Skip to content

Commit c13d8e4

Browse files
authored
Merge branch 'main' into main
2 parents e4feafd + 6e104da commit c13d8e4

File tree

161 files changed

+3687
-556
lines changed

Some content is hidden

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

161 files changed

+3687
-556
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: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ body:
3434
- K3S
3535
- K6
3636
- Kafka
37+
- LDAP
3738
- LocalStack
3839
- MariaDB
3940
- Milvus
@@ -50,13 +51,15 @@ body:
5051
- Oracle Free
5152
- Oracle XE
5253
- OrientDB
54+
- Pinecone
5355
- PostgreSQL
5456
- Presto
5557
- Pulsar
5658
- Qdrant
5759
- QuestDB
5860
- RabbitMQ
5961
- Redpanda
62+
- ScyllaDB
6063
- Selenium
6164
- Solace
6265
- Solr

.github/ISSUE_TEMPLATE/enhancement.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ body:
3434
- K3S
3535
- K6
3636
- Kafka
37+
- LDAP
3738
- LocalStack
3839
- MariaDB
3940
- Milvus
@@ -50,13 +51,15 @@ body:
5051
- Oracle Free
5152
- Oracle XE
5253
- OrientDB
54+
- Pinecone
5355
- PostgreSQL
5456
- Presto
5557
- Pulsar
5658
- Qdrant
5759
- QuestDB
5860
- RabbitMQ
5961
- Redpanda
62+
- ScyllaDB
6063
- Selenium
6164
- Solace
6265
- Solr

.github/ISSUE_TEMPLATE/feature.yaml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ body:
3434
- K3S
3535
- K6
3636
- Kafka
37+
- LDAP
3738
- LocalStack
3839
- MariaDB
3940
- Milvus
@@ -50,13 +51,15 @@ body:
5051
- Oracle Free
5152
- Oracle XE
5253
- OrientDB
54+
- Pinecone
5355
- PostgreSQL
5456
- Qdrant
5557
- QuestDB
5658
- Presto
5759
- Pulsar
5860
- RabbitMQ
5961
- Redpanda
62+
- ScyllaDB
6063
- Selenium
6164
- Solace
6265
- 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

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,9 @@ runs:
44
using: "composite"
55
steps:
66
- name: Setup Gradle Build Action
7-
uses: gradle/actions/setup-gradle@v3
7+
uses: gradle/actions/setup-gradle@v4
88
with:
99
gradle-home-cache-includes: |
1010
caches
1111
notifications
1212
jdks
13-
gradle-home-cache-cleanup: true
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: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -178,6 +178,11 @@ updates:
178178
schedule:
179179
interval: "weekly"
180180
open-pull-requests-limit: 10
181+
- package-ecosystem: "gradle"
182+
directory: "/modules/ldap"
183+
schedule:
184+
interval: "weekly"
185+
open-pull-requests-limit: 10
181186
- package-ecosystem: "gradle"
182187
directory: "/modules/localstack"
183188
schedule:
@@ -274,6 +279,11 @@ updates:
274279
schedule:
275280
interval: "weekly"
276281
open-pull-requests-limit: 10
282+
- package-ecosystem: "gradle"
283+
directory: "/modules/pinecone"
284+
schedule:
285+
interval: "weekly"
286+
open-pull-requests-limit: 10
277287
- package-ecosystem: "gradle"
278288
directory: "/modules/pulsar"
279289
schedule:
@@ -310,6 +320,11 @@ updates:
310320
schedule:
311321
interval: "weekly"
312322
open-pull-requests-limit: 10
323+
- package-ecosystem: "gradle"
324+
directory: "/modules/scylladb"
325+
schedule:
326+
interval: "weekly"
327+
open-pull-requests-limit: 10
313328
- package-ecosystem: "gradle"
314329
directory: "/modules/selenium"
315330
schedule:

.github/labeler.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -107,6 +107,10 @@
107107
- changed-files:
108108
- any-glob-to-any-file:
109109
- modules/kafka/**/*
110+
"modules/ldap":
111+
- changed-files:
112+
- any-glob-to-any-file:
113+
- modules/ldap/**/*
110114
"modules/localstack":
111115
- changed-files:
112116
- any-glob-to-any-file:
@@ -168,6 +172,10 @@
168172
- changed-files:
169173
- any-glob-to-any-file:
170174
- modules/orientdb/**/*
175+
"modules/pinecone":
176+
- changed-files:
177+
- any-glob-to-any-file:
178+
- modules/pinecone/**/*
171179
"modules/postgres":
172180
- changed-files:
173181
- any-glob-to-any-file:
@@ -200,6 +208,10 @@
200208
- changed-files:
201209
- any-glob-to-any-file:
202210
- modules/redpanda/**/*
211+
"modules/scylladb":
212+
- changed-files:
213+
- any-glob-to-any-file:
214+
- modules/scylladb/**/*
203215
"modules/selenium":
204216
- changed-files:
205217
- any-glob-to-any-file:

.github/settings.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,9 @@ labels:
169169
- name: modules/kafka
170170
color: '#006b75'
171171

172+
- name: modules/ldap
173+
color: '#006b75'
174+
172175
- name: modules/localstack
173176
color: '#006b75'
174177

@@ -211,6 +214,9 @@ labels:
211214
- name: modules/orientdb
212215
color: '#006b75'
213216

217+
- name: modules/pinecone
218+
color: '#006b75'
219+
214220
- name: modules/postgres
215221
color: '#006b75'
216222

@@ -400,7 +406,7 @@ branches:
400406
# Required. Require branches to be up to date before merging.
401407
strict: true
402408
# 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"]
409+
contexts: ["core (17)", "core (21)", "check_docs_examples (:docs:examples:check)", "in-docker_test", "ci/circleci: minimal_core", "test"]
404410
# Required. Enforce all configured restrictions for administrators. Set to true to enforce required status checks for repository administrators. Set to null to disable.
405411
enforce_admins: false
406412
# Prevent merge commits from being pushed to matching branches

0 commit comments

Comments
 (0)