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