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.
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
20
20
  /**
21
21
  * @constant
22
22
  */
23
- VERSION: '2.1298.0',
23
+ VERSION: '2.1299.0',
24
24
 
25
25
  /**
26
26
  * @api private
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "aws-sdk",
3
3
  "description": "AWS SDK for JavaScript",
4
- "version": "2.1298.0",
4
+ "version": "2.1299.0",
5
5
  "author": {
6
6
  "name": "Amazon Web Services",
7
7
  "email": "",
@@ -17,6 +17,7 @@
17
17
  "eqeqeq": [2, "allow-null"],
18
18
  "func-name-matching": 0,
19
19
  "id-length": 0,
20
+ "max-lines": 0,
20
21
  "max-lines-per-function": [2, 90],
21
22
  "max-params": [2, 4],
22
23
  "max-statements": 0,
@@ -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.1.3",
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.0",
52
- "aud": "^2.0.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.20.2",
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.2",
67
+ "object-inspect": "^1.12.3",
67
68
  "safe-publish-latest": "^2.0.0",
68
- "tape": "^5.6.0"
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('es-abstract/helpers/getOwnPropertyDescriptor');
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.208",
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.6",
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.1298.0"
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.140",
83
+ "version": "0.0.141",
84
84
  "jest": {
85
85
  "testMatch": [
86
86
  "<rootDir>/src/**/__tests__/**/*.ts?(x)",