Skip to content

Commit 6c25e91

Browse files
authored
Merge branch 'main' into simplify-shading-configuration-setup
2 parents 4d229be + df40cd8 commit 6c25e91

File tree

108 files changed

+3112
-259
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

108 files changed

+3112
-259
lines changed

.devcontainer/devcontainer.json

Lines changed: 2 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,13 @@
11
// For format details, see https://aka.ms/devcontainer.json. For config options, see the README at:
22
// https://github.com/microsoft/vscode-dev-containers/tree/v0.241.1/containers/java-8
33
{
4-
"name": "Java 8",
5-
"image": "mcr.microsoft.com/devcontainers/java:1-8-bullseye",
4+
"name": "Java 17",
5+
"image": "mcr.microsoft.com/devcontainers/java:0-17",
66

77
// Configure tool-specific properties.
88
"customizations": {
99
// Configure properties specific to VS Code.
1010
"vscode": {
11-
// Set *default* container specific settings.json values on container create.
12-
"settings": {
13-
"java.import.gradle.java.home": "/usr/local/sdkman/candidates/java/current",
14-
"java.configuration.runtimes": [{
15-
"default": true,
16-
"name": "JavaSE-1.8",
17-
"path": "/usr/local/sdkman/candidates/java/current"
18-
}]
19-
},
20-
2111
// Add the IDs of extensions you want installed when the container is created.
2212
"extensions": [
2313
"vscjava.vscode-java-pack"

.github/ISSUE_TEMPLATE/bug_report.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,15 @@ body:
5050
- Oracle Free
5151
- Oracle XE
5252
- OrientDB
53+
- Pinecone
5354
- PostgreSQL
5455
- Presto
5556
- Pulsar
5657
- Qdrant
5758
- QuestDB
5859
- RabbitMQ
5960
- Redpanda
61+
- ScyllaDB
6062
- Selenium
6163
- Solace
6264
- Solr

.github/ISSUE_TEMPLATE/enhancement.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,15 @@ body:
5050
- Oracle Free
5151
- Oracle XE
5252
- OrientDB
53+
- Pinecone
5354
- PostgreSQL
5455
- Presto
5556
- Pulsar
5657
- Qdrant
5758
- QuestDB
5859
- RabbitMQ
5960
- Redpanda
61+
- ScyllaDB
6062
- Selenium
6163
- Solace
6264
- Solr

.github/ISSUE_TEMPLATE/feature.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -50,13 +50,15 @@ body:
5050
- Oracle Free
5151
- Oracle XE
5252
- OrientDB
53+
- Pinecone
5354
- PostgreSQL
5455
- Qdrant
5556
- QuestDB
5657
- Presto
5758
- Pulsar
5859
- RabbitMQ
5960
- Redpanda
61+
- ScyllaDB
6062
- Selenium
6163
- Solace
6264
- Solr

.github/actions/setup-build/action.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,16 @@
11
name: Set up Build
22
description: Sets up Build
3+
inputs:
4+
java-version:
5+
description: 'The Java version to set up'
6+
required: true
7+
default: '17'
38
runs:
49
using: "composite"
510
steps:
611
- uses: ./.github/actions/setup-java
12+
with:
13+
java-version: ${{ inputs.java-version }}
714
- name: Clear existing docker image cache
815
shell: bash
916
run: docker image prune -af
Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
name: Set up Java
22
description: Sets up Java version
3+
inputs:
4+
java-version:
5+
description: 'The Java version to set up'
6+
required: true
7+
default: '17'
38
runs:
49
using: "composite"
510
steps:
611
- uses: actions/setup-java@v4
712
with:
8-
java-version: '8'
13+
java-version: ${{ inputs.java-version }}
914
distribution: temurin

.github/dependabot.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,11 @@ updates:
274274
schedule:
275275
interval: "weekly"
276276
open-pull-requests-limit: 10
277+
- package-ecosystem: "gradle"
278+
directory: "/modules/pinecone"
279+
schedule:
280+
interval: "weekly"
281+
open-pull-requests-limit: 10
277282
- package-ecosystem: "gradle"
278283
directory: "/modules/pulsar"
279284
schedule:
@@ -310,6 +315,11 @@ updates:
310315
schedule:
311316
interval: "weekly"
312317
open-pull-requests-limit: 10
318+
- package-ecosystem: "gradle"
319+
directory: "/modules/scylladb"
320+
schedule:
321+
interval: "weekly"
322+
open-pull-requests-limit: 10
313323
- package-ecosystem: "gradle"
314324
directory: "/modules/selenium"
315325
schedule:

.github/labeler.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,10 @@
168168
- changed-files:
169169
- any-glob-to-any-file:
170170
- modules/orientdb/**/*
171+
"modules/pinecone":
172+
- changed-files:
173+
- any-glob-to-any-file:
174+
- modules/pinecone/**/*
171175
"modules/postgres":
172176
- changed-files:
173177
- any-glob-to-any-file:
@@ -200,6 +204,10 @@
200204
- changed-files:
201205
- any-glob-to-any-file:
202206
- modules/redpanda/**/*
207+
"modules/scylladb":
208+
- changed-files:
209+
- any-glob-to-any-file:
210+
- modules/scylladb/**/*
203211
"modules/selenium":
204212
- changed-files:
205213
- any-glob-to-any-file:

.github/settings.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,9 @@ labels:
211211
- name: modules/orientdb
212212
color: '#006b75'
213213

214+
- name: modules/pinecone
215+
color: '#006b75'
216+
214217
- name: modules/postgres
215218
color: '#006b75'
216219

@@ -400,7 +403,7 @@ branches:
400403
# Required. Require branches to be up to date before merging.
401404
strict: true
402405
# Required. The list of status checks to require in order to merge into this branch
403-
contexts: ["core", "check_docs_examples (:docs:examples:check)", "in-docker_test", "ci/circleci: minimal_core", "test"]
406+
contexts: ["core (17)", "core (21)", "check_docs_examples (:docs:examples:check)", "in-docker_test", "ci/circleci: minimal_core", "test"]
404407
# Required. Enforce all configured restrictions for administrators. Set to true to enforce required status checks for repository administrators. Set to null to disable.
405408
enforce_admins: false
406409
# Prevent merge commits from being pushed to matching branches

.github/workflows/ci-docker-wormhole.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,5 +53,5 @@ jobs:
5353
-v "$PWD:$PWD" \
5454
-w "$PWD" \
5555
-e AUTO_APPLY_GIT_HOOKS=false \
56-
openjdk:8-jdk-alpine \
56+
eclipse-temurin:17-jdk-alpine \
5757
./gradlew --no-daemon --continue --scan testcontainers:test --tests '*GenericContainerRuleTest'

0 commit comments

Comments
 (0)