build(deps): bump github.com/containerd/imgcrypt

Bumps [github.com/containerd/imgcrypt](https://github.com/containerd/imgcrypt) from 1.1.12-0.20240528203804-3ca09a2db5cd to 1.2.0-rc1.
- [Release notes](https://github.com/containerd/imgcrypt/releases)
- [Changelog](https://github.com/containerd/imgcrypt/blob/main/CHANGES)
- [Commits](https://github.com/containerd/imgcrypt/commits/v1.2.0-rc1)

---
updated-dependencies:
- dependency-name: github.com/containerd/imgcrypt
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
This commit is contained in:
dependabot[bot]
2024-07-22 06:24:29 +00:00
committed by GitHub
parent 1e3c35bd0d
commit 2d97134e5d
43 changed files with 298 additions and 147 deletions

View File

@@ -5,19 +5,19 @@ linters:
- unconvert
- gofmt
- goimports
- govet
- revive
- ineffassign
- vet
- unused
- misspell
run:
skip-dirs:
issue:
exclude-dirs:
- cmd/ctr/commands/run
- cmd/ctr/commands/images
- cmd\\ctr\\commands\\run
- cmd\\ctr\\commands\\images
skip-files:
exclude-files:
- cmd/ctr/commands/commands.go
- cmd\\ctr\\commands\\commands.go

View File

@@ -1,5 +1,11 @@
CHANGES
v1.2.0-rc1:
- Updated to ocicrypt v1.2.0
- Updated to containerd v2.0.0-rc.3
- Updated other dependencies
- Tests: Fixes to work with later version of containerd
v1.1.10:
- Updated to ocicrypt v1.1.10
- Added test cases with JKW EC key and added 2 more RSA keys

View File

@@ -500,7 +500,7 @@ func GetImageDecryptConverter(cc *encconfig.CryptoConfig, lf LayerFilter) conver
func CheckAuthorization(ctx context.Context, cs content.Store, desc ocispec.Descriptor, dc *encconfig.DecryptConfig) error {
cc := encconfig.InitDecryption(dc.Parameters)
lf := func(desc ocispec.Descriptor) bool {
lf := func(_ ocispec.Descriptor) bool {
return true
}