ac-awssecrets 2.3.2 → 2.3.3
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 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
<a name="2.3.3"></a>
|
|
2
|
+
|
|
3
|
+
## [2.3.3](https://github.com/admiralcloud/ac-awssecrets/compare/v2.3.2..v2.3.3) (2024-09-28 08:08:07)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fix
|
|
7
|
+
|
|
8
|
+
* **App:** Fixed debug mode | MP | [3571c4d7bbfb3e3459c526303939259d8f0d83ae](https://github.com/admiralcloud/ac-awssecrets/commit/3571c4d7bbfb3e3459c526303939259d8f0d83ae)
|
|
9
|
+
Fixed debug mode
|
|
10
|
+
Related issues: [undefined/undefined#master](undefined/browse/master)
|
|
11
|
+
### Chores
|
|
12
|
+
|
|
13
|
+
* **App:** Updated packages | MP | [8a0a5ff1ebb24d94d706257dd286ff0e8e90af5c](https://github.com/admiralcloud/ac-awssecrets/commit/8a0a5ff1ebb24d94d706257dd286ff0e8e90af5c)
|
|
14
|
+
Updated packages
|
|
15
|
+
Related issues: [undefined/undefined#master](undefined/browse/master)
|
|
1
16
|
<a name="2.3.2"></a>
|
|
2
17
|
|
|
3
18
|
## [2.3.2](https://github.com/admiralcloud/ac-awssecrets/compare/v2.3.1..v2.3.2) (2024-08-17 11:07:03)
|
package/index.js
CHANGED
|
@@ -126,6 +126,7 @@ const awsSecrets = () => {
|
|
|
126
126
|
|
|
127
127
|
for (const secretParameter of secretParameters) {
|
|
128
128
|
if (environment === 'test' && secretParameter?.ignoreInTestMode) continue
|
|
129
|
+
if (debug) secretParameter.debug = true
|
|
129
130
|
await getSecretParameter(secretParameter)
|
|
130
131
|
}
|
|
131
132
|
}
|
package/package.json
CHANGED
|
@@ -3,13 +3,13 @@
|
|
|
3
3
|
"author": "Mark Poepping (https://www.admiralcloud.com)",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": "admiralcloud/ac-awssecrets",
|
|
6
|
-
"version": "2.3.
|
|
6
|
+
"version": "2.3.3",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@aws-sdk/client-secrets-manager": "^3.
|
|
9
|
-
"@aws-sdk/client-ssm": "^3.
|
|
8
|
+
"@aws-sdk/client-secrets-manager": "^3.658.1",
|
|
9
|
+
"@aws-sdk/client-ssm": "^3.658.1"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
|
-
"ac-semantic-release": "^0.4.
|
|
12
|
+
"ac-semantic-release": "^0.4.3",
|
|
13
13
|
"c8": "^10.1.2",
|
|
14
14
|
"chai": "^4.x",
|
|
15
15
|
"eslint": "9.x",
|