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