cdk-docker-image-deployment 0.0.172 → 0.0.174
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 +4 -4
- package/lib/destination.js +1 -1
- package/lib/docker-image-deployment.js +1 -1
- package/lib/source.js +1 -1
- package/node_modules/@types/aws-lambda/README.md +1 -1
- package/node_modules/@types/aws-lambda/package.json +2 -2
- package/node_modules/@types/aws-lambda/trigger/api-gateway-proxy.d.ts +32 -1
- package/node_modules/aws-sdk/CHANGELOG.md +16 -1
- package/node_modules/aws-sdk/README.md +1 -1
- package/node_modules/aws-sdk/apis/appflow-2020-08-23.min.json +3 -0
- package/node_modules/aws-sdk/apis/chime-sdk-voice-2022-08-03.min.json +3 -0
- package/node_modules/aws-sdk/apis/ecs-2014-11-13.min.json +209 -182
- package/node_modules/aws-sdk/apis/iotwireless-2020-11-22.min.json +143 -116
- package/node_modules/aws-sdk/apis/location-2020-11-19.min.json +328 -18
- package/node_modules/aws-sdk/apis/location-2020-11-19.paginators.json +6 -0
- package/node_modules/aws-sdk/apis/opensearch-2021-01-01.min.json +277 -88
- package/node_modules/aws-sdk/apis/opensearch-2021-01-01.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/rum-2018-05-10.min.json +24 -22
- package/node_modules/aws-sdk/clients/appflow.d.ts +4 -0
- package/node_modules/aws-sdk/clients/chimesdkvoice.d.ts +1 -0
- package/node_modules/aws-sdk/clients/cloudfront.d.ts +17 -17
- package/node_modules/aws-sdk/clients/ecs.d.ts +64 -39
- package/node_modules/aws-sdk/clients/grafana.d.ts +11 -11
- package/node_modules/aws-sdk/clients/guardduty.d.ts +34 -34
- package/node_modules/aws-sdk/clients/iotwireless.d.ts +21 -9
- package/node_modules/aws-sdk/clients/location.d.ts +336 -55
- package/node_modules/aws-sdk/clients/macie2.d.ts +40 -40
- package/node_modules/aws-sdk/clients/opensearch.d.ts +223 -5
- package/node_modules/aws-sdk/clients/rum.d.ts +25 -11
- package/node_modules/aws-sdk/clients/ssm.d.ts +17 -17
- package/node_modules/aws-sdk/clients/wafv2.d.ts +49 -49
- 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 +59 -45
- package/node_modules/aws-sdk/dist/aws-sdk.js +547 -204
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +59 -59
- package/node_modules/aws-sdk/dist/xml2js.js +24 -17
- package/node_modules/aws-sdk/lib/core.js +1 -1
- package/node_modules/aws-sdk/lib/maintenance_mode_message.js +1 -1
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
|
@@ -7483,7 +7483,7 @@ module.exports =
|
|
|
7483
7483
|
/*<replacement>*/
|
|
7484
7484
|
|
|
7485
7485
|
var Buffer = __webpack_require__(40).Buffer;
|
|
7486
|
-
var OurUint8Array = global.Uint8Array || function () {};
|
|
7486
|
+
var OurUint8Array = (typeof global !== 'undefined' ? global : typeof window !== 'undefined' ? window : typeof self !== 'undefined' ? self : {}).Uint8Array || function () {};
|
|
7487
7487
|
function _uint8ArrayToBuffer(chunk) {
|
|
7488
7488
|
return Buffer.from(chunk);
|
|
7489
7489
|
}
|
|
@@ -8053,8 +8053,8 @@ module.exports =
|
|
|
8053
8053
|
// also returned false.
|
|
8054
8054
|
// => Check whether `dest` is still a piping destination.
|
|
8055
8055
|
if ((state.pipesCount === 1 && state.pipes === dest || state.pipesCount > 1 && indexOf(state.pipes, dest) !== -1) && !cleanedUp) {
|
|
8056
|
-
debug('false write response, pause',
|
|
8057
|
-
|
|
8056
|
+
debug('false write response, pause', state.awaitDrain);
|
|
8057
|
+
state.awaitDrain++;
|
|
8058
8058
|
increasedAwaitDrain = true;
|
|
8059
8059
|
}
|
|
8060
8060
|
src.pause();
|
|
@@ -8148,7 +8148,7 @@ module.exports =
|
|
|
8148
8148
|
state.flowing = false;
|
|
8149
8149
|
|
|
8150
8150
|
for (var i = 0; i < len; i++) {
|
|
8151
|
-
dests[i].emit('unpipe', this,
|
|
8151
|
+
dests[i].emit('unpipe', this, { hasUnpiped: false });
|
|
8152
8152
|
}return this;
|
|
8153
8153
|
}
|
|
8154
8154
|
|
|
@@ -8947,7 +8947,6 @@ module.exports =
|
|
|
8947
8947
|
|
|
8948
8948
|
BufferList.prototype.concat = function concat(n) {
|
|
8949
8949
|
if (this.length === 0) return Buffer.alloc(0);
|
|
8950
|
-
if (this.length === 1) return this.head.data;
|
|
8951
8950
|
var ret = Buffer.allocUnsafe(n >>> 0);
|
|
8952
8951
|
var p = this.head;
|
|
8953
8952
|
var i = 0;
|
|
@@ -8996,9 +8995,15 @@ module.exports =
|
|
|
8996
8995
|
if (readableDestroyed || writableDestroyed) {
|
|
8997
8996
|
if (cb) {
|
|
8998
8997
|
cb(err);
|
|
8999
|
-
} else if (err
|
|
9000
|
-
|
|
8998
|
+
} else if (err) {
|
|
8999
|
+
if (!this._writableState) {
|
|
9000
|
+
pna.nextTick(emitErrorNT, this, err);
|
|
9001
|
+
} else if (!this._writableState.errorEmitted) {
|
|
9002
|
+
this._writableState.errorEmitted = true;
|
|
9003
|
+
pna.nextTick(emitErrorNT, this, err);
|
|
9004
|
+
}
|
|
9001
9005
|
}
|
|
9006
|
+
|
|
9002
9007
|
return this;
|
|
9003
9008
|
}
|
|
9004
9009
|
|
|
@@ -9016,9 +9021,11 @@ module.exports =
|
|
|
9016
9021
|
|
|
9017
9022
|
this._destroy(err || null, function (err) {
|
|
9018
9023
|
if (!cb && err) {
|
|
9019
|
-
|
|
9020
|
-
|
|
9024
|
+
if (!_this._writableState) {
|
|
9025
|
+
pna.nextTick(emitErrorNT, _this, err);
|
|
9026
|
+
} else if (!_this._writableState.errorEmitted) {
|
|
9021
9027
|
_this._writableState.errorEmitted = true;
|
|
9028
|
+
pna.nextTick(emitErrorNT, _this, err);
|
|
9022
9029
|
}
|
|
9023
9030
|
} else if (cb) {
|
|
9024
9031
|
cb(err);
|
|
@@ -9040,6 +9047,8 @@ module.exports =
|
|
|
9040
9047
|
this._writableState.destroyed = false;
|
|
9041
9048
|
this._writableState.ended = false;
|
|
9042
9049
|
this._writableState.ending = false;
|
|
9050
|
+
this._writableState.finalCalled = false;
|
|
9051
|
+
this._writableState.prefinished = false;
|
|
9043
9052
|
this._writableState.finished = false;
|
|
9044
9053
|
this._writableState.errorEmitted = false;
|
|
9045
9054
|
}
|
|
@@ -9277,7 +9286,7 @@ module.exports =
|
|
|
9277
9286
|
/*<replacement>*/
|
|
9278
9287
|
|
|
9279
9288
|
var Buffer = __webpack_require__(40).Buffer;
|
|
9280
|
-
var OurUint8Array = global.Uint8Array || function () {};
|
|
9289
|
+
var OurUint8Array = (typeof global !== 'undefined' ? global : typeof window !== 'undefined' ? window : typeof self !== 'undefined' ? self : {}).Uint8Array || function () {};
|
|
9281
9290
|
function _uint8ArrayToBuffer(chunk) {
|
|
9282
9291
|
return Buffer.from(chunk);
|
|
9283
9292
|
}
|
|
@@ -9545,7 +9554,7 @@ module.exports =
|
|
|
9545
9554
|
if (state.corked) {
|
|
9546
9555
|
state.corked--;
|
|
9547
9556
|
|
|
9548
|
-
if (!state.writing && !state.corked && !state.
|
|
9557
|
+
if (!state.writing && !state.corked && !state.bufferProcessing && state.bufferedRequest) clearBuffer(this, state);
|
|
9549
9558
|
}
|
|
9550
9559
|
};
|
|
9551
9560
|
|
|
@@ -9787,7 +9796,7 @@ module.exports =
|
|
|
9787
9796
|
}
|
|
9788
9797
|
|
|
9789
9798
|
// ignore unnecessary end() calls.
|
|
9790
|
-
if (!state.ending
|
|
9799
|
+
if (!state.ending) endWritable(this, state, cb);
|
|
9791
9800
|
};
|
|
9792
9801
|
|
|
9793
9802
|
function needFinish(state) {
|
|
@@ -9848,11 +9857,9 @@ module.exports =
|
|
|
9848
9857
|
cb(err);
|
|
9849
9858
|
entry = entry.next;
|
|
9850
9859
|
}
|
|
9851
|
-
|
|
9852
|
-
|
|
9853
|
-
|
|
9854
|
-
state.corkedRequestsFree = corkReq;
|
|
9855
|
-
}
|
|
9860
|
+
|
|
9861
|
+
// reuse the free corkReq.
|
|
9862
|
+
state.corkedRequestsFree.next = corkReq;
|
|
9856
9863
|
}
|
|
9857
9864
|
|
|
9858
9865
|
Object.defineProperty(Writable.prototype, 'destroyed', {
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
var warning = [
|
|
2
|
-
'
|
|
2
|
+
'We are formalizing our plans to enter AWS SDK for JavaScript (v2) into maintenance mode in 2023.\n',
|
|
3
3
|
'Please migrate your code to use AWS SDK for JavaScript (v3).',
|
|
4
4
|
'For more information, check the migration guide at https://a.co/7PzMCcy'
|
|
5
5
|
].join('\n');
|
package/package.json
CHANGED
|
@@ -53,10 +53,10 @@
|
|
|
53
53
|
"jest-junit": "^13",
|
|
54
54
|
"jsii": "^1.75.0",
|
|
55
55
|
"jsii-diff": "^1.75.0",
|
|
56
|
-
"jsii-docgen": "^7.1.
|
|
56
|
+
"jsii-docgen": "^7.1.6",
|
|
57
57
|
"jsii-pacmak": "^1.75.0",
|
|
58
58
|
"npm-check-updates": "^16",
|
|
59
|
-
"projen": "^0.67.
|
|
59
|
+
"projen": "^0.67.64",
|
|
60
60
|
"standard-version": "^9",
|
|
61
61
|
"ts-jest": "^27",
|
|
62
62
|
"typescript": "^4.9.5"
|
|
@@ -66,8 +66,8 @@
|
|
|
66
66
|
"constructs": "^10.0.5"
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
|
-
"@types/aws-lambda": "^8.10.
|
|
70
|
-
"aws-sdk": "^2.
|
|
69
|
+
"@types/aws-lambda": "^8.10.111",
|
|
70
|
+
"aws-sdk": "^2.1322.0"
|
|
71
71
|
},
|
|
72
72
|
"bundledDependencies": [
|
|
73
73
|
"@types/aws-lambda",
|
|
@@ -79,7 +79,7 @@
|
|
|
79
79
|
"main": "lib/index.js",
|
|
80
80
|
"license": "Apache-2.0",
|
|
81
81
|
"homepage": "https://github.com/cdklabs/cdk-docker-image-deployment#readme",
|
|
82
|
-
"version": "0.0.
|
|
82
|
+
"version": "0.0.174",
|
|
83
83
|
"jest": {
|
|
84
84
|
"testMatch": [
|
|
85
85
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|