cdk-ecr-deployment 0.0.80 → 0.0.84
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/.gitattributes +20 -21
- package/.jsii +8 -8
- package/lambda/Makefile +1 -1
- package/lambda/go.mod +2 -1
- package/lambda/go.sum +231 -66
- package/lib/index.js +3 -3
- package/node_modules/@types/cacheable-request/node_modules/@types/node/README.md +2 -2
- package/node_modules/@types/cacheable-request/node_modules/@types/node/child_process.d.ts +1 -0
- package/node_modules/@types/cacheable-request/node_modules/@types/node/dns/promises.d.ts +11 -0
- package/node_modules/@types/cacheable-request/node_modules/@types/node/dns.d.ts +11 -0
- package/node_modules/@types/cacheable-request/node_modules/@types/node/fs.d.ts +44 -8
- package/node_modules/@types/cacheable-request/node_modules/@types/node/http.d.ts +3 -2
- package/node_modules/@types/cacheable-request/node_modules/@types/node/index.d.ts +1 -1
- package/node_modules/@types/cacheable-request/node_modules/@types/node/net.d.ts +2 -2
- package/node_modules/@types/cacheable-request/node_modules/@types/node/package.json +8 -8
- package/node_modules/@types/cacheable-request/node_modules/@types/node/process.d.ts +5 -1
- package/node_modules/@types/cacheable-request/node_modules/@types/node/readline.d.ts +1 -0
- package/node_modules/@types/cacheable-request/node_modules/@types/node/stream/web.d.ts +385 -0
- package/node_modules/@types/cacheable-request/node_modules/@types/node/url.d.ts +24 -1
- package/node_modules/@types/keyv/node_modules/@types/node/README.md +2 -2
- package/node_modules/@types/keyv/node_modules/@types/node/child_process.d.ts +1 -0
- package/node_modules/@types/keyv/node_modules/@types/node/dns/promises.d.ts +11 -0
- package/node_modules/@types/keyv/node_modules/@types/node/dns.d.ts +11 -0
- package/node_modules/@types/keyv/node_modules/@types/node/fs.d.ts +44 -8
- package/node_modules/@types/keyv/node_modules/@types/node/http.d.ts +3 -2
- package/node_modules/@types/keyv/node_modules/@types/node/index.d.ts +1 -1
- package/node_modules/@types/keyv/node_modules/@types/node/net.d.ts +2 -2
- package/node_modules/@types/keyv/node_modules/@types/node/package.json +8 -8
- package/node_modules/@types/keyv/node_modules/@types/node/process.d.ts +5 -1
- package/node_modules/@types/keyv/node_modules/@types/node/readline.d.ts +1 -0
- package/node_modules/@types/keyv/node_modules/@types/node/stream/web.d.ts +385 -0
- package/node_modules/@types/keyv/node_modules/@types/node/url.d.ts +24 -1
- package/node_modules/@types/responselike/node_modules/@types/node/README.md +2 -2
- package/node_modules/@types/responselike/node_modules/@types/node/child_process.d.ts +1 -0
- package/node_modules/@types/responselike/node_modules/@types/node/dns/promises.d.ts +11 -0
- package/node_modules/@types/responselike/node_modules/@types/node/dns.d.ts +11 -0
- package/node_modules/@types/responselike/node_modules/@types/node/fs.d.ts +44 -8
- package/node_modules/@types/responselike/node_modules/@types/node/http.d.ts +3 -2
- package/node_modules/@types/responselike/node_modules/@types/node/index.d.ts +1 -1
- package/node_modules/@types/responselike/node_modules/@types/node/net.d.ts +2 -2
- package/node_modules/@types/responselike/node_modules/@types/node/package.json +8 -8
- package/node_modules/@types/responselike/node_modules/@types/node/process.d.ts +5 -1
- package/node_modules/@types/responselike/node_modules/@types/node/readline.d.ts +1 -0
- package/node_modules/@types/responselike/node_modules/@types/node/stream/web.d.ts +385 -0
- package/node_modules/@types/responselike/node_modules/@types/node/url.d.ts +24 -1
- package/node_modules/got/dist/source/as-promise/parse-body.d.ts +1 -1
- package/node_modules/got/dist/source/as-promise/types.js +2 -0
- package/node_modules/got/dist/source/core/index.d.ts +1 -1
- package/node_modules/got/dist/source/core/index.js +9 -3
- package/node_modules/got/dist/source/types.d.ts +14 -12
- package/node_modules/got/package.json +2 -2
- package/node_modules/got/readme.md +11 -10
- package/node_modules/keyv/LICENSE +1 -1
- package/node_modules/keyv/README.md +12 -10
- package/node_modules/keyv/package.json +17 -12
- package/node_modules/keyv/src/index.js +14 -16
- package/package.json +37 -37
package/.gitattributes
CHANGED
|
@@ -1,23 +1,22 @@
|
|
|
1
1
|
# ~~ Generated by projen. To modify, edit .projenrc.js and run "npx projen".
|
|
2
2
|
|
|
3
|
-
*.snap
|
|
4
|
-
/.eslintrc.json
|
|
5
|
-
/.gitattributes
|
|
6
|
-
/.github/pull_request_template.md
|
|
7
|
-
/.github/workflows/auto-approve.yml
|
|
8
|
-
/.github/workflows/build.yml
|
|
9
|
-
/.github/workflows/
|
|
10
|
-
/.github/workflows/
|
|
11
|
-
/.github/workflows/
|
|
12
|
-
/.github/workflows/upgrade.yml
|
|
13
|
-
/.gitignore
|
|
14
|
-
/.mergify.yml
|
|
15
|
-
/.npmignore
|
|
16
|
-
/.projen/**
|
|
17
|
-
/.projen/deps.json
|
|
18
|
-
/.projen/tasks.json
|
|
19
|
-
/LICENSE
|
|
20
|
-
/package.json
|
|
21
|
-
/tsconfig.
|
|
22
|
-
/
|
|
23
|
-
/yarn.lock linguist-generated
|
|
3
|
+
*.snap linguist-generated
|
|
4
|
+
/.eslintrc.json linguist-generated
|
|
5
|
+
/.gitattributes linguist-generated
|
|
6
|
+
/.github/pull_request_template.md linguist-generated
|
|
7
|
+
/.github/workflows/auto-approve.yml linguist-generated
|
|
8
|
+
/.github/workflows/build.yml linguist-generated
|
|
9
|
+
/.github/workflows/pull-request-lint.yml linguist-generated
|
|
10
|
+
/.github/workflows/release.yml linguist-generated
|
|
11
|
+
/.github/workflows/stale.yml linguist-generated
|
|
12
|
+
/.github/workflows/upgrade-main.yml linguist-generated
|
|
13
|
+
/.gitignore linguist-generated
|
|
14
|
+
/.mergify.yml linguist-generated
|
|
15
|
+
/.npmignore linguist-generated
|
|
16
|
+
/.projen/** linguist-generated
|
|
17
|
+
/.projen/deps.json linguist-generated
|
|
18
|
+
/.projen/tasks.json linguist-generated
|
|
19
|
+
/LICENSE linguist-generated
|
|
20
|
+
/package.json linguist-generated
|
|
21
|
+
/tsconfig.dev.json linguist-generated
|
|
22
|
+
/yarn.lock linguist-generated
|
package/.jsii
CHANGED
|
@@ -6,13 +6,13 @@
|
|
|
6
6
|
]
|
|
7
7
|
},
|
|
8
8
|
"bundled": {
|
|
9
|
-
"got": "^11.8.
|
|
9
|
+
"got": "^11.8.3"
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
|
-
"@aws-cdk/aws-ec2": "^1.
|
|
13
|
-
"@aws-cdk/aws-iam": "^1.
|
|
14
|
-
"@aws-cdk/aws-lambda": "^1.
|
|
15
|
-
"@aws-cdk/core": "^1.
|
|
12
|
+
"@aws-cdk/aws-ec2": "^1.134.0",
|
|
13
|
+
"@aws-cdk/aws-iam": "^1.134.0",
|
|
14
|
+
"@aws-cdk/aws-lambda": "^1.134.0",
|
|
15
|
+
"@aws-cdk/core": "^1.134.0",
|
|
16
16
|
"constructs": "^3.2.27"
|
|
17
17
|
},
|
|
18
18
|
"dependencyClosure": {
|
|
@@ -668,7 +668,7 @@
|
|
|
668
668
|
"stability": "stable"
|
|
669
669
|
},
|
|
670
670
|
"homepage": "https://github.com/cdklabs/cdk-ecr-deployment",
|
|
671
|
-
"jsiiVersion": "1.
|
|
671
|
+
"jsiiVersion": "1.46.0 (build cd08c55)",
|
|
672
672
|
"keywords": [
|
|
673
673
|
"cdk"
|
|
674
674
|
],
|
|
@@ -1096,6 +1096,6 @@
|
|
|
1096
1096
|
"symbolId": "src/index:S3ArchiveName"
|
|
1097
1097
|
}
|
|
1098
1098
|
},
|
|
1099
|
-
"version": "0.0.
|
|
1100
|
-
"fingerprint": "
|
|
1099
|
+
"version": "0.0.84",
|
|
1100
|
+
"fingerprint": "SHbrRtcuV0peorKQ/fhqY+EZuypEv/WkExBUnkZsuTo="
|
|
1101
1101
|
}
|
package/lambda/Makefile
CHANGED
package/lambda/go.mod
CHANGED
|
@@ -8,9 +8,10 @@ require (
|
|
|
8
8
|
github.com/aws/aws-sdk-go-v2/config v1.1.6
|
|
9
9
|
github.com/aws/aws-sdk-go-v2/service/ecr v1.2.2
|
|
10
10
|
github.com/aws/aws-sdk-go-v2/service/s3 v1.5.0
|
|
11
|
-
github.com/containers/image/v5 v5.
|
|
11
|
+
github.com/containers/image/v5 v5.17.0
|
|
12
12
|
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da
|
|
13
13
|
github.com/opencontainers/go-digest v1.0.0
|
|
14
|
+
github.com/opencontainers/image-spec v1.0.2-0.20211123152302-43a7dee1ec31 // indirect
|
|
14
15
|
github.com/pkg/errors v0.9.1
|
|
15
16
|
github.com/sirupsen/logrus v1.8.1
|
|
16
17
|
github.com/stretchr/testify v1.7.0
|