Skip to content

Commit 7d0f970

Browse files
committed
chore: use new version (v0.34.0) in modules and examples
1 parent 2c66f20 commit 7d0f970

File tree

58 files changed

+76
-76
lines changed

Some content is hidden

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

58 files changed

+76
-76
lines changed

docs/modules/databend.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Databend
22

3-
Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
3+
Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
44

55
## Introduction
66

@@ -24,7 +24,7 @@ go get github.com/testcontainers/testcontainers-go/modules/databend
2424

2525
### Run function
2626

27-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
27+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
2828

2929
The Databend module exposes one entrypoint function to create the Databend container, and this function receives three parameters:
3030

docs/modules/dynamodb.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# DynamoDB
22

3-
Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
3+
Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
44

55
## Introduction
66

@@ -24,7 +24,7 @@ go get github.com/testcontainers/testcontainers-go/modules/dynamodb
2424

2525
### Run function
2626

27-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
27+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
2828

2929
The DynamoDB module exposes one entrypoint function to create the DynamoDB container, and this function receives three parameters:
3030

@@ -49,13 +49,13 @@ E.g. `Run(context.Background(), "amazon/dynamodb-local:2.2.1")`.
4949

5050
#### WithSharedDB
5151

52-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
52+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
5353

5454
The `WithSharedDB` option tells the DynamoDB container to use a single database file. At the same time, it marks the container as reusable, which causes that successive calls to the `Run` function will return the same container instance, and therefore, the same database file.
5555

5656
#### WithDisableTelemetry
5757

58-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
58+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
5959

6060
You can turn off telemetry when starting the DynamoDB container, using the option `WithDisableTelemetry`.
6161

@@ -65,7 +65,7 @@ The DynamoDB container exposes the following methods:
6565

6666
#### ConnectionString
6767

68-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
68+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
6969

7070
The `ConnectionString` method returns the connection string to the DynamoDB container. This connection string can be used to connect to the DynamoDB container from your application,
7171
using the AWS SDK or any other DynamoDB client of your choice.

docs/modules/etcd.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# etcd
22

3-
Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
3+
Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
44

55
## Introduction
66

@@ -24,7 +24,7 @@ go get github.com/testcontainers/testcontainers-go/modules/etcd
2424

2525
### Run function
2626

27-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
27+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
2828

2929
The etcd module exposes one entrypoint function to create the etcd container, and this function receives three parameters:
3030

@@ -49,19 +49,19 @@ E.g. `Run(context.Background(), "bitnami/etcd:latest")`.
4949

5050
#### WithAdditionalArgs
5151

52-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
52+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
5353

5454
You can pass additional arguments to the etcd container by using the `WithAdditionalArgs` option. The arguments are passed to the CMD of the etcd container.
5555

5656
#### WithDataDir
5757

58-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
58+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
5959

6060
You can set the data directory for the etcd container by using the `WithDataDir` boolean option. The data directory where the etcd data is stored is `/data.etcd`.
6161

6262
#### WithNodes
6363

64-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
64+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
6565

6666
You can set the number of nodes for the etcd cluster by using the `WithNodes` option, passing the node names for each of the nodes. Single-node clusters are not allowed,
6767
for that reason the functional option receives three string arguments: the first node, the second node, and a variadic argument for the rest of the nodes.
@@ -71,25 +71,25 @@ The module creates a Docker network for the etcd cluster, and the nodes are conn
7171

7272
#### WithClusterToken
7373

74-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
74+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
7575

7676
Sets the cluster token for the etcd cluster. The cluster token is used to identify the etcd cluster. The default value is `mys3cr3ttok3n`.
7777
The etcd container holds a reference to the cluster token, so you can use it with e.g. `ctr.ClusterToken`.
7878

7979
### Container Methods
8080

81-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
81+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
8282

8383
The etcd container exposes the following methods:
8484

8585
#### ClientEndpoint
8686

87-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
87+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
8888

8989
Returns the client endpoint for the etcd container and an error, if any. In the case of a cluster, it returns the client endpoint for the first node.
9090

9191
#### PeerEndpoint
9292

93-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
93+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
9494

9595
Returns the peer endpoint for the etcd container and an error, if any. In the case of a cluster, it returns the peer endpoint for the first node.

docs/modules/meilisearch.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Meilisearch
22

3-
Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
3+
Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
44

55
## Introduction
66

@@ -24,7 +24,7 @@ go get github.com/testcontainers/testcontainers-go/modules/meilisearch
2424

2525
### Run function
2626

27-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
27+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
2828

2929
The Meilisearch module exposes one entrypoint function to create the Meilisearch container, and this function receives three parameters:
3030

@@ -49,13 +49,13 @@ E.g. `Run(context.Background(), "getmeili/meilisearch:v1.10.3")`.
4949

5050
#### Master Key
5151

52-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
52+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
5353

5454
If you need to set a master key, you can use the `WithMasterKey(key string)` option. Otherwise, the default will be used which is `just-a-master-key-for-test`, which is exported on the container fields.
5555

5656
#### Dump Data
5757

58-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
58+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
5959

6060
If you need to dump data in Meilisearch upon initialization for testing, you can use `WithDumpData(filepath string)` option where `filepath` can be an absolute path or relative path to a `dump` file. Please refer to the official Meilisearch documentation about dump files [here](https://www.meilisearch.com/docs/learn/advanced/snapshots_vs_dumps#dumps).
6161

@@ -65,13 +65,13 @@ The Meilisearch container exposes the following methods:
6565

6666
#### Address
6767

68-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
68+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
6969

7070
The `Address` method retrieves the address of the Meilisearch container.
7171
It will use http as protocol, as TLS is not supported at the moment.
7272

7373
#### MasterKey
7474

75-
- Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
75+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
7676

7777
The `MasterKey` method retrieves the master key of the Meilisearch container.

docs/modules/yugabytedb.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# YugabyteDB
22

3-
Not available until the next release of testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go"><span class="tc-version">:material-tag: main</span></a>
3+
Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.34.0"><span class="tc-version">:material-tag: v0.34.0</span></a>
44

55
## Introduction
66

examples/nginx/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ go 1.22
44

55
require (
66
github.com/stretchr/testify v1.9.0
7-
github.com/testcontainers/testcontainers-go v0.32.0
7+
github.com/testcontainers/testcontainers-go v0.34.0
88
)
99

1010
replace github.com/testcontainers/testcontainers-go => ../..

examples/toxiproxy/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/go-redis/redis/v8 v8.11.5
88
github.com/google/uuid v1.6.0
99
github.com/stretchr/testify v1.9.0
10-
github.com/testcontainers/testcontainers-go v0.32.0
10+
github.com/testcontainers/testcontainers-go v0.34.0
1111
)
1212

1313
require (

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -140,4 +140,4 @@ nav:
140140
- Getting help: getting_help.md
141141
edit_uri: edit/main/docs/
142142
extra:
143-
latest_version: v0.33.0
143+
latest_version: v0.34.0

modules/artemis/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/docker/go-connections v0.5.0
77
github.com/go-stomp/stomp/v3 v3.0.5
88
github.com/stretchr/testify v1.9.0
9-
github.com/testcontainers/testcontainers-go v0.33.0
9+
github.com/testcontainers/testcontainers-go v0.34.0
1010
)
1111

1212
require (

modules/azurite/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ require (
99
github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0
1010
github.com/docker/go-connections v0.5.0
1111
github.com/stretchr/testify v1.9.0
12-
github.com/testcontainers/testcontainers-go v0.32.0
12+
github.com/testcontainers/testcontainers-go v0.34.0
1313
)
1414

1515
require (

0 commit comments

Comments
 (0)