creevey 0.10.35 → 0.10.36
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/.release-please-manifest.json +3 -0
- package/CHANGELOG.md +1936 -1046
- package/cliff.toml +63 -0
- package/dist/cli.js +0 -0
- package/dist/server/reporters/junit.d.ts +6 -0
- package/dist/server/reporters/junit.js +93 -18
- package/dist/server/reporters/junit.js.map +1 -1
- package/docs/superpowers/plans/2026-05-12-junit-reporter-improvements.md +927 -0
- package/docs/superpowers/plans/2026-05-13-release-please-migration.md +319 -0
- package/docs/superpowers/specs/2026-05-12-junit-reporter-improvements-design.md +173 -0
- package/docs/superpowers/specs/2026-05-13-release-please-migration-design.md +205 -0
- package/memories/workflow.md +18 -9
- package/package.json +11 -7
- package/release-please-config.json +18 -0
- package/src/server/reporters/junit.ts +122 -34
package/CHANGELOG.md
CHANGED
|
@@ -1,1607 +1,2497 @@
|
|
|
1
|
-
#
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
Creevey
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
|
|
115
|
-
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
|
|
124
|
-
|
|
125
|
-
|
|
126
|
-
|
|
127
|
-
|
|
128
|
-
|
|
129
|
-
|
|
130
|
-
|
|
131
|
-
|
|
132
|
-
|
|
133
|
-
|
|
134
|
-
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
138
|
-
|
|
139
|
-
|
|
140
|
-
|
|
141
|
-
|
|
142
|
-
|
|
143
|
-
|
|
144
|
-
|
|
145
|
-
|
|
146
|
-
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
|
|
169
|
-
|
|
170
|
-
|
|
171
|
-
|
|
172
|
-
-
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
|
|
180
|
-
|
|
181
|
-
|
|
182
|
-
|
|
183
|
-
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
187
|
-
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
|
|
193
|
-
|
|
194
|
-
|
|
195
|
-
|
|
196
|
-
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
-
|
|
213
|
-
|
|
214
|
-
|
|
215
|
-
|
|
216
|
-
-
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
-
|
|
220
|
-
|
|
221
|
-
|
|
222
|
-
|
|
223
|
-
|
|
224
|
-
|
|
225
|
-
|
|
226
|
-
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
You can now use the `odiff` library to compare images, as an alternative to `pixelmatch`.
|
|
235
|
-
|
|
236
|
-
- **How to Use It:** Turn it on with the `--odiff` command-line flag.
|
|
237
|
-
- You can change its settings with `odiffOptions` in your Creevey config (by default, it uses `threshold: 0` and `antialiasing: true`).
|
|
238
|
-
|
|
239
|
-
#### 8. Easier Storybook Autostart
|
|
240
|
-
|
|
241
|
-
Starting Storybook with Creevey is now a bit simpler.
|
|
242
|
-
|
|
243
|
-
- **`--storybook-start` (`-s`) Flag:** This will automatically start your Storybook development server. Creevey will figure out if you're using npm, yarn, or pnpm.
|
|
244
|
-
- **How to Use It:** `creevey test -s` or `creevey test --storybook-start`
|
|
245
|
-
- If you want to use a different Storybook port, you can add `--storybook-port`.
|
|
246
|
-
- **Finds Free Ports Automatically:** If the usual Storybook port (6006) is busy, and you're using `-s`, Creevey will automatically find and use a port that's free.
|
|
247
|
-
|
|
248
|
-
---
|
|
249
|
-
|
|
250
|
-
### Other Cool Stuff and Fixes:
|
|
251
|
-
|
|
252
|
-
- **React 18 Update:** Creevey's UI parts and Storybook connection now use React 18. This is mostly an internal thing, but if you have custom React components that talk to Creevey, make sure they're compatible.
|
|
253
|
-
- **Build System Switched from Webpack to Vite:** We've changed the internal build system for client stuff to Vite. This means faster build times and a better development setup (like HMR). This is an internal change and probably won't affect you unless you had custom Webpack settings for Creevey.
|
|
254
|
-
- **Dependency Updates & Dynamic Imports:** We've updated several main dependencies (like `@koa/cors`, `@octokit/core`, `typescript`). Some parts of Creevey now load on demand to make things a bit faster. Functions like `getCreeveyCache()` and `getMatchers()` are now async.
|
|
255
|
-
- **Storybook Upgrades:** Creevey now works well with Storybook 8.x versions (like 8.4.1, 8.6.12). This includes some API changes, like how icons are imported (`@storybook/components` is now `@storybook/icons`) and how manager APIs are imported (`@storybook/api` is now `@storybook/manager-api`).
|
|
256
|
-
- **Under-the-Hood Improvements:**
|
|
257
|
-
- The internal HTTP server switched from Koa to Hyper-Express for better performance.
|
|
258
|
-
- How reporters are created and how they handle events is now managed centrally in the main Creevey runner.
|
|
259
|
-
- **Global Environment Variable:** We added a `__CREEVEY_ENV__` global variable. It's `false` in Storybook dev mode and `true` when Creevey is running tests.
|
|
260
|
-
- **`--noDocker` Option:** A command-line flag to turn off Docker, even if `useDocker: true` is in your config. The default way stories are provided has changed to `hybridStoriesProvider`.
|
|
261
|
-
- **Test File Extensions:** Added support for `.mts` and `.cts` test files.
|
|
262
|
-
- **Base64 Image Support:** Image matching functions can now handle base64 encoded image strings.
|
|
263
|
-
- **Video Recording Fix:** Playwright won't fail anymore if `ffmpeg` isn't around for video recording; it will just give a warning and continue without video.
|
|
264
|
-
- **UI/UX:**
|
|
265
|
-
- Added hotkeys for moving around the report more easily (e.g., Alt+Space to toggle images in SwapView).
|
|
266
|
-
- Images in report mode load better now.
|
|
267
|
-
- Screenshots of just the viewport are now the default, instead of full-page screenshots, to keep things consistent.
|
|
268
|
-
- **Fixes:**
|
|
269
|
-
- Lots of fixes for Docker container stuff, including cleaning them up and registry support.
|
|
270
|
-
- Better error messages from Selenium and Playwright.
|
|
271
|
-
- Fixes for reporter problems (TeamCity artifacts, JUnit compatibility).
|
|
272
|
-
- Fixed how regular expressions were handled between the main process and workers.
|
|
273
|
-
- Made sure processes shut down properly to avoid orphaned ones.
|
|
274
|
-
- Fixed some issues with browsers not starting correctly on the first run.
|
|
275
|
-
- **Dependency Management:** We regularly update dependencies, including big ones like ESLint and TypeScript. Moved several Storybook dependencies to `devDependencies`.
|
|
276
|
-
- **Code Quality:** Cleaned up logging, how tests are managed (the `TestsManager` class), and how themes are handled.
|
|
277
|
-
|
|
278
|
-
---
|
|
279
|
-
|
|
280
|
-
We hope these updates make using Creevey a better experience for you. As always, check out the documentation for more details, and let us know if you run into any problems. Happy testing!
|
|
281
|
-
|
|
282
|
-
# [0.9.0-beta.5](https://github.com/wKich/creevey/compare/v0.9.0-beta.4...v0.9.0-beta.5) (2023-04-14)
|
|
283
|
-
|
|
284
|
-
# [0.9.0-beta.4](https://github.com/wKich/creevey/compare/v0.9.0-beta.3...v0.9.0-beta.4) (2023-03-24)
|
|
285
|
-
|
|
286
|
-
# [0.9.0-beta.3](https://github.com/wKich/creevey/compare/v0.8.0...v0.9.0-beta.3) (2023-03-24)
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
|
+
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
|
+
|
|
8
|
+
## [0.10.36](https://github.com/creevey/creevey/compare/v0.10.35...v0.10.36) (2026-05-12)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### ⚠ BREAKING CHANGES
|
|
12
|
+
|
|
13
|
+
* The Creevey Storybook addon has been removed. Remove Creevey addon preset/decorator usage from your Storybook config and migrate to the standalone web UI or the Playwright/Selenium workflows. See documentation for updated setup and migration guidance.
|
|
14
|
+
|
|
15
|
+
### Features
|
|
16
|
+
|
|
17
|
+
* 🎸 add `dockerImagePlatform` config option ([f52de6c](https://github.com/creevey/creevey/commit/f52de6c31ab41012ce127702d0967c8f40fb7c20))
|
|
18
|
+
* 🎸 add `failFast` CLI option. Terminates on first fail ([0023bbb](https://github.com/creevey/creevey/commit/0023bbb022e71b7b3cb60fd7cea9bdb89a7e87bc))
|
|
19
|
+
* 🎸 add `failFat` parameter to the config ([c4fe538](https://github.com/creevey/creevey/commit/c4fe538569311cc7ca3c0c9e8e93916cf4a3cb8b))
|
|
20
|
+
* 🎸 add ability to update story arguments from test cases ([18d8ecb](https://github.com/creevey/creevey/commit/18d8ecb909097b585282a04bfb0b0c721ad45e22))
|
|
21
|
+
* 🎸 add storiesProvider config option ([7cf7454](https://github.com/creevey/creevey/commit/7cf74542d527bcfd5b41b17026464a4f9298e1f5))
|
|
22
|
+
* 🎸 add support `play()` story method ([318ac62](https://github.com/creevey/creevey/commit/318ac628cb14fb0de7a89c088ae241df520df1e7))
|
|
23
|
+
* 🎸 add webdriver debug logging ([6124a43](https://github.com/creevey/creevey/commit/6124a43b79d2761c3f04f6f3f118599ecb517c27))
|
|
24
|
+
* 🎸 change format for `skip` parameter ([f244b7c](https://github.com/creevey/creevey/commit/f244b7cd344b276762408a1df841e5afc3853fad))
|
|
25
|
+
* 🎸 failFast doesn't disable maxRetries option ([c81c637](https://github.com/creevey/creevey/commit/c81c63784aecea890596647225ce8278d7383df5))
|
|
26
|
+
* 🎸 improve delay option to allow specify browsers ([4bec3b5](https://github.com/creevey/creevey/commit/4bec3b5a4ddca2e2610db4ecf79f0e859202da65))
|
|
27
|
+
* 🎸 Improve skip options ([2fcc624](https://github.com/creevey/creevey/commit/2fcc624a9b2ab1dcdce3927779c8f58bb0a0d02c))
|
|
28
|
+
* 🎸 run extract stories.json on storybook-build ([803a1d1](https://github.com/creevey/creevey/commit/803a1d1b9b774121e1a611dfbbe1a3ad041339af))
|
|
29
|
+
* add git-cliff changelog and automated release/publish workflows ([f69890b](https://github.com/creevey/creevey/commit/f69890b9ef8b65e267c8e3e2251527b976732660))
|
|
30
|
+
* add host param to config ([4d10422](https://github.com/creevey/creevey/commit/4d10422aa57e7dbc80c1f4a880f3472200abdf7b))
|
|
31
|
+
* devcontainer support ([75ccad0](https://github.com/creevey/creevey/commit/75ccad0079b6fe13af8b8a02fb4a476f48fd5bdc))
|
|
32
|
+
* devcontainer support ([5347af1](https://github.com/creevey/creevey/commit/5347af135ffe0dc70f4aa1484a60156e184773ed))
|
|
33
|
+
* drop support for storybook < 6.4 ([fb8c0f5](https://github.com/creevey/creevey/commit/fb8c0f5158ab7c0495949eaa61ba52049c3d66cf))
|
|
34
|
+
* drop support of storybook < 6.4 ([4ce669e](https://github.com/creevey/creevey/commit/4ce669e7cee58af3bfc8b8fe09d8b31559512b01))
|
|
35
|
+
* host option for creevey-server ([c9b4738](https://github.com/creevey/creevey/commit/c9b4738f2500299d5c96da4c791bcfb65caf7c91))
|
|
36
|
+
* host option for creevey-server ([c38eb4a](https://github.com/creevey/creevey/commit/c38eb4a5849195a0bbee5fcb999a11c26d71d31b))
|
|
37
|
+
* hybrid stories provider ([89d9c73](https://github.com/creevey/creevey/commit/89d9c7357369dffb320ea06fe158b4113f57034c))
|
|
38
|
+
* **junit:** add failure/error body text and separate errors count ([e702c4e](https://github.com/creevey/creevey/commit/e702c4ee3fec01cef2a9d1f1486554a0082af882))
|
|
39
|
+
* **junit:** add hostname and sequential id attributes to testsuite ([c4e69f7](https://github.com/creevey/creevey/commit/c4e69f75bf5955b1fb7af85cbeb3730abf370652))
|
|
40
|
+
* **junit:** add screenshot attachment properties to testcase elements ([693b375](https://github.com/creevey/creevey/commit/693b3753a1918a1d2bf8a46bafbcffbf9b5bf923))
|
|
41
|
+
* **junit:** extend writeElement with textContent parameter ([5334660](https://github.com/creevey/creevey/commit/53346607fd7781ff1323ddedbfa9cd6c4c351395))
|
|
42
|
+
* **junit:** fix suite keying for multi-browser runs ([0ea235a](https://github.com/creevey/creevey/commit/0ea235af51faa857cabcc2f390dfd4d7ef2afdc4))
|
|
43
|
+
* new creevey params: "global" and "kind" ([7d7c885](https://github.com/creevey/creevey/commit/7d7c88521a28c91586bfdd663500bea576845292))
|
|
44
|
+
* remove Creevey Storybook addon; unify webdriver plumbing; update web UI ([37f36e5](https://github.com/creevey/creevey/commit/37f36e5452daf7d43b560d26c3adaee71138cfca))
|
|
45
|
+
* support storybook 6.4 ([74010e5](https://github.com/creevey/creevey/commit/74010e53d93ff1815427cd7ee818481ce6e21288))
|
|
46
|
+
* support Storybook 6.4 ([b4baf97](https://github.com/creevey/creevey/commit/b4baf97a31208c74671b4d24141d6b19f0f7635c))
|
|
47
|
+
|
|
48
|
+
|
|
49
|
+
### Bug Fixes
|
|
50
|
+
|
|
51
|
+
* 🐛 icons layout ([6cca3bf](https://github.com/creevey/creevey/commit/6cca3bf0c789ab3b2cbfd3c757fc0a1e1520e50f))
|
|
52
|
+
* 🐛 improve `waitForStorybook` wait for `setStories` event ([8431918](https://github.com/creevey/creevey/commit/8431918656378b6760a60da8570fb18952de210c))
|
|
53
|
+
* 🐛 improve update to approve only failed images ([f0e5719](https://github.com/creevey/creevey/commit/f0e5719f1b8d1b0fb105bacb5619cd903eadced6))
|
|
54
|
+
* 🐛 make creevey work with vite ([0d576c6](https://github.com/creevey/creevey/commit/0d576c6e2660fd4f29ba4efd440d4af9ee590ac2))
|
|
55
|
+
* 🐛 report test as a failed for teamcity reporter ([0e58915](https://github.com/creevey/creevey/commit/0e58915b6d14441e14851c7c3bc888fe0759ddce))
|
|
56
|
+
* 🐛 resolve storybook preview config after babel/register ([cb3f46c](https://github.com/creevey/creevey/commit/cb3f46c0502264cdd5aefc2dc397da1892938eb5))
|
|
57
|
+
* 🐛 revert cross-env scripts, as they not work in unix ([92b04a5](https://github.com/creevey/creevey/commit/92b04a5bed56191b7ee6bd169f5327e30a1c2232))
|
|
58
|
+
* 🐛 save report data after each tests run ([86c6c2e](https://github.com/creevey/creevey/commit/86c6c2ee1261bdc38fc3b7c6ebb1753348339a0a))
|
|
59
|
+
* 🐛 selenium url path to '/' for webkit browsers ([748d896](https://github.com/creevey/creevey/commit/748d8968c645ee684cec5dcd899d2de749d5e2c6))
|
|
60
|
+
* 🐛 some issues for storybook 5.3 and create-react-preset ([c1e20b3](https://github.com/creevey/creevey/commit/c1e20b31234875d3ef961ce3804e3384d858f94d))
|
|
61
|
+
* 🐛 update didn't use report data to approve failed tests ([107d0fa](https://github.com/creevey/creevey/commit/107d0faf4c717bbb7a547422e9baf7105389d0bd))
|
|
62
|
+
* **addon:** make bundlers to load esm version of addon ([07a4c12](https://github.com/creevey/creevey/commit/07a4c12fc8311c96e33c92df595d2934d80a6410))
|
|
63
|
+
* **addon:** make bundlers to load esm version of addon ([f2937ca](https://github.com/creevey/creevey/commit/f2937caccca158e68c8be45d0882ec9b62eb05b2))
|
|
64
|
+
* **addon:** restore and move ie11 support to separate addon ([3ba2cc7](https://github.com/creevey/creevey/commit/3ba2cc7fde281037406f1705c0abc616c576e641))
|
|
65
|
+
* **addon:** restore and move ie11 support to separate preset ([2d65e94](https://github.com/creevey/creevey/commit/2d65e9417d366d956ee32f4f0c9acd57864fc820))
|
|
66
|
+
* **addon:** restore IE11 support ([3561391](https://github.com/creevey/creevey/commit/35613914618cb86911dfafad538576a95d57f84a))
|
|
67
|
+
* **addon:** restore IE11 support ([94f452f](https://github.com/creevey/creevey/commit/94f452fff4225e974c9efdff21f982d5155de4f8))
|
|
68
|
+
* allow setting timeouts via capabilities ([72de9e5](https://github.com/creevey/creevey/commit/72de9e50b818587309f665c782637ae43c3e4864))
|
|
69
|
+
* allow using "capture" with nodejsStoriesProvider ([c4d8562](https://github.com/creevey/creevey/commit/c4d8562d5f5839cc27267e24127bbc42dcecd427))
|
|
70
|
+
* browser-node regexp parameters transfering ([737670e](https://github.com/creevey/creevey/commit/737670e18aa5d0ce416fe12b765406116b453e31))
|
|
71
|
+
* correct call of the test fn ([98c03ad](https://github.com/creevey/creevey/commit/98c03ad1700486bfd75170f4517970717250f6d8))
|
|
72
|
+
* default yarn verison to stable ([48bfaed](https://github.com/creevey/creevey/commit/48bfaed9ccadb3f804c68612084ed41409f8d970))
|
|
73
|
+
* deps issue with storybook@6.5 and yarn@1 ([f91990a](https://github.com/creevey/creevey/commit/f91990a594828766b212a657dcb4c7df895bf877))
|
|
74
|
+
* drop support of SkipOption on root skip level ([bfaae0b](https://github.com/creevey/creevey/commit/bfaae0b8c0190516cde02575e7e3140a6dcaf812))
|
|
75
|
+
* drop support of SkipOption on root skip level ([31be1bf](https://github.com/creevey/creevey/commit/31be1bf4d67f464ea6790e6e218ca75674366711))
|
|
76
|
+
* handle null from selectStory ([1895602](https://github.com/creevey/creevey/commit/1895602143b3236ab195e11fcfa162df2a01af03))
|
|
77
|
+
* ie11 support ([523e35b](https://github.com/creevey/creevey/commit/523e35b6950d978ca3aaa77dd4f072a835053687))
|
|
78
|
+
* infinite UI loading ([94d61aa](https://github.com/creevey/creevey/commit/94d61aa7bb92762c2fa84e385b39b98845f63f70))
|
|
79
|
+
* infinite UI loading ([4f7b47d](https://github.com/creevey/creevey/commit/4f7b47db3ff1274217b044ce608e34d22148fe32))
|
|
80
|
+
* **junit:** address code quality issues in test infrastructure ([c7351dd](https://github.com/creevey/creevey/commit/c7351ddaf62d20dee2279a6c13afdf37a15cacc9))
|
|
81
|
+
* **junit:** align failure/error counting with XML elements ([abfb9e2](https://github.com/creevey/creevey/commit/abfb9e26a3b926e03a1879490a0f325fc2987935))
|
|
82
|
+
* **junit:** fix multi-line textContent indentation and isImageMismatch guard ([bebbaac](https://github.com/creevey/creevey/commit/bebbaac2888dd95d9ae326269a5e581556f6131f))
|
|
83
|
+
* **junit:** hoist hostname call and tighten spec-attr test assertions ([ee83f41](https://github.com/creevey/creevey/commit/ee83f4130920688e7a78d07dffd208b74a00546a))
|
|
84
|
+
* **junit:** tighten attachment assertions and add multi-attachment test ([d9e1840](https://github.com/creevey/creevey/commit/d9e1840e7fbf057b234eb0f640fe4b1f571b73c8))
|
|
85
|
+
* move addon to the separate entry point ([f3fc59f](https://github.com/creevey/creevey/commit/f3fc59f980a56f87f882507c3a0367ed6a356d33))
|
|
86
|
+
* move the addon to a separate entry point ([7c23ee1](https://github.com/creevey/creevey/commit/7c23ee1323220bede4df5b4c26c6c4811f8652e5))
|
|
87
|
+
* prevent importing browser-specific code to node ([37706ef](https://github.com/creevey/creevey/commit/37706efbb49dd5bd1d6ec06821fac52480a0e132))
|
|
88
|
+
* **providers:** set creevey port for all providers ([79e8aae](https://github.com/creevey/creevey/commit/79e8aae629d79260f93a93057486bab659801a46))
|
|
89
|
+
* **release:** use manifest mode instead of release-type in workflow ([bbb78c0](https://github.com/creevey/creevey/commit/bbb78c03cc9033f67e8e107a95ff96623ade6e79))
|
|
90
|
+
* rename creevey config extensions from .mts to .ts ([fc8d7c4](https://github.com/creevey/creevey/commit/fc8d7c44ced881aa84b5ed043510e00569107e77))
|
|
91
|
+
* **selenium-webdriver:** bump [@types](https://github.com/types) package version ([fcc6a2c](https://github.com/creevey/creevey/commit/fcc6a2c056c116125f8d3162375ea8e6acd1de06))
|
|
92
|
+
* **selenium-webdriver:** bump [@types](https://github.com/types) package version ([ca4b369](https://github.com/creevey/creevey/commit/ca4b369046e2c56e0548f5cbb6f98c17b0125228))
|
|
93
|
+
* stabilize 0.8.0 ([15dfdda](https://github.com/creevey/creevey/commit/15dfddafe9c9a48f57fe86843f6f7981930214e7))
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
### Documentation
|
|
97
|
+
|
|
98
|
+
* ✏️ add maintaining note in readme ([2a1354d](https://github.com/creevey/creevey/commit/2a1354ddbb1de7fb5cce3d6349aa9f8335f6f7a7))
|
|
99
|
+
* ✏️ update todos ([57ddc97](https://github.com/creevey/creevey/commit/57ddc979555b0128a9a1e029e025400dfccea90b))
|
|
100
|
+
* add creevey logo ([b75d3f7](https://github.com/creevey/creevey/commit/b75d3f7231ca4dd4f268f88da220b4aa63dd2f46))
|
|
101
|
+
* add creevey logo ([acf7e78](https://github.com/creevey/creevey/commit/acf7e784e6cab0d5333f76236c3a754e198c2012))
|
|
102
|
+
* add junit reporter improvements design spec ([0c8be62](https://github.com/creevey/creevey/commit/0c8be62247f1cfa7fb908dc4844959f19ff0dd9e))
|
|
103
|
+
* doc global and kind parameters ([851ee45](https://github.com/creevey/creevey/commit/851ee45c4b4da6958f8cb78f6062d8fa8eb186e4))
|
|
104
|
+
* doc supported storybook versions ([1870ce8](https://github.com/creevey/creevey/commit/1870ce850f5098a39ed899ed02cded21dba17a3f))
|
|
105
|
+
* extend multiple skip example ([81d2f0e](https://github.com/creevey/creevey/commit/81d2f0eafa5bce841297e8ae3f8764b8bd5486e1))
|
|
106
|
+
* mark junit reporter improvements plan and design as completed ([c3a05c9](https://github.com/creevey/creevey/commit/c3a05c93ae3c43f90b7c973b79a5a6b318fadde5))
|
|
107
|
+
* update release process in memories ([b51c574](https://github.com/creevey/creevey/commit/b51c574cb444b87782ce53d72f8c060d8cb2d5a7))
|
|
108
|
+
* update skip examples ([08dc28e](https://github.com/creevey/creevey/commit/08dc28eb6dfb77e18fc33f4bbc0981c49ad8ce67))
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
### Code Refactoring
|
|
112
|
+
|
|
113
|
+
* 💡 cleanup some stuff ([d6ed892](https://github.com/creevey/creevey/commit/d6ed892f32ba3602d1fc3f2617b49f45389031fd))
|
|
114
|
+
* 💡 prepare to support svelte CSF stories ([7d9c2c6](https://github.com/creevey/creevey/commit/7d9c2c6887ca1de33b3abea9ca106bc3c46547bb))
|
|
115
|
+
* **junit:** extract suiteKey/getOrCreateSuite helpers, fix test assertions ([e43191c](https://github.com/creevey/creevey/commit/e43191cf9260dfaf9bf78b580a2fe16c3bc94800))
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
### Tests
|
|
119
|
+
|
|
120
|
+
* 💍 add more e2e tests for storybook building and extract ([1f6b559](https://github.com/creevey/creevey/commit/1f6b559d591e80c4cc2dc7a9b20803175c11d751))
|
|
121
|
+
* 💍 add one more test for skip options ([b6ff022](https://github.com/creevey/creevey/commit/b6ff02236da6b9d27fa15ddf2278c9bd012d6d85))
|
|
122
|
+
* 💍 approve tests ([fed22af](https://github.com/creevey/creevey/commit/fed22af34afe8070f90849114bc4d30f85132053))
|
|
123
|
+
* 💍 fix line endings for windows ([3a69def](https://github.com/creevey/creevey/commit/3a69def5f0f283cfe0ad6325f57d639185665dd8))
|
|
124
|
+
* 💍 fix loader test for windows ([14955b1](https://github.com/creevey/creevey/commit/14955b143585111562498387d498bb8d15c812e4))
|
|
125
|
+
* 💍 fix some e2e cases ([8cbe731](https://github.com/creevey/creevey/commit/8cbe731b4fceaaf7a854dc8532b34962033ce2dc))
|
|
126
|
+
* 💍 fix utils tests names ([e400c22](https://github.com/creevey/creevey/commit/e400c22f19264fd737415246aa2bf22dafa21847))
|
|
127
|
+
* 💍 remove e2e tests use jest instead for unit tests ([82339e8](https://github.com/creevey/creevey/commit/82339e8c852c22324fbf795fb9ea90489d3c17fd))
|
|
128
|
+
* 💍 update approval e2e tests ([c5d62d2](https://github.com/creevey/creevey/commit/c5d62d2712104d971ab159fe395223028bbf436a))
|
|
129
|
+
* 💍 update e2e tests ([9b72248](https://github.com/creevey/creevey/commit/9b7224849cc40d23836240c8397647c10b823c2d))
|
|
130
|
+
* 💍 Update screenshot images ([6effd5a](https://github.com/creevey/creevey/commit/6effd5a4904e85703091e83b174ce211e6431700))
|
|
131
|
+
* add e2e test for 6.4 ([946a257](https://github.com/creevey/creevey/commit/946a2575bbfcf2c0c51883d35e820b397a8f4fac))
|
|
132
|
+
* approve latest e2e changes ([75ba132](https://github.com/creevey/creevey/commit/75ba13246e5c96ad414fa8b7c83c4c6ccacfb281))
|
|
133
|
+
* approve minor changes ([419475d](https://github.com/creevey/creevey/commit/419475df54ced555079463b356be42d7e7a85071))
|
|
134
|
+
* stories serialization ([9446990](https://github.com/creevey/creevey/commit/94469909c75f70b956c1ab7159fc1a6b05e72a1b))
|
|
135
|
+
* update screenshots due browsers update ([ec85c0a](https://github.com/creevey/creevey/commit/ec85c0a60e79b94e69b97c4d31668d81292d2347))
|
|
136
|
+
* wip ([42c3535](https://github.com/creevey/creevey/commit/42c35356f78d756ed79cc0bd88dc06756940c31f))
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
### Miscellaneous
|
|
140
|
+
|
|
141
|
+
* release as 0.10.36 ([b4644cf](https://github.com/creevey/creevey/commit/b4644cf9fb6cb1ce47a79e1fa020b695ef7908fe))
|
|
142
|
+
|
|
143
|
+
## [Unreleased]
|
|
144
|
+
|
|
145
|
+
### Added
|
|
146
|
+
|
|
147
|
+
- 🎸 add support `play()` story method
|
|
148
|
+
- Hybrid stories provider
|
|
149
|
+
- Drop support for storybook < 6.4
|
|
150
|
+
- Host option for creevey-server
|
|
151
|
+
- Add host param to config
|
|
152
|
+
- Devcontainer support
|
|
153
|
+
- Remove Creevey Storybook addon; unify webdriver plumbing; update web UI
|
|
154
|
+
- **junit:** Extend writeElement with textContent parameter
|
|
155
|
+
- **junit:** Fix suite keying for multi-browser runs
|
|
156
|
+
- **junit:** Add failure/error body text and separate errors count
|
|
157
|
+
- **junit:** Add screenshot attachment properties to testcase elements
|
|
158
|
+
- **junit:** Add hostname and sequential id attributes to testsuite
|
|
159
|
+
|
|
160
|
+
### Changed
|
|
161
|
+
|
|
162
|
+
- **junit:** Extract suiteKey/getOrCreateSuite helpers, fix test assertions
|
|
163
|
+
|
|
164
|
+
### Documentation
|
|
165
|
+
|
|
166
|
+
- ✏️ add maintaining note in readme
|
|
167
|
+
- Doc supported storybook versions
|
|
168
|
+
- Update skip examples
|
|
169
|
+
- Extend multiple skip example
|
|
170
|
+
- Add creevey logo
|
|
171
|
+
- Add junit reporter improvements design spec
|
|
172
|
+
- Mark junit reporter improvements plan and design as completed
|
|
173
|
+
|
|
174
|
+
### Fixed
|
|
175
|
+
|
|
176
|
+
- **selenium-webdriver:** Bump @types package version
|
|
177
|
+
- **addon:** Restore and move ie11 support to separate addon
|
|
178
|
+
- Correct call of the test fn
|
|
179
|
+
- Prevent importing browser-specific code to node
|
|
180
|
+
- Ie11 support
|
|
181
|
+
- Allow setting timeouts via capabilities
|
|
182
|
+
- Browser-node regexp parameters transfering
|
|
183
|
+
- Handle null from selectStory
|
|
184
|
+
- Move addon to the separate entry point
|
|
185
|
+
- Infinite UI loading
|
|
186
|
+
- **addon:** Restore IE11 support
|
|
187
|
+
- Drop support of SkipOption on root skip level
|
|
188
|
+
- **addon:** Make bundlers to load esm version of addon
|
|
189
|
+
- **providers:** Set creevey port for all providers
|
|
190
|
+
- 🐛 icons layout
|
|
191
|
+
- Default yarn verison to stable
|
|
192
|
+
- **junit:** Address code quality issues in test infrastructure
|
|
193
|
+
- **junit:** Align failure/error counting with XML elements
|
|
194
|
+
- **junit:** Tighten attachment assertions and add multi-attachment test
|
|
195
|
+
- **junit:** Hoist hostname call and tighten spec-attr test assertions
|
|
196
|
+
- **junit:** Fix multi-line textContent indentation and isImageMismatch guard
|
|
197
|
+
|
|
198
|
+
### Miscellaneous
|
|
199
|
+
|
|
200
|
+
- 🤖 fix lint issues
|
|
201
|
+
- 🤖 disable storybook e2e test
|
|
202
|
+
- Move readDirRecursive to utils
|
|
203
|
+
- Merge params from tests correctly
|
|
204
|
+
- Use storybook's Id constructor
|
|
205
|
+
- Export new entities from index
|
|
206
|
+
- Add typescript support
|
|
207
|
+
- Move to testsFiles dir and renamve config options
|
|
208
|
+
- 🤖 update deps
|
|
209
|
+
- 🤖 update deps
|
|
210
|
+
- 🤖 change babel config to support unit tests
|
|
211
|
+
- Dont wait testFn call result
|
|
212
|
+
- Ignore testFn return value
|
|
213
|
+
- Move presets to common dir
|
|
214
|
+
- Add entry points for presets
|
|
215
|
+
- Prevent polyfills duplication
|
|
216
|
+
- Restore babel transformation of client code
|
|
217
|
+
- Fix exports field
|
|
218
|
+
- Complete ie11 preset
|
|
219
|
+
- Trying to remove webpack usage
|
|
220
|
+
- Export test parser types
|
|
221
|
+
- Temp fix for IgnoredException
|
|
222
|
+
- 0.8.1-sb7.1
|
|
223
|
+
- 0.8.1-sb7.4
|
|
224
|
+
- Support storybook 7
|
|
225
|
+
- Fix types
|
|
226
|
+
- 0.9.0-beta.6
|
|
227
|
+
- Wip
|
|
228
|
+
- 0.9.0-beta.8
|
|
229
|
+
- Clear preset
|
|
230
|
+
- 0.9.0-beta.9
|
|
231
|
+
- 0.9.0-beta.10
|
|
232
|
+
- 0.9.0-beta.11
|
|
233
|
+
- Try suppress the "document unloaded" error
|
|
287
234
|
|
|
288
|
-
###
|
|
235
|
+
### Testing
|
|
289
236
|
|
|
290
|
-
-
|
|
237
|
+
- 💍 update e2e tests
|
|
238
|
+
- 💍 remove e2e tests use jest instead for unit tests
|
|
239
|
+
- Stories serialization
|
|
240
|
+
- Update screenshots due browsers update
|
|
241
|
+
- Remove old screenshots
|
|
242
|
+
|
|
243
|
+
### Build
|
|
244
|
+
|
|
245
|
+
- Commit yarn.lock changes
|
|
246
|
+
- Setup package.json's exports field
|
|
247
|
+
- Use @storybook/core-client instead of @storybook/core
|
|
248
|
+
|
|
249
|
+
### Ci
|
|
291
250
|
|
|
292
|
-
|
|
251
|
+
- 🎡 updated circle ci images versions
|
|
252
|
+
- 🎡 update github actions script
|
|
253
|
+
- Run lint before build in CI workflow
|
|
254
|
+
- Downgrade node version from 22 to 20 in CI workflow
|
|
293
255
|
|
|
294
|
-
|
|
256
|
+
### Wip
|
|
295
257
|
|
|
296
|
-
|
|
258
|
+
- Test hybrid provider
|
|
259
|
+
## [0.8.0-beta.0] - 2022-03-17
|
|
297
260
|
|
|
298
|
-
|
|
261
|
+
### Added
|
|
299
262
|
|
|
300
|
-
|
|
263
|
+
- Support storybook 6.4
|
|
264
|
+
- New creevey params: "global" and "kind"
|
|
265
|
+
- 🎸 change format for `skip` parameter
|
|
266
|
+
- 🎸 Improve skip options
|
|
301
267
|
|
|
302
|
-
###
|
|
268
|
+
### Documentation
|
|
303
269
|
|
|
304
|
-
-
|
|
270
|
+
- Doc global and kind parameters
|
|
305
271
|
|
|
306
|
-
|
|
272
|
+
### Fixed
|
|
307
273
|
|
|
308
|
-
|
|
274
|
+
- 🐛 revert cross-env scripts, as they not work in unix
|
|
309
275
|
|
|
310
|
-
|
|
276
|
+
### Miscellaneous
|
|
311
277
|
|
|
312
|
-
|
|
278
|
+
- Update stories params
|
|
313
279
|
|
|
314
|
-
###
|
|
280
|
+
### Testing
|
|
315
281
|
|
|
316
|
-
-
|
|
317
|
-
-
|
|
318
|
-
-
|
|
319
|
-
-
|
|
320
|
-
-
|
|
321
|
-
-
|
|
322
|
-
-
|
|
323
|
-
-
|
|
324
|
-
- move addon to the separate entry point ([f3fc59f](https://github.com/wKich/creevey/commit/f3fc59f980a56f87f882507c3a0367ed6a356d33))
|
|
325
|
-
- prevent importing browser-specific code to node ([37706ef](https://github.com/wKich/creevey/commit/37706efbb49dd5bd1d6ec06821fac52480a0e132))
|
|
326
|
-
- **selenium-webdriver:** bump [@types](https://github.com/types) package version ([ca4b369](https://github.com/wKich/creevey/commit/ca4b369046e2c56e0548f5cbb6f98c17b0125228))
|
|
282
|
+
- 💍 Update screenshot images
|
|
283
|
+
- Add e2e test for 6.4
|
|
284
|
+
- Approve latest e2e changes
|
|
285
|
+
- Approve minor changes
|
|
286
|
+
- Wip
|
|
287
|
+
- 💍 update approval e2e tests
|
|
288
|
+
- 💍 fix utils tests names
|
|
289
|
+
- 💍 add one more test for skip options
|
|
327
290
|
|
|
328
|
-
###
|
|
291
|
+
### Build
|
|
329
292
|
|
|
330
|
-
-
|
|
331
|
-
|
|
293
|
+
- Update storybook
|
|
294
|
+
## [0.7.39] - 2021-11-04
|
|
332
295
|
|
|
333
|
-
|
|
296
|
+
### Added
|
|
334
297
|
|
|
335
|
-
|
|
298
|
+
- 🎸 add ability to update story arguments from test cases
|
|
336
299
|
|
|
337
|
-
|
|
300
|
+
### Changed
|
|
338
301
|
|
|
339
|
-
|
|
302
|
+
- 💡 cleanup some stuff
|
|
340
303
|
|
|
341
|
-
|
|
342
|
-
- 🎸 Improve skip options ([2fcc624](https://github.com/wKich/creevey/commit/2fcc624a9b2ab1dcdce3927779c8f58bb0a0d02c))
|
|
343
|
-
- new creevey params: "global" and "kind" ([7d7c885](https://github.com/wKich/creevey/commit/7d7c88521a28c91586bfdd663500bea576845292))
|
|
344
|
-
- support storybook 6.4 ([74010e5](https://github.com/wKich/creevey/commit/74010e53d93ff1815427cd7ee818481ce6e21288))
|
|
304
|
+
### Miscellaneous
|
|
345
305
|
|
|
346
|
-
|
|
306
|
+
- 🤖 replace `jsdom-global` to `global-jsdom` to avoid errors in output
|
|
347
307
|
|
|
348
|
-
###
|
|
308
|
+
### Testing
|
|
349
309
|
|
|
350
|
-
-
|
|
310
|
+
- 💍 approve tests
|
|
311
|
+
- 💍 fix some e2e cases
|
|
312
|
+
## [0.7.38] - 2021-09-28
|
|
351
313
|
|
|
352
|
-
|
|
314
|
+
### Added
|
|
353
315
|
|
|
354
|
-
|
|
316
|
+
- 🎸 add storiesProvider config option
|
|
355
317
|
|
|
356
|
-
|
|
318
|
+
### Miscellaneous
|
|
357
319
|
|
|
358
|
-
|
|
320
|
+
- 🤖 update deps
|
|
321
|
+
- **deps:** Bump tar from 6.1.2 to 6.1.11
|
|
322
|
+
- **deps-dev:** Bump immer from 9.0.5 to 9.0.6
|
|
323
|
+
- **deps:** Bump nth-check from 2.0.0 to 2.0.1
|
|
324
|
+
- **deps:** Bump tmpl from 1.0.4 to 1.0.5
|
|
325
|
+
- 🤖 update deps
|
|
359
326
|
|
|
360
|
-
###
|
|
327
|
+
### Testing
|
|
361
328
|
|
|
362
|
-
-
|
|
363
|
-
-
|
|
329
|
+
- 💍 fix loader test for windows
|
|
330
|
+
- 💍 fix line endings for windows
|
|
331
|
+
## [0.7.37] - 2021-08-27
|
|
364
332
|
|
|
365
|
-
###
|
|
333
|
+
### Added
|
|
366
334
|
|
|
367
|
-
- 🎸
|
|
368
|
-
- 🎸
|
|
335
|
+
- 🎸 improve delay option to allow specify browsers
|
|
336
|
+
- 🎸 failFast doesn't disable maxRetries option
|
|
369
337
|
|
|
370
|
-
|
|
338
|
+
### Fixed
|
|
371
339
|
|
|
372
|
-
|
|
340
|
+
- 🐛 save report data after each tests run
|
|
341
|
+
- 🐛 selenium url path to '/' for webkit browsers
|
|
342
|
+
## [0.7.36] - 2021-07-30
|
|
373
343
|
|
|
374
|
-
|
|
344
|
+
### Documentation
|
|
375
345
|
|
|
376
|
-
|
|
346
|
+
- ✏️ update todos
|
|
377
347
|
|
|
378
|
-
###
|
|
348
|
+
### Fixed
|
|
379
349
|
|
|
380
|
-
- 🐛
|
|
350
|
+
- 🐛 report test as a failed for teamcity reporter
|
|
381
351
|
|
|
382
|
-
###
|
|
352
|
+
### Miscellaneous
|
|
383
353
|
|
|
384
|
-
-
|
|
354
|
+
- 🤖 update deps
|
|
385
355
|
|
|
386
|
-
|
|
356
|
+
### Ci
|
|
387
357
|
|
|
388
|
-
|
|
358
|
+
- 🎡 update teamcity config version to 2021.1
|
|
359
|
+
## [0.7.35] - 2021-07-28
|
|
389
360
|
|
|
390
|
-
|
|
361
|
+
### Added
|
|
391
362
|
|
|
392
|
-
|
|
363
|
+
- 🎸 add `dockerImagePlatform` config option
|
|
393
364
|
|
|
394
|
-
###
|
|
365
|
+
### Fixed
|
|
395
366
|
|
|
396
|
-
- 🐛
|
|
397
|
-
- 🐛 make creevey work with vite ([0d576c6](https://github.com/wKich/creevey/commit/0d576c6e2660fd4f29ba4efd440d4af9ee590ac2))
|
|
398
|
-
- 🐛 some issues for storybook 5.3 and create-react-preset ([c1e20b3](https://github.com/wKich/creevey/commit/c1e20b31234875d3ef961ce3804e3384d858f94d))
|
|
367
|
+
- 🐛 update didn't use report data to approve failed tests
|
|
399
368
|
|
|
400
|
-
###
|
|
369
|
+
### Ci
|
|
401
370
|
|
|
402
|
-
-
|
|
371
|
+
- 🎡 fix artifacts source path for client bundle
|
|
372
|
+
## [0.7.34] - 2021-07-12
|
|
403
373
|
|
|
404
|
-
|
|
374
|
+
### Added
|
|
405
375
|
|
|
406
|
-
|
|
376
|
+
- 🎸 add `failFat` parameter to the config
|
|
377
|
+
## [0.7.33] - 2021-07-12
|
|
407
378
|
|
|
408
|
-
|
|
409
|
-
- 🎸 run extract stories.json on storybook-build ([803a1d1](https://github.com/wKich/creevey/commit/803a1d1b9b774121e1a611dfbbe1a3ad041339af))
|
|
379
|
+
### Added
|
|
410
380
|
|
|
411
|
-
|
|
381
|
+
- 🎸 add `failFast` CLI option. Terminates on first fail
|
|
412
382
|
|
|
413
|
-
###
|
|
383
|
+
### Changed
|
|
414
384
|
|
|
415
|
-
-
|
|
416
|
-
- 🐛 improve listen story render error with `waitForReady` ([dda7948](https://github.com/wKich/creevey/commit/dda7948c3496a7ef7a8e9fc4ce50d774b470bd94))
|
|
417
|
-
- 🐛 improve update to approve only failed images ([f0e5719](https://github.com/wKich/creevey/commit/f0e5719f1b8d1b0fb105bacb5619cd903eadced6))
|
|
418
|
-
- 🐛 resolve storybook preview config after babel/register ([cb3f46c](https://github.com/wKich/creevey/commit/cb3f46c0502264cdd5aefc2dc397da1892938eb5))
|
|
419
|
-
- 🐛 resolving storybook modules for version less than 6.2 ([bd84c5f](https://github.com/wKich/creevey/commit/bd84c5f87a3c271665c3fd283ae09cabc2851120))
|
|
385
|
+
- 💡 prepare to support svelte CSF stories
|
|
420
386
|
|
|
421
|
-
###
|
|
387
|
+
### Fixed
|
|
422
388
|
|
|
423
|
-
-
|
|
389
|
+
- 🐛 improve `waitForStorybook` wait for `setStories` event
|
|
390
|
+
- 🐛 some issues for storybook 5.3 and create-react-preset
|
|
391
|
+
- 🐛 make creevey work with vite
|
|
392
|
+
## [0.7.32] - 2021-07-07
|
|
424
393
|
|
|
425
|
-
|
|
394
|
+
### Added
|
|
426
395
|
|
|
427
|
-
|
|
396
|
+
- 🎸 run extract stories.json on storybook-build
|
|
397
|
+
- 🎸 add webdriver debug logging
|
|
398
|
+
## [0.7.31] - 2021-06-26
|
|
428
399
|
|
|
429
|
-
|
|
430
|
-
- 🐛 resolving storybook modules ([d30274d](https://github.com/wKich/creevey/commit/d30274d3dc12e77cea21ea170a9e03fc35892671))
|
|
431
|
-
- package.json & yarn.lock to reduce vulnerabilities ([b1f8697](https://github.com/wKich/creevey/commit/b1f869758bb6b41165748de15f897a4bee22545b))
|
|
400
|
+
### Added
|
|
432
401
|
|
|
433
|
-
|
|
402
|
+
- 🎸 add `until` selenium helpers to test context
|
|
434
403
|
|
|
435
|
-
###
|
|
404
|
+
### Fixed
|
|
436
405
|
|
|
437
|
-
- 🐛
|
|
406
|
+
- 🐛 ignore docsOnly stories for now
|
|
407
|
+
- 🐛 improve listen story render error with `waitForReady`
|
|
408
|
+
- 🐛 resolving storybook modules for version less than 6.2
|
|
409
|
+
- 🐛 resolve storybook preview config after babel/register
|
|
410
|
+
- 🐛 improve update to approve only failed images
|
|
438
411
|
|
|
439
|
-
###
|
|
412
|
+
### Miscellaneous
|
|
440
413
|
|
|
441
|
-
-
|
|
414
|
+
- 🤖 update todos
|
|
415
|
+
- **deps:** Bump postcss from 7.0.35 to 7.0.36
|
|
416
|
+
- 🤖 update deps
|
|
442
417
|
|
|
443
|
-
|
|
418
|
+
### Testing
|
|
444
419
|
|
|
445
|
-
|
|
420
|
+
- 💍 add more e2e tests for storybook building and extract
|
|
421
|
+
## [0.7.30] - 2021-06-10
|
|
446
422
|
|
|
447
|
-
|
|
448
|
-
- 🐛 csf template.bind extract correctly ([ba27817](https://github.com/wKich/creevey/commit/ba27817e9fd91a0515edb3896414c7ac04bfa65d))
|
|
449
|
-
- 🐛 improve babel-plugin to handle storiesOf in loops ([ec6ad03](https://github.com/wKich/creevey/commit/ec6ad03a796c6d25647f30aff75c41c1ec630704))
|
|
450
|
-
- 🐛 improve process exiting with hooks, add ie11 tests ([effa16f](https://github.com/wKich/creevey/commit/effa16f434ac82bbc740be4f2b4ecc67557cba7b))
|
|
451
|
-
- 🐛 remove some non-story and custom expressions ([9fd55dc](https://github.com/wKich/creevey/commit/9fd55dcee25c7cd5ca965629861bd324bdc95612))
|
|
452
|
-
- 🐛 types after update to Storybook 6.2 ([dcf433e](https://github.com/wKich/creevey/commit/dcf433e52ca9a4e595968365061f73708fcc9ab4))
|
|
423
|
+
### Fixed
|
|
453
424
|
|
|
454
|
-
|
|
425
|
+
- Package.json & yarn.lock to reduce vulnerabilities
|
|
426
|
+
- 🐛 resolving storybook modules
|
|
427
|
+
- 🐛 import the same webpack as used for storybook manager
|
|
455
428
|
|
|
456
|
-
|
|
457
|
-
- 🎸 support for extract cjs and object.assign ([1978669](https://github.com/wKich/creevey/commit/1978669c1fcf9f5a9866d9399793d7388bab1680))
|
|
429
|
+
### Miscellaneous
|
|
458
430
|
|
|
459
|
-
|
|
431
|
+
- **deps:** Bump dns-packet from 1.3.1 to 1.3.4
|
|
432
|
+
- 🤖 update deps
|
|
433
|
+
- 🤖 downgrade ts for issue storybook#15067
|
|
434
|
+
- 🤖 update deps
|
|
460
435
|
|
|
461
|
-
###
|
|
436
|
+
### Testing
|
|
462
437
|
|
|
463
|
-
-
|
|
464
|
-
|
|
438
|
+
- 💍 update some images
|
|
439
|
+
## [0.7.29] - 2021-05-30
|
|
465
440
|
|
|
466
|
-
|
|
441
|
+
### Added
|
|
467
442
|
|
|
468
|
-
|
|
443
|
+
- 🎸 improve `update` command allow to pass match pattern
|
|
469
444
|
|
|
470
|
-
|
|
445
|
+
### Fixed
|
|
471
446
|
|
|
472
|
-
|
|
447
|
+
- 🐛 allow pass boolean value to skip parameter
|
|
473
448
|
|
|
474
|
-
|
|
475
|
-
- 🎸 add `waitForReady` story parameter ([8517883](https://github.com/wKich/creevey/commit/8517883019dc371141a0b7308b37bde8b17577b6))
|
|
476
|
-
- 🎸 allow define custom selenoid images and skip pull step ([e508eec](https://github.com/wKich/creevey/commit/e508eec9918cb63194a74c2ebd44aa1f62c9930d))
|
|
449
|
+
### Miscellaneous
|
|
477
450
|
|
|
478
|
-
|
|
451
|
+
- 🤖 update deps
|
|
452
|
+
## [0.7.28] - 2021-05-20
|
|
479
453
|
|
|
480
|
-
###
|
|
454
|
+
### Added
|
|
481
455
|
|
|
482
|
-
-
|
|
483
|
-
-
|
|
484
|
-
- 🐛 test status icons align ([c3e5c7e](https://github.com/wKich/creevey/commit/c3e5c7ea14eb46e218a0d1dcbcec9374989b364d))
|
|
456
|
+
- 🎸 improve extract stories by using only babel
|
|
457
|
+
- 🎸 support for extract cjs and object.assign
|
|
485
458
|
|
|
486
|
-
###
|
|
459
|
+
### Changed
|
|
487
460
|
|
|
488
|
-
-
|
|
489
|
-
- 🎸 add support storybook 6.2 ([e4cc662](https://github.com/wKich/creevey/commit/e4cc66245b0f2aea8cfba0e849f1e9e4f80d1442))
|
|
490
|
-
- 🎸 support capture mdx stories ([6fc9185](https://github.com/wKich/creevey/commit/6fc918505718393ccbc424a794159eecf66a456d))
|
|
461
|
+
- 💡 simplify babel transformation helpers
|
|
491
462
|
|
|
492
|
-
|
|
463
|
+
### Fixed
|
|
493
464
|
|
|
494
|
-
|
|
465
|
+
- 🐛 improve process exiting with hooks, add ie11 tests
|
|
466
|
+
- 🐛 types after update to Storybook 6.2
|
|
467
|
+
- 🐛 improve babel-plugin to handle storiesOf in loops
|
|
468
|
+
- 🐛 creevey loader transforms csf funcs with props
|
|
469
|
+
- 🐛 csf template.bind extract correctly
|
|
470
|
+
- 🐛 remove some non-story and custom expressions
|
|
495
471
|
|
|
496
|
-
|
|
497
|
-
- 🐛 websocket invalid frame error ([aafda92](https://github.com/wKich/creevey/commit/aafda92ff3d45cf20005872ea344831b53c2f5af))
|
|
498
|
-
- upgrade tslib from 2.0.3 to 2.1.0 ([f047cae](https://github.com/wKich/creevey/commit/f047cae1c0a6b072b30b91be9f7bceef1a776917))
|
|
499
|
-
- upgrade zone.js from 0.11.3 to 0.11.4 ([f1a911a](https://github.com/wKich/creevey/commit/f1a911a070658f8b2488f1d596a53e3cd2d3e001))
|
|
472
|
+
### Miscellaneous
|
|
500
473
|
|
|
501
|
-
|
|
474
|
+
- 🤖 update deps
|
|
475
|
+
- 🤖 update deps
|
|
476
|
+
- **deps:** Bump url-parse from 1.4.7 to 1.5.1
|
|
477
|
+
- **deps:** Bump handlebars from 4.7.6 to 4.7.7
|
|
502
478
|
|
|
503
|
-
|
|
504
|
-
- allow to ignore elements in screenshot ([19a38e0](https://github.com/wKich/creevey/commit/19a38e0379ad0b1cbbe6254f197888d2ebfb1a22))
|
|
479
|
+
### Testing
|
|
505
480
|
|
|
506
|
-
|
|
481
|
+
- 💍 fix absolute path in e2e tests
|
|
482
|
+
- 💍 update storybook official approvals
|
|
483
|
+
- 💍 update some firefox screenshots
|
|
507
484
|
|
|
508
|
-
###
|
|
485
|
+
### Ci
|
|
509
486
|
|
|
510
|
-
-
|
|
487
|
+
- 🎡 ignore ie for now
|
|
488
|
+
- 🎡 fix report view resources
|
|
489
|
+
## [0.7.27] - 2021-03-31
|
|
511
490
|
|
|
512
|
-
|
|
491
|
+
### Fixed
|
|
513
492
|
|
|
514
|
-
|
|
493
|
+
- 🐛 capturing screenshots in ie11
|
|
494
|
+
- 🐛 compose browsers with external grid and builtin selenoid
|
|
515
495
|
|
|
516
|
-
|
|
517
|
-
- selenium url path for standalone run ([da45662](https://github.com/wKich/creevey/commit/da45662aff604bacb02bd949ece5e406888cbd4d))
|
|
496
|
+
### Miscellaneous
|
|
518
497
|
|
|
519
|
-
|
|
498
|
+
- 🤖 update deps
|
|
520
499
|
|
|
521
|
-
###
|
|
500
|
+
### Testing
|
|
522
501
|
|
|
523
|
-
-
|
|
524
|
-
-
|
|
525
|
-
-
|
|
526
|
-
-
|
|
527
|
-
- 🐛 protocol relative resolving ([fc2559e](https://github.com/wKich/creevey/commit/fc2559e60091ef96af48fbbac92e7f06b7f57dbc))
|
|
528
|
-
- 🐛 store stats.json into report dir ([9b0586d](https://github.com/wKich/creevey/commit/9b0586db49681b654045ad54dece4c195e490605))
|
|
502
|
+
- 💍 ignore readdir error for tests
|
|
503
|
+
- 💍 fix absolute paths for storybook e2e tests
|
|
504
|
+
- 💍 another fix for absolute storybook path
|
|
505
|
+
- 💍 approve storybook official e2e test
|
|
529
506
|
|
|
530
|
-
###
|
|
507
|
+
### Ci
|
|
531
508
|
|
|
532
|
-
-
|
|
533
|
-
-
|
|
509
|
+
- 🎡 fix e2e test job steps
|
|
510
|
+
- 🎡 fix repository paramter for checkout action
|
|
511
|
+
## [0.7.26] - 2021-03-28
|
|
534
512
|
|
|
535
|
-
|
|
513
|
+
### Added
|
|
536
514
|
|
|
537
|
-
|
|
515
|
+
- 🎸 allow define custom selenoid images and skip pull step
|
|
516
|
+
- 🎸 add `waitForReady` story parameter
|
|
517
|
+
- 🎸 add `--extract` as faster alternative to `sb extract`
|
|
538
518
|
|
|
539
|
-
|
|
519
|
+
### Changed
|
|
540
520
|
|
|
541
|
-
|
|
521
|
+
- 💡 simplify configs
|
|
522
|
+
- 💡 move e2e test approvals to separate directory
|
|
542
523
|
|
|
543
|
-
###
|
|
524
|
+
### Fixed
|
|
544
525
|
|
|
545
|
-
- 🐛
|
|
546
|
-
- 🐛 document unloaded while waiting for result ([dd31445](https://github.com/wKich/creevey/commit/dd3144558de74349f41108e29aed97814a48eeb7))
|
|
547
|
-
- 🐛 properly output unnecessary images ([40e791e](https://github.com/wKich/creevey/commit/40e791edd5eddce838ccc62902430ca00422bb8b))
|
|
526
|
+
- 🐛 don't show run button in a report
|
|
548
527
|
|
|
549
|
-
###
|
|
528
|
+
### Miscellaneous
|
|
550
529
|
|
|
551
|
-
-
|
|
530
|
+
- 🤖 update deps
|
|
552
531
|
|
|
553
|
-
|
|
532
|
+
### Testing
|
|
554
533
|
|
|
555
|
-
|
|
534
|
+
- 💍 fix e2e tests, make `npm i` before install creevey
|
|
556
535
|
|
|
557
|
-
|
|
536
|
+
### Ci
|
|
558
537
|
|
|
559
|
-
|
|
538
|
+
- 🎡 remove e2e tests from any CI except github
|
|
539
|
+
## [0.7.25] - 2021-03-18
|
|
560
540
|
|
|
561
|
-
###
|
|
541
|
+
### Added
|
|
562
542
|
|
|
563
|
-
-
|
|
543
|
+
- 🎸 add sidebar keyboard handlers
|
|
544
|
+
- 🎸 add support storybook 6.2
|
|
545
|
+
- 🎸 support capture mdx stories
|
|
564
546
|
|
|
565
|
-
|
|
547
|
+
### Changed
|
|
566
548
|
|
|
567
|
-
|
|
549
|
+
- 💡 move all webpack-relative code to separate dir
|
|
568
550
|
|
|
569
|
-
|
|
570
|
-
- 🐛 spinner position in sidebar ([5d2d34a](https://github.com/wKich/creevey/commit/5d2d34a7229d7fef8fd4f6731df6b807dce00d7f))
|
|
551
|
+
### Documentation
|
|
571
552
|
|
|
572
|
-
|
|
553
|
+
- ✏️ move examples to separate repo
|
|
573
554
|
|
|
574
|
-
###
|
|
555
|
+
### Fixed
|
|
575
556
|
|
|
576
|
-
- 🐛
|
|
577
|
-
- 🐛
|
|
557
|
+
- 🐛 hover shouldn't override focus styles
|
|
558
|
+
- 🐛 test status icons align
|
|
559
|
+
- 🐛 exclude all addons from nodejs storybook bundle
|
|
578
560
|
|
|
579
|
-
###
|
|
561
|
+
### Miscellaneous
|
|
580
562
|
|
|
581
|
-
-
|
|
563
|
+
- 🤖 fix eslint errors and warnings
|
|
564
|
+
- **deps:** Bump react-dev-utils from 11.0.3 to 11.0.4
|
|
565
|
+
- 🤖 update deps
|
|
566
|
+
- 🤖 update deps
|
|
582
567
|
|
|
583
|
-
|
|
568
|
+
### Testing
|
|
584
569
|
|
|
585
|
-
|
|
570
|
+
- 💍 fix e2e test after small refactor
|
|
586
571
|
|
|
587
|
-
|
|
588
|
-
- 🐛 resolve storybook properly and wait for page load ([6888178](https://github.com/wKich/creevey/commit/6888178a3ca2ee2c22ef69fc633564154a256e55))
|
|
572
|
+
### Ci
|
|
589
573
|
|
|
590
|
-
|
|
574
|
+
- 🎡 fix reports for gitlab
|
|
575
|
+
- 🎡 fix gitlab yaml config
|
|
576
|
+
- 🎡 gitlab fix report view bundle
|
|
577
|
+
- 🎡 fix gitlab report view
|
|
578
|
+
- 🎡 fix report view port and circle ci reports
|
|
579
|
+
- 🎡 fix circle ci attach workspace after checkout
|
|
580
|
+
- 🎡 make tests requires build
|
|
581
|
+
- 🎡 fix gitlab requirements for jobs
|
|
582
|
+
- 🎡 fix circle ci report view
|
|
583
|
+
## [0.7.24] - 2021-03-10
|
|
591
584
|
|
|
592
|
-
|
|
585
|
+
### Added
|
|
593
586
|
|
|
594
|
-
|
|
587
|
+
- 🎸 new panels in addon
|
|
588
|
+
- Allow to ignore elements in screenshot
|
|
595
589
|
|
|
596
|
-
###
|
|
590
|
+
### Changed
|
|
597
591
|
|
|
598
|
-
-
|
|
592
|
+
- 💡 delete unused code from old addon
|
|
593
|
+
- 💡 replace addon components, use ADDON_ID
|
|
594
|
+
- 💡 simplify addon manager method
|
|
595
|
+
- Use mocha beforeEach hook for cleaning
|
|
596
|
+
- Keep ignored elements interactable between screenshots
|
|
597
|
+
- Move dom manimulations to the decorator
|
|
598
|
+
- 💡 api: get browsers without status
|
|
599
599
|
|
|
600
|
-
###
|
|
600
|
+
### Documentation
|
|
601
601
|
|
|
602
|
-
-
|
|
602
|
+
- Add example for ignoreElements option
|
|
603
|
+
- Update TODO
|
|
604
|
+
- ✏️ update todos
|
|
603
605
|
|
|
604
|
-
###
|
|
606
|
+
### Fixed
|
|
605
607
|
|
|
606
|
-
-
|
|
608
|
+
- 🐛 websocket invalid frame error
|
|
609
|
+
- 🐛 some security issues
|
|
610
|
+
- Upgrade tslib from 2.0.3 to 2.1.0
|
|
611
|
+
- Upgrade zone.js from 0.11.3 to 0.11.4
|
|
607
612
|
|
|
608
|
-
|
|
613
|
+
### Miscellaneous
|
|
609
614
|
|
|
610
|
-
|
|
615
|
+
- 🤖 update deps
|
|
616
|
+
- 🤖 delete space if test status is unknown
|
|
617
|
+
- 🤖 review fixes
|
|
618
|
+
- 🤖 update deps
|
|
619
|
+
- 🤖 update creevey in examples
|
|
620
|
+
- 🤖 update deps
|
|
621
|
+
- Change method of ignoring elements
|
|
622
|
+
- Improve ignore styles
|
|
623
|
+
- Ensure ignore styles removal
|
|
624
|
+
- 🤖 update deps
|
|
625
|
+
- 🤖 update deps for examples
|
|
626
|
+
- **deps:** Bump ini from 1.3.5 to 1.3.8 in /examples/angular
|
|
627
|
+
- 🤖 update deps
|
|
628
|
+
- 🤖 update husky configs
|
|
629
|
+
- **deps:** Bump pug-code-gen from 3.0.1 to 3.0.2 in /examples/vue
|
|
630
|
+
- **deps:** Bump pug from 3.0.0 to 3.0.2 in /examples/vue
|
|
631
|
+
- 🤖 update deps
|
|
632
|
+
- **deps:** Bump elliptic from 6.5.3 to 6.5.4
|
|
633
|
+
- **deps:** Bump elliptic from 6.5.3 to 6.5.4 in /examples/vue
|
|
634
|
+
- **deps:** Bump elliptic from 6.5.3 to 6.5.4 in /examples/svelte
|
|
635
|
+
- **deps:** Bump elliptic from 6.5.3 to 6.5.4 in /examples/react
|
|
636
|
+
- **deps:** Bump elliptic from 6.5.3 to 6.5.4 in /examples/angular
|
|
611
637
|
|
|
612
|
-
|
|
638
|
+
### Styling
|
|
613
639
|
|
|
614
|
-
|
|
640
|
+
- Fix formatting
|
|
615
641
|
|
|
616
|
-
###
|
|
642
|
+
### Testing
|
|
617
643
|
|
|
618
|
-
-
|
|
619
|
-
-
|
|
620
|
-
-
|
|
621
|
-
-
|
|
644
|
+
- 💍 make e2e tests more presistent
|
|
645
|
+
- 💍 setup gitlab ui tests
|
|
646
|
+
- 💍 improve gitlab ui test config
|
|
647
|
+
- 💍 fix gitlab gridurls config
|
|
648
|
+
- 💍 update screenshots
|
|
649
|
+
- Add screenshots with ignored elements
|
|
650
|
+
- Update screenshots with ignored elements
|
|
651
|
+
- 💍 fix a couple of screenshot tests
|
|
652
|
+
- 💍 make e2e be less depended on env
|
|
653
|
+
## [0.7.23] - 2021-01-25
|
|
622
654
|
|
|
623
|
-
###
|
|
655
|
+
### Fixed
|
|
624
656
|
|
|
625
|
-
-
|
|
657
|
+
- 🐛 use shelljs to run selenoid binary
|
|
658
|
+
## [0.7.22] - 2021-01-25
|
|
626
659
|
|
|
627
|
-
|
|
660
|
+
### Fixed
|
|
628
661
|
|
|
629
|
-
|
|
662
|
+
- Run standalone browsers and selenoid
|
|
663
|
+
- Selenium url path for standalone run
|
|
664
|
+
## [0.7.21] - 2021-01-22
|
|
630
665
|
|
|
631
|
-
|
|
666
|
+
### Added
|
|
632
667
|
|
|
633
|
-
|
|
668
|
+
- 🎸 improve creevey-loader, cut-off side-effects
|
|
669
|
+
- 🎸 save webpack stats.json on debug
|
|
634
670
|
|
|
635
|
-
###
|
|
671
|
+
### Fixed
|
|
636
672
|
|
|
637
|
-
-
|
|
673
|
+
- 🐛 store stats.json into report dir
|
|
674
|
+
- 🐛 make report from static files works from creevey repo
|
|
675
|
+
- 🐛 create protocol relative image url
|
|
676
|
+
- 🐛 protocol relative resolving
|
|
677
|
+
- 🐛 encode only path tokens for url
|
|
678
|
+
- 🐛 get image url with empty port number
|
|
638
679
|
|
|
639
|
-
|
|
680
|
+
### Miscellaneous
|
|
640
681
|
|
|
641
|
-
|
|
682
|
+
- **deps-dev:** Bump immer from 8.0.0 to 8.0.1
|
|
683
|
+
- **deps:** Bump socket.io from 2.3.0 to 2.4.1 in /examples/angular
|
|
684
|
+
- 🤖 update deps
|
|
642
685
|
|
|
643
|
-
|
|
686
|
+
### Testing
|
|
644
687
|
|
|
645
|
-
|
|
688
|
+
- 💍 add e2e bundle compare
|
|
689
|
+
## [0.7.20] - 2021-01-15
|
|
646
690
|
|
|
647
|
-
###
|
|
691
|
+
### Fixed
|
|
648
692
|
|
|
649
|
-
- 🐛
|
|
693
|
+
- 🐛 apply iframe after custom resolver
|
|
694
|
+
## [0.7.19] - 2021-01-14
|
|
650
695
|
|
|
651
|
-
|
|
696
|
+
### Added
|
|
652
697
|
|
|
653
|
-
|
|
698
|
+
- Allow to set storybook's globals
|
|
654
699
|
|
|
655
|
-
|
|
700
|
+
### Changed
|
|
656
701
|
|
|
657
|
-
|
|
702
|
+
- Mark the feature as experimental
|
|
658
703
|
|
|
659
|
-
###
|
|
704
|
+
### Fixed
|
|
660
705
|
|
|
661
|
-
- 🐛
|
|
662
|
-
- 🐛
|
|
663
|
-
- 🐛
|
|
706
|
+
- 🐛 document unloaded while waiting for result
|
|
707
|
+
- 🐛 document unloaded error, again
|
|
708
|
+
- 🐛 properly output unnecessary images
|
|
664
709
|
|
|
665
|
-
###
|
|
710
|
+
### Miscellaneous
|
|
666
711
|
|
|
667
|
-
-
|
|
668
|
-
|
|
712
|
+
- Check storybook's version
|
|
713
|
+
## [0.7.18] - 2021-01-08
|
|
669
714
|
|
|
670
|
-
|
|
715
|
+
### Fixed
|
|
671
716
|
|
|
672
|
-
|
|
717
|
+
- 🐛 copy-paste missing function from storybook
|
|
673
718
|
|
|
674
|
-
|
|
675
|
-
- 🐛 merge skip options properly ([24427af](https://github.com/wKich/creevey/commit/24427af40e812478b9832ae82d2dd64e3e146805))
|
|
676
|
-
- 🐛 resolve grid url without docker ([97e06fe](https://github.com/wKich/creevey/commit/97e06fe8c92496a99e659e8f221428bb4bb4062d))
|
|
719
|
+
### Miscellaneous
|
|
677
720
|
|
|
678
|
-
|
|
721
|
+
- Add funding.yml
|
|
722
|
+
## [0.7.17] - 2021-01-07
|
|
679
723
|
|
|
680
|
-
###
|
|
724
|
+
### Fixed
|
|
681
725
|
|
|
682
|
-
-
|
|
683
|
-
|
|
726
|
+
- 🐛 addon erases global parameters in storybook
|
|
727
|
+
## [0.7.16] - 2021-01-06
|
|
684
728
|
|
|
685
|
-
|
|
729
|
+
### Fixed
|
|
686
730
|
|
|
687
|
-
|
|
731
|
+
- 🐛 spinner position in sidebar
|
|
732
|
+
- 🐛 resolve url for ie11
|
|
733
|
+
## [0.7.15] - 2021-01-06
|
|
688
734
|
|
|
689
|
-
|
|
735
|
+
### Added
|
|
690
736
|
|
|
691
|
-
|
|
737
|
+
- 🎸 add run all buttons in addon
|
|
692
738
|
|
|
693
|
-
|
|
739
|
+
### Changed
|
|
694
740
|
|
|
695
|
-
|
|
741
|
+
- 💡 tune a little addon tabs
|
|
742
|
+
- Remove unused export
|
|
743
|
+
- 💡 addon
|
|
696
744
|
|
|
697
|
-
###
|
|
745
|
+
### Documentation
|
|
698
746
|
|
|
699
|
-
-
|
|
747
|
+
- ✏️ update authors
|
|
700
748
|
|
|
701
|
-
###
|
|
749
|
+
### Fixed
|
|
702
750
|
|
|
703
|
-
-
|
|
704
|
-
-
|
|
751
|
+
- 🐛 trim story kinds
|
|
752
|
+
- 🐛 addon show test name in tabs panel
|
|
705
753
|
|
|
706
|
-
|
|
754
|
+
### Miscellaneous
|
|
707
755
|
|
|
708
|
-
|
|
756
|
+
- 🤖 fixes after review
|
|
757
|
+
- 🤖 add disabled state to run buttons in addon
|
|
758
|
+
- 🤖 update deps
|
|
709
759
|
|
|
710
|
-
|
|
711
|
-
- 🐛 toggle theme sticky z-index ([dcdbb77](https://github.com/wKich/creevey/commit/dcdbb77e63b1f67025c897610c2df74b8d98abbd))
|
|
760
|
+
### Styling
|
|
712
761
|
|
|
713
|
-
|
|
762
|
+
- 💄 change a little some comments
|
|
763
|
+
## [0.7.14] - 2021-01-01
|
|
714
764
|
|
|
715
|
-
|
|
765
|
+
### Changed
|
|
716
766
|
|
|
717
|
-
|
|
767
|
+
- ⚡️ exclude fork ts checker plugin for webpack
|
|
718
768
|
|
|
719
|
-
###
|
|
769
|
+
### Fixed
|
|
720
770
|
|
|
721
|
-
- 🐛
|
|
771
|
+
- 🐛 disable debug logger for storybook 5.x
|
|
772
|
+
- 🐛 resolve storybook properly and wait for page load
|
|
773
|
+
## [0.7.13] - 2020-12-30
|
|
722
774
|
|
|
723
|
-
|
|
775
|
+
### Added
|
|
724
776
|
|
|
725
|
-
|
|
777
|
+
- 🎸 start creevey server early and wait for build
|
|
726
778
|
|
|
727
|
-
|
|
779
|
+
### Changed
|
|
728
780
|
|
|
729
|
-
|
|
781
|
+
- ⚡️ speedup resolving storybook url
|
|
730
782
|
|
|
731
|
-
###
|
|
783
|
+
### Fixed
|
|
732
784
|
|
|
733
|
-
- 🐛
|
|
785
|
+
- 🐛 images preview urls
|
|
786
|
+
## [0.7.12] - 2020-12-24
|
|
734
787
|
|
|
735
|
-
|
|
788
|
+
### Fixed
|
|
736
789
|
|
|
737
|
-
|
|
790
|
+
- 🐛 set timeout after open for ie11
|
|
738
791
|
|
|
739
|
-
|
|
740
|
-
- 🐛 improve creevey loader cutoff stories meta data ([7b651d5](https://github.com/wKich/creevey/commit/7b651d5fe2945cffa10929ce038d01885c1db6ab))
|
|
741
|
-
- 🐛 reset body margin for client ui ([54fee7f](https://github.com/wKich/creevey/commit/54fee7f061a7b5eef7179faec09e79fd1652e305))
|
|
742
|
-
- 🐛 storybook framework detection ([25e1651](https://github.com/wKich/creevey/commit/25e1651608765698629e8f2ac1b9e43f98234288))
|
|
792
|
+
### Miscellaneous
|
|
743
793
|
|
|
744
|
-
|
|
794
|
+
- **deps:** Bump node-notifier from 8.0.0 to 8.0.1 in /examples/react
|
|
795
|
+
## [0.7.11] - 2020-12-21
|
|
745
796
|
|
|
746
|
-
|
|
797
|
+
### Added
|
|
747
798
|
|
|
748
|
-
|
|
799
|
+
- 🎸 store tests view in browser history
|
|
749
800
|
|
|
750
|
-
###
|
|
801
|
+
### Fixed
|
|
751
802
|
|
|
752
|
-
- 🐛
|
|
803
|
+
- 🐛 webpack mdx rule
|
|
804
|
+
- 🐛 webpack mdx regexp, again
|
|
805
|
+
- 🐛 exclude docgen plugin for webpack bundle
|
|
806
|
+
- 🐛 addon result page scroll height
|
|
753
807
|
|
|
754
|
-
|
|
808
|
+
### Miscellaneous
|
|
755
809
|
|
|
756
|
-
|
|
810
|
+
- 🤖 update deps
|
|
811
|
+
## [0.7.10] - 2020-12-15
|
|
757
812
|
|
|
758
|
-
|
|
759
|
-
- 🐛 small ui issues in SideBar ([6df7a0a](https://github.com/wKich/creevey/commit/6df7a0a13dcea12614bc4fc4e34389c52f9b03a8))
|
|
760
|
-
- 🐛 watch stories in windows ([e8458dd](https://github.com/wKich/creevey/commit/e8458ddde503011aaa6a7479694edd2aa42b1941))
|
|
813
|
+
### Fixed
|
|
761
814
|
|
|
762
|
-
|
|
815
|
+
- 🐛 switch stories error
|
|
816
|
+
## [0.7.9] - 2020-12-14
|
|
763
817
|
|
|
764
|
-
|
|
818
|
+
### Added
|
|
765
819
|
|
|
766
|
-
|
|
820
|
+
- 🎸 add support docker auth config for private registry
|
|
767
821
|
|
|
768
|
-
###
|
|
822
|
+
### Ci
|
|
769
823
|
|
|
770
|
-
-
|
|
771
|
-
-
|
|
824
|
+
- 🎡 add chromatic for testing purpose
|
|
825
|
+
- 🎡 fix chromatic
|
|
826
|
+
- 🎡 fix chromatic lfs
|
|
827
|
+
- 🎡 fix chromatic checkout action
|
|
828
|
+
## [0.7.8] - 2020-12-14
|
|
772
829
|
|
|
773
|
-
|
|
830
|
+
### Fixed
|
|
774
831
|
|
|
775
|
-
|
|
832
|
+
- 🐛 resolve url with docker
|
|
833
|
+
## [0.7.7] - 2020-12-14
|
|
776
834
|
|
|
777
|
-
|
|
835
|
+
### Fixed
|
|
778
836
|
|
|
779
|
-
|
|
837
|
+
- 🐛 handle getaddrinfo error
|
|
838
|
+
## [0.7.6] - 2020-12-14
|
|
780
839
|
|
|
781
|
-
|
|
782
|
-
- 🎸 remove `useDocker`. Creevey run docker by default ([ccbbb43](https://github.com/wKich/creevey/commit/ccbbb43f6fadd88bfcb21b266f08c45d39389c79))
|
|
840
|
+
### Documentation
|
|
783
841
|
|
|
784
|
-
|
|
842
|
+
- ✏️ update todos
|
|
785
843
|
|
|
786
|
-
###
|
|
844
|
+
### Fixed
|
|
787
845
|
|
|
788
|
-
- 🐛
|
|
789
|
-
|
|
790
|
-
- 🐛 don't fail on mdx stories, just ignore it for now ([527f962](https://github.com/wKich/creevey/commit/527f96222a73eac0711882b7541d5d318a9aa4fa))
|
|
791
|
-
- 🐛 re-disable animation ([ecbf380](https://github.com/wKich/creevey/commit/ecbf380316ce3479a70d7ce269a93088930a9880))
|
|
846
|
+
- 🐛 don't check `isInDocker` for docker internal host
|
|
847
|
+
## [0.7.5] - 2020-12-14
|
|
792
848
|
|
|
793
|
-
|
|
849
|
+
### Added
|
|
794
850
|
|
|
795
|
-
|
|
851
|
+
- 🎸 link to current story
|
|
796
852
|
|
|
797
|
-
|
|
798
|
-
- 🐛 report static bundle, add polyfiils ([dfb5f51](https://github.com/wKich/creevey/commit/dfb5f515344ae9b91f5070f002a914cbed835fd6))
|
|
853
|
+
### Changed
|
|
799
854
|
|
|
800
|
-
|
|
855
|
+
- 💡 fix warn
|
|
801
856
|
|
|
802
|
-
###
|
|
857
|
+
### Documentation
|
|
803
858
|
|
|
804
|
-
-
|
|
805
|
-
-
|
|
806
|
-
- 🐛 run tests on circle ci ([a8afef5](https://github.com/wKich/creevey/commit/a8afef582235c37722a60f9596f0e1cbb61a1da0))
|
|
859
|
+
- ✏️ install storybook and creevey into svelte example
|
|
860
|
+
- ✏️ split docs in a few files
|
|
807
861
|
|
|
808
|
-
|
|
862
|
+
### Fixed
|
|
809
863
|
|
|
810
|
-
|
|
864
|
+
- 🐛 download selenoid binary
|
|
865
|
+
- 🐛 webpack and update options
|
|
866
|
+
- 🐛 creevey-loader support private class members
|
|
811
867
|
|
|
812
|
-
|
|
868
|
+
### Miscellaneous
|
|
813
869
|
|
|
814
|
-
|
|
870
|
+
- **deps:** Bump ini from 1.3.5 to 1.3.7 in /examples/vue
|
|
871
|
+
- **deps:** Bump ini from 1.3.5 to 1.3.7 in /examples/react
|
|
872
|
+
- 🤖 update deps
|
|
873
|
+
- 🤖 update react to 17.0
|
|
874
|
+
- 🤖 update deps for angular example
|
|
875
|
+
- 🤖 update storybook in angular example
|
|
876
|
+
- 🤖 update deps for vue example
|
|
815
877
|
|
|
816
|
-
###
|
|
878
|
+
### Testing
|
|
817
879
|
|
|
818
|
-
-
|
|
880
|
+
- 💍 add more image views tests
|
|
881
|
+
## [0.7.4] - 2020-12-11
|
|
819
882
|
|
|
820
|
-
|
|
883
|
+
### Added
|
|
821
884
|
|
|
822
|
-
|
|
885
|
+
- 🎸 add mvp to allow run selenoid without docker
|
|
823
886
|
|
|
824
|
-
|
|
887
|
+
### Changed
|
|
825
888
|
|
|
826
|
-
|
|
889
|
+
- 💡 fix promise types
|
|
827
890
|
|
|
828
|
-
###
|
|
891
|
+
### Documentation
|
|
829
892
|
|
|
830
|
-
-
|
|
893
|
+
- ✏️ added svelte example app
|
|
831
894
|
|
|
832
|
-
|
|
895
|
+
### Fixed
|
|
833
896
|
|
|
834
|
-
|
|
897
|
+
- 🐛 merge skip options properly
|
|
898
|
+
- 🐛 change cache dir, some issues on windows
|
|
899
|
+
- 🐛 resolve grid url without docker
|
|
835
900
|
|
|
836
|
-
|
|
901
|
+
### Miscellaneous
|
|
837
902
|
|
|
838
|
-
|
|
903
|
+
- **deps:** Bump highlight.js from 10.4.0 to 10.4.1 in /examples/react
|
|
904
|
+
- **deps:** Bump highlight.js in /examples/angular
|
|
905
|
+
- 🤖 bump selfsigned to 1.10.8
|
|
906
|
+
- 🤖 bump node-forge to 0.10.0
|
|
907
|
+
- **deps:** Bump highlight.js from 10.4.0 to 10.4.1
|
|
908
|
+
- **deps:** Bump ini from 1.3.5 to 1.3.7
|
|
839
909
|
|
|
840
|
-
###
|
|
910
|
+
### Ci
|
|
841
911
|
|
|
842
|
-
-
|
|
843
|
-
|
|
844
|
-
- 🐛 small addon ui issues ([f055c1c](https://github.com/wKich/creevey/commit/f055c1c16394250f4aaf6db56d444a1c218ab66b))
|
|
845
|
-
- 🐛 small layout fixes in addon ([0f29b12](https://github.com/wKich/creevey/commit/0f29b121bb09e9840d3251eb9fe6d25a986aa46d))
|
|
912
|
+
- 🎡 update circleci and gitlab configs
|
|
913
|
+
## [0.7.3] - 2020-12-02
|
|
846
914
|
|
|
847
|
-
###
|
|
915
|
+
### Added
|
|
848
916
|
|
|
849
|
-
- 🎸
|
|
850
|
-
- 🎸
|
|
851
|
-
- 🎸 Storybook addon ([7c47c4b](https://github.com/wKich/creevey/commit/7c47c4bc4432ef55364824cee2c1b42430e02a33))
|
|
917
|
+
- 🎸 remove skbkontur ip address resolver
|
|
918
|
+
- 🎸 apply disable animation styles in storybook decorator
|
|
852
919
|
|
|
853
|
-
|
|
920
|
+
### Documentation
|
|
854
921
|
|
|
855
|
-
|
|
922
|
+
- ✏️ rewrite readme a little
|
|
923
|
+
- ✏️ update readme
|
|
924
|
+
- ✏️ update readme
|
|
925
|
+
- ✏️ add emoji
|
|
856
926
|
|
|
857
|
-
|
|
927
|
+
### Miscellaneous
|
|
858
928
|
|
|
859
|
-
|
|
929
|
+
- Update creevey demo video
|
|
930
|
+
## [0.7.2] - 2020-11-28
|
|
860
931
|
|
|
861
|
-
###
|
|
932
|
+
### Added
|
|
862
933
|
|
|
863
|
-
-
|
|
864
|
-
- 🐛 use `find-dir-cache` to store cache in right place ([c10a951](https://github.com/wKich/creevey/commit/c10a951e6cb05c29222348922d3639de98c04544))
|
|
865
|
-
- 🐛 use selenoid instead of browser images ([b187e62](https://github.com/wKich/creevey/commit/b187e62cb3ef3fe8d4e0128f293ebf693054c5d3))
|
|
866
|
-
- docker network for windows/wsl ([da8b491](https://github.com/wKich/creevey/commit/da8b49172f01a6131bea505021c6ea6ff2e77561))
|
|
934
|
+
- 🎸 improve scale handling for image views
|
|
867
935
|
|
|
868
|
-
###
|
|
936
|
+
### Fixed
|
|
869
937
|
|
|
870
|
-
-
|
|
938
|
+
- 🐛 invalid websocket frame
|
|
871
939
|
|
|
872
|
-
|
|
940
|
+
### Miscellaneous
|
|
873
941
|
|
|
874
|
-
|
|
942
|
+
- 🤖 update deps
|
|
875
943
|
|
|
876
|
-
|
|
944
|
+
### Testing
|
|
877
945
|
|
|
878
|
-
|
|
946
|
+
- 💍 add BlendView tests
|
|
947
|
+
- 💍 improve e2e tests
|
|
948
|
+
## [0.7.1] - 2020-11-24
|
|
879
949
|
|
|
880
|
-
###
|
|
950
|
+
### Added
|
|
881
951
|
|
|
882
|
-
-
|
|
883
|
-
-
|
|
884
|
-
- 🐛 image preview height ([afe125d](https://github.com/wKich/creevey/commit/afe125d535be85bc899eaa03683924c3c0c5a856))
|
|
952
|
+
- 🎸 improve side-by-side view for wide images
|
|
953
|
+
- 🎸 side-by-side view supports layout resizing
|
|
885
954
|
|
|
886
|
-
###
|
|
955
|
+
### Documentation
|
|
887
956
|
|
|
888
|
-
-
|
|
889
|
-
-
|
|
957
|
+
- ✏️ update readme
|
|
958
|
+
- ✏️ add abbyy logo
|
|
959
|
+
- ✏️ fix logo images
|
|
890
960
|
|
|
891
|
-
|
|
961
|
+
### Fixed
|
|
892
962
|
|
|
893
|
-
|
|
963
|
+
- 🐛 don't cutoff named exports
|
|
894
964
|
|
|
895
|
-
|
|
896
|
-
- 🐛 remove scroll when change image in swap mode ([7ccc42c](https://github.com/wKich/creevey/commit/7ccc42cc36b3d1fef5964fcc60e40899b6d995fc))
|
|
897
|
-
- 🐛 tests hot reloading ([b96bfa9](https://github.com/wKich/creevey/commit/b96bfa9e9509d67dd685ee30c26b37b96eb20289))
|
|
965
|
+
### Miscellaneous
|
|
898
966
|
|
|
899
|
-
|
|
967
|
+
- 🤖 update deps
|
|
968
|
+
- 🤖 update deps and storybook to 6.1
|
|
969
|
+
- 🤖 fix types
|
|
900
970
|
|
|
901
|
-
|
|
971
|
+
### Styling
|
|
902
972
|
|
|
903
|
-
|
|
973
|
+
- 💄 hotfix prettier write glob pattern
|
|
904
974
|
|
|
905
|
-
###
|
|
975
|
+
### Testing
|
|
906
976
|
|
|
907
|
-
-
|
|
908
|
-
-
|
|
909
|
-
-
|
|
910
|
-
-
|
|
977
|
+
- 💍 start adding creevey-storybook e2e tests
|
|
978
|
+
- 💍 add tests for 6.1, 5.3 and 5.2 versions of storybook
|
|
979
|
+
- 💍 add tests for 5.1 and 5.0 versions of storybook
|
|
980
|
+
- 💍 improve performance for e2e tests
|
|
911
981
|
|
|
912
|
-
###
|
|
982
|
+
### Ci
|
|
913
983
|
|
|
914
|
-
-
|
|
915
|
-
-
|
|
984
|
+
- 🎡 improve github actions
|
|
985
|
+
- 🎡 improve github actions
|
|
986
|
+
## [0.7.0] - 2020-11-09
|
|
916
987
|
|
|
917
|
-
|
|
988
|
+
### Added
|
|
918
989
|
|
|
919
|
-
|
|
990
|
+
- 🎸 Dark theme in client
|
|
920
991
|
|
|
921
|
-
|
|
992
|
+
### Changed
|
|
922
993
|
|
|
923
|
-
|
|
994
|
+
- Remove comments
|
|
995
|
+
- 💡 fix linter
|
|
924
996
|
|
|
925
|
-
###
|
|
997
|
+
### Documentation
|
|
926
998
|
|
|
927
|
-
-
|
|
999
|
+
- ✏️ update readme
|
|
1000
|
+
- ✏️ fix whisk logo
|
|
928
1001
|
|
|
929
|
-
|
|
1002
|
+
### Fixed
|
|
930
1003
|
|
|
931
|
-
|
|
1004
|
+
- 🐛 get channel before it created
|
|
1005
|
+
- 🐛 toggle theme sticky z-index
|
|
932
1006
|
|
|
933
|
-
|
|
934
|
-
- 🐛 mocha 7.2 multiple runs, remove old hacks ([0ca08be](https://github.com/wKich/creevey/commit/0ca08bebe436ebc91c0fbc501850339dea5fe0e2))
|
|
1007
|
+
### Miscellaneous
|
|
935
1008
|
|
|
936
|
-
|
|
1009
|
+
- 🤖 add global decorator with theme
|
|
1010
|
+
- 🤖 main loader in dark theme
|
|
1011
|
+
- 🤖 use custom storybook scroll
|
|
1012
|
+
- 🤖 allow change theme from client
|
|
1013
|
+
- Fix scroll
|
|
1014
|
+
- Theme switcher with icons
|
|
1015
|
+
- Fix scroll with big image
|
|
937
1016
|
|
|
938
|
-
###
|
|
1017
|
+
### Styling
|
|
939
1018
|
|
|
940
|
-
-
|
|
941
|
-
- 🐛 loader: remove vars in desctructuring ([8567fd6](https://github.com/wKich/creevey/commit/8567fd60e3ba67572e45f22629f639f6f17647b3))
|
|
1019
|
+
- 💄 fix prettier
|
|
942
1020
|
|
|
943
|
-
|
|
1021
|
+
### Testing
|
|
944
1022
|
|
|
945
|
-
|
|
1023
|
+
- Approve images with storybook colors
|
|
1024
|
+
## [0.7.0-beta.21] - 2020-11-02
|
|
946
1025
|
|
|
947
|
-
|
|
1026
|
+
### Fixed
|
|
948
1027
|
|
|
949
|
-
|
|
1028
|
+
- 🐛 wait for fonts loaded
|
|
1029
|
+
## [0.7.0-beta.20] - 2020-10-30
|
|
950
1030
|
|
|
951
|
-
###
|
|
1031
|
+
### Fixed
|
|
952
1032
|
|
|
953
|
-
- 🐛
|
|
1033
|
+
- 🐛 don't cutoff `name` prop from stories params
|
|
1034
|
+
## [0.7.0-beta.19] - 2020-10-30
|
|
954
1035
|
|
|
955
|
-
|
|
1036
|
+
### Fixed
|
|
956
1037
|
|
|
957
|
-
|
|
1038
|
+
- 🐛 macos docker netwrok internal host address
|
|
1039
|
+
## [0.7.0-beta.18] - 2020-10-29
|
|
958
1040
|
|
|
959
|
-
|
|
1041
|
+
### Added
|
|
960
1042
|
|
|
961
|
-
|
|
1043
|
+
- 🎸 change default capture element to `#root`
|
|
962
1044
|
|
|
963
|
-
###
|
|
1045
|
+
### Documentation
|
|
964
1046
|
|
|
965
|
-
-
|
|
1047
|
+
- ✏️ update todos
|
|
1048
|
+
- ✏️ update angular example
|
|
1049
|
+
- ✏️ update react example
|
|
1050
|
+
- ✏️ update vue example
|
|
966
1051
|
|
|
967
|
-
|
|
1052
|
+
### Fixed
|
|
968
1053
|
|
|
969
|
-
|
|
1054
|
+
- 🐛 improve creevey loader cutoff stories meta data
|
|
1055
|
+
- 🐛 cutoff parameters in new declarative preview config
|
|
1056
|
+
- 🐛 storybook framework detection
|
|
1057
|
+
- 🐛 reset body margin for client ui
|
|
970
1058
|
|
|
971
|
-
|
|
972
|
-
- 🐛 check element before capturing screenshot ([53df80b](https://github.com/wKich/creevey/commit/53df80bb2a7c234e5f0109d0f1c8beca88ddb1e9))
|
|
973
|
-
- 🐛 some small init/exit issues ([6c4d666](https://github.com/wKich/creevey/commit/6c4d666040eafdf721d17a0f40714af9a85ae109))
|
|
1059
|
+
### Miscellaneous
|
|
974
1060
|
|
|
975
|
-
|
|
1061
|
+
- 🤖 update deps
|
|
1062
|
+
## [0.7.0-beta.17] - 2020-10-16
|
|
976
1063
|
|
|
977
|
-
|
|
1064
|
+
### Fixed
|
|
978
1065
|
|
|
979
|
-
|
|
1066
|
+
- 🐛 filter tests without statuses
|
|
1067
|
+
## [0.7.0-beta.16] - 2020-10-16
|
|
980
1068
|
|
|
981
|
-
###
|
|
1069
|
+
### Changed
|
|
982
1070
|
|
|
983
|
-
-
|
|
984
|
-
-
|
|
985
|
-
-
|
|
1071
|
+
- 💡 remove unused @skbkontur libraries
|
|
1072
|
+
- 💡 remove unused @emotion libraries
|
|
1073
|
+
- 💡 remove unused @skbkontur libraries
|
|
1074
|
+
- 💡 use data-tid, simplify story
|
|
1075
|
+
- 💡 move CreeveyContext from shared to web
|
|
986
1076
|
|
|
987
|
-
|
|
1077
|
+
### Fixed
|
|
988
1078
|
|
|
989
|
-
|
|
1079
|
+
- 🐛 watch stories in windows
|
|
1080
|
+
- 🐛 make sidebar a little narrower
|
|
990
1081
|
|
|
991
|
-
|
|
992
|
-
- 🐛 correctly close browser session on SIGINT ([079b832](https://github.com/wKich/creevey/commit/079b8326f45d8b7a0de539c3ed2f105679a04534))
|
|
993
|
-
- 🐛 ignore removing bundle cache directory ([6be2bd7](https://github.com/wKich/creevey/commit/6be2bd789c5b259e3351169a47f1bb932ef5de44))
|
|
1082
|
+
### Miscellaneous
|
|
994
1083
|
|
|
995
|
-
|
|
1084
|
+
- 🤖 update todos
|
|
1085
|
+
- 🤖 main loader from storybook components
|
|
1086
|
+
- Remove client ResultPage
|
|
1087
|
+
- Remove @emotion/core using
|
|
1088
|
+
- 🤖 main loader from storybook components
|
|
1089
|
+
- Remove comments
|
|
1090
|
+
- 🤖 remove unused loaders
|
|
1091
|
+
- 🤖 fix deps of storybook/core
|
|
996
1092
|
|
|
997
|
-
###
|
|
1093
|
+
### Testing
|
|
998
1094
|
|
|
999
|
-
-
|
|
1095
|
+
- 💍 add sideBar active and hover test
|
|
1000
1096
|
|
|
1001
|
-
|
|
1097
|
+
### Ci
|
|
1002
1098
|
|
|
1003
|
-
|
|
1099
|
+
- 🎡 disable tests for gitlab
|
|
1100
|
+
## [0.7.0-beta.15] - 2020-10-13
|
|
1004
1101
|
|
|
1005
|
-
|
|
1102
|
+
### Added
|
|
1006
1103
|
|
|
1007
|
-
|
|
1104
|
+
- 🎸 sideBar on storybook components
|
|
1008
1105
|
|
|
1009
|
-
|
|
1010
|
-
- 🎸 rework load stories process ([e47f806](https://github.com/wKich/creevey/commit/e47f8067b6a18d066f60196605666ed8db6fadf1))
|
|
1106
|
+
### Fixed
|
|
1011
1107
|
|
|
1012
|
-
|
|
1108
|
+
- 🐛 small ui issues in SideBar
|
|
1109
|
+
- 🐛 don't output message about unnecessary image
|
|
1110
|
+
- 🐛 improve `getImageUrl` for circle ci at least
|
|
1013
1111
|
|
|
1014
|
-
###
|
|
1112
|
+
### Miscellaneous
|
|
1015
1113
|
|
|
1016
|
-
-
|
|
1114
|
+
- 🤖 sideBar header on storybook components
|
|
1115
|
+
- 🤖 pageFooter on storybook components
|
|
1017
1116
|
|
|
1018
|
-
|
|
1117
|
+
### Styling
|
|
1019
1118
|
|
|
1020
|
-
|
|
1119
|
+
- 💄 flatten checkbox and bold icons
|
|
1120
|
+
## [0.7.0-beta.14] - 2020-10-13
|
|
1021
1121
|
|
|
1022
|
-
|
|
1023
|
-
- 🎸 support .creevey config dir ([ba1c560](https://github.com/wKich/creevey/commit/ba1c5600295e5cc655370c004cf33dee4b364615))
|
|
1122
|
+
### Added
|
|
1024
1123
|
|
|
1025
|
-
|
|
1124
|
+
- 🎸 remove `useDocker`. Creevey run docker by default
|
|
1125
|
+
- 🎸 output unnecessary images on full run
|
|
1026
1126
|
|
|
1027
|
-
###
|
|
1127
|
+
### Fixed
|
|
1028
1128
|
|
|
1029
|
-
- 🐛
|
|
1129
|
+
- 🐛 fallback report if api don't available
|
|
1030
1130
|
|
|
1031
|
-
|
|
1131
|
+
### Ci
|
|
1032
1132
|
|
|
1033
|
-
|
|
1133
|
+
- 🎡 add gitlab integration
|
|
1134
|
+
## [0.7.0-beta.13] - 2020-10-09
|
|
1034
1135
|
|
|
1035
|
-
|
|
1136
|
+
### Fixed
|
|
1036
1137
|
|
|
1037
|
-
|
|
1138
|
+
- 🐛 add stories in addon
|
|
1139
|
+
- 🐛 don't fail on mdx stories, just ignore it for now
|
|
1140
|
+
- 🐛 re-disable animation
|
|
1141
|
+
- 🐛 don't crash on storybook reload error
|
|
1038
1142
|
|
|
1039
|
-
###
|
|
1143
|
+
### Miscellaneous
|
|
1040
1144
|
|
|
1041
|
-
-
|
|
1042
|
-
-
|
|
1145
|
+
- 🤖 move addon/PageHeader to shared and use it
|
|
1146
|
+
- 🤖 update deps
|
|
1043
1147
|
|
|
1044
|
-
|
|
1148
|
+
### Testing
|
|
1045
1149
|
|
|
1046
|
-
|
|
1150
|
+
- 💍 add page header tests
|
|
1151
|
+
- 💍 approve pageHeader screenshots
|
|
1047
1152
|
|
|
1048
|
-
|
|
1153
|
+
### Ci
|
|
1049
1154
|
|
|
1050
|
-
|
|
1155
|
+
- Add codeql action
|
|
1156
|
+
## [0.7.0-beta.12] - 2020-10-05
|
|
1051
1157
|
|
|
1052
|
-
###
|
|
1158
|
+
### Fixed
|
|
1053
1159
|
|
|
1054
|
-
- 🐛
|
|
1055
|
-
- 🐛
|
|
1056
|
-
- 🐛 jsdom localStorage warning ([d1099ff](https://github.com/wKich/creevey/commit/d1099ffbce27c8e6851c55970f3875680df6fabb))
|
|
1057
|
-
- 🐛 take composite images without hiding scrollbar ([4b3d95a](https://github.com/wKich/creevey/commit/4b3d95a82d339070497b97cb4bd50435851b75de))
|
|
1160
|
+
- 🐛 hmr tests on windows
|
|
1161
|
+
- 🐛 report static bundle, add polyfiils
|
|
1058
1162
|
|
|
1059
|
-
###
|
|
1163
|
+
### Miscellaneous
|
|
1060
1164
|
|
|
1061
|
-
-
|
|
1062
|
-
-
|
|
1165
|
+
- 🤖 update deps
|
|
1166
|
+
## [0.7.0-beta.11] - 2020-10-05
|
|
1063
1167
|
|
|
1064
|
-
|
|
1168
|
+
### Fixed
|
|
1065
1169
|
|
|
1066
|
-
|
|
1170
|
+
- 🐛 build addon to support ie11
|
|
1171
|
+
- 🐛 output readable error message on switch story
|
|
1172
|
+
- 🐛 run tests on circle ci
|
|
1067
1173
|
|
|
1068
|
-
|
|
1174
|
+
### Miscellaneous
|
|
1069
1175
|
|
|
1070
|
-
|
|
1176
|
+
- 🤖 remove unused define plugin variable
|
|
1177
|
+
- 🤖 update deps
|
|
1071
1178
|
|
|
1072
|
-
###
|
|
1179
|
+
### Ci
|
|
1073
1180
|
|
|
1074
|
-
-
|
|
1181
|
+
- 🎡 setup screenshot tests for circle
|
|
1182
|
+
- 🎡 fix build artifacts
|
|
1183
|
+
- 🎡 add build job for github actions
|
|
1184
|
+
## [0.7.0-beta.10] - 2020-10-02
|
|
1075
1185
|
|
|
1076
|
-
|
|
1186
|
+
### Fixed
|
|
1077
1187
|
|
|
1078
|
-
|
|
1188
|
+
- 🐛 some generated modules are excluded as external
|
|
1189
|
+
## [0.7.0-beta.9] - 2020-10-02
|
|
1079
1190
|
|
|
1080
|
-
|
|
1191
|
+
### Fixed
|
|
1081
1192
|
|
|
1082
|
-
|
|
1193
|
+
- 🐛 some ui markup, change placeholder message
|
|
1083
1194
|
|
|
1084
|
-
###
|
|
1195
|
+
### Miscellaneous
|
|
1085
1196
|
|
|
1086
|
-
-
|
|
1197
|
+
- 🤖 show placeholder when server is not running
|
|
1198
|
+
- 🤖 addon in panel instead of tab
|
|
1199
|
+
- 🤖 update todos
|
|
1200
|
+
## [0.7.0-beta.8] - 2020-10-02
|
|
1087
1201
|
|
|
1088
|
-
|
|
1202
|
+
### Fixed
|
|
1089
1203
|
|
|
1090
|
-
|
|
1204
|
+
- 🐛 storybook override creevey story parameters
|
|
1091
1205
|
|
|
1092
|
-
|
|
1206
|
+
### Miscellaneous
|
|
1093
1207
|
|
|
1094
|
-
|
|
1208
|
+
- 🤖 add storybook essential addon
|
|
1209
|
+
## [0.7.0-beta.7] - 2020-10-01
|
|
1095
1210
|
|
|
1096
|
-
###
|
|
1211
|
+
### Added
|
|
1097
1212
|
|
|
1098
|
-
- 🎸
|
|
1213
|
+
- 🎸 support declarative decorators format
|
|
1099
1214
|
|
|
1100
|
-
|
|
1215
|
+
### Changed
|
|
1101
1216
|
|
|
1102
|
-
|
|
1217
|
+
- 💡 rename src/utils => src/shared
|
|
1218
|
+
- 💡 move addon/ImagesView to shared
|
|
1219
|
+
- 💡 in client use imagesView from shared
|
|
1103
1220
|
|
|
1104
|
-
|
|
1221
|
+
### Miscellaneous
|
|
1105
1222
|
|
|
1106
|
-
|
|
1223
|
+
- 🤖 update todos
|
|
1224
|
+
- 🤖 update deps
|
|
1225
|
+
- 🤖 update todos
|
|
1226
|
+
- 🤖 Uppdate todo
|
|
1227
|
+
- Remove todos
|
|
1107
1228
|
|
|
1108
|
-
###
|
|
1229
|
+
### Testing
|
|
1109
1230
|
|
|
1110
|
-
-
|
|
1111
|
-
-
|
|
1231
|
+
- 💍 use components from addon in tests
|
|
1232
|
+
## [0.7.0-beta.6] - 2020-09-29
|
|
1112
1233
|
|
|
1113
|
-
|
|
1234
|
+
### Fixed
|
|
1114
1235
|
|
|
1115
|
-
|
|
1236
|
+
- 🐛 loader handle `export default {} as Meta`
|
|
1116
1237
|
|
|
1117
|
-
|
|
1238
|
+
### Ci
|
|
1118
1239
|
|
|
1119
|
-
|
|
1240
|
+
- 🎡 publish artifacts
|
|
1241
|
+
## [0.7.0-beta.5] - 2020-09-28
|
|
1120
1242
|
|
|
1121
|
-
###
|
|
1243
|
+
### Changed
|
|
1122
1244
|
|
|
1123
|
-
-
|
|
1245
|
+
- 💡 rename creevey port variable
|
|
1124
1246
|
|
|
1125
|
-
|
|
1247
|
+
### Fixed
|
|
1126
1248
|
|
|
1127
|
-
|
|
1249
|
+
- 🐛 remove old selenoid container on start
|
|
1250
|
+
## [0.7.0-beta.4] - 2020-09-26
|
|
1128
1251
|
|
|
1129
|
-
|
|
1252
|
+
### Fixed
|
|
1130
1253
|
|
|
1131
|
-
|
|
1254
|
+
- 🐛 small addon ui issues
|
|
1255
|
+
- 🐛 small layout fixes in addon
|
|
1256
|
+
- 🐛 correctly load report from previous run
|
|
1132
1257
|
|
|
1133
|
-
###
|
|
1258
|
+
### Miscellaneous
|
|
1134
1259
|
|
|
1135
|
-
-
|
|
1260
|
+
- **deps:** Bump bl from 4.0.2 to 4.0.3
|
|
1136
1261
|
|
|
1137
|
-
|
|
1262
|
+
### Ci
|
|
1138
1263
|
|
|
1139
|
-
|
|
1264
|
+
- 🎡 add screenshot tests
|
|
1265
|
+
## [0.7.0-beta.3] - 2020-09-25
|
|
1140
1266
|
|
|
1141
|
-
|
|
1142
|
-
- 🐛 register pirates hook before any compiler ([7acde29](https://github.com/wKich/creevey/commit/7acde290f162ea651746f4d230073055a4bed956))
|
|
1267
|
+
### Added
|
|
1143
1268
|
|
|
1144
|
-
|
|
1269
|
+
- 🎸 Storybook addon
|
|
1270
|
+
- 🎸 Add run button in addon
|
|
1271
|
+
- 🎸 show status in sidebar
|
|
1272
|
+
- 🎸 add support docker
|
|
1145
1273
|
|
|
1146
|
-
###
|
|
1274
|
+
### Changed
|
|
1147
1275
|
|
|
1148
|
-
-
|
|
1276
|
+
- 💡 extract code that used in client and addon
|
|
1277
|
+
- 💡 simplify docker initialization code
|
|
1149
1278
|
|
|
1150
|
-
###
|
|
1279
|
+
### Fixed
|
|
1151
1280
|
|
|
1152
|
-
-
|
|
1281
|
+
- 🐛 eslint errors
|
|
1282
|
+
- 🐛 use `find-dir-cache` to store cache in right place
|
|
1283
|
+
- 🐛 use selenoid instead of browser images
|
|
1284
|
+
- Docker network for windows/wsl
|
|
1285
|
+
- 🐛 resolve storybook url on windows with multiple networks
|
|
1153
1286
|
|
|
1154
|
-
|
|
1287
|
+
### Miscellaneous
|
|
1155
1288
|
|
|
1156
|
-
|
|
1289
|
+
- **deps:** Bump http-proxy from 1.17.0 to 1.18.1
|
|
1290
|
+
- **deps:** Bump http-proxy from 1.18.0 to 1.18.1 in /examples/react
|
|
1291
|
+
- **deps:** Bump http-proxy from 1.18.0 to 1.18.1 in /examples/angular
|
|
1292
|
+
- **deps:** Bump node-fetch from 2.6.0 to 2.6.1
|
|
1293
|
+
- **deps:** Bump node-fetch from 2.6.0 to 2.6.1 in /examples/angular
|
|
1294
|
+
- **deps:** Bump node-fetch from 2.6.0 to 2.6.1 in /examples/react
|
|
1295
|
+
- **deps:** Bump node-fetch from 2.6.0 to 2.6.1 in /examples/vue
|
|
1296
|
+
- **deps:** Add @storybook/theming and @storybook/components
|
|
1297
|
+
- 🤖 add storyId in Test
|
|
1298
|
+
- 🤖 update todos
|
|
1299
|
+
## [0.7.0-beta.2] - 2020-09-10
|
|
1157
1300
|
|
|
1158
|
-
|
|
1159
|
-
- ignore various non-js extensions on story load ([55f0ed0](https://github.com/wKich/creevey/commit/55f0ed01b1c235ba8e03f0c2defab8023087d46e))
|
|
1301
|
+
### Fixed
|
|
1160
1302
|
|
|
1161
|
-
|
|
1303
|
+
- 🐛 exit master process with after hook
|
|
1304
|
+
## [0.7.0-beta.1] - 2020-09-08
|
|
1162
1305
|
|
|
1163
|
-
###
|
|
1306
|
+
### Added
|
|
1164
1307
|
|
|
1165
|
-
-
|
|
1166
|
-
-
|
|
1167
|
-
- 🐛 improve configs load process ([611af95](https://github.com/wKich/creevey/commit/611af959d9b91e1826e0d357620f56ee6b394d93))
|
|
1168
|
-
- 🐛 remove mkdirp dependency ([e5cabef](https://github.com/wKich/creevey/commit/e5cabef02ae096318b3281cfe099fb6e275106fc))
|
|
1169
|
-
- 🐛 support renamed stories ([003ff10](https://github.com/wKich/creevey/commit/003ff109a25475d7c849d06ba408e29090709a9b))
|
|
1170
|
-
- 🐛 support windows paths to load storybook, disable debug ([7250b6a](https://github.com/wKich/creevey/commit/7250b6ad85862985e2e30a874bd508d79bf1b175))
|
|
1171
|
-
- correct handle process errors for worker ([1d7f035](https://github.com/wKich/creevey/commit/1d7f035b66bb2d5638679d4cb4f50958da629773))
|
|
1308
|
+
- 🎸 add before/after hooks
|
|
1309
|
+
- 🎸 show error images in imagePreview
|
|
1172
1310
|
|
|
1173
|
-
|
|
1311
|
+
### Changed
|
|
1174
1312
|
|
|
1175
|
-
|
|
1313
|
+
- 💡 output only error message for image assert
|
|
1314
|
+
- 💡 move some server files into directory
|
|
1315
|
+
- 💡 add IPC message handlers
|
|
1176
1316
|
|
|
1177
|
-
|
|
1317
|
+
### Fixed
|
|
1178
1318
|
|
|
1179
|
-
|
|
1319
|
+
- 🐛 collect all errors
|
|
1320
|
+
- 🐛 don't show error if image has been approved
|
|
1180
1321
|
|
|
1181
|
-
|
|
1182
|
-
- 🎸 improve stories initialization speed ([1009728](https://github.com/wKich/creevey/commit/10097280d24a24fb4033e4516458b2e62a0dbe63))
|
|
1322
|
+
### Miscellaneous
|
|
1183
1323
|
|
|
1184
|
-
|
|
1324
|
+
- **deps:** Bump markdown-to-jsx in /examples/react
|
|
1325
|
+
- **deps:** Bump markdown-to-jsx in /examples/angular
|
|
1326
|
+
- 🤖 update storybook to stable version
|
|
1327
|
+
## [0.7.0-beta.0] - 2020-08-04
|
|
1185
1328
|
|
|
1186
|
-
|
|
1329
|
+
### Added
|
|
1187
1330
|
|
|
1188
|
-
|
|
1331
|
+
- 🎸 support storybook v6.x
|
|
1189
1332
|
|
|
1190
|
-
###
|
|
1333
|
+
### Fixed
|
|
1191
1334
|
|
|
1192
|
-
- 🐛
|
|
1193
|
-
- 🐛
|
|
1335
|
+
- 🐛 remove scroll when change image in swap mode
|
|
1336
|
+
- 🐛 tests hot reloading
|
|
1337
|
+
- 🐛 image preview height
|
|
1338
|
+
- 🐛 gracefully end worker processes
|
|
1194
1339
|
|
|
1195
|
-
|
|
1340
|
+
### Miscellaneous
|
|
1196
1341
|
|
|
1197
|
-
|
|
1342
|
+
- 🤖 update deps
|
|
1343
|
+
- 🤖 update deps
|
|
1344
|
+
- 🤖 update deps
|
|
1345
|
+
- **deps:** Bump elliptic from 6.4.1 to 6.5.3
|
|
1346
|
+
- 🤖 fix `dot-prop` vulnerability
|
|
1347
|
+
- **deps:** Bump elliptic from 6.5.2 to 6.5.3 in /examples/angular
|
|
1348
|
+
- **deps:** Bump elliptic from 6.5.2 to 6.5.3 in /examples/vue
|
|
1349
|
+
- **deps:** Bump elliptic from 6.5.2 to 6.5.3 in /examples/react
|
|
1198
1350
|
|
|
1199
|
-
|
|
1351
|
+
### Testing
|
|
1200
1352
|
|
|
1201
|
-
|
|
1353
|
+
- 💍 update test images
|
|
1354
|
+
## [0.6.4] - 2020-07-27
|
|
1202
1355
|
|
|
1203
|
-
###
|
|
1356
|
+
### Added
|
|
1204
1357
|
|
|
1205
|
-
-
|
|
1206
|
-
-
|
|
1358
|
+
- 🎸 add disabled state to start button
|
|
1359
|
+
- 🎸 Save view mode
|
|
1207
1360
|
|
|
1208
|
-
|
|
1361
|
+
### Fixed
|
|
1209
1362
|
|
|
1210
|
-
|
|
1363
|
+
- 🐛 storybook bundle depends on core-js, regenerator-runtime
|
|
1364
|
+
- 🐛 react example loadash vulnerability
|
|
1365
|
+
- 🐛 watch stories on windows
|
|
1366
|
+
- 🐛 hot-reloading issue, add readme notes
|
|
1211
1367
|
|
|
1212
|
-
|
|
1368
|
+
### Miscellaneous
|
|
1213
1369
|
|
|
1214
|
-
|
|
1370
|
+
- **deps:** Bump npm-registry-fetch in /examples/angular
|
|
1371
|
+
- **deps:** Bump lodash from 4.17.15 to 4.17.19
|
|
1372
|
+
- **deps:** Bump lodash from 4.17.15 to 4.17.19 in /examples/angular
|
|
1373
|
+
- **deps:** Bump lodash from 4.17.15 to 4.17.19 in /examples/vue
|
|
1374
|
+
## [0.6.3] - 2020-06-16
|
|
1215
1375
|
|
|
1216
|
-
###
|
|
1376
|
+
### Fixed
|
|
1217
1377
|
|
|
1218
|
-
-
|
|
1219
|
-
|
|
1378
|
+
- 🐛 test reloading dont work well
|
|
1379
|
+
## [0.6.2] - 2020-06-10
|
|
1220
1380
|
|
|
1221
|
-
|
|
1381
|
+
### Fixed
|
|
1222
1382
|
|
|
1223
|
-
|
|
1383
|
+
- 🐛 disable hot-reloading without `--ui` option
|
|
1384
|
+
## [0.6.1] - 2020-06-10
|
|
1224
1385
|
|
|
1225
|
-
|
|
1386
|
+
### Fixed
|
|
1226
1387
|
|
|
1227
|
-
|
|
1388
|
+
- 🐛 ERR_IPC_CHANNEL_CLOSED finally
|
|
1389
|
+
- 🐛 mocha 7.2 multiple runs, remove old hacks
|
|
1228
1390
|
|
|
1229
|
-
|
|
1230
|
-
- 🎸 load stories in nodejs and generate tests in runtime ([3f276a4](https://github.com/wKich/creevey/commit/3f276a4d06e006878cd4733797c2a262abf73ea6))
|
|
1391
|
+
### Miscellaneous
|
|
1231
1392
|
|
|
1232
|
-
|
|
1393
|
+
- 🤖 update minor/patch deps versions
|
|
1394
|
+
- 🤖 update eslint to 7.x, update eslint-plugins
|
|
1395
|
+
## [0.6.0] - 2020-06-09
|
|
1233
1396
|
|
|
1234
|
-
###
|
|
1397
|
+
### Changed
|
|
1235
1398
|
|
|
1236
|
-
-
|
|
1237
|
-
- 🐛 don't use webdriver object serialization ([c4545f0](https://github.com/wKich/creevey/commit/c4545f071269426caa24599d6e1b72d933d60152))
|
|
1399
|
+
- 💡 disable perfomance hints for webpack build
|
|
1238
1400
|
|
|
1239
|
-
|
|
1401
|
+
### Documentation
|
|
1240
1402
|
|
|
1241
|
-
|
|
1403
|
+
- ✏️ update readme
|
|
1404
|
+
- ✏️ fix links in readme
|
|
1405
|
+
- ✏️ update framework examples
|
|
1406
|
+
- ✏️ update authors and todos
|
|
1242
1407
|
|
|
1243
|
-
|
|
1244
|
-
- 🐛 wrap long suite/test titles ([c7f7920](https://github.com/wKich/creevey/commit/c7f79203b3ecbb3526312084897513c827bcf598))
|
|
1408
|
+
### Fixed
|
|
1245
1409
|
|
|
1246
|
-
|
|
1410
|
+
- 🐛 kind-of@6.0.2 vulnerability
|
|
1411
|
+
- 🐛 loader: remove vars in desctructuring
|
|
1247
1412
|
|
|
1248
|
-
###
|
|
1413
|
+
### Miscellaneous
|
|
1249
1414
|
|
|
1250
|
-
-
|
|
1415
|
+
- **deps:** Bump websocket-extensions from 0.1.3 to 0.1.4
|
|
1251
1416
|
|
|
1252
|
-
|
|
1417
|
+
### Vue
|
|
1253
1418
|
|
|
1254
|
-
|
|
1419
|
+
- Add readme
|
|
1420
|
+
- Create app && add 'eslint-plugin-vue' 4 pre-commit
|
|
1421
|
+
- Add storybook
|
|
1422
|
+
- Add creevey
|
|
1423
|
+
## [0.6.0-beta.8] - 2020-06-04
|
|
1255
1424
|
|
|
1256
|
-
|
|
1257
|
-
- 🐛 correct report teamcity artifacts ([dfc7251](https://github.com/wKich/creevey/commit/dfc72514c1fa2f692a80e6bf1092255cbe7d47a9))
|
|
1258
|
-
- 🐛 firefox SlideView ([91ef075](https://github.com/wKich/creevey/commit/91ef0750f1579b27a478725152f3fde95abcdb24))
|
|
1425
|
+
### Fixed
|
|
1259
1426
|
|
|
1260
|
-
|
|
1427
|
+
- 🐛 output warning `Did you call 'load' twice` on reload
|
|
1428
|
+
## [0.6.0-beta.7] - 2020-06-02
|
|
1261
1429
|
|
|
1262
|
-
###
|
|
1430
|
+
### Fixed
|
|
1263
1431
|
|
|
1264
|
-
- 🐛
|
|
1265
|
-
-
|
|
1266
|
-
- 🐛 improve SideBar tests view ([a495fc1](https://github.com/wKich/creevey/commit/a495fc1b0321763092105ef641fc48b23548440b))
|
|
1267
|
-
- 🐛 switch between tests ([ae25d59](https://github.com/wKich/creevey/commit/ae25d59d3d6e8433b522d13994d7e096e0958651))
|
|
1268
|
-
- tests status move down, when scroll is shown ([9df0523](https://github.com/wKich/creevey/commit/9df0523e9a4b8bc54488e45eb106e8077303f146))
|
|
1432
|
+
- 🐛 webpack recursion IPC, again
|
|
1433
|
+
## [0.6.0-beta.6] - 2020-06-02
|
|
1269
1434
|
|
|
1270
|
-
###
|
|
1435
|
+
### Fixed
|
|
1271
1436
|
|
|
1272
|
-
-
|
|
1273
|
-
-
|
|
1274
|
-
- 🎸 sticky SideBar with sitcky header ([06cc16c](https://github.com/wKich/creevey/commit/06cc16cc79be0756ff117f40447a9eaa28bf5f2a))
|
|
1275
|
-
- 🎸 update SideBar markup by prototype ([7ba22fd](https://github.com/wKich/creevey/commit/7ba22fd766ca86de92da89b4a2260bc3495e16ab))
|
|
1276
|
-
- swap images buttons by prototype ([5ce4214](https://github.com/wKich/creevey/commit/5ce4214c9a18f48b654534fbd77e297dce9cb7b7))
|
|
1277
|
-
- view tests results count in sidebar ([9300f07](https://github.com/wKich/creevey/commit/9300f07abeb7cb4271cf85478493a9090cdc8127))
|
|
1437
|
+
- 🐛 IPC messages recursion, again
|
|
1438
|
+
## [0.6.0-beta.5] - 2020-06-02
|
|
1278
1439
|
|
|
1279
|
-
|
|
1440
|
+
### Fixed
|
|
1280
1441
|
|
|
1281
|
-
|
|
1442
|
+
- 🐛 webpack compiler process send messages recursion
|
|
1443
|
+
## [0.6.0-beta.4] - 2020-06-02
|
|
1282
1444
|
|
|
1283
|
-
|
|
1445
|
+
### Added
|
|
1284
1446
|
|
|
1285
|
-
|
|
1447
|
+
- 🎸 allow use `delay` with custom tests
|
|
1286
1448
|
|
|
1287
|
-
###
|
|
1449
|
+
### Fixed
|
|
1288
1450
|
|
|
1289
|
-
- 🐛
|
|
1290
|
-
- 🐛
|
|
1291
|
-
- 🐛
|
|
1451
|
+
- 🐛 another fix to gracefully exit
|
|
1452
|
+
- 🐛 check element before capturing screenshot
|
|
1453
|
+
- 🐛 some small init/exit issues
|
|
1454
|
+
## [0.6.0-beta.3] - 2020-05-27
|
|
1292
1455
|
|
|
1293
|
-
|
|
1456
|
+
### Fixed
|
|
1294
1457
|
|
|
1295
|
-
|
|
1458
|
+
- 🐛 make loader be more aggressive
|
|
1459
|
+
- 🐛 EPIPE message on exit again
|
|
1460
|
+
- 🐛 soft-freeze mocha version on 7.1
|
|
1461
|
+
## [0.6.0-beta.2] - 2020-05-18
|
|
1296
1462
|
|
|
1297
|
-
|
|
1463
|
+
### Fixed
|
|
1298
1464
|
|
|
1299
|
-
|
|
1465
|
+
- 🐛 correctly close browser session on SIGINT
|
|
1466
|
+
- 🐛 correct shutdown workers
|
|
1467
|
+
- 🐛 ignore removing bundle cache directory
|
|
1468
|
+
## [0.6.0-beta.1] - 2020-05-15
|
|
1300
1469
|
|
|
1301
|
-
|
|
1470
|
+
### Fixed
|
|
1302
1471
|
|
|
1303
|
-
|
|
1472
|
+
- 🐛 storybook framework detection on windows
|
|
1473
|
+
## [0.6.0-beta.0] - 2020-05-14
|
|
1304
1474
|
|
|
1305
|
-
###
|
|
1475
|
+
### Added
|
|
1306
1476
|
|
|
1307
|
-
-
|
|
1308
|
-
-
|
|
1309
|
-
- **utils:** try resolve ip only if address is localhost ([4aa6c69](https://github.com/wKich/creevey/commit/4aa6c693f537543ad86cebfc3e071583422a555a))
|
|
1310
|
-
- **worker:** exit master process if worker couldn't start ([e682a47](https://github.com/wKich/creevey/commit/e682a47a9900c12941e0bb6ab72d9ef7628faa7c))
|
|
1477
|
+
- 🎸 rework load stories process
|
|
1478
|
+
- 🎸 add creevey-loader for webpack
|
|
1311
1479
|
|
|
1312
|
-
###
|
|
1480
|
+
### Changed
|
|
1313
1481
|
|
|
1314
|
-
-
|
|
1482
|
+
- 💡 remove unused `require.context` and `pirates` hooks
|
|
1483
|
+
- 💡 fix worker message issue after rebase
|
|
1315
1484
|
|
|
1316
|
-
|
|
1485
|
+
### Fixed
|
|
1317
1486
|
|
|
1318
|
-
|
|
1487
|
+
- 🐛 support latest selenium browser drivers
|
|
1319
1488
|
|
|
1320
|
-
|
|
1489
|
+
### Miscellaneous
|
|
1321
1490
|
|
|
1322
|
-
|
|
1491
|
+
- 🤖 update deps
|
|
1492
|
+
- 🤖 update deps
|
|
1323
1493
|
|
|
1324
|
-
###
|
|
1494
|
+
### Testing
|
|
1325
1495
|
|
|
1326
|
-
-
|
|
1496
|
+
- 💍 update screenshot images
|
|
1497
|
+
## [0.5.6] - 2020-05-04
|
|
1327
1498
|
|
|
1328
|
-
|
|
1499
|
+
### Fixed
|
|
1329
1500
|
|
|
1330
|
-
|
|
1501
|
+
- 🐛 handle worker initiating error
|
|
1502
|
+
## [0.5.5] - 2020-04-21
|
|
1331
1503
|
|
|
1332
|
-
|
|
1504
|
+
### Added
|
|
1333
1505
|
|
|
1334
|
-
|
|
1506
|
+
- 🎸 support .creevey config dir
|
|
1507
|
+
- 🎸 add `saveReport` cli option, enabled by default
|
|
1335
1508
|
|
|
1336
|
-
###
|
|
1509
|
+
### Documentation
|
|
1337
1510
|
|
|
1338
|
-
-
|
|
1511
|
+
- ✏️ add example and guide for angular project
|
|
1512
|
+
- ✏️ small update for angular and chore fixes
|
|
1513
|
+
- ✏️ add example and guide for react project
|
|
1339
1514
|
|
|
1340
|
-
|
|
1515
|
+
### Miscellaneous
|
|
1341
1516
|
|
|
1342
|
-
|
|
1517
|
+
- 🤖 clean-up npm scripts
|
|
1343
1518
|
|
|
1344
|
-
|
|
1519
|
+
### Ci
|
|
1345
1520
|
|
|
1346
|
-
|
|
1521
|
+
- 🎡 skip examples from type-checking process
|
|
1522
|
+
## [0.5.4] - 2020-04-04
|
|
1347
1523
|
|
|
1348
|
-
###
|
|
1524
|
+
### Fixed
|
|
1349
1525
|
|
|
1350
|
-
-
|
|
1526
|
+
- 🐛 remove new code that added by mistake
|
|
1527
|
+
## [0.5.3] - 2020-04-04
|
|
1351
1528
|
|
|
1352
|
-
|
|
1529
|
+
### Changed
|
|
1353
1530
|
|
|
1354
|
-
|
|
1531
|
+
- 💡 move selenium helpers in separate module
|
|
1355
1532
|
|
|
1356
|
-
|
|
1533
|
+
### Fixed
|
|
1357
1534
|
|
|
1358
|
-
|
|
1535
|
+
- 🐛 precompile decorator file for ie11 target
|
|
1359
1536
|
|
|
1360
|
-
###
|
|
1537
|
+
### Miscellaneous
|
|
1361
1538
|
|
|
1362
|
-
-
|
|
1539
|
+
- 🤖 update AUTHORS
|
|
1540
|
+
- 🤖 update deps
|
|
1541
|
+
## [0.5.2] - 2020-03-30
|
|
1363
1542
|
|
|
1364
|
-
|
|
1543
|
+
### Documentation
|
|
1365
1544
|
|
|
1366
|
-
|
|
1545
|
+
- ✏️ add authors and changelog files
|
|
1367
1546
|
|
|
1368
|
-
|
|
1547
|
+
### Fixed
|
|
1369
1548
|
|
|
1370
|
-
|
|
1549
|
+
- 🐛 use selenium as deps, rename storybook peerDeps package
|
|
1550
|
+
- Ignore *.scss modules while loading stories
|
|
1371
1551
|
|
|
1372
|
-
###
|
|
1552
|
+
### Miscellaneous
|
|
1373
1553
|
|
|
1374
|
-
-
|
|
1375
|
-
- **runner:** support skip story option ([f094548](https://github.com/wKich/creevey/commit/f094548016fa57ae26ca6b91c61dc8547eac3285))
|
|
1376
|
-
- **storybook:** hide scroll while screenshot, few issues ([313cfa4](https://github.com/wKich/creevey/commit/313cfa498f19c8fa7407b365ee998795c9488877))
|
|
1377
|
-
- correct convert kind/story into storyId ([12d3c3a](https://github.com/wKich/creevey/commit/12d3c3af184cca6634246ad70010e32c515ecc8a))
|
|
1378
|
-
- **storybook:** make parameters optional ([6c674bd](https://github.com/wKich/creevey/commit/6c674bd615a0fbea5a42ff930eb7da54ed63bd45))
|
|
1379
|
-
- few types issues ([1ee82f8](https://github.com/wKich/creevey/commit/1ee82f8e3e28e1e37e1bc50fc5f5d081a468e0dd))
|
|
1554
|
+
- 🤖 small changes in todos
|
|
1380
1555
|
|
|
1381
|
-
###
|
|
1556
|
+
### Styling
|
|
1382
1557
|
|
|
1383
|
-
-
|
|
1384
|
-
|
|
1385
|
-
- make testDir optional ([714f76f](https://github.com/wKich/creevey/commit/714f76f1addc2b1fafcd95f0b96ac34a1100bbea))
|
|
1386
|
-
- **storybook:** pass creevey story parameters ([df259fe](https://github.com/wKich/creevey/commit/df259feb630f03914e5153e37bfe76d5ce587738))
|
|
1387
|
-
- generate tests from stories in runtime ([2625f93](https://github.com/wKich/creevey/commit/2625f93c83c52c8f2408a00022462cf2ae950e87))
|
|
1388
|
-
- output removed tests status ([442f4da](https://github.com/wKich/creevey/commit/442f4daee06f831350eae16fe2c7acc372abda25))
|
|
1558
|
+
- 💄 reformat, fix lint issues
|
|
1559
|
+
## [0.5.1] - 2020-03-26
|
|
1389
1560
|
|
|
1390
|
-
|
|
1561
|
+
### Added
|
|
1391
1562
|
|
|
1392
|
-
|
|
1563
|
+
- 🎸 output story render error
|
|
1393
1564
|
|
|
1394
|
-
|
|
1395
|
-
- support storybook kind depth levels ([7d2523d](https://github.com/wKich/creevey/commit/7d2523dae79050bd662b223463bd15cdb1470798))
|
|
1565
|
+
### Miscellaneous
|
|
1396
1566
|
|
|
1397
|
-
|
|
1567
|
+
- 🤖 update react-ui to pre-2.0 unstable version
|
|
1568
|
+
- 🤖 update react-ui to next major version
|
|
1569
|
+
- 🤖 update deps
|
|
1570
|
+
## [0.5.0] - 2020-03-25
|
|
1398
1571
|
|
|
1399
|
-
###
|
|
1572
|
+
### Added
|
|
1400
1573
|
|
|
1401
|
-
-
|
|
1574
|
+
- 🎸 support safari for composite images
|
|
1575
|
+
- 🎸 rewrite storybook decorator to be framework agnostic
|
|
1402
1576
|
|
|
1403
|
-
|
|
1577
|
+
### Fixed
|
|
1404
1578
|
|
|
1405
|
-
|
|
1579
|
+
- 🐛 take composite images without hiding scrollbar
|
|
1580
|
+
- 🐛 improve blend view css filters
|
|
1581
|
+
- 🐛 gracefully close selenium session
|
|
1582
|
+
- 🐛 jsdom localStorage warning
|
|
1406
1583
|
|
|
1407
|
-
|
|
1408
|
-
- **server:** pass args to parser, skip folders while copy static ([1343c28](https://github.com/wKich/creevey/commit/1343c28b5694a43d99f52086ffffed5c51cace9c))
|
|
1409
|
-
- **storybook:** improve export and types ([11a8dc2](https://github.com/wKich/creevey/commit/11a8dc2b7ff28a2d5ab46845a5885a9d467419e1))
|
|
1410
|
-
- **storybook:** support storybook@3.x ([8c952cc](https://github.com/wKich/creevey/commit/8c952cc43abb9d490c2436ad6433d322feb58d62))
|
|
1411
|
-
- optional hooks, fix default testRegex ([8da03d2](https://github.com/wKich/creevey/commit/8da03d211adb6a8902f48e884dd414f03296e53e))
|
|
1584
|
+
### Miscellaneous
|
|
1412
1585
|
|
|
1413
|
-
|
|
1586
|
+
- **deps:** Bump acorn from 6.3.0 to 6.4.1
|
|
1587
|
+
- 🤖 update deps
|
|
1588
|
+
## [0.4.11] - 2020-03-13
|
|
1414
1589
|
|
|
1415
|
-
|
|
1416
|
-
- remove mocha-ui ([1abf335](https://github.com/wKich/creevey/commit/1abf3352e15bd1fb777ff7ac35a8d00b87969c4a))
|
|
1417
|
-
- **cli:** add `update` option for batch approve ([ed2a1f6](https://github.com/wKich/creevey/commit/ed2a1f61430a8befdddb148b426601e39b90540a))
|
|
1590
|
+
### Fixed
|
|
1418
1591
|
|
|
1419
|
-
|
|
1592
|
+
- 🐛 hide scroll only for composite screenshots
|
|
1593
|
+
## [0.4.10] - 2020-03-13
|
|
1420
1594
|
|
|
1421
|
-
###
|
|
1595
|
+
### Fixed
|
|
1422
1596
|
|
|
1423
|
-
-
|
|
1424
|
-
|
|
1597
|
+
- 🐛 skip by test name with multiple skip options
|
|
1598
|
+
## [0.4.9] - 2020-03-13
|
|
1425
1599
|
|
|
1426
|
-
|
|
1600
|
+
### Changed
|
|
1427
1601
|
|
|
1428
|
-
|
|
1602
|
+
- 💡 simplify `storyTestFabric`, use test context
|
|
1429
1603
|
|
|
1430
|
-
|
|
1431
|
-
- **pool:** correct retry tests by timeout ([1c11e52](https://github.com/wKich/creevey/commit/1c11e528d379b4f05330cb438e5ff58d5762f917))
|
|
1604
|
+
### Fixed
|
|
1432
1605
|
|
|
1433
|
-
|
|
1606
|
+
- 🐛 exclude `@babel/*` modules from skiping while fastload
|
|
1607
|
+
## [0.4.8] - 2020-03-13
|
|
1434
1608
|
|
|
1435
|
-
|
|
1609
|
+
### Fixed
|
|
1436
1610
|
|
|
1437
|
-
|
|
1611
|
+
- 🐛 broken skip by test names
|
|
1612
|
+
## [0.4.7] - 2020-03-13
|
|
1438
1613
|
|
|
1439
|
-
###
|
|
1614
|
+
### Fixed
|
|
1440
1615
|
|
|
1441
|
-
-
|
|
1616
|
+
- 🐛 register require.context before all other modules
|
|
1617
|
+
## [0.4.6] - 2020-03-13
|
|
1442
1618
|
|
|
1443
|
-
|
|
1619
|
+
### Added
|
|
1444
1620
|
|
|
1445
|
-
|
|
1621
|
+
- 🎸 allow take composite screenshots in custom tests
|
|
1622
|
+
## [0.4.5] - 2020-03-12
|
|
1446
1623
|
|
|
1447
|
-
|
|
1624
|
+
### Added
|
|
1448
1625
|
|
|
1449
|
-
|
|
1626
|
+
- 🎸 add `delay` creevey story parameter
|
|
1450
1627
|
|
|
1451
|
-
###
|
|
1628
|
+
### Miscellaneous
|
|
1452
1629
|
|
|
1453
|
-
-
|
|
1630
|
+
- 🤖 add to npmignore some stuff
|
|
1631
|
+
## [0.4.4] - 2020-03-12
|
|
1454
1632
|
|
|
1455
|
-
|
|
1633
|
+
### Added
|
|
1456
1634
|
|
|
1457
|
-
|
|
1635
|
+
- 🎸 add `debug` cli option
|
|
1636
|
+
- 🎸 improve creevey story params typings, simplify tests
|
|
1637
|
+
## [0.4.3] - 2020-03-11
|
|
1458
1638
|
|
|
1459
|
-
|
|
1639
|
+
### Added
|
|
1460
1640
|
|
|
1461
|
-
|
|
1641
|
+
- 🎸 improve fastloading, to allow use side effects
|
|
1642
|
+
## [0.4.2] - 2020-03-11
|
|
1462
1643
|
|
|
1463
|
-
###
|
|
1644
|
+
### Fixed
|
|
1464
1645
|
|
|
1465
|
-
-
|
|
1646
|
+
- 🐛 patch babel-register hook to support all extensions
|
|
1466
1647
|
|
|
1467
|
-
###
|
|
1648
|
+
### Miscellaneous
|
|
1468
1649
|
|
|
1469
|
-
-
|
|
1470
|
-
|
|
1650
|
+
- 🤖 add end gap in sidebar
|
|
1651
|
+
## [0.4.1] - 2020-03-10
|
|
1471
1652
|
|
|
1472
|
-
|
|
1653
|
+
### Fixed
|
|
1473
1654
|
|
|
1474
|
-
|
|
1655
|
+
- 🐛 some minor issues
|
|
1656
|
+
## [0.4.0] - 2020-03-04
|
|
1475
1657
|
|
|
1476
|
-
###
|
|
1658
|
+
### Added
|
|
1477
1659
|
|
|
1478
|
-
-
|
|
1660
|
+
- 🎸 add test hot reloading, support new storybook configs
|
|
1479
1661
|
|
|
1480
|
-
|
|
1662
|
+
### Changed
|
|
1481
1663
|
|
|
1482
|
-
|
|
1664
|
+
- 💡 make `retries` optional property in Test
|
|
1665
|
+
- 💡 update screenshots, fix some minor issues
|
|
1666
|
+
## [0.3.8] - 2020-03-03
|
|
1483
1667
|
|
|
1484
|
-
|
|
1668
|
+
### Documentation
|
|
1485
1669
|
|
|
1486
|
-
|
|
1670
|
+
- ✏️ add type descriptions and update readme
|
|
1487
1671
|
|
|
1488
|
-
###
|
|
1672
|
+
### Fixed
|
|
1489
1673
|
|
|
1490
|
-
-
|
|
1674
|
+
- 🐛 ie11 don't work due async fn in types.ts file
|
|
1675
|
+
- 🐛 register pirates hook before any compiler
|
|
1491
1676
|
|
|
1492
|
-
|
|
1677
|
+
### Miscellaneous
|
|
1493
1678
|
|
|
1494
|
-
|
|
1679
|
+
- 🤖 update deps, fix typos
|
|
1495
1680
|
|
|
1496
|
-
|
|
1681
|
+
### Ci
|
|
1497
1682
|
|
|
1498
|
-
|
|
1683
|
+
- 🎡 add github actions lint workflow
|
|
1684
|
+
## [0.3.7] - 2020-02-20
|
|
1499
1685
|
|
|
1500
|
-
###
|
|
1686
|
+
### Added
|
|
1501
1687
|
|
|
1502
|
-
-
|
|
1503
|
-
- **reporter:** add `chalk` to color output ([87e4d9a](https://github.com/wKich/creevey/commit/87e4d9aaac0457c7a17b6b5849ebce817e1ef64f))
|
|
1688
|
+
- 🎸 add onClick on teststatus for filter
|
|
1504
1689
|
|
|
1505
|
-
|
|
1690
|
+
### Changed
|
|
1506
1691
|
|
|
1507
|
-
|
|
1692
|
+
- 💡 mv parcing in sidebarheader, add functionfor click
|
|
1693
|
+
- 💡 simplify status filter handling
|
|
1508
1694
|
|
|
1509
|
-
|
|
1695
|
+
### Fixed
|
|
1510
1696
|
|
|
1511
|
-
|
|
1697
|
+
- 🐛 fix bug with sync call onCompare
|
|
1512
1698
|
|
|
1513
|
-
###
|
|
1699
|
+
### Miscellaneous
|
|
1514
1700
|
|
|
1515
|
-
-
|
|
1516
|
-
-
|
|
1517
|
-
- **server:** set `skip` flag require ([db235d3](https://github.com/wKich/creevey/commit/db235d3fecac99f65f56220b176d4a7284e09c92))
|
|
1518
|
-
- **worker:** patch mocha to support skip tests for browser ([1de1ea0](https://github.com/wKich/creevey/commit/1de1ea071ada8724e0240430a4cd21299c757abb))
|
|
1701
|
+
- 🤖 remove underline of test status button
|
|
1702
|
+
- 🤖 update deps
|
|
1519
1703
|
|
|
1520
|
-
###
|
|
1704
|
+
### Testing
|
|
1521
1705
|
|
|
1522
|
-
-
|
|
1706
|
+
- 💍 fix screenshot tests, and approve chrome diff color
|
|
1707
|
+
## [0.3.6] - 2020-02-17
|
|
1523
1708
|
|
|
1524
|
-
|
|
1709
|
+
### Fixed
|
|
1525
1710
|
|
|
1526
|
-
|
|
1711
|
+
- 🐛 output error message while init for master process
|
|
1712
|
+
- Ignore various non-js extensions on story load
|
|
1527
1713
|
|
|
1528
|
-
|
|
1529
|
-
- **worker:** escape test path string ([694cd32](https://github.com/wKich/creevey/commit/694cd32bc737b7445f683e69e5cc044f23b0a666))
|
|
1714
|
+
### Miscellaneous
|
|
1530
1715
|
|
|
1531
|
-
|
|
1716
|
+
- 🤖 update todos
|
|
1717
|
+
## [0.3.5] - 2020-02-11
|
|
1532
1718
|
|
|
1533
|
-
|
|
1534
|
-
- **server:** allow define uniq options for each browser ([4280a32](https://github.com/wKich/creevey/commit/4280a326859ece52701fc5802cab7b3b9a65ec8f))
|
|
1719
|
+
### Changed
|
|
1535
1720
|
|
|
1536
|
-
|
|
1721
|
+
- 💡 chai-images to be more reusable
|
|
1537
1722
|
|
|
1538
|
-
###
|
|
1723
|
+
### Fixed
|
|
1539
1724
|
|
|
1540
|
-
-
|
|
1541
|
-
-
|
|
1542
|
-
-
|
|
1725
|
+
- 🐛 remove mkdirp dependency
|
|
1726
|
+
- 🐛 don't mutate test scope on image assertion
|
|
1727
|
+
- 🐛 don't show tests without status by status filter
|
|
1728
|
+
- 🐛 improve configs load process
|
|
1729
|
+
- 🐛 support windows paths to load storybook, disable debug
|
|
1730
|
+
- 🐛 support renamed stories
|
|
1731
|
+
- Correct handle process errors for worker
|
|
1543
1732
|
|
|
1544
|
-
|
|
1733
|
+
### Miscellaneous
|
|
1545
1734
|
|
|
1546
|
-
|
|
1735
|
+
- 🤖 update deps
|
|
1736
|
+
- 🤖 update deps
|
|
1737
|
+
- 🤖 update deps
|
|
1738
|
+
## [0.3.4] - 2020-01-17
|
|
1547
1739
|
|
|
1548
|
-
|
|
1549
|
-
- **utils:** reset mouse position ([1f79e61](https://github.com/wKich/creevey/commit/1f79e6166d65631b7c076171926e6f3e542e0481))
|
|
1740
|
+
### Added
|
|
1550
1741
|
|
|
1551
|
-
|
|
1742
|
+
- 🎸 improve stories initialization speed
|
|
1743
|
+
- 🎸 allow pass diff options to pixelmatch
|
|
1552
1744
|
|
|
1553
|
-
|
|
1745
|
+
### Fixed
|
|
1554
1746
|
|
|
1555
|
-
|
|
1747
|
+
- 🐛 improve fast-loading, throw non-syntax errors on require
|
|
1748
|
+
## [0.3.3] - 2020-01-16
|
|
1556
1749
|
|
|
1557
|
-
###
|
|
1750
|
+
### Fixed
|
|
1558
1751
|
|
|
1559
|
-
-
|
|
1560
|
-
-
|
|
1561
|
-
- **server:** restart worker on error ([73abcf7](https://github.com/wKich/creevey/commit/73abcf7d6535555bcf13e1d571c00fafcd91e848))
|
|
1562
|
-
- **worker:** improve test reporter ([e18878c](https://github.com/wKich/creevey/commit/e18878c68c56c66838d085a2e93788c6c7ab9ac8))
|
|
1752
|
+
- 🐛 add hint for images preview
|
|
1753
|
+
- 🐛 move mocha typing to devDeps
|
|
1563
1754
|
|
|
1564
|
-
###
|
|
1755
|
+
### Miscellaneous
|
|
1565
1756
|
|
|
1566
|
-
-
|
|
1567
|
-
|
|
1568
|
-
- **client:** add different image views ([9f08bcc](https://github.com/wKich/creevey/commit/9f08bcced07ef619f951c8489c5774202868bef6))
|
|
1569
|
-
- **client:** output test error message ([e277298](https://github.com/wKich/creevey/commit/e27729869a8e383a3ae6b2ef1ff73784e8880d9e))
|
|
1570
|
-
- **client:** use `emotion` for styles ([35ba95a](https://github.com/wKich/creevey/commit/35ba95a286aa355162fccfd39b4a93a054a58f50))
|
|
1571
|
-
- render approved images ([af80081](https://github.com/wKich/creevey/commit/af8008112bc98dc3d7d0bfa5baaef91783210abe))
|
|
1572
|
-
- **server:** better handle ws messages ([64cb126](https://github.com/wKich/creevey/commit/64cb126e5c4b671d99b4df4f308e1ec6f3251447))
|
|
1757
|
+
- 🤖 update immer to 5.3.2
|
|
1758
|
+
## [0.3.2] - 2020-01-15
|
|
1573
1759
|
|
|
1574
|
-
|
|
1760
|
+
### Fixed
|
|
1575
1761
|
|
|
1576
|
-
|
|
1762
|
+
- 🐛 initiate browser after all stories has been loaded
|
|
1577
1763
|
|
|
1578
|
-
|
|
1764
|
+
### Miscellaneous
|
|
1579
1765
|
|
|
1580
|
-
|
|
1766
|
+
- 🤖 update some deps
|
|
1767
|
+
## [0.3.1] - 2020-01-13
|
|
1581
1768
|
|
|
1582
|
-
###
|
|
1769
|
+
### Fixed
|
|
1583
1770
|
|
|
1584
|
-
-
|
|
1585
|
-
-
|
|
1586
|
-
|
|
1587
|
-
- **TestRestultView:** always open last image ([b7f9cd6](https://github.com/wKich/creevey/commit/b7f9cd6a33c0b9f97cec10a5d5b89526eab92689))
|
|
1588
|
-
- **TestRestultView:** improve images output ([60849d2](https://github.com/wKich/creevey/commit/60849d2199699a5cf46caa21ab7a9b31595cc4d9))
|
|
1589
|
-
- **utils:** change test scope path. Move browser to the last ([4cd00ed](https://github.com/wKich/creevey/commit/4cd00ed5a3ac9a9371e6aedfc4cbff7d47d3e2bf))
|
|
1590
|
-
- **worker:** clean images, strong regexp for grep ([c55da42](https://github.com/wKich/creevey/commit/c55da4291e7a813e39b6aca13ea8ca1d2764c17a))
|
|
1591
|
-
- **worker:** increase mocha timeout ([e841f5c](https://github.com/wKich/creevey/commit/e841f5c72bb55069db3827424a102153c1c3141e))
|
|
1592
|
-
- export types ([87e502e](https://github.com/wKich/creevey/commit/87e502e93418f7d38a6e6762c50a118bfa94e58d))
|
|
1771
|
+
- 🐛 require config when path don't have extension
|
|
1772
|
+
- 🐛 capture screenshot of element with non-integer size
|
|
1773
|
+
## [0.3.0] - 2020-01-10
|
|
1593
1774
|
|
|
1594
|
-
###
|
|
1775
|
+
### Added
|
|
1776
|
+
|
|
1777
|
+
- 🎸 remove support explicit test cases
|
|
1778
|
+
|
|
1779
|
+
### Documentation
|
|
1780
|
+
|
|
1781
|
+
- ✏️ update TODO.md
|
|
1782
|
+
## [0.2.6] - 2020-01-10
|
|
1783
|
+
|
|
1784
|
+
### Added
|
|
1785
|
+
|
|
1786
|
+
- 🎸 add `tests` story parameter for public usage
|
|
1787
|
+
- 🎸 add `toMatchImages` assertion for chai
|
|
1788
|
+
## [0.2.5] - 2020-01-10
|
|
1789
|
+
|
|
1790
|
+
### Added
|
|
1791
|
+
|
|
1792
|
+
- 🎸 add `reportDir/screenDir` cli options
|
|
1793
|
+
- 🎸 load stories in nodejs and generate tests in runtime
|
|
1794
|
+
|
|
1795
|
+
### Fixed
|
|
1796
|
+
|
|
1797
|
+
- 🐛 correct work update with new report structure
|
|
1798
|
+
|
|
1799
|
+
### Miscellaneous
|
|
1800
|
+
|
|
1801
|
+
- 🤖 update deps
|
|
1802
|
+
- 🤖 downgrade @types/node
|
|
1803
|
+
## [0.2.4] - 2019-12-23
|
|
1804
|
+
|
|
1805
|
+
### Fixed
|
|
1806
|
+
|
|
1807
|
+
- 🐛 don't use webdriver object serialization
|
|
1808
|
+
- 🐛 convert export story names to storybook format
|
|
1809
|
+
## [0.2.3] - 2019-12-19
|
|
1810
|
+
|
|
1811
|
+
### Fixed
|
|
1812
|
+
|
|
1813
|
+
- 🐛 wrap long suite/test titles
|
|
1814
|
+
- 🐛 allow skip tests by kinds
|
|
1815
|
+
|
|
1816
|
+
### Miscellaneous
|
|
1817
|
+
|
|
1818
|
+
- 🤖 update deps
|
|
1819
|
+
## [0.2.2] - 2019-12-11
|
|
1820
|
+
|
|
1821
|
+
### Fixed
|
|
1822
|
+
|
|
1823
|
+
- 🐛 correct publish artifacts for TeamCity reporter
|
|
1824
|
+
## [0.2.1] - 2019-12-11
|
|
1825
|
+
|
|
1826
|
+
### Documentation
|
|
1827
|
+
|
|
1828
|
+
- ✏️ update todos
|
|
1829
|
+
|
|
1830
|
+
### Fixed
|
|
1831
|
+
|
|
1832
|
+
- 🐛 correct report teamcity artifacts
|
|
1833
|
+
- 🐛 allow click on checkbox in sidebar
|
|
1834
|
+
- 🐛 firefox SlideView
|
|
1835
|
+
|
|
1836
|
+
### Miscellaneous
|
|
1837
|
+
|
|
1838
|
+
- 🤖 update deps
|
|
1839
|
+
|
|
1840
|
+
### Testing
|
|
1841
|
+
|
|
1842
|
+
- 💍 add SideBar screenshot tests
|
|
1843
|
+
## [0.2.0] - 2019-12-05
|
|
1844
|
+
|
|
1845
|
+
### Added
|
|
1846
|
+
|
|
1847
|
+
- 🎸 update SideBar markup by prototype
|
|
1848
|
+
- 🎸 improve markup for ResultPage by prototypes
|
|
1849
|
+
- View tests results count in sidebar
|
|
1850
|
+
- 🎸 sticky SideBar with sitcky header
|
|
1851
|
+
- 🎸 output penging tests count
|
|
1852
|
+
- Swap images buttons by prototype
|
|
1853
|
+
|
|
1854
|
+
### Changed
|
|
1855
|
+
|
|
1856
|
+
- 💡 split views, rename some types, update typescript
|
|
1857
|
+
- 💡 creevey app on hooks
|
|
1858
|
+
- 💡 eslint fix all errors
|
|
1859
|
+
- 💡 improve ImagePreview, simplify ResultsPage
|
|
1860
|
+
|
|
1861
|
+
### Fixed
|
|
1862
|
+
|
|
1863
|
+
- 🐛 improve SideBar tests view
|
|
1864
|
+
- 🐛 switch between tests
|
|
1865
|
+
- 🐛 a lot of bugs with views, approve and more
|
|
1866
|
+
- Tests status move down, when scroll is shown
|
|
1867
|
+
- 🐛 ImagesView correctly resize image in most cases
|
|
1868
|
+
|
|
1869
|
+
### Miscellaneous
|
|
1870
|
+
|
|
1871
|
+
- 🤖 add prettier and lint-staged
|
|
1872
|
+
- 🤖 add eslint config
|
|
1873
|
+
- 🤖 update deps
|
|
1874
|
+
- 🤖 update eslint config
|
|
1875
|
+
- 🤖 add md/json files to lint-staged
|
|
1876
|
+
- 🤖 update deps
|
|
1877
|
+
- 🤖 update todos, use immer as devDeps
|
|
1878
|
+
|
|
1879
|
+
### Styling
|
|
1880
|
+
|
|
1881
|
+
- 💄 apply prettier formatting
|
|
1882
|
+
- 💄 reformat root files
|
|
1883
|
+
## [0.1.7] - 2019-11-22
|
|
1884
|
+
|
|
1885
|
+
### Added
|
|
1886
|
+
|
|
1887
|
+
- 🎸 allow skip test stories by kinds
|
|
1888
|
+
## [0.1.6] - 2019-11-22
|
|
1889
|
+
|
|
1890
|
+
### Fixed
|
|
1891
|
+
|
|
1892
|
+
- 🐛 significantly improve perfomance
|
|
1893
|
+
- 🐛 output correct reported screenshot path for teamcity
|
|
1894
|
+
- 🐛 handle regexp skip options
|
|
1895
|
+
## [0.1.5] - 2019-11-20
|
|
1896
|
+
|
|
1897
|
+
### Added
|
|
1898
|
+
|
|
1899
|
+
- 🎸 support write tests inside stories
|
|
1900
|
+
|
|
1901
|
+
### Fixed
|
|
1902
|
+
|
|
1903
|
+
- 🐛 require stories in nodejs env
|
|
1904
|
+
|
|
1905
|
+
### Miscellaneous
|
|
1906
|
+
|
|
1907
|
+
- 🤖 rename .babelrc
|
|
1908
|
+
## [0.1.4] - 2019-11-18
|
|
1909
|
+
|
|
1910
|
+
### Fixed
|
|
1911
|
+
|
|
1912
|
+
- **utils:** Try resolve ip only if address is localhost
|
|
1913
|
+
- **utils:** Improve error message when storybook page not available
|
|
1914
|
+
- **worker:** Exit master process if worker couldn't start
|
|
1915
|
+
- **master:** Dont output skipped tests
|
|
1916
|
+
|
|
1917
|
+
### Miscellaneous
|
|
1918
|
+
|
|
1919
|
+
- 🤖 add commitizen cli, setup git pre-commit hook
|
|
1920
|
+
|
|
1921
|
+
### Build
|
|
1922
|
+
|
|
1923
|
+
- Update deps
|
|
1924
|
+
## [0.1.3] - 2019-11-07
|
|
1925
|
+
|
|
1926
|
+
### Fixed
|
|
1927
|
+
|
|
1928
|
+
- **storybook:** Correct fill params for old storybook
|
|
1929
|
+
## [0.1.2] - 2019-11-07
|
|
1930
|
+
|
|
1931
|
+
### Fixed
|
|
1932
|
+
|
|
1933
|
+
- **storybook:** Read prop of undefined
|
|
1934
|
+
## [0.1.1] - 2019-11-07
|
|
1935
|
+
|
|
1936
|
+
### Fixed
|
|
1937
|
+
|
|
1938
|
+
- **utils:** Replace ip resolver back
|
|
1939
|
+
## [0.1.0] - 2019-11-07
|
|
1940
|
+
|
|
1941
|
+
### Added
|
|
1942
|
+
|
|
1943
|
+
- Simplify images directory
|
|
1944
|
+
|
|
1945
|
+
### Build
|
|
1946
|
+
|
|
1947
|
+
- Update deps
|
|
1948
|
+
## [0.0.30] - 2019-11-05
|
|
1949
|
+
|
|
1950
|
+
### Added
|
|
1951
|
+
|
|
1952
|
+
- **storybook:** Disable animations for webdriver
|
|
1953
|
+
|
|
1954
|
+
### Changed
|
|
1955
|
+
|
|
1956
|
+
- **storybook:** Prepare story params for serialization
|
|
1957
|
+
|
|
1958
|
+
### Build
|
|
1959
|
+
|
|
1960
|
+
- Update deps
|
|
1961
|
+
- Update deps
|
|
1962
|
+
- Update .npmignore
|
|
1963
|
+
## [0.0.29] - 2019-10-11
|
|
1964
|
+
|
|
1965
|
+
### Documentation
|
|
1966
|
+
|
|
1967
|
+
- Rewrite TODO.md
|
|
1968
|
+
|
|
1969
|
+
### Fixed
|
|
1970
|
+
|
|
1971
|
+
- **storybook:** Ie11 hot-reload
|
|
1972
|
+
## [0.0.28] - 2019-10-09
|
|
1973
|
+
|
|
1974
|
+
### Fixed
|
|
1975
|
+
|
|
1976
|
+
- **storybook:** Dont consider scroll while capture element
|
|
1977
|
+
|
|
1978
|
+
### Build
|
|
1979
|
+
|
|
1980
|
+
- Update deps
|
|
1981
|
+
## [0.0.27] - 2019-10-07
|
|
1982
|
+
|
|
1983
|
+
### Fixed
|
|
1984
|
+
|
|
1985
|
+
- **storybook:** Chrome serialization stories error
|
|
1986
|
+
## [0.0.26] - 2019-10-07
|
|
1987
|
+
|
|
1988
|
+
### Fixed
|
|
1989
|
+
|
|
1990
|
+
- **storybook:** Chrome serialization stories error
|
|
1991
|
+
## [0.0.25] - 2019-10-04
|
|
1992
|
+
|
|
1993
|
+
### Added
|
|
1994
|
+
|
|
1995
|
+
- Output removed tests status
|
|
1996
|
+
- Generate tests from stories in runtime
|
|
1997
|
+
- **storybook:** Pass creevey story parameters
|
|
1998
|
+
- Make testDir optional
|
|
1999
|
+
- **worker:** Support creevey skip story option
|
|
2000
|
+
- Support composite images
|
|
2001
|
+
|
|
2002
|
+
### Changed
|
|
2003
|
+
|
|
2004
|
+
- Rename address to storybookUrl
|
|
2005
|
+
- Rename global storybook hooks
|
|
2006
|
+
|
|
2007
|
+
### Documentation
|
|
2008
|
+
|
|
2009
|
+
- Update README.md
|
|
2010
|
+
- Simplify readme
|
|
2011
|
+
- Update TODO.md
|
|
2012
|
+
|
|
2013
|
+
### Fixed
|
|
2014
|
+
|
|
2015
|
+
- Few types issues
|
|
2016
|
+
- **storybook:** Make parameters optional
|
|
2017
|
+
- Correct convert kind/story into storyId
|
|
2018
|
+
- **runner:** Mark removed tests as skiped
|
|
2019
|
+
- **runner:** Support skip story option
|
|
2020
|
+
- **storybook:** Hide scroll while screenshot, few issues
|
|
2021
|
+
|
|
2022
|
+
### Miscellaneous
|
|
2023
|
+
|
|
2024
|
+
- Up peer deps selenium-webdriver version
|
|
2025
|
+
|
|
2026
|
+
### Testing
|
|
2027
|
+
|
|
2028
|
+
- Update stories format
|
|
2029
|
+
- Approve images
|
|
2030
|
+
- Fix broken unit tests
|
|
2031
|
+
|
|
2032
|
+
### Build
|
|
2033
|
+
|
|
2034
|
+
- Update package.json
|
|
2035
|
+
- Update deps
|
|
2036
|
+
- Update deps
|
|
2037
|
+
## [0.0.24] - 2019-09-16
|
|
2038
|
+
|
|
2039
|
+
### Added
|
|
2040
|
+
|
|
2041
|
+
- More improvments
|
|
2042
|
+
- Support storybook kind depth levels
|
|
2043
|
+
|
|
2044
|
+
### Changed
|
|
2045
|
+
|
|
2046
|
+
- Fix few types issues
|
|
2047
|
+
- Remove some unnecessary code
|
|
2048
|
+
|
|
2049
|
+
### Build
|
|
2050
|
+
|
|
2051
|
+
- Update deps
|
|
2052
|
+
## [0.0.23] - 2019-09-12
|
|
2053
|
+
|
|
2054
|
+
### Documentation
|
|
2055
|
+
|
|
2056
|
+
- Update README.md
|
|
2057
|
+
|
|
2058
|
+
### Fixed
|
|
2059
|
+
|
|
2060
|
+
- Export mocha/chai typings
|
|
2061
|
+
|
|
2062
|
+
### Build
|
|
2063
|
+
|
|
2064
|
+
- SkipLibCheck for storybook<=5.1.x
|
|
2065
|
+
## [0.0.22] - 2019-09-11
|
|
2066
|
+
|
|
2067
|
+
### Added
|
|
2068
|
+
|
|
2069
|
+
- **cli:** Add `update` option for batch approve
|
|
2070
|
+
- Add storybook decorator
|
|
2071
|
+
- Remove mocha-ui
|
|
2072
|
+
|
|
2073
|
+
### Changed
|
|
2074
|
+
|
|
2075
|
+
- **ImagesView:** Reexport, build url on parent component
|
|
2076
|
+
- Move unit tests into separate dir
|
|
2077
|
+
- Rename stories
|
|
2078
|
+
- Optimize building
|
|
2079
|
+
|
|
2080
|
+
### Documentation
|
|
2081
|
+
|
|
2082
|
+
- Update TODO.md
|
|
2083
|
+
|
|
2084
|
+
### Fixed
|
|
2085
|
+
|
|
2086
|
+
- Optional hooks, fix default testRegex
|
|
2087
|
+
- **server:** Pass args to parser, skip folders while copy static
|
|
2088
|
+
- **storybook:** Improve export and types
|
|
2089
|
+
- **storybook:** Support storybook@3.x
|
|
2090
|
+
- Set-value vulnerability CVE-2019-10747
|
|
2091
|
+
|
|
2092
|
+
### Testing
|
|
2093
|
+
|
|
2094
|
+
- Fix broken typings
|
|
2095
|
+
- Use creevey to test by youself
|
|
2096
|
+
|
|
2097
|
+
### Build
|
|
2098
|
+
|
|
2099
|
+
- Add storybook
|
|
2100
|
+
- Update git/npm ignore files
|
|
2101
|
+
- Update deps
|
|
2102
|
+
## [0.0.21] - 2019-08-30
|
|
2103
|
+
|
|
2104
|
+
### Fixed
|
|
2105
|
+
|
|
2106
|
+
- **ImagesView:** Improve view for side-by-side view component
|
|
2107
|
+
- **pool:** Improve restart workers process
|
|
2108
|
+
|
|
2109
|
+
### Build
|
|
2110
|
+
|
|
2111
|
+
- **deps:** Bump mixin-deep from 1.3.1 to 1.3.2
|
|
2112
|
+
## [0.0.20] - 2019-08-27
|
|
2113
|
+
|
|
2114
|
+
### Added
|
|
2115
|
+
|
|
2116
|
+
- **client:** Fit large images into sidepage
|
|
2117
|
+
|
|
2118
|
+
### Fixed
|
|
2119
|
+
|
|
2120
|
+
- **client:** Better output error message
|
|
2121
|
+
- **pool:** Correct retry tests by timeout
|
|
2122
|
+
|
|
2123
|
+
### Miscellaneous
|
|
2124
|
+
|
|
2125
|
+
- Update TODO.md
|
|
2126
|
+
## [0.0.19] - 2019-08-21
|
|
2127
|
+
|
|
2128
|
+
### Fixed
|
|
2129
|
+
|
|
2130
|
+
- **reporter:** Try to fix parallel output on teamcity
|
|
2131
|
+
## [0.0.18] - 2019-08-21
|
|
2132
|
+
|
|
2133
|
+
### Fixed
|
|
2134
|
+
|
|
2135
|
+
- **reporter:** Try to fix parallel output on teamcity
|
|
2136
|
+
## [0.0.17] - 2019-08-21
|
|
2137
|
+
|
|
2138
|
+
### Fixed
|
|
2139
|
+
|
|
2140
|
+
- **reporter:** Try to fix parallel output on teamcity
|
|
2141
|
+
## [0.0.16] - 2019-08-21
|
|
2142
|
+
|
|
2143
|
+
### Fixed
|
|
2144
|
+
|
|
2145
|
+
- **reporter:** Output full filepath in metadata
|
|
2146
|
+
## [0.0.15] - 2019-08-21
|
|
2147
|
+
|
|
2148
|
+
### Added
|
|
2149
|
+
|
|
2150
|
+
- **runner:** Allow setup browser resolution
|
|
2151
|
+
- **reporter:** Output image as test metadata
|
|
2152
|
+
|
|
2153
|
+
### Fixed
|
|
2154
|
+
|
|
2155
|
+
- **reporter:** Output correct test name in teamcity
|
|
2156
|
+
## [0.0.14] - 2019-08-21
|
|
2157
|
+
|
|
2158
|
+
### Changed
|
|
2159
|
+
|
|
2160
|
+
- **chai-image:** Update types for chai
|
|
2161
|
+
|
|
2162
|
+
### Build
|
|
2163
|
+
|
|
2164
|
+
- **deps:** Bump lodash from 4.17.11 to 4.17.14
|
|
2165
|
+
- Update deps
|
|
2166
|
+
## [0.0.13] - 2019-07-01
|
|
2167
|
+
|
|
2168
|
+
### Fixed
|
|
2169
|
+
|
|
2170
|
+
- **worker:** Correct `retries` prop name
|
|
2171
|
+
## [0.0.12] - 2019-07-01
|
|
2172
|
+
|
|
2173
|
+
### Fixed
|
|
2174
|
+
|
|
2175
|
+
- **server:** Pass TC version to envs worker
|
|
2176
|
+
## [0.0.11] - 2019-07-01
|
|
2177
|
+
|
|
2178
|
+
### Fixed
|
|
2179
|
+
|
|
2180
|
+
- **reporter:** Output retry test as passed for tc
|
|
2181
|
+
## [0.0.10] - 2019-06-26
|
|
2182
|
+
|
|
2183
|
+
### Fixed
|
|
2184
|
+
|
|
2185
|
+
- **runner:** Send stop event
|
|
2186
|
+
## [0.0.9] - 2019-06-26
|
|
2187
|
+
|
|
2188
|
+
### Added
|
|
2189
|
+
|
|
2190
|
+
- **chai-image:** Allow pass `threshold` option
|
|
2191
|
+
- **reporter:** Add `chalk` to color output
|
|
2192
|
+
## [0.0.8] - 2019-06-25
|
|
2193
|
+
|
|
2194
|
+
### Changed
|
|
2195
|
+
|
|
2196
|
+
- **client:** Update pending icon
|
|
2197
|
+
|
|
2198
|
+
### Fixed
|
|
2199
|
+
|
|
2200
|
+
- **worker:** Send error message on fail, restart on timeout
|
|
2201
|
+
## [0.0.7] - 2019-06-24
|
|
2202
|
+
|
|
2203
|
+
### Added
|
|
2204
|
+
|
|
2205
|
+
- **client:** Output disabled skiped tests
|
|
2206
|
+
|
|
2207
|
+
### Fixed
|
|
2208
|
+
|
|
2209
|
+
- **server:** Set `skip` flag require
|
|
2210
|
+
- **parser:** Don't include ignored tests
|
|
2211
|
+
- **chai-image:** Enable anti-aliasing for pixelmatch
|
|
2212
|
+
- **worker:** Patch mocha to support skip tests for browser
|
|
2213
|
+
## [0.0.6] - 2019-06-20
|
|
2214
|
+
|
|
2215
|
+
### Added
|
|
2216
|
+
|
|
2217
|
+
- **client:** Improve switcher, move start button
|
|
2218
|
+
- **server:** Allow define uniq options for each browser
|
|
2219
|
+
|
|
2220
|
+
### Changed
|
|
2221
|
+
|
|
2222
|
+
- **TestTree:** Open root suite by default
|
|
2223
|
+
|
|
2224
|
+
### Fixed
|
|
2225
|
+
|
|
2226
|
+
- **worker:** Escape test path string
|
|
2227
|
+
- **client:** Don't output skipped tests
|
|
2228
|
+
|
|
2229
|
+
### Miscellaneous
|
|
2230
|
+
|
|
2231
|
+
- **client:** Add open sans font
|
|
2232
|
+
|
|
2233
|
+
### Build
|
|
2234
|
+
|
|
2235
|
+
- Update to unstable react-ui
|
|
2236
|
+
## [0.0.5] - 2019-06-17
|
|
2237
|
+
|
|
2238
|
+
### Fixed
|
|
2239
|
+
|
|
2240
|
+
- Better handle reset mouse position
|
|
2241
|
+
- **client:** Output new images
|
|
2242
|
+
- **utils:** Better handle reset mouse position
|
|
2243
|
+
## [0.0.4] - 2019-06-14
|
|
2244
|
+
|
|
2245
|
+
### Added
|
|
2246
|
+
|
|
2247
|
+
- **client:** Update suites statues
|
|
2248
|
+
|
|
2249
|
+
### Fixed
|
|
2250
|
+
|
|
2251
|
+
- **utils:** Reset mouse position
|
|
2252
|
+
- **client:** Encode image url path
|
|
2253
|
+
|
|
2254
|
+
### Testing
|
|
2255
|
+
|
|
2256
|
+
- Fix broken typings
|
|
2257
|
+
|
|
2258
|
+
### Build
|
|
2259
|
+
|
|
2260
|
+
- Update deps
|
|
2261
|
+
## [0.0.3] - 2019-06-03
|
|
2262
|
+
|
|
2263
|
+
### Added
|
|
2264
|
+
|
|
2265
|
+
- **client:** Output test error message
|
|
2266
|
+
- **server:** Better handle ws messages
|
|
2267
|
+
- Render approved images
|
|
2268
|
+
- **client:** Use `emotion` for styles
|
|
2269
|
+
- **client:** Add different image views
|
|
2270
|
+
- **client:** Add `SlideView` component
|
|
2271
|
+
- **client:** Add `BlendView` component
|
|
2272
|
+
|
|
2273
|
+
### Changed
|
|
2274
|
+
|
|
2275
|
+
- **client:** Rename `TogetherView` -> `SideBySideView`
|
|
2276
|
+
|
|
2277
|
+
### Fixed
|
|
2278
|
+
|
|
2279
|
+
- **server:** Browser config merge
|
|
2280
|
+
- **runner:** Parallel test running
|
|
2281
|
+
- **worker:** Improve test reporter
|
|
2282
|
+
- **server:** Restart worker on error
|
|
2283
|
+
|
|
2284
|
+
### Miscellaneous
|
|
2285
|
+
|
|
2286
|
+
- Update TODO.md
|
|
2287
|
+
|
|
2288
|
+
### Build
|
|
2289
|
+
|
|
2290
|
+
- Fix deps and npmignore
|
|
2291
|
+
- Update deps
|
|
2292
|
+
## [0.0.2] - 2019-05-29
|
|
2293
|
+
|
|
2294
|
+
### Added
|
|
2295
|
+
|
|
2296
|
+
- **worker:** Add reporter mvp
|
|
2297
|
+
## [0.0.1] - 2019-05-21
|
|
1595
2298
|
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
-
|
|
1599
|
-
- **
|
|
1600
|
-
- **server:**
|
|
1601
|
-
- **
|
|
1602
|
-
- **
|
|
1603
|
-
-
|
|
1604
|
-
-
|
|
1605
|
-
- **server:**
|
|
1606
|
-
- **
|
|
1607
|
-
-
|
|
2299
|
+
### Added
|
|
2300
|
+
|
|
2301
|
+
- Initial version
|
|
2302
|
+
- **chai-image:** Save images in multiple runs
|
|
2303
|
+
- **server:** Send status with images
|
|
2304
|
+
- **client:** Add results view component
|
|
2305
|
+
- **TestResultView:** Render result images
|
|
2306
|
+
- **server:** Serve static images from report dir
|
|
2307
|
+
- Allow approve images from ui
|
|
2308
|
+
- **server:** Save/load test report
|
|
2309
|
+
- **server:** Use cluster fork instead preprocessors
|
|
2310
|
+
- **server:** Offline mode mvp, copy static
|
|
2311
|
+
- **server:** Add `ui` flag, wait workers ready event
|
|
2312
|
+
- **server:** Allow to use custom reporter
|
|
2313
|
+
|
|
2314
|
+
### Changed
|
|
2315
|
+
|
|
2316
|
+
- Send on client flat tests structure
|
|
2317
|
+
- Rename test results field
|
|
2318
|
+
- Use Partial generic
|
|
2319
|
+
- Simplify something
|
|
2320
|
+
|
|
2321
|
+
### Documentation
|
|
2322
|
+
|
|
2323
|
+
- Updare README.md
|
|
2324
|
+
|
|
2325
|
+
### Fixed
|
|
2326
|
+
|
|
2327
|
+
- Export types
|
|
2328
|
+
- **runner:** Retries condition
|
|
2329
|
+
- **client:** Handle start/stop messages
|
|
2330
|
+
- **worker:** Clean images, strong regexp for grep
|
|
2331
|
+
- **utils:** Change test scope path. Move browser to the last
|
|
2332
|
+
- **worker:** Increase mocha timeout
|
|
2333
|
+
- **TestRestultView:** Improve images output
|
|
2334
|
+
- **TestRestultView:** Always open last image
|
|
2335
|
+
- **server:** Served static path
|
|
2336
|
+
|
|
2337
|
+
### Miscellaneous
|
|
2338
|
+
|
|
2339
|
+
- Move react-ui to devDeps
|
|
2340
|
+
- Update TODO.md
|
|
2341
|
+
- Update TODO.md and npmignore
|
|
2342
|
+
|
|
2343
|
+
### Build
|
|
2344
|
+
|
|
2345
|
+
- Fix babel-preset-env options
|
|
2346
|
+
- Prepare for publish
|
|
2347
|
+
|
|
2348
|
+
[unreleased]: https://github.com/wKich/creevey/compare/v0.8.0-beta.0...HEAD
|
|
2349
|
+
[0.8.0-beta.0]: https://github.com/wKich/creevey/compare/v0.7.39...v0.8.0-beta.0
|
|
2350
|
+
[0.7.39]: https://github.com/wKich/creevey/compare/v0.7.38...v0.7.39
|
|
2351
|
+
[0.7.38]: https://github.com/wKich/creevey/compare/v0.7.37...v0.7.38
|
|
2352
|
+
[0.7.37]: https://github.com/wKich/creevey/compare/v0.7.36...v0.7.37
|
|
2353
|
+
[0.7.36]: https://github.com/wKich/creevey/compare/v0.7.35...v0.7.36
|
|
2354
|
+
[0.7.35]: https://github.com/wKich/creevey/compare/v0.7.34...v0.7.35
|
|
2355
|
+
[0.7.34]: https://github.com/wKich/creevey/compare/v0.7.33...v0.7.34
|
|
2356
|
+
[0.7.33]: https://github.com/wKich/creevey/compare/v0.7.32...v0.7.33
|
|
2357
|
+
[0.7.32]: https://github.com/wKich/creevey/compare/v0.7.31...v0.7.32
|
|
2358
|
+
[0.7.31]: https://github.com/wKich/creevey/compare/v0.7.30...v0.7.31
|
|
2359
|
+
[0.7.30]: https://github.com/wKich/creevey/compare/v0.7.29...v0.7.30
|
|
2360
|
+
[0.7.29]: https://github.com/wKich/creevey/compare/v0.7.28...v0.7.29
|
|
2361
|
+
[0.7.28]: https://github.com/wKich/creevey/compare/v0.7.27...v0.7.28
|
|
2362
|
+
[0.7.27]: https://github.com/wKich/creevey/compare/v0.7.26...v0.7.27
|
|
2363
|
+
[0.7.26]: https://github.com/wKich/creevey/compare/v0.7.25...v0.7.26
|
|
2364
|
+
[0.7.25]: https://github.com/wKich/creevey/compare/v0.7.24...v0.7.25
|
|
2365
|
+
[0.7.24]: https://github.com/wKich/creevey/compare/v0.7.23...v0.7.24
|
|
2366
|
+
[0.7.23]: https://github.com/wKich/creevey/compare/v0.7.22...v0.7.23
|
|
2367
|
+
[0.7.22]: https://github.com/wKich/creevey/compare/v0.7.21...v0.7.22
|
|
2368
|
+
[0.7.21]: https://github.com/wKich/creevey/compare/v0.7.20...v0.7.21
|
|
2369
|
+
[0.7.20]: https://github.com/wKich/creevey/compare/v0.7.19...v0.7.20
|
|
2370
|
+
[0.7.19]: https://github.com/wKich/creevey/compare/v0.7.18...v0.7.19
|
|
2371
|
+
[0.7.18]: https://github.com/wKich/creevey/compare/v0.7.17...v0.7.18
|
|
2372
|
+
[0.7.17]: https://github.com/wKich/creevey/compare/v0.7.16...v0.7.17
|
|
2373
|
+
[0.7.16]: https://github.com/wKich/creevey/compare/v0.7.15...v0.7.16
|
|
2374
|
+
[0.7.15]: https://github.com/wKich/creevey/compare/v0.7.14...v0.7.15
|
|
2375
|
+
[0.7.14]: https://github.com/wKich/creevey/compare/v0.7.13...v0.7.14
|
|
2376
|
+
[0.7.13]: https://github.com/wKich/creevey/compare/v0.7.12...v0.7.13
|
|
2377
|
+
[0.7.12]: https://github.com/wKich/creevey/compare/v0.7.11...v0.7.12
|
|
2378
|
+
[0.7.11]: https://github.com/wKich/creevey/compare/v0.7.10...v0.7.11
|
|
2379
|
+
[0.7.10]: https://github.com/wKich/creevey/compare/v0.7.9...v0.7.10
|
|
2380
|
+
[0.7.9]: https://github.com/wKich/creevey/compare/v0.7.8...v0.7.9
|
|
2381
|
+
[0.7.8]: https://github.com/wKich/creevey/compare/v0.7.7...v0.7.8
|
|
2382
|
+
[0.7.7]: https://github.com/wKich/creevey/compare/v0.7.6...v0.7.7
|
|
2383
|
+
[0.7.6]: https://github.com/wKich/creevey/compare/v0.7.5...v0.7.6
|
|
2384
|
+
[0.7.5]: https://github.com/wKich/creevey/compare/v0.7.4...v0.7.5
|
|
2385
|
+
[0.7.4]: https://github.com/wKich/creevey/compare/v0.7.3...v0.7.4
|
|
2386
|
+
[0.7.3]: https://github.com/wKich/creevey/compare/v0.7.2...v0.7.3
|
|
2387
|
+
[0.7.2]: https://github.com/wKich/creevey/compare/v0.7.1...v0.7.2
|
|
2388
|
+
[0.7.1]: https://github.com/wKich/creevey/compare/v0.7.0...v0.7.1
|
|
2389
|
+
[0.7.0]: https://github.com/wKich/creevey/compare/v0.7.0-beta.21...v0.7.0
|
|
2390
|
+
[0.7.0-beta.21]: https://github.com/wKich/creevey/compare/v0.7.0-beta.20...v0.7.0-beta.21
|
|
2391
|
+
[0.7.0-beta.20]: https://github.com/wKich/creevey/compare/v0.7.0-beta.19...v0.7.0-beta.20
|
|
2392
|
+
[0.7.0-beta.19]: https://github.com/wKich/creevey/compare/v0.7.0-beta.18...v0.7.0-beta.19
|
|
2393
|
+
[0.7.0-beta.18]: https://github.com/wKich/creevey/compare/v0.7.0-beta.17...v0.7.0-beta.18
|
|
2394
|
+
[0.7.0-beta.17]: https://github.com/wKich/creevey/compare/v0.7.0-beta.16...v0.7.0-beta.17
|
|
2395
|
+
[0.7.0-beta.16]: https://github.com/wKich/creevey/compare/v0.7.0-beta.15...v0.7.0-beta.16
|
|
2396
|
+
[0.7.0-beta.15]: https://github.com/wKich/creevey/compare/v0.7.0-beta.14...v0.7.0-beta.15
|
|
2397
|
+
[0.7.0-beta.14]: https://github.com/wKich/creevey/compare/v0.7.0-beta.13...v0.7.0-beta.14
|
|
2398
|
+
[0.7.0-beta.13]: https://github.com/wKich/creevey/compare/v0.7.0-beta.12...v0.7.0-beta.13
|
|
2399
|
+
[0.7.0-beta.12]: https://github.com/wKich/creevey/compare/v0.7.0-beta.11...v0.7.0-beta.12
|
|
2400
|
+
[0.7.0-beta.11]: https://github.com/wKich/creevey/compare/v0.7.0-beta.10...v0.7.0-beta.11
|
|
2401
|
+
[0.7.0-beta.10]: https://github.com/wKich/creevey/compare/v0.7.0-beta.9...v0.7.0-beta.10
|
|
2402
|
+
[0.7.0-beta.9]: https://github.com/wKich/creevey/compare/v0.7.0-beta.8...v0.7.0-beta.9
|
|
2403
|
+
[0.7.0-beta.8]: https://github.com/wKich/creevey/compare/v0.7.0-beta.7...v0.7.0-beta.8
|
|
2404
|
+
[0.7.0-beta.7]: https://github.com/wKich/creevey/compare/v0.7.0-beta.6...v0.7.0-beta.7
|
|
2405
|
+
[0.7.0-beta.6]: https://github.com/wKich/creevey/compare/v0.7.0-beta.5...v0.7.0-beta.6
|
|
2406
|
+
[0.7.0-beta.5]: https://github.com/wKich/creevey/compare/v0.7.0-beta.4...v0.7.0-beta.5
|
|
2407
|
+
[0.7.0-beta.4]: https://github.com/wKich/creevey/compare/v0.7.0-beta.3...v0.7.0-beta.4
|
|
2408
|
+
[0.7.0-beta.3]: https://github.com/wKich/creevey/compare/v0.7.0-beta.2...v0.7.0-beta.3
|
|
2409
|
+
[0.7.0-beta.2]: https://github.com/wKich/creevey/compare/v0.7.0-beta.1...v0.7.0-beta.2
|
|
2410
|
+
[0.7.0-beta.1]: https://github.com/wKich/creevey/compare/v0.7.0-beta.0...v0.7.0-beta.1
|
|
2411
|
+
[0.7.0-beta.0]: https://github.com/wKich/creevey/compare/v0.6.4...v0.7.0-beta.0
|
|
2412
|
+
[0.6.4]: https://github.com/wKich/creevey/compare/v0.6.3...v0.6.4
|
|
2413
|
+
[0.6.3]: https://github.com/wKich/creevey/compare/v0.6.2...v0.6.3
|
|
2414
|
+
[0.6.2]: https://github.com/wKich/creevey/compare/v0.6.1...v0.6.2
|
|
2415
|
+
[0.6.1]: https://github.com/wKich/creevey/compare/v0.6.0...v0.6.1
|
|
2416
|
+
[0.6.0]: https://github.com/wKich/creevey/compare/v0.6.0-beta.8...v0.6.0
|
|
2417
|
+
[0.6.0-beta.8]: https://github.com/wKich/creevey/compare/v0.6.0-beta.7...v0.6.0-beta.8
|
|
2418
|
+
[0.6.0-beta.7]: https://github.com/wKich/creevey/compare/v0.6.0-beta.6...v0.6.0-beta.7
|
|
2419
|
+
[0.6.0-beta.6]: https://github.com/wKich/creevey/compare/v0.6.0-beta.5...v0.6.0-beta.6
|
|
2420
|
+
[0.6.0-beta.5]: https://github.com/wKich/creevey/compare/v0.6.0-beta.4...v0.6.0-beta.5
|
|
2421
|
+
[0.6.0-beta.4]: https://github.com/wKich/creevey/compare/v0.6.0-beta.3...v0.6.0-beta.4
|
|
2422
|
+
[0.6.0-beta.3]: https://github.com/wKich/creevey/compare/v0.6.0-beta.2...v0.6.0-beta.3
|
|
2423
|
+
[0.6.0-beta.2]: https://github.com/wKich/creevey/compare/v0.6.0-beta.1...v0.6.0-beta.2
|
|
2424
|
+
[0.6.0-beta.1]: https://github.com/wKich/creevey/compare/v0.6.0-beta.0...v0.6.0-beta.1
|
|
2425
|
+
[0.6.0-beta.0]: https://github.com/wKich/creevey/compare/v0.5.6...v0.6.0-beta.0
|
|
2426
|
+
[0.5.6]: https://github.com/wKich/creevey/compare/v0.5.5...v0.5.6
|
|
2427
|
+
[0.5.5]: https://github.com/wKich/creevey/compare/v0.5.4...v0.5.5
|
|
2428
|
+
[0.5.4]: https://github.com/wKich/creevey/compare/v0.5.3...v0.5.4
|
|
2429
|
+
[0.5.3]: https://github.com/wKich/creevey/compare/v0.5.2...v0.5.3
|
|
2430
|
+
[0.5.2]: https://github.com/wKich/creevey/compare/v0.5.1...v0.5.2
|
|
2431
|
+
[0.5.1]: https://github.com/wKich/creevey/compare/v0.5.0...v0.5.1
|
|
2432
|
+
[0.5.0]: https://github.com/wKich/creevey/compare/v0.4.11...v0.5.0
|
|
2433
|
+
[0.4.11]: https://github.com/wKich/creevey/compare/v0.4.10...v0.4.11
|
|
2434
|
+
[0.4.10]: https://github.com/wKich/creevey/compare/v0.4.9...v0.4.10
|
|
2435
|
+
[0.4.9]: https://github.com/wKich/creevey/compare/v0.4.8...v0.4.9
|
|
2436
|
+
[0.4.8]: https://github.com/wKich/creevey/compare/v0.4.7...v0.4.8
|
|
2437
|
+
[0.4.7]: https://github.com/wKich/creevey/compare/v0.4.6...v0.4.7
|
|
2438
|
+
[0.4.6]: https://github.com/wKich/creevey/compare/v0.4.5...v0.4.6
|
|
2439
|
+
[0.4.5]: https://github.com/wKich/creevey/compare/v0.4.4...v0.4.5
|
|
2440
|
+
[0.4.4]: https://github.com/wKich/creevey/compare/v0.4.3...v0.4.4
|
|
2441
|
+
[0.4.3]: https://github.com/wKich/creevey/compare/v0.4.2...v0.4.3
|
|
2442
|
+
[0.4.2]: https://github.com/wKich/creevey/compare/v0.4.1...v0.4.2
|
|
2443
|
+
[0.4.1]: https://github.com/wKich/creevey/compare/v0.4.0...v0.4.1
|
|
2444
|
+
[0.4.0]: https://github.com/wKich/creevey/compare/v0.3.8...v0.4.0
|
|
2445
|
+
[0.3.8]: https://github.com/wKich/creevey/compare/v0.3.7...v0.3.8
|
|
2446
|
+
[0.3.7]: https://github.com/wKich/creevey/compare/v0.3.6...v0.3.7
|
|
2447
|
+
[0.3.6]: https://github.com/wKich/creevey/compare/v0.3.5...v0.3.6
|
|
2448
|
+
[0.3.5]: https://github.com/wKich/creevey/compare/v0.3.4...v0.3.5
|
|
2449
|
+
[0.3.4]: https://github.com/wKich/creevey/compare/v0.3.3...v0.3.4
|
|
2450
|
+
[0.3.3]: https://github.com/wKich/creevey/compare/v0.3.2...v0.3.3
|
|
2451
|
+
[0.3.2]: https://github.com/wKich/creevey/compare/v0.3.1...v0.3.2
|
|
2452
|
+
[0.3.1]: https://github.com/wKich/creevey/compare/v0.3.0...v0.3.1
|
|
2453
|
+
[0.3.0]: https://github.com/wKich/creevey/compare/v0.2.6...v0.3.0
|
|
2454
|
+
[0.2.6]: https://github.com/wKich/creevey/compare/v0.2.5...v0.2.6
|
|
2455
|
+
[0.2.5]: https://github.com/wKich/creevey/compare/v0.2.4...v0.2.5
|
|
2456
|
+
[0.2.4]: https://github.com/wKich/creevey/compare/v0.2.3...v0.2.4
|
|
2457
|
+
[0.2.3]: https://github.com/wKich/creevey/compare/v0.2.2...v0.2.3
|
|
2458
|
+
[0.2.2]: https://github.com/wKich/creevey/compare/v0.2.1...v0.2.2
|
|
2459
|
+
[0.2.1]: https://github.com/wKich/creevey/compare/v0.2.0...v0.2.1
|
|
2460
|
+
[0.2.0]: https://github.com/wKich/creevey/compare/v0.1.7...v0.2.0
|
|
2461
|
+
[0.1.7]: https://github.com/wKich/creevey/compare/v0.1.6...v0.1.7
|
|
2462
|
+
[0.1.6]: https://github.com/wKich/creevey/compare/v0.1.5...v0.1.6
|
|
2463
|
+
[0.1.5]: https://github.com/wKich/creevey/compare/v0.1.4...v0.1.5
|
|
2464
|
+
[0.1.4]: https://github.com/wKich/creevey/compare/v0.1.3...v0.1.4
|
|
2465
|
+
[0.1.3]: https://github.com/wKich/creevey/compare/v0.1.2...v0.1.3
|
|
2466
|
+
[0.1.2]: https://github.com/wKich/creevey/compare/v0.1.1...v0.1.2
|
|
2467
|
+
[0.1.1]: https://github.com/wKich/creevey/compare/v0.1.0...v0.1.1
|
|
2468
|
+
[0.1.0]: https://github.com/wKich/creevey/compare/v0.0.30...v0.1.0
|
|
2469
|
+
[0.0.30]: https://github.com/wKich/creevey/compare/v0.0.29...v0.0.30
|
|
2470
|
+
[0.0.29]: https://github.com/wKich/creevey/compare/v0.0.28...v0.0.29
|
|
2471
|
+
[0.0.28]: https://github.com/wKich/creevey/compare/v0.0.27...v0.0.28
|
|
2472
|
+
[0.0.27]: https://github.com/wKich/creevey/compare/v0.0.26...v0.0.27
|
|
2473
|
+
[0.0.26]: https://github.com/wKich/creevey/compare/v0.0.25...v0.0.26
|
|
2474
|
+
[0.0.25]: https://github.com/wKich/creevey/compare/v0.0.24...v0.0.25
|
|
2475
|
+
[0.0.24]: https://github.com/wKich/creevey/compare/v0.0.23...v0.0.24
|
|
2476
|
+
[0.0.23]: https://github.com/wKich/creevey/compare/v0.0.22...v0.0.23
|
|
2477
|
+
[0.0.22]: https://github.com/wKich/creevey/compare/v0.0.21...v0.0.22
|
|
2478
|
+
[0.0.21]: https://github.com/wKich/creevey/compare/v0.0.20...v0.0.21
|
|
2479
|
+
[0.0.20]: https://github.com/wKich/creevey/compare/v0.0.19...v0.0.20
|
|
2480
|
+
[0.0.19]: https://github.com/wKich/creevey/compare/v0.0.18...v0.0.19
|
|
2481
|
+
[0.0.18]: https://github.com/wKich/creevey/compare/v0.0.17...v0.0.18
|
|
2482
|
+
[0.0.17]: https://github.com/wKich/creevey/compare/v0.0.16...v0.0.17
|
|
2483
|
+
[0.0.16]: https://github.com/wKich/creevey/compare/v0.0.15...v0.0.16
|
|
2484
|
+
[0.0.15]: https://github.com/wKich/creevey/compare/v0.0.14...v0.0.15
|
|
2485
|
+
[0.0.14]: https://github.com/wKich/creevey/compare/v0.0.13...v0.0.14
|
|
2486
|
+
[0.0.13]: https://github.com/wKich/creevey/compare/v0.0.12...v0.0.13
|
|
2487
|
+
[0.0.12]: https://github.com/wKich/creevey/compare/v0.0.11...v0.0.12
|
|
2488
|
+
[0.0.11]: https://github.com/wKich/creevey/compare/v0.0.10...v0.0.11
|
|
2489
|
+
[0.0.10]: https://github.com/wKich/creevey/compare/v0.0.9...v0.0.10
|
|
2490
|
+
[0.0.9]: https://github.com/wKich/creevey/compare/v0.0.8...v0.0.9
|
|
2491
|
+
[0.0.8]: https://github.com/wKich/creevey/compare/v0.0.7...v0.0.8
|
|
2492
|
+
[0.0.7]: https://github.com/wKich/creevey/compare/v0.0.6...v0.0.7
|
|
2493
|
+
[0.0.6]: https://github.com/wKich/creevey/compare/v0.0.5...v0.0.6
|
|
2494
|
+
[0.0.5]: https://github.com/wKich/creevey/compare/v0.0.4...v0.0.5
|
|
2495
|
+
[0.0.4]: https://github.com/wKich/creevey/compare/v0.0.3...v0.0.4
|
|
2496
|
+
[0.0.3]: https://github.com/wKich/creevey/compare/v0.0.2...v0.0.3
|
|
2497
|
+
[0.0.2]: https://github.com/wKich/creevey/compare/v0.0.1...v0.0.2
|