cdk-docker-image-deployment 0.0.506 → 0.0.508
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/README.md +1 -1
- package/node_modules/aws-sdk/apis/appsync-2017-07-25.min.json +178 -147
- package/node_modules/aws-sdk/apis/monitoring-2010-08-01.min.json +5 -0
- package/node_modules/aws-sdk/apis/route53domains-2014-05-15.min.json +24 -0
- package/node_modules/aws-sdk/clients/appsync.d.ts +68 -0
- package/node_modules/aws-sdk/clients/route53domains.d.ts +49 -17
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +2 -2
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +6 -6
- package/node_modules/aws-sdk/dist/aws-sdk.js +32 -3
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +38 -38
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/node_modules/define-data-property/CHANGELOG.md +11 -0
- package/node_modules/define-data-property/index.d.ts +12 -3
- package/node_modules/define-data-property/index.js +1 -1
- package/node_modules/define-data-property/package.json +11 -18
- package/node_modules/define-data-property/test/index.js +3 -3
- package/node_modules/hasown/CHANGELOG.md +8 -0
- package/node_modules/hasown/index.d.ts +3 -3
- package/node_modules/hasown/index.js +1 -1
- package/node_modules/hasown/package.json +13 -15
- package/package.json +3 -3
- package/node_modules/define-data-property/index.d.ts.map +0 -1
- package/node_modules/hasown/index.d.ts.map +0 -1
|
@@ -5,6 +5,17 @@ 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.1.3](https://github.com/ljharb/define-data-property/compare/v1.1.2...v1.1.3) - 2024-02-12
|
|
9
|
+
|
|
10
|
+
### Commits
|
|
11
|
+
|
|
12
|
+
- [types] hand-write d.ts instead of emitting it [`0cbc988`](https://github.com/ljharb/define-data-property/commit/0cbc988203c105f2d97948327c7167ebd33bd318)
|
|
13
|
+
- [meta] simplify `exports` [`690781e`](https://github.com/ljharb/define-data-property/commit/690781eed28bbf2d6766237efda0ba6dd591609e)
|
|
14
|
+
- [Dev Deps] update `hasown`; clean up DT packages [`6cdfd1c`](https://github.com/ljharb/define-data-property/commit/6cdfd1cb2d91d791bfd18cda5d5cab232fd5d8fc)
|
|
15
|
+
- [actions] cleanup [`3142bc6`](https://github.com/ljharb/define-data-property/commit/3142bc6a4bc406a51f5b04f31e98562a27f35ffd)
|
|
16
|
+
- [meta] add `funding` [`8474423`](https://github.com/ljharb/define-data-property/commit/847442391a79779af3e0f1bf0b5bb923552b7804)
|
|
17
|
+
- [Deps] update `get-intrinsic` [`3e9be00`](https://github.com/ljharb/define-data-property/commit/3e9be00e07784ba34e7c77d8bc0fdbc832ad61de)
|
|
18
|
+
|
|
8
19
|
## [v1.1.2](https://github.com/ljharb/define-data-property/compare/v1.1.1...v1.1.2) - 2024-02-05
|
|
9
20
|
|
|
10
21
|
### Commits
|
|
@@ -1,3 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
|
|
2
|
+
declare function defineDataProperty(
|
|
3
|
+
obj: Record<PropertyKey, unknown>,
|
|
4
|
+
property: keyof typeof obj,
|
|
5
|
+
value: typeof obj[typeof property],
|
|
6
|
+
nonEnumerable?: boolean | null,
|
|
7
|
+
nonWritable?: boolean | null,
|
|
8
|
+
nonConfigurable?: boolean | null,
|
|
9
|
+
loose?: boolean
|
|
10
|
+
): void;
|
|
11
|
+
|
|
12
|
+
export = defineDataProperty;
|
|
@@ -19,7 +19,7 @@ var $TypeError = require('es-errors/type');
|
|
|
19
19
|
|
|
20
20
|
var gopd = require('gopd');
|
|
21
21
|
|
|
22
|
-
/** @type {(
|
|
22
|
+
/** @type {import('.')} */
|
|
23
23
|
module.exports = function defineDataProperty(
|
|
24
24
|
obj,
|
|
25
25
|
property,
|
|
@@ -1,28 +1,19 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "define-data-property",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.3",
|
|
4
4
|
"description": "Define a data property on an object. Will fall back to assignment in an engine without descriptors.",
|
|
5
5
|
"main": "index.js",
|
|
6
|
+
"types": "./index.d.ts",
|
|
6
7
|
"exports": {
|
|
7
|
-
".":
|
|
8
|
-
{
|
|
9
|
-
"types": "./index.d.ts",
|
|
10
|
-
"default": "./index.js"
|
|
11
|
-
},
|
|
12
|
-
"./index.js"
|
|
13
|
-
],
|
|
8
|
+
".": "./index.js",
|
|
14
9
|
"./package.json": "./package.json"
|
|
15
10
|
},
|
|
16
11
|
"sideEffects": false,
|
|
17
|
-
"types": "./index.d.ts",
|
|
18
12
|
"scripts": {
|
|
19
|
-
"prepack": "npmignore --auto --commentLines=autogenerated
|
|
13
|
+
"prepack": "npmignore --auto --commentLines=autogenerated",
|
|
20
14
|
"prepublish": "not-in-publish || npm run prepublishOnly",
|
|
21
15
|
"prepublishOnly": "safe-publish-latest",
|
|
22
16
|
"tsc": "tsc -p .",
|
|
23
|
-
"preemit-types": "rm -f *.ts *.ts.map test/*.ts test/*.ts.map",
|
|
24
|
-
"emit-types": "npm run tsc -- --noEmit false --emitDeclarationOnly",
|
|
25
|
-
"postemit-types": "rm test/*.ts test/*.ts.map",
|
|
26
17
|
"prelint": "evalmd README.md",
|
|
27
18
|
"lint": "eslint --ext=js,mjs .",
|
|
28
19
|
"postlint": "npm run tsc",
|
|
@@ -50,6 +41,9 @@
|
|
|
50
41
|
"writable"
|
|
51
42
|
],
|
|
52
43
|
"author": "Jordan Harband <ljharb@gmail.com>",
|
|
44
|
+
"funding": {
|
|
45
|
+
"url": "https://github.com/sponsors/ljharb"
|
|
46
|
+
},
|
|
53
47
|
"license": "MIT",
|
|
54
48
|
"bugs": {
|
|
55
49
|
"url": "https://github.com/ljharb/define-data-property/issues"
|
|
@@ -57,17 +51,18 @@
|
|
|
57
51
|
"homepage": "https://github.com/ljharb/define-data-property#readme",
|
|
58
52
|
"dependencies": {
|
|
59
53
|
"es-errors": "^1.3.0",
|
|
60
|
-
"get-intrinsic": "^1.2.
|
|
54
|
+
"get-intrinsic": "^1.2.4",
|
|
61
55
|
"gopd": "^1.0.1",
|
|
62
56
|
"has-property-descriptors": "^1.0.1"
|
|
63
57
|
},
|
|
64
58
|
"devDependencies": {
|
|
65
59
|
"@ljharb/eslint-config": "^21.1.0",
|
|
60
|
+
"@types/call-bind": "^1.0.5",
|
|
61
|
+
"@types/define-properties": "^1.1.5",
|
|
66
62
|
"@types/es-value-fixtures": "^1.4.4",
|
|
67
63
|
"@types/for-each": "^0.3.3",
|
|
68
64
|
"@types/get-intrinsic": "^1.2.2",
|
|
69
65
|
"@types/gopd": "^1.0.3",
|
|
70
|
-
"@types/has": "^1.0.1",
|
|
71
66
|
"@types/has-property-descriptors": "^1.0.3",
|
|
72
67
|
"@types/object-inspect": "^1.8.4",
|
|
73
68
|
"@types/object.getownpropertydescriptors": "^2.1.3",
|
|
@@ -78,7 +73,7 @@
|
|
|
78
73
|
"eslint": "=8.8.0",
|
|
79
74
|
"evalmd": "^0.0.19",
|
|
80
75
|
"for-each": "^0.3.3",
|
|
81
|
-
"hasown": "^2.0.
|
|
76
|
+
"hasown": "^2.0.1",
|
|
82
77
|
"in-publish": "^2.0.1",
|
|
83
78
|
"npmignore": "^0.3.1",
|
|
84
79
|
"nyc": "^10.3.2",
|
|
@@ -106,8 +101,6 @@
|
|
|
106
101
|
"publishConfig": {
|
|
107
102
|
"ignore": [
|
|
108
103
|
".github/workflows",
|
|
109
|
-
"!*.ts",
|
|
110
|
-
"!*.ts.map",
|
|
111
104
|
"types/reflect.ownkeys"
|
|
112
105
|
]
|
|
113
106
|
}
|
|
@@ -34,21 +34,21 @@ test('defineDataProperty', function (t) {
|
|
|
34
34
|
forEach(v.nonBooleans, function (nonBoolean) {
|
|
35
35
|
if (nonBoolean !== null) {
|
|
36
36
|
st['throws'](
|
|
37
|
-
|
|
37
|
+
// @ts-expect-error
|
|
38
38
|
function () { defineDataProperty({}, 'key', 'value', nonBoolean); },
|
|
39
39
|
TypeError,
|
|
40
40
|
'throws on non-boolean nonEnumerable: ' + inspect(nonBoolean)
|
|
41
41
|
);
|
|
42
42
|
|
|
43
43
|
st['throws'](
|
|
44
|
-
|
|
44
|
+
// @ts-expect-error
|
|
45
45
|
function () { defineDataProperty({}, 'key', 'value', false, nonBoolean); },
|
|
46
46
|
TypeError,
|
|
47
47
|
'throws on non-boolean nonWritable: ' + inspect(nonBoolean)
|
|
48
48
|
);
|
|
49
49
|
|
|
50
50
|
st['throws'](
|
|
51
|
-
|
|
51
|
+
// @ts-expect-error
|
|
52
52
|
function () { defineDataProperty({}, 'key', 'value', false, false, nonBoolean); },
|
|
53
53
|
TypeError,
|
|
54
54
|
'throws on non-boolean nonConfigurable: ' + inspect(nonBoolean)
|
|
@@ -5,6 +5,14 @@ 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
|
+
## [v2.0.1](https://github.com/inspect-js/hasOwn/compare/v2.0.0...v2.0.1) - 2024-02-10
|
|
9
|
+
|
|
10
|
+
### Commits
|
|
11
|
+
|
|
12
|
+
- [types] use a handwritten d.ts file; fix exported type [`012b989`](https://github.com/inspect-js/hasOwn/commit/012b9898ccf91dc441e2ebf594ff70270a5fda58)
|
|
13
|
+
- [Dev Deps] update `@types/function-bind`, `@types/mock-property`, `@types/tape`, `aud`, `mock-property`, `npmignore`, `tape`, `typescript` [`977a56f`](https://github.com/inspect-js/hasOwn/commit/977a56f51a1f8b20566f3c471612137894644025)
|
|
14
|
+
- [meta] add `sideEffects` flag [`3a60b7b`](https://github.com/inspect-js/hasOwn/commit/3a60b7bf42fccd8c605e5f145a6fcc83b13cb46f)
|
|
15
|
+
|
|
8
16
|
## [v2.0.0](https://github.com/inspect-js/hasOwn/compare/v1.0.1...v2.0.0) - 2023-10-19
|
|
9
17
|
|
|
10
18
|
### Commits
|
|
@@ -1,3 +1,3 @@
|
|
|
1
|
-
declare
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
declare function hasOwn<T extends {} = {}>(o: T, p: PropertyKey): p is keyof T;
|
|
2
|
+
|
|
3
|
+
export = hasOwn;
|
|
@@ -1,21 +1,21 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hasown",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.1",
|
|
4
4
|
"description": "A robust, ES3 compatible, \"has own property\" predicate.",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"exports": {
|
|
7
7
|
".": "./index.js",
|
|
8
8
|
"./package.json": "./package.json"
|
|
9
9
|
},
|
|
10
|
+
"types": "index.d.ts",
|
|
11
|
+
"sideEffects": false,
|
|
10
12
|
"scripts": {
|
|
11
|
-
"prepack": "npmignore --auto --commentLines=autogenerated
|
|
13
|
+
"prepack": "npmignore --auto --commentLines=autogenerated",
|
|
12
14
|
"prepublish": "not-in-publish || npm run prepublishOnly",
|
|
13
15
|
"prepublishOnly": "safe-publish-latest",
|
|
14
16
|
"prelint": "evalmd README.md",
|
|
15
17
|
"lint": "eslint --ext=js,mjs .",
|
|
16
18
|
"postlint": "npm run tsc",
|
|
17
|
-
"preemit-types": "rm -f *.ts *.ts.map test/*.ts test/*.ts.map",
|
|
18
|
-
"emit-types": "npm run tsc -- --noEmit false --emitDeclarationOnly",
|
|
19
19
|
"pretest": "npm run lint",
|
|
20
20
|
"tsc": "tsc -p .",
|
|
21
21
|
"tests-only": "nyc tape 'test/**/*.js'",
|
|
@@ -51,20 +51,20 @@
|
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
53
|
"@ljharb/eslint-config": "^21.1.0",
|
|
54
|
-
"@types/function-bind": "^1.1.
|
|
55
|
-
"@types/mock-property": "^1.0.
|
|
56
|
-
"@types/tape": "^5.6.
|
|
57
|
-
"aud": "^2.0.
|
|
54
|
+
"@types/function-bind": "^1.1.10",
|
|
55
|
+
"@types/mock-property": "^1.0.2",
|
|
56
|
+
"@types/tape": "^5.6.4",
|
|
57
|
+
"aud": "^2.0.4",
|
|
58
58
|
"auto-changelog": "^2.4.0",
|
|
59
59
|
"eslint": "=8.8.0",
|
|
60
60
|
"evalmd": "^0.0.19",
|
|
61
61
|
"in-publish": "^2.0.1",
|
|
62
|
-
"mock-property": "^1.0.
|
|
63
|
-
"npmignore": "^0.3.
|
|
62
|
+
"mock-property": "^1.0.3",
|
|
63
|
+
"npmignore": "^0.3.1",
|
|
64
64
|
"nyc": "^10.3.2",
|
|
65
65
|
"safe-publish-latest": "^2.0.0",
|
|
66
|
-
"tape": "^5.7.
|
|
67
|
-
"typescript": "
|
|
66
|
+
"tape": "^5.7.4",
|
|
67
|
+
"typescript": "next"
|
|
68
68
|
},
|
|
69
69
|
"engines": {
|
|
70
70
|
"node": ">= 0.4"
|
|
@@ -83,9 +83,7 @@
|
|
|
83
83
|
"publishConfig": {
|
|
84
84
|
"ignore": [
|
|
85
85
|
".github/workflows",
|
|
86
|
-
"test"
|
|
87
|
-
"!*.d.ts",
|
|
88
|
-
"!*.d.ts.map"
|
|
86
|
+
"test"
|
|
89
87
|
]
|
|
90
88
|
}
|
|
91
89
|
}
|
package/package.json
CHANGED
|
@@ -55,7 +55,7 @@
|
|
|
55
55
|
"jsii-docgen": "^7.2.9",
|
|
56
56
|
"jsii-pacmak": "^1.94.0",
|
|
57
57
|
"jsii-rosetta": "1.x",
|
|
58
|
-
"projen": "^0.79.
|
|
58
|
+
"projen": "^0.79.17",
|
|
59
59
|
"standard-version": "^9",
|
|
60
60
|
"ts-jest": "^27",
|
|
61
61
|
"ts-node": "^10.9.2",
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"@types/aws-lambda": "^8.10.133",
|
|
70
|
-
"aws-sdk": "^2.
|
|
70
|
+
"aws-sdk": "^2.1556.0"
|
|
71
71
|
},
|
|
72
72
|
"bundledDependencies": [
|
|
73
73
|
"@types/aws-lambda",
|
|
@@ -83,7 +83,7 @@
|
|
|
83
83
|
"main": "lib/index.js",
|
|
84
84
|
"license": "Apache-2.0",
|
|
85
85
|
"homepage": "https://github.com/cdklabs/cdk-docker-image-deployment#readme",
|
|
86
|
-
"version": "0.0.
|
|
86
|
+
"version": "0.0.508",
|
|
87
87
|
"jest": {
|
|
88
88
|
"testMatch": [
|
|
89
89
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.js"],"names":[],"mappings":"8BAqBiB,OAAO,WAAW,EAAE,OAAO,CAAC,YAAY,WAAW,SAAS,OAAO,kBAAkB,OAAO,GAAG,IAAI,gBAAgB,OAAO,GAAG,IAAI,oBAAoB,OAAO,GAAG,IAAI,UAAU,OAAO,KAAK,IAAI"}
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["index.js"],"names":[],"mappings":"4BAMe,EAAE,KAAK,WAAW"}
|