-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Comparing changes
Open a pull request
base repository: containerd/containerd
base: v2.0.3
head repository: containerd/containerd
compare: v2.0.4
- 19 commits
- 21 files changed
- 10 contributors
Commits on Mar 6, 2025
-
build(deps): bump containerd/project-checks from 1.1.0 to 1.2.1
Bumps [containerd/project-checks](https://github.com/containerd/project-checks) from 1.1.0 to 1.2.1. - [Commits](containerd/project-checks@434a071...800740a) --- updated-dependencies: - dependency-name: containerd/project-checks dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <[email protected]> (cherry picked from commit 69c0d7f) Signed-off-by: Akhil Mohan <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 7215a7d - Browse repository at this point
Copy the full SHA 7215a7dView commit details -
Merge pull request #11497 from akhilerm/update-ltag-2.0
[release/2.0] build(deps): bump containerd/project-checks from 1.1.0 to 1.2.1
Configuration menu - View commit details
-
Copy full SHA for a7f1ff9 - Browse repository at this point
Copy the full SHA a7f1ff9View commit details
Commits on Mar 7, 2025
-
e2e: use the shim bundled with containerd artifact
use the shim bundled with cri-cni-containerd tar rather than using the shim present on the host machine for running e2e Signed-off-by: Akhil Mohan <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 81b3384 - Browse repository at this point
Copy the full SHA 81b3384View commit details -
docs: include note about unprivileged sysctls
We changed the default setting for `enable_unprivileged_ports` and `enable_unprivileged_icmp` in the CRI plugin in #9348, but missed including this change in the release notes. Signed-off-by: Samuel Karp <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for a39f114 - Browse repository at this point
Copy the full SHA a39f114View commit details -
Merge pull request #11503 from k8s-infra-cherrypick-robot/cherry-pick…
…-11489-to-release/2.0 [release/2.0] e2e: use the shim bundled with containerd artifact
Configuration menu - View commit details
-
Copy full SHA for 62f18de - Browse repository at this point
Copy the full SHA 62f18deView commit details -
Merge pull request #11506 from k8s-infra-cherrypick-robot/cherry-pick…
…-11502-to-release/2.0 [release/2.0] docs: include note about unprivileged sysctls
Configuration menu - View commit details
-
Copy full SHA for ad6934d - Browse repository at this point
Copy the full SHA ad6934dView commit details
Commits on Mar 9, 2025
-
update build to go1.23.7, test go1.24.1
- go1.23.7 (released 2025-03-04) includes security fixes to the net/http package, as well as bug fixes to cgo, the compiler, and the reflect, runtime, and syscall packages. See the Go 1.23.7 milestone on our issue tracker for details - go1.24.1 (released 2025-03-04) includes security fixes to the net/http package, as well as bug fixes to cgo, the compiler, the go command, and the reflect, runtime, and syscall packages. See the Go 1.24.1 milestone on our issue tracker for details. Signed-off-by: Akhil Mohan <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for e5ad0d0 - Browse repository at this point
Copy the full SHA e5ad0d0View commit details -
Merge pull request #11514 from akhilerm/2.0-update-go1.24.1
[release/2.0] update build to go1.23.7, test go1.24.1
Configuration menu - View commit details
-
Copy full SHA for 5a3ac90 - Browse repository at this point
Copy the full SHA 5a3ac90View commit details
Commits on Mar 11, 2025
-
Signed-off-by: ningmingxiao <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 4f03705 - Browse repository at this point
Copy the full SHA 4f03705View commit details -
Configuration menu - View commit details
-
Copy full SHA for 07a0b54 - Browse repository at this point
Copy the full SHA 07a0b54View commit details
Commits on Mar 13, 2025
-
Merge pull request #11529 from ningmingxiao/v2.0_fix
[release/2.0] Fix incorrect runtime name being passed to NRI
Configuration menu - View commit details
-
Copy full SHA for 76db058 - Browse repository at this point
Copy the full SHA 76db058View commit details -
client: Respect
client.WithTimeoutoptionFix the gRPC client dialer not using the timeout passed by the containerd client timeout option. Commit 63b4688 replaced the usage of deprecated `grpc.DialContext` with `grpc.NewClient`. However, the `dialer.ContextDialer` relied on the context deadline to propagate the timeout: https://github.com/containerd/containerd/blob/388fb336b0a458e2cf64212072743e622a3f44c7/vendor/google.golang.org/grpc/clientconn.go#L216 This assumption is now broken, because `grpc.NewClient` doesn't do any initial connection and defers it to the first RPC usage. This commit passes the timeout via the `MinConnectTimeout` grpc connection param, which will be applied to **every** connection attempt (not just the first). Signed-off-by: Paweł Gronowski <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 6b5efba - Browse repository at this point
Copy the full SHA 6b5efbaView commit details -
core/images: Ignore attestations when traversing children
Before this patch, calling `image.Children` on an image built with BuildKit would produce unnecessary `encountered unknown type application/vnd.in-toto+json; children may not be fetched` debug logs, because the media type is neither a known layer or config type. Make the `image.Children` aware of the attestation layers and don't attempt to traverse them. Signed-off-by: Paweł Gronowski <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for df4d905 - Browse repository at this point
Copy the full SHA df4d905View commit details -
core/remotes: Handle attestations in MakeRefKey
Don't produce `reference for unknown type: application/vnd.in-toto+json` warning logs when pushing/fetching an image containing the attestation manifests. Signed-off-by: Paweł Gronowski <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 916d487 - Browse repository at this point
Copy the full SHA 916d487View commit details
Commits on Mar 14, 2025
-
Merge pull request #11537 from k8s-infra-cherrypick-robot/cherry-pick…
…-11327-to-release/2.0 [release/2.0] Update image type checks to avoid unnecessary logs for attestations
Configuration menu - View commit details
-
Copy full SHA for b6ab437 - Browse repository at this point
Copy the full SHA b6ab437View commit details -
Merge pull request #11536 from k8s-infra-cherrypick-robot/cherry-pick…
…-11508-to-release/2.0 [release/2.0] Respect `client.WithTimeout` option on connect
Configuration menu - View commit details
-
Copy full SHA for e9989a2 - Browse repository at this point
Copy the full SHA e9989a2View commit details -
Prepare release notes for v2.0.4
Signed-off-by: Derek McGowan <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for 06a886a - Browse repository at this point
Copy the full SHA 06a886aView commit details
Commits on Mar 17, 2025
-
Merge pull request #11541 from dmcgowan/prepare-2.0.4
[release/2.0] Prepare release notes for v2.0.4
Configuration menu - View commit details
-
Copy full SHA for bf82ae2 - Browse repository at this point
Copy the full SHA bf82ae2View commit details -
Configuration menu - View commit details
-
Copy full SHA for 1a43cb6 - Browse repository at this point
Copy the full SHA 1a43cb6View 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.0.3...v2.0.4