ac-signature 5.0.0 → 5.0.2
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 +1 -1
- package/CHANGELOG.md +23 -0
- package/README.md +2 -0
- package/package.json +8 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,26 @@
|
|
|
1
|
+
|
|
2
|
+
## [5.0.2](https://github.com/mmpro/ac-signature/compare/v5.0.1..v5.0.2) (2026-03-21 11:15:27)
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
### Bug Fix
|
|
6
|
+
|
|
7
|
+
* **App:** Package updates | MP | [41cb83690043a5fb105cf954c6f610c56b00f782](https://github.com/mmpro/ac-signature/commit/41cb83690043a5fb105cf954c6f610c56b00f782)
|
|
8
|
+
Package updates
|
|
9
|
+
Related issues:
|
|
10
|
+
|
|
11
|
+
## [5.0.1](https://github.com/mmpro/ac-signature/compare/v5.0.0..v5.0.1) (2026-02-28 12:22:52)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fix
|
|
15
|
+
|
|
16
|
+
* **Misc:** Package updates | MP | [9756093787c437d70f7a8789d9cb493845300ef1](https://github.com/mmpro/ac-signature/commit/9756093787c437d70f7a8789d9cb493845300ef1)
|
|
17
|
+
Package updates
|
|
18
|
+
Related issues:
|
|
19
|
+
### Chores
|
|
20
|
+
|
|
21
|
+
* **Misc:** Remove Node 18 from workflow | MP | [08d71673bb4a5af16a5f12e5d9ef6b2b24bafd46](https://github.com/mmpro/ac-signature/commit/08d71673bb4a5af16a5f12e5d9ef6b2b24bafd46)
|
|
22
|
+
Remove Node 18 from workflow
|
|
23
|
+
Related issues:
|
|
1
24
|
|
|
2
25
|
# [5.0.0](https://github.com/mmpro/ac-signature/compare/v4.0.11..v5.0.0) (2026-02-24 19:13:16)
|
|
3
26
|
|
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
# ac-signature
|
|
2
2
|
|
|
3
|
+
[](https://github.com/AdmiralCloud/ac-signature/actions/workflows/node.js.yml)
|
|
4
|
+
|
|
3
5
|
This module helps you to sign request for the AdmiralCloud media asset management.
|
|
4
6
|
https://www.admiralcloud.com
|
|
5
7
|
|
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.2",
|
|
5
5
|
"author": "Mark Poepping (https://www.admiralcloud.com)",
|
|
6
6
|
"contributors": [
|
|
7
7
|
"Julius Eckert (https://www.admiralcloud.com)"
|
|
@@ -20,14 +20,15 @@
|
|
|
20
20
|
"signature"
|
|
21
21
|
],
|
|
22
22
|
"dependencies": {
|
|
23
|
-
"lodash": "^4.17.23"
|
|
23
|
+
"lodash": "^4.17.23",
|
|
24
|
+
"superagent": "^10.3.0"
|
|
24
25
|
},
|
|
25
26
|
"devDependencies": {
|
|
26
27
|
"ac-semantic-release": "^0.4.10",
|
|
27
|
-
"c8": "^
|
|
28
|
+
"c8": "^11.0.0",
|
|
28
29
|
"chai": "^4.5.0",
|
|
29
|
-
"eslint": "^10.0
|
|
30
|
-
"globals": "^17.
|
|
30
|
+
"eslint": "^10.1.0",
|
|
31
|
+
"globals": "^17.4.0",
|
|
31
32
|
"mocha": "^11.7.5"
|
|
32
33
|
},
|
|
33
34
|
"scripts": {
|
|
@@ -41,7 +42,8 @@
|
|
|
41
42
|
"resolutions": {
|
|
42
43
|
"braces": "^3.0.3",
|
|
43
44
|
"mocha/diff": "^8.0.3",
|
|
44
|
-
"minimatch": "^10.2.1"
|
|
45
|
+
"minimatch": "^10.2.1",
|
|
46
|
+
"mocha/serialize-javascript": "^7.0.3"
|
|
45
47
|
},
|
|
46
48
|
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
|
|
47
49
|
}
|