build(deps): bump github.com/testcontainers/testcontainers-go/modules/opensearch

Bumps [github.com/testcontainers/testcontainers-go/modules/opensearch](https://github.com/testcontainers/testcontainers-go) from 0.38.0 to 0.39.0.
- [Release notes](https://github.com/testcontainers/testcontainers-go/releases)
- [Commits](https://github.com/testcontainers/testcontainers-go/compare/v0.38.0...v0.39.0)

---
updated-dependencies:
- dependency-name: github.com/testcontainers/testcontainers-go/modules/opensearch
  dependency-version: 0.39.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2025-09-23 18:10:36 +02:00
committed by Ralf Haferkamp
parent 76ac20e9e8
commit ca2636b653
196 changed files with 715 additions and 606 deletions
@@ -11,7 +11,7 @@ import (
"github.com/magiconair/properties"
)
const ReaperDefaultImage = "testcontainers/ryuk:0.12.0"
const ReaperDefaultImage = "testcontainers/ryuk:0.13.0"
var (
tcConfig Config
@@ -298,12 +298,14 @@ func testcontainersHostFromProperties(_ context.Context) (string, error) {
cfg := config.Read()
testcontainersHost := cfg.TestcontainersHost
if testcontainersHost != "" {
parsed, err := parseURL(testcontainersHost)
// Validate the URL format
_, err := parseURL(testcontainersHost)
if err != nil {
return "", err
}
return parsed, nil
// Return the original URL to preserve schema for Docker client
return testcontainersHost, nil
}
return "", ErrTestcontainersHostNotSetInProperties
+1 -1
View File
@@ -1,4 +1,4 @@
package internal
// Version is the next development version of the application
const Version = "0.38.0"
const Version = "0.39.0"