ac-signature 5.0.2 → 5.0.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.
@@ -19,13 +19,13 @@ jobs:
19
19
 
20
20
  strategy:
21
21
  matrix:
22
- node-version: [20.x, 22.x, 24.x]
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@v3
26
+ - uses: actions/checkout@v5
27
27
  - name: Use Node.js ${{ matrix.node-version }}
28
- uses: actions/setup-node@v3
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,18 @@
1
+ ## [5.0.3](https://github.com/mmpro/ac-signature/compare/v5.0.2..v5.0.3) (2026-04-04 09:11:02)
2
+
3
+
4
+ ### Bug Fix
5
+
6
+
7
+ * **App:** Package updates | MP | [f5c152e1628f0f88351fa4bf65d0c17696b75578](https://github.com/mmpro/ac-signature/commit/f5c152e1628f0f88351fa4bf65d0c17696b75578)
8
+ Package update
9
+ Related issues:
10
+ ### Chores
11
+
12
+
13
+ * **App:** Added Github worfklows | MP | [a6c1f55696f3154d316ada00a8e5aa19ea339e9a](https://github.com/mmpro/ac-signature/commit/a6c1f55696f3154d316ada00a8e5aa19ea339e9a)
14
+ Added Github worfklows and badges
15
+ Related issues:
1
16
 
2
17
  ## [5.0.2](https://github.com/mmpro/ac-signature/compare/v5.0.1..v5.0.2) (2026-03-21 11:15:27)
3
18
 
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 index.js test/*.js
5
+ ./node_modules/.bin/eslint --fix
6
6
 
7
7
  lint-check:
8
- ./node_modules/.bin/eslint index.js test/test.js
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
- [![Node.js CI](https://github.com/AdmiralCloud/ac-signature/actions/workflows/node.js.yml/badge.svg)](https://github.com/AdmiralCloud/ac-signature/actions/workflows/node.js.yml)
3
+ [![Node.js CI](https://github.com/AdmiralCloud/ac-signature/actions/workflows/node.js.yml/badge.svg)](https://github.com/AdmiralCloud/ac-signature/actions/workflows/node.js.yml) [![CodeQL](https://github.com/AdmiralCloud/ac-signature/actions/workflows/github-code-scanning/codeql/badge.svg)](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.2",
4
+ "version": "5.0.3",
5
5
  "author": "Mark Poepping (https://www.admiralcloud.com)",
6
6
  "contributors": [
7
7
  "Julius Eckert (https://www.admiralcloud.com)"
@@ -20,14 +20,14 @@
20
20
  "signature"
21
21
  ],
22
22
  "dependencies": {
23
- "lodash": "^4.17.23",
23
+ "lodash": "^4.18.1",
24
24
  "superagent": "^10.3.0"
25
25
  },
26
26
  "devDependencies": {
27
- "ac-semantic-release": "^0.4.10",
27
+ "ac-semantic-release": "^1.0.1",
28
28
  "c8": "^11.0.0",
29
29
  "chai": "^4.5.0",
30
- "eslint": "^10.1.0",
30
+ "eslint": "^10.2.0",
31
31
  "globals": "^17.4.0",
32
32
  "mocha": "^11.7.5"
33
33
  },