ac-awssecrets 2.0.2 → 2.0.4

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 +20 -0
  2. package/index.js +1 -1
  3. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,3 +1,23 @@
1
+ <a name="2.0.4"></a>
2
+
3
+ ## [2.0.4](https://github.com/admiralcloud/ac-awssecrets/compare/v2.0.3..v2.0.4) (2023-05-14 17:20:29)
4
+
5
+
6
+ ### Bug Fix
7
+
8
+ * **App:** Updated packages | MP | [08793a00613df9b02db393cc41a83f02bf9d39d9](https://github.com/admiralcloud/ac-awssecrets/commit/08793a00613df9b02db393cc41a83f02bf9d39d9)
9
+ Updated packages
10
+ Related issues: [undefined/undefined#develop](undefined/browse/develop)
11
+ <a name="2.0.3"></a>
12
+
13
+ ## [2.0.3](https://github.com/admiralcloud/ac-awssecrets/compare/v2.0.2..v2.0.3) (2023-05-14 14:29:50)
14
+
15
+
16
+ ### Bug Fix
17
+
18
+ * **App:** Typo fix | MP | [c370bd159b05051d81ba267f4b327e5a34560ef8](https://github.com/admiralcloud/ac-awssecrets/commit/c370bd159b05051d81ba267f4b327e5a34560ef8)
19
+ Typo fix
20
+ Related issues: [/issues#undefined](https://github.com//issues/undefined)
1
21
  <a name="2.0.2"></a>
2
22
 
3
23
  ## [2.0.2](https://github.com/admiralcloud/ac-awssecrets/compare/v2.0.1..v2.0.2) (2023-05-14 14:26:17)
package/index.js CHANGED
@@ -37,7 +37,7 @@ const awsSecrets = () => {
37
37
 
38
38
  const awsConfig = {
39
39
  region: 'eu-central-1',
40
- credentials: customCredentialProvider({ localDevelopment: config.localDevelopment, debug: true })
40
+ credentials: customCredentialProvider({ localDevelopment: config.localDevelopment, debug })
41
41
  }
42
42
  const client = new SecretsManagerClient(awsConfig)
43
43
 
package/package.json CHANGED
@@ -3,10 +3,10 @@
3
3
  "author": "Mark Poepping (https://www.admiralcloud.com)",
4
4
  "license": "MIT",
5
5
  "repository": "admiralcloud/ac-awssecrets",
6
- "version": "2.0.2",
6
+ "version": "2.0.4",
7
7
  "dependencies": {
8
8
  "@aws-sdk/client-secrets-manager": "^3.332.0",
9
- "ac-aws-customcredentialprovider": "^0.1.0"
9
+ "ac-aws-customcredentialprovider": "^0.1.2"
10
10
  },
11
11
  "devDependencies": {
12
12
  "ac-semantic-release": "^0.4.1",