chore(deps): bump docker dependencies to v24.0.5+incompatible#1394
Merged
mdelapenya merged 14 commits intotestcontainers:mainfrom Aug 2, 2023
Merged
chore(deps): bump docker dependencies to v24.0.5+incompatible#1394mdelapenya merged 14 commits intotestcontainers:mainfrom
mdelapenya merged 14 commits intotestcontainers:mainfrom
Conversation
✅ Deploy Preview for testcontainers-go ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
…mpatible It will avoid the deprecation of types.AuthConfig, causing a breaking change in the library
…7fc+incompatible" This reverts commit 5ac8e39.
All consumers building from a Dockerfile must check that they are not affected
Closed
|
Kudos, SonarCloud Quality Gate passed!
|
mdelapenya
commented
Aug 2, 2023
This was referenced Aug 2, 2023
Merged
|
Any ETA on a release that include the fix? |
Member
Author
Hi @davideme I'm planning it for the end of this week, so hopefully we can have it tomorrow 🤞 |
cuppett
added a commit
to cuppett/mysql-dba-operator
that referenced
this pull request
Sep 7, 2023
cuppett
added a commit
to cuppett/mysql-dba-operator
that referenced
this pull request
Sep 10, 2023
Resolves #33: Adds character set and collation validation & constraints to CRs * Adding basic fields for character set and collation * Allowing collation to be null * Populate AvailabeCharSets struct and add some tests for nonEmpty * Refactor adminConnection to ServerAdminConnection in controller tests * Bumps to fix testcontainers with newer golang See also: testcontainers/testcontainers-go#1394
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.








What does this PR do?
It bumps the core library and all the modules to Docker v24.0.5+incompatible.
Besides that, we were forced to introduce a breaking change, as this PR updates the references to the deprecated Docker's
types.AuthConfig, using Docker'sregistry.AuthConfiginstead. The code that was affected was the one related to building containers from a Dockerfile. We will update the release notes in the upcoming release.As a consequence of the Docker bump in the compose module, we were forced to bump certain dependencies in the compose module that needs Go 1.20, therefore, we are temporarily retiring the GH workflow for running the compose module using Go 1.19. Once Go 1.21 is out, we will update that file to include the classic two-version window for compiling the project. A positive change here is that the
replacedirective when using the compose module has been simplified.Why is it important?
See #1359 and how the Go versions broke how the host headers are validated by Docker and us.
Related issues