-
-
Notifications
You must be signed in to change notification settings - Fork 499
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: upgrade docker client #1361
Conversation
✅ Deploy Preview for testcontainers-go ready!
To edit notification comments on pull requests, go to your Netlify site configuration. |
Another option would be to use the latest patch version of |
cd73bb1
to
7ac9a90
Compare
Kudos, SonarCloud Quality Gate passed! |
To reduce the scope of the PR I've reverted the changes that were required for upgrading the client to |
FYI: as mentioned in the issue there is a discussion on whether to revert the changes that caused this to be a problem in the first place: golang/go#61431. |
Any ETA on when have a release including this fix? It's blocking our CI pipeline for now. |
I can't merge it, it needs an approving review from @testcontainers/go-team. Which I also cannot tag. |
Hey @davideme you could try a workaround meanwhile
that worked for me |
@Slijkhuis I am not from the testcontainers/go-team but rather in the users' boat :) |
Hey folks, please take a look at #653. I'll be back on Aug 1st and will prioritize this issue, which I've been actively following between diapers and baby bottles |
Sorry, I completely missed that issue. I'll be in the world of diapers and baby bottles myself somewhere early August :). So if you're back and I'm not responding just take control of this PR yourself! |
it would be very nice to check this pull request. |
I think we have a potential fix here: #1394. It supersedes this PR, as it includes bumps of the Docker dependency across all the modules, including updating deprecated APIs. |
What does this PR do?
Upgrades the
github.com/docker/docker
package.The👈 not relevant since I'm not upgrading to v24 anymore, but rather use the backported fix on v23.AuthConfig
type was moved: moby/moby#43885.Possibly https://github.com/testcontainers/moby-ryuk must be upgraded as well.
Why is it important?
You cannot use
testcontainers-go
with Go 1.20.6 currently, this PR should fix that.Related issues