From f2f90243693a2af6b11948b713e3269db0b7b4cb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Manuel=20de=20la=20Pe=C3=B1a?= Date: Thu, 22 Jun 2023 11:28:01 +0200 Subject: [PATCH] chore: use new version (v0.21.0) in modules and examples --- docs/modules/k3s.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/mongodb/go.mod | 2 +- examples/nats/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/compose/go.mod | 2 +- modules/couchbase/go.mod | 2 +- modules/k3s/go.mod | 2 +- modules/localstack/go.mod | 2 +- modules/mysql/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 +- 24 files changed, 24 insertions(+), 24 deletions(-) diff --git a/docs/modules/k3s.md b/docs/modules/k3s.md index d0c184ff62..e49b2a1127 100644 --- a/docs/modules/k3s.md +++ b/docs/modules/k3s.md @@ -1,6 +1,6 @@ # K3s -Not available until the next release of testcontainers-go :material-tag: main +Since testcontainers-go :material-tag: v0.21.0 ## Introduction diff --git a/examples/bigtable/go.mod b/examples/bigtable/go.mod index c662295dd8..39cccb4529 100644 --- a/examples/bigtable/go.mod +++ b/examples/bigtable/go.mod @@ -4,7 +4,7 @@ go 1.19 require ( cloud.google.com/go/bigtable v1.18.1 - github.com/testcontainers/testcontainers-go v0.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 google.golang.org/api v0.125.0 google.golang.org/grpc v1.55.0 gotest.tools/gotestsum v1.10.0 diff --git a/examples/cockroachdb/go.mod b/examples/cockroachdb/go.mod index 661bb37d4d..a1dc0465eb 100644 --- a/examples/cockroachdb/go.mod +++ b/examples/cockroachdb/go.mod @@ -6,7 +6,7 @@ require ( github.com/google/uuid v1.3.0 github.com/jackc/pgx/v4 v4.18.1 github.com/stretchr/testify v1.8.4 - github.com/testcontainers/testcontainers-go v0.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 gotest.tools/gotestsum v1.10.0 ) diff --git a/examples/consul/go.mod b/examples/consul/go.mod index aac3ddb8cf..35231d84af 100644 --- a/examples/consul/go.mod +++ b/examples/consul/go.mod @@ -4,7 +4,7 @@ go 1.19 require ( github.com/hashicorp/consul/api v1.20.0 - github.com/testcontainers/testcontainers-go v0.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 gotest.tools/gotestsum v1.10.0 ) diff --git a/examples/datastore/go.mod b/examples/datastore/go.mod index 427bb3bb89..6af2016806 100644 --- a/examples/datastore/go.mod +++ b/examples/datastore/go.mod @@ -4,7 +4,7 @@ go 1.19 require ( cloud.google.com/go/datastore v1.11.0 - github.com/testcontainers/testcontainers-go v0.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 google.golang.org/api v0.125.0 google.golang.org/grpc v1.55.0 gotest.tools/gotestsum v1.10.0 diff --git a/examples/firestore/go.mod b/examples/firestore/go.mod index db35d5ab40..06c711ccab 100644 --- a/examples/firestore/go.mod +++ b/examples/firestore/go.mod @@ -4,7 +4,7 @@ go 1.19 require ( cloud.google.com/go/firestore v1.10.0 - github.com/testcontainers/testcontainers-go v0.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 google.golang.org/api v0.125.0 google.golang.org/grpc v1.55.0 gotest.tools/gotestsum v1.10.0 diff --git a/examples/mongodb/go.mod b/examples/mongodb/go.mod index 1d6aee45bf..3eebb7c951 100644 --- a/examples/mongodb/go.mod +++ b/examples/mongodb/go.mod @@ -3,7 +3,7 @@ module github.com/testcontainers/testcontainers-go/examples/mongodb go 1.19 require ( - github.com/testcontainers/testcontainers-go v0.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 go.mongodb.org/mongo-driver v1.11.6 gotest.tools/gotestsum v1.10.0 ) diff --git a/examples/nats/go.mod b/examples/nats/go.mod index 4f9030b3d9..90f38ad531 100644 --- a/examples/nats/go.mod +++ b/examples/nats/go.mod @@ -4,7 +4,7 @@ go 1.19 require ( github.com/nats-io/nats.go v1.26.0 - github.com/testcontainers/testcontainers-go v0.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 gotest.tools/gotestsum v1.10.0 ) diff --git a/examples/nginx/go.mod b/examples/nginx/go.mod index 0a3fd3735c..a807f50b30 100644 --- a/examples/nginx/go.mod +++ b/examples/nginx/go.mod @@ -3,7 +3,7 @@ module github.com/testcontainers/testcontainers-go/examples/nginx go 1.19 require ( - github.com/testcontainers/testcontainers-go v0.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 gotest.tools/gotestsum v1.10.0 ) diff --git a/examples/pubsub/go.mod b/examples/pubsub/go.mod index 51e44e3898..5ed656f1dd 100644 --- a/examples/pubsub/go.mod +++ b/examples/pubsub/go.mod @@ -4,7 +4,7 @@ go 1.19 require ( cloud.google.com/go/pubsub v1.31.0 - github.com/testcontainers/testcontainers-go v0.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 google.golang.org/api v0.125.0 google.golang.org/grpc v1.55.0 gotest.tools/gotestsum v1.10.0 diff --git a/examples/spanner/go.mod b/examples/spanner/go.mod index 9b2fe90754..30f2c95232 100644 --- a/examples/spanner/go.mod +++ b/examples/spanner/go.mod @@ -4,7 +4,7 @@ go 1.19 require ( cloud.google.com/go/spanner v1.46.0 - github.com/testcontainers/testcontainers-go v0.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 google.golang.org/api v0.125.0 google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc google.golang.org/grpc v1.55.0 diff --git a/examples/toxiproxy/go.mod b/examples/toxiproxy/go.mod index cf1ed3d8a9..0a42967194 100644 --- a/examples/toxiproxy/go.mod +++ b/examples/toxiproxy/go.mod @@ -6,7 +6,7 @@ require ( github.com/Shopify/toxiproxy/v2 v2.5.0 github.com/go-redis/redis/v8 v8.11.5 github.com/google/uuid v1.3.0 - github.com/testcontainers/testcontainers-go v0.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 gotest.tools/gotestsum v1.10.0 ) diff --git a/mkdocs.yml b/mkdocs.yml index 9097328919..91383709d2 100644 --- a/mkdocs.yml +++ b/mkdocs.yml @@ -103,4 +103,4 @@ nav: - Getting help: getting_help.md edit_uri: edit/main/docs/ extra: - latest_version: v0.20.1 + latest_version: v0.21.0 diff --git a/modules/compose/go.mod b/modules/compose/go.mod index 4b112bb21e..4a6fbe4bff 100644 --- a/modules/compose/go.mod +++ b/modules/compose/go.mod @@ -25,7 +25,7 @@ require ( github.com/docker/docker v23.0.5+incompatible github.com/google/uuid v1.3.0 github.com/stretchr/testify v1.8.4 - github.com/testcontainers/testcontainers-go v0.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 golang.org/x/sync v0.2.0 gopkg.in/yaml.v3 v3.0.1 gotest.tools/gotestsum v1.10.0 diff --git a/modules/couchbase/go.mod b/modules/couchbase/go.mod index 2445790fd0..5aafcc9032 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.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 github.com/tidwall/gjson v1.14.4 gotest.tools/gotestsum v1.10.0 ) diff --git a/modules/k3s/go.mod b/modules/k3s/go.mod index 6350f3972c..99ee85c221 100644 --- a/modules/k3s/go.mod +++ b/modules/k3s/go.mod @@ -6,7 +6,7 @@ require ( github.com/docker/docker v23.0.5+incompatible github.com/docker/go-connections v0.4.0 github.com/stretchr/testify v1.8.4 - github.com/testcontainers/testcontainers-go v0.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 gopkg.in/yaml.v3 v3.0.1 gotest.tools/gotestsum v1.10.0 k8s.io/apimachinery v0.27.2 diff --git a/modules/localstack/go.mod b/modules/localstack/go.mod index e843ad2a44..1307d31f1a 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.33.1 github.com/docker/go-connections v0.4.0 github.com/stretchr/testify v1.8.4 - github.com/testcontainers/testcontainers-go v0.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 golang.org/x/mod v0.10.0 gotest.tools/gotestsum v1.10.0 ) diff --git a/modules/mysql/go.mod b/modules/mysql/go.mod index 9bc84a7e58..57b1ade028 100644 --- a/modules/mysql/go.mod +++ b/modules/mysql/go.mod @@ -4,7 +4,7 @@ go 1.19 require ( github.com/go-sql-driver/mysql v1.7.1 - github.com/testcontainers/testcontainers-go v0.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 gotest.tools/gotestsum v1.10.0 ) diff --git a/modules/neo4j/go.mod b/modules/neo4j/go.mod index 89c92337f8..90e9fe9165 100644 --- a/modules/neo4j/go.mod +++ b/modules/neo4j/go.mod @@ -5,7 +5,7 @@ go 1.19 require ( github.com/docker/go-connections v0.4.0 github.com/neo4j/neo4j-go-driver/v5 v5.9.0 - github.com/testcontainers/testcontainers-go v0.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 gotest.tools/gotestsum v1.10.0 ) diff --git a/modules/postgres/go.mod b/modules/postgres/go.mod index ae348e96d4..3f8b1edd90 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.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 gotest.tools/gotestsum v1.10.0 ) diff --git a/modules/pulsar/go.mod b/modules/pulsar/go.mod index 0a949f82ff..93a64b6229 100644 --- a/modules/pulsar/go.mod +++ b/modules/pulsar/go.mod @@ -7,7 +7,7 @@ require ( github.com/docker/docker v23.0.5+incompatible github.com/docker/go-connections v0.4.0 github.com/stretchr/testify v1.8.4 - github.com/testcontainers/testcontainers-go v0.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 gotest.tools/gotestsum v1.10.0 ) diff --git a/modules/redis/go.mod b/modules/redis/go.mod index 9cd6fa6e40..857d3cc833 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.0 github.com/stretchr/testify v1.8.4 - github.com/testcontainers/testcontainers-go v0.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 gotest.tools/gotestsum v1.10.0 ) diff --git a/modules/redpanda/go.mod b/modules/redpanda/go.mod index 0da9c2ebae..20e810fa35 100644 --- a/modules/redpanda/go.mod +++ b/modules/redpanda/go.mod @@ -5,7 +5,7 @@ go 1.19 require ( github.com/docker/go-connections v0.4.0 github.com/stretchr/testify v1.8.4 - github.com/testcontainers/testcontainers-go v0.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 github.com/twmb/franz-go v1.13.5 github.com/twmb/franz-go/pkg/kadm v1.8.1 gotest.tools/gotestsum v1.10.0 diff --git a/modules/vault/go.mod b/modules/vault/go.mod index bb8700a818..8f355d6ca9 100644 --- a/modules/vault/go.mod +++ b/modules/vault/go.mod @@ -6,7 +6,7 @@ require ( github.com/docker/docker v23.0.5+incompatible github.com/hashicorp/vault-client-go v0.2.0 github.com/stretchr/testify v1.8.4 - github.com/testcontainers/testcontainers-go v0.20.1 + github.com/testcontainers/testcontainers-go v0.21.0 github.com/tidwall/gjson v1.14.4 gotest.tools/gotestsum v1.10.0 )