@aws-sdk/credential-provider-web-identity 3.40.0 → 3.47.1

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 (2) hide show
  1. package/CHANGELOG.md +38 -0
  2. package/package.json +16 -10
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.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.0-release-test-1...v3.47.1) (2022-01-20)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/credential-provider-web-identity
9
+
10
+
11
+
12
+
13
+
14
+ # [3.47.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.46.0...v3.47.0) (2022-01-15)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/credential-provider-web-identity
17
+
18
+
19
+
20
+
21
+
22
+ # [3.46.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.45.0...v3.46.0) (2022-01-07)
23
+
24
+
25
+ ### Features
26
+
27
+ * **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))
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
+ * **credential-provider-web-identity:** exclude node.js code from browser bundle ([#3005](https://github.com/aws/aws-sdk-js-v3/issues/3005)) ([7ba033a](https://github.com/aws/aws-sdk-js-v3/commit/7ba033a37058c6697edb004180dc046a2298e9aa))
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/credential-provider-web-identity
package/package.json CHANGED
@@ -1,17 +1,26 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-web-identity",
3
- "version": "3.40.0",
3
+ "version": "3.47.1",
4
4
  "description": "AWS credential provider that calls STS assumeRole for temporary AWS credentials",
5
5
  "main": "./dist-cjs/index.js",
6
6
  "module": "./dist-es/index.js",
7
7
  "scripts": {
8
- "build": "yarn build:cjs && yarn build:es && yarn build:types",
8
+ "build": "concurrently 'yarn:build:cjs' 'yarn:build:es' 'yarn:build:types'",
9
9
  "build:cjs": "tsc -p tsconfig.cjs.json",
10
10
  "build:es": "tsc -p tsconfig.es.json",
11
11
  "build:types": "tsc -p tsconfig.types.json",
12
- "downlevel-dts": "downlevel-dts dist-types dist-types/ts3.4",
12
+ "build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
13
+ "clean": "rimraf ./dist-*",
13
14
  "test": "jest"
14
15
  },
16
+ "browser": {
17
+ "./dist-es/fromTokenFile": false,
18
+ "./dist-cjs/fromTokenFile": false
19
+ },
20
+ "react-native": {
21
+ "./dist-es/fromTokenFile": false,
22
+ "./dist-cjs/fromTokenFile": false
23
+ },
15
24
  "keywords": [
16
25
  "aws",
17
26
  "credentials"
@@ -22,19 +31,16 @@
22
31
  },
23
32
  "license": "Apache-2.0",
24
33
  "dependencies": {
25
- "@aws-sdk/property-provider": "3.40.0",
26
- "@aws-sdk/types": "3.40.0",
34
+ "@aws-sdk/property-provider": "3.47.1",
35
+ "@aws-sdk/types": "3.47.1",
27
36
  "tslib": "^2.3.0"
28
37
  },
29
38
  "devDependencies": {
30
- "@types/jest": "^26.0.4",
31
- "@types/node": "^10.0.0",
32
- "jest": "^26.1.0",
33
- "typescript": "~4.3.5"
39
+ "@types/node": "^10.0.0"
34
40
  },
35
41
  "types": "./dist-types/index.d.ts",
36
42
  "engines": {
37
- "node": ">= 10.0.0"
43
+ "node": ">= 12.0.0"
38
44
  },
39
45
  "typesVersions": {
40
46
  "<4.0": {