@aws-sdk/credential-provider-env 3.25.0 → 3.32.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 +35 -0
  2. package/README.md +4 -15
  3. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -3,6 +3,41 @@
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.32.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.31.0...v3.32.0) (2021-09-17)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/credential-provider-env
9
+
10
+
11
+
12
+
13
+
14
+ # [3.29.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.28.0...v3.29.0) (2021-09-02)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/credential-provider-env
17
+
18
+
19
+
20
+
21
+
22
+ # [3.28.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.27.0...v3.28.0) (2021-08-27)
23
+
24
+ **Note:** Version bump only for package @aws-sdk/credential-provider-env
25
+
26
+
27
+
28
+
29
+
30
+ # [3.27.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.26.0...v3.27.0) (2021-08-19)
31
+
32
+
33
+ ### Features
34
+
35
+ * **credential-providers:** collect credential providers in single package ([#2672](https://github.com/aws/aws-sdk-js-v3/issues/2672)) ([5375c91](https://github.com/aws/aws-sdk-js-v3/commit/5375c91f8a4d2cac6918885843718f47ce82e5d5))
36
+
37
+
38
+
39
+
40
+
6
41
  # [3.25.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.24.0...v3.25.0) (2021-08-05)
7
42
 
8
43
  **Note:** Version bump only for package @aws-sdk/credential-provider-env
package/README.md CHANGED
@@ -3,20 +3,9 @@
3
3
  [![NPM version](https://img.shields.io/npm/v/@aws-sdk/credential-provider-env/latest.svg)](https://www.npmjs.com/package/@aws-sdk/credential-provider-env)
4
4
  [![NPM downloads](https://img.shields.io/npm/dm/@aws-sdk/credential-provider-env.svg)](https://www.npmjs.com/package/@aws-sdk/credential-provider-env)
5
5
 
6
- ## AWS Credential Provider for Node.JS - Environment Variables
6
+ > An internal package
7
7
 
8
- This module provides a `CredentialProvider` function, `fromEnv`, that reads from
9
- the following environment variables:
8
+ ## Usage
10
9
 
11
- - `AWS_ACCESS_KEY_ID` - The access key for your AWS account.
12
- - `AWS_SECRET_ACCESS_KEY` - The secret key for your AWS account.
13
- - `AWS_SESSION_TOKEN` - The session key for your AWS account. This is only
14
- needed when you are using temporary credentials.
15
- - `AWS_CREDENTIAL_EXPIRATION` - The expiration time of the credentials contained
16
- in the environment variables described above. This value must be in a format
17
- compatible with the [ISO-8601 standard](https://en.wikipedia.org/wiki/ISO_8601)
18
- and is only needed when you are using temporary credentials.
19
-
20
- If either the `AWS_ACCESS_KEY_ID` or `AWS_SECRET_ACCESS_KEY` environment
21
- variable is not set or contains a falsy value, the promise returned by the
22
- `fromEnv` function will be rejected.
10
+ You probably shouldn't, at least directly. Please use [@aws-sdk/credential-providers](https://www.npmjs.com/package/@aws-sdk/credential-providers)
11
+ instead.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-env",
3
- "version": "3.25.0",
3
+ "version": "3.32.0",
4
4
  "description": "AWS credential provider that sources credentials from known environment variables",
5
5
  "main": "./dist/cjs/index.js",
6
6
  "module": "./dist/es/index.js",
@@ -21,15 +21,15 @@
21
21
  },
22
22
  "license": "Apache-2.0",
23
23
  "dependencies": {
24
- "@aws-sdk/property-provider": "3.25.0",
25
- "@aws-sdk/types": "3.25.0",
24
+ "@aws-sdk/property-provider": "3.32.0",
25
+ "@aws-sdk/types": "3.32.0",
26
26
  "tslib": "^2.3.0"
27
27
  },
28
28
  "devDependencies": {
29
29
  "@types/jest": "^26.0.4",
30
30
  "@types/node": "^10.0.0",
31
31
  "jest": "^26.1.0",
32
- "typescript": "~4.3.2"
32
+ "typescript": "~4.3.5"
33
33
  },
34
34
  "types": "./dist/types/index.d.ts",
35
35
  "engines": {