@aws-sdk/core 3.592.0 → 3.609.0
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.
|
@@ -28,8 +28,17 @@ module.exports = __toCommonJS(client_exports);
|
|
|
28
28
|
// src/submodules/client/emitWarningIfUnsupportedVersion.ts
|
|
29
29
|
var warningEmitted = false;
|
|
30
30
|
var emitWarningIfUnsupportedVersion = /* @__PURE__ */ __name((version) => {
|
|
31
|
-
if (version && !warningEmitted && parseInt(version.substring(1, version.indexOf("."))) <
|
|
31
|
+
if (version && !warningEmitted && parseInt(version.substring(1, version.indexOf("."))) < 18) {
|
|
32
32
|
warningEmitted = true;
|
|
33
|
+
process.emitWarning(
|
|
34
|
+
`NodeDeprecationWarning: The AWS SDK for JavaScript (v3) will
|
|
35
|
+
no longer support Node.js 16.x on January 6, 2025.
|
|
36
|
+
|
|
37
|
+
To continue receiving updates to AWS services, bug fixes, and security
|
|
38
|
+
updates please upgrade to a supported Node.js LTS version.
|
|
39
|
+
|
|
40
|
+
More information can be found at: https://a.co/74kJMmI`
|
|
41
|
+
);
|
|
33
42
|
}
|
|
34
43
|
}, "emitWarningIfUnsupportedVersion");
|
|
35
44
|
// Annotate the CommonJS export names for ESM import in node:
|
|
@@ -1,6 +1,13 @@
|
|
|
1
1
|
let warningEmitted = false;
|
|
2
2
|
export const emitWarningIfUnsupportedVersion = (version) => {
|
|
3
|
-
if (version && !warningEmitted && parseInt(version.substring(1, version.indexOf("."))) <
|
|
3
|
+
if (version && !warningEmitted && parseInt(version.substring(1, version.indexOf("."))) < 18) {
|
|
4
4
|
warningEmitted = true;
|
|
5
|
+
process.emitWarning(`NodeDeprecationWarning: The AWS SDK for JavaScript (v3) will
|
|
6
|
+
no longer support Node.js 16.x on January 6, 2025.
|
|
7
|
+
|
|
8
|
+
To continue receiving updates to AWS services, bug fixes, and security
|
|
9
|
+
updates please upgrade to a supported Node.js LTS version.
|
|
10
|
+
|
|
11
|
+
More information can be found at: https://a.co/74kJMmI`);
|
|
5
12
|
}
|
|
6
13
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/core",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.609.0",
|
|
4
4
|
"description": "Core functions & classes shared by multiple AWS SDK clients",
|
|
5
5
|
"scripts": {
|
|
6
6
|
"build": "yarn lint && concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
|
|
@@ -67,11 +67,11 @@
|
|
|
67
67
|
},
|
|
68
68
|
"license": "Apache-2.0",
|
|
69
69
|
"dependencies": {
|
|
70
|
-
"@smithy/core": "^2.2.
|
|
71
|
-
"@smithy/protocol-http": "^4.0.
|
|
72
|
-
"@smithy/signature-v4": "^3.
|
|
73
|
-
"@smithy/smithy-client": "^3.1.
|
|
74
|
-
"@smithy/types": "^3.
|
|
70
|
+
"@smithy/core": "^2.2.4",
|
|
71
|
+
"@smithy/protocol-http": "^4.0.3",
|
|
72
|
+
"@smithy/signature-v4": "^3.1.2",
|
|
73
|
+
"@smithy/smithy-client": "^3.1.5",
|
|
74
|
+
"@smithy/types": "^3.3.0",
|
|
75
75
|
"fast-xml-parser": "4.2.5",
|
|
76
76
|
"tslib": "^2.6.2"
|
|
77
77
|
},
|