@serenity-js/assertions 3.0.0-rc.4 → 3.0.0-rc.40
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 +63 -1850
- package/README.md +10 -8
- package/lib/Ensure.d.ts +56 -77
- package/lib/Ensure.d.ts.map +1 -0
- package/lib/Ensure.js +72 -95
- package/lib/Ensure.js.map +1 -1
- package/lib/expectations/and.d.ts +22 -1
- package/lib/expectations/and.d.ts.map +1 -0
- package/lib/expectations/and.js +26 -6
- package/lib/expectations/and.js.map +1 -1
- package/lib/expectations/contain.d.ts +26 -1
- package/lib/expectations/contain.d.ts.map +1 -0
- package/lib/expectations/contain.js +25 -1
- package/lib/expectations/contain.js.map +1 -1
- package/lib/expectations/containAtLeastOneItemThat.d.ts +23 -1
- package/lib/expectations/containAtLeastOneItemThat.d.ts.map +1 -0
- package/lib/expectations/containAtLeastOneItemThat.js +38 -10
- package/lib/expectations/containAtLeastOneItemThat.js.map +1 -1
- package/lib/expectations/containItemsWhereEachItem.d.ts +23 -1
- package/lib/expectations/containItemsWhereEachItem.d.ts.map +1 -0
- package/lib/expectations/containItemsWhereEachItem.js +38 -10
- package/lib/expectations/containItemsWhereEachItem.js.map +1 -1
- package/lib/expectations/endsWith.d.ts +20 -0
- package/lib/expectations/endsWith.d.ts.map +1 -0
- package/lib/expectations/endsWith.js +19 -0
- package/lib/expectations/endsWith.js.map +1 -1
- package/lib/expectations/equals.d.ts +26 -0
- package/lib/expectations/equals.d.ts.map +1 -0
- package/lib/expectations/equals.js +25 -0
- package/lib/expectations/equals.js.map +1 -1
- package/lib/expectations/includes.d.ts +20 -0
- package/lib/expectations/includes.d.ts.map +1 -0
- package/lib/expectations/includes.js +19 -0
- package/lib/expectations/includes.js.map +1 -1
- package/lib/expectations/index.d.ts +3 -0
- package/lib/expectations/index.d.ts.map +1 -0
- package/lib/expectations/index.js +7 -1
- package/lib/expectations/index.js.map +1 -1
- package/lib/expectations/isAfter.d.ts +40 -0
- package/lib/expectations/isAfter.d.ts.map +1 -0
- package/lib/expectations/isAfter.js +39 -0
- package/lib/expectations/isAfter.js.map +1 -1
- package/lib/expectations/isBefore.d.ts +40 -0
- package/lib/expectations/isBefore.d.ts.map +1 -0
- package/lib/expectations/isBefore.js +39 -0
- package/lib/expectations/isBefore.js.map +1 -1
- package/lib/expectations/isCloseTo.d.ts +24 -0
- package/lib/expectations/isCloseTo.d.ts.map +1 -0
- package/lib/expectations/isCloseTo.js +57 -0
- package/lib/expectations/isCloseTo.js.map +1 -0
- package/lib/expectations/isFalse.d.ts +19 -0
- package/lib/expectations/isFalse.d.ts.map +1 -0
- package/lib/expectations/isFalse.js +18 -0
- package/lib/expectations/isFalse.js.map +1 -1
- package/lib/expectations/isGreaterThan.d.ts +43 -0
- package/lib/expectations/isGreaterThan.d.ts.map +1 -0
- package/lib/expectations/isGreaterThan.js +42 -0
- package/lib/expectations/isGreaterThan.js.map +1 -1
- package/lib/expectations/isLessThan.d.ts +43 -0
- package/lib/expectations/isLessThan.d.ts.map +1 -0
- package/lib/expectations/isLessThan.js +42 -0
- package/lib/expectations/isLessThan.js.map +1 -1
- package/lib/expectations/isPresent.d.ts +64 -0
- package/lib/expectations/isPresent.d.ts.map +1 -0
- package/lib/expectations/isPresent.js +99 -0
- package/lib/expectations/isPresent.js.map +1 -0
- package/lib/expectations/isTrue.d.ts +19 -0
- package/lib/expectations/isTrue.d.ts.map +1 -0
- package/lib/expectations/isTrue.js +18 -0
- package/lib/expectations/isTrue.js.map +1 -1
- package/lib/expectations/matches.d.ts +21 -1
- package/lib/expectations/matches.d.ts.map +1 -0
- package/lib/expectations/matches.js +19 -0
- package/lib/expectations/matches.js.map +1 -1
- package/lib/expectations/not.d.ts +23 -1
- package/lib/expectations/not.d.ts.map +1 -0
- package/lib/expectations/not.js +32 -12
- package/lib/expectations/not.js.map +1 -1
- package/lib/expectations/or.d.ts +22 -1
- package/lib/expectations/or.d.ts.map +1 -0
- package/lib/expectations/or.js +40 -15
- package/lib/expectations/or.js.map +1 -1
- package/lib/expectations/property.d.ts +61 -1
- package/lib/expectations/property.d.ts.map +1 -0
- package/lib/expectations/property.js +66 -10
- package/lib/expectations/property.js.map +1 -1
- package/lib/expectations/startsWith.d.ts +20 -0
- package/lib/expectations/startsWith.d.ts.map +1 -0
- package/lib/expectations/startsWith.js +19 -0
- package/lib/expectations/startsWith.js.map +1 -1
- package/lib/index.d.ts +1 -1
- package/lib/index.d.ts.map +1 -0
- package/lib/index.js +5 -5
- package/lib/index.js.map +1 -1
- package/package.json +17 -41
- package/src/Ensure.ts +81 -101
- package/src/expectations/and.ts +39 -18
- package/src/expectations/contain.ts +26 -2
- package/src/expectations/containAtLeastOneItemThat.ts +59 -14
- package/src/expectations/containItemsWhereEachItem.ts +59 -14
- package/src/expectations/endsWith.ts +19 -0
- package/src/expectations/equals.ts +25 -0
- package/src/expectations/includes.ts +19 -0
- package/src/expectations/index.ts +2 -0
- package/src/expectations/isAfter.ts +39 -0
- package/src/expectations/isBefore.ts +39 -0
- package/src/expectations/isCloseTo.ts +66 -0
- package/src/expectations/isFalse.ts +19 -1
- package/src/expectations/isGreaterThan.ts +42 -0
- package/src/expectations/isLessThan.ts +42 -0
- package/src/expectations/isPresent.ts +107 -0
- package/src/expectations/isTrue.ts +19 -1
- package/src/expectations/matches.ts +20 -1
- package/src/expectations/not.ts +36 -15
- package/src/expectations/or.ts +49 -26
- package/src/expectations/property.ts +78 -21
- package/src/expectations/startsWith.ts +19 -0
- package/src/index.ts +0 -1
- package/tsconfig.build.json +10 -0
- package/tsconfig.eslint.json +0 -10
package/CHANGELOG.md
CHANGED
|
@@ -3,1547 +3,7 @@
|
|
|
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.0.0-rc.
|
|
7
|
-
|
|
8
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
# [3.0.0-rc.3](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.2...v3.0.0-rc.3) (2021-12-29)
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
### Bug Fixes
|
|
18
|
-
|
|
19
|
-
* **deps:** updated tiny-types to 1.17.0 ([3187051](https://github.com/serenity-js/serenity-js/commit/3187051594158b4b450c82e851e417fd2ed21652))
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
# [3.0.0-rc.2](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.1...v3.0.0-rc.2) (2021-12-09)
|
|
26
|
-
|
|
27
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
# [3.0.0-rc.1](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.0...v3.0.0-rc.1) (2021-12-09)
|
|
34
|
-
|
|
35
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
# [3.0.0-rc.0](https://github.com/serenity-js/serenity-js/compare/v2.32.5...v3.0.0-rc.0) (2021-12-08)
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
### Bug Fixes
|
|
45
|
-
|
|
46
|
-
* **core:** 3.0 RC ([469d54e](https://github.com/serenity-js/serenity-js/commit/469d54e4f81ef430566b93852e3174826f8ef672)), closes [#805](https://github.com/serenity-js/serenity-js/issues/805)
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
### BREAKING CHANGES
|
|
50
|
-
|
|
51
|
-
* **core:** Introduced @serenity-js/web - a shared library for Serenity/JS Web integration
|
|
52
|
-
modules such as @serenity-js/protractor and @serenity-js/webdriverio. Dropped support for Node 12.
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
## [2.32.5](https://github.com/serenity-js/serenity-js/compare/v2.32.4...v2.32.5) (2021-12-08)
|
|
59
|
-
|
|
60
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
## [2.32.4](https://github.com/serenity-js/serenity-js/compare/v2.32.3...v2.32.4) (2021-11-25)
|
|
67
|
-
|
|
68
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
## [2.32.3](https://github.com/serenity-js/serenity-js/compare/v2.32.2...v2.32.3) (2021-11-06)
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
### Bug Fixes
|
|
78
|
-
|
|
79
|
-
* **core:** support for NPM 8 ([7cb470c](https://github.com/serenity-js/serenity-js/commit/7cb470c985a7149f058a317dcb14e6294913f9ff))
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
## [2.32.2](https://github.com/serenity-js/serenity-js/compare/v2.32.1...v2.32.2) (2021-10-04)
|
|
86
|
-
|
|
87
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
## [2.32.1](https://github.com/serenity-js/serenity-js/compare/v2.32.0...v2.32.1) (2021-09-17)
|
|
94
|
-
|
|
95
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
# [2.32.0](https://github.com/serenity-js/serenity-js/compare/v2.31.1...v2.32.0) (2021-09-08)
|
|
102
|
-
|
|
103
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
## [2.31.1](https://github.com/serenity-js/serenity-js/compare/v2.31.0...v2.31.1) (2021-08-27)
|
|
110
|
-
|
|
111
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
# [2.31.0](https://github.com/serenity-js/serenity-js/compare/v2.30.3...v2.31.0) (2021-08-23)
|
|
118
|
-
|
|
119
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
## [2.30.3](https://github.com/serenity-js/serenity-js/compare/v2.30.2...v2.30.3) (2021-08-16)
|
|
126
|
-
|
|
127
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
## [2.30.2](https://github.com/serenity-js/serenity-js/compare/v2.30.1...v2.30.2) (2021-08-13)
|
|
134
|
-
|
|
135
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
## [2.30.1](https://github.com/serenity-js/serenity-js/compare/v2.30.0...v2.30.1) (2021-08-09)
|
|
142
|
-
|
|
143
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
# [2.30.0](https://github.com/serenity-js/serenity-js/compare/v2.29.9...v2.30.0) (2021-08-06)
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
### Features
|
|
153
|
-
|
|
154
|
-
* **webdriverio:** enabled integration with WebdriverIO ([c025086](https://github.com/serenity-js/serenity-js/commit/c0250864b4492e7a619e3ac746f1d058cbe26794)), closes [#805](https://github.com/serenity-js/serenity-js/issues/805)
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
## [2.29.9](https://github.com/serenity-js/serenity-js/compare/v2.29.8...v2.29.9) (2021-08-03)
|
|
161
|
-
|
|
162
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
## [2.29.8](https://github.com/serenity-js/serenity-js/compare/v2.29.7...v2.29.8) (2021-07-24)
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
### Bug Fixes
|
|
172
|
-
|
|
173
|
-
* **deps:** updated dependencies ([e843503](https://github.com/serenity-js/serenity-js/commit/e84350360044658951afa8765f726ebf2a18119f))
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
## [2.29.7](https://github.com/serenity-js/serenity-js/compare/v2.29.6...v2.29.7) (2021-07-23)
|
|
180
|
-
|
|
181
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
## [2.29.6](https://github.com/serenity-js/serenity-js/compare/v2.29.5...v2.29.6) (2021-06-28)
|
|
188
|
-
|
|
189
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
## [2.29.5](https://github.com/serenity-js/serenity-js/compare/v2.29.4...v2.29.5) (2021-06-28)
|
|
196
|
-
|
|
197
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
## [2.29.4](https://github.com/serenity-js/serenity-js/compare/v2.29.3...v2.29.4) (2021-06-24)
|
|
204
|
-
|
|
205
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
## [2.29.3](https://github.com/serenity-js/serenity-js/compare/v2.29.2...v2.29.3) (2021-06-17)
|
|
212
|
-
|
|
213
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
## [2.29.1](https://github.com/serenity-js/serenity-js/compare/v2.29.0...v2.29.1) (2021-06-08)
|
|
220
|
-
|
|
221
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
# [2.29.0](https://github.com/serenity-js/serenity-js/compare/v2.28.1...v2.29.0) (2021-06-06)
|
|
228
|
-
|
|
229
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
## [2.28.1](https://github.com/serenity-js/serenity-js/compare/v2.28.0...v2.28.1) (2021-05-13)
|
|
236
|
-
|
|
237
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
238
|
-
|
|
239
|
-
|
|
240
|
-
|
|
241
|
-
|
|
242
|
-
|
|
243
|
-
# [2.28.0](https://github.com/serenity-js/serenity-js/compare/v2.27.1...v2.28.0) (2021-05-12)
|
|
244
|
-
|
|
245
|
-
|
|
246
|
-
### Bug Fixes
|
|
247
|
-
|
|
248
|
-
* **deps:** migrated from TSLint to ESLint ([0c7580b](https://github.com/serenity-js/serenity-js/commit/0c7580b5fa06f9fa1796f0e9e19da45190940dfd)), closes [#842](https://github.com/serenity-js/serenity-js/issues/842)
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
### Features
|
|
252
|
-
|
|
253
|
-
* **node:** introduced support for Node.js 16.x, dropped support for Node.js 10.x ([0f67dcc](https://github.com/serenity-js/serenity-js/commit/0f67dcc63f904a4df48e331d12a37f40f6814cee)), closes [#842](https://github.com/serenity-js/serenity-js/issues/842)
|
|
254
|
-
|
|
255
|
-
|
|
256
|
-
|
|
257
|
-
|
|
258
|
-
|
|
259
|
-
## [2.27.1](https://github.com/serenity-js/serenity-js/compare/v2.27.0...v2.27.1) (2021-05-04)
|
|
260
|
-
|
|
261
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
262
|
-
|
|
263
|
-
|
|
264
|
-
|
|
265
|
-
|
|
266
|
-
|
|
267
|
-
# [2.27.0](https://github.com/serenity-js/serenity-js/compare/v2.26.2...v2.27.0) (2021-05-03)
|
|
268
|
-
|
|
269
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
## [2.26.2](https://github.com/serenity-js/serenity-js/compare/v2.26.1...v2.26.2) (2021-04-22)
|
|
276
|
-
|
|
277
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
278
|
-
|
|
279
|
-
|
|
280
|
-
|
|
281
|
-
|
|
282
|
-
|
|
283
|
-
# [2.26.0](https://github.com/serenity-js/serenity-js/compare/v2.25.9...v2.26.0) (2021-04-15)
|
|
284
|
-
|
|
285
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
286
|
-
|
|
287
|
-
|
|
288
|
-
|
|
289
|
-
|
|
290
|
-
|
|
291
|
-
## [2.25.9](https://github.com/serenity-js/serenity-js/compare/v2.25.8...v2.25.9) (2021-04-10)
|
|
292
|
-
|
|
293
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
## [2.25.8](https://github.com/serenity-js/serenity-js/compare/v2.25.7...v2.25.8) (2021-03-27)
|
|
300
|
-
|
|
301
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
## [2.25.7](https://github.com/serenity-js/serenity-js/compare/v2.25.6...v2.25.7) (2021-03-23)
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
### Bug Fixes
|
|
311
|
-
|
|
312
|
-
* **deps-dev:** (internal) standardised internal dev-dependency versions across Serenity/JS modules ([a411cea](https://github.com/serenity-js/serenity-js/commit/a411ceabadc83e82ec87a492a1738b13773adb13))
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
## [2.25.6](https://github.com/serenity-js/serenity-js/compare/v2.25.5...v2.25.6) (2021-03-22)
|
|
319
|
-
|
|
320
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
## [2.25.5](https://github.com/serenity-js/serenity-js/compare/v2.25.4...v2.25.5) (2021-03-22)
|
|
327
|
-
|
|
328
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
## [2.25.4](https://github.com/serenity-js/serenity-js/compare/v2.25.3...v2.25.4) (2021-03-21)
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
### Bug Fixes
|
|
338
|
-
|
|
339
|
-
* **deps:** updated dependencies ([32a41eb](https://github.com/serenity-js/serenity-js/commit/32a41eb8a8b4386b6b03111c1adf48e1e0aabdbb))
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
## [2.25.3](https://github.com/serenity-js/serenity-js/compare/v2.25.2...v2.25.3) (2021-03-20)
|
|
346
|
-
|
|
347
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
## [2.25.2](https://github.com/serenity-js/serenity-js/compare/v2.25.1...v2.25.2) (2021-03-18)
|
|
354
|
-
|
|
355
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
## [2.25.1](https://github.com/serenity-js/serenity-js/compare/v2.25.0...v2.25.1) (2021-03-17)
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
### Bug Fixes
|
|
365
|
-
|
|
366
|
-
* **protractor:** relaxed peerDependencies version range ([2542bf2](https://github.com/serenity-js/serenity-js/commit/2542bf2ef09216dc6ef8b8ac08395f6bf101d878))
|
|
367
|
-
|
|
368
|
-
|
|
369
|
-
|
|
370
|
-
|
|
371
|
-
|
|
372
|
-
# [2.25.0](https://github.com/serenity-js/serenity-js/compare/v2.24.1...v2.25.0) (2021-03-15)
|
|
373
|
-
|
|
374
|
-
|
|
375
|
-
### Features
|
|
376
|
-
|
|
377
|
-
* **assertions:** re-exported Expectation and Check from core to avoid breaking tests using Serenity/JS 2.24.1 and older ([5ef1096](https://github.com/serenity-js/serenity-js/commit/5ef10966f6af88c24a7d27b7123ec4087f0e2d66))
|
|
378
|
-
* **core:** moved Check from @serenity-js/assertions to @serenity-js/core ([1f36581](https://github.com/serenity-js/serenity-js/commit/1f365811796f8581064ae3601985cf10f6565feb))
|
|
379
|
-
* **core:** moved Expectation from @serenity-js/assertions to @serenity-js/core ([208391e](https://github.com/serenity-js/serenity-js/commit/208391e7b0f9dab177e0b5305e6b8fb2415cb7f4))
|
|
380
|
-
|
|
381
|
-
|
|
382
|
-
|
|
383
|
-
|
|
384
|
-
|
|
385
|
-
## [2.24.1](https://github.com/serenity-js/serenity-js/compare/v2.24.0...v2.24.1) (2021-02-28)
|
|
386
|
-
|
|
387
|
-
|
|
388
|
-
### Bug Fixes
|
|
389
|
-
|
|
390
|
-
* **core:** corrected package.json to mention all the Node and NPM versions supported by Serenity/JS ([9fff39a](https://github.com/serenity-js/serenity-js/commit/9fff39a962ad6e75596e0c8e3f8534a67c20d001))
|
|
391
|
-
|
|
392
|
-
|
|
393
|
-
|
|
394
|
-
|
|
395
|
-
|
|
396
|
-
# [2.24.0](https://github.com/serenity-js/serenity-js/compare/v2.23.2...v2.24.0) (2021-02-26)
|
|
397
|
-
|
|
398
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
## [2.23.2](https://github.com/serenity-js/serenity-js/compare/v2.23.1...v2.23.2) (2021-02-23)
|
|
405
|
-
|
|
406
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
## [2.23.1](https://github.com/serenity-js/serenity-js/compare/v2.23.0...v2.23.1) (2021-02-21)
|
|
413
|
-
|
|
414
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
|
|
420
|
-
# [2.23.0](https://github.com/serenity-js/serenity-js/compare/v2.22.0...v2.23.0) (2021-02-16)
|
|
421
|
-
|
|
422
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
423
|
-
|
|
424
|
-
|
|
425
|
-
|
|
426
|
-
|
|
427
|
-
|
|
428
|
-
# [2.22.0](https://github.com/serenity-js/serenity-js/compare/v2.21.0...v2.22.0) (2021-01-27)
|
|
429
|
-
|
|
430
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
434
|
-
|
|
435
|
-
|
|
436
|
-
# [2.21.0](https://github.com/serenity-js/serenity-js/compare/v2.20.1...v2.21.0) (2021-01-26)
|
|
437
|
-
|
|
438
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
439
|
-
|
|
440
|
-
|
|
441
|
-
|
|
442
|
-
|
|
443
|
-
|
|
444
|
-
## [2.20.1](https://github.com/serenity-js/serenity-js/compare/v2.20.0...v2.20.1) (2021-01-23)
|
|
445
|
-
|
|
446
|
-
|
|
447
|
-
### Bug Fixes
|
|
448
|
-
|
|
449
|
-
* **deps:** updated tiny-types ([e81a6ea](https://github.com/serenity-js/serenity-js/commit/e81a6ea804286083da118f9141ebbfd52746b581))
|
|
450
|
-
|
|
451
|
-
|
|
452
|
-
|
|
453
|
-
|
|
454
|
-
|
|
455
|
-
# [2.20.0](https://github.com/serenity-js/serenity-js/compare/v2.19.10...v2.20.0) (2021-01-18)
|
|
456
|
-
|
|
457
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
458
|
-
|
|
459
|
-
|
|
460
|
-
|
|
461
|
-
|
|
462
|
-
|
|
463
|
-
## [2.19.10](https://github.com/serenity-js/serenity-js/compare/v2.19.9...v2.19.10) (2020-12-22)
|
|
464
|
-
|
|
465
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
## [2.19.9](https://github.com/serenity-js/serenity-js/compare/v2.19.8...v2.19.9) (2020-12-15)
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
### Bug Fixes
|
|
475
|
-
|
|
476
|
-
* **assertions:** corrected how the interaction to Check is reported ([fca99a6](https://github.com/serenity-js/serenity-js/commit/fca99a6b620d643e872e1379e86f1511b0292ff8)), closes [#713](https://github.com/serenity-js/serenity-js/issues/713)
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
|
|
481
|
-
|
|
482
|
-
## [2.19.8](https://github.com/serenity-js/serenity-js/compare/v2.19.7...v2.19.8) (2020-12-15)
|
|
483
|
-
|
|
484
|
-
|
|
485
|
-
### Bug Fixes
|
|
486
|
-
|
|
487
|
-
* **core:** serenity-js/core is now a direct dependency of all the Serenity/JS modules ([4561862](https://github.com/serenity-js/serenity-js/commit/45618629c319041eedc0a64174d2b342fffadfa4))
|
|
488
|
-
|
|
489
|
-
|
|
490
|
-
|
|
491
|
-
|
|
492
|
-
|
|
493
|
-
## [2.19.7](https://github.com/serenity-js/serenity-js/compare/v2.19.6...v2.19.7) (2020-12-10)
|
|
494
|
-
|
|
495
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
496
|
-
|
|
497
|
-
|
|
498
|
-
|
|
499
|
-
|
|
500
|
-
|
|
501
|
-
## 2.19.6 (2020-12-10)
|
|
502
|
-
|
|
503
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
504
|
-
|
|
505
|
-
|
|
506
|
-
|
|
507
|
-
|
|
508
|
-
|
|
509
|
-
## 2.19.5 (2020-12-10)
|
|
510
|
-
|
|
511
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
## 2.19.4 (2020-11-30)
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
### Bug Fixes
|
|
521
|
-
|
|
522
|
-
* **protractor:** improved the description of the ProtractorParam question ([e9e1cae](https://github.com/serenity-js/serenity-js/commit/e9e1caef0b726e1060d1766bce6cf7a9396e118c))
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
|
|
527
|
-
|
|
528
|
-
## 2.19.3 (2020-11-26)
|
|
529
|
-
|
|
530
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
531
|
-
|
|
532
|
-
|
|
533
|
-
|
|
534
|
-
|
|
535
|
-
|
|
536
|
-
## 2.19.2 (2020-11-26)
|
|
537
|
-
|
|
538
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
539
|
-
|
|
540
|
-
|
|
541
|
-
|
|
542
|
-
|
|
543
|
-
|
|
544
|
-
## 2.19.1 (2020-11-25)
|
|
545
|
-
|
|
546
|
-
|
|
547
|
-
### Bug Fixes
|
|
548
|
-
|
|
549
|
-
* **deps:** updated dependencies ([25e316d](https://github.com/serenity-js/serenity-js/commit/25e316d8d5db2e9c9e44914d2017a2b004cb6eb7))
|
|
550
|
-
|
|
551
|
-
|
|
552
|
-
|
|
553
|
-
|
|
554
|
-
|
|
555
|
-
# 2.19.0 (2020-11-25)
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
### Features
|
|
559
|
-
|
|
560
|
-
* **protractor:** EXPERIMENTAL: Custom extensions can be mixed into BrowseTheWeb ([3b26baa](https://github.com/serenity-js/serenity-js/commit/3b26baab1f2c2108648d2c3093e69326aaa1dfc4))
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
## 2.18.2 (2020-11-22)
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
### Bug Fixes
|
|
570
|
-
|
|
571
|
-
* **core:** better support for abilities that are discarded asynchronously ([fb130b6](https://github.com/serenity-js/serenity-js/commit/fb130b626074337735f944308db4982c30824485))
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
577
|
-
## 2.18.1 (2020-11-21)
|
|
578
|
-
|
|
579
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
580
|
-
|
|
581
|
-
|
|
582
|
-
|
|
583
|
-
|
|
584
|
-
|
|
585
|
-
# 2.18.0 (2020-11-17)
|
|
586
|
-
|
|
587
|
-
|
|
588
|
-
### Features
|
|
589
|
-
|
|
590
|
-
* **core:** Cross-scenario Actors + improved Ability lifecycle management (version bump) ([5f30cc2](https://github.com/serenity-js/serenity-js/commit/5f30cc2583e706f1527f47dee265fe570603e9a6))
|
|
591
|
-
|
|
592
|
-
|
|
593
|
-
|
|
594
|
-
|
|
595
|
-
|
|
596
|
-
## 2.17.16 (2020-11-17)
|
|
597
|
-
|
|
598
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
599
|
-
|
|
600
|
-
|
|
601
|
-
|
|
602
|
-
|
|
603
|
-
|
|
604
|
-
## 2.17.15 (2020-11-14)
|
|
605
|
-
|
|
606
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
607
|
-
|
|
608
|
-
|
|
609
|
-
|
|
610
|
-
|
|
611
|
-
|
|
612
|
-
## 2.17.14 (2020-11-14)
|
|
613
|
-
|
|
614
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
615
|
-
|
|
616
|
-
|
|
617
|
-
|
|
618
|
-
|
|
619
|
-
|
|
620
|
-
## 2.17.13 (2020-11-14)
|
|
621
|
-
|
|
622
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
623
|
-
|
|
624
|
-
|
|
625
|
-
|
|
626
|
-
|
|
627
|
-
|
|
628
|
-
## 2.17.12 (2020-11-14)
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
### Bug Fixes
|
|
632
|
-
|
|
633
|
-
* **deps:** updated dependencies ([0b5abc7](https://github.com/serenity-js/serenity-js/commit/0b5abc7f4a9f026d49691e844315e1ba8677c282))
|
|
634
|
-
|
|
635
|
-
|
|
636
|
-
|
|
637
|
-
|
|
638
|
-
|
|
639
|
-
## 2.17.11 (2020-11-14)
|
|
640
|
-
|
|
641
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
## 2.17.10 (2020-11-06)
|
|
648
|
-
|
|
649
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
## 2.17.9 (2020-11-06)
|
|
656
|
-
|
|
657
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
## 2.17.8 (2020-11-06)
|
|
664
|
-
|
|
665
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
666
|
-
|
|
667
|
-
|
|
668
|
-
|
|
669
|
-
|
|
670
|
-
|
|
671
|
-
## 2.17.7 (2020-11-06)
|
|
672
|
-
|
|
673
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
## 2.17.6 (2020-11-06)
|
|
680
|
-
|
|
681
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
## [2.17.5](https://github.com/serenity-js/serenity-js/compare/v2.17.4...v2.17.5) (2020-11-05)
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
### Bug Fixes
|
|
691
|
-
|
|
692
|
-
* **assertions:** auto-generated description of an Expectation can be overridden via describedAs ([f5d02fa](https://github.com/serenity-js/serenity-js/commit/f5d02fafdd1c4fcee76d0011e2c916915adc86a3))
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
## [2.17.4](https://github.com/serenity-js/serenity-js/compare/v2.17.3...v2.17.4) (2020-10-28)
|
|
699
|
-
|
|
700
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
704
|
-
|
|
705
|
-
|
|
706
|
-
## [2.17.3](https://github.com/serenity-js/serenity-js/compare/v2.17.2...v2.17.3) (2020-10-25)
|
|
707
|
-
|
|
708
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
709
|
-
|
|
710
|
-
|
|
711
|
-
|
|
712
|
-
|
|
713
|
-
|
|
714
|
-
## [2.17.2](https://github.com/serenity-js/serenity-js/compare/v2.17.1...v2.17.2) (2020-10-24)
|
|
715
|
-
|
|
716
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
|
|
722
|
-
## [2.17.1](https://github.com/serenity-js/serenity-js/compare/v2.17.0...v2.17.1) (2020-10-08)
|
|
723
|
-
|
|
724
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
725
|
-
|
|
726
|
-
|
|
727
|
-
|
|
728
|
-
|
|
729
|
-
|
|
730
|
-
# [2.17.0](https://github.com/serenity-js/serenity-js/compare/v2.16.0...v2.17.0) (2020-10-05)
|
|
731
|
-
|
|
732
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
733
|
-
|
|
734
|
-
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
# [2.16.0](https://github.com/serenity-js/serenity-js/compare/v2.15.0...v2.16.0) (2020-09-20)
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
### Features
|
|
742
|
-
|
|
743
|
-
* **core:** Question#map() and mapping functions for Answerable<string> ([e5bb825](https://github.com/serenity-js/serenity-js/commit/e5bb82548f399557387cb24028bb9c8dd1dd5393))
|
|
744
|
-
* **core:** the name of a Question's subject can be overridden ([8ec5ab7](https://github.com/serenity-js/serenity-js/commit/8ec5ab7c901a395a81d2ee5db0c653b163a586a7))
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
|
|
750
|
-
# [2.15.0](https://github.com/serenity-js/serenity-js/compare/v2.14.0...v2.15.0) (2020-08-27)
|
|
751
|
-
|
|
752
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
753
|
-
|
|
754
|
-
|
|
755
|
-
|
|
756
|
-
|
|
757
|
-
|
|
758
|
-
# [2.14.0](https://github.com/serenity-js/serenity-js/compare/v2.13.1...v2.14.0) (2020-08-17)
|
|
759
|
-
|
|
760
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
## [2.13.1](https://github.com/serenity-js/serenity-js/compare/v2.13.0...v2.13.1) (2020-08-05)
|
|
767
|
-
|
|
768
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
# [2.13.0](https://github.com/serenity-js/serenity-js/compare/v2.12.3...v2.13.0) (2020-07-25)
|
|
775
|
-
|
|
776
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
777
|
-
|
|
778
|
-
|
|
779
|
-
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
## [2.12.2](https://github.com/serenity-js/serenity-js/compare/v2.12.1...v2.12.2) (2020-07-08)
|
|
783
|
-
|
|
784
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
785
|
-
|
|
786
|
-
|
|
787
|
-
|
|
788
|
-
|
|
789
|
-
|
|
790
|
-
## [2.12.1](https://github.com/serenity-js/serenity-js/compare/v2.12.0...v2.12.1) (2020-07-07)
|
|
791
|
-
|
|
792
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
793
|
-
|
|
794
|
-
|
|
795
|
-
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
# [2.12.0](https://github.com/serenity-js/serenity-js/compare/v2.11.4...v2.12.0) (2020-07-06)
|
|
799
|
-
|
|
800
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
|
|
805
|
-
|
|
806
|
-
## [2.11.4](https://github.com/serenity-js/serenity-js/compare/v2.11.3...v2.11.4) (2020-07-05)
|
|
807
|
-
|
|
808
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
809
|
-
|
|
810
|
-
|
|
811
|
-
|
|
812
|
-
|
|
813
|
-
|
|
814
|
-
## [2.11.3](https://github.com/serenity-js/serenity-js/compare/v2.11.2...v2.11.3) (2020-07-05)
|
|
815
|
-
|
|
816
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
817
|
-
|
|
818
|
-
|
|
819
|
-
|
|
820
|
-
|
|
821
|
-
|
|
822
|
-
## [2.11.2](https://github.com/serenity-js/serenity-js/compare/v2.11.1...v2.11.2) (2020-07-04)
|
|
823
|
-
|
|
824
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
825
|
-
|
|
826
|
-
|
|
827
|
-
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
## [2.11.1](https://github.com/serenity-js/serenity-js/compare/v2.11.0...v2.11.1) (2020-06-30)
|
|
831
|
-
|
|
832
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
833
|
-
|
|
834
|
-
|
|
835
|
-
|
|
836
|
-
|
|
837
|
-
|
|
838
|
-
# [2.11.0](https://github.com/serenity-js/serenity-js/compare/v2.10.3...v2.11.0) (2020-06-20)
|
|
839
|
-
|
|
840
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
841
|
-
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
## [2.10.3](https://github.com/serenity-js/serenity-js/compare/v2.10.2...v2.10.3) (2020-06-15)
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
### Bug Fixes
|
|
850
|
-
|
|
851
|
-
* **deps:** updated Mocha to 8.x ([ad5fa66](https://github.com/serenity-js/serenity-js/commit/ad5fa66fd12971202ffc5ad65ca44e7cb2e21ddd))
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
## [2.10.2](https://github.com/serenity-js/serenity-js/compare/v2.10.1...v2.10.2) (2020-06-11)
|
|
858
|
-
|
|
859
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
## [2.10.1](https://github.com/serenity-js/serenity-js/compare/v2.10.0...v2.10.1) (2020-06-10)
|
|
866
|
-
|
|
867
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
868
|
-
|
|
869
|
-
|
|
870
|
-
|
|
871
|
-
|
|
872
|
-
|
|
873
|
-
# [2.10.0](https://github.com/serenity-js/serenity-js/compare/v2.9.0...v2.10.0) (2020-06-06)
|
|
874
|
-
|
|
875
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
876
|
-
|
|
877
|
-
|
|
878
|
-
|
|
879
|
-
|
|
880
|
-
|
|
881
|
-
# [2.7.0](https://github.com/serenity-js/serenity-js/compare/v2.6.0...v2.7.0) (2020-06-01)
|
|
882
|
-
|
|
883
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
884
|
-
|
|
885
|
-
|
|
886
|
-
|
|
887
|
-
|
|
888
|
-
|
|
889
|
-
# [2.6.0](https://github.com/serenity-js/serenity-js/compare/v2.5.5...v2.6.0) (2020-05-27)
|
|
890
|
-
|
|
891
|
-
|
|
892
|
-
### Features
|
|
893
|
-
|
|
894
|
-
* **assertions:** adding assertions isTrue() and isFalse() ([9c4c036](https://github.com/serenity-js/serenity-js/commit/9c4c036fcd9dd328aa3fd0ba0d84c7503f4c21c8))
|
|
895
|
-
|
|
896
|
-
|
|
897
|
-
|
|
898
|
-
|
|
899
|
-
|
|
900
|
-
## [2.5.2](https://github.com/serenity-js/serenity-js/compare/v2.5.1...v2.5.2) (2020-05-16)
|
|
901
|
-
|
|
902
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
903
|
-
|
|
904
|
-
|
|
905
|
-
|
|
906
|
-
|
|
907
|
-
|
|
908
|
-
## [2.5.1](https://github.com/serenity-js/serenity-js/compare/v2.5.0...v2.5.1) (2020-05-16)
|
|
909
|
-
|
|
910
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
911
|
-
|
|
912
|
-
|
|
913
|
-
|
|
914
|
-
|
|
915
|
-
|
|
916
|
-
# [2.5.0](https://github.com/serenity-js/serenity-js/compare/v2.4.1...v2.5.0) (2020-05-14)
|
|
917
|
-
|
|
918
|
-
|
|
919
|
-
### Bug Fixes
|
|
920
|
-
|
|
921
|
-
* **npm:** esport ES2018 instead of ES5 since we're supporting Node >= 10 ([a77091a](https://github.com/serenity-js/serenity-js/commit/a77091aa779736172a60b6ac99ec1b869aaea816))
|
|
922
|
-
|
|
923
|
-
|
|
924
|
-
|
|
925
|
-
|
|
926
|
-
|
|
927
|
-
## [2.4.1](https://github.com/serenity-js/serenity-js/compare/v2.4.0...v2.4.1) (2020-05-03)
|
|
928
|
-
|
|
929
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
930
|
-
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
# [2.4.0](https://github.com/serenity-js/serenity-js/compare/v2.3.6...v2.4.0) (2020-05-02)
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
### Bug Fixes
|
|
939
|
-
|
|
940
|
-
* **core:** plain JavaScript/JSON object are now pretty-printed to make them easier to read ([c63d64d](https://github.com/serenity-js/serenity-js/commit/c63d64de689ed7194b8fce9c65aa1a896d1728de)), closes [#509](https://github.com/serenity-js/serenity-js/issues/509)
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
## [2.3.6](https://github.com/serenity-js/serenity-js/compare/v2.3.5...v2.3.6) (2020-04-28)
|
|
947
|
-
|
|
948
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
949
|
-
|
|
950
|
-
|
|
951
|
-
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
## [2.3.5](https://github.com/serenity-js/serenity-js/compare/v2.3.4...v2.3.5) (2020-04-28)
|
|
955
|
-
|
|
956
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
## [2.3.4](https://github.com/serenity-js/serenity-js/compare/v2.3.3...v2.3.4) (2020-04-22)
|
|
963
|
-
|
|
964
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
965
|
-
|
|
966
|
-
|
|
967
|
-
|
|
968
|
-
|
|
969
|
-
|
|
970
|
-
## [2.3.3](https://github.com/serenity-js/serenity-js/compare/v2.3.2...v2.3.3) (2020-04-22)
|
|
971
|
-
|
|
972
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
973
|
-
|
|
974
|
-
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
## [2.3.1](https://github.com/serenity-js/serenity-js/compare/v2.3.0...v2.3.1) (2020-04-07)
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
### Bug Fixes
|
|
982
|
-
|
|
983
|
-
* **deps:** updated dependencies ([67401a7](https://github.com/serenity-js/serenity-js/commit/67401a774582386be02178e077b918a481630950))
|
|
984
|
-
|
|
985
|
-
|
|
986
|
-
|
|
987
|
-
|
|
988
|
-
|
|
989
|
-
## [2.2.2](https://github.com/serenity-js/serenity-js/compare/v2.2.1...v2.2.2) (2020-03-08)
|
|
990
|
-
|
|
991
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
992
|
-
|
|
993
|
-
|
|
994
|
-
|
|
995
|
-
|
|
996
|
-
|
|
997
|
-
## [2.2.1](https://github.com/serenity-js/serenity-js/compare/v2.2.0...v2.2.1) (2020-03-04)
|
|
998
|
-
|
|
999
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1000
|
-
|
|
1001
|
-
|
|
1002
|
-
|
|
1003
|
-
|
|
1004
|
-
|
|
1005
|
-
## [2.1.5](https://github.com/serenity-js/serenity-js/compare/v2.1.4...v2.1.5) (2020-02-10)
|
|
1006
|
-
|
|
1007
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1008
|
-
|
|
1009
|
-
|
|
1010
|
-
|
|
1011
|
-
|
|
1012
|
-
|
|
1013
|
-
## [2.1.4](https://github.com/serenity-js/serenity-js/compare/v2.1.3...v2.1.4) (2020-02-10)
|
|
1014
|
-
|
|
1015
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1016
|
-
|
|
1017
|
-
|
|
1018
|
-
|
|
1019
|
-
|
|
1020
|
-
|
|
1021
|
-
## [2.1.3](https://github.com/serenity-js/serenity-js/compare/v2.1.2...v2.1.3) (2020-02-10)
|
|
1022
|
-
|
|
1023
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1024
|
-
|
|
1025
|
-
|
|
1026
|
-
|
|
1027
|
-
|
|
1028
|
-
|
|
1029
|
-
## [2.1.2](https://github.com/serenity-js/serenity-js/compare/v2.1.1...v2.1.2) (2020-02-08)
|
|
1030
|
-
|
|
1031
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1032
|
-
|
|
1033
|
-
|
|
1034
|
-
|
|
1035
|
-
|
|
1036
|
-
|
|
1037
|
-
## [2.1.1](https://github.com/serenity-js/serenity-js/compare/v2.1.0...v2.1.1) (2020-02-08)
|
|
1038
|
-
|
|
1039
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
# [2.1.0](https://github.com/serenity-js/serenity-js/compare/v2.0.9...v2.1.0) (2020-02-07)
|
|
1046
|
-
|
|
1047
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
|
|
1053
|
-
## [2.0.7](https://github.com/serenity-js/serenity-js/compare/v2.0.6...v2.0.7) (2020-02-05)
|
|
1054
|
-
|
|
1055
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1056
|
-
|
|
1057
|
-
|
|
1058
|
-
|
|
1059
|
-
|
|
1060
|
-
|
|
1061
|
-
## [2.0.2](https://github.com/serenity-js/serenity-js/compare/v2.0.1...v2.0.2) (2020-02-04)
|
|
1062
|
-
|
|
1063
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1064
|
-
|
|
1065
|
-
|
|
1066
|
-
|
|
1067
|
-
|
|
1068
|
-
|
|
1069
|
-
## [2.0.1](https://github.com/serenity-js/serenity-js/compare/v2.0.1-alpha.132...v2.0.1) (2020-02-03)
|
|
1070
|
-
|
|
1071
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1072
|
-
|
|
1073
|
-
|
|
1074
|
-
|
|
1075
|
-
|
|
1076
|
-
|
|
1077
|
-
## [2.0.1-alpha.132](https://github.com/serenity-js/serenity-js/compare/v2.0.1-alpha.131...v2.0.1-alpha.132) (2020-02-03)
|
|
1078
|
-
|
|
1079
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1080
|
-
|
|
1081
|
-
|
|
1082
|
-
|
|
1083
|
-
|
|
1084
|
-
|
|
1085
|
-
## [2.0.1-alpha.131](https://github.com/serenity-js/serenity-js/compare/v2.0.1-alpha.130...v2.0.1-alpha.131) (2020-02-03)
|
|
1086
|
-
|
|
1087
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1088
|
-
|
|
1089
|
-
|
|
1090
|
-
|
|
1091
|
-
|
|
1092
|
-
|
|
1093
|
-
## [2.0.1-alpha.130](https://github.com/serenity-js/serenity-js/compare/v2.0.1-alpha.129...v2.0.1-alpha.130) (2020-02-03)
|
|
1094
|
-
|
|
1095
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1096
|
-
|
|
1097
|
-
|
|
1098
|
-
|
|
1099
|
-
|
|
1100
|
-
|
|
1101
|
-
## [2.0.1-alpha.129](https://github.com/serenity-js/serenity-js/compare/v2.0.1-alpha.128...v2.0.1-alpha.129) (2020-02-02)
|
|
1102
|
-
|
|
1103
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1104
|
-
|
|
1105
|
-
|
|
1106
|
-
|
|
1107
|
-
|
|
1108
|
-
|
|
1109
|
-
## [2.0.1-alpha.127](https://github.com/serenity-js/serenity-js/compare/v2.0.1-alpha.126...v2.0.1-alpha.127) (2020-02-02)
|
|
1110
|
-
|
|
1111
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1112
|
-
|
|
1113
|
-
|
|
1114
|
-
|
|
1115
|
-
|
|
1116
|
-
|
|
1117
|
-
## [2.0.1-alpha.126](https://github.com/serenity-js/serenity-js/compare/v2.0.1-alpha.125...v2.0.1-alpha.126) (2020-02-02)
|
|
1118
|
-
|
|
1119
|
-
|
|
1120
|
-
### Bug Fixes
|
|
1121
|
-
|
|
1122
|
-
* **npm:** corrected the repo URL after the jan-molak -> serenity-js repo migration ([a451199](https://github.com/serenity-js/serenity-js/commit/a4511995c50bf08977aa6c4c0f5d22ba7ead343f))
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1126
|
-
|
|
1127
|
-
|
|
1128
|
-
## [2.0.1-alpha.119](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.118...v2.0.1-alpha.119) (2020-02-02)
|
|
1129
|
-
|
|
1130
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1131
|
-
|
|
1132
|
-
|
|
1133
|
-
|
|
1134
|
-
|
|
1135
|
-
|
|
1136
|
-
## [2.0.1-alpha.118](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.117...v2.0.1-alpha.118) (2020-02-01)
|
|
1137
|
-
|
|
1138
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1139
|
-
|
|
1140
|
-
|
|
1141
|
-
|
|
1142
|
-
|
|
1143
|
-
|
|
1144
|
-
## [2.0.1-alpha.117](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.116...v2.0.1-alpha.117) (2020-01-29)
|
|
1145
|
-
|
|
1146
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1147
|
-
|
|
1148
|
-
|
|
1149
|
-
|
|
1150
|
-
|
|
1151
|
-
|
|
1152
|
-
## [2.0.1-alpha.116](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.115...v2.0.1-alpha.116) (2020-01-29)
|
|
1153
|
-
|
|
1154
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1155
|
-
|
|
1156
|
-
|
|
1157
|
-
|
|
1158
|
-
|
|
1159
|
-
|
|
1160
|
-
## [2.0.1-alpha.115](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.114...v2.0.1-alpha.115) (2020-01-27)
|
|
1161
|
-
|
|
1162
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1163
|
-
|
|
1164
|
-
|
|
1165
|
-
|
|
1166
|
-
|
|
1167
|
-
|
|
1168
|
-
## [2.0.1-alpha.114](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.113...v2.0.1-alpha.114) (2020-01-27)
|
|
1169
|
-
|
|
1170
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1171
|
-
|
|
1172
|
-
|
|
1173
|
-
|
|
1174
|
-
|
|
1175
|
-
|
|
1176
|
-
## [2.0.1-alpha.113](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.112...v2.0.1-alpha.113) (2020-01-26)
|
|
1177
|
-
|
|
1178
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1179
|
-
|
|
1180
|
-
|
|
1181
|
-
|
|
1182
|
-
|
|
1183
|
-
|
|
1184
|
-
## [2.0.1-alpha.112](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.111...v2.0.1-alpha.112) (2020-01-25)
|
|
1185
|
-
|
|
1186
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1187
|
-
|
|
1188
|
-
|
|
1189
|
-
|
|
1190
|
-
|
|
1191
|
-
|
|
1192
|
-
## [2.0.1-alpha.111](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.110...v2.0.1-alpha.111) (2020-01-25)
|
|
1193
|
-
|
|
1194
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1195
|
-
|
|
1196
|
-
|
|
1197
|
-
|
|
1198
|
-
|
|
1199
|
-
|
|
1200
|
-
## [2.0.1-alpha.110](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.109...v2.0.1-alpha.110) (2020-01-25)
|
|
1201
|
-
|
|
1202
|
-
|
|
1203
|
-
### Features
|
|
1204
|
-
|
|
1205
|
-
* **core:** new APIs to make configuring and using Serenity/JS easier ([d11a80d](https://github.com/jan-molak/serenity-js/commit/d11a80de66519cb16b6eaa61a39694006a76b5fb))
|
|
1206
|
-
|
|
1207
|
-
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
|
|
1211
|
-
## [2.0.1-alpha.109](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.108...v2.0.1-alpha.109) (2020-01-23)
|
|
1212
|
-
|
|
1213
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1214
|
-
|
|
1215
|
-
|
|
1216
|
-
|
|
1217
|
-
|
|
1218
|
-
|
|
1219
|
-
## [2.0.1-alpha.108](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.107...v2.0.1-alpha.108) (2020-01-20)
|
|
1220
|
-
|
|
1221
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1222
|
-
|
|
1223
|
-
|
|
1224
|
-
|
|
1225
|
-
|
|
1226
|
-
|
|
1227
|
-
## [2.0.1-alpha.107](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.106...v2.0.1-alpha.107) (2020-01-19)
|
|
1228
|
-
|
|
1229
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1230
|
-
|
|
1231
|
-
|
|
1232
|
-
|
|
1233
|
-
|
|
1234
|
-
|
|
1235
|
-
## [2.0.1-alpha.106](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.105...v2.0.1-alpha.106) (2020-01-19)
|
|
1236
|
-
|
|
1237
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1238
|
-
|
|
1239
|
-
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
|
|
1243
|
-
## [2.0.1-alpha.105](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.104...v2.0.1-alpha.105) (2020-01-16)
|
|
1244
|
-
|
|
1245
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1246
|
-
|
|
1247
|
-
|
|
1248
|
-
|
|
1249
|
-
|
|
1250
|
-
|
|
1251
|
-
## [2.0.1-alpha.104](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.103...v2.0.1-alpha.104) (2020-01-10)
|
|
1252
|
-
|
|
1253
|
-
|
|
1254
|
-
### Bug Fixes
|
|
1255
|
-
|
|
1256
|
-
* **lerna:** fixed the versions, since lerna managed to mess them up again ([0e87048](https://github.com/jan-molak/serenity-js/commit/0e87048219dc17a0c64a1bbf6b12128b18e85718))
|
|
1257
|
-
|
|
1258
|
-
|
|
1259
|
-
|
|
1260
|
-
|
|
1261
|
-
|
|
1262
|
-
## [2.0.1-alpha.101](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.100...v2.0.1-alpha.101) (2020-01-09)
|
|
1263
|
-
|
|
1264
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1265
|
-
|
|
1266
|
-
|
|
1267
|
-
|
|
1268
|
-
|
|
1269
|
-
|
|
1270
|
-
## [2.0.1-alpha.99](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.98...v2.0.1-alpha.99) (2020-01-09)
|
|
1271
|
-
|
|
1272
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1273
|
-
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
|
|
1278
|
-
## [2.0.1-alpha.98](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.97...v2.0.1-alpha.98) (2019-12-16)
|
|
1279
|
-
|
|
1280
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1281
|
-
|
|
1282
|
-
|
|
1283
|
-
|
|
1284
|
-
|
|
1285
|
-
|
|
1286
|
-
## [2.0.1-alpha.97](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.96...v2.0.1-alpha.97) (2019-12-15)
|
|
1287
|
-
|
|
1288
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1289
|
-
|
|
1290
|
-
|
|
1291
|
-
|
|
1292
|
-
|
|
1293
|
-
|
|
1294
|
-
## [2.0.1-alpha.96](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.95...v2.0.1-alpha.96) (2019-12-15)
|
|
1295
|
-
|
|
1296
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1302
|
-
## [2.0.1-alpha.95](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.94...v2.0.1-alpha.95) (2019-12-11)
|
|
1303
|
-
|
|
1304
|
-
|
|
1305
|
-
### Bug Fixes
|
|
1306
|
-
|
|
1307
|
-
* **dependencies:** updated Lerna and corrected the versions that got out of sync ([6c2f3af](https://github.com/jan-molak/serenity-js/commit/6c2f3afe98207c9241b5a7df970ec94fa37f4f1d))
|
|
1308
|
-
|
|
1309
|
-
|
|
1310
|
-
|
|
1311
|
-
|
|
1312
|
-
|
|
1313
|
-
## [2.0.1-alpha.90](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.89...v2.0.1-alpha.90) (2019-11-29)
|
|
1314
|
-
|
|
1315
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1316
|
-
|
|
1317
|
-
|
|
1318
|
-
|
|
1319
|
-
|
|
1320
|
-
|
|
1321
|
-
## [2.0.1-alpha.89](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.88...v2.0.1-alpha.89) (2019-11-27)
|
|
1322
|
-
|
|
1323
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1324
|
-
|
|
1325
|
-
|
|
1326
|
-
|
|
1327
|
-
|
|
1328
|
-
|
|
1329
|
-
## [2.0.1-alpha.88](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.87...v2.0.1-alpha.88) (2019-11-25)
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
### Bug Fixes
|
|
1333
|
-
|
|
1334
|
-
* **assertions:** Ensure correct 'actual' and 'expected' values are captured when an Expectation fail ([e503e55](https://github.com/jan-molak/serenity-js/commit/e503e55))
|
|
1335
|
-
|
|
1336
|
-
|
|
1337
|
-
|
|
1338
|
-
|
|
1339
|
-
|
|
1340
|
-
## [2.0.1-alpha.87](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.86...v2.0.1-alpha.87) (2019-11-10)
|
|
1341
|
-
|
|
1342
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1343
|
-
|
|
1344
|
-
|
|
1345
|
-
|
|
1346
|
-
|
|
1347
|
-
|
|
1348
|
-
## [2.0.1-alpha.86](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.85...v2.0.1-alpha.86) (2019-11-09)
|
|
1349
|
-
|
|
1350
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1351
|
-
|
|
1352
|
-
|
|
1353
|
-
|
|
1354
|
-
|
|
1355
|
-
|
|
1356
|
-
## [2.0.1-alpha.85](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.84...v2.0.1-alpha.85) (2019-10-13)
|
|
1357
|
-
|
|
1358
|
-
|
|
1359
|
-
### Bug Fixes
|
|
1360
|
-
|
|
1361
|
-
* **core:** Dropped support for node 6 ([74d1ece](https://github.com/jan-molak/serenity-js/commit/74d1ece))
|
|
1362
|
-
|
|
1363
|
-
|
|
1364
|
-
|
|
1365
|
-
|
|
1366
|
-
|
|
1367
|
-
## [2.0.1-alpha.84](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.83...v2.0.1-alpha.84) (2019-09-24)
|
|
1368
|
-
|
|
1369
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
## [2.0.1-alpha.83](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.82...v2.0.1-alpha.83) (2019-09-23)
|
|
1376
|
-
|
|
1377
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
|
|
1381
|
-
|
|
1382
|
-
|
|
1383
|
-
## [2.0.1-alpha.82](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.81...v2.0.1-alpha.82) (2019-09-22)
|
|
1384
|
-
|
|
1385
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
|
|
1389
|
-
|
|
1390
|
-
|
|
1391
|
-
## [2.0.1-alpha.81](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.80...v2.0.1-alpha.81) (2019-09-16)
|
|
1392
|
-
|
|
1393
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1394
|
-
|
|
1395
|
-
|
|
1396
|
-
|
|
1397
|
-
|
|
1398
|
-
|
|
1399
|
-
## [2.0.1-alpha.80](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.79...v2.0.1-alpha.80) (2019-09-05)
|
|
1400
|
-
|
|
1401
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1402
|
-
|
|
1403
|
-
|
|
1404
|
-
|
|
1405
|
-
|
|
1406
|
-
|
|
1407
|
-
## [2.0.1-alpha.77](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.76...v2.0.1-alpha.77) (2019-09-01)
|
|
1408
|
-
|
|
1409
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1410
|
-
|
|
1411
|
-
|
|
1412
|
-
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
## [2.0.1-alpha.76](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.75...v2.0.1-alpha.76) (2019-08-05)
|
|
1416
|
-
|
|
1417
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1418
|
-
|
|
1419
|
-
|
|
1420
|
-
|
|
1421
|
-
|
|
1422
|
-
|
|
1423
|
-
## [2.0.1-alpha.75](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.74...v2.0.1-alpha.75) (2019-07-16)
|
|
1424
|
-
|
|
1425
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1426
|
-
|
|
1427
|
-
|
|
1428
|
-
|
|
1429
|
-
|
|
1430
|
-
|
|
1431
|
-
## [2.0.1-alpha.74](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.73...v2.0.1-alpha.74) (2019-07-07)
|
|
1432
|
-
|
|
1433
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1434
|
-
|
|
1435
|
-
|
|
1436
|
-
|
|
1437
|
-
|
|
1438
|
-
|
|
1439
|
-
## [2.0.1-alpha.73](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.72...v2.0.1-alpha.73) (2019-06-24)
|
|
1440
|
-
|
|
1441
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1442
|
-
|
|
1443
|
-
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
## [2.0.1-alpha.72](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.71...v2.0.1-alpha.72) (2019-06-23)
|
|
1448
|
-
|
|
1449
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
## [2.0.1-alpha.71](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.70...v2.0.1-alpha.71) (2019-06-23)
|
|
1456
|
-
|
|
1457
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
## [2.0.1-alpha.70](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.69...v2.0.1-alpha.70) (2019-06-22)
|
|
1464
|
-
|
|
1465
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
## [2.0.1-alpha.69](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.68...v2.0.1-alpha.69) (2019-06-20)
|
|
1472
|
-
|
|
1473
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
## [2.0.1-alpha.68](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.67...v2.0.1-alpha.68) (2019-05-28)
|
|
1480
|
-
|
|
1481
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
## [2.0.1-alpha.67](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.66...v2.0.1-alpha.67) (2019-05-27)
|
|
1488
|
-
|
|
1489
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
## [2.0.1-alpha.66](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.65...v2.0.1-alpha.66) (2019-05-23)
|
|
1496
|
-
|
|
1497
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
## [2.0.1-alpha.65](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.64...v2.0.1-alpha.65) (2019-05-14)
|
|
1504
|
-
|
|
1505
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
## [2.0.1-alpha.64](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.63...v2.0.1-alpha.64) (2019-05-02)
|
|
1512
|
-
|
|
1513
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
## [2.0.1-alpha.63](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.62...v2.0.1-alpha.63) (2019-05-01)
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
### Features
|
|
1523
|
-
|
|
1524
|
-
* **assertions:** Expectation aliases via Expectation.to(description).soThatActual(expectation) ([d4b8c48](https://github.com/jan-molak/serenity-js/commit/d4b8c48))
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
## [2.0.1-alpha.62](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.61...v2.0.1-alpha.62) (2019-05-01)
|
|
1531
|
-
|
|
1532
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
## [2.0.1-alpha.61](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.60...v2.0.1-alpha.61) (2019-04-29)
|
|
1539
|
-
|
|
1540
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
## [2.0.1-alpha.60](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.59...v2.0.1-alpha.60) (2019-04-29)
|
|
6
|
+
# [3.0.0-rc.40](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.39...v3.0.0-rc.40) (2023-01-06)
|
|
1547
7
|
|
|
1548
8
|
**Note:** Version bump only for package @serenity-js/assertions
|
|
1549
9
|
|
|
@@ -1551,7 +11,7 @@ modules such as @serenity-js/protractor and @serenity-js/webdriverio. Dropped su
|
|
|
1551
11
|
|
|
1552
12
|
|
|
1553
13
|
|
|
1554
|
-
|
|
14
|
+
# [3.0.0-rc.39](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.38...v3.0.0-rc.39) (2023-01-05)
|
|
1555
15
|
|
|
1556
16
|
**Note:** Version bump only for package @serenity-js/assertions
|
|
1557
17
|
|
|
@@ -1559,45 +19,18 @@ modules such as @serenity-js/protractor and @serenity-js/webdriverio. Dropped su
|
|
|
1559
19
|
|
|
1560
20
|
|
|
1561
21
|
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
### Features
|
|
1566
|
-
|
|
1567
|
-
* **assertions:** Ensure reports the actual value if the expectation is not met ([4d00be3](https://github.com/jan-molak/serenity-js/commit/4d00be3))
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
## [2.0.1-alpha.57](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.56...v2.0.1-alpha.57) (2019-04-25)
|
|
22
|
+
# [3.0.0-rc.38](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.37...v3.0.0-rc.38) (2022-12-28)
|
|
1574
23
|
|
|
1575
24
|
|
|
1576
25
|
### Bug Fixes
|
|
1577
26
|
|
|
1578
|
-
* **
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
## [2.0.1-alpha.54](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.53...v2.0.1-alpha.54) (2019-04-24)
|
|
1585
|
-
|
|
1586
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
## [2.0.1-alpha.53](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.52...v2.0.1-alpha.53) (2019-04-24)
|
|
1593
|
-
|
|
1594
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
27
|
+
* **assertions:** improved AssertionError messages ([958ab7f](https://github.com/serenity-js/serenity-js/commit/958ab7f79daba8df25dbcff50d6a67b2bef58b29))
|
|
1595
28
|
|
|
1596
29
|
|
|
1597
30
|
|
|
1598
31
|
|
|
1599
32
|
|
|
1600
|
-
|
|
33
|
+
# [3.0.0-rc.37](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.36...v3.0.0-rc.37) (2022-12-18)
|
|
1601
34
|
|
|
1602
35
|
**Note:** Version bump only for package @serenity-js/assertions
|
|
1603
36
|
|
|
@@ -1605,26 +38,7 @@ modules such as @serenity-js/protractor and @serenity-js/webdriverio. Dropped su
|
|
|
1605
38
|
|
|
1606
39
|
|
|
1607
40
|
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
## [2.0.1-alpha.50](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.49...v2.0.1-alpha.50) (2019-04-18)
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
### Features
|
|
1620
|
-
|
|
1621
|
-
* **assertions:** Ensure can embed the assertion error in any custom RuntimeError ([e18d331](https://github.com/jan-molak/serenity-js/commit/e18d331))
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
## [2.0.1-alpha.49](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.48...v2.0.1-alpha.49) (2019-04-17)
|
|
41
|
+
# [3.0.0-rc.36](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.35...v3.0.0-rc.36) (2022-11-28)
|
|
1628
42
|
|
|
1629
43
|
**Note:** Version bump only for package @serenity-js/assertions
|
|
1630
44
|
|
|
@@ -1632,18 +46,7 @@ modules such as @serenity-js/protractor and @serenity-js/webdriverio. Dropped su
|
|
|
1632
46
|
|
|
1633
47
|
|
|
1634
48
|
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
### Bug Fixes
|
|
1639
|
-
|
|
1640
|
-
* **core:** Corrected the RuntimeError class so that the name of the constructor is present in the st ([0d2164d](https://github.com/jan-molak/serenity-js/commit/0d2164d))
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
## [2.0.1-alpha.47](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.46...v2.0.1-alpha.47) (2019-04-07)
|
|
49
|
+
# [3.0.0-rc.35](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.34...v3.0.0-rc.35) (2022-11-25)
|
|
1647
50
|
|
|
1648
51
|
**Note:** Version bump only for package @serenity-js/assertions
|
|
1649
52
|
|
|
@@ -1651,29 +54,7 @@ modules such as @serenity-js/protractor and @serenity-js/webdriverio. Dropped su
|
|
|
1651
54
|
|
|
1652
55
|
|
|
1653
56
|
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
### Bug Fixes
|
|
1658
|
-
|
|
1659
|
-
* **core:** Reverted the peerDependencies change as Lerna can't support it ([e27f55f](https://github.com/jan-molak/serenity-js/commit/e27f55f))
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
## [2.0.1-alpha.45](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.44...v2.0.1-alpha.45) (2019-04-05)
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
### Bug Fixes
|
|
1669
|
-
|
|
1670
|
-
* **core:** Made all [@serenity-js](https://github.com/serenity-js) packages rely on a fixed version of [@serenity-js](https://github.com/serenity-js)/core ([9955a34](https://github.com/jan-molak/serenity-js/commit/9955a34))
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
## [2.0.1-alpha.44](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.43...v2.0.1-alpha.44) (2019-04-04)
|
|
57
|
+
# [3.0.0-rc.34](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.33...v3.0.0-rc.34) (2022-11-21)
|
|
1677
58
|
|
|
1678
59
|
**Note:** Version bump only for package @serenity-js/assertions
|
|
1679
60
|
|
|
@@ -1681,18 +62,7 @@ modules such as @serenity-js/protractor and @serenity-js/webdriverio. Dropped su
|
|
|
1681
62
|
|
|
1682
63
|
|
|
1683
64
|
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
### Features
|
|
1688
|
-
|
|
1689
|
-
* **core:** Actor.named('name') allows for instantiating an Actor without explicitly providing the S ([581a6ba](https://github.com/jan-molak/serenity-js/commit/581a6ba))
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
## [2.0.1-alpha.42](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.41...v2.0.1-alpha.42) (2019-03-29)
|
|
65
|
+
# [3.0.0-rc.33](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.32...v3.0.0-rc.33) (2022-11-07)
|
|
1696
66
|
|
|
1697
67
|
**Note:** Version bump only for package @serenity-js/assertions
|
|
1698
68
|
|
|
@@ -1700,7 +70,7 @@ modules such as @serenity-js/protractor and @serenity-js/webdriverio. Dropped su
|
|
|
1700
70
|
|
|
1701
71
|
|
|
1702
72
|
|
|
1703
|
-
|
|
73
|
+
# [3.0.0-rc.32](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.31...v3.0.0-rc.32) (2022-10-12)
|
|
1704
74
|
|
|
1705
75
|
**Note:** Version bump only for package @serenity-js/assertions
|
|
1706
76
|
|
|
@@ -1708,7 +78,7 @@ modules such as @serenity-js/protractor and @serenity-js/webdriverio. Dropped su
|
|
|
1708
78
|
|
|
1709
79
|
|
|
1710
80
|
|
|
1711
|
-
|
|
81
|
+
# [3.0.0-rc.31](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.30...v3.0.0-rc.31) (2022-10-07)
|
|
1712
82
|
|
|
1713
83
|
**Note:** Version bump only for package @serenity-js/assertions
|
|
1714
84
|
|
|
@@ -1716,7 +86,7 @@ modules such as @serenity-js/protractor and @serenity-js/webdriverio. Dropped su
|
|
|
1716
86
|
|
|
1717
87
|
|
|
1718
88
|
|
|
1719
|
-
|
|
89
|
+
# [3.0.0-rc.30](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.29...v3.0.0-rc.30) (2022-10-05)
|
|
1720
90
|
|
|
1721
91
|
**Note:** Version bump only for package @serenity-js/assertions
|
|
1722
92
|
|
|
@@ -1724,7 +94,7 @@ modules such as @serenity-js/protractor and @serenity-js/webdriverio. Dropped su
|
|
|
1724
94
|
|
|
1725
95
|
|
|
1726
96
|
|
|
1727
|
-
|
|
97
|
+
# [3.0.0-rc.29](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.28...v3.0.0-rc.29) (2022-10-01)
|
|
1728
98
|
|
|
1729
99
|
**Note:** Version bump only for package @serenity-js/assertions
|
|
1730
100
|
|
|
@@ -1732,37 +102,24 @@ modules such as @serenity-js/protractor and @serenity-js/webdriverio. Dropped su
|
|
|
1732
102
|
|
|
1733
103
|
|
|
1734
104
|
|
|
1735
|
-
|
|
105
|
+
# [3.0.0-rc.28](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.27...v3.0.0-rc.28) (2022-09-30)
|
|
1736
106
|
|
|
1737
107
|
|
|
1738
108
|
### Bug Fixes
|
|
1739
109
|
|
|
1740
|
-
* **core:**
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
## [2.0.1-alpha.36](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.35...v2.0.1-alpha.36) (2019-03-25)
|
|
1747
|
-
|
|
1748
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
## [2.0.1-alpha.35](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.34...v2.0.1-alpha.35) (2019-03-20)
|
|
110
|
+
* **core:** activity is now able to detect invocation location on Node 14 ([41f4776](https://github.com/serenity-js/serenity-js/commit/41f4776736620bc32d474d9b66f69c742f8eca96)), closes [#1240](https://github.com/serenity-js/serenity-js/issues/1240)
|
|
1755
111
|
|
|
1756
112
|
|
|
1757
113
|
### Features
|
|
1758
114
|
|
|
1759
|
-
* **
|
|
115
|
+
* **assertions:** new assertion about a property of an object ([9cc03d5](https://github.com/serenity-js/serenity-js/commit/9cc03d5c80c03d1969238e63018c6d5320c6a539))
|
|
116
|
+
* **playwright-test:** improved Playwright Test reports ([6c6b537](https://github.com/serenity-js/serenity-js/commit/6c6b5379dfc324a4fb75d758daa7782109f1c5ab)), closes [#1240](https://github.com/serenity-js/serenity-js/issues/1240)
|
|
1760
117
|
|
|
1761
118
|
|
|
1762
119
|
|
|
1763
120
|
|
|
1764
121
|
|
|
1765
|
-
|
|
122
|
+
# [3.0.0-rc.27](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.26...v3.0.0-rc.27) (2022-08-26)
|
|
1766
123
|
|
|
1767
124
|
**Note:** Version bump only for package @serenity-js/assertions
|
|
1768
125
|
|
|
@@ -1770,7 +127,7 @@ modules such as @serenity-js/protractor and @serenity-js/webdriverio. Dropped su
|
|
|
1770
127
|
|
|
1771
128
|
|
|
1772
129
|
|
|
1773
|
-
|
|
130
|
+
# [3.0.0-rc.26](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.25...v3.0.0-rc.26) (2022-08-15)
|
|
1774
131
|
|
|
1775
132
|
**Note:** Version bump only for package @serenity-js/assertions
|
|
1776
133
|
|
|
@@ -1778,91 +135,19 @@ modules such as @serenity-js/protractor and @serenity-js/webdriverio. Dropped su
|
|
|
1778
135
|
|
|
1779
136
|
|
|
1780
137
|
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
### Features
|
|
1785
|
-
|
|
1786
|
-
* **assertions:** isBefore, isAfter and containItemsWhereEachItem expectations ([db6e465](https://github.com/jan-molak/serenity-js/commit/db6e465))
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
## [2.0.1-alpha.31](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.30...v2.0.1-alpha.31) (2019-03-07)
|
|
138
|
+
# [3.0.0-rc.25](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.24...v3.0.0-rc.25) (2022-08-15)
|
|
1793
139
|
|
|
1794
140
|
|
|
1795
141
|
### Bug Fixes
|
|
1796
142
|
|
|
1797
|
-
* **
|
|
1798
|
-
|
|
1799
|
-
|
|
1800
|
-
|
|
1801
|
-
|
|
1802
|
-
|
|
1803
|
-
## [2.0.1-alpha.30](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.29...v2.0.1-alpha.30) (2019-03-07)
|
|
1804
|
-
|
|
1805
|
-
|
|
1806
|
-
### Features
|
|
1807
|
-
|
|
1808
|
-
* **assertions:** containAtLeastOneThat(expectation) ([dec5618](https://github.com/jan-molak/serenity-js/commit/dec5618))
|
|
1809
|
-
|
|
1810
|
-
|
|
1811
|
-
|
|
1812
|
-
|
|
1813
|
-
|
|
1814
|
-
## [2.0.1-alpha.29](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.28...v2.0.1-alpha.29) (2019-03-06)
|
|
1815
|
-
|
|
1816
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1817
|
-
|
|
1818
|
-
|
|
1819
|
-
|
|
1820
|
-
|
|
1821
|
-
|
|
1822
|
-
## [2.0.1-alpha.28](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.27...v2.0.1-alpha.28) (2019-03-06)
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
### Features
|
|
1826
|
-
|
|
1827
|
-
* **assertions:** property(name, expectation) allows to assert on a property of an object ([feaaf79](https://github.com/jan-molak/serenity-js/commit/feaaf79))
|
|
1828
|
-
|
|
1829
|
-
|
|
1830
|
-
|
|
1831
|
-
|
|
1832
|
-
|
|
1833
|
-
## [2.0.1-alpha.27](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.26...v2.0.1-alpha.27) (2019-03-05)
|
|
1834
|
-
|
|
1835
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1836
|
-
|
|
1837
|
-
|
|
1838
|
-
|
|
1839
|
-
|
|
1840
|
-
|
|
1841
|
-
## [2.0.1-alpha.26](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.25...v2.0.1-alpha.26) (2019-03-05)
|
|
1842
|
-
|
|
1843
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1844
|
-
|
|
1845
|
-
|
|
1846
|
-
|
|
1847
|
-
|
|
1848
|
-
|
|
1849
|
-
## [2.0.1-alpha.25](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.24...v2.0.1-alpha.25) (2019-03-04)
|
|
1850
|
-
|
|
1851
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1852
|
-
|
|
143
|
+
* **core:** extracted common TypeScript configuration ([0108370](https://github.com/serenity-js/serenity-js/commit/0108370a6a7ebb4bcd71773482801d29f5660268))
|
|
144
|
+
* **deps:** updated TinyTypes to 1.19.0 ([f6d53e4](https://github.com/serenity-js/serenity-js/commit/f6d53e4dbbfcb81139bd888ac11441b6344e47f5))
|
|
1853
145
|
|
|
1854
146
|
|
|
1855
147
|
|
|
1856
148
|
|
|
1857
|
-
## [2.0.1-alpha.24](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.23...v2.0.1-alpha.24) (2019-03-02)
|
|
1858
|
-
|
|
1859
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1860
|
-
|
|
1861
|
-
|
|
1862
149
|
|
|
1863
|
-
|
|
1864
|
-
|
|
1865
|
-
## [2.0.1-alpha.23](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.22...v2.0.1-alpha.23) (2019-03-02)
|
|
150
|
+
# [3.0.0-rc.24](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.23...v3.0.0-rc.24) (2022-07-23)
|
|
1866
151
|
|
|
1867
152
|
**Note:** Version bump only for package @serenity-js/assertions
|
|
1868
153
|
|
|
@@ -1870,212 +155,140 @@ modules such as @serenity-js/protractor and @serenity-js/webdriverio. Dropped su
|
|
|
1870
155
|
|
|
1871
156
|
|
|
1872
157
|
|
|
1873
|
-
|
|
158
|
+
# [3.0.0-rc.23](https://github.com/serenity-js/serenity-js/compare/v2.33.10...v3.0.0-rc.23) (2022-07-19)
|
|
1874
159
|
|
|
1875
160
|
|
|
1876
161
|
### Bug Fixes
|
|
1877
162
|
|
|
1878
|
-
* **
|
|
1879
|
-
|
|
1880
|
-
|
|
1881
|
-
### Features
|
|
1882
|
-
|
|
1883
|
-
* **protractor:** Nestable Targets, relative Questions and improvements to Pick ([56ea633](https://github.com/jan-molak/serenity-js/commit/56ea633))
|
|
1884
|
-
|
|
1885
|
-
|
|
163
|
+
* **node:** support for Node 18 ([73212bc](https://github.com/serenity-js/serenity-js/commit/73212bc9deb1998d871b0720a6b437687b3ceddc)), closes [#1243](https://github.com/serenity-js/serenity-js/issues/1243)
|
|
1886
164
|
|
|
1887
165
|
|
|
1888
166
|
|
|
1889
|
-
|
|
167
|
+
# [3.0.0-rc.22](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.21...v3.0.0-rc.22) (2022-07-15)
|
|
1890
168
|
|
|
1891
169
|
|
|
1892
170
|
### Features
|
|
1893
171
|
|
|
1894
|
-
* **assertions:**
|
|
1895
|
-
* **protractor:** Pick can be used with protractor questions and interactions ([6f7c5bd](https://github.com/jan-molak/serenity-js/commit/6f7c5bd))
|
|
1896
|
-
|
|
1897
|
-
|
|
1898
|
-
|
|
1899
|
-
|
|
172
|
+
* **assertions:** isCloseTo(expected, tolerance) ([bb0e935](https://github.com/serenity-js/serenity-js/commit/bb0e935e197b195da598ccbec6c6cf7704dd875b))
|
|
1900
173
|
|
|
1901
|
-
## [2.0.1-alpha.20](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.19...v2.0.1-alpha.20) (2019-02-19)
|
|
1902
174
|
|
|
1903
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1904
|
-
|
|
1905
|
-
|
|
1906
|
-
|
|
1907
|
-
|
|
1908
|
-
|
|
1909
|
-
## [2.0.1-alpha.19](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.18...v2.0.1-alpha.19) (2019-02-14)
|
|
1910
|
-
|
|
1911
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1912
175
|
|
|
176
|
+
# [3.0.0-rc.21](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.20...v3.0.0-rc.21) (2022-07-11)
|
|
1913
177
|
|
|
1914
178
|
|
|
1915
179
|
|
|
1916
|
-
|
|
1917
|
-
## [2.0.1-alpha.18](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.17...v2.0.1-alpha.18) (2019-02-14)
|
|
1918
|
-
|
|
1919
|
-
|
|
1920
|
-
### Bug Fixes
|
|
1921
|
-
|
|
1922
|
-
* **core:** `formatted` tag function correctly removes new line characters from the output ([41e9db3](https://github.com/jan-molak/serenity-js/commit/41e9db3))
|
|
180
|
+
# [3.0.0-rc.20](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.19...v3.0.0-rc.20) (2022-07-11)
|
|
1923
181
|
|
|
1924
182
|
|
|
1925
183
|
### Features
|
|
1926
184
|
|
|
1927
|
-
* **
|
|
1928
|
-
|
|
1929
|
-
|
|
1930
|
-
|
|
185
|
+
* **core:** interactions to Wait.for and Wait.until are now browser-independent ([d115142](https://github.com/serenity-js/serenity-js/commit/d1151427bed96c1ebd0d1dcc4159c6aeedc605de)), closes [#1035](https://github.com/serenity-js/serenity-js/issues/1035) [#1236](https://github.com/serenity-js/serenity-js/issues/1236)
|
|
1931
186
|
|
|
1932
187
|
|
|
1933
|
-
## [2.0.1-alpha.17](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.16...v2.0.1-alpha.17) (2019-02-13)
|
|
1934
|
-
|
|
1935
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1936
|
-
|
|
1937
|
-
|
|
1938
|
-
|
|
1939
|
-
|
|
1940
|
-
|
|
1941
|
-
## [2.0.1-alpha.16](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.15...v2.0.1-alpha.16) (2019-02-13)
|
|
1942
|
-
|
|
1943
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1944
|
-
|
|
1945
|
-
|
|
1946
|
-
|
|
1947
|
-
|
|
1948
|
-
|
|
1949
|
-
## [2.0.1-alpha.15](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.14...v2.0.1-alpha.15) (2019-02-13)
|
|
1950
|
-
|
|
1951
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1952
188
|
|
|
189
|
+
# [3.0.0-rc.19](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.18...v3.0.0-rc.19) (2022-06-11)
|
|
1953
190
|
|
|
1954
191
|
|
|
1955
192
|
|
|
193
|
+
# [3.0.0-rc.18](https://github.com/serenity-js/serenity-js/compare/v2.33.9...v3.0.0-rc.18) (2022-06-06)
|
|
1956
194
|
|
|
1957
|
-
## [2.0.1-alpha.14](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.13...v2.0.1-alpha.14) (2019-02-06)
|
|
1958
|
-
|
|
1959
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1960
|
-
|
|
1961
|
-
|
|
1962
|
-
|
|
1963
|
-
|
|
1964
|
-
|
|
1965
|
-
## [2.0.1-alpha.13](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.12...v2.0.1-alpha.13) (2019-02-06)
|
|
1966
|
-
|
|
1967
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1968
195
|
|
|
196
|
+
### Bug Fixes
|
|
1969
197
|
|
|
198
|
+
* **deps:** updated tiny-types ([f1951cf](https://github.com/serenity-js/serenity-js/commit/f1951cf753df3807b5778d116f8e8bc3f24830a7))
|
|
199
|
+
* **deps:** updated tiny-types to 1.18.2 ([83a651c](https://github.com/serenity-js/serenity-js/commit/83a651c4c2f3f8dbaabcdacba94c720efdff45dd))
|
|
1970
200
|
|
|
1971
201
|
|
|
1972
202
|
|
|
1973
|
-
|
|
203
|
+
# [3.0.0-rc.17](https://github.com/serenity-js/serenity-js/compare/v2.33.8...v3.0.0-rc.17) (2022-06-02)
|
|
1974
204
|
|
|
1975
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1976
205
|
|
|
1977
206
|
|
|
207
|
+
# [3.0.0-rc.16](https://github.com/serenity-js/serenity-js/compare/v2.33.6...v3.0.0-rc.16) (2022-04-15)
|
|
1978
208
|
|
|
1979
209
|
|
|
1980
210
|
|
|
1981
|
-
|
|
211
|
+
# [3.0.0-rc.15](https://github.com/serenity-js/serenity-js/compare/v2.33.5...v3.0.0-rc.15) (2022-04-10)
|
|
1982
212
|
|
|
1983
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1984
213
|
|
|
1985
214
|
|
|
215
|
+
# [3.0.0-rc.14](https://github.com/serenity-js/serenity-js/compare/v2.33.3...v3.0.0-rc.14) (2022-03-28)
|
|
1986
216
|
|
|
1987
217
|
|
|
1988
218
|
|
|
1989
|
-
|
|
219
|
+
# [3.0.0-rc.13](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.12...v3.0.0-rc.13) (2022-03-02)
|
|
1990
220
|
|
|
1991
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
1992
221
|
|
|
1993
222
|
|
|
223
|
+
# [3.0.0-rc.12](https://github.com/serenity-js/serenity-js/compare/v2.33.2...v3.0.0-rc.12) (2022-02-23)
|
|
1994
224
|
|
|
1995
225
|
|
|
1996
226
|
|
|
1997
|
-
|
|
227
|
+
# [3.0.0-rc.11](https://github.com/serenity-js/serenity-js/compare/v2.33.1...v3.0.0-rc.11) (2022-02-13)
|
|
1998
228
|
|
|
1999
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
2000
229
|
|
|
2001
230
|
|
|
231
|
+
# [3.0.0-rc.10](https://github.com/serenity-js/serenity-js/compare/v2.33.0...v3.0.0-rc.10) (2022-02-03)
|
|
2002
232
|
|
|
2003
233
|
|
|
2004
234
|
|
|
2005
|
-
|
|
235
|
+
# [3.0.0-rc.9](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.8...v3.0.0-rc.9) (2022-02-01)
|
|
2006
236
|
|
|
2007
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
2008
237
|
|
|
2009
238
|
|
|
239
|
+
# [3.0.0-rc.8](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.7...v3.0.0-rc.8) (2022-01-28)
|
|
2010
240
|
|
|
2011
241
|
|
|
2012
242
|
|
|
2013
|
-
|
|
243
|
+
# [3.0.0-rc.7](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.6...v3.0.0-rc.7) (2022-01-28)
|
|
2014
244
|
|
|
2015
245
|
|
|
2016
246
|
### Features
|
|
2017
247
|
|
|
2018
|
-
* **
|
|
2019
|
-
|
|
248
|
+
* **assertions:** isPresent works with any Optional ([cea75dc](https://github.com/serenity-js/serenity-js/commit/cea75dc1c728e45e06a87aaf9c1573a237334285)), closes [#1103](https://github.com/serenity-js/serenity-js/issues/1103)
|
|
249
|
+
* **core:** replaced `Adapter` with `QuestionAdapter` and introduced `Optional` ([8d84ad3](https://github.com/serenity-js/serenity-js/commit/8d84ad3863e3c726533d0f21934fb1e2fa8b3022)), closes [#1103](https://github.com/serenity-js/serenity-js/issues/1103)
|
|
250
|
+
* **core:** support for Optional chaining, expectation isPresent, refactored Expectations ([1841ee5](https://github.com/serenity-js/serenity-js/commit/1841ee5fc48cfa403ddc53358f75764d9a010c21)), closes [#1099](https://github.com/serenity-js/serenity-js/issues/1099) [#1099](https://github.com/serenity-js/serenity-js/issues/1099) [#1103](https://github.com/serenity-js/serenity-js/issues/1103)
|
|
2020
251
|
|
|
2021
252
|
|
|
2022
253
|
|
|
254
|
+
# [3.0.0-rc.6](https://github.com/serenity-js/serenity-js/compare/v2.32.7...v3.0.0-rc.6) (2022-01-10)
|
|
2023
255
|
|
|
2024
|
-
## [2.0.1-alpha.6](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.5...v2.0.1-alpha.6) (2019-02-02)
|
|
2025
|
-
|
|
2026
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
2027
|
-
|
|
2028
|
-
|
|
2029
|
-
|
|
2030
|
-
|
|
2031
|
-
|
|
2032
|
-
## [2.0.1-alpha.5](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.4...v2.0.1-alpha.5) (2019-02-02)
|
|
2033
|
-
|
|
2034
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
2035
|
-
|
|
2036
|
-
|
|
2037
|
-
|
|
2038
|
-
|
|
2039
|
-
|
|
2040
|
-
## [2.0.1-alpha.4](https://github.com/jan-molak/serenity-js/compare/v2.0.1-alpha.3...v2.0.1-alpha.4) (2019-02-01)
|
|
2041
|
-
|
|
2042
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
2043
256
|
|
|
2044
257
|
|
|
258
|
+
# [3.0.0-rc.5](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.4...v3.0.0-rc.5) (2022-01-07)
|
|
2045
259
|
|
|
2046
260
|
|
|
2047
261
|
|
|
2048
|
-
|
|
262
|
+
# [3.0.0-rc.4](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.3...v3.0.0-rc.4) (2021-12-30)
|
|
2049
263
|
|
|
2050
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
2051
264
|
|
|
2052
265
|
|
|
266
|
+
# [3.0.0-rc.3](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.2...v3.0.0-rc.3) (2021-12-29)
|
|
2053
267
|
|
|
2054
268
|
|
|
269
|
+
### Bug Fixes
|
|
2055
270
|
|
|
2056
|
-
|
|
271
|
+
* **deps:** updated tiny-types to 1.17.0 ([3187051](https://github.com/serenity-js/serenity-js/commit/3187051594158b4b450c82e851e417fd2ed21652))
|
|
2057
272
|
|
|
2058
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
2059
273
|
|
|
2060
274
|
|
|
275
|
+
# [3.0.0-rc.2](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.1...v3.0.0-rc.2) (2021-12-09)
|
|
2061
276
|
|
|
2062
277
|
|
|
2063
278
|
|
|
2064
|
-
|
|
279
|
+
# [3.0.0-rc.1](https://github.com/serenity-js/serenity-js/compare/v3.0.0-rc.0...v3.0.0-rc.1) (2021-12-09)
|
|
2065
280
|
|
|
2066
|
-
**Note:** Version bump only for package @serenity-js/assertions
|
|
2067
281
|
|
|
2068
282
|
|
|
283
|
+
# [3.0.0-rc.0](https://github.com/serenity-js/serenity-js/compare/v2.32.5...v3.0.0-rc.0) (2021-12-08)
|
|
2069
284
|
|
|
2070
285
|
|
|
286
|
+
### Bug Fixes
|
|
2071
287
|
|
|
2072
|
-
|
|
288
|
+
* **core:** 3.0 RC ([469d54e](https://github.com/serenity-js/serenity-js/commit/469d54e4f81ef430566b93852e3174826f8ef672)), closes [#805](https://github.com/serenity-js/serenity-js/issues/805)
|
|
2073
289
|
|
|
2074
290
|
|
|
2075
|
-
###
|
|
291
|
+
### BREAKING CHANGES
|
|
2076
292
|
|
|
2077
|
-
* **
|
|
2078
|
-
|
|
2079
|
-
* **assertions:** new assertions library ([71b16ea](https://github.com/jan-molak/serenity-js/commit/71b16ea))
|
|
2080
|
-
* **core:** knownUnkowns - an Actor answers Questions and more! ([892ba7a](https://github.com/jan-molak/serenity-js/commit/892ba7a))
|
|
2081
|
-
* **rest:** [@serenity-js](https://github.com/serenity-js)/rest 2.0 ([ad0a677](https://github.com/jan-molak/serenity-js/commit/ad0a677))
|
|
293
|
+
* **core:** Introduced @serenity-js/web - a shared library for Serenity/JS Web integration
|
|
294
|
+
modules such as @serenity-js/protractor and @serenity-js/webdriverio. Dropped support for Node 12.
|