cdk-ecr-deployment 3.0.66 → 3.0.67
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 +6 -14
- package/lambda/go.sum +2295 -138
- package/lib/index.js +3 -3
- package/package.json +5 -5
package/.jsii
CHANGED
|
@@ -4305,6 +4305,6 @@
|
|
|
4305
4305
|
"symbolId": "src/index:S3ArchiveName"
|
|
4306
4306
|
}
|
|
4307
4307
|
},
|
|
4308
|
-
"version": "3.0.
|
|
4309
|
-
"fingerprint": "
|
|
4308
|
+
"version": "3.0.67",
|
|
4309
|
+
"fingerprint": "k8VaAHgbL01P40MsvM/TxrM16ZtZ5hTfPy2XseJoJ2Q="
|
|
4310
4310
|
}
|
package/lambda/go.mod
CHANGED
|
@@ -3,25 +3,17 @@ module cdk-ecr-deployment-handler
|
|
|
3
3
|
go 1.15
|
|
4
4
|
|
|
5
5
|
require (
|
|
6
|
-
github.com/BurntSushi/toml v1.1.0 // indirect
|
|
7
6
|
github.com/aws/aws-lambda-go v1.29.0
|
|
8
|
-
github.com/aws/aws-sdk-go-v2 v1.
|
|
9
|
-
github.com/aws/aws-sdk-go-v2/config v1.
|
|
7
|
+
github.com/aws/aws-sdk-go-v2 v1.21.0
|
|
8
|
+
github.com/aws/aws-sdk-go-v2/config v1.18.37
|
|
10
9
|
github.com/aws/aws-sdk-go-v2/service/ecr v1.17.3
|
|
11
|
-
github.com/aws/aws-sdk-go-v2/service/s3 v1.
|
|
12
|
-
github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.
|
|
13
|
-
github.com/
|
|
14
|
-
github.com/containers/image/v5 v5.21.0
|
|
15
|
-
github.com/containers/storage v1.39.0 // indirect
|
|
10
|
+
github.com/aws/aws-sdk-go-v2/service/s3 v1.35.0
|
|
11
|
+
github.com/aws/aws-sdk-go-v2/service/secretsmanager v1.19.10
|
|
12
|
+
github.com/containers/image/v5 v5.29.3
|
|
16
13
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
|
|
17
|
-
github.com/gorilla/mux v1.8.0 // indirect
|
|
18
|
-
github.com/imdario/mergo v0.3.13 // indirect
|
|
19
14
|
github.com/opencontainers/go-digest v1.0.0
|
|
20
15
|
github.com/pkg/errors v0.9.1
|
|
21
|
-
github.com/prometheus/common v0.33.0 // indirect
|
|
22
16
|
github.com/sirupsen/logrus v1.9.3
|
|
23
17
|
github.com/stretchr/testify v1.8.4
|
|
24
|
-
github.com/
|
|
25
|
-
go.mozilla.org/pkcs7 v0.0.0-20210826202110-33d05740a352 // indirect
|
|
26
|
-
gopkg.in/square/go-jose.v2 v2.6.0 // indirect
|
|
18
|
+
github.com/tchap/go-patricia v2.3.0+incompatible // indirect
|
|
27
19
|
)
|