diff --git a/docs/modules/databend.md b/docs/modules/databend.md index 450595a264..0e3e2fe438 100644 --- a/docs/modules/databend.md +++ b/docs/modules/databend.md @@ -1,6 +1,6 @@ # Databend -Not available until the next release of testcontainers-go :material-tag: main +Since testcontainers-go :material-tag: v0.34.0 ## Introduction @@ -24,7 +24,7 @@ go get github.com/testcontainers/testcontainers-go/modules/databend ### Run function -- Not available until the next release of testcontainers-go :material-tag: main +- Since testcontainers-go :material-tag: v0.34.0 The Databend module exposes one entrypoint function to create the Databend container, and this function receives three parameters: diff --git a/docs/modules/dynamodb.md b/docs/modules/dynamodb.md index cdc7312640..b7b53b64e9 100644 --- a/docs/modules/dynamodb.md +++ b/docs/modules/dynamodb.md @@ -1,6 +1,6 @@ # DynamoDB -Not available until the next release of testcontainers-go :material-tag: main +Since testcontainers-go :material-tag: v0.34.0 ## Introduction @@ -24,7 +24,7 @@ go get github.com/testcontainers/testcontainers-go/modules/dynamodb ### Run function -- Not available until the next release of testcontainers-go :material-tag: main +- Since testcontainers-go :material-tag: v0.34.0 The DynamoDB module exposes one entrypoint function to create the DynamoDB container, and this function receives three parameters: @@ -49,13 +49,13 @@ E.g. `Run(context.Background(), "amazon/dynamodb-local:2.2.1")`. #### WithSharedDB -- Not available until the next release of testcontainers-go :material-tag: main +- Since testcontainers-go :material-tag: v0.34.0 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. #### WithDisableTelemetry -- Not available until the next release of testcontainers-go :material-tag: main +- Since testcontainers-go :material-tag: v0.34.0 You can turn off telemetry when starting the DynamoDB container, using the option `WithDisableTelemetry`. @@ -65,7 +65,7 @@ The DynamoDB container exposes the following methods: #### ConnectionString -- Not available until the next release of testcontainers-go :material-tag: main +- Since testcontainers-go :material-tag: v0.34.0 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, using the AWS SDK or any other DynamoDB client of your choice. diff --git a/docs/modules/etcd.md b/docs/modules/etcd.md index f83816c986..ffde87ac6b 100644 --- a/docs/modules/etcd.md +++ b/docs/modules/etcd.md @@ -1,6 +1,6 @@ # etcd -Not available until the next release of testcontainers-go :material-tag: main +Since testcontainers-go :material-tag: v0.34.0 ## Introduction @@ -24,7 +24,7 @@ go get github.com/testcontainers/testcontainers-go/modules/etcd ### Run function -- Not available until the next release of testcontainers-go :material-tag: main +- Since testcontainers-go :material-tag: v0.34.0 The etcd module exposes one entrypoint function to create the etcd container, and this function receives three parameters: @@ -49,19 +49,19 @@ E.g. `Run(context.Background(), "bitnami/etcd:latest")`. #### WithAdditionalArgs -- Not available until the next release of testcontainers-go :material-tag: main +- Since testcontainers-go :material-tag: v0.34.0 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. #### WithDataDir -- Not available until the next release of testcontainers-go :material-tag: main +- Since testcontainers-go :material-tag: v0.34.0 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`. #### WithNodes -- Not available until the next release of testcontainers-go :material-tag: main +- Since testcontainers-go :material-tag: v0.34.0 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, 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 #### WithClusterToken -- Not available until the next release of testcontainers-go :material-tag: main +- Since testcontainers-go :material-tag: v0.34.0 Sets the cluster token for the etcd cluster. The cluster token is used to identify the etcd cluster. The default value is `mys3cr3ttok3n`. The etcd container holds a reference to the cluster token, so you can use it with e.g. `ctr.ClusterToken`. ### Container Methods -- Not available until the next release of testcontainers-go :material-tag: main +- Since testcontainers-go :material-tag: v0.34.0 The etcd container exposes the following methods: #### ClientEndpoint -- Not available until the next release of testcontainers-go :material-tag: main +- Since testcontainers-go :material-tag: v0.34.0 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. #### PeerEndpoint -- Not available until the next release of testcontainers-go :material-tag: main +- Since testcontainers-go :material-tag: v0.34.0 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. diff --git a/docs/modules/meilisearch.md b/docs/modules/meilisearch.md index 51214761b4..d8fe865be0 100644 --- a/docs/modules/meilisearch.md +++ b/docs/modules/meilisearch.md @@ -1,6 +1,6 @@ # Meilisearch -Not available until the next release of testcontainers-go :material-tag: main +Since testcontainers-go :material-tag: v0.34.0 ## Introduction @@ -24,7 +24,7 @@ go get github.com/testcontainers/testcontainers-go/modules/meilisearch ### Run function -- Not available until the next release of testcontainers-go :material-tag: main +- Since testcontainers-go :material-tag: v0.34.0 The Meilisearch module exposes one entrypoint function to create the Meilisearch container, and this function receives three parameters: @@ -49,13 +49,13 @@ E.g. `Run(context.Background(), "getmeili/meilisearch:v1.10.3")`. #### Master Key -- Not available until the next release of testcontainers-go :material-tag: main +- Since testcontainers-go :material-tag: v0.34.0 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. #### Dump Data -- Not available until the next release of testcontainers-go :material-tag: main +- Since testcontainers-go :material-tag: v0.34.0 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). @@ -65,13 +65,13 @@ The Meilisearch container exposes the following methods: #### Address -- Not available until the next release of testcontainers-go :material-tag: main +- Since testcontainers-go :material-tag: v0.34.0 The `Address` method retrieves the address of the Meilisearch container. It will use http as protocol, as TLS is not supported at the moment. #### MasterKey -- Not available until the next release of testcontainers-go :material-tag: main +- Since testcontainers-go :material-tag: v0.34.0 The `MasterKey` method retrieves the master key of the Meilisearch container. diff --git a/docs/modules/yugabytedb.md b/docs/modules/yugabytedb.md index b645d678c9..9922c48574 100644 --- a/docs/modules/yugabytedb.md +++ b/docs/modules/yugabytedb.md @@ -1,6 +1,6 @@ # YugabyteDB -Not available until the next release of testcontainers-go :material-tag: main +Since testcontainers-go :material-tag: v0.34.0 ## Introduction diff --git a/examples/nginx/go.mod b/examples/nginx/go.mod index 186070ac1e..19543c9484 100644 --- a/examples/nginx/go.mod +++ b/examples/nginx/go.mod @@ -4,7 +4,7 @@ go 1.22 require ( github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) replace github.com/testcontainers/testcontainers-go => ../.. diff --git a/examples/toxiproxy/go.mod b/examples/toxiproxy/go.mod index a15d130181..0862d21e8a 100644 --- a/examples/toxiproxy/go.mod +++ b/examples/toxiproxy/go.mod @@ -7,7 +7,7 @@ require ( github.com/go-redis/redis/v8 v8.11.5 github.com/google/uuid v1.6.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/mkdocs.yml b/mkdocs.yml index b09ec66557..2d80a5b420 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -140,4 +140,4 @@ nav: - Getting help: getting_help.md edit_uri: edit/main/docs/ extra: - latest_version: v0.33.0 + latest_version: v0.34.0 diff --git a/modules/artemis/go.mod b/modules/artemis/go.mod index cd2c28ae3a..b2088afe4d 100644 --- a/modules/artemis/go.mod +++ b/modules/artemis/go.mod @@ -6,7 +6,7 @@ require ( github.com/docker/go-connections v0.5.0 github.com/go-stomp/stomp/v3 v3.0.5 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/azurite/go.mod b/modules/azurite/go.mod index 0855bdcfb3..e07abe4f5f 100644 --- a/modules/azurite/go.mod +++ b/modules/azurite/go.mod @@ -9,7 +9,7 @@ require ( github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0 github.com/docker/go-connections v0.5.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/cassandra/go.mod b/modules/cassandra/go.mod index 7f75e81bb4..3136506c9d 100644 --- a/modules/cassandra/go.mod +++ b/modules/cassandra/go.mod @@ -6,7 +6,7 @@ require ( github.com/docker/go-connections v0.5.0 github.com/gocql/gocql v1.6.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/chroma/go.mod b/modules/chroma/go.mod index 616f0df680..1cb622ea1d 100644 --- a/modules/chroma/go.mod +++ b/modules/chroma/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/amikos-tech/chroma-go v0.1.2 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/clickhouse/go.mod b/modules/clickhouse/go.mod index ad2e8b0033..a471fff126 100644 --- a/modules/clickhouse/go.mod +++ b/modules/clickhouse/go.mod @@ -7,7 +7,7 @@ require ( github.com/cenkalti/backoff/v4 v4.2.1 github.com/docker/go-connections v0.5.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/cockroachdb/go.mod b/modules/cockroachdb/go.mod index e26132e941..fd7e17baa1 100644 --- a/modules/cockroachdb/go.mod +++ b/modules/cockroachdb/go.mod @@ -6,7 +6,7 @@ require ( github.com/docker/go-connections v0.5.0 github.com/jackc/pgx/v5 v5.5.4 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/compose/go.mod b/modules/compose/go.mod index 16f28c9da3..35ab7d526b 100644 --- a/modules/compose/go.mod +++ b/modules/compose/go.mod @@ -11,7 +11,7 @@ require ( github.com/docker/docker v27.1.1+incompatible github.com/google/uuid v1.6.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 golang.org/x/sync v0.7.0 gopkg.in/yaml.v3 v3.0.1 ) diff --git a/modules/consul/go.mod b/modules/consul/go.mod index ee6d9c2bd9..b77596a1b7 100644 --- a/modules/consul/go.mod +++ b/modules/consul/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/hashicorp/consul/api v1.27.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/couchbase/go.mod b/modules/couchbase/go.mod index 7eee2904d4..d31b6f080d 100644 --- a/modules/couchbase/go.mod +++ b/modules/couchbase/go.mod @@ -7,7 +7,7 @@ require ( github.com/couchbase/gocb/v2 v2.7.2 github.com/docker/go-connections v0.5.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 github.com/tidwall/gjson v1.17.1 ) diff --git a/modules/databend/go.mod b/modules/databend/go.mod index e4892363cc..c16777822e 100644 --- a/modules/databend/go.mod +++ b/modules/databend/go.mod @@ -5,7 +5,7 @@ go 1.22.0 require ( github.com/datafuselabs/databend-go v0.7.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/dolt/go.mod b/modules/dolt/go.mod index 189b6a7701..d363787d92 100644 --- a/modules/dolt/go.mod +++ b/modules/dolt/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/go-sql-driver/mysql v1.7.1 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/dynamodb/go.mod b/modules/dynamodb/go.mod index 08d4eab7c1..75804011b0 100644 --- a/modules/dynamodb/go.mod +++ b/modules/dynamodb/go.mod @@ -9,7 +9,7 @@ require ( github.com/aws/aws-sdk-go-v2/service/dynamodb v1.35.1 github.com/aws/smithy-go v1.21.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/elasticsearch/go.mod b/modules/elasticsearch/go.mod index a56a624637..108bc46b4e 100644 --- a/modules/elasticsearch/go.mod +++ b/modules/elasticsearch/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/elastic/go-elasticsearch/v8 v8.12.1 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 golang.org/x/mod v0.16.0 ) diff --git a/modules/etcd/go.mod b/modules/etcd/go.mod index fb5e7f39d8..a1ecca2f68 100644 --- a/modules/etcd/go.mod +++ b/modules/etcd/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/docker/docker v27.1.1+incompatible github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 go.etcd.io/etcd/client/v3 v3.5.16 ) diff --git a/modules/gcloud/go.mod b/modules/gcloud/go.mod index 8ba19423ab..ab30a75a7b 100644 --- a/modules/gcloud/go.mod +++ b/modules/gcloud/go.mod @@ -10,7 +10,7 @@ require ( cloud.google.com/go/pubsub v1.36.2 cloud.google.com/go/spanner v1.57.0 github.com/docker/go-connections v0.5.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 google.golang.org/api v0.169.0 google.golang.org/grpc v1.64.1 ) diff --git a/modules/grafana-lgtm/go.mod b/modules/grafana-lgtm/go.mod index 26abe93727..c5be803b14 100644 --- a/modules/grafana-lgtm/go.mod +++ b/modules/grafana-lgtm/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/docker/go-connections v0.5.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 go.opentelemetry.io/contrib/bridges/otelslog v0.3.0 go.opentelemetry.io/contrib/instrumentation/runtime v0.53.0 go.opentelemetry.io/otel v1.28.0 diff --git a/modules/inbucket/go.mod b/modules/inbucket/go.mod index e64575c11c..da34424539 100644 --- a/modules/inbucket/go.mod +++ b/modules/inbucket/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/inbucket/inbucket v2.0.0+incompatible github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/influxdb/go.mod b/modules/influxdb/go.mod index bdac56db10..9931d3bd7d 100644 --- a/modules/influxdb/go.mod +++ b/modules/influxdb/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/influxdata/influxdb1-client v0.0.0-20220302092344-a9ab5670611c github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/k3s/go.mod b/modules/k3s/go.mod index 6ef16a669d..f329ae688b 100644 --- a/modules/k3s/go.mod +++ b/modules/k3s/go.mod @@ -6,7 +6,7 @@ require ( github.com/docker/docker v27.1.1+incompatible github.com/docker/go-connections v0.5.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 gopkg.in/yaml.v3 v3.0.1 k8s.io/api v0.29.2 k8s.io/apimachinery v0.29.2 diff --git a/modules/k6/go.mod b/modules/k6/go.mod index 897cf23fe6..356b3750a5 100644 --- a/modules/k6/go.mod +++ b/modules/k6/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/docker/docker v27.1.1+incompatible github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/kafka/go.mod b/modules/kafka/go.mod index f8e135d941..9c447008a1 100644 --- a/modules/kafka/go.mod +++ b/modules/kafka/go.mod @@ -6,7 +6,7 @@ require ( github.com/IBM/sarama v1.42.1 github.com/docker/go-connections v0.5.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 golang.org/x/mod v0.16.0 ) diff --git a/modules/localstack/go.mod b/modules/localstack/go.mod index 333b5279b0..52c3e446cc 100644 --- a/modules/localstack/go.mod +++ b/modules/localstack/go.mod @@ -11,7 +11,7 @@ require ( github.com/docker/docker v27.1.1+incompatible github.com/docker/go-connections v0.5.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 golang.org/x/mod v0.16.0 ) diff --git a/modules/mariadb/go.mod b/modules/mariadb/go.mod index 8a911aaff2..17e77ad48a 100644 --- a/modules/mariadb/go.mod +++ b/modules/mariadb/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/go-sql-driver/mysql v1.7.1 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/meilisearch/go.mod b/modules/meilisearch/go.mod index 2906fdca27..e63f289944 100644 --- a/modules/meilisearch/go.mod +++ b/modules/meilisearch/go.mod @@ -4,7 +4,7 @@ go 1.22 require ( github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/milvus/go.mod b/modules/milvus/go.mod index d743fcd143..c11bcc5d73 100644 --- a/modules/milvus/go.mod +++ b/modules/milvus/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/milvus-io/milvus-sdk-go/v2 v2.4.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/minio/go.mod b/modules/minio/go.mod index 3ed9eac6de..be57f29aef 100644 --- a/modules/minio/go.mod +++ b/modules/minio/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/minio/minio-go/v7 v7.0.68 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/mockserver/go.mod b/modules/mockserver/go.mod index 4ce03a96e0..8c8fb8fb8f 100644 --- a/modules/mockserver/go.mod +++ b/modules/mockserver/go.mod @@ -4,7 +4,7 @@ go 1.22 require ( github.com/BraspagDevelopers/mock-server-client v0.2.2 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/mongodb/go.mod b/modules/mongodb/go.mod index a6433e76f1..a1f0450e3f 100644 --- a/modules/mongodb/go.mod +++ b/modules/mongodb/go.mod @@ -4,7 +4,7 @@ go 1.22 require ( github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 go.mongodb.org/mongo-driver v1.13.1 ) diff --git a/modules/mssql/go.mod b/modules/mssql/go.mod index c61a8691f9..b9fd2f4677 100644 --- a/modules/mssql/go.mod +++ b/modules/mssql/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/microsoft/go-mssqldb v1.7.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/mysql/go.mod b/modules/mysql/go.mod index 9f2ddb5634..9605729d57 100644 --- a/modules/mysql/go.mod +++ b/modules/mysql/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/go-sql-driver/mysql v1.7.1 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) diff --git a/modules/nats/go.mod b/modules/nats/go.mod index 823cf79e58..b65abf1dce 100644 --- a/modules/nats/go.mod +++ b/modules/nats/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/nats-io/nats.go v1.33.1 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/neo4j/go.mod b/modules/neo4j/go.mod index 61893d0dfe..0f73bc4a33 100644 --- a/modules/neo4j/go.mod +++ b/modules/neo4j/go.mod @@ -6,7 +6,7 @@ require ( github.com/docker/go-connections v0.5.0 github.com/neo4j/neo4j-go-driver/v5 v5.18.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/ollama/go.mod b/modules/ollama/go.mod index 23ae742e4d..3fb6b744ea 100644 --- a/modules/ollama/go.mod +++ b/modules/ollama/go.mod @@ -6,7 +6,7 @@ require ( github.com/docker/docker v27.1.1+incompatible github.com/google/uuid v1.6.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 github.com/tmc/langchaingo v0.1.5 ) diff --git a/modules/openfga/go.mod b/modules/openfga/go.mod index 3232062282..3d01ff49dd 100644 --- a/modules/openfga/go.mod +++ b/modules/openfga/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/openfga/go-sdk v0.3.5 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/openldap/go.mod b/modules/openldap/go.mod index edab455ba4..76d3e619cb 100644 --- a/modules/openldap/go.mod +++ b/modules/openldap/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/go-ldap/ldap/v3 v3.4.6 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/opensearch/go.mod b/modules/opensearch/go.mod index 00521e4b15..10a1985601 100644 --- a/modules/opensearch/go.mod +++ b/modules/opensearch/go.mod @@ -6,7 +6,7 @@ require ( github.com/docker/docker v27.1.1+incompatible github.com/docker/go-units v0.5.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/postgres/go.mod b/modules/postgres/go.mod index e7906f03dd..d1cee777d0 100644 --- a/modules/postgres/go.mod +++ b/modules/postgres/go.mod @@ -7,7 +7,7 @@ require ( github.com/jackc/pgx/v5 v5.5.4 github.com/lib/pq v1.10.9 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) diff --git a/modules/pulsar/go.mod b/modules/pulsar/go.mod index 1b0812dfa3..a2f72c1b32 100644 --- a/modules/pulsar/go.mod +++ b/modules/pulsar/go.mod @@ -7,7 +7,7 @@ require ( github.com/docker/docker v27.1.1+incompatible github.com/docker/go-connections v0.5.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) replace github.com/testcontainers/testcontainers-go => ../.. diff --git a/modules/qdrant/go.mod b/modules/qdrant/go.mod index 19553c2a6e..752d47238d 100644 --- a/modules/qdrant/go.mod +++ b/modules/qdrant/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/qdrant/go-client v1.7.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 google.golang.org/grpc v1.64.1 ) diff --git a/modules/rabbitmq/go.mod b/modules/rabbitmq/go.mod index d908287f7e..b0e7b1f331 100644 --- a/modules/rabbitmq/go.mod +++ b/modules/rabbitmq/go.mod @@ -6,7 +6,7 @@ require ( github.com/docker/go-connections v0.5.0 github.com/rabbitmq/amqp091-go v1.9.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/redis/go.mod b/modules/redis/go.mod index 6f0f6da6fd..48c15ca888 100644 --- a/modules/redis/go.mod +++ b/modules/redis/go.mod @@ -6,7 +6,7 @@ require ( github.com/go-redis/redis/v8 v8.11.5 github.com/google/uuid v1.6.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) diff --git a/modules/redpanda/go.mod b/modules/redpanda/go.mod index 34bc34422a..4a8a1818a5 100644 --- a/modules/redpanda/go.mod +++ b/modules/redpanda/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/docker/go-connections v0.5.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 github.com/twmb/franz-go v1.16.1 github.com/twmb/franz-go/pkg/kadm v1.11.0 golang.org/x/mod v0.16.0 diff --git a/modules/registry/go.mod b/modules/registry/go.mod index b74bf67a98..3cbd358d34 100644 --- a/modules/registry/go.mod +++ b/modules/registry/go.mod @@ -6,7 +6,7 @@ require ( github.com/cpuguy83/dockercfg v0.3.2 github.com/docker/docker v27.1.1+incompatible github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/surrealdb/go.mod b/modules/surrealdb/go.mod index 11b0a8422d..e208dc8736 100644 --- a/modules/surrealdb/go.mod +++ b/modules/surrealdb/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/stretchr/testify v1.9.0 github.com/surrealdb/surrealdb.go v0.2.1 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/valkey/go.mod b/modules/valkey/go.mod index 07528d9ff9..4eff8cc363 100644 --- a/modules/valkey/go.mod +++ b/modules/valkey/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/google/uuid v1.6.0 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 github.com/valkey-io/valkey-go v1.0.41 ) diff --git a/modules/vault/go.mod b/modules/vault/go.mod index 5f03db61f5..e980b8852e 100644 --- a/modules/vault/go.mod +++ b/modules/vault/go.mod @@ -6,7 +6,7 @@ require ( github.com/docker/docker v27.1.1+incompatible github.com/hashicorp/vault-client-go v0.4.3 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 github.com/tidwall/gjson v1.17.1 ) diff --git a/modules/vearch/go.mod b/modules/vearch/go.mod index 757149cc58..963de6fed3 100644 --- a/modules/vearch/go.mod +++ b/modules/vearch/go.mod @@ -4,7 +4,7 @@ go 1.22.0 require ( github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 ) require ( diff --git a/modules/weaviate/go.mod b/modules/weaviate/go.mod index b0d02fba08..fa87e7e537 100644 --- a/modules/weaviate/go.mod +++ b/modules/weaviate/go.mod @@ -4,7 +4,7 @@ go 1.22 require ( github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.32.0 + github.com/testcontainers/testcontainers-go v0.34.0 github.com/weaviate/weaviate-go-client/v4 v4.13.1 google.golang.org/grpc v1.64.1 ) diff --git a/modules/yugabytedb/go.mod b/modules/yugabytedb/go.mod index 53295d1d26..68d69de42f 100644 --- a/modules/yugabytedb/go.mod +++ b/modules/yugabytedb/go.mod @@ -5,7 +5,7 @@ go 1.22 require ( github.com/lib/pq v1.10.9 github.com/stretchr/testify v1.9.0 - github.com/testcontainers/testcontainers-go v0.33.0 + github.com/testcontainers/testcontainers-go v0.34.0 github.com/yugabyte/gocql v1.6.0-yb-1 ) diff --git a/sonar-project.properties b/sonar-project.properties index 504e1f03ef..67ef15fcd5 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -7,7 +7,7 @@ sonar.projectKey=testcontainers_testcontainers-go sonar.projectName=testcontainers-go -sonar.projectVersion=v0.33.0 +sonar.projectVersion=v0.34.0 sonar.sources=.