ac-awssecrets 2.0.5 → 2.1.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 +15 -0
- package/index.js +1 -3
- package/package.json +5 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
<a name="2.1.0"></a>
|
|
2
|
+
|
|
3
|
+
# [2.1.0](https://github.com/admiralcloud/ac-awssecrets/compare/v2.0.5..v2.1.0) (2023-12-31 14:46:52)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Feature
|
|
7
|
+
|
|
8
|
+
* **App:** Do not use custom credentialprovider | MP | [9556a0fb87e15c8d1242585373a706853384d796](https://github.com/admiralcloud/ac-awssecrets/commit/9556a0fb87e15c8d1242585373a706853384d796)
|
|
9
|
+
It does not seem to speed up the process to use custom credential provider. It can also create compatibility issues
|
|
10
|
+
Related issues: [undefined/undefined#develop](undefined/browse/develop)
|
|
11
|
+
### Chores
|
|
12
|
+
|
|
13
|
+
* **App:** Updated packages | MP | [cd5c172c2ed8169f5927c4a7e6562b7a5a9b5899](https://github.com/admiralcloud/ac-awssecrets/commit/cd5c172c2ed8169f5927c4a7e6562b7a5a9b5899)
|
|
14
|
+
Updated packages
|
|
15
|
+
Related issues: [undefined/undefined#develop](undefined/browse/develop)
|
|
1
16
|
<a name="2.0.5"></a>
|
|
2
17
|
|
|
3
18
|
## [2.0.5](https://github.com/admiralcloud/ac-awssecrets/compare/v2.0.4..v2.0.5) (2023-06-24 09:11:54)
|
package/index.js
CHANGED
|
@@ -1,5 +1,4 @@
|
|
|
1
1
|
const { SecretsManagerClient, GetSecretValueCommand } = require('@aws-sdk/client-secrets-manager')
|
|
2
|
-
const customCredentialProvider = require('ac-aws-customcredentialprovider')
|
|
3
2
|
|
|
4
3
|
const testConfig = require('./test/config');
|
|
5
4
|
|
|
@@ -36,8 +35,7 @@ const awsSecrets = () => {
|
|
|
36
35
|
const environment = config?.environment || 'development'
|
|
37
36
|
|
|
38
37
|
const awsConfig = {
|
|
39
|
-
region: 'eu-central-1'
|
|
40
|
-
credentials: customCredentialProvider({ localDevelopment: config.localDevelopment, debug })
|
|
38
|
+
region: 'eu-central-1'
|
|
41
39
|
}
|
|
42
40
|
const client = new SecretsManagerClient(awsConfig)
|
|
43
41
|
|
package/package.json
CHANGED
|
@@ -3,15 +3,14 @@
|
|
|
3
3
|
"author": "Mark Poepping (https://www.admiralcloud.com)",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": "admiralcloud/ac-awssecrets",
|
|
6
|
-
"version": "2.0
|
|
6
|
+
"version": "2.1.0",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@aws-sdk/client-secrets-manager": "^3.
|
|
9
|
-
"ac-aws-customcredentialprovider": "^0.1.3"
|
|
8
|
+
"@aws-sdk/client-secrets-manager": "^3.484.0"
|
|
10
9
|
},
|
|
11
10
|
"devDependencies": {
|
|
12
|
-
"ac-semantic-release": "^0.4.
|
|
13
|
-
"c8": "^8.0.
|
|
14
|
-
"chai": "^4.3.
|
|
11
|
+
"ac-semantic-release": "^0.4.2",
|
|
12
|
+
"c8": "^8.0.1",
|
|
13
|
+
"chai": "^4.3.8",
|
|
15
14
|
"eslint": "8.x",
|
|
16
15
|
"mocha": "^10.2.0"
|
|
17
16
|
},
|