-
Notifications
You must be signed in to change notification settings - Fork 5.8k
fix: ensure deterministic variable interpolation (#13712) #13713
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change | ||
|---|---|---|---|---|
| @@ -1,5 +1,9 @@ | ||||
| module github.com/docker/compose/v5 | ||||
|
|
||||
| // TODO: Remove replace once compose-go#860 is merged. See: https://github.com/compose-spec/compose-go/pull/860 | ||||
|
|
||||
| replace github.com/compose-spec/compose-go/v2 => github.com/yunus25jmi1/compose-go/v2 v2.0.0-20260404194456-e694d656b965 | ||||
|
|
||||
|
Comment on lines
+5
to
+6
|
||||
| replace github.com/compose-spec/compose-go/v2 => github.com/yunus25jmi1/compose-go/v2 v2.0.0-20260404194456-e694d656b965 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The new
replacepoints at a personal fork (github.com/yunus25jmi1/compose-go). That creates a supply-chain and long-term availability risk (module can change/disappear, and builds become dependent on a non-org-owned repo). Prefer pinning to an upstream commit/branch incompose-spec/compose-goif possible, or hosting the temporary fork under an org-owned namespace (e.g.,github.com/docker/...) until the upstream PR is merged and a release is cut.