@aws-sdk/signature-v4-crt 3.433.0 → 3.437.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.
package/README.md CHANGED
@@ -5,3 +5,5 @@
5
5
 
6
6
  This package contains native modules that only executable in Node.js runtime.
7
7
  Please refer to [this issue](https://github.com/aws/aws-sdk-js-v3/issues/2822) for more information.
8
+
9
+ See also https://github.com/aws/aws-sdk-js-v3/tree/main#functionality-requiring-aws-common-runtime-crt.
package/dist-cjs/index.js CHANGED
@@ -2,6 +2,8 @@
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const tslib_1 = require("tslib");
4
4
  const signature_v4_multi_region_1 = require("@aws-sdk/signature-v4-multi-region");
5
+ const util_user_agent_node_1 = require("@aws-sdk/util-user-agent-node");
5
6
  const CrtSignerV4_1 = require("./CrtSignerV4");
6
7
  signature_v4_multi_region_1.signatureV4CrtContainer.CrtSignerV4 = CrtSignerV4_1.CrtSignerV4;
8
+ util_user_agent_node_1.crtAvailability.isCrtAvailable = true;
7
9
  tslib_1.__exportStar(require("./CrtSignerV4"), exports);
package/dist-es/index.js CHANGED
@@ -1,4 +1,6 @@
1
1
  import { signatureV4CrtContainer } from "@aws-sdk/signature-v4-multi-region";
2
+ import { crtAvailability } from "@aws-sdk/util-user-agent-node";
2
3
  import { CrtSignerV4 } from "./CrtSignerV4";
3
4
  signatureV4CrtContainer.CrtSignerV4 = CrtSignerV4;
5
+ crtAvailability.isCrtAvailable = true;
4
6
  export * from "./CrtSignerV4";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/signature-v4-crt",
3
- "version": "3.433.0",
3
+ "version": "3.437.0",
4
4
  "description": "A revision of AWS Signature V4 request signer based on AWS Common Runtime https://github.com/awslabs/aws-crt-nodejs",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
@@ -22,7 +22,8 @@
22
22
  },
23
23
  "license": "Apache-2.0",
24
24
  "dependencies": {
25
- "@aws-sdk/signature-v4-multi-region": "3.433.0",
25
+ "@aws-sdk/signature-v4-multi-region": "3.437.0",
26
+ "@aws-sdk/util-user-agent-node": "3.437.0",
26
27
  "@smithy/querystring-parser": "^2.0.0",
27
28
  "@smithy/signature-v4": "^2.0.0",
28
29
  "@smithy/types": "^2.4.0",