akamai-edgegrid 3.5.3 → 3.5.5
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/test.yml +1 -1
- package/CHANGELOG.md +14 -0
- package/README.md +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Release notes
|
|
2
2
|
|
|
3
|
+
## 3.5.5 (Oct 8, 2025)
|
|
4
|
+
|
|
5
|
+
### Features/Enhancements
|
|
6
|
+
|
|
7
|
+
* Updated various dependencies.
|
|
8
|
+
* Removed support for Node.js versions 18, 21 and 23.
|
|
9
|
+
|
|
10
|
+
## 3.5.4 (Jul 24, 2025)
|
|
11
|
+
|
|
12
|
+
### Features/Enhancements
|
|
13
|
+
|
|
14
|
+
* Updated various dependencies.
|
|
15
|
+
* Removed support for Node.js versions 14 and 16.
|
|
16
|
+
|
|
3
17
|
## 3.5.3 (Apr 09, 2025)
|
|
4
18
|
|
|
5
19
|
### Features/Enhancements
|
package/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|

|
|
4
4
|
|
|
5
|
-
This library implements an Authentication handler for the Akamai EdgeGrid Authentication scheme in Node.js for Node
|
|
5
|
+
This library implements an Authentication handler for the Akamai EdgeGrid Authentication scheme in Node.js for Node v20 and higher LTS versions.
|
|
6
6
|
|
|
7
7
|
You can find the most up-to-date package in [NPM](https://www.npmjs.com/package/akamai-edgegrid) under `akamai-edgegrid`.
|
|
8
8
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "akamai-edgegrid",
|
|
3
|
-
"version": "3.5.
|
|
3
|
+
"version": "3.5.5",
|
|
4
4
|
"description": "Authentication handler for the Akamai OPEN EdgeGrid Authentication scheme in Node.js",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -21,13 +21,13 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"axios": "^1.1.2",
|
|
23
23
|
"log4js": "^6.4.0",
|
|
24
|
-
"uuid": "^
|
|
24
|
+
"uuid": "^13.0.0"
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"mocha": "^11.0.1",
|
|
28
28
|
"mocha-junit-reporter": "^2.1.0",
|
|
29
|
-
"nock": "^
|
|
29
|
+
"nock": "^14.0.6",
|
|
30
30
|
"nyc": "^17.0.0",
|
|
31
|
-
"tsd": "^0.
|
|
31
|
+
"tsd": "^0.33.0"
|
|
32
32
|
}
|
|
33
33
|
}
|