@serenity-js/core 3.23.1 → 3.23.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 CHANGED
@@ -3,6 +3,14 @@
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.23.2](https://github.com/serenity-js/serenity-js/compare/v3.23.1...v3.23.2) (2024-05-24)
7
+
8
+ **Note:** Version bump only for package @serenity-js/core
9
+
10
+
11
+
12
+
13
+
6
14
  ## [3.23.1](https://github.com/serenity-js/serenity-js/compare/v3.23.0...v3.23.1) (2024-05-20)
7
15
 
8
16
 
@@ -6,7 +6,7 @@ import { Interaction } from '../Interaction';
6
6
  import type { AnswersQuestions } from '../questions';
7
7
  import type { DebuggingResult } from './DebuggingResult';
8
8
  /**
9
- * Instructs the {@apilink Actor|actor} to evaluate and {@apilink Log|log} the provided {@apilink Answerable} values.
9
+ * Instructs the {@apilink Actor|actor} to evaluate and {@apilink Log|log} the provided {@apilink Answerable|answerable} values.
10
10
  *
11
11
  * Since this interaction **accepts a callback function** that receives the evaluated results,
12
12
  * the best way to use it is while **running the test scenario via a Node.js debugger**.
@@ -7,7 +7,7 @@ const stringified_1 = require("../../io/stringified");
7
7
  const model_1 = require("../../model");
8
8
  const Interaction_1 = require("../Interaction");
9
9
  /**
10
- * Instructs the {@apilink Actor|actor} to evaluate and {@apilink Log|log} the provided {@apilink Answerable} values.
10
+ * Instructs the {@apilink Actor|actor} to evaluate and {@apilink Log|log} the provided {@apilink Answerable|answerable} values.
11
11
  *
12
12
  * Since this interaction **accepts a callback function** that receives the evaluated results,
13
13
  * the best way to use it is while **running the test scenario via a Node.js debugger**.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@serenity-js/core",
3
- "version": "3.23.1",
3
+ "version": "3.23.2",
4
4
  "description": "Serenity/JS Screenplay, reporting engine and core interfaces.",
5
5
  "author": {
6
6
  "name": "Jan Molak",
@@ -71,5 +71,5 @@
71
71
  "engines": {
72
72
  "node": "^16.13 || ^18.12 || ^20"
73
73
  },
74
- "gitHead": "6bb08ce04a5590660704eed74334396ccca42a33"
74
+ "gitHead": "155af39040e128f5657ed3011bfa785d0af0b878"
75
75
  }
@@ -11,7 +11,7 @@ import type { AnswersQuestions } from '../questions';
11
11
  import type { DebuggingResult } from './DebuggingResult';
12
12
 
13
13
  /**
14
- * Instructs the {@apilink Actor|actor} to evaluate and {@apilink Log|log} the provided {@apilink Answerable} values.
14
+ * Instructs the {@apilink Actor|actor} to evaluate and {@apilink Log|log} the provided {@apilink Answerable|answerable} values.
15
15
  *
16
16
  * Since this interaction **accepts a callback function** that receives the evaluated results,
17
17
  * the best way to use it is while **running the test scenario via a Node.js debugger**.