From 1dfca118421b33810a21af06cc221a1756fadfeb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Wed, 20 Sep 2023 12:51:44 +0200 Subject: [PATCH] chore: use new version (v0.24.1) in modules and examples --- 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 +- internal/version.go | 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 +- 30 files changed, 30 insertions(+), 30 deletions(-) diff --git a/examples/bigtable/go.mod b/examples/bigtable/go.mod index cb52344fba..3b581d665a 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 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 80a0572ff0..d90c2e72d2 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 ) replace github.com/testcontainers/testcontainers-go => ../.. diff --git a/examples/consul/go.mod b/examples/consul/go.mod index d9277c768e..fbf6850a4e 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 ) require ( diff --git a/examples/datastore/go.mod b/examples/datastore/go.mod index f701af4f2d..43f98e9905 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 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 ed90894fa2..76594d37ac 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 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 d799095adb..10cee7f277 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.24.0 +require github.com/testcontainers/testcontainers-go v0.24.1 replace github.com/testcontainers/testcontainers-go => ../.. diff --git a/examples/pubsub/go.mod b/examples/pubsub/go.mod index c462e9a0a4..aa147f3195 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 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 0de92e1bdd..12f7690b35 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 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 6683abce3e..3f04e9b511 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 ) require ( diff --git a/internal/version.go b/internal/version.go index 3a0bafc087..b2f98006fe 100644 --- a/internal/version.go +++ b/internal/version.go @@ -1,4 +1,4 @@ package internal // Version is the next development version of the application -const Version = "0.25.0" +const Version = "0.24.1" diff --git a/mkdocs.yml b/mkdocs.yml index c0a28a2708..85053937e7 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.24.0 + latest_version: v0.24.1 diff --git a/modules/artemis/go.mod b/modules/artemis/go.mod index 9b8aa189b9..56c6551a4c 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 ) require ( diff --git a/modules/clickhouse/go.mod b/modules/clickhouse/go.mod index 4d9d9ec8c1..7f74aceae1 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 ) require ( diff --git a/modules/compose/go.mod b/modules/compose/go.mod index 1550789b21..1f91c2efc5 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 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 5d13146c19..7fdcf25cc1 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 github.com/tidwall/gjson v1.16.0 ) diff --git a/modules/elasticsearch/go.mod b/modules/elasticsearch/go.mod index af10ddc6e7..3d8e8826e4 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 golang.org/x/mod v0.12.0 ) diff --git a/modules/k3s/go.mod b/modules/k3s/go.mod index 635f93c7ea..4d05e72dfb 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 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 82c680b219..f21006edb7 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 golang.org/x/mod v0.12.0 ) diff --git a/modules/localstack/go.mod b/modules/localstack/go.mod index 83bf282224..1add6b6083 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 golang.org/x/mod v0.12.0 ) diff --git a/modules/mariadb/go.mod b/modules/mariadb/go.mod index 87743ecc14..50c588423b 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 ) require ( diff --git a/modules/mongodb/go.mod b/modules/mongodb/go.mod index e63edee384..dcb10787bf 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 go.mongodb.org/mongo-driver v1.12.1 ) diff --git a/modules/mysql/go.mod b/modules/mysql/go.mod index 9ec459716c..f0b28f45cd 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 ) diff --git a/modules/nats/go.mod b/modules/nats/go.mod index 3699de64c7..469c277622 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 ) require ( diff --git a/modules/neo4j/go.mod b/modules/neo4j/go.mod index a162f63416..8363f9d042 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 ) require ( diff --git a/modules/postgres/go.mod b/modules/postgres/go.mod index 2d71f4d182..fe6fbdd5d1 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 ) diff --git a/modules/pulsar/go.mod b/modules/pulsar/go.mod index 2412ef5997..0ccf5226eb 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 ) replace github.com/testcontainers/testcontainers-go => ../.. diff --git a/modules/redis/go.mod b/modules/redis/go.mod index ce2c19bbde..7b062429c0 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 ) diff --git a/modules/redpanda/go.mod b/modules/redpanda/go.mod index ec04e9a717..aaee09c821 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 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 a87cbabf50..b6999f3023 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.24.0 + github.com/testcontainers/testcontainers-go v0.24.1 github.com/tidwall/gjson v1.16.0 ) diff --git a/sonar-project.properties b/sonar-project.properties index afc76c15b0..91dffddfef 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.24.0 +sonar.projectVersion=v0.24.1 sonar.sources=.