@serenity-js/core 3.33.1 → 3.34.1

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,28 @@
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.34.1](https://github.com/serenity-js/serenity-js/compare/v3.34.0...v3.34.1) (2025-08-20)
7
+
8
+
9
+ ### Bug Fixes
10
+
11
+ * **deps:** update dependency tiny-types to v1.24.1 ([14c705a](https://github.com/serenity-js/serenity-js/commit/14c705a83bd7b38dec34529fbb7875168dbc7f3c))
12
+
13
+
14
+
15
+
16
+
17
+ # [3.34.0](https://github.com/serenity-js/serenity-js/compare/v3.33.1...v3.34.0) (2025-08-01)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **deps:** update dependency typescript to v5.9.2 ([8a40483](https://github.com/serenity-js/serenity-js/commit/8a40483203534445d93c5be6f4d8a747055fd79e))
23
+
24
+
25
+
26
+
27
+
6
28
  ## [3.33.1](https://github.com/serenity-js/serenity-js/compare/v3.33.0...v3.33.1) (2025-07-28)
7
29
 
8
30
 
package/lib/instance.d.ts CHANGED
@@ -185,8 +185,8 @@ export declare function engage(actors: Cast): void;
185
185
  * ## Usage with Playwright Test
186
186
  *
187
187
  * When using [Serenity/JS with Playwright Test](https://serenity-js.org/api/playwright-test/), you should use either
188
- * the default [`actor`](https://serenity-js.org/api/playwright-test/interface/SerenityFixtures/#actorCalled) fixture
189
- * or the injected [`actorCalled`](https://serenity-js.org/api/playwright-test/interface/SerenityFixtures/#actorCalled) function
188
+ * the default [`actor`](https://serenity-js.org/api/playwright-test/interface/SerenityFixtures/#actor) fixture
189
+ * or the injected [`actorCalled`](https://serenity-js.org/api/playwright-test/interface/SerenityWorkerFixtures/#actorCalled) function
190
190
  * instead of importing it from `@serenity-js/core`.
191
191
  *
192
192
  * ```typescript
package/lib/instance.js CHANGED
@@ -195,8 +195,8 @@ function engage(actors) {
195
195
  * ## Usage with Playwright Test
196
196
  *
197
197
  * When using [Serenity/JS with Playwright Test](https://serenity-js.org/api/playwright-test/), you should use either
198
- * the default [`actor`](https://serenity-js.org/api/playwright-test/interface/SerenityFixtures/#actorCalled) fixture
199
- * or the injected [`actorCalled`](https://serenity-js.org/api/playwright-test/interface/SerenityFixtures/#actorCalled) function
198
+ * the default [`actor`](https://serenity-js.org/api/playwright-test/interface/SerenityFixtures/#actor) fixture
199
+ * or the injected [`actorCalled`](https://serenity-js.org/api/playwright-test/interface/SerenityWorkerFixtures/#actorCalled) function
200
200
  * instead of importing it from `@serenity-js/core`.
201
201
  *
202
202
  * ```typescript
@@ -170,7 +170,7 @@ export declare function the<Supported_Context_Type>(templates: TemplateStringsAr
170
170
  * `q` is a tag function capable of resolving any `Answerable<string>` or `Answerable<number>`
171
171
  * you parametrise it with, and returning a `QuestionAdapter<string>`.
172
172
  *
173
- * Use `q` to concatenate `string` and `number` values returned from synchronous an asynchronous sources.
173
+ * Use `q` to concatenate `string` and `number` values returned from synchronous and asynchronous sources.
174
174
  *
175
175
  * ## Interpolating questions
176
176
  *
@@ -18,7 +18,7 @@ function the(...args) {
18
18
  * `q` is a tag function capable of resolving any `Answerable<string>` or `Answerable<number>`
19
19
  * you parametrise it with, and returning a `QuestionAdapter<string>`.
20
20
  *
21
- * Use `q` to concatenate `string` and `number` values returned from synchronous an asynchronous sources.
21
+ * Use `q` to concatenate `string` and `number` values returned from synchronous and asynchronous sources.
22
22
  *
23
23
  * ## Interpolating questions
24
24
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serenity-js/core",
3
- "version": "3.33.1",
3
+ "version": "3.34.1",
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",
@@ -45,7 +45,7 @@
45
45
  "filenamify": "4.3.0",
46
46
  "graceful-fs": "4.2.11",
47
47
  "semver": "7.7.2",
48
- "tiny-types": "1.23.0",
48
+ "tiny-types": "1.24.1",
49
49
  "upath": "2.0.1",
50
50
  "validate-npm-package-name": "6.0.2"
51
51
  },
@@ -58,11 +58,11 @@
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.23.0",
61
+ "memfs": "4.36.3",
62
62
  "mocha": "11.7.1",
63
63
  "mocha-multi": "1.1.7",
64
64
  "ts-node": "10.9.2",
65
- "typescript": "5.8.3"
65
+ "typescript": "5.9.2"
66
66
  },
67
67
  "repository": {
68
68
  "type": "git",
@@ -75,5 +75,5 @@
75
75
  "engines": {
76
76
  "node": "^18.12 || ^20 || ^22"
77
77
  },
78
- "gitHead": "11bbc2bb3f6d4d5fade2b7881b36e5259973901a"
78
+ "gitHead": "8591e154237ca715a067ff5f58351c418416e75a"
79
79
  }
package/src/instance.ts CHANGED
@@ -196,8 +196,8 @@ export function engage(actors: Cast): void {
196
196
  * ## Usage with Playwright Test
197
197
  *
198
198
  * When using [Serenity/JS with Playwright Test](https://serenity-js.org/api/playwright-test/), you should use either
199
- * the default [`actor`](https://serenity-js.org/api/playwright-test/interface/SerenityFixtures/#actorCalled) fixture
200
- * or the injected [`actorCalled`](https://serenity-js.org/api/playwright-test/interface/SerenityFixtures/#actorCalled) function
199
+ * the default [`actor`](https://serenity-js.org/api/playwright-test/interface/SerenityFixtures/#actor) fixture
200
+ * or the injected [`actorCalled`](https://serenity-js.org/api/playwright-test/interface/SerenityWorkerFixtures/#actorCalled) function
201
201
  * instead of importing it from `@serenity-js/core`.
202
202
  *
203
203
  * ```typescript
@@ -187,7 +187,7 @@ export function the(...args: any[]): any {
187
187
  * `q` is a tag function capable of resolving any `Answerable<string>` or `Answerable<number>`
188
188
  * you parametrise it with, and returning a `QuestionAdapter<string>`.
189
189
  *
190
- * Use `q` to concatenate `string` and `number` values returned from synchronous an asynchronous sources.
190
+ * Use `q` to concatenate `string` and `number` values returned from synchronous and asynchronous sources.
191
191
  *
192
192
  * ## Interpolating questions
193
193
  *