ac-awssecrets 3.0.5 → 3.0.7
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/.github/workflows/node.js.yml +3 -3
- package/CHANGELOG.md +23 -0
- package/README.md +1 -1
- package/package.json +5 -5
|
@@ -20,13 +20,13 @@ jobs:
|
|
|
20
20
|
|
|
21
21
|
strategy:
|
|
22
22
|
matrix:
|
|
23
|
-
node-version: [
|
|
23
|
+
node-version: [22.x, 24.x]
|
|
24
24
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
|
25
25
|
|
|
26
26
|
steps:
|
|
27
|
-
- uses: actions/checkout@
|
|
27
|
+
- uses: actions/checkout@v5
|
|
28
28
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
29
|
-
uses: actions/setup-node@
|
|
29
|
+
uses: actions/setup-node@v5
|
|
30
30
|
with:
|
|
31
31
|
node-version: ${{ matrix.node-version }}
|
|
32
32
|
- run: yarn install
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
## [3.0.7](https://github.com/admiralcloud/ac-awssecrets/compare/v3.0.6..v3.0.7) (2026-04-17 07:52:38)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fix
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
* **App:** Package updates | MP | [94dd44253a2f7dfdd9b12397db63739e23d33007](https://github.com/admiralcloud/ac-awssecrets/commit/94dd44253a2f7dfdd9b12397db63739e23d33007)
|
|
8
|
+
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
|
9
|
+
## [3.0.6](https://github.com/admiralcloud/ac-awssecrets/compare/v3.0.5..v3.0.6) (2026-04-03 07:49:58)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fix
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
* **App:** Package updates | MP | [39a231c77bd82b4592e48f3bdbe92545d68fa351](https://github.com/admiralcloud/ac-awssecrets/commit/39a231c77bd82b4592e48f3bdbe92545d68fa351)
|
|
16
|
+
Package updates
|
|
17
|
+
Related issues:
|
|
18
|
+
### Documentation
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
* **App:** Added badge | MP | [289b418dbdc0e272551a9e2a18622db21114eca7](https://github.com/admiralcloud/ac-awssecrets/commit/289b418dbdc0e272551a9e2a18622db21114eca7)
|
|
22
|
+
Added badge to README
|
|
23
|
+
Related issues:
|
|
1
24
|
|
|
2
25
|
## [3.0.5](https://github.com/admiralcloud/ac-awssecrets/compare/v3.0.4..v3.0.5) (2026-03-27 15:21:43)
|
|
3
26
|
|
package/README.md
CHANGED
|
@@ -3,7 +3,7 @@ Reads secrets from AWS secrets manager and adds them to the configuration of the
|
|
|
3
3
|
|
|
4
4
|
Instead of AWS secrets, you can now also use AWS parameter store (which is not as expensive as AWS secrets)
|
|
5
5
|
|
|
6
|
-

|
|
6
|
+
 [](https://github.com/AdmiralCloud/ac-awsSecrets/actions/workflows/github-code-scanning/codeql)
|
|
7
7
|
|
|
8
8
|
|
|
9
9
|
# Version 2 - BREAKING CHANGES
|
package/package.json
CHANGED
|
@@ -3,19 +3,19 @@
|
|
|
3
3
|
"author": "Mark Poepping (https://www.admiralcloud.com)",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"repository": "admiralcloud/ac-awssecrets",
|
|
6
|
-
"version": "3.0.
|
|
6
|
+
"version": "3.0.7",
|
|
7
7
|
"dependencies": {
|
|
8
|
-
"@aws-sdk/client-secrets-manager": "^3.
|
|
9
|
-
"@aws-sdk/client-ssm": "^3.
|
|
8
|
+
"@aws-sdk/client-secrets-manager": "^3.1031.0",
|
|
9
|
+
"@aws-sdk/client-ssm": "^3.1031.0"
|
|
10
10
|
},
|
|
11
11
|
"devDependencies": {
|
|
12
|
-
"ac-semantic-release": "^0.
|
|
12
|
+
"ac-semantic-release": "^1.0.2",
|
|
13
13
|
"aws-sdk-client-mock": "^4.1.0",
|
|
14
14
|
"c8": "^11.0.0",
|
|
15
15
|
"chai": "^4.x",
|
|
16
16
|
"eslint": "10.x",
|
|
17
17
|
"@eslint/js": "^10.0.1",
|
|
18
|
-
"globals": "^17.
|
|
18
|
+
"globals": "^17.5.0",
|
|
19
19
|
"mocha": "^11.7.5"
|
|
20
20
|
},
|
|
21
21
|
"scripts": {
|