Skip to content

Commit e21a5e1

Browse files
committed
chore: use new version (v0.33.0) in modules and examples
1 parent ca76ee1 commit e21a5e1

File tree

50 files changed

+65
-59
lines changed

Some content is hidden

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

50 files changed

+65
-59
lines changed

docs/modules/grafana-lgtm.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Grafana LGTM
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.33.0"><span class="tc-version">:material-tag: v0.33.0</span></a>
44

55
## Introduction
66

@@ -24,7 +24,7 @@ go get github.com/testcontainers/testcontainers-go/modules/grafanalgtm
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.33.0"><span class="tc-version">:material-tag: v0.33.0</span></a>
2828

2929
!!!info
3030
The `RunContainer(ctx, opts...)` function is deprecated and will be removed in the next major release of _Testcontainers for Go_.
@@ -50,7 +50,7 @@ E.g. `Run(context.Background(), "grafana/otel-lgtm:0.6.0")`.
5050

5151
#### Admin Credentials
5252

53-
- 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>
53+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.33.0"><span class="tc-version">:material-tag: v0.33.0</span></a>
5454

5555
If you need to set different admin credentials in the Grafana LGTM container, you can set them using the `WithAdminCredentials(user, password)` option.
5656

@@ -65,37 +65,37 @@ The Grafana LGTM container exposes the following methods:
6565

6666
#### Grafana Endpoint
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.33.0"><span class="tc-version">:material-tag: v0.33.0</span></a>
6969

7070
The `HttpEndpoint(ctx)` method returns the HTTP endpoint to connect to Grafana, using the default `3000` port. The same method with the `Must` prefix returns just the endpoing, and panics if an error occurs.
7171

7272
#### Loki Endpoint
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.33.0"><span class="tc-version">:material-tag: v0.33.0</span></a>
7575

7676
The `LokiEndpoint(ctx)` method returns the HTTP endpoint to connect to Loki, using the default `3100` port. The same method with the `Must` prefix returns just the endpoing, and panics if an error occurs.
7777

7878
#### Tempo Endpoint
7979

80-
- 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>
80+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.33.0"><span class="tc-version">:material-tag: v0.33.0</span></a>
8181

8282
The `TempoEndpoint(ctx)` method returns the HTTP endpoint to connect to Tempo, using the default `3200` port. The same method with the `Must` prefix returns just the endpoing, and panics if an error occurs.
8383

8484
#### Otel HTTP Endpoint
8585

86-
- 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>
86+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.33.0"><span class="tc-version">:material-tag: v0.33.0</span></a>
8787

8888
The `OtelHTTPEndpoint(ctx)` method returns the endpoint to connect to Otel using HTTP, using the default `4318` port. The same method with the `Must` prefix returns just the endpoing, and panics if an error occurs.
8989

9090
#### Otel gRPC Endpoint
9191

92-
- 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>
92+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.33.0"><span class="tc-version">:material-tag: v0.33.0</span></a>
9393

9494
The `OtelGRPCEndpoint(ctx)` method returns the endpoint to connect to Otel using gRPC, using the default `4317` port. The same method with the `Must` prefix returns just the endpoing, and panics if an error occurs.
9595

9696
#### Prometheus Endpoint
9797

98-
- 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>
98+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.33.0"><span class="tc-version">:material-tag: v0.33.0</span></a>
9999

100100
The `PrometheusHttpEndpoint(ctx)` method returns the endpoint to connect to Prometheus, using the default `9090` port. The same method with the `Must` prefix returns just the endpoing, and panics if an error occurs.
101101

docs/modules/valkey.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Valkey
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.33.0"><span class="tc-version">:material-tag: v0.33.0</span></a>
44

55
## Introduction
66

@@ -24,7 +24,7 @@ go get github.com/testcontainers/testcontainers-go/modules/valkey
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.33.0"><span class="tc-version">:material-tag: v0.33.0</span></a>
2828

2929
!!!info
3030
The `RunContainer(ctx, opts...)` function is deprecated and will be removed in the next major release of _Testcontainers for Go_.
@@ -52,10 +52,14 @@ E.g. `Run(context.Background(), "valkey/valkey:7.2.5")`.
5252

5353
#### Snapshotting
5454

55+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.33.0"><span class="tc-version">:material-tag: v0.33.0</span></a>
56+
5557
By default Valkey saves snapshots of the dataset on disk, in a binary file called dump.rdb. You can configure Valkey to have it save the dataset every `N` seconds if there are at least `M` changes in the dataset. E.g. `WithSnapshotting(10, 1)`.
5658

5759
#### Log Level
5860

61+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.33.0"><span class="tc-version">:material-tag: v0.33.0</span></a>
62+
5963
You can easily set the valkey logging level. E.g. `WithLogLevel(LogLevelDebug)`.
6064

6165
#### Valkey configuration
@@ -68,6 +72,8 @@ The Valkey container exposes the following methods:
6872

6973
#### ConnectionString
7074

75+
- Since testcontainers-go <a href="https://github.com/testcontainers/testcontainers-go/releases/tag/v0.33.0"><span class="tc-version">:material-tag: v0.33.0</span></a>
76+
7177
This method returns the connection string to connect to the Valkey container, using the default `6379` port.
7278

7379
<!--codeinclude-->

examples/nginx/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ module github.com/testcontainers/testcontainers-go/examples/nginx
22

33
go 1.21
44

5-
require github.com/testcontainers/testcontainers-go v0.32.0
5+
require github.com/testcontainers/testcontainers-go v0.33.0
66

77
replace github.com/testcontainers/testcontainers-go => ../..
88

examples/toxiproxy/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ require (
66
github.com/Shopify/toxiproxy/v2 v2.8.0
77
github.com/go-redis/redis/v8 v8.11.5
88
github.com/google/uuid v1.6.0
9-
github.com/testcontainers/testcontainers-go v0.32.0
9+
github.com/testcontainers/testcontainers-go v0.33.0
1010
)
1111

1212
require (

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,4 +134,4 @@ nav:
134134
- Getting help: getting_help.md
135135
edit_uri: edit/main/docs/
136136
extra:
137-
latest_version: v0.32.0
137+
latest_version: v0.33.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.32.0
9+
github.com/testcontainers/testcontainers-go v0.33.0
1010
)
1111

1212
require (

modules/azurite/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ require (
88
github.com/Azure/azure-sdk-for-go/sdk/storage/azblob v1.3.2
99
github.com/Azure/azure-sdk-for-go/sdk/storage/azqueue v1.0.0
1010
github.com/docker/go-connections v0.5.0
11-
github.com/testcontainers/testcontainers-go v0.32.0
11+
github.com/testcontainers/testcontainers-go v0.33.0
1212
)
1313

1414
require (

modules/cassandra/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/gocql/gocql v1.6.0
88
github.com/stretchr/testify v1.9.0
9-
github.com/testcontainers/testcontainers-go v0.32.0
9+
github.com/testcontainers/testcontainers-go v0.33.0
1010
)
1111

1212
require (

modules/chroma/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ go 1.21
55
require (
66
github.com/amikos-tech/chroma-go v0.1.2
77
github.com/stretchr/testify v1.9.0
8-
github.com/testcontainers/testcontainers-go v0.32.0
8+
github.com/testcontainers/testcontainers-go v0.33.0
99
)
1010

1111
require (

modules/clickhouse/go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ require (
77
github.com/cenkalti/backoff/v4 v4.2.1
88
github.com/docker/go-connections v0.5.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.33.0
1111
)
1212

1313
require (

0 commit comments

Comments
 (0)