cdk-ecr-deployment 3.0.65 → 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 +28 -4
- package/lambda/go.mod +6 -14
- package/lambda/go.sum +2295 -138
- package/lib/index.js +3 -3
- package/package.json +7 -7
package/.jsii
CHANGED
|
@@ -226,8 +226,32 @@
|
|
|
226
226
|
}
|
|
227
227
|
}
|
|
228
228
|
},
|
|
229
|
-
"aws-cdk-lib.aws_apigatewayv2_authorizers": {
|
|
230
|
-
|
|
229
|
+
"aws-cdk-lib.aws_apigatewayv2_authorizers": {
|
|
230
|
+
"targets": {
|
|
231
|
+
"dotnet": {
|
|
232
|
+
"namespace": "Amazon.CDK.AwsApigatewayv2Authorizers"
|
|
233
|
+
},
|
|
234
|
+
"java": {
|
|
235
|
+
"package": "software.amazon.awscdk.aws_apigatewayv2_authorizers"
|
|
236
|
+
},
|
|
237
|
+
"python": {
|
|
238
|
+
"module": "aws_cdk.aws_apigatewayv2_authorizers"
|
|
239
|
+
}
|
|
240
|
+
}
|
|
241
|
+
},
|
|
242
|
+
"aws-cdk-lib.aws_apigatewayv2_integrations": {
|
|
243
|
+
"targets": {
|
|
244
|
+
"dotnet": {
|
|
245
|
+
"namespace": "Amazon.CDK.AwsApigatewayv2Integrations"
|
|
246
|
+
},
|
|
247
|
+
"java": {
|
|
248
|
+
"package": "software.amazon.awscdk.aws_apigatewayv2_integrations"
|
|
249
|
+
},
|
|
250
|
+
"python": {
|
|
251
|
+
"module": "aws_cdk.aws_apigatewayv2_integrations"
|
|
252
|
+
}
|
|
253
|
+
}
|
|
254
|
+
},
|
|
231
255
|
"aws-cdk-lib.aws_appconfig": {
|
|
232
256
|
"targets": {
|
|
233
257
|
"dotnet": {
|
|
@@ -4281,6 +4305,6 @@
|
|
|
4281
4305
|
"symbolId": "src/index:S3ArchiveName"
|
|
4282
4306
|
}
|
|
4283
4307
|
},
|
|
4284
|
-
"version": "3.0.
|
|
4285
|
-
"fingerprint": "
|
|
4308
|
+
"version": "3.0.67",
|
|
4309
|
+
"fingerprint": "k8VaAHgbL01P40MsvM/TxrM16ZtZ5hTfPy2XseJoJ2Q="
|
|
4286
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
|
)
|