ac-awssecrets 2.5.2 → 2.5.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.
- package/CHANGELOG.md +23 -0
- package/index.js +0 -2
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,4 +1,27 @@
|
|
|
1
1
|
|
|
2
|
+
## [2.5.4](https://github.com/admiralcloud/ac-awssecrets/compare/v2.5.3..v2.5.4) (2025-09-19 05:22:50)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fix
|
|
6
|
+
|
|
7
|
+
* **Misc:** Package updates | MP | [44f96c9eebb33334f19e9bc0238e078122b39006](https://github.com/admiralcloud/ac-awssecrets/commit/44f96c9eebb33334f19e9bc0238e078122b39006)
|
|
8
|
+
Package updates
|
|
9
|
+
Related issues:
|
|
10
|
+
|
|
11
|
+
## [2.5.3](https://github.com/admiralcloud/ac-awssecrets/compare/v2.5.2..v2.5.3) (2025-08-30 06:40:03)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fix
|
|
15
|
+
|
|
16
|
+
* **App:** Package updates | MP | [06bc398b8f846a141f8ac91951f7f88026f7b4df](https://github.com/admiralcloud/ac-awssecrets/commit/06bc398b8f846a141f8ac91951f7f88026f7b4df)
|
|
17
|
+
Package updates
|
|
18
|
+
Related issues:
|
|
19
|
+
### Documentation
|
|
20
|
+
|
|
21
|
+
* **App:** Removed comments | MP | [75973c33faf50264a9276a22c9a8e7e2800884f0](https://github.com/admiralcloud/ac-awssecrets/commit/75973c33faf50264a9276a22c9a8e7e2800884f0)
|
|
22
|
+
Removed comments
|
|
23
|
+
Related issues:
|
|
24
|
+
|
|
2
25
|
## [2.5.2](https://github.com/admiralcloud/ac-awssecrets/compare/v2.5.1..v2.5.2) (2025-05-20 05:42:15)
|
|
3
26
|
|
|
4
27
|
|
package/index.js
CHANGED
|
@@ -32,12 +32,10 @@ const awsSecrets = () => {
|
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
const deepMerge = (target, source) => {
|
|
35
|
-
// Wenn beide Arrays sind, entferne Duplikate mit Set
|
|
36
35
|
if (Array.isArray(target) && Array.isArray(source)) {
|
|
37
36
|
return [...new Set([...target, ...source])]
|
|
38
37
|
}
|
|
39
38
|
|
|
40
|
-
// Wenn beide Objekte sind (und nicht null)
|
|
41
39
|
if (typeof source === 'object' && source !== null && typeof target === 'object' && target !== null) {
|
|
42
40
|
const result = { ...target }
|
|
43
41
|
for (const key in source) {
|
package/package.json
CHANGED
|
@@ -3,17 +3,17 @@
|
|
|
3
3
|
"author": "Mark Poepping (https://www.admiralcloud.com)",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": "admiralcloud/ac-awssecrets",
|
|
6
|
-
"version": "2.5.
|
|
6
|
+
"version": "2.5.4",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@aws-sdk/client-secrets-manager": "^3.
|
|
9
|
-
"@aws-sdk/client-ssm": "^3.
|
|
8
|
+
"@aws-sdk/client-secrets-manager": "^3.940.0",
|
|
9
|
+
"@aws-sdk/client-ssm": "^3.940.0"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
|
-
"ac-semantic-release": "^0.4.
|
|
12
|
+
"ac-semantic-release": "^0.4.8",
|
|
13
13
|
"c8": "^10.1.3",
|
|
14
14
|
"chai": "^4.x",
|
|
15
15
|
"eslint": "9.x",
|
|
16
|
-
"mocha": "^11.
|
|
16
|
+
"mocha": "^11.7.5"
|
|
17
17
|
},
|
|
18
18
|
"scripts": {
|
|
19
19
|
"test": "NODE_ENV=test mocha --reporter spec --bail",
|