@aws-sdk/signature-v4-crt 3.40.0 → 3.47.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/README.md +3 -0
  3. package/package.json +12 -14
package/CHANGELOG.md CHANGED
@@ -3,6 +3,44 @@
3
3
  All notable changes to this project will be documented in this file.
4
4
  See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
5
 
6
+ # [3.47.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.46.0...v3.47.0) (2022-01-15)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/signature-v4-crt
9
+
10
+
11
+
12
+
13
+
14
+ # [3.46.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.45.0...v3.46.0) (2022-01-07)
15
+
16
+
17
+ ### Features
18
+
19
+ * **packages:** end support for Node.js 10.x ([#3141](https://github.com/aws/aws-sdk-js-v3/issues/3141)) ([1a62865](https://github.com/aws/aws-sdk-js-v3/commit/1a6286513f7cdb556708845c512861c5f92eb883))
20
+
21
+
22
+
23
+
24
+
25
+ # [3.45.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.44.0...v3.45.0) (2021-12-23)
26
+
27
+ **Note:** Version bump only for package @aws-sdk/signature-v4-crt
28
+
29
+
30
+
31
+
32
+
33
+ # [3.41.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.40.1...v3.41.0) (2021-11-11)
34
+
35
+
36
+ ### Bug Fixes
37
+
38
+ * **signature-v4-crt:** notify this package is node.js only ([#3009](https://github.com/aws/aws-sdk-js-v3/issues/3009)) ([39e758c](https://github.com/aws/aws-sdk-js-v3/commit/39e758cc986aec660c119c6e8aa14a704d141a4c))
39
+
40
+
41
+
42
+
43
+
6
44
  # [3.40.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.39.0...v3.40.0) (2021-11-05)
7
45
 
8
46
  **Note:** Version bump only for package @aws-sdk/signature-v4-crt
package/README.md CHANGED
@@ -2,3 +2,6 @@
2
2
 
3
3
  [![NPM version](https://img.shields.io/npm/v/@aws-sdk/signature-v4-crt/latest.svg)](https://www.npmjs.com/package/@aws-sdk/signature-v4-crt)
4
4
  [![NPM downloads](https://img.shields.io/npm/dm/@aws-sdk/signature-v4-crt.svg)](https://www.npmjs.com/package/@aws-sdk/signature-v4-crt)
5
+
6
+ This package contains native modules that only executable in Node.js runtime.
7
+ Please refer to [this issue](https://github.com/aws/aws-sdk-js-v3/issues/2822) for more information.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/signature-v4-crt",
3
- "version": "3.40.0",
3
+ "version": "3.47.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",
@@ -10,7 +10,8 @@
10
10
  "build:cjs": "tsc -p tsconfig.cjs.json",
11
11
  "build:es": "tsc -p tsconfig.es.json",
12
12
  "build:types": "tsc -p tsconfig.types.json",
13
- "downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
13
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
14
+ "clean": "rimraf ./dist-*",
14
15
  "test": "jest --coverage"
15
16
  },
16
17
  "author": {
@@ -19,25 +20,22 @@
19
20
  },
20
21
  "license": "Apache-2.0",
21
22
  "dependencies": {
22
- "@aws-sdk/is-array-buffer": "3.37.0",
23
- "@aws-sdk/querystring-parser": "3.40.0",
24
- "@aws-sdk/signature-v4": "3.40.0",
25
- "@aws-sdk/util-hex-encoding": "3.37.0",
26
- "@aws-sdk/util-uri-escape": "3.37.0",
23
+ "@aws-sdk/is-array-buffer": "3.47.0",
24
+ "@aws-sdk/querystring-parser": "3.47.0",
25
+ "@aws-sdk/signature-v4": "3.47.0",
26
+ "@aws-sdk/util-hex-encoding": "3.47.0",
27
+ "@aws-sdk/util-uri-escape": "3.47.0",
27
28
  "aws-crt": "^1.9.7",
28
29
  "tslib": "^2.3.0"
29
30
  },
30
31
  "devDependencies": {
31
32
  "@aws-crypto/sha256-js": "2.0.0",
32
- "@aws-sdk/protocol-http": "3.40.0",
33
- "@aws-sdk/types": "3.40.0",
34
- "@aws-sdk/util-buffer-from": "3.37.0",
35
- "@types/jest": "^26.0.4",
36
- "jest": "^26.1.0",
37
- "typescript": "~4.3.5"
33
+ "@aws-sdk/protocol-http": "3.47.0",
34
+ "@aws-sdk/types": "3.47.0",
35
+ "@aws-sdk/util-buffer-from": "3.47.0"
38
36
  },
39
37
  "engines": {
40
- "node": ">= 10.0.0"
38
+ "node": ">= 12.0.0"
41
39
  },
42
40
  "files": [
43
41
  "dist-*"