Skip to content

Commit 11b92c2

Browse files
authored
Merge branch 'main' into 2877-allow-selenium-custom-retry-attempts
2 parents db4d0aa + 5969b0f commit 11b92c2

File tree

461 files changed

+12681
-2540
lines changed

Some content is hidden

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

461 files changed

+12681
-2540
lines changed

.devcontainer/devcontainer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,10 @@
4343
"installGradle": "false"
4444
},
4545
"ghcr.io/devcontainers/features/docker-outside-of-docker:1": {},
46-
"ghcr.io/devcontainers/features/node:1": {}
46+
"ghcr.io/devcontainers/features/node:1": {},
47+
"ghcr.io/devcontainers/features/sshd:1": {
48+
"version": "latest"
49+
}
4750
},
4851
"postStartCommand": ["./gradlew", "compileJava"]
4952
}

.github/CODEOWNERS

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1 @@
1-
# Each line is a file pattern followed by one or more owners.
2-
3-
# These owners will be the default reviewers for everything in
4-
# the repo.
5-
6-
* @testcontainers/java-team
7-
8-
# The last matching pattern takes the most
9-
# precedence.
10-
11-
# Contributed modules can have different reviewers
12-
13-
modules/mssqlserver/ @StefanHufschmidt @rnorth @bsideup @kiview
14-
modules/vault/ @mikeoswald @rnorth @bsideup @kiview
1+
* @testcontainers/java-team

.github/ISSUE_TEMPLATE/bug_report.yaml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ body:
1414
description: Which Testcontainers module are you using?
1515
options:
1616
- Core
17+
- ActiveMQ
1718
- Azure
1819
- Cassandra
20+
- ChromaDB
1921
- Clickhouse
2022
- CockroachDB
2123
- Consul
@@ -28,20 +30,28 @@ body:
2830
- HiveMQ
2931
- InfluxDB
3032
- K3S
33+
- K6
3134
- Kafka
3235
- LocalStack
3336
- MariaDB
37+
- Milvus
38+
- MinIO
3439
- MockServer
3540
- MongoDB
3641
- MSSQLServer
3742
- MySQL
3843
- Neo4j
3944
- NGINX
40-
- Oracle-XE
45+
- OceanBase
46+
- Ollama
47+
- OpenFGA
48+
- Oracle Free
49+
- Oracle XE
4150
- OrientDB
4251
- PostgreSQL
4352
- Presto
4453
- Pulsar
54+
- Qdrant
4555
- QuestDB
4656
- RabbitMQ
4757
- Redpanda
@@ -52,6 +62,7 @@ body:
5262
- ToxiProxy
5363
- Trino
5464
- Vault
65+
- Weaviate
5566
- YugabyteDB
5667
validations:
5768
required: true

.github/ISSUE_TEMPLATE/enhancement.yaml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ body:
1414
description: For which Testcontainers module does the enhancement proposal apply?
1515
options:
1616
- Core
17+
- ActiveMQ
1718
- Azure
1819
- Cassandra
20+
- ChromaDB
1921
- Clickhouse
2022
- CockroachDB
2123
- Consul
@@ -28,20 +30,28 @@ body:
2830
- HiveMQ
2931
- InfluxDB
3032
- K3S
33+
- K6
3134
- Kafka
3235
- LocalStack
3336
- MariaDB
37+
- Milvus
38+
- MinIO
3439
- MockServer
3540
- MongoDB
3641
- MSSQLServer
3742
- MySQL
3843
- Neo4j
3944
- NGINX
40-
- Oracle-XE
45+
- OceanBase
46+
- Ollama
47+
- OpenFGA
48+
- Oracle Free
49+
- Oracle XE
4150
- OrientDB
4251
- PostgreSQL
4352
- Presto
4453
- Pulsar
54+
- Qdrant
4555
- QuestDB
4656
- RabbitMQ
4757
- Redpanda
@@ -52,6 +62,7 @@ body:
5262
- ToxiProxy
5363
- Trino
5464
- Vault
65+
- Weaviate
5566
- YugabyteDB
5667
validations:
5768
required: true

.github/ISSUE_TEMPLATE/feature.yaml

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,10 @@ body:
1414
description: Is this feature related to any of the existing modules?
1515
options:
1616
- Core
17+
- ActiveMQ
1718
- Azure
1819
- Cassandra
20+
- ChromaDB
1921
- Clickhouse
2022
- CockroachDB
2123
- CrateDB
@@ -28,18 +30,26 @@ body:
2830
- HiveMQ
2931
- InfluxDB
3032
- K3S
33+
- K6
3134
- Kafka
3235
- LocalStack
3336
- MariaDB
37+
- Milvus
38+
- MinIO
3439
- MockServer
3540
- MongoDB
3641
- MSSQLServer
3742
- MySQL
3843
- Neo4j
3944
- NGINX
40-
- Oracle-XE
45+
- OceanBase
46+
- Ollama
47+
- OpenFGA
48+
- Oracle Free
49+
- Oracle XE
4150
- OrientDB
4251
- PostgreSQL
52+
- Qdrant
4353
- QuestDB
4454
- Presto
4555
- Pulsar
@@ -52,6 +62,7 @@ body:
5262
- ToxiProxy
5363
- Trino
5464
- Vault
65+
- Weaviate
5566
- YugabyteDB
5667
- New Module
5768
- type: textarea
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
name: Set up Build
2+
description: Sets up Build
3+
runs:
4+
using: "composite"
5+
steps:
6+
- uses: ./.github/actions/setup-java
7+
- name: Clear existing docker image cache
8+
shell: bash
9+
run: docker image prune -af
10+
- uses: ./.github/actions/setup-gradle
Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
name: Set up Gradle Action
2+
description: Sets up Gradle Action
3+
runs:
4+
using: "composite"
5+
steps:
6+
- name: Setup Gradle Build Action
7+
uses: gradle/actions/setup-gradle@v3
8+
with:
9+
gradle-home-cache-includes: |
10+
caches
11+
notifications
12+
jdks
13+
gradle-home-cache-cleanup: true
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
name: Set up Java
2+
description: Sets up Java version
3+
runs:
4+
using: "composite"
5+
steps:
6+
- uses: actions/setup-java@v4
7+
with:
8+
java-version: '8'
9+
distribution: temurin
Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
name: Set up JUnit Report
2+
description: Sets up JUnit Report
3+
runs:
4+
using: "composite"
5+
steps:
6+
- name: Publish Test Report
7+
uses: mikepenz/action-junit-report@v4
8+
if: always() # always run even if the previous step fails
9+
with:
10+
report_paths: '**/build/test-results/test/TEST-*.xml'
11+
annotate_only: true

0 commit comments

Comments
 (0)