From 08f2b0bf652daf0f70dacf4cfc40ddc683bab11b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Tue, 19 Sep 2023 11:02:00 +0200 Subject: [PATCH] chore: use new version (v0.24.0) in modules and examples --- docs/modules/elasticsearch.md | 2 +- docs/modules/kafka.md | 2 +- docs/modules/mariadb.md | 2 +- docs/modules/nats.md | 2 +- examples/bigtable/go.mod | 2 +- examples/cockroachdb/go.mod | 2 +- examples/consul/go.mod | 2 +- examples/datastore/go.mod | 2 +- examples/firestore/go.mod | 2 +- examples/nginx/go.mod | 2 +- examples/pubsub/go.mod | 2 +- examples/spanner/go.mod | 2 +- examples/toxiproxy/go.mod | 2 +- mkdocs.yml | 2 +- modules/artemis/go.mod | 2 +- modules/clickhouse/go.mod | 2 +- modules/compose/go.mod | 2 +- modules/couchbase/go.mod | 2 +- modules/elasticsearch/go.mod | 2 +- modules/k3s/go.mod | 2 +- modules/kafka/go.mod | 2 +- modules/localstack/go.mod | 2 +- modules/mariadb/go.mod | 2 +- modules/mongodb/go.mod | 2 +- modules/mysql/go.mod | 2 +- modules/nats/go.mod | 2 +- modules/neo4j/go.mod | 2 +- modules/postgres/go.mod | 2 +- modules/pulsar/go.mod | 2 +- modules/redis/go.mod | 2 +- modules/redpanda/go.mod | 2 +- modules/vault/go.mod | 2 +- sonar-project.properties | 2 +- 33 files changed, 33 insertions(+), 33 deletions(-) diff --git a/docs/modules/elasticsearch.md b/docs/modules/elasticsearch.md index 68a2c02120..41cc77d8fe 100644 --- a/docs/modules/elasticsearch.md +++ b/docs/modules/elasticsearch.md @@ -1,6 +1,6 @@ # Elasticsearch -Not available until the next release of testcontainers-go :material-tag: main +Since testcontainers-go :material-tag: v0.24.0 ## Introduction diff --git a/docs/modules/kafka.md b/docs/modules/kafka.md index 8971a2725f..5b6f20f7de 100644 --- a/docs/modules/kafka.md +++ b/docs/modules/kafka.md @@ -1,6 +1,6 @@ # Kafka (KRaft) -Not available until the next release of testcontainers-go :material-tag: main +Since testcontainers-go :material-tag: v0.24.0 ## Introduction diff --git a/docs/modules/mariadb.md b/docs/modules/mariadb.md index 35fabd4925..cbb21b2dd8 100644 --- a/docs/modules/mariadb.md +++ b/docs/modules/mariadb.md @@ -1,6 +1,6 @@ # MariaDB -Not available until the next release of testcontainers-go :material-tag: main +Since testcontainers-go :material-tag: v0.24.0 ## Introduction diff --git a/docs/modules/nats.md b/docs/modules/nats.md index e4bda6a85b..bf2cc2f628 100644 --- a/docs/modules/nats.md +++ b/docs/modules/nats.md @@ -1,6 +1,6 @@ # NATS -Not available until the next release of testcontainers-go :material-tag: main +Since testcontainers-go :material-tag: v0.24.0 ## Introduction diff --git a/examples/bigtable/go.mod b/examples/bigtable/go.mod index fa18e49663..cb52344fba 100644 --- a/examples/bigtable/go.mod +++ b/examples/bigtable/go.mod @@ -4,7 +4,7 @@ go 1.20 require ( cloud.google.com/go/bigtable v1.19.0 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 google.golang.org/api v0.138.0 google.golang.org/grpc v1.57.0 ) diff --git a/examples/cockroachdb/go.mod b/examples/cockroachdb/go.mod index 95944f636a..80a0572ff0 100644 --- a/examples/cockroachdb/go.mod +++ b/examples/cockroachdb/go.mod @@ -6,7 +6,7 @@ require ( github.com/google/uuid v1.3.1 github.com/jackc/pgx/v4 v4.18.1 github.com/stretchr/testify v1.8.4 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 ) replace github.com/testcontainers/testcontainers-go => ../.. diff --git a/examples/consul/go.mod b/examples/consul/go.mod index 3ee9176aa5..d9277c768e 100644 --- a/examples/consul/go.mod +++ b/examples/consul/go.mod @@ -4,7 +4,7 @@ go 1.20 require ( github.com/hashicorp/consul/api v1.24.0 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 ) require ( diff --git a/examples/datastore/go.mod b/examples/datastore/go.mod index 553057a585..f701af4f2d 100644 --- a/examples/datastore/go.mod +++ b/examples/datastore/go.mod @@ -4,7 +4,7 @@ go 1.20 require ( cloud.google.com/go/datastore v1.14.0 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 google.golang.org/api v0.138.0 google.golang.org/grpc v1.57.0 ) diff --git a/examples/firestore/go.mod b/examples/firestore/go.mod index c51bcae396..ed90894fa2 100644 --- a/examples/firestore/go.mod +++ b/examples/firestore/go.mod @@ -4,7 +4,7 @@ go 1.20 require ( cloud.google.com/go/firestore v1.12.0 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 google.golang.org/api v0.138.0 google.golang.org/grpc v1.57.0 ) diff --git a/examples/nginx/go.mod b/examples/nginx/go.mod index 29b85763af..d799095adb 100644 --- a/examples/nginx/go.mod +++ b/examples/nginx/go.mod @@ -2,7 +2,7 @@ module github.com/testcontainers/testcontainers-go/examples/nginx go 1.20 -require github.com/testcontainers/testcontainers-go v0.23.0 +require github.com/testcontainers/testcontainers-go v0.24.0 replace github.com/testcontainers/testcontainers-go => ../.. diff --git a/examples/pubsub/go.mod b/examples/pubsub/go.mod index 6a0aea03fa..c462e9a0a4 100644 --- a/examples/pubsub/go.mod +++ b/examples/pubsub/go.mod @@ -4,7 +4,7 @@ go 1.20 require ( cloud.google.com/go/pubsub v1.33.0 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 google.golang.org/api v0.138.0 google.golang.org/grpc v1.57.0 ) diff --git a/examples/spanner/go.mod b/examples/spanner/go.mod index 945e219b38..0de92e1bdd 100644 --- a/examples/spanner/go.mod +++ b/examples/spanner/go.mod @@ -4,7 +4,7 @@ go 1.20 require ( cloud.google.com/go/spanner v1.49.0 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 google.golang.org/api v0.138.0 google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5 google.golang.org/grpc v1.57.0 diff --git a/examples/toxiproxy/go.mod b/examples/toxiproxy/go.mod index 7a90dcde53..6683abce3e 100644 --- a/examples/toxiproxy/go.mod +++ b/examples/toxiproxy/go.mod @@ -6,7 +6,7 @@ require ( github.com/Shopify/toxiproxy/v2 v2.6.0 github.com/go-redis/redis/v8 v8.11.5 github.com/google/uuid v1.3.1 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 ) require ( diff --git a/mkdocs.yml b/mkdocs.yml index 0e2c62fee1..c0a28a2708 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -111,4 +111,4 @@ nav: - Getting help: getting_help.md edit_uri: edit/main/docs/ extra: - latest_version: v0.23.0 + latest_version: v0.24.0 diff --git a/modules/artemis/go.mod b/modules/artemis/go.mod index 36d358372d..9b8aa189b9 100644 --- a/modules/artemis/go.mod +++ b/modules/artemis/go.mod @@ -6,7 +6,7 @@ require ( github.com/docker/go-connections v0.4.0 github.com/go-stomp/stomp/v3 v3.0.5 github.com/stretchr/testify v1.8.4 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 ) require ( diff --git a/modules/clickhouse/go.mod b/modules/clickhouse/go.mod index 3e25214207..4d9d9ec8c1 100644 --- a/modules/clickhouse/go.mod +++ b/modules/clickhouse/go.mod @@ -6,7 +6,7 @@ require ( github.com/ClickHouse/clickhouse-go/v2 v2.13.4 github.com/docker/go-connections v0.4.0 github.com/stretchr/testify v1.8.4 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 ) require ( diff --git a/modules/compose/go.mod b/modules/compose/go.mod index 256c40de90..1550789b21 100644 --- a/modules/compose/go.mod +++ b/modules/compose/go.mod @@ -14,7 +14,7 @@ require ( github.com/docker/docker v24.0.6+incompatible github.com/google/uuid v1.3.1 github.com/stretchr/testify v1.8.4 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 golang.org/x/sync v0.3.0 gopkg.in/yaml.v3 v3.0.1 ) diff --git a/modules/couchbase/go.mod b/modules/couchbase/go.mod index e4681c3adf..5d13146c19 100644 --- a/modules/couchbase/go.mod +++ b/modules/couchbase/go.mod @@ -6,7 +6,7 @@ require ( github.com/cenkalti/backoff/v4 v4.2.1 github.com/couchbase/gocb/v2 v2.6.3 github.com/docker/go-connections v0.4.0 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 github.com/tidwall/gjson v1.16.0 ) diff --git a/modules/elasticsearch/go.mod b/modules/elasticsearch/go.mod index 939e37028e..af10ddc6e7 100644 --- a/modules/elasticsearch/go.mod +++ b/modules/elasticsearch/go.mod @@ -5,7 +5,7 @@ go 1.20 require ( github.com/elastic/go-elasticsearch/v8 v8.9.0 github.com/stretchr/testify v1.8.4 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 golang.org/x/mod v0.12.0 ) diff --git a/modules/k3s/go.mod b/modules/k3s/go.mod index c0d515690a..635f93c7ea 100644 --- a/modules/k3s/go.mod +++ b/modules/k3s/go.mod @@ -5,7 +5,7 @@ go 1.20 require ( github.com/docker/docker v24.0.6+incompatible github.com/docker/go-connections v0.4.0 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 gopkg.in/yaml.v3 v3.0.1 k8s.io/apimachinery v0.28.1 k8s.io/client-go v0.28.1 diff --git a/modules/kafka/go.mod b/modules/kafka/go.mod index 540d4d3a3b..82c680b219 100644 --- a/modules/kafka/go.mod +++ b/modules/kafka/go.mod @@ -5,7 +5,7 @@ go 1.20 require ( github.com/IBM/sarama v1.41.1 github.com/docker/go-connections v0.4.0 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 golang.org/x/mod v0.12.0 ) diff --git a/modules/localstack/go.mod b/modules/localstack/go.mod index ea48b3b00c..83bf282224 100644 --- a/modules/localstack/go.mod +++ b/modules/localstack/go.mod @@ -10,7 +10,7 @@ require ( github.com/aws/aws-sdk-go-v2/service/s3 v1.38.5 github.com/docker/go-connections v0.4.0 github.com/stretchr/testify v1.8.4 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 golang.org/x/mod v0.12.0 ) diff --git a/modules/mariadb/go.mod b/modules/mariadb/go.mod index 04b4c7012b..87743ecc14 100644 --- a/modules/mariadb/go.mod +++ b/modules/mariadb/go.mod @@ -4,7 +4,7 @@ go 1.20 require ( github.com/go-sql-driver/mysql v1.7.1 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 ) require ( diff --git a/modules/mongodb/go.mod b/modules/mongodb/go.mod index b7137ee5ba..e63edee384 100644 --- a/modules/mongodb/go.mod +++ b/modules/mongodb/go.mod @@ -3,7 +3,7 @@ module github.com/testcontainers/testcontainers-go/modules/mongodb go 1.20 require ( - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 go.mongodb.org/mongo-driver v1.12.1 ) diff --git a/modules/mysql/go.mod b/modules/mysql/go.mod index 2db091502b..9ec459716c 100644 --- a/modules/mysql/go.mod +++ b/modules/mysql/go.mod @@ -4,7 +4,7 @@ go 1.20 require ( github.com/go-sql-driver/mysql v1.7.1 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 ) diff --git a/modules/nats/go.mod b/modules/nats/go.mod index 6cc194774b..3699de64c7 100644 --- a/modules/nats/go.mod +++ b/modules/nats/go.mod @@ -4,7 +4,7 @@ go 1.20 require ( github.com/nats-io/nats.go v1.28.0 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 ) require ( diff --git a/modules/neo4j/go.mod b/modules/neo4j/go.mod index 73927c3243..a162f63416 100644 --- a/modules/neo4j/go.mod +++ b/modules/neo4j/go.mod @@ -5,7 +5,7 @@ go 1.20 require ( github.com/docker/go-connections v0.4.0 github.com/neo4j/neo4j-go-driver/v5 v5.12.0 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 ) require ( diff --git a/modules/postgres/go.mod b/modules/postgres/go.mod index 62ebf9cce6..2d71f4d182 100644 --- a/modules/postgres/go.mod +++ b/modules/postgres/go.mod @@ -6,7 +6,7 @@ require ( github.com/docker/go-connections v0.4.0 github.com/lib/pq v1.10.9 github.com/stretchr/testify v1.8.4 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 ) diff --git a/modules/pulsar/go.mod b/modules/pulsar/go.mod index 948f101d5f..2412ef5997 100644 --- a/modules/pulsar/go.mod +++ b/modules/pulsar/go.mod @@ -7,7 +7,7 @@ require ( github.com/docker/docker v24.0.6+incompatible github.com/docker/go-connections v0.4.0 github.com/stretchr/testify v1.8.4 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 ) replace github.com/testcontainers/testcontainers-go => ../.. diff --git a/modules/redis/go.mod b/modules/redis/go.mod index 73d568e88f..ce2c19bbde 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.3.1 github.com/stretchr/testify v1.8.4 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 ) diff --git a/modules/redpanda/go.mod b/modules/redpanda/go.mod index 82aafd9d51..ec04e9a717 100644 --- a/modules/redpanda/go.mod +++ b/modules/redpanda/go.mod @@ -5,7 +5,7 @@ go 1.20 require ( github.com/docker/go-connections v0.4.0 github.com/stretchr/testify v1.8.4 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 github.com/twmb/franz-go v1.14.4 github.com/twmb/franz-go/pkg/kadm v1.9.0 diff --git a/modules/vault/go.mod b/modules/vault/go.mod index 2b697ec56f..a87cbabf50 100644 --- a/modules/vault/go.mod +++ b/modules/vault/go.mod @@ -6,7 +6,7 @@ require ( github.com/docker/docker v24.0.6+incompatible github.com/hashicorp/vault-client-go v0.3.3 github.com/stretchr/testify v1.8.4 - github.com/testcontainers/testcontainers-go v0.23.0 + github.com/testcontainers/testcontainers-go v0.24.0 github.com/tidwall/gjson v1.16.0 ) diff --git a/sonar-project.properties b/sonar-project.properties index 66b7baa422..afc76c15b0 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.23.0 +sonar.projectVersion=v0.24.0 sonar.sources=.