cdk-docker-image-deployment 0.0.162 → 0.0.164
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/account-2021-02-01.min.json +110 -19
- package/node_modules/aws-sdk/apis/account-2021-02-01.paginators.json +5 -0
- package/node_modules/aws-sdk/apis/appconfigdata-2021-11-11.min.json +4 -0
- package/node_modules/aws-sdk/apis/snowball-2016-06-30.min.json +87 -24
- package/node_modules/aws-sdk/clients/account.d.ts +117 -0
- package/node_modules/aws-sdk/clients/appconfigdata.d.ts +14 -10
- package/node_modules/aws-sdk/clients/snowball.d.ts +81 -4
- package/node_modules/aws-sdk/dist/aws-sdk-core-react-native.js +40 -1
- package/node_modules/aws-sdk/dist/aws-sdk-react-native.js +44 -5
- package/node_modules/aws-sdk/dist/aws-sdk.js +156 -120
- package/node_modules/aws-sdk/dist/aws-sdk.min.js +13 -13
- package/node_modules/aws-sdk/lib/core.js +2 -1
- package/node_modules/aws-sdk/lib/maintenance_mode_message.js +31 -0
- package/node_modules/aws-sdk/package.json +1 -1
- package/package.json +5 -5
|
@@ -20,7 +20,7 @@ AWS.util.update(AWS, {
|
|
|
20
20
|
/**
|
|
21
21
|
* @constant
|
|
22
22
|
*/
|
|
23
|
-
VERSION: '2.
|
|
23
|
+
VERSION: '2.1314.0',
|
|
24
24
|
|
|
25
25
|
/**
|
|
26
26
|
* @api private
|
|
@@ -85,6 +85,7 @@ require('./response');
|
|
|
85
85
|
require('./resource_waiter');
|
|
86
86
|
require('./signers/request_signer');
|
|
87
87
|
require('./param_validator');
|
|
88
|
+
require('./maintenance_mode_message');
|
|
88
89
|
|
|
89
90
|
/**
|
|
90
91
|
* @readonly
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
var warning = [
|
|
2
|
+
'The AWS SDK for JavaScript (v2) will be put into maintenance mode in 2023.\n',
|
|
3
|
+
'Please migrate your code to use AWS SDK for JavaScript (v3).',
|
|
4
|
+
'For more information, check the migration guide at https://a.co/7PzMCcy'
|
|
5
|
+
].join('\n');
|
|
6
|
+
|
|
7
|
+
module.exports = {
|
|
8
|
+
suppress: false
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
/**
|
|
12
|
+
* To suppress this message:
|
|
13
|
+
* @example
|
|
14
|
+
* require('aws-sdk/lib/maintenance_mode_message').suppress = true;
|
|
15
|
+
*/
|
|
16
|
+
function emitWarning() {
|
|
17
|
+
if (
|
|
18
|
+
typeof process !== 'undefined' &&
|
|
19
|
+
typeof process.emitWarning === 'function'
|
|
20
|
+
) {
|
|
21
|
+
process.emitWarning(warning, {
|
|
22
|
+
type: 'NOTE'
|
|
23
|
+
});
|
|
24
|
+
}
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
setTimeout(function () {
|
|
28
|
+
if (!module.exports.suppress) {
|
|
29
|
+
emitWarning();
|
|
30
|
+
}
|
|
31
|
+
}, 0);
|
package/package.json
CHANGED
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"@typescript-eslint/parser": "^5",
|
|
45
45
|
"aws-cdk-lib": "2.24.0",
|
|
46
46
|
"constructs": "10.0.5",
|
|
47
|
-
"esbuild": "^0.17.
|
|
47
|
+
"esbuild": "^0.17.8",
|
|
48
48
|
"eslint": "^8",
|
|
49
49
|
"eslint-import-resolver-node": "^0.3.7",
|
|
50
50
|
"eslint-import-resolver-typescript": "^3.5.3",
|
|
@@ -53,10 +53,10 @@
|
|
|
53
53
|
"jest-junit": "^13",
|
|
54
54
|
"jsii": "^1.74.0",
|
|
55
55
|
"jsii-diff": "^1.74.0",
|
|
56
|
-
"jsii-docgen": "^7.0.
|
|
56
|
+
"jsii-docgen": "^7.0.232",
|
|
57
57
|
"jsii-pacmak": "^1.74.0",
|
|
58
58
|
"npm-check-updates": "^16",
|
|
59
|
-
"projen": "^0.67.
|
|
59
|
+
"projen": "^0.67.50",
|
|
60
60
|
"standard-version": "^9",
|
|
61
61
|
"ts-jest": "^27",
|
|
62
62
|
"typescript": "^4.9.5"
|
|
@@ -67,7 +67,7 @@
|
|
|
67
67
|
},
|
|
68
68
|
"dependencies": {
|
|
69
69
|
"@types/aws-lambda": "^8.10.110",
|
|
70
|
-
"aws-sdk": "^2.
|
|
70
|
+
"aws-sdk": "^2.1314.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.164",
|
|
83
83
|
"jest": {
|
|
84
84
|
"testMatch": [
|
|
85
85
|
"<rootDir>/src/**/__tests__/**/*.ts?(x)",
|