ac-signature 5.0.2 → 5.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.
- package/.github/workflows/node.js.yml +3 -3
- package/CHANGELOG.md +23 -0
- package/Makefile +2 -2
- package/README.md +1 -1
- package/package.json +5 -5
|
@@ -19,13 +19,13 @@ jobs:
|
|
|
19
19
|
|
|
20
20
|
strategy:
|
|
21
21
|
matrix:
|
|
22
|
-
node-version: [
|
|
22
|
+
node-version: [22.x, 24.x]
|
|
23
23
|
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
|
|
24
24
|
|
|
25
25
|
steps:
|
|
26
|
-
- uses: actions/checkout@
|
|
26
|
+
- uses: actions/checkout@v5
|
|
27
27
|
- name: Use Node.js ${{ matrix.node-version }}
|
|
28
|
-
uses: actions/setup-node@
|
|
28
|
+
uses: actions/setup-node@v5
|
|
29
29
|
with:
|
|
30
30
|
node-version: ${{ matrix.node-version }}
|
|
31
31
|
- run: yarn install
|
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
## [5.0.4](https://github.com/mmpro/ac-signature/compare/v5.0.3..v5.0.4) (2026-04-17 07:48:02)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fix
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
* **App:** Package updates | MP | [2e393466aac0a589d0bb2e4c63e43ff8d55fc313](https://github.com/mmpro/ac-signature/commit/2e393466aac0a589d0bb2e4c63e43ff8d55fc313)
|
|
8
|
+
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
|
|
9
|
+
## [5.0.3](https://github.com/mmpro/ac-signature/compare/v5.0.2..v5.0.3) (2026-04-04 09:11:02)
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
### Bug Fix
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
* **App:** Package updates | MP | [f5c152e1628f0f88351fa4bf65d0c17696b75578](https://github.com/mmpro/ac-signature/commit/f5c152e1628f0f88351fa4bf65d0c17696b75578)
|
|
16
|
+
Package update
|
|
17
|
+
Related issues:
|
|
18
|
+
### Chores
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
* **App:** Added Github worfklows | MP | [a6c1f55696f3154d316ada00a8e5aa19ea339e9a](https://github.com/mmpro/ac-signature/commit/a6c1f55696f3154d316ada00a8e5aa19ea339e9a)
|
|
22
|
+
Added Github worfklows and badges
|
|
23
|
+
Related issues:
|
|
1
24
|
|
|
2
25
|
## [5.0.2](https://github.com/mmpro/ac-signature/compare/v5.0.1..v5.0.2) (2026-03-21 11:15:27)
|
|
3
26
|
|
package/Makefile
CHANGED
|
@@ -2,10 +2,10 @@ MOCHA_OPTS= --slow 0 -A
|
|
|
2
2
|
REPORTER = spec
|
|
3
3
|
|
|
4
4
|
lint-fix:
|
|
5
|
-
./node_modules/.bin/eslint --fix
|
|
5
|
+
./node_modules/.bin/eslint --fix
|
|
6
6
|
|
|
7
7
|
lint-check:
|
|
8
|
-
./node_modules/.bin/eslint
|
|
8
|
+
./node_modules/.bin/eslint
|
|
9
9
|
|
|
10
10
|
commit:
|
|
11
11
|
@node ./node_modules/ac-semantic-release/lib/commit.js
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# ac-signature
|
|
2
2
|
|
|
3
|
-
[](https://github.com/AdmiralCloud/ac-signature/actions/workflows/node.js.yml)
|
|
3
|
+
[](https://github.com/AdmiralCloud/ac-signature/actions/workflows/node.js.yml) [](https://github.com/AdmiralCloud/ac-signature/actions/workflows/github-code-scanning/codeql)
|
|
4
4
|
|
|
5
5
|
This module helps you to sign request for the AdmiralCloud media asset management.
|
|
6
6
|
https://www.admiralcloud.com
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ac-signature",
|
|
3
3
|
"description": "Sign payload for AdmiralCloud API",
|
|
4
|
-
"version": "5.0.
|
|
4
|
+
"version": "5.0.4",
|
|
5
5
|
"author": "Mark Poepping (https://www.admiralcloud.com)",
|
|
6
6
|
"contributors": [
|
|
7
7
|
"Julius Eckert (https://www.admiralcloud.com)"
|
|
@@ -20,15 +20,15 @@
|
|
|
20
20
|
"signature"
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"lodash": "^4.
|
|
23
|
+
"lodash": "^4.18.1",
|
|
24
24
|
"superagent": "^10.3.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
|
-
"ac-semantic-release": "^0.
|
|
27
|
+
"ac-semantic-release": "^1.0.1",
|
|
28
28
|
"c8": "^11.0.0",
|
|
29
29
|
"chai": "^4.5.0",
|
|
30
|
-
"eslint": "^10.
|
|
31
|
-
"globals": "^17.
|
|
30
|
+
"eslint": "^10.2.0",
|
|
31
|
+
"globals": "^17.5.0",
|
|
32
32
|
"mocha": "^11.7.5"
|
|
33
33
|
},
|
|
34
34
|
"scripts": {
|