@aws-sdk/credential-provider-env 3.47.0 → 3.50.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/CHANGELOG.md CHANGED
@@ -3,6 +3,38 @@
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.50.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.49.0...v3.50.0) (2022-02-08)
7
+
8
+ **Note:** Version bump only for package @aws-sdk/credential-provider-env
9
+
10
+
11
+
12
+
13
+
14
+ # [3.49.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.48.0...v3.49.0) (2022-01-29)
15
+
16
+ **Note:** Version bump only for package @aws-sdk/credential-provider-env
17
+
18
+
19
+
20
+
21
+
22
+ ## [3.47.2](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.1...v3.47.2) (2022-01-21)
23
+
24
+ **Note:** Version bump only for package @aws-sdk/credential-provider-env
25
+
26
+
27
+
28
+
29
+
30
+ ## [3.47.1](https://github.com/aws/aws-sdk-js-v3/compare/v3.47.0-release-test-1...v3.47.1) (2022-01-20)
31
+
32
+ **Note:** Version bump only for package @aws-sdk/credential-provider-env
33
+
34
+
35
+
36
+
37
+
6
38
  # [3.47.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.46.0...v3.47.0) (2022-01-15)
7
39
 
8
40
  **Note:** Version bump only for package @aws-sdk/credential-provider-env
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-env",
3
- "version": "3.47.0",
3
+ "version": "3.50.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",
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",
@@ -23,12 +23,18 @@
23
23
  },
24
24
  "license": "Apache-2.0",
25
25
  "dependencies": {
26
- "@aws-sdk/property-provider": "3.47.0",
27
- "@aws-sdk/types": "3.47.0",
26
+ "@aws-sdk/property-provider": "3.50.0",
27
+ "@aws-sdk/types": "3.50.0",
28
28
  "tslib": "^2.3.0"
29
29
  },
30
30
  "devDependencies": {
31
- "@types/node": "^10.0.0"
31
+ "@tsconfig/recommended": "1.0.1",
32
+ "@types/node": "^10.0.0",
33
+ "concurrently": "7.0.0",
34
+ "downlevel-dts": "0.7.0",
35
+ "rimraf": "3.0.2",
36
+ "typedoc": "0.19.2",
37
+ "typescript": "~4.3.5"
32
38
  },
33
39
  "types": "./dist-types/index.d.ts",
34
40
  "engines": {
@@ -1,7 +0,0 @@
1
- import { CredentialProvider } from "@aws-sdk/types";
2
- export declare const ENV_KEY = "AWS_ACCESS_KEY_ID";
3
- export declare const ENV_SECRET = "AWS_SECRET_ACCESS_KEY";
4
- export declare const ENV_SESSION = "AWS_SESSION_TOKEN";
5
- export declare const ENV_EXPIRATION = "AWS_CREDENTIAL_EXPIRATION";
6
-
7
- export declare function fromEnv(): CredentialProvider;