Skip to content

build(deps): bump the testcontainers group with 2 updates#53

Closed
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/testcontainers-5dfcafe78a
Closed

build(deps): bump the testcontainers group with 2 updates#53
dependabot[bot] wants to merge 1 commit intomainfrom
dependabot/go_modules/testcontainers-5dfcafe78a

Conversation

@dependabot
Copy link
Copy Markdown

@dependabot dependabot bot commented on behalf of github Mar 31, 2025

Bumps the testcontainers group with 2 updates: github.com/testcontainers/testcontainers-go and github.com/testcontainers/testcontainers-go/modules/localstack.

Updates github.com/testcontainers/testcontainers-go from 0.35.0 to 0.36.0

Release notes

Sourced from github.com/testcontainers/testcontainers-go's releases.

v0.36.0

What's Changed

⚠️ Breaking Changes

  • feat(azure)!: add Azurite, EventHubs and ServiceBus in the new Azure module, deprecating the old Azurite module (#3008) @​mdelapenya

Users of the old Azurite module must update their code to use the new Azure module instead, which contains the same functionality under the azurite sub-package. We took this opportunity to remove the unnecessarily exported Settings field from the Azurite container type, so users of the Azurite container type must update their code to simply do not use that field.

  • chore(deps)!: bump github.com/docker/docker from 27.1.1+incompatible to 28.0.1+incompatible (#3017) @dependabot[bot]

Bumping the Docker package to a newer major version came with lots of benefits, but also some breaking changes. For that reason, users of the following container methods and types must update their code to use the new types and methods instead:

  • Container.Inspect: the return type has been changed from types.ContainerJSON to container.InspectResponse.
  • Container.State: the return type has been changed from types.ContainerState to container.State.
  • DockerProvider.ContainerFromType: the method signature has been changed to accept a container.Summary instead of a types.Container. At the same time, if consuming Docker types or methods, users must update their code to use the new types and methods instead. As a good rule of thumb, users of the "github.com/docker/docker/api/types" package must update their code to use "github.com/docker/docker/api/types/container" instead.

Users of the deprecated DockerCompose type from the compose module must update their code to use DockerComposer instead. The former unexported dockerCompose type has been renamed to DockerCompose. This breaking change was done because returning an un-exported type from a constructor function limits the flexibility and usability of the returned instance. Callers could use the exported methods, but could not declare variables of that type, pass instances to other functions, or embed them in structs without exposing the constructor itself. This breaking change was needed to improve the usability of the compose module.

Users of the testcontainers.Logging variable and the testcontainers.TestLogger function must update their code to use the new log.Default() logger instance and the log.TestLogger() function instead, and users of the testcontainers.Logger interface must update their code to use the new log.Logger interface instead. The new log package allows users to set a custom logger instance calling the log.SetDefault(l log.Logger) function. This breaking change was needed to improve the usability of the logging functionality when using the testcontainers package.

Users of the NATS module and the ConnectionString type must remove the variadic arguments from the ConnectionString method. This breaking change was needed because those arguments weren't in use.

We fixed a typo in the exported field of the ContainerRequest struct, so users of the EnpointSettingsModifier type must update their code to use the EndpointSettingsModifier type instead.

🔒 Security

🚀 Features

... (truncated)

Commits
  • a0e3b71 chore: use new version (v0.36.0) in modules and examples
  • 3298e9a chore: dockerise docs build (#3060)
  • 5334660 chore(deps): bump golang.org/x/net from 0.23.0 to 0.36.0 in /modules/dynamodb...
  • 82c37e2 chore(deps): bump github.com/magiconair/properties from 1.8.7 to 1.8.9 (#3057)
  • 615aa5d chore(deps): bump golangci/golangci-lint-action from 6.3.0 to 6.5.2 (#3052)
  • bdbdf3e chore(deps): bump golang.org/x/sys from 0.28.0 to 0.31.0 (#3056)
  • 4bfd24c chore(deps): bump actions/setup-go from 5.3.0 to 5.4.0 (#3054)
  • 6ab30fe chore(deps): bump golang.org/x/net in /modules/scylladb (#3058)
  • 802d143 chore(deps): bump github/codeql-action from 3.28.11 to 3.28.12 (#3053)
  • b88be99 chore(deps): bump golang.org/x/net in /modules/databend (#3055)
  • Additional commits viewable in compare view

Updates github.com/testcontainers/testcontainers-go/modules/localstack from 0.35.0 to 0.36.0

Release notes

Sourced from github.com/testcontainers/testcontainers-go/modules/localstack's releases.

v0.36.0

What's Changed

⚠️ Breaking Changes

  • feat(azure)!: add Azurite, EventHubs and ServiceBus in the new Azure module, deprecating the old Azurite module (#3008) @​mdelapenya

Users of the old Azurite module must update their code to use the new Azure module instead, which contains the same functionality under the azurite sub-package. We took this opportunity to remove the unnecessarily exported Settings field from the Azurite container type, so users of the Azurite container type must update their code to simply do not use that field.

  • chore(deps)!: bump github.com/docker/docker from 27.1.1+incompatible to 28.0.1+incompatible (#3017) @dependabot[bot]

Bumping the Docker package to a newer major version came with lots of benefits, but also some breaking changes. For that reason, users of the following container methods and types must update their code to use the new types and methods instead:

  • Container.Inspect: the return type has been changed from types.ContainerJSON to container.InspectResponse.
  • Container.State: the return type has been changed from types.ContainerState to container.State.
  • DockerProvider.ContainerFromType: the method signature has been changed to accept a container.Summary instead of a types.Container. At the same time, if consuming Docker types or methods, users must update their code to use the new types and methods instead. As a good rule of thumb, users of the "github.com/docker/docker/api/types" package must update their code to use "github.com/docker/docker/api/types/container" instead.

Users of the deprecated DockerCompose type from the compose module must update their code to use DockerComposer instead. The former unexported dockerCompose type has been renamed to DockerCompose. This breaking change was done because returning an un-exported type from a constructor function limits the flexibility and usability of the returned instance. Callers could use the exported methods, but could not declare variables of that type, pass instances to other functions, or embed them in structs without exposing the constructor itself. This breaking change was needed to improve the usability of the compose module.

Users of the testcontainers.Logging variable and the testcontainers.TestLogger function must update their code to use the new log.Default() logger instance and the log.TestLogger() function instead, and users of the testcontainers.Logger interface must update their code to use the new log.Logger interface instead. The new log package allows users to set a custom logger instance calling the log.SetDefault(l log.Logger) function. This breaking change was needed to improve the usability of the logging functionality when using the testcontainers package.

Users of the NATS module and the ConnectionString type must remove the variadic arguments from the ConnectionString method. This breaking change was needed because those arguments weren't in use.

We fixed a typo in the exported field of the ContainerRequest struct, so users of the EnpointSettingsModifier type must update their code to use the EndpointSettingsModifier type instead.

🔒 Security

🚀 Features

... (truncated)

Commits
  • a0e3b71 chore: use new version (v0.36.0) in modules and examples
  • 3298e9a chore: dockerise docs build (#3060)
  • 5334660 chore(deps): bump golang.org/x/net from 0.23.0 to 0.36.0 in /modules/dynamodb...
  • 82c37e2 chore(deps): bump github.com/magiconair/properties from 1.8.7 to 1.8.9 (#3057)
  • 615aa5d chore(deps): bump golangci/golangci-lint-action from 6.3.0 to 6.5.2 (#3052)
  • bdbdf3e chore(deps): bump golang.org/x/sys from 0.28.0 to 0.31.0 (#3056)
  • 4bfd24c chore(deps): bump actions/setup-go from 5.3.0 to 5.4.0 (#3054)
  • 6ab30fe chore(deps): bump golang.org/x/net in /modules/scylladb (#3058)
  • 802d143 chore(deps): bump github/codeql-action from 3.28.11 to 3.28.12 (#3053)
  • b88be99 chore(deps): bump golang.org/x/net in /modules/databend (#3055)
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Summary by Sourcery

Update testcontainers dependencies to version 0.36.0, including Docker and other related dependencies

Build:

  • Upgrade testcontainers-go and localstack module from version 0.35.0 to 0.36.0
  • Update Docker dependency to version 28.0.1

Chores:

  • Update various dependencies including OpenTelemetry, gopsutil, and other related packages

Bumps the testcontainers group with 2 updates: [github.com/testcontainers/testcontainers-go](https://github.com/testcontainers/testcontainers-go) and [github.com/testcontainers/testcontainers-go/modules/localstack](https://github.com/testcontainers/testcontainers-go).


Updates `github.com/testcontainers/testcontainers-go` from 0.35.0 to 0.36.0
- [Release notes](https://github.com/testcontainers/testcontainers-go/releases)
- [Commits](testcontainers/testcontainers-go@v0.35.0...v0.36.0)

Updates `github.com/testcontainers/testcontainers-go/modules/localstack` from 0.35.0 to 0.36.0
- [Release notes](https://github.com/testcontainers/testcontainers-go/releases)
- [Commits](testcontainers/testcontainers-go@v0.35.0...v0.36.0)

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

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Mar 31, 2025
@sourcery-ai
Copy link
Copy Markdown

sourcery-ai bot commented Mar 31, 2025

Reviewer's Guide by Sourcery

This pull request updates the testcontainers-go and testcontainers-go/modules/localstack dependencies from version 0.35.0 to 0.36.0. This includes updating the go.mod and go.sum files to reflect the new versions.

Updated class diagram for Container inspection

classDiagram
  class Container {
    -InspectResponse Inspect()
    -State State()
  }
  note for Container "Inspect() return type changed from types.ContainerJSON to container.InspectResponse.\nState() return type changed from types.ContainerState to container.State."
Loading

Updated class diagram for DockerProvider

classDiagram
  class DockerProvider {
    -ContainerFromType(container.Summary summary)
  }
  note for DockerProvider "ContainerFromType() method signature changed to accept a container.Summary instead of a types.Container."
Loading

Updated class diagram for DockerCompose

classDiagram
  class DockerCompose {
    <<deprecated>>dockerCompose
    +DockerCompose()
  }
  note for DockerCompose "The unexported dockerCompose type has been renamed to DockerCompose."
Loading

Updated class diagram for Logging

classDiagram
  class Logging {
    <<deprecated>>TestLogger
    +log.TestLogger()
    <<deprecated>>Logger
    +log.Logger
  }
  note for Logging "Users of the testcontainers.Logging variable and the testcontainers.TestLogger function must update their code to use the new log.Default() logger instance and the log.TestLogger() function instead, and users of the testcontainers.Logger interface must update their code to use the new log.Logger interface instead."
Loading

Updated class diagram for NATS ConnectionString

classDiagram
  class ConnectionString {
    -ConnectionString()
  }
  note for ConnectionString "Users of the NATS module and the ConnectionString type must remove the variadic arguments from the ConnectionString method."
Loading

Updated class diagram for ContainerRequest

classDiagram
  class ContainerRequest {
    <<deprecated>>EnpointSettingsModifier
    +EndpointSettingsModifier
  }
  note for ContainerRequest "We fixed a typo in the exported field of the ContainerRequest struct, so users of the EnpointSettingsModifier type must update their code to use the EndpointSettingsModifier type instead."
Loading

Updated class diagram for Azure

classDiagram
  class Azurite {
    <<deprecated>>Settings
  }
  note for Azurite "Users of the old Azurite module must update their code to use the new Azure module instead, which contains the same functionality under the azurite sub-package. We took this opportunity to remove the unnecessarily exported Settings field from the Azurite container type."
Loading

File-Level Changes

Change Details Files
Update testcontainers-go and localstack dependencies.
  • Update github.com/testcontainers/testcontainers-go from 0.35.0 to 0.36.0
  • Update github.com/testcontainers/testcontainers-go/modules/localstack from 0.35.0 to 0.36.0
go.mod
go.sum

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!
  • Generate a plan of action for an issue: Comment @sourcery-ai plan on
    an issue to generate a plan of action for it.

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@coderabbitai
Copy link
Copy Markdown

coderabbitai bot commented Mar 31, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share
🪧 Tips

Chat

There are 3 ways to chat with CodeRabbit:

  • Review comments: Directly reply to a review comment made by CodeRabbit. Example:
    • I pushed a fix in commit <commit_id>, please review it.
    • Generate unit testing code for this file.
    • Open a follow-up GitHub issue for this discussion.
  • Files and specific lines of code (under the "Files changed" tab): Tag @coderabbitai in a new review comment at the desired location with your query. Examples:
    • @coderabbitai generate unit testing code for this file.
    • @coderabbitai modularize this function.
  • PR comments: Tag @coderabbitai in a new PR comment to ask questions about the PR branch. For the best results, please provide a very specific query, as very limited context is provided in this mode. Examples:
    • @coderabbitai gather interesting stats about this repository and render them as a table. Additionally, render a pie chart showing the language distribution in the codebase.
    • @coderabbitai read src/utils.ts and generate unit testing code.
    • @coderabbitai read the files in the src/scheduler package and generate a class diagram using mermaid and a README in the markdown format.
    • @coderabbitai help me debug CodeRabbit configuration file.

Note: Be mindful of the bot's finite context window. It's strongly recommended to break down tasks such as reading entire modules into smaller chunks. For a focused discussion, use review comments to chat about specific files and their changes, instead of using the PR comments.

CodeRabbit Commands (Invoked using PR comments)

  • @coderabbitai pause to pause the reviews on a PR.
  • @coderabbitai resume to resume the paused reviews.
  • @coderabbitai review to trigger an incremental review. This is useful when automatic reviews are disabled for the repository.
  • @coderabbitai full review to do a full review from scratch and review all the files again.
  • @coderabbitai summary to regenerate the summary of the PR.
  • @coderabbitai generate docstrings to generate docstrings for this PR.
  • @coderabbitai resolve resolve all the CodeRabbit review comments.
  • @coderabbitai plan to trigger planning for file edits and PR creation.
  • @coderabbitai configuration to show the current CodeRabbit configuration for the repository.
  • @coderabbitai help to get help.

Other keywords and placeholders

  • Add @coderabbitai ignore anywhere in the PR description to prevent this PR from being reviewed.
  • Add @coderabbitai summary to generate the high-level summary at a specific location in the PR description.
  • Add @coderabbitai anywhere in the PR title to generate the title automatically.

CodeRabbit Configuration File (.coderabbit.yaml)

  • You can programmatically configure CodeRabbit by adding a .coderabbit.yaml file to the root of your repository.
  • Please see the configuration documentation for more information.
  • If your editor has YAML language server enabled, you can add the path at the top of this file to enable auto-completion and validation: # yaml-language-server: $schema=https://coderabbit.ai/integrations/schema.v2.json

Documentation and Community

  • Visit our Documentation for detailed information on how to use CodeRabbit.
  • Join our Discord Community to get help, request features, and share feedback.
  • Follow us on X/Twitter for updates and announcements.

Copy link
Copy Markdown

@sourcery-ai sourcery-ai bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We have skipped reviewing this pull request. It seems to have been created by a bot (hey, dependabot[bot]!). We assume it knows what it's doing!

@codiumai-pr-agent-free
Copy link
Copy Markdown

codiumai-pr-agent-free bot commented Mar 31, 2025

CI Feedback 🧐

(Feedback updated until commit f6611a8)

A test triggered by this PR failed. Here is an AI-generated analysis of the failure:

Action: Build Test (windows-latest)

Failed stage: Run GoReleaser [❌]

Failure summary:

The action failed during the build process with GoReleaser. The specific error is a compilation
error in the Docker daemon integration code:

  • Error in file pkg\fanal\image\daemon\docker.go at line 66, position 58
  • The error message indicates a type mismatch: "cannot use c.ImageSave as imageSave value in argument
    to imageOpener"
  • The build failed with exit code 1 after downloading numerous dependencies

    This appears to be a compatibility issue with the Docker client library where the type signature of
    the ImageSave function doesn't match what's expected by the imageOpener function.

  • Relevant error logs:
    1:  ##[group]Operating System
    2:  Microsoft Windows Server 2022
    ...
    
    115:  '24f60459cc7bce92bc33da8b97991104b1768bf2'
    116:  ##[group]Run actions/setup-go@v5
    117:  with:
    118:  go-version-file: go.mod
    119:  cache: false
    120:  check-latest: false
    121:  token: ***
    122:  env:
    123:  DOCKER_CLI_EXPERIMENTAL: enabled
    124:  ##[endgroup]
    125:  Setup go version spec 1.24
    126:  Attempting to download 1.24...
    127:  matching 1.24...
    128:  Acquiring 1.24.1 from https://github.com/actions/go-versions/releases/download/1.24.1-13667719799/go-1.24.1-win32-x64.zip
    129:  Extracting Go...
    130:  [command]"C:\Program Files\PowerShell\7\pwsh.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command "$ErrorActionPreference = 'Stop' ; try { Add-Type -AssemblyName System.IO.Compression.ZipFile } catch { } ; try { [System.IO.Compression.ZipFile]::ExtractToDirectory('D:\a\_temp\go-1.24.1-win32-x64.zip', 'D:\a\_temp\c76fc095-254b-489a-baf6-3fb48b0584df', $true) } catch { if (($_.Exception.GetType().FullName -eq 'System.Management.Automation.MethodException') -or ($_.Exception.GetType().FullName -eq 'System.Management.Automation.RuntimeException') ){ Expand-Archive -LiteralPath 'D:\a\_temp\go-1.24.1-win32-x64.zip' -DestinationPath 'D:\a\_temp\c76fc095-254b-489a-baf6-3fb48b0584df' -Force } else { throw $_ } } ;"
    131:  Successfully extracted go to D:\a\_temp\c76fc095-254b-489a-baf6-3fb48b0584df
    ...
    
    196:  env:
    197:  DOCKER_CLI_EXPERIMENTAL: enabled
    198:  ##[endgroup]
    199:  ##[group]Run goreleaser/goreleaser-action@v6
    200:  with:
    201:  version: v2.1.0
    202:  args: build --snapshot --clean --timeout 90m --id build-windows
    203:  distribution: goreleaser
    204:  workdir: .
    205:  install-only: false
    206:  env:
    207:  DOCKER_CLI_EXPERIMENTAL: enabled
    208:  ##[endgroup]
    209:  Downloading https://github.com/goreleaser/goreleaser/releases/download/v2.1.0/goreleaser_Windows_x86_64.zip
    210:  Extracting GoReleaser
    211:  [command]"C:\Program Files\PowerShell\7\pwsh.exe" -NoLogo -NoProfile -NonInteractive -ExecutionPolicy Unrestricted -Command "$ErrorActionPreference = 'Stop' ; try { Add-Type -AssemblyName System.IO.Compression.ZipFile } catch { } ; try { [System.IO.Compression.ZipFile]::ExtractToDirectory('D:\a\_temp\0dbb1ba4-56ac-49ef-9ec4-ff1984d78b82.zip', 'D:\a\_temp\4091b551-880b-4456-803d-5b25b9985886', $true) } catch { if (($_.Exception.GetType().FullName -eq 'System.Management.Automation.MethodException') -or ($_.Exception.GetType().FullName -eq 'System.Management.Automation.RuntimeException') ){ Expand-Archive -LiteralPath 'D:\a\_temp\0dbb1ba4-56ac-49ef-9ec4-ff1984d78b82.zip' -DestinationPath 'D:\a\_temp\4091b551-880b-4456-803d-5b25b9985886' -Force } else { throw $_ } } ;"
    212:  GoReleaser v2.1.0 installed successfully
    213:  [command]C:\hostedtoolcache\windows\goreleaser-action\2.1.0\x64\goreleaser.exe build --snapshot --clean --timeout 90m --id build-windows
    214:  �[1;93m  •�[0m �[1;93mskipping validate...�[0m
    215:  �[1;94m  •�[0m �[1mloading environment variables�[0m
    216:  �[1;94m  •�[0m �[1mgetting and validating git state�[0m
    217:  �[1;93m    •�[0m ignoring errors because this is a snapshot     �[1;93merror�[0m=git doesn't contain any tags. Either add a tag or use --snapshot
    218:  �[1;94m    •�[0m git state                                      �[1;94mcommit�[0m=24f60459cc7bce92bc33da8b97991104b1768bf2 �[1;94mbranch�[0m=HEAD �[1;94mcurrent_tag�[0m=v0.0.0 �[1;94mprevious_tag�[0m=<unknown> �[1;94mdirty�[0m=false
    219:  �[1;93m    •�[0m pipe skipped                                   �[1;93mreason�[0m=disabled during snapshot mode
    220:  �[1;94m  •�[0m �[1mparsing tag�[0m
    221:  �[1;94m  •�[0m �[1msetting defaults�[0m
    222:  �[1;94m  •�[0m �[1msnapshotting�[0m
    223:  �[1;94m    •�[0m building snapshot...                           �[1;94mversion�[0m=0.0.0-SNAPSHOT-24f6045
    224:  �[1;94m  •�[0m �[1mchecking distribution directory�[0m
    225:  �[1;94m  •�[0m �[1msetting up metadata�[0m
    226:  �[1;94m  •�[0m �[1mwriting release metadata�[0m
    227:  �[1;94m  •�[0m �[1mloading go mod information�[0m
    228:  �[1;94m  •�[0m �[1mbuild prerequisites�[0m
    229:  �[1;94m  •�[0m �[1mbuilding binaries�[0m
    230:  �[1;94m    •�[0m building                                       �[1;94mbinary�[0m=dist\build-windows_windows_amd64_v1\tunnel.exe
    231:  �[1;94m    •�[0m �[3;2mtook: 11m38s�[0m
    232:  �[1;91m  ⨯�[0m �[1mbuild failed after 11m39s�[0m                �[1;91merror�[0m=failed to build for windows_amd64_v1: exit status 1: go: downloading golang.org/x/xerrors v0.0.0-20240903120638-7835f813f4da
    233:  go: downloading modernc.org/sqlite v1.36.1
    234:  go: downloading github.com/fatih/color v1.18.0
    235:  go: downloading github.com/samber/lo v1.49.1
    236:  go: downloading github.com/spf13/cobra v1.9.1
    237:  go: downloading github.com/spf13/viper v1.20.0
    238:  go: downloading github.com/google/go-containerregistry v0.20.3
    239:  go: downloading github.com/khulnasoft/goversify v0.0.0-20250310221534-b7b4cecdfb37
    240:  go: downloading gopkg.in/yaml.v3 v3.0.1
    241:  go: downloading github.com/khulnasoft-lab/tunnel-db v0.0.0-20250329145122-c92163caf7d6
    242:  go: downloading k8s.io/utils v0.0.0-20241104163129-6fe5fd82f078
    243:  go: downloading github.com/mattn/go-colorable v0.1.14
    244:  go: downloading github.com/mattn/go-isatty v0.0.20
    245:  go: downloading golang.org/x/sys v0.31.0
    246:  go: downloading github.com/go-redis/redis/v8 v8.11.5
    247:  go: downloading github.com/hashicorp/go-multierror v1.1.1
    248:  go: downloading github.com/twitchtv/twirp v8.1.3+incompatible
    ...
    
    292:  go: downloading github.com/open-policy-agent/opa v1.2.0
    293:  go: downloading github.com/xeipuuv/gojsonschema v1.2.0
    294:  go: downloading github.com/Masterminds/sprig/v3 v3.3.0
    295:  go: downloading github.com/owenrumney/go-sarif/v2 v2.3.3
    296:  go: downloading github.com/bmatcuk/doublestar/v4 v4.8.1
    297:  go: downloading github.com/mitchellh/go-homedir v1.1.0
    298:  go: downloading github.com/docker/distribution v2.8.3+incompatible
    299:  go: downloading github.com/mitchellh/hashstructure/v2 v2.0.2
    300:  go: downloading github.com/NYTimes/gziphandler v1.1.1
    301:  go: downloading github.com/CycloneDX/cyclonedx-go v0.9.2
    302:  go: downloading github.com/gocsaf/csaf/v3 v3.1.1
    303:  go: downloading github.com/openvex/discovery v0.1.1-0.20240802171711-7c54efc57553
    304:  go: downloading github.com/openvex/go-vex v0.2.5
    305:  go: downloading github.com/sirupsen/logrus v1.9.3
    306:  go: downloading modernc.org/libc v1.61.13
    307:  go: downloading github.com/pkg/errors v0.9.1
    308:  go: downloading k8s.io/apimachinery v0.32.3
    ...
    
    482:  go: downloading github.com/rivo/uniseg v0.4.7
    483:  go: downloading github.com/json-iterator/go v1.1.12
    484:  go: downloading google.golang.org/genproto/googleapis/api v0.0.0-20250115164207-1a7da9e5054f
    485:  go: downloading go.opencensus.io v0.24.0
    486:  go: downloading google.golang.org/genproto/googleapis/rpc v0.0.0-20250115164207-1a7da9e5054f
    487:  go: downloading cloud.google.com/go/monitoring v1.21.2
    488:  go: downloading github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.48.1
    489:  go: downloading github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.25.0
    490:  go: downloading go.opentelemetry.io/otel/metric v1.35.0
    491:  go: downloading cloud.google.com/go/auth/oauth2adapt v0.2.7
    492:  go: downloading github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec
    493:  go: downloading github.com/jmespath/go-jmespath v0.4.1-0.20220621161143-b0104c826a24
    494:  go: downloading github.com/go-openapi/runtime v0.28.0
    495:  go: downloading github.com/go-openapi/strfmt v0.23.0
    496:  go: downloading github.com/hashicorp/go-retryablehttp v0.7.7
    497:  go: downloading github.com/go-openapi/errors v0.22.0
    498:  go: downloading github.com/go-openapi/swag v0.23.0
    ...
    
    567:  go: downloading k8s.io/kubectl v0.32.3
    568:  go: downloading oras.land/oras-go v1.2.5
    569:  go: downloading github.com/Masterminds/squirrel v1.5.4
    570:  go: downloading github.com/jmoiron/sqlx v1.4.0
    571:  go: downloading github.com/lib/pq v1.10.9
    572:  go: downloading github.com/rubenv/sql-migrate v1.7.1
    573:  go: downloading github.com/briandowns/spinner v1.23.1
    574:  go: downloading gopkg.in/cheggaaa/pb.v1 v1.0.28
    575:  go: downloading github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10
    576:  go: downloading github.com/digitorus/pkcs7 v0.0.0-20230818184609-3a137a874352
    577:  go: downloading github.com/blang/semver v3.5.1+incompatible
    578:  go: downloading github.com/letsencrypt/boulder v0.0.0-20240620165639-de9c06129bec
    579:  go: downloading github.com/theupdateframework/go-tuf v0.7.0
    580:  go: downloading github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161
    581:  go: downloading github.com/blang/semver/v4 v4.0.0
    582:  go: downloading github.com/go-errors/errors v1.4.2
    583:  go: downloading github.com/cncf/xds/go v0.0.0-20240905190251-b4127c9b8d78
    ...
    
    608:  go: downloading github.com/containerd/cgroups/v3 v3.0.3
    609:  go: downloading github.com/lann/ps v0.0.0-20150810152359-62de8c46ede0
    610:  go: downloading github.com/sassoftware/relic v7.2.1+incompatible
    611:  go: downloading github.com/chai2010/gettext-go v1.0.2
    612:  go: downloading github.com/MakeNowJust/heredoc v1.0.0
    613:  go: downloading github.com/russross/blackfriday/v2 v2.1.0
    614:  go: downloading github.com/go-jose/go-jose/v4 v4.0.5
    615:  go: downloading github.com/census-instrumentation/opencensus-proto v0.4.1
    616:  go: downloading github.com/golang-jwt/jwt/v4 v4.5.2
    617:  go: downloading github.com/golang/snappy v0.0.4
    618:  go: downloading github.com/gorilla/websocket v1.5.0
    619:  go: downloading github.com/docker/go-metrics v0.0.1
    620:  go: downloading github.com/moby/spdystream v0.5.0
    621:  go: downloading github.com/mxk/go-flowrate v0.0.0-20140419014527-cca7078d478f
    622:  # github.com/khulnasoft/tunnel/pkg/fanal/image/daemon
    623:  ##[error]pkg\fanal\image\daemon\docker.go:66:58: cannot use c.ImageSave (value of type func(ctx context.Context, imageIDs []string, saveOpts ..."github.com/docker/docker/client".ImageSaveOption) (io.ReadCloser, error)) as imageSave value in argument to imageOpener
    624:  ##[error]The process 'C:\hostedtoolcache\windows\goreleaser-action\2.1.0\x64\goreleaser.exe' failed with exit code 1
    625:  Post job cleanup.
    

    @dependabot @github
    Copy link
    Copy Markdown
    Author

    dependabot bot commented on behalf of github Apr 21, 2025

    Superseded by #58.

    @dependabot dependabot bot closed this Apr 21, 2025
    @dependabot dependabot bot deleted the dependabot/go_modules/testcontainers-5dfcafe78a branch April 21, 2025 13:58
    Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

    Labels

    dependencies Pull requests that update a dependency file go Pull requests that update Go code

    Projects

    None yet

    Development

    Successfully merging this pull request may close these issues.

    0 participants