Skip to content

Commit 2230fcc

Browse files
authored
Merge branch 'main' into 4667-UDP-path-broken
2 parents 7c43c06 + ad2e8b1 commit 2230fcc

File tree

445 files changed

+10715
-1532
lines changed

Some content is hidden

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

445 files changed

+10715
-1532
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: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,18 @@ body:
2323
- Consul
2424
- Couchbase
2525
- CrateDB
26+
- Databend
2627
- DB2
2728
- Dynalite
2829
- Elasticsearch
2930
- GCloud
31+
- Grafana
3032
- HiveMQ
3133
- InfluxDB
3234
- K3S
3335
- K6
3436
- Kafka
37+
- LDAP
3538
- LocalStack
3639
- MariaDB
3740
- Milvus
@@ -48,19 +51,23 @@ body:
4851
- Oracle Free
4952
- Oracle XE
5053
- OrientDB
54+
- Pinecone
5155
- PostgreSQL
5256
- Presto
5357
- Pulsar
5458
- Qdrant
5559
- QuestDB
5660
- RabbitMQ
5761
- Redpanda
62+
- ScyllaDB
5863
- Selenium
5964
- Solace
6065
- Solr
6166
- TiDB
67+
- Timeplus
6268
- ToxiProxy
6369
- Trino
70+
- Typesense
6471
- Vault
6572
- Weaviate
6673
- YugabyteDB

.github/ISSUE_TEMPLATE/enhancement.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,18 @@ body:
2323
- Consul
2424
- Couchbase
2525
- CrateDB
26+
- Databend
2627
- DB2
2728
- Dynalite
2829
- Elasticsearch
2930
- GCloud
31+
- Grafana
3032
- HiveMQ
3133
- InfluxDB
3234
- K3S
3335
- K6
3436
- Kafka
37+
- LDAP
3538
- LocalStack
3639
- MariaDB
3740
- Milvus
@@ -48,19 +51,23 @@ body:
4851
- Oracle Free
4952
- Oracle XE
5053
- OrientDB
54+
- Pinecone
5155
- PostgreSQL
5256
- Presto
5357
- Pulsar
5458
- Qdrant
5559
- QuestDB
5660
- RabbitMQ
5761
- Redpanda
62+
- ScyllaDB
5863
- Selenium
5964
- Solace
6065
- Solr
6166
- TiDB
67+
- Timeplus
6268
- ToxiProxy
6369
- Trino
70+
- Typesense
6471
- Vault
6572
- Weaviate
6673
- YugabyteDB

.github/ISSUE_TEMPLATE/feature.yaml

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,18 @@ body:
2323
- CrateDB
2424
- Consul
2525
- Couchbase
26+
- Databend
2627
- DB2
2728
- Dynalite
2829
- Elasticsearch
2930
- GCloud
31+
- Grafana
3032
- HiveMQ
3133
- InfluxDB
3234
- K3S
3335
- K6
3436
- Kafka
37+
- LDAP
3538
- LocalStack
3639
- MariaDB
3740
- Milvus
@@ -48,19 +51,23 @@ body:
4851
- Oracle Free
4952
- Oracle XE
5053
- OrientDB
54+
- Pinecone
5155
- PostgreSQL
5256
- Qdrant
5357
- QuestDB
5458
- Presto
5559
- Pulsar
5660
- RabbitMQ
5761
- Redpanda
62+
- ScyllaDB
5863
- Selenium
5964
- Solace
6065
- Solr
6166
- TiDB
67+
- Timeplus
6268
- ToxiProxy
6369
- Trino
70+
- Typesense
6471
- Vault
6572
- Weaviate
6673
- YugabyteDB
@@ -83,7 +90,7 @@ body:
8390
id: benefit
8491
attributes:
8592
label: Benefit
86-
description: What's the benefit of addng this feature to the project?
93+
description: What's the benefit of adding this feature to the project?
8794
validations:
8895
required: true
8996
- type: textarea

.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: 61 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,8 @@ updates:
2222
update-types: [ "version-update:semver-minor", "version-update:semver-patch" ]
2323
- dependency-name: "org.apache.commons:commons-compress"
2424
update-types: [ "version-update:semver-minor" ]
25+
- dependency-name: "org.awaitility:awaitility"
26+
update-types: [ "version-update:semver-patch" ]
2527
- package-ecosystem: "gradle"
2628
directory: "/"
2729
allow:
@@ -76,6 +78,9 @@ updates:
7678
schedule:
7779
interval: "weekly"
7880
open-pull-requests-limit: 10
81+
ignore:
82+
- dependency-name: "org.awaitility:awaitility"
83+
update-types: [ "version-update:semver-patch" ]
7984
- package-ecosystem: "gradle"
8085
directory: "/modules/cratedb"
8186
schedule:
@@ -85,6 +90,10 @@ updates:
8590
directory: "/modules/database-commons"
8691
schedule:
8792
interval: "weekly"
93+
- package-ecosystem: "gradle"
94+
directory: "/modules/databend"
95+
schedule:
96+
interval: "weekly"
8897
open-pull-requests-limit: 10
8998
- package-ecosystem: "gradle"
9099
directory: "/modules/db2"
@@ -106,6 +115,11 @@ updates:
106115
schedule:
107116
interval: "weekly"
108117
open-pull-requests-limit: 10
118+
- package-ecosystem: "gradle"
119+
directory: "/modules/grafana"
120+
schedule:
121+
interval: "weekly"
122+
open-pull-requests-limit: 10
109123
- package-ecosystem: "gradle"
110124
directory: "/modules/hivemq"
111125
schedule:
@@ -116,6 +130,9 @@ updates:
116130
schedule:
117131
interval: "weekly"
118132
open-pull-requests-limit: 10
133+
ignore:
134+
- dependency-name: "com.influxdb:influxdb-java-client"
135+
update-types: [ "version-update:semver-major" ]
119136
- package-ecosystem: "gradle"
120137
directory: "/modules/jdbc"
121138
schedule:
@@ -161,6 +178,11 @@ updates:
161178
schedule:
162179
interval: "weekly"
163180
open-pull-requests-limit: 10
181+
- package-ecosystem: "gradle"
182+
directory: "/modules/ldap"
183+
schedule:
184+
interval: "weekly"
185+
open-pull-requests-limit: 10
164186
- package-ecosystem: "gradle"
165187
directory: "/modules/localstack"
166188
schedule:
@@ -257,6 +279,11 @@ updates:
257279
schedule:
258280
interval: "weekly"
259281
open-pull-requests-limit: 10
282+
- package-ecosystem: "gradle"
283+
directory: "/modules/pinecone"
284+
schedule:
285+
interval: "weekly"
286+
open-pull-requests-limit: 10
260287
- package-ecosystem: "gradle"
261288
directory: "/modules/pulsar"
262289
schedule:
@@ -272,6 +299,9 @@ updates:
272299
schedule:
273300
interval: "weekly"
274301
open-pull-requests-limit: 10
302+
ignore:
303+
- dependency-name: "org.awaitility:awaitility"
304+
update-types: [ "version-update:semver-patch" ]
275305
- package-ecosystem: "gradle"
276306
directory: "/modules/r2dbc"
277307
schedule:
@@ -290,6 +320,11 @@ updates:
290320
schedule:
291321
interval: "weekly"
292322
open-pull-requests-limit: 10
323+
- package-ecosystem: "gradle"
324+
directory: "/modules/scylladb"
325+
schedule:
326+
interval: "weekly"
327+
open-pull-requests-limit: 10
293328
- package-ecosystem: "gradle"
294329
directory: "/modules/selenium"
295330
schedule:
@@ -306,6 +341,8 @@ updates:
306341
ignore:
307342
- dependency-name: "org.apache.qpid:qpid-jms-client"
308343
update-types: [ "version-update:semver-major" ]
344+
- dependency-name: "org.awaitility:awaitility"
345+
update-types: [ "version-update:semver-patch" ]
309346
- package-ecosystem: "gradle"
310347
directory: "/modules/solr"
311348
schedule:
@@ -324,6 +361,11 @@ updates:
324361
schedule:
325362
interval: "weekly"
326363
open-pull-requests-limit: 10
364+
- package-ecosystem: "gradle"
365+
directory: "/modules/timeplus"
366+
schedule:
367+
interval: "weekly"
368+
open-pull-requests-limit: 10
327369
- package-ecosystem: "gradle"
328370
directory: "/modules/toxiproxy"
329371
schedule:
@@ -334,6 +376,11 @@ updates:
334376
schedule:
335377
interval: "weekly"
336378
open-pull-requests-limit: 10
379+
- package-ecosystem: "gradle"
380+
directory: "/modules/typesense"
381+
schedule:
382+
interval: "weekly"
383+
open-pull-requests-limit: 10
337384
- package-ecosystem: "gradle"
338385
directory: "/modules/vault"
339386
schedule:
@@ -371,6 +418,20 @@ updates:
371418
update-types: [ "version-update:semver-major" ]
372419
- dependency-name: "com.diffplug.spotless"
373420
update-types: [ "version-update:semver-minor" ]
421+
- dependency-name: "com.hazelcast:hazelcast"
422+
update-types: [ "version-update:semver-minor" ]
423+
424+
# Smoke test
425+
- package-ecosystem: "gradle"
426+
directory: "/smoke-test"
427+
schedule:
428+
interval: "weekly"
429+
open-pull-requests-limit: 10
430+
ignore:
431+
- dependency-name: "ch.qos.logback:logback-classic"
432+
update-types: [ "version-update:semver-minor" ]
433+
- dependency-name: "com.diffplug.spotless"
434+
update-types: [ "version-update:semver-minor" ]
374435

375436
# GitHub Actions
376437
- package-ecosystem: "github-actions"

0 commit comments

Comments
 (0)