-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Comparing changes
Open a pull request
base repository: docker/compose
base: v2.29.2
head repository: docker/compose
compare: v2.29.3
- 19 commits
- 55 files changed
- 11 contributors
Commits on Aug 16, 2024
-
allow to add empty line in the logs when nav menu activated
Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 11c7a25 - Browse repository at this point
Copy the full SHA 11c7a25View commit details
Commits on Aug 19, 2024
-
docs(wait): Fix wait command description
Signed-off-by: Suleiman Dibirov <idsulik@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 98e261b - Browse repository at this point
Copy the full SHA 98e261bView commit details
Commits on Aug 22, 2024
-
docs: duplicate documentation for root cmd
Signed-off-by: David Karlsson <35727626+dvdksn@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 6e172d6 - Browse repository at this point
Copy the full SHA 6e172d6View commit details
Commits on Aug 26, 2024
-
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for f9c7a0c - Browse repository at this point
Copy the full SHA f9c7a0cView commit details -
service hash must exlude depends_on
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for d658fec - Browse repository at this point
Copy the full SHA d658fecView commit details
Commits on Sep 4, 2024
-
Allow combination of bind mounts and 'rebuild' watches
Signed-off-by: Remco Kranenburg <remco.kranenburg@crunchr.com>
Configuration menu - View commit details
-
Copy full SHA for e6ef862 - Browse repository at this point
Copy the full SHA e6ef862View commit details
Commits on Sep 10, 2024
-
Signed-off-by: jonathan-dev <jonathan.drude@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for b633c5c - Browse repository at this point
Copy the full SHA b633c5cView commit details -
attach: close streams when done
When Compose is watching a project/reattaching streams on container start, it will make new API `ContainerAttach()` calls every time a container it's watching is started. However, it only closes the stream when the context used to start the attach is canceled. This means that if a user has a project with multiple containers where containers keep restarting, Compose will attach to the new containers but never close the previous streams, causing fds to pile up and goroutines on the engine to get stuck. Signed-off-by: Laura Brehm <laurabrehm@hey.com>
Configuration menu - View commit details
-
Copy full SHA for 329ad73 - Browse repository at this point
Copy the full SHA 329ad73View commit details
Commits on Sep 11, 2024
-
Use logrus instead of direct output to stderr.
Signed-off-by: Felix Fontein <felix@fontein.de>
Configuration menu - View commit details
-
Copy full SHA for 1d608e0 - Browse repository at this point
Copy the full SHA 1d608e0View commit details -
Signed-off-by: Nathan Baulch <nathan.baulch@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 524a97e - Browse repository at this point
Copy the full SHA 524a97eView commit details -
build(deps): bump golang.org/x/sys from 0.22.0 to 0.25.0
Bumps [golang.org/x/sys](https://github.com/golang/sys) from 0.22.0 to 0.25.0. - [Commits](golang/sys@v0.22.0...v0.25.0) --- updated-dependencies: - dependency-name: golang.org/x/sys dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 1505932 - Browse repository at this point
Copy the full SHA 1505932View commit details -
bump dependencies versions, engine and cli v27.2.1
containerd v1.7.22 buildx v0.17.0 buildkit v0.16.0 Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for ef46445 - Browse repository at this point
Copy the full SHA ef46445View commit details -
Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for f592aad - Browse repository at this point
Copy the full SHA f592aadView commit details -
fix linting issues with golangci-lint 1.60.2
pkg/watch/watcher_darwin.go:96:16: Error return value of `d.stream.Start` is not checked (errcheck) d.stream.Start() ^ pkg/prompt/prompt.go:97:12: Error return value of `fmt.Fprint` is not checked (errcheck) fmt.Fprint(u.stdout, message) ^ pkg/prompt/prompt.go:99:12: Error return value of `fmt.Scanln` is not checked (errcheck) fmt.Scanln(&answer) ^ cmd/formatter/logs.go:118:15: Error return value of `fmt.Fprintf` is not checked (errcheck) fmt.Fprintf(w, "%s%s%s\n", p.prefix, timestamp, line) ^ cmd/formatter/logs.go:120:15: Error return value of `fmt.Fprintf` is not checked (errcheck) fmt.Fprintf(w, "%s%s\n", p.prefix, line) ^ pkg/progress/json.go:67:15: Error return value of `fmt.Fprintln` is not checked (errcheck) fmt.Fprintln(p.out, string(marshal)) ^ pkg/progress/json.go:87:15: Error return value of `fmt.Fprintln` is not checked (errcheck) fmt.Fprintln(p.out, string(marshal)) ^ pkg/progress/plain.go:47:14: Error return value of `fmt.Fprintln` is not checked (errcheck) fmt.Fprintln(p.out, prefix, e.ID, e.Text, e.StatusText) ^ pkg/progress/tty.go:162:12: Error return value of `fmt.Fprint` is not checked (errcheck) fmt.Fprint(w.out, b.Column(0).ANSI) ^ pkg/progress/tty.go:165:12: Error return value of `fmt.Fprint` is not checked (errcheck) fmt.Fprint(w.out, aec.Hide) ^ pkg/compose/attach.go:53:13: Error return value of `fmt.Fprintf` is not checked (errcheck) fmt.Fprintf(s.stdout(), "Attaching to %s\n", strings.Join(names, ", ")) ^ pkg/compose/compose.go:194:6: emptyStringTest: replace `len(dependencies) > 0` with `dependencies != ""` (gocritic) if len(dependencies) > 0 { ^ pkg/compose/convergence.go:461:2: builtinShadow: shadowing of predeclared identifier: max (gocritic) max := 0 ^ pkg/compose/run.go:127:5: emptyStringTest: replace `len(opts.User) > 0` with `opts.User != ""` (gocritic) if len(opts.User) > 0 { ^ pkg/compose/run.go:139:5: emptyStringTest: replace `len(opts.WorkingDir) > 0` with `opts.WorkingDir != ""` (gocritic) if len(opts.WorkingDir) > 0 { ^ pkg/compose/viz.go:91:8: emptyStringTest: replace `len(portConfig.HostIP) > 0` with `portConfig.HostIP != ""` (gocritic) if len(portConfig.HostIP) > 0 { ^ cmd/compatibility/convert.go:66:6: emptyStringTest: replace `len(arg) > 0` with `arg != ""` (gocritic) if len(arg) > 0 && arg[0] != '-' { ^ pkg/e2e/watch_test.go:208:25: printf: non-constant format string in call to gotest.tools/v3/poll.Continue (govet) return poll.Continue(res.Combined()) ^ pkg/e2e/watch_test.go:290:25: printf: non-constant format string in call to gotest.tools/v3/poll.Continue (govet) return poll.Continue(r.Combined()) ^ Signed-off-by: Sebastiaan van Stijn <github@gone.nl>Configuration menu - View commit details
-
Copy full SHA for d445ebb - Browse repository at this point
Copy the full SHA d445ebbView commit details -
Restore compose v1 behavior to recreate containers when ran with -V
Signed-off-by: Nicolas De Loof <nicolas.deloof@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for a742443 - Browse repository at this point
Copy the full SHA a742443View commit details
Commits on Sep 12, 2024
-
bump compose-go to version v2.2.0
Signed-off-by: Guillaume Lours <705411+glours@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 8db0cba - Browse repository at this point
Copy the full SHA 8db0cbaView commit details -
build(deps): bump golang.org/x/sync from 0.7.0 to 0.8.0
Bumps [golang.org/x/sync](https://github.com/golang/sync) from 0.7.0 to 0.8.0. - [Commits](golang/sync@v0.7.0...v0.8.0) --- updated-dependencies: - dependency-name: golang.org/x/sync dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 155f641 - Browse repository at this point
Copy the full SHA 155f641View commit details -
chore(watch): Add changed files path/count to log
Signed-off-by: Suleiman Dibirov <idsulik@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 2e14191 - Browse repository at this point
Copy the full SHA 2e14191View commit details -
show sync files only in debug level
Signed-off-by: Suleiman Dibirov <idsulik@gmail.com>
Configuration menu - View commit details
-
Copy full SHA for 8bf0627 - Browse repository at this point
Copy the full SHA 8bf0627View commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v2.29.2...v2.29.3