cdk-docker-image-deployment 0.0.140 → 0.0.141
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 +3 -3
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/aws-sdk/CHANGELOG.md +6 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/quicksight-2018-04-01.min.json +556 -537
- package/node_modules/aws-sdk/clients/ec2.d.ts +1 -1
- package/node_modules/aws-sdk/clients/ivs.d.ts +12 -12
- package/node_modules/aws-sdk/clients/quicksight.d.ts +30 -5
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +11 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +22 -2
- package/node_modules/aws-sdk/dist/aws-sdk.js +3 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +2 -2
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/get-intrinsic/.eslintrc +1 -0
- package/node_modules/get-intrinsic/CHANGELOG.md +12 -0
- package/node_modules/get-intrinsic/index.js +10 -0
- package/node_modules/get-intrinsic/package.json +7 -6
- package/node_modules/get-intrinsic/test/GetIntrinsic.js +1 -1
- package/package.json +4 -4
|
@@ -5,6 +5,18 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [v1.2.0](https://github.com/ljharb/get-intrinsic/compare/v1.1.3...v1.2.0) - 2023-01-19
|
|
9
|
+
|
|
10
|
+
### Commits
|
|
11
|
+
|
|
12
|
+
- [actions] update checkout action [`ca6b12f`](https://github.com/ljharb/get-intrinsic/commit/ca6b12f31eaacea4ea3b055e744cd61623385ffb)
|
|
13
|
+
- [Dev Deps] update `@ljharb/eslint-config`, `es-abstract`, `object-inspect`, `tape` [`41a3727`](https://github.com/ljharb/get-intrinsic/commit/41a3727d0026fa04273ae216a5f8e12eefd72da8)
|
|
14
|
+
- [Fix] ensure `Error.prototype` is undeniable [`c511e97`](https://github.com/ljharb/get-intrinsic/commit/c511e97ae99c764c4524b540dee7a70757af8da3)
|
|
15
|
+
- [Dev Deps] update `aud`, `es-abstract`, `tape` [`1bef8a8`](https://github.com/ljharb/get-intrinsic/commit/1bef8a8fd439ebb80863199b6189199e0851ac67)
|
|
16
|
+
- [Dev Deps] update `aud`, `es-abstract` [`0d41f16`](https://github.com/ljharb/get-intrinsic/commit/0d41f16bcd500bc28b7bfc98043ebf61ea081c26)
|
|
17
|
+
- [New] add `BigInt64Array` and `BigUint64Array` [`a6cca25`](https://github.com/ljharb/get-intrinsic/commit/a6cca25f29635889b7e9bd669baf9e04be90e48c)
|
|
18
|
+
- [Tests] use `gopd` [`ecf7722`](https://github.com/ljharb/get-intrinsic/commit/ecf7722240d15cfd16edda06acf63359c10fb9bd)
|
|
19
|
+
|
|
8
20
|
## [v1.1.3](https://github.com/ljharb/get-intrinsic/compare/v1.1.2...v1.1.3) - 2022-09-12
|
|
9
21
|
|
|
10
22
|
### Commits
|
|
@@ -62,6 +62,8 @@ var INTRINSICS = {
|
|
|
62
62
|
'%AsyncIteratorPrototype%': needsEval,
|
|
63
63
|
'%Atomics%': typeof Atomics === 'undefined' ? undefined : Atomics,
|
|
64
64
|
'%BigInt%': typeof BigInt === 'undefined' ? undefined : BigInt,
|
|
65
|
+
'%BigInt64Array%': typeof BigInt64Array === 'undefined' ? undefined : BigInt64Array,
|
|
66
|
+
'%BigUint64Array%': typeof BigUint64Array === 'undefined' ? undefined : BigUint64Array,
|
|
65
67
|
'%Boolean%': Boolean,
|
|
66
68
|
'%DataView%': typeof DataView === 'undefined' ? undefined : DataView,
|
|
67
69
|
'%Date%': Date,
|
|
@@ -117,6 +119,14 @@ var INTRINSICS = {
|
|
|
117
119
|
'%WeakSet%': typeof WeakSet === 'undefined' ? undefined : WeakSet
|
|
118
120
|
};
|
|
119
121
|
|
|
122
|
+
try {
|
|
123
|
+
null.error; // eslint-disable-line no-unused-expressions
|
|
124
|
+
} catch (e) {
|
|
125
|
+
// https://github.com/tc39/proposal-shadowrealm/pull/384#issuecomment-1364264229
|
|
126
|
+
var errorProto = getProto(getProto(e));
|
|
127
|
+
INTRINSICS['%Error.prototype%'] = errorProto;
|
|
128
|
+
}
|
|
129
|
+
|
|
120
130
|
var doEval = function doEval(name) {
|
|
121
131
|
var value;
|
|
122
132
|
if (name === '%AsyncFunction%') {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "get-intrinsic",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Get and robustly cache all JS language-level intrinsics at first require time",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"exports": {
|
|
@@ -48,24 +48,25 @@
|
|
|
48
48
|
},
|
|
49
49
|
"homepage": "https://github.com/ljharb/get-intrinsic#readme",
|
|
50
50
|
"devDependencies": {
|
|
51
|
-
"@ljharb/eslint-config": "^21.0.
|
|
52
|
-
"aud": "^2.0.
|
|
51
|
+
"@ljharb/eslint-config": "^21.0.1",
|
|
52
|
+
"aud": "^2.0.2",
|
|
53
53
|
"auto-changelog": "^2.4.0",
|
|
54
54
|
"call-bind": "^1.0.2",
|
|
55
|
-
"es-abstract": "^1.
|
|
55
|
+
"es-abstract": "^1.21.1",
|
|
56
56
|
"es-value-fixtures": "^1.4.2",
|
|
57
57
|
"eslint": "=8.8.0",
|
|
58
58
|
"evalmd": "^0.0.19",
|
|
59
59
|
"for-each": "^0.3.3",
|
|
60
|
+
"gopd": "^1.0.1",
|
|
60
61
|
"make-async-function": "^1.0.0",
|
|
61
62
|
"make-async-generator-function": "^1.0.0",
|
|
62
63
|
"make-generator-function": "^2.0.0",
|
|
63
64
|
"mock-property": "^1.0.0",
|
|
64
65
|
"npmignore": "^0.3.0",
|
|
65
66
|
"nyc": "^10.3.2",
|
|
66
|
-
"object-inspect": "^1.12.
|
|
67
|
+
"object-inspect": "^1.12.3",
|
|
67
68
|
"safe-publish-latest": "^2.0.0",
|
|
68
|
-
"tape": "^5.6.
|
|
69
|
+
"tape": "^5.6.3"
|
|
69
70
|
},
|
|
70
71
|
"auto-changelog": {
|
|
71
72
|
"output": "CHANGELOG.md",
|
|
@@ -12,7 +12,7 @@ var mockProperty = require('mock-property');
|
|
|
12
12
|
|
|
13
13
|
var callBound = require('call-bind/callBound');
|
|
14
14
|
var v = require('es-value-fixtures');
|
|
15
|
-
var $gOPD = require('
|
|
15
|
+
var $gOPD = require('gopd');
|
|
16
16
|
var DefinePropertyOrThrow = require('es-abstract/2021/DefinePropertyOrThrow');
|
|
17
17
|
|
|
18
18
|
var $isProto = callBound('%Object.prototype.isPrototypeOf%');
|
package/package.json
CHANGED
|
@@ -53,11 +53,11 @@
|
|
|
53
53
|
"jest-junit": "^13",
|
|
54
54
|
"jsii": "^1.73.0",
|
|
55
55
|
"jsii-diff": "^1.73.0",
|
|
56
|
-
"jsii-docgen": "^7.0.
|
|
56
|
+
"jsii-docgen": "^7.0.209",
|
|
57
57
|
"jsii-pacmak": "^1.73.0",
|
|
58
58
|
"json-schema": "^0.4.0",
|
|
59
59
|
"npm-check-updates": "^16",
|
|
60
|
-
"projen": "^0.67.
|
|
60
|
+
"projen": "^0.67.8",
|
|
61
61
|
"standard-version": "^9",
|
|
62
62
|
"ts-jest": "^27",
|
|
63
63
|
"typescript": "^4.9.4"
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
},
|
|
69
69
|
"dependencies": {
|
|
70
70
|
"@types/aws-lambda": "^8.10.109",
|
|
71
|
-
"aws-sdk": "^2.
|
|
71
|
+
"aws-sdk": "^2.1299.0"
|
|
72
72
|
},
|
|
73
73
|
"bundledDependencies": [
|
|
74
74
|
"@types/aws-lambda",
|
|
@@ -80,7 +80,7 @@
|
|
|
80
80
|
"main": "lib/index.js",
|
|
81
81
|
"license": "Apache-2.0",
|
|
82
82
|
"homepage": "https://github.com/cdklabs/cdk-docker-image-deployment#readme",
|
|
83
|
-
"version": "0.0.
|
|
83
|
+
"version": "0.0.141",
|
|
84
84
|
"jest": {
|
|
85
85
|
"testMatch": [
|
|
86
86
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|