@aws-sdk/credential-provider-process 3.36.0 → 3.46.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 +35 -0
- package/dist-types/ts3.4/index.d.ts +2 -7
- package/package.json +8 -11
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.46.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.45.0...v3.46.0) (2022-01-07)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* **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))
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
# [3.40.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.39.0...v3.40.0) (2021-11-05)
|
|
18
|
+
|
|
19
|
+
**Note:** Version bump only for package @aws-sdk/credential-provider-process
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
# [3.38.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.37.0...v3.38.0) (2021-10-22)
|
|
26
|
+
|
|
27
|
+
**Note:** Version bump only for package @aws-sdk/credential-provider-process
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
# [3.37.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.36.1...v3.37.0) (2021-10-15)
|
|
34
|
+
|
|
35
|
+
**Note:** Version bump only for package @aws-sdk/credential-provider-process
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
|
|
6
41
|
# [3.36.0](https://github.com/aws/aws-sdk-js-v3/compare/v3.35.0...v3.36.0) (2021-10-08)
|
|
7
42
|
|
|
8
43
|
|
|
@@ -1,13 +1,8 @@
|
|
|
1
1
|
import { CredentialProvider } from "@aws-sdk/types";
|
|
2
2
|
import { SourceProfileInit } from "@aws-sdk/util-credentials";
|
|
3
|
-
|
|
4
|
-
* @internal
|
|
5
|
-
*/
|
|
3
|
+
|
|
6
4
|
export declare const ENV_PROFILE = "AWS_PROFILE";
|
|
7
5
|
export interface FromProcessInit extends SourceProfileInit {
|
|
8
6
|
}
|
|
9
|
-
|
|
10
|
-
* Creates a credential provider that will read from a credential_process specified
|
|
11
|
-
* in ini files.
|
|
12
|
-
*/
|
|
7
|
+
|
|
13
8
|
export declare const fromProcess: (init?: FromProcessInit) => CredentialProvider;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@aws-sdk/credential-provider-process",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.46.0",
|
|
4
4
|
"description": "AWS credential provider that sources credential_process from ~/.aws/credentials and ~/.aws/config",
|
|
5
5
|
"main": "./dist-cjs/index.js",
|
|
6
6
|
"module": "./dist-es/index.js",
|
|
@@ -9,7 +9,7 @@
|
|
|
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
|
|
12
|
+
"build:types:downlevel": "downlevel-dts dist-types dist-types/ts3.4",
|
|
13
13
|
"test": "jest"
|
|
14
14
|
},
|
|
15
15
|
"keywords": [
|
|
@@ -22,21 +22,18 @@
|
|
|
22
22
|
},
|
|
23
23
|
"license": "Apache-2.0",
|
|
24
24
|
"dependencies": {
|
|
25
|
-
"@aws-sdk/property-provider": "3.
|
|
26
|
-
"@aws-sdk/shared-ini-file-loader": "3.
|
|
27
|
-
"@aws-sdk/types": "3.
|
|
28
|
-
"@aws-sdk/util-credentials": "3.
|
|
25
|
+
"@aws-sdk/property-provider": "3.46.0",
|
|
26
|
+
"@aws-sdk/shared-ini-file-loader": "3.46.0",
|
|
27
|
+
"@aws-sdk/types": "3.46.0",
|
|
28
|
+
"@aws-sdk/util-credentials": "3.46.0",
|
|
29
29
|
"tslib": "^2.3.0"
|
|
30
30
|
},
|
|
31
31
|
"devDependencies": {
|
|
32
|
-
"@types/
|
|
33
|
-
"@types/node": "^10.0.0",
|
|
34
|
-
"jest": "^26.1.0",
|
|
35
|
-
"typescript": "~4.3.5"
|
|
32
|
+
"@types/node": "^10.0.0"
|
|
36
33
|
},
|
|
37
34
|
"types": "./dist-types/index.d.ts",
|
|
38
35
|
"engines": {
|
|
39
|
-
"node": ">=
|
|
36
|
+
"node": ">= 12.0.0"
|
|
40
37
|
},
|
|
41
38
|
"typesVersions": {
|
|
42
39
|
"<4.0": {
|