@serenity-js/core 3.34.0 → 3.34.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/CHANGELOG.md +19 -0
- package/lib/instance.d.ts +2 -2
- package/lib/instance.js +2 -2
- package/lib/screenplay/questions/tag-functions.d.ts +1 -1
- package/lib/screenplay/questions/tag-functions.js +1 -1
- package/package.json +6 -6
- package/src/instance.ts +2 -2
- package/src/screenplay/questions/tag-functions.ts +1 -1
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.34.2](https://github.com/serenity-js/serenity-js/compare/v3.34.1...v3.34.2) (2025-09-07)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @serenity-js/core
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [3.34.1](https://github.com/serenity-js/serenity-js/compare/v3.34.0...v3.34.1) (2025-08-20)
|
|
15
|
+
|
|
16
|
+
|
|
17
|
+
### Bug Fixes
|
|
18
|
+
|
|
19
|
+
* **deps:** update dependency tiny-types to v1.24.1 ([14c705a](https://github.com/serenity-js/serenity-js/commit/14c705a83bd7b38dec34529fbb7875168dbc7f3c))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
6
25
|
# [3.34.0](https://github.com/serenity-js/serenity-js/compare/v3.33.1...v3.34.0) (2025-08-01)
|
|
7
26
|
|
|
8
27
|
|
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/#
|
|
189
|
-
* or the injected [`actorCalled`](https://serenity-js.org/api/playwright-test/interface/
|
|
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/#
|
|
199
|
-
* or the injected [`actorCalled`](https://serenity-js.org/api/playwright-test/interface/
|
|
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
|
|
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
|
|
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.34.
|
|
3
|
+
"version": "3.34.2",
|
|
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.
|
|
48
|
+
"tiny-types": "1.24.1",
|
|
49
49
|
"upath": "2.0.1",
|
|
50
50
|
"validate-npm-package-name": "6.0.2"
|
|
51
51
|
},
|
|
@@ -54,12 +54,12 @@
|
|
|
54
54
|
"@types/diff": "5.2.3",
|
|
55
55
|
"@types/filenamify": "2.0.2",
|
|
56
56
|
"@types/mocha": "10.0.10",
|
|
57
|
-
"@types/semver": "7.7.
|
|
57
|
+
"@types/semver": "7.7.1",
|
|
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.
|
|
62
|
-
"mocha": "11.7.
|
|
61
|
+
"memfs": "4.38.2",
|
|
62
|
+
"mocha": "11.7.2",
|
|
63
63
|
"mocha-multi": "1.1.7",
|
|
64
64
|
"ts-node": "10.9.2",
|
|
65
65
|
"typescript": "5.9.2"
|
|
@@ -75,5 +75,5 @@
|
|
|
75
75
|
"engines": {
|
|
76
76
|
"node": "^18.12 || ^20 || ^22"
|
|
77
77
|
},
|
|
78
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "c2639f9771198d278cb595938d23e152c232b52d"
|
|
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/#
|
|
200
|
-
* or the injected [`actorCalled`](https://serenity-js.org/api/playwright-test/interface/
|
|
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
|
|
190
|
+
* Use `q` to concatenate `string` and `number` values returned from synchronous and asynchronous sources.
|
|
191
191
|
*
|
|
192
192
|
* ## Interpolating questions
|
|
193
193
|
*
|