cdk-ecr-deployment 3.0.25 → 3.0.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.jsii +2 -2
- package/lambda/go.mod +3 -5
- package/lambda/go.sum +1261 -28
- package/lambda/utils.go +1 -1
- package/lib/index.js +3 -3
- package/package.json +2 -2
package/.jsii
CHANGED
|
@@ -4177,6 +4177,6 @@
|
|
|
4177
4177
|
"symbolId": "src/index:S3ArchiveName"
|
|
4178
4178
|
}
|
|
4179
4179
|
},
|
|
4180
|
-
"version": "3.0.
|
|
4181
|
-
"fingerprint": "
|
|
4180
|
+
"version": "3.0.27",
|
|
4181
|
+
"fingerprint": "F2tbcRkNpxWwuYeQGcWBTs/Nyjt2VOxRd8NpkNHbw4c="
|
|
4182
4182
|
}
|
package/lambda/go.mod
CHANGED
|
@@ -10,7 +10,7 @@ require (
|
|
|
10
10
|
github.com/aws/aws-sdk-go-v2/service/ecr v1.17.3
|
|
11
11
|
github.com/aws/aws-sdk-go-v2/service/s3 v1.26.4
|
|
12
12
|
github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.15.4
|
|
13
|
-
github.com/containerd/containerd v1.6.
|
|
13
|
+
github.com/containerd/containerd v1.6.26 // indirect
|
|
14
14
|
github.com/containers/image/v5 v5.21.0
|
|
15
15
|
github.com/containers/storage v1.39.0 // indirect
|
|
16
16
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
|
|
@@ -19,11 +19,9 @@ require (
|
|
|
19
19
|
github.com/opencontainers/go-digest v1.0.0
|
|
20
20
|
github.com/pkg/errors v0.9.1
|
|
21
21
|
github.com/prometheus/common v0.33.0 // indirect
|
|
22
|
-
github.com/sirupsen/logrus v1.
|
|
23
|
-
github.com/stretchr/testify v1.
|
|
22
|
+
github.com/sirupsen/logrus v1.9.3
|
|
23
|
+
github.com/stretchr/testify v1.8.4
|
|
24
24
|
github.com/vbauerster/mpb/v7 v7.4.1 // indirect
|
|
25
25
|
go.mozilla.org/pkcs7 v0.0.0-20210826202110-33d05740a352 // indirect
|
|
26
|
-
golang.org/x/crypto v0.0.0-20220408190544-5352b0902921 // indirect
|
|
27
|
-
golang.org/x/sys v0.1.0 // indirect
|
|
28
26
|
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
|
|
29
27
|
)
|