Skip to content

Commit 7a27fd1

Browse files
committed
Merge remote-tracking branch 'upstream/master'
2 parents 6ba608e + d1b13d7 commit 7a27fd1

File tree

736 files changed

+23841
-8597
lines changed

Some content is hidden

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

736 files changed

+23841
-8597
lines changed

.circleci/config.yml

Lines changed: 0 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,6 @@ jobs:
77
- checkout
88
- run:
99
command: ./gradlew --no-daemon --continue --scan testcontainers:test --tests '*GenericContainerRuleTest'
10-
- run:
11-
name: aggregate test reports with ciMate
12-
when: always
13-
environment:
14-
CIMATE_PROJECT_ID: 2348n4vl
15-
command: |
16-
wget -q https://get.cimate.io/release/linux/cimate
17-
chmod +x cimate
18-
./cimate "**/TEST-*.xml"
1910
- run:
2011
name: Save test results
2112
command: |

.github/CODEOWNERS

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# These owners will be the default reviewers for everything in
44
# the repo.
55

6-
* @rnorth @bsideup @kiview
6+
* @testcontainers/java-team
77

88
# The last matching pattern takes the most
99
# precedence.
Lines changed: 112 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,112 @@
1+
name: Bug Report
2+
description: File a bug report
3+
title: "[Bug]: "
4+
labels: ["type/bug"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thanks for taking the time to fill out this bug report!
10+
- type: dropdown
11+
id: module
12+
attributes:
13+
label: Module
14+
description: Which Testcontainers module are you using?
15+
options:
16+
- Core
17+
- Azure
18+
- Cassandra
19+
- Clickhouse
20+
- Couchbase
21+
- DB2
22+
- Dynalite
23+
- Elasticsearch
24+
- GCloud
25+
- HiveMQ
26+
- InfluxDB
27+
- K3S
28+
- Kafka
29+
- LocalStack
30+
- MariaDB
31+
- MockServer
32+
- MongoDB
33+
- MSSQLServer
34+
- MySQL
35+
- Neo4j
36+
- NGINX
37+
- Oracle-XE
38+
- OrientDB
39+
- PostgreSQL
40+
- Presto
41+
- Pulsar
42+
- RabbitMQ
43+
- Selenium
44+
- Solr
45+
- ToxiProxy
46+
- Trino
47+
- Vault
48+
validations:
49+
required: true
50+
- type: input
51+
id: tc-version
52+
attributes:
53+
label: Testcontainers version
54+
description: Which Testcontainers version are you using?
55+
placeholder: ex. 1.17.2
56+
validations:
57+
required: true
58+
- type: dropdown
59+
id: latest-version
60+
attributes:
61+
label: Using the latest Testcontainers version?
62+
description: If you are not using the latest version, can you update your project and try to reproduce the issue? Is it still happening?
63+
options:
64+
- 'Yes'
65+
- 'No'
66+
validations:
67+
required: true
68+
- type: input
69+
id: host-os
70+
attributes:
71+
label: Host OS
72+
description: Which Operating System are you using?
73+
placeholder: e.g. Linux, Windows
74+
validations:
75+
required: true
76+
- type: input
77+
id: host-arch
78+
attributes:
79+
label: Host Arch
80+
description: Which architecture are you using?
81+
placeholder: e.g. x86, ARM
82+
validations:
83+
required: true
84+
- type: textarea
85+
id: docker-version
86+
attributes:
87+
label: Docker version
88+
description: Please run `docker version` and copy and paste the output into this field.
89+
render: shell
90+
validations:
91+
required: true
92+
- type: textarea
93+
id: what-happened
94+
attributes:
95+
label: What happened?
96+
description: Provide the context and the expected result.
97+
validations:
98+
required: true
99+
- type: textarea
100+
id: logs
101+
attributes:
102+
label: Relevant log output
103+
description: Please copy and paste any relevant log output. The content will be automatically formatted as code, so no need for backticks.
104+
render: shell
105+
- type: textarea
106+
id: additional-information
107+
attributes:
108+
label: Additional Information
109+
description: |
110+
Any links or references to have more context about the issue.
111+
112+
Tip: You can attach a minimal sample project to reproduce the issue or provide further log files by clicking into this area to focus it and then dragging files in.

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
blank_issues_enabled: false
2+
contact_links:
3+
- name: Need help or have a question?
4+
url: https://slack.testcontainers.org/
5+
about: Visit our slack channel.
Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
name: Enhancement
2+
description: Suggest an enhancement
3+
title: "[Enhancement]: "
4+
labels: ["type/enhancement"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Please provide the following information
10+
- type: dropdown
11+
id: module
12+
attributes:
13+
label: Module
14+
description: For which Testcontainers module does the enhancement proposal apply?
15+
options:
16+
- Core
17+
- Azure
18+
- Cassandra
19+
- Clickhouse
20+
- Couchbase
21+
- DB2
22+
- Dynalite
23+
- Elasticsearch
24+
- GCloud
25+
- HiveMQ
26+
- InfluxDB
27+
- K3S
28+
- Kafka
29+
- LocalStack
30+
- MariaDB
31+
- MockServer
32+
- MongoDB
33+
- MSSQLServer
34+
- MySQL
35+
- Neo4j
36+
- NGINX
37+
- Oracle-XE
38+
- OrientDB
39+
- PostgreSQL
40+
- Presto
41+
- Pulsar
42+
- RabbitMQ
43+
- Selenium
44+
- Solr
45+
- ToxiProxy
46+
- Trino
47+
- Vault
48+
validations:
49+
required: true
50+
- type: textarea
51+
id: proposal
52+
attributes:
53+
label: Proposal
54+
description: What should be improved? What are the limitations of the current implications that would be solved by the proposal?
55+
validations:
56+
required: true
Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
name: Feature
2+
description: Suggest a new feature
3+
title: "[Feature]: "
4+
labels: ["type/feature"]
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Please provide the following information
10+
- type: dropdown
11+
id: module
12+
attributes:
13+
label: Module
14+
description: Is this feature related to any of the existing modules?
15+
options:
16+
- Core
17+
- Azure
18+
- Cassandra
19+
- Clickhouse
20+
- Couchbase
21+
- DB2
22+
- Dynalite
23+
- Elasticsearch
24+
- GCloud
25+
- HiveMQ
26+
- InfluxDB
27+
- K3S
28+
- Kafka
29+
- LocalStack
30+
- MariaDB
31+
- MockServer
32+
- MongoDB
33+
- MSSQLServer
34+
- MySQL
35+
- Neo4j
36+
- NGINX
37+
- Oracle-XE
38+
- OrientDB
39+
- PostgreSQL
40+
- Presto
41+
- Pulsar
42+
- RabbitMQ
43+
- Selenium
44+
- Solr
45+
- ToxiProxy
46+
- Trino
47+
- Vault
48+
- New Module
49+
- type: textarea
50+
id: problem
51+
attributes:
52+
label: Problem
53+
description: Is this feature related to a problem? Please describe it.
54+
validations:
55+
required: true
56+
- type: textarea
57+
id: solution
58+
attributes:
59+
label: Solution
60+
description: What's the proposed solution for this feature?
61+
validations:
62+
required: true
63+
- type: textarea
64+
id: benefit
65+
attributes:
66+
label: Benefit
67+
description: What's the benefit of addng this feature to the project?
68+
validations:
69+
required: true
70+
- type: textarea
71+
id: alternatives
72+
attributes:
73+
label: Alternatives
74+
description: Are there other alternatives? Please describe them.
75+
validations:
76+
required: true
77+
- type: dropdown
78+
id: contribute
79+
attributes:
80+
label: Would you like to help contributing this feature?
81+
options:
82+
- 'Yes'
83+
- 'No'
84+
validations:
85+
required: true

0 commit comments

Comments
 (0)