@serenity-js/rest 3.34.1 → 3.35.0
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/CHANGELOG.md +19 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,25 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
# [3.35.0](https://github.com/serenity-js/serenity-js/compare/v3.34.2...v3.35.0) (2025-09-07)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @serenity-js/rest
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [3.34.2](https://github.com/serenity-js/serenity-js/compare/v3.34.1...v3.34.2) (2025-09-07)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **deps:** update dependency lru-cache to v11.2.1 ([c9e41eb](https://github.com/serenity-js/serenity-js/commit/c9e41ebfd4ab7cd5a9c0d475c0e8f3dd8f9ec466))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
## [3.34.1](https://github.com/serenity-js/serenity-js/compare/v3.34.0...v3.34.1) (2025-08-20)
|
|
7
26
|
|
|
8
27
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@serenity-js/rest",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.35.0",
|
|
4
4
|
"description": "Serenity/JS Screenplay Pattern library for interacting with REST and other HTTP-based services, supporting comprehensive API testing and blended testing scenarios",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Jan Molak",
|
|
@@ -51,25 +51,25 @@
|
|
|
51
51
|
"node": "^18.12 || ^20 || ^22"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@serenity-js/core": "3.
|
|
54
|
+
"@serenity-js/core": "3.35.0",
|
|
55
55
|
"agent-base": "7.1.4",
|
|
56
56
|
"axios": "1.11.0",
|
|
57
57
|
"http-proxy-agent": "7.0.2",
|
|
58
58
|
"https-proxy-agent": "7.0.6",
|
|
59
|
-
"lru-cache": "11.1
|
|
59
|
+
"lru-cache": "11.2.1",
|
|
60
60
|
"tiny-types": "1.24.1"
|
|
61
61
|
},
|
|
62
62
|
"devDependencies": {
|
|
63
63
|
"@integration/testing-tools": "3.0.0",
|
|
64
|
-
"@serenity-js/assertions": "3.
|
|
64
|
+
"@serenity-js/assertions": "3.35.0",
|
|
65
65
|
"@types/chai": "4.3.20",
|
|
66
66
|
"@types/mocha": "10.0.10",
|
|
67
67
|
"axios-mock-adapter": "2.1.0",
|
|
68
68
|
"c8": "10.1.3",
|
|
69
|
-
"mocha": "11.7.
|
|
69
|
+
"mocha": "11.7.2",
|
|
70
70
|
"mocha-multi": "1.1.7",
|
|
71
71
|
"ts-node": "10.9.2",
|
|
72
72
|
"typescript": "5.9.2"
|
|
73
73
|
},
|
|
74
|
-
"gitHead": "
|
|
74
|
+
"gitHead": "b87c48f8c67c0a51173cd5c29eb6e8599ca131ca"
|
|
75
75
|
}
|