@serenity-js/core 3.31.14 → 3.31.16

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 CHANGED
@@ -3,6 +3,26 @@
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.31.16](https://github.com/serenity-js/serenity-js/compare/v3.31.15...v3.31.16) (2025-06-05)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** update dependency semver to v7.7.2 ([41dbee8](https://github.com/serenity-js/serenity-js/commit/41dbee88e6cd3c8b7b0ad1c8c073eaca2615ee52))
12
+ * **deps:** update dependency validate-npm-package-name to v6.0.1 ([fcc6781](https://github.com/serenity-js/serenity-js/commit/fcc6781cd3a629c863f59e924ce39ade1b47ce71))
13
+
14
+
15
+
16
+
17
+
18
+ ## [3.31.15](https://github.com/serenity-js/serenity-js/compare/v3.31.14...v3.31.15) (2025-05-06)
19
+
20
+ **Note:** Version bump only for package @serenity-js/core
21
+
22
+
23
+
24
+
25
+
6
26
  ## [3.31.14](https://github.com/serenity-js/serenity-js/compare/v3.31.13...v3.31.14) (2025-04-28)
7
27
 
8
28
 
@@ -38,7 +38,7 @@ import type { WithAnswerableProperties } from './WithAnswerableProperties';
38
38
  * });
39
39
  *
40
40
  * await actorCalled('Quentin').attemptsTo(
41
- * Ensure.that(LastItemFrom([1,2,3]), equals(3)),
41
+ * Ensure.that(LastItemOf([1,2,3]), equals(3)),
42
42
  * )
43
43
  * ```
44
44
  *
@@ -70,7 +70,7 @@ const Unanswered_1 = require("./questions/Unanswered");
70
70
  * });
71
71
  *
72
72
  * await actorCalled('Quentin').attemptsTo(
73
- * Ensure.that(LastItemFrom([1,2,3]), equals(3)),
73
+ * Ensure.that(LastItemOf([1,2,3]), equals(3)),
74
74
  * )
75
75
  * ```
76
76
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serenity-js/core",
3
- "version": "3.31.14",
3
+ "version": "3.31.16",
4
4
  "description": "The core Serenity/JS framework, providing the Screenplay Pattern interfaces, as well as the test reporting and integration infrastructure",
5
5
  "author": {
6
6
  "name": "Jan Molak",
@@ -44,10 +44,10 @@
44
44
  "fast-glob": "3.3.3",
45
45
  "filenamify": "4.3.0",
46
46
  "graceful-fs": "4.2.11",
47
- "semver": "7.7.1",
47
+ "semver": "7.7.2",
48
48
  "tiny-types": "1.23.0",
49
49
  "upath": "2.0.1",
50
- "validate-npm-package-name": "6.0.0"
50
+ "validate-npm-package-name": "6.0.1"
51
51
  },
52
52
  "devDependencies": {
53
53
  "@types/chai": "4.3.20",
@@ -58,8 +58,8 @@
58
58
  "@types/validate-npm-package-name": "4.0.2",
59
59
  "assertion-error-formatter": "3.0.0",
60
60
  "c8": "10.1.3",
61
- "memfs": "4.17.0",
62
- "mocha": "11.1.0",
61
+ "memfs": "4.17.2",
62
+ "mocha": "11.5.0",
63
63
  "mocha-multi": "1.1.7",
64
64
  "ts-node": "10.9.2",
65
65
  "typescript": "5.8.3"
@@ -75,5 +75,5 @@
75
75
  "engines": {
76
76
  "node": "^18.12 || ^20 || ^22"
77
77
  },
78
- "gitHead": "12d24f951ec02ece66016a7b1d2b9b111acaae4a"
78
+ "gitHead": "620c24fc20b8ff2888da541fb351c14cafcb0531"
79
79
  }
@@ -45,7 +45,7 @@ import type { WithAnswerableProperties } from './WithAnswerableProperties';
45
45
  * });
46
46
  *
47
47
  * await actorCalled('Quentin').attemptsTo(
48
- * Ensure.that(LastItemFrom([1,2,3]), equals(3)),
48
+ * Ensure.that(LastItemOf([1,2,3]), equals(3)),
49
49
  * )
50
50
  * ```
51
51
  *