creevey 0.10.35 → 0.10.37

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (66) hide show
  1. package/.release-please-manifest.json +3 -0
  2. package/AUTHORS +2 -1
  3. package/CHANGELOG.md +1983 -1044
  4. package/dist/cli.js +0 -0
  5. package/dist/client/shared/components/ImagesView/BlendView.d.ts +1 -1
  6. package/dist/client/shared/components/ImagesView/SideBySideView.d.ts +1 -1
  7. package/dist/client/shared/components/ImagesView/SlideView.d.ts +1 -1
  8. package/dist/client/shared/components/ImagesView/SwapView.d.ts +1 -1
  9. package/dist/client/web/CreeveyView/SideBar/Checkbox.d.ts +1 -1
  10. package/dist/client/web/CreeveyView/SideBar/SuiteLink.d.ts +2 -2
  11. package/dist/client/web/assets/WithTooltip-65CFNBJE-BzZCnCAS.js +9 -0
  12. package/dist/client/web/assets/formatter-EIJCOSYU-BprGK1n7.js +1 -0
  13. package/dist/client/web/assets/index-D5QjT0gm.js +950 -0
  14. package/dist/client/web/assets/syntaxhighlighter-OH4MV7E3-QIwo8fvs.js +6 -0
  15. package/dist/client/web/index.html +1 -1
  16. package/dist/creevey.js +8 -1
  17. package/dist/creevey.js.map +1 -1
  18. package/dist/dev/ensure-client-statics.d.ts +3 -0
  19. package/dist/dev/ensure-client-statics.js +38 -0
  20. package/dist/dev/ensure-client-statics.js.map +1 -0
  21. package/dist/server/compare.js +16 -1
  22. package/dist/server/compare.js.map +1 -1
  23. package/dist/server/master/server.js +1 -2
  24. package/dist/server/master/server.js.map +1 -1
  25. package/dist/server/master/start.js +2 -0
  26. package/dist/server/master/start.js.map +1 -1
  27. package/dist/server/playwright/internal.d.ts +4 -0
  28. package/dist/server/playwright/internal.js +84 -25
  29. package/dist/server/playwright/internal.js.map +1 -1
  30. package/dist/server/report.js +1 -0
  31. package/dist/server/report.js.map +1 -1
  32. package/dist/server/reporters/junit.d.ts +12 -1
  33. package/dist/server/reporters/junit.js +114 -19
  34. package/dist/server/reporters/junit.js.map +1 -1
  35. package/dist/server/selenium/internal.d.ts +4 -2
  36. package/dist/server/selenium/internal.js +26 -8
  37. package/dist/server/selenium/internal.js.map +1 -1
  38. package/dist/server/utils.d.ts +2 -0
  39. package/dist/server/utils.js +13 -1
  40. package/dist/server/utils.js.map +1 -1
  41. package/docs/superpowers/plans/2026-05-12-junit-reporter-improvements.md +927 -0
  42. package/docs/superpowers/plans/2026-05-13-dev-only-client-statics-bootstrap.md +605 -0
  43. package/docs/superpowers/plans/2026-05-13-gitlab-junit-attachments.md +221 -0
  44. package/docs/superpowers/plans/2026-05-13-release-please-migration.md +319 -0
  45. package/docs/superpowers/specs/2026-05-12-junit-reporter-improvements-design.md +173 -0
  46. package/docs/superpowers/specs/2026-05-13-dev-only-client-statics-design.md +233 -0
  47. package/docs/superpowers/specs/2026-05-13-gitlab-junit-attachments-design.md +96 -0
  48. package/docs/superpowers/specs/2026-05-13-release-please-migration-design.md +205 -0
  49. package/memories/memory.md +10 -0
  50. package/memories/testing.md +2 -0
  51. package/memories/troubleshooting.md +25 -1
  52. package/memories/workflow.md +27 -9
  53. package/package.json +14 -12
  54. package/release-please-config.json +18 -0
  55. package/src/creevey.ts +14 -1
  56. package/src/dev/ensure-client-statics.ts +39 -0
  57. package/src/server/compare.ts +20 -1
  58. package/src/server/master/server.ts +4 -6
  59. package/src/server/master/start.ts +2 -1
  60. package/src/server/playwright/internal.ts +91 -28
  61. package/src/server/report.ts +2 -1
  62. package/src/server/reporters/junit.ts +151 -36
  63. package/src/server/selenium/internal.ts +33 -7
  64. package/src/server/utils.ts +16 -1
  65. package/types/storybook-theming.d.ts +10 -0
  66. package/dist/client/web/assets/index-8m1n3wEe.js +0 -518
package/CHANGELOG.md CHANGED
@@ -1,1607 +1,2546 @@
1
- # [0.10.0](https://github.com/wKich/creevey/compare/e60f1f4e48afbf174e8aaff0480ddd74e3b7b9f9...fff6e5825b2488b3fd197f1d71ecf5d339762490) (TBC)
2
-
3
- ## Creevey Updates: Cool New Stuff, Features, and Fixes!
4
-
5
- Hey everyone! We've got some updates for Creevey that we think you'll like. We've been working on making the testing framework better, improving how you work with it, and adding some new ways to connect it with other tools. This includes some big changes to how things work under the hood, new features like Playwright support and better reports, plus a bunch of bug fixes.
6
-
7
- ---
8
-
9
- ### What's New & Important:
10
-
11
- #### 1. Playwright Integration is Here!
12
-
13
- Creevey now works smoothly with Playwright! This gives you another solid option for browser automation, besides Selenium WebDriver. We've tried to make it flexible for different ways you might want to use it.
14
-
15
- - **Using Playwright for Browser Automation:** You can set up Playwright right in your `creevey.config.ts`.
16
-
17
- ```typescript
18
- // creevey.config.ts
19
- import { CreeveyConfig } from 'creevey';
20
- import { PlaywrightWebdriver } from 'creevey/playwright';
21
-
22
- const config: CreeveyConfig = {
23
- webdriver: PlaywrightWebdriver,
24
- // Set `useDocker to false in CI environments to use standalone Playwright browsers
25
- useDocker: !Boolean(process.env.CI),
26
- browsers: {
27
- chrome: {
28
- browserName: 'chromium', // For Playwright, usually 'chromium', 'firefox', or 'webkit'
29
- playwrightOptions: {
30
- headless: false, // Example: show the browser while debugging
31
- },
32
- },
33
- firefox: {
34
- browserName: 'firefox',
35
- },
36
- },
37
- };
38
-
39
- export default config;
40
- ```
41
-
42
- - **Playwright with Selenium Grid (Heads-up: Chrome Only for now):**
43
- You can connect Playwright to a Selenium Grid. Just a heads-up, this only works with the Chrome browser because of how Playwright talks to Selenium Grid.
44
-
45
- ```typescript
46
- // creevey.config.ts
47
- import { CreeveyConfig } from 'creevey';
48
- import { PlaywrightWebdriver } from 'creevey/playwright';
49
-
50
- const config: CreeveyConfig = {
51
- webdriver: PlaywrightWebdriver,
52
- gridUrl: 'http://your-selenium-grid-url:4444/wd/hub', // Your Selenium Grid URL
53
- browsers: {
54
- chromeOnGrid: {
55
- browserName: 'chrome', // Needs to be 'chrome' for Playwright with Selenium Grid
56
- seleniumCapabilities: {
57
- // Add any Selenium settings your Grid needs here
58
- },
59
- },
60
- },
61
- };
62
-
63
- export default config;
64
- ```
65
-
66
- - **Recording Traces and Video for Easier Debugging:**
67
- To help you figure out what's going on in your tests, Creevey can use Playwright's trace and video recording. Just run Creevey in debug mode.
68
-
69
- ```bash
70
- creevey --debug
71
- ```
72
-
73
- You'll find the traces (`trace.zip`) and videos (`video.webm`) in the `traces` folder inside your report directory, sorted by process ID.
74
-
75
- #### 2. Browser Config Changes for Selenium & Playwright (Heads-up: This is a Breaking Change)
76
-
77
- We've changed how you set up browsers in `creevey.config.ts`. This helps make it clearer which settings are for Selenium and which are for Playwright.
78
-
79
- - **How to Update:**
80
-
81
- - Settings like `browserVersion` and `platformName` (and other custom Selenium settings) now need to go inside a `seleniumCapabilities` object.
82
- - Playwright-specific settings should go into a `playwrightOptions` object.
83
- - The new `webdriver` field lets you choose your WebDriver implementation. While it defaults to Selenium for now, this may change. We recommend explicitly setting it by importing and using either `SeleniumWebdriver` or `PlaywrightWebdriver`.
84
-
85
- **Example:**
86
-
87
- ```typescript
88
- // Before
89
- const config: CreeveyConfig = {
90
- browsers: {
91
- chrome: {
92
- browserName: 'chrome',
93
- browserVersion: '90.0',
94
- platformName: 'linux',
95
- customSeleniumOption: 'value',
96
- },
97
- },
98
- };
99
-
100
- // After
101
- import { SeleniumWebdriver } from 'creevey/selenium';
102
- // or
103
- // import { PlaywrightWebdriver } from 'creevey/playwright';
104
-
105
- const config: CreeveyConfig = {
106
- webdriver: SeleniumWebdriver, // or PlaywrightWebdriver
107
- browsers: {
108
- chrome: {
109
- browserName: 'chrome',
110
- // browserName: 'chromium', // For Playwright
111
- seleniumCapabilities: {
112
- // Selenium-specific stuff
113
- browserVersion: '90.0',
114
- platformName: 'linux',
115
- customSeleniumOption: 'value',
116
- },
117
- playwrightOptions: {
118
- // Playwright-specific stuff
119
- headless: true,
120
- // ... other Playwright launch options
121
- },
122
- },
123
- },
124
- };
125
- ```
126
-
127
- #### 3. Mocha is Gone & There's a New Test Context API (Heads-up: This is a Big Breaking Change)
128
-
129
- Creevey doesn't use the Mocha testing framework anymore. This makes things simpler internally and means you'll write tests a bit differently using a new `CreeveyTestContext`.
130
-
131
- - **How to Update:**
132
-
133
- - Change your tests to use the `context` parameter instead of `this`.
134
- - Image matching methods are now called on the `context` object.
135
- - The `context.webdriver` property gives you direct access to the configured WebDriver instance (Selenium or Playwright) for advanced browser interactions.
136
-
137
- **Example:**
138
-
139
- ```typescript
140
- // Before (Mocha style)
141
- it('should match the image', async function () {
142
- this.expect(await this.takeScreenshot()).to.matchImage('example');
143
- });
144
-
145
- // After (New Creevey context style)
146
- it('should match the image', async (context) => {
147
- await context.matchImage(await context.takeScreenshot(), 'example');
148
- });
149
-
150
- // Example using context.webdriver with Selenium WebDriver API
151
- it('should interact with an element using Selenium', async (context) => {
152
- const seleniumWebDriver = context.webdriver; // Assuming SeleniumWebdriver is configured
153
- const element = await seleniumWebDriver.findElement({ css: '#myElement' });
154
- await element.click();
155
- // ... more Selenium interactions
156
- await context.matchImage(await context.takeScreenshot(), 'selenium-interaction');
157
- });
158
-
159
- // Example using context.webdriver with Playwright API
160
- it('should interact with an element using Playwright', async (context) => {
161
- const playwrightPage = context.webdriver; // Assuming PlaywrightWebdriver is configured
162
- await playwrightPage.click('#myElement');
163
- // ... more Playwright interactions
164
- await context.matchImage(await context.takeScreenshot(), 'playwright-interaction');
165
- });
166
- ```
167
-
168
- #### 4. New: Creevey Playwright Reporter
169
-
170
- Now you can add Creevey's visual testing to your existing Playwright test suites with the new `CreeveyPlaywrightReporter`.
171
-
172
- - **How to Use It:** Set up the reporter in your `playwright.config.ts` (or `.js`).
173
-
174
- ```typescript
175
- // playwright.config.ts
176
- import { defineConfig } from '@playwright/test';
177
-
178
- export default defineConfig({
179
- reporter: [
180
- ['list'], // Or any other standard Playwright reporter
181
- [
182
- 'creevey/playwright-reporter',
183
- {
184
- // Optional: Creevey reporter specific settings
185
- reportDir: './creevey-report', // Where the Creevey HTML report goes
186
- screenDir: './creevey-images', // Where your reference (golden) images are stored
187
- // You can pass other Creevey config options here too,
188
- // like diffOptions, port, etc.
189
- },
190
- ],
191
- ],
192
- // ... other Playwright settings like projects, testDir, etc.
193
- use: {
194
- // Make sure your tests take screenshots that the reporter can find
195
- // For example, using Playwright's toHaveScreenshot() or your own way
196
- },
197
- });
198
- ```
199
-
200
- Your Playwright tests would then use familiar methods like `await expect(page).toHaveScreenshot('image-name.png');` or `await page.screenshot({ path: 'path/to/image.png' });`. The Creevey reporter will take care of the visual comparisons and create the report. Check out `docs/playwright-reporter.md` for more details.
201
-
202
- #### 5. Approve Tests Right from the Report UI (Update Mode)
203
-
204
- We've added an "Update Mode" so you can approve changes to test images directly in the Creevey report UI. No need to run Storybook or open browsers.
205
-
206
- - The UI will show you when it's in update mode. You won't be able to run tests from the UI in this mode; it's all about reviewing and approving visual changes. To run Creevey in this UI Update mode, use the `report` command:
207
-
208
- ```bash
209
- creevey report
210
- ```
211
-
212
- - You can specify report directory to use for UI Update mode
213
-
214
- #### 6. New JUnit Reporter & Better Reporter Options
215
-
216
- - **JUnit Reporter:** You can now get JUnit-compatible XML reports, which is handy for CI/CD setups.
217
- - **How to Use It:** Set `reporter: 'junit'` in your `creevey.config.ts`.
218
- - You can tell it where to save the file with `reporterOptions: { outputFile: 'path/to/report.xml' }`.
219
- - **Reporter Setup:** Setting up reporters has moved from command-line options to your `creevey.config.ts` file.
220
-
221
- ```typescript
222
- // In creevey.config.ts
223
- const config: CreeveyConfig = {
224
- reporter: 'junit', // or 'teamcity', 'creevey'
225
- reporterOptions: {
226
- // custom options for the reporter you chose
227
- // For JUnit: { outputFile: 'report.xml' }
228
- },
229
- };
230
- ```
231
-
232
- #### 7. Try ODiff for Image Comparison
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
287
2
 
288
- ### Features
3
+ All notable changes to this project will be documented in this file.
289
4
 
290
- - hybrid stories provider ([89d9c73](https://github.com/wKich/creevey/commit/89d9c7357369dffb320ea06fe158b4113f57034c))
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).
291
7
 
292
- ## [0.8.1](https://github.com/wKich/creevey/compare/v0.8.1-beta.1...v0.8.1) (2023-05-29)
8
+ ## [0.10.37](https://github.com/creevey/creevey/compare/v0.10.36...v0.10.37) (2026-05-13)
293
9
 
294
- ## [0.8.1-beta.1](https://github.com/wKich/creevey/compare/v0.8.1-beta.0...v0.8.1-beta.1) (2023-05-05)
295
10
 
296
- ### Bug Fixes
11
+ ### Features
297
12
 
298
- - **providers:** set creevey port for all providers ([79e8aae](https://github.com/wKich/creevey/commit/79e8aae629d79260f93a93057486bab659801a46))
13
+ * add local dev client statics bootstrap ([99d05c5](https://github.com/creevey/creevey/commit/99d05c53909d2da50290608c30a1ce5680ad2385))
299
14
 
300
- ## [0.8.1-beta.0](https://github.com/wKich/creevey/compare/v0.8.0...v0.8.1-beta.0) (2023-04-11)
301
15
 
302
16
  ### Bug Fixes
303
17
 
304
- - **addon:** make bundlers to load esm version of addon ([f2937ca](https://github.com/wKich/creevey/commit/f2937caccca158e68c8be45d0882ec9b62eb05b2))
18
+ * bootstrap client statics for local test runs ([29e0565](https://github.com/creevey/creevey/commit/29e05654f1af0ff6cb0681d3509f7bfb00d0786e))
19
+ * default JUnit output path without reporter options ([eef12a6](https://github.com/creevey/creevey/commit/eef12a645e2eee8307c6cdb627bb2334decdc50e))
20
+ * harden Storybook startup and project checks ([f5dd50a](https://github.com/creevey/creevey/commit/f5dd50a81a4bcaa78e52f46462d0d7fc19637079))
21
+ * ignore built Storybook output in linting ([bf064c6](https://github.com/creevey/creevey/commit/bf064c60fffece01f706b25d227dd478e3f89bfd))
22
+ * **junit:** expose screenshot attachments in GitLab ([2d53211](https://github.com/creevey/creevey/commit/2d53211949d8c75ffd29e4a95684ffff6a504897))
23
+ * **junit:** prefer diff attachment for GitLab ([fcbf794](https://github.com/creevey/creevey/commit/fcbf794e2607ce65561045cd0c6f680943a70055))
24
+ * migrate GitLab CI to local Playwright browsers ([b3e4dff](https://github.com/creevey/creevey/commit/b3e4dffdfe502f2a5623fa4890b301df31480dbc))
25
+ * narrow Playwright Storybook init shim ([2b9fcd3](https://github.com/creevey/creevey/commit/2b9fcd3d4a15b603099476d5b1508b6a55b351c5))
26
+ * publish GitLab screenshot results as JUnit ([4f35d24](https://github.com/creevey/creevey/commit/4f35d244048ccd82fa8337511b9bb65a62696364))
27
+ * restore async report flow and format docs ([fc13e4f](https://github.com/creevey/creevey/commit/fc13e4fb34f87504e6c4cea11af198534f40e5a0))
28
+ * restore Storybook 9+ compatibility without dist artifacts ([cb43f63](https://github.com/creevey/creevey/commit/cb43f630feab152f1721d3c7b57321a863b4c92e))
29
+ * restore Storybook 9+ compatibility without dist artifacts ([8b1dce6](https://github.com/creevey/creevey/commit/8b1dce6af619a2db47943d4285101403c302010c))
30
+ * run screenshot CI against built Storybook ([6cd9c39](https://github.com/creevey/creevey/commit/6cd9c39b3c846483bb3cbed5b8bcfc8ffd4a9d77))
31
+ * scope Selenium __name workaround to story extraction ([2fa7ae2](https://github.com/creevey/creevey/commit/2fa7ae2681e766528a85d811ea27f09262e3d6e2))
32
+ * tighten local client statics bootstrap detection ([cdce0bd](https://github.com/creevey/creevey/commit/cdce0bdd5b52a7381af35f9087668b06a6c138e2))
33
+ * update client statics references and tests ([6a1ef6a](https://github.com/creevey/creevey/commit/6a1ef6a36ada38b2112c9f4c690fa74ac30b587c))
34
+ * use vite config as local bootstrap marker ([caff05c](https://github.com/creevey/creevey/commit/caff05c09e7bcc1361b86adf96013316f16b58e0))
305
35
 
306
- # [0.8.0](https://github.com/wKich/creevey/compare/v0.8.0-beta.1...v0.8.0) (2023-03-07)
307
36
 
308
- ### Bug Fixes
37
+ ### Documentation
309
38
 
310
- - drop support of SkipOption on root skip level ([31be1bf](https://github.com/wKich/creevey/commit/31be1bf4d67f464ea6790e6e218ca75674366711))
39
+ * update contributor attribution notes ([d405302](https://github.com/creevey/creevey/commit/d405302583f52b546510a58c21c6ed272225cb1c))
40
+ * update memory for client statics bootstrap split ([51f946a](https://github.com/creevey/creevey/commit/51f946a2ddb8275d5f2e9ff0720ac5a2ab6baa9e))
41
+
42
+
43
+ ### Code Refactoring
311
44
 
312
- # [0.8.0-beta.1](https://github.com/wKich/creevey/compare/v0.8.0-beta.0...v0.8.0-beta.1) (2023-01-18)
45
+ * require built client statics at runtime ([e95873c](https://github.com/creevey/creevey/commit/e95873cc53a93362632ea49c89294e83cd013099))
313
46
 
314
- ### Bug Fixes
315
47
 
316
- - **addon:** restore IE11 support ([94f452f](https://github.com/wKich/creevey/commit/94f452fff4225e974c9efdff21f982d5155de4f8))
317
- - allow setting timeouts via capabilities ([72de9e5](https://github.com/wKich/creevey/commit/72de9e50b818587309f665c782637ae43c3e4864))
318
- - infinite UI loading ([4f7b47d](https://github.com/wKich/creevey/commit/4f7b47db3ff1274217b044ce608e34d22148fe32))
319
- - **addon:** restore and move ie11 support to separate addon ([3ba2cc7](https://github.com/wKich/creevey/commit/3ba2cc7fde281037406f1705c0abc616c576e641))
320
- - browser-node regexp parameters transfering ([737670e](https://github.com/wKich/creevey/commit/737670e18aa5d0ce416fe12b765406116b453e31))
321
- - correct call of the test fn ([98c03ad](https://github.com/wKich/creevey/commit/98c03ad1700486bfd75170f4517970717250f6d8))
322
- - handle null from selectStory ([1895602](https://github.com/wKich/creevey/commit/1895602143b3236ab195e11fcfa162df2a01af03))
323
- - ie11 support ([523e35b](https://github.com/wKich/creevey/commit/523e35b6950d978ca3aaa77dd4f072a835053687))
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))
48
+ ### Tests
49
+
50
+ * align Selenium BiDi mock with runtime import ([3ad1054](https://github.com/creevey/creevey/commit/3ad10541527f8bc1db3a5141856bf17330070e24))
51
+
52
+
53
+ ### Miscellaneous
54
+
55
+ * release as 0.10.37 ([8a8e6de](https://github.com/creevey/creevey/commit/8a8e6deac81569d8fe27553144d47c8fc7422e93))
56
+
57
+ ## [0.10.36](https://github.com/creevey/creevey/compare/v0.10.35...v0.10.36) (2026-05-12)
327
58
 
328
- ### Features
329
59
 
330
- - 🎸 add support `play()` story method ([318ac62](https://github.com/wKich/creevey/commit/318ac628cb14fb0de7a89c088ae241df520df1e7))
331
- - drop support for storybook < 6.4 ([fb8c0f5](https://github.com/wKich/creevey/commit/fb8c0f5158ab7c0495949eaa61ba52049c3d66cf))
60
+ ### BREAKING CHANGES
61
+
62
+ * 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.
63
+
64
+ ### Features
65
+
66
+ * 🎸 add `dockerImagePlatform` config option ([f52de6c](https://github.com/creevey/creevey/commit/f52de6c31ab41012ce127702d0967c8f40fb7c20))
67
+ * 🎸 add `failFast` CLI option. Terminates on first fail ([0023bbb](https://github.com/creevey/creevey/commit/0023bbb022e71b7b3cb60fd7cea9bdb89a7e87bc))
68
+ * 🎸 add `failFat` parameter to the config ([c4fe538](https://github.com/creevey/creevey/commit/c4fe538569311cc7ca3c0c9e8e93916cf4a3cb8b))
69
+ * 🎸 add ability to update story arguments from test cases ([18d8ecb](https://github.com/creevey/creevey/commit/18d8ecb909097b585282a04bfb0b0c721ad45e22))
70
+ * 🎸 add storiesProvider config option ([7cf7454](https://github.com/creevey/creevey/commit/7cf74542d527bcfd5b41b17026464a4f9298e1f5))
71
+ * 🎸 add support `play()` story method ([318ac62](https://github.com/creevey/creevey/commit/318ac628cb14fb0de7a89c088ae241df520df1e7))
72
+ * 🎸 add webdriver debug logging ([6124a43](https://github.com/creevey/creevey/commit/6124a43b79d2761c3f04f6f3f118599ecb517c27))
73
+ * 🎸 change format for `skip` parameter ([f244b7c](https://github.com/creevey/creevey/commit/f244b7cd344b276762408a1df841e5afc3853fad))
74
+ * 🎸 failFast doesn't disable maxRetries option ([c81c637](https://github.com/creevey/creevey/commit/c81c63784aecea890596647225ce8278d7383df5))
75
+ * 🎸 improve delay option to allow specify browsers ([4bec3b5](https://github.com/creevey/creevey/commit/4bec3b5a4ddca2e2610db4ecf79f0e859202da65))
76
+ * 🎸 Improve skip options ([2fcc624](https://github.com/creevey/creevey/commit/2fcc624a9b2ab1dcdce3927779c8f58bb0a0d02c))
77
+ * 🎸 run extract stories.json on storybook-build ([803a1d1](https://github.com/creevey/creevey/commit/803a1d1b9b774121e1a611dfbbe1a3ad041339af))
78
+ * add git-cliff changelog and automated release/publish workflows ([f69890b](https://github.com/creevey/creevey/commit/f69890b9ef8b65e267c8e3e2251527b976732660))
79
+ * add host param to config ([4d10422](https://github.com/creevey/creevey/commit/4d10422aa57e7dbc80c1f4a880f3472200abdf7b))
80
+ * devcontainer support ([75ccad0](https://github.com/creevey/creevey/commit/75ccad0079b6fe13af8b8a02fb4a476f48fd5bdc))
81
+ * devcontainer support ([5347af1](https://github.com/creevey/creevey/commit/5347af135ffe0dc70f4aa1484a60156e184773ed))
82
+ * drop support for storybook &lt; 6.4 ([fb8c0f5](https://github.com/creevey/creevey/commit/fb8c0f5158ab7c0495949eaa61ba52049c3d66cf))
83
+ * drop support of storybook &lt; 6.4 ([4ce669e](https://github.com/creevey/creevey/commit/4ce669e7cee58af3bfc8b8fe09d8b31559512b01))
84
+ * host option for creevey-server ([c9b4738](https://github.com/creevey/creevey/commit/c9b4738f2500299d5c96da4c791bcfb65caf7c91))
85
+ * host option for creevey-server ([c38eb4a](https://github.com/creevey/creevey/commit/c38eb4a5849195a0bbee5fcb999a11c26d71d31b))
86
+ * hybrid stories provider ([89d9c73](https://github.com/creevey/creevey/commit/89d9c7357369dffb320ea06fe158b4113f57034c))
87
+ * **junit:** add failure/error body text and separate errors count ([e702c4e](https://github.com/creevey/creevey/commit/e702c4ee3fec01cef2a9d1f1486554a0082af882))
88
+ * **junit:** add hostname and sequential id attributes to testsuite ([c4e69f7](https://github.com/creevey/creevey/commit/c4e69f75bf5955b1fb7af85cbeb3730abf370652))
89
+ * **junit:** add screenshot attachment properties to testcase elements ([693b375](https://github.com/creevey/creevey/commit/693b3753a1918a1d2bf8a46bafbcffbf9b5bf923))
90
+ * **junit:** extend writeElement with textContent parameter ([5334660](https://github.com/creevey/creevey/commit/53346607fd7781ff1323ddedbfa9cd6c4c351395))
91
+ * **junit:** fix suite keying for multi-browser runs ([0ea235a](https://github.com/creevey/creevey/commit/0ea235af51faa857cabcc2f390dfd4d7ef2afdc4))
92
+ * new creevey params: "global" and "kind" ([7d7c885](https://github.com/creevey/creevey/commit/7d7c88521a28c91586bfdd663500bea576845292))
93
+ * remove Creevey Storybook addon; unify webdriver plumbing; update web UI ([37f36e5](https://github.com/creevey/creevey/commit/37f36e5452daf7d43b560d26c3adaee71138cfca))
94
+ * support storybook 6.4 ([74010e5](https://github.com/creevey/creevey/commit/74010e53d93ff1815427cd7ee818481ce6e21288))
95
+ * support Storybook 6.4 ([b4baf97](https://github.com/creevey/creevey/commit/b4baf97a31208c74671b4d24141d6b19f0f7635c))
332
96
 
333
- # [0.8.0-beta.0](https://github.com/wKich/creevey/compare/v0.7.39...v0.8.0-beta.0) (2022-03-17)
334
97
 
335
98
  ### Bug Fixes
336
99
 
337
- - 🐛 revert cross-env scripts, as they not work in unix ([92b04a5](https://github.com/wKich/creevey/commit/92b04a5bed56191b7ee6bd169f5327e30a1c2232))
100
+ * 🐛 icons layout ([6cca3bf](https://github.com/creevey/creevey/commit/6cca3bf0c789ab3b2cbfd3c757fc0a1e1520e50f))
101
+ * 🐛 improve `waitForStorybook` wait for `setStories` event ([8431918](https://github.com/creevey/creevey/commit/8431918656378b6760a60da8570fb18952de210c))
102
+ * 🐛 improve update to approve only failed images ([f0e5719](https://github.com/creevey/creevey/commit/f0e5719f1b8d1b0fb105bacb5619cd903eadced6))
103
+ * 🐛 make creevey work with vite ([0d576c6](https://github.com/creevey/creevey/commit/0d576c6e2660fd4f29ba4efd440d4af9ee590ac2))
104
+ * 🐛 report test as a failed for teamcity reporter ([0e58915](https://github.com/creevey/creevey/commit/0e58915b6d14441e14851c7c3bc888fe0759ddce))
105
+ * 🐛 resolve storybook preview config after babel/register ([cb3f46c](https://github.com/creevey/creevey/commit/cb3f46c0502264cdd5aefc2dc397da1892938eb5))
106
+ * 🐛 revert cross-env scripts, as they not work in unix ([92b04a5](https://github.com/creevey/creevey/commit/92b04a5bed56191b7ee6bd169f5327e30a1c2232))
107
+ * 🐛 save report data after each tests run ([86c6c2e](https://github.com/creevey/creevey/commit/86c6c2ee1261bdc38fc3b7c6ebb1753348339a0a))
108
+ * 🐛 selenium url path to '/' for webkit browsers ([748d896](https://github.com/creevey/creevey/commit/748d8968c645ee684cec5dcd899d2de749d5e2c6))
109
+ * 🐛 some issues for storybook 5.3 and create-react-preset ([c1e20b3](https://github.com/creevey/creevey/commit/c1e20b31234875d3ef961ce3804e3384d858f94d))
110
+ * 🐛 update didn't use report data to approve failed tests ([107d0fa](https://github.com/creevey/creevey/commit/107d0faf4c717bbb7a547422e9baf7105389d0bd))
111
+ * **addon:** make bundlers to load esm version of addon ([07a4c12](https://github.com/creevey/creevey/commit/07a4c12fc8311c96e33c92df595d2934d80a6410))
112
+ * **addon:** make bundlers to load esm version of addon ([f2937ca](https://github.com/creevey/creevey/commit/f2937caccca158e68c8be45d0882ec9b62eb05b2))
113
+ * **addon:** restore and move ie11 support to separate addon ([3ba2cc7](https://github.com/creevey/creevey/commit/3ba2cc7fde281037406f1705c0abc616c576e641))
114
+ * **addon:** restore and move ie11 support to separate preset ([2d65e94](https://github.com/creevey/creevey/commit/2d65e9417d366d956ee32f4f0c9acd57864fc820))
115
+ * **addon:** restore IE11 support ([3561391](https://github.com/creevey/creevey/commit/35613914618cb86911dfafad538576a95d57f84a))
116
+ * **addon:** restore IE11 support ([94f452f](https://github.com/creevey/creevey/commit/94f452fff4225e974c9efdff21f982d5155de4f8))
117
+ * allow setting timeouts via capabilities ([72de9e5](https://github.com/creevey/creevey/commit/72de9e50b818587309f665c782637ae43c3e4864))
118
+ * allow using "capture" with nodejsStoriesProvider ([c4d8562](https://github.com/creevey/creevey/commit/c4d8562d5f5839cc27267e24127bbc42dcecd427))
119
+ * browser-node regexp parameters transfering ([737670e](https://github.com/creevey/creevey/commit/737670e18aa5d0ce416fe12b765406116b453e31))
120
+ * correct call of the test fn ([98c03ad](https://github.com/creevey/creevey/commit/98c03ad1700486bfd75170f4517970717250f6d8))
121
+ * default yarn verison to stable ([48bfaed](https://github.com/creevey/creevey/commit/48bfaed9ccadb3f804c68612084ed41409f8d970))
122
+ * deps issue with storybook@6.5 and yarn@1 ([f91990a](https://github.com/creevey/creevey/commit/f91990a594828766b212a657dcb4c7df895bf877))
123
+ * drop support of SkipOption on root skip level ([bfaae0b](https://github.com/creevey/creevey/commit/bfaae0b8c0190516cde02575e7e3140a6dcaf812))
124
+ * drop support of SkipOption on root skip level ([31be1bf](https://github.com/creevey/creevey/commit/31be1bf4d67f464ea6790e6e218ca75674366711))
125
+ * handle null from selectStory ([1895602](https://github.com/creevey/creevey/commit/1895602143b3236ab195e11fcfa162df2a01af03))
126
+ * ie11 support ([523e35b](https://github.com/creevey/creevey/commit/523e35b6950d978ca3aaa77dd4f072a835053687))
127
+ * infinite UI loading ([94d61aa](https://github.com/creevey/creevey/commit/94d61aa7bb92762c2fa84e385b39b98845f63f70))
128
+ * infinite UI loading ([4f7b47d](https://github.com/creevey/creevey/commit/4f7b47db3ff1274217b044ce608e34d22148fe32))
129
+ * **junit:** address code quality issues in test infrastructure ([c7351dd](https://github.com/creevey/creevey/commit/c7351ddaf62d20dee2279a6c13afdf37a15cacc9))
130
+ * **junit:** align failure/error counting with XML elements ([abfb9e2](https://github.com/creevey/creevey/commit/abfb9e26a3b926e03a1879490a0f325fc2987935))
131
+ * **junit:** fix multi-line textContent indentation and isImageMismatch guard ([bebbaac](https://github.com/creevey/creevey/commit/bebbaac2888dd95d9ae326269a5e581556f6131f))
132
+ * **junit:** hoist hostname call and tighten spec-attr test assertions ([ee83f41](https://github.com/creevey/creevey/commit/ee83f4130920688e7a78d07dffd208b74a00546a))
133
+ * **junit:** tighten attachment assertions and add multi-attachment test ([d9e1840](https://github.com/creevey/creevey/commit/d9e1840e7fbf057b234eb0f640fe4b1f571b73c8))
134
+ * move addon to the separate entry point ([f3fc59f](https://github.com/creevey/creevey/commit/f3fc59f980a56f87f882507c3a0367ed6a356d33))
135
+ * move the addon to a separate entry point ([7c23ee1](https://github.com/creevey/creevey/commit/7c23ee1323220bede4df5b4c26c6c4811f8652e5))
136
+ * prevent importing browser-specific code to node ([37706ef](https://github.com/creevey/creevey/commit/37706efbb49dd5bd1d6ec06821fac52480a0e132))
137
+ * **providers:** set creevey port for all providers ([79e8aae](https://github.com/creevey/creevey/commit/79e8aae629d79260f93a93057486bab659801a46))
138
+ * **release:** use manifest mode instead of release-type in workflow ([bbb78c0](https://github.com/creevey/creevey/commit/bbb78c03cc9033f67e8e107a95ff96623ade6e79))
139
+ * rename creevey config extensions from .mts to .ts ([fc8d7c4](https://github.com/creevey/creevey/commit/fc8d7c44ced881aa84b5ed043510e00569107e77))
140
+ * **selenium-webdriver:** bump [@types](https://github.com/types) package version ([fcc6a2c](https://github.com/creevey/creevey/commit/fcc6a2c056c116125f8d3162375ea8e6acd1de06))
141
+ * **selenium-webdriver:** bump [@types](https://github.com/types) package version ([ca4b369](https://github.com/creevey/creevey/commit/ca4b369046e2c56e0548f5cbb6f98c17b0125228))
142
+ * stabilize 0.8.0 ([15dfdda](https://github.com/creevey/creevey/commit/15dfddafe9c9a48f57fe86843f6f7981930214e7))
143
+
144
+
145
+ ### Documentation
146
+
147
+ * ✏️ add maintaining note in readme ([2a1354d](https://github.com/creevey/creevey/commit/2a1354ddbb1de7fb5cce3d6349aa9f8335f6f7a7))
148
+ * ✏️ update todos ([57ddc97](https://github.com/creevey/creevey/commit/57ddc979555b0128a9a1e029e025400dfccea90b))
149
+ * add creevey logo ([b75d3f7](https://github.com/creevey/creevey/commit/b75d3f7231ca4dd4f268f88da220b4aa63dd2f46))
150
+ * add creevey logo ([acf7e78](https://github.com/creevey/creevey/commit/acf7e784e6cab0d5333f76236c3a754e198c2012))
151
+ * add junit reporter improvements design spec ([0c8be62](https://github.com/creevey/creevey/commit/0c8be62247f1cfa7fb908dc4844959f19ff0dd9e))
152
+ * doc global and kind parameters ([851ee45](https://github.com/creevey/creevey/commit/851ee45c4b4da6958f8cb78f6062d8fa8eb186e4))
153
+ * doc supported storybook versions ([1870ce8](https://github.com/creevey/creevey/commit/1870ce850f5098a39ed899ed02cded21dba17a3f))
154
+ * extend multiple skip example ([81d2f0e](https://github.com/creevey/creevey/commit/81d2f0eafa5bce841297e8ae3f8764b8bd5486e1))
155
+ * mark junit reporter improvements plan and design as completed ([c3a05c9](https://github.com/creevey/creevey/commit/c3a05c93ae3c43f90b7c973b79a5a6b318fadde5))
156
+ * update release process in memories ([b51c574](https://github.com/creevey/creevey/commit/b51c574cb444b87782ce53d72f8c060d8cb2d5a7))
157
+ * update skip examples ([08dc28e](https://github.com/creevey/creevey/commit/08dc28eb6dfb77e18fc33f4bbc0981c49ad8ce67))
158
+
159
+
160
+ ### Code Refactoring
161
+
162
+ * 💡 cleanup some stuff ([d6ed892](https://github.com/creevey/creevey/commit/d6ed892f32ba3602d1fc3f2617b49f45389031fd))
163
+ * 💡 prepare to support svelte CSF stories ([7d9c2c6](https://github.com/creevey/creevey/commit/7d9c2c6887ca1de33b3abea9ca106bc3c46547bb))
164
+ * **junit:** extract suiteKey/getOrCreateSuite helpers, fix test assertions ([e43191c](https://github.com/creevey/creevey/commit/e43191cf9260dfaf9bf78b580a2fe16c3bc94800))
165
+
166
+
167
+ ### Tests
168
+
169
+ * 💍 add more e2e tests for storybook building and extract ([1f6b559](https://github.com/creevey/creevey/commit/1f6b559d591e80c4cc2dc7a9b20803175c11d751))
170
+ * 💍 add one more test for skip options ([b6ff022](https://github.com/creevey/creevey/commit/b6ff02236da6b9d27fa15ddf2278c9bd012d6d85))
171
+ * 💍 approve tests ([fed22af](https://github.com/creevey/creevey/commit/fed22af34afe8070f90849114bc4d30f85132053))
172
+ * 💍 fix line endings for windows ([3a69def](https://github.com/creevey/creevey/commit/3a69def5f0f283cfe0ad6325f57d639185665dd8))
173
+ * 💍 fix loader test for windows ([14955b1](https://github.com/creevey/creevey/commit/14955b143585111562498387d498bb8d15c812e4))
174
+ * 💍 fix some e2e cases ([8cbe731](https://github.com/creevey/creevey/commit/8cbe731b4fceaaf7a854dc8532b34962033ce2dc))
175
+ * 💍 fix utils tests names ([e400c22](https://github.com/creevey/creevey/commit/e400c22f19264fd737415246aa2bf22dafa21847))
176
+ * 💍 remove e2e tests use jest instead for unit tests ([82339e8](https://github.com/creevey/creevey/commit/82339e8c852c22324fbf795fb9ea90489d3c17fd))
177
+ * 💍 update approval e2e tests ([c5d62d2](https://github.com/creevey/creevey/commit/c5d62d2712104d971ab159fe395223028bbf436a))
178
+ * 💍 update e2e tests ([9b72248](https://github.com/creevey/creevey/commit/9b7224849cc40d23836240c8397647c10b823c2d))
179
+ * 💍 Update screenshot images ([6effd5a](https://github.com/creevey/creevey/commit/6effd5a4904e85703091e83b174ce211e6431700))
180
+ * add e2e test for 6.4 ([946a257](https://github.com/creevey/creevey/commit/946a2575bbfcf2c0c51883d35e820b397a8f4fac))
181
+ * approve latest e2e changes ([75ba132](https://github.com/creevey/creevey/commit/75ba13246e5c96ad414fa8b7c83c4c6ccacfb281))
182
+ * approve minor changes ([419475d](https://github.com/creevey/creevey/commit/419475df54ced555079463b356be42d7e7a85071))
183
+ * stories serialization ([9446990](https://github.com/creevey/creevey/commit/94469909c75f70b956c1ab7159fc1a6b05e72a1b))
184
+ * update screenshots due browsers update ([ec85c0a](https://github.com/creevey/creevey/commit/ec85c0a60e79b94e69b97c4d31668d81292d2347))
185
+ * wip ([42c3535](https://github.com/creevey/creevey/commit/42c35356f78d756ed79cc0bd88dc06756940c31f))
186
+
187
+
188
+ ### Miscellaneous
189
+
190
+ * release as 0.10.36 ([b4644cf](https://github.com/creevey/creevey/commit/b4644cf9fb6cb1ce47a79e1fa020b695ef7908fe))
191
+
192
+ ## [Unreleased]
193
+
194
+ ### Added
195
+
196
+ - 🎸 add support `play()` story method
197
+ - Hybrid stories provider
198
+ - Drop support for storybook < 6.4
199
+ - Host option for creevey-server
200
+ - Add host param to config
201
+ - Devcontainer support
202
+ - Remove Creevey Storybook addon; unify webdriver plumbing; update web UI
203
+ - **junit:** Extend writeElement with textContent parameter
204
+ - **junit:** Fix suite keying for multi-browser runs
205
+ - **junit:** Add failure/error body text and separate errors count
206
+ - **junit:** Add screenshot attachment properties to testcase elements
207
+ - **junit:** Add hostname and sequential id attributes to testsuite
208
+
209
+ ### Changed
210
+
211
+ - **junit:** Extract suiteKey/getOrCreateSuite helpers, fix test assertions
212
+
213
+ ### Documentation
214
+
215
+ - ✏️ add maintaining note in readme
216
+ - Doc supported storybook versions
217
+ - Update skip examples
218
+ - Extend multiple skip example
219
+ - Add creevey logo
220
+ - Add junit reporter improvements design spec
221
+ - Mark junit reporter improvements plan and design as completed
222
+
223
+ ### Fixed
224
+
225
+ - **selenium-webdriver:** Bump @types package version
226
+ - **addon:** Restore and move ie11 support to separate addon
227
+ - Correct call of the test fn
228
+ - Prevent importing browser-specific code to node
229
+ - Ie11 support
230
+ - Allow setting timeouts via capabilities
231
+ - Browser-node regexp parameters transfering
232
+ - Handle null from selectStory
233
+ - Move addon to the separate entry point
234
+ - Infinite UI loading
235
+ - **addon:** Restore IE11 support
236
+ - Drop support of SkipOption on root skip level
237
+ - **addon:** Make bundlers to load esm version of addon
238
+ - **providers:** Set creevey port for all providers
239
+ - 🐛 icons layout
240
+ - Default yarn verison to stable
241
+ - **junit:** Address code quality issues in test infrastructure
242
+ - **junit:** Align failure/error counting with XML elements
243
+ - **junit:** Tighten attachment assertions and add multi-attachment test
244
+ - **junit:** Hoist hostname call and tighten spec-attr test assertions
245
+ - **junit:** Fix multi-line textContent indentation and isImageMismatch guard
246
+
247
+ ### Miscellaneous
248
+
249
+ - 🤖 fix lint issues
250
+ - 🤖 disable storybook e2e test
251
+ - Move readDirRecursive to utils
252
+ - Merge params from tests correctly
253
+ - Use storybook's Id constructor
254
+ - Export new entities from index
255
+ - Add typescript support
256
+ - Move to testsFiles dir and renamve config options
257
+ - 🤖 update deps
258
+ - 🤖 update deps
259
+ - 🤖 change babel config to support unit tests
260
+ - Dont wait testFn call result
261
+ - Ignore testFn return value
262
+ - Move presets to common dir
263
+ - Add entry points for presets
264
+ - Prevent polyfills duplication
265
+ - Restore babel transformation of client code
266
+ - Fix exports field
267
+ - Complete ie11 preset
268
+ - Trying to remove webpack usage
269
+ - Export test parser types
270
+ - Temp fix for IgnoredException
271
+ - 0.8.1-sb7.1
272
+ - 0.8.1-sb7.4
273
+ - Support storybook 7
274
+ - Fix types
275
+ - 0.9.0-beta.6
276
+ - Wip
277
+ - 0.9.0-beta.8
278
+ - Clear preset
279
+ - 0.9.0-beta.9
280
+ - 0.9.0-beta.10
281
+ - 0.9.0-beta.11
282
+ - Try suppress the "document unloaded" error
338
283
 
339
- ### Features
284
+ ### Testing
340
285
 
341
- - 🎸 change format for `skip` parameter ([f244b7c](https://github.com/wKich/creevey/commit/f244b7cd344b276762408a1df841e5afc3853fad))
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))
286
+ - 💍 update e2e tests
287
+ - 💍 remove e2e tests use jest instead for unit tests
288
+ - Stories serialization
289
+ - Update screenshots due browsers update
290
+ - Remove old screenshots
291
+
292
+ ### Build
293
+
294
+ - Commit yarn.lock changes
295
+ - Setup package.json's exports field
296
+ - Use @storybook/core-client instead of @storybook/core
297
+
298
+ ### Ci
345
299
 
346
- ## [0.7.39](https://github.com/wKich/creevey/compare/v0.7.38...v0.7.39) (2021-11-04)
300
+ - 🎡 updated circle ci images versions
301
+ - 🎡 update github actions script
302
+ - Run lint before build in CI workflow
303
+ - Downgrade node version from 22 to 20 in CI workflow
347
304
 
348
- ### Features
305
+ ### Wip
349
306
 
350
- - 🎸 add ability to update story arguments from test cases ([18d8ecb](https://github.com/wKich/creevey/commit/18d8ecb909097b585282a04bfb0b0c721ad45e22))
307
+ - Test hybrid provider
308
+ ## [0.8.0-beta.0] - 2022-03-17
351
309
 
352
- ## [0.7.38](https://github.com/wKich/creevey/compare/v0.7.37...v0.7.38) (2021-09-28)
310
+ ### Added
353
311
 
354
- ### Features
312
+ - Support storybook 6.4
313
+ - New creevey params: "global" and "kind"
314
+ - 🎸 change format for `skip` parameter
315
+ - 🎸 Improve skip options
355
316
 
356
- - 🎸 add storiesProvider config option ([7cf7454](https://github.com/wKich/creevey/commit/7cf74542d527bcfd5b41b17026464a4f9298e1f5))
317
+ ### Documentation
357
318
 
358
- ## [0.7.37](https://github.com/wKich/creevey/compare/v0.7.36...v0.7.37) (2021-08-27)
319
+ - Doc global and kind parameters
359
320
 
360
- ### Bug Fixes
321
+ ### Fixed
361
322
 
362
- - 🐛 save report data after each tests run ([86c6c2e](https://github.com/wKich/creevey/commit/86c6c2ee1261bdc38fc3b7c6ebb1753348339a0a))
363
- - 🐛 selenium url path to '/' for webkit browsers ([748d896](https://github.com/wKich/creevey/commit/748d8968c645ee684cec5dcd899d2de749d5e2c6)), closes [#176](https://github.com/wKich/creevey/issues/176)
323
+ - 🐛 revert cross-env scripts, as they not work in unix
364
324
 
365
- ### Features
325
+ ### Miscellaneous
366
326
 
367
- - 🎸 failFast doesn't disable maxRetries option ([c81c637](https://github.com/wKich/creevey/commit/c81c63784aecea890596647225ce8278d7383df5)), closes [#175](https://github.com/wKich/creevey/issues/175)
368
- - 🎸 improve delay option to allow specify browsers ([4bec3b5](https://github.com/wKich/creevey/commit/4bec3b5a4ddca2e2610db4ecf79f0e859202da65)), closes [#174](https://github.com/wKich/creevey/issues/174)
327
+ - Update stories params
369
328
 
370
- ## [0.7.36](https://github.com/wKich/creevey/compare/v0.7.35...v0.7.36) (2021-07-30)
329
+ ### Testing
371
330
 
372
- ### Bug Fixes
331
+ - 💍 Update screenshot images
332
+ - Add e2e test for 6.4
333
+ - Approve latest e2e changes
334
+ - Approve minor changes
335
+ - Wip
336
+ - 💍 update approval e2e tests
337
+ - 💍 fix utils tests names
338
+ - 💍 add one more test for skip options
373
339
 
374
- - 🐛 report test as a failed for teamcity reporter ([0e58915](https://github.com/wKich/creevey/commit/0e58915b6d14441e14851c7c3bc888fe0759ddce))
340
+ ### Build
375
341
 
376
- ## [0.7.35](https://github.com/wKich/creevey/compare/v0.7.34...v0.7.35) (2021-07-28)
342
+ - Update storybook
343
+ ## [0.7.39] - 2021-11-04
377
344
 
378
- ### Bug Fixes
345
+ ### Added
379
346
 
380
- - 🐛 update didn't use report data to approve failed tests ([107d0fa](https://github.com/wKich/creevey/commit/107d0faf4c717bbb7a547422e9baf7105389d0bd))
347
+ - 🎸 add ability to update story arguments from test cases
381
348
 
382
- ### Features
349
+ ### Changed
383
350
 
384
- - 🎸 add `dockerImagePlatform` config option ([f52de6c](https://github.com/wKich/creevey/commit/f52de6c31ab41012ce127702d0967c8f40fb7c20))
351
+ - 💡 cleanup some stuff
385
352
 
386
- ## [0.7.34](https://github.com/wKich/creevey/compare/v0.7.33...v0.7.34) (2021-07-12)
353
+ ### Miscellaneous
387
354
 
388
- ### Features
355
+ - 🤖 replace `jsdom-global` to `global-jsdom` to avoid errors in output
389
356
 
390
- - 🎸 add `failFat` parameter to the config ([c4fe538](https://github.com/wKich/creevey/commit/c4fe538569311cc7ca3c0c9e8e93916cf4a3cb8b))
357
+ ### Testing
391
358
 
392
- ## [0.7.33](https://github.com/wKich/creevey/compare/v0.7.32...v0.7.33) (2021-07-12)
359
+ - 💍 approve tests
360
+ - 💍 fix some e2e cases
361
+ ## [0.7.38] - 2021-09-28
393
362
 
394
- ### Bug Fixes
363
+ ### Added
395
364
 
396
- - 🐛 improve `waitForStorybook` wait for `setStories` event ([8431918](https://github.com/wKich/creevey/commit/8431918656378b6760a60da8570fb18952de210c))
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))
365
+ - 🎸 add storiesProvider config option
399
366
 
400
- ### Features
367
+ ### Miscellaneous
401
368
 
402
- - 🎸 add `failFast` CLI option. Terminates on first fail ([0023bbb](https://github.com/wKich/creevey/commit/0023bbb022e71b7b3cb60fd7cea9bdb89a7e87bc))
369
+ - 🤖 update deps
370
+ - **deps:** Bump tar from 6.1.2 to 6.1.11
371
+ - **deps-dev:** Bump immer from 9.0.5 to 9.0.6
372
+ - **deps:** Bump nth-check from 2.0.0 to 2.0.1
373
+ - **deps:** Bump tmpl from 1.0.4 to 1.0.5
374
+ - 🤖 update deps
403
375
 
404
- ## [0.7.32](https://github.com/wKich/creevey/compare/v0.7.31...v0.7.32) (2021-07-07)
376
+ ### Testing
405
377
 
406
- ### Features
378
+ - 💍 fix loader test for windows
379
+ - 💍 fix line endings for windows
380
+ ## [0.7.37] - 2021-08-27
407
381
 
408
- - 🎸 add webdriver debug logging ([6124a43](https://github.com/wKich/creevey/commit/6124a43b79d2761c3f04f6f3f118599ecb517c27))
409
- - 🎸 run extract stories.json on storybook-build ([803a1d1](https://github.com/wKich/creevey/commit/803a1d1b9b774121e1a611dfbbe1a3ad041339af))
382
+ ### Added
410
383
 
411
- ## [0.7.31](https://github.com/wKich/creevey/compare/v0.7.30...v0.7.31) (2021-06-26)
384
+ - 🎸 improve delay option to allow specify browsers
385
+ - 🎸 failFast doesn't disable maxRetries option
412
386
 
413
- ### Bug Fixes
387
+ ### Fixed
414
388
 
415
- - 🐛 ignore docsOnly stories for now ([2fda22b](https://github.com/wKich/creevey/commit/2fda22b333929306c2ad31243f1a0fd1900bbd7f))
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))
389
+ - 🐛 save report data after each tests run
390
+ - 🐛 selenium url path to '/' for webkit browsers
391
+ ## [0.7.36] - 2021-07-30
420
392
 
421
- ### Features
393
+ ### Documentation
422
394
 
423
- - 🎸 add `until` selenium helpers to test context ([4f29eca](https://github.com/wKich/creevey/commit/4f29eca9e829c68d765da88fbb3ab327278fefe3))
395
+ - ✏️ update todos
424
396
 
425
- ## [0.7.30](https://github.com/wKich/creevey/compare/v0.7.29...v0.7.30) (2021-06-10)
397
+ ### Fixed
426
398
 
427
- ### Bug Fixes
399
+ - 🐛 report test as a failed for teamcity reporter
428
400
 
429
- - 🐛 import the same webpack as used for storybook manager ([ae3c6b7](https://github.com/wKich/creevey/commit/ae3c6b712a8e41a7d3f4396b269d471c578d9408))
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))
401
+ ### Miscellaneous
432
402
 
433
- ## [0.7.29](https://github.com/wKich/creevey/compare/v0.7.28...v0.7.29) (2021-05-30)
403
+ - 🤖 update deps
434
404
 
435
- ### Bug Fixes
405
+ ### Ci
436
406
 
437
- - 🐛 allow pass boolean value to skip parameter ([9e36eec](https://github.com/wKich/creevey/commit/9e36eecce9d7df352ced159c1ec5b0de86fa7257)), closes [#147](https://github.com/wKich/creevey/issues/147)
407
+ - 🎡 update teamcity config version to 2021.1
408
+ ## [0.7.35] - 2021-07-28
438
409
 
439
- ### Features
410
+ ### Added
440
411
 
441
- - 🎸 improve `update` command allow to pass match pattern ([4cf79f4](https://github.com/wKich/creevey/commit/4cf79f4d7693686be86c4bec5ae7e5736f900615))
412
+ - 🎸 add `dockerImagePlatform` config option
442
413
 
443
- ## [0.7.28](https://github.com/wKich/creevey/compare/v0.7.27...v0.7.28) (2021-05-20)
414
+ ### Fixed
444
415
 
445
- ### Bug Fixes
416
+ - 🐛 update didn't use report data to approve failed tests
446
417
 
447
- - 🐛 creevey loader transforms csf funcs with props ([11bbc96](https://github.com/wKich/creevey/commit/11bbc96133edbce3c578a240a0a69c45d2b7a508))
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))
418
+ ### Ci
453
419
 
454
- ### Features
420
+ - 🎡 fix artifacts source path for client bundle
421
+ ## [0.7.34] - 2021-07-12
455
422
 
456
- - 🎸 improve extract stories by using only babel ([6e43452](https://github.com/wKich/creevey/commit/6e43452e8607ce62f8e73387245557812e051160))
457
- - 🎸 support for extract cjs and object.assign ([1978669](https://github.com/wKich/creevey/commit/1978669c1fcf9f5a9866d9399793d7388bab1680))
423
+ ### Added
458
424
 
459
- ## [0.7.27](https://github.com/wKich/creevey/compare/v0.7.26...v0.7.27) (2021-03-31)
425
+ - 🎸 add `failFat` parameter to the config
426
+ ## [0.7.33] - 2021-07-12
460
427
 
461
- ### Bug Fixes
428
+ ### Added
462
429
 
463
- - 🐛 capturing screenshots in ie11 ([2e47b2f](https://github.com/wKich/creevey/commit/2e47b2fe77a5af88673c369f297b5a373d3a2eba))
464
- - 🐛 compose browsers with external grid and builtin selenoid ([c429bec](https://github.com/wKich/creevey/commit/c429becc3827764c8349ed428bae5a7f4288bd5a))
430
+ - 🎸 add `failFast` CLI option. Terminates on first fail
465
431
 
466
- ## [0.7.26](https://github.com/wKich/creevey/compare/v0.7.25...v0.7.26) (2021-03-28)
432
+ ### Changed
467
433
 
468
- ### Bug Fixes
434
+ - 💡 prepare to support svelte CSF stories
469
435
 
470
- - 🐛 don't show run button in a report ([958c8ad](https://github.com/wKich/creevey/commit/958c8ad742121dd57adb841939fb5f27134132c5))
436
+ ### Fixed
471
437
 
472
- ### Features
438
+ - 🐛 improve `waitForStorybook` wait for `setStories` event
439
+ - 🐛 some issues for storybook 5.3 and create-react-preset
440
+ - 🐛 make creevey work with vite
441
+ ## [0.7.32] - 2021-07-07
473
442
 
474
- - 🎸 add `--extract` as faster alternative to `sb extract` ([5f5de2d](https://github.com/wKich/creevey/commit/5f5de2d44ba49c0f9868cb843a522745308fa055))
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))
443
+ ### Added
477
444
 
478
- ## [0.7.25](https://github.com/wKich/creevey/compare/v0.7.24...v0.7.25) (2021-03-18)
445
+ - 🎸 run extract stories.json on storybook-build
446
+ - 🎸 add webdriver debug logging
447
+ ## [0.7.31] - 2021-06-26
479
448
 
480
- ### Bug Fixes
449
+ ### Added
481
450
 
482
- - 🐛 exclude all addons from nodejs storybook bundle ([1194400](https://github.com/wKich/creevey/commit/1194400d441fe22a0b60718c67e083c76bf7e2c2))
483
- - 🐛 hover shouldn't override focus styles ([6762af9](https://github.com/wKich/creevey/commit/6762af942600dbb9f5d100539dcbe1fdee016a4c))
484
- - 🐛 test status icons align ([c3e5c7e](https://github.com/wKich/creevey/commit/c3e5c7ea14eb46e218a0d1dcbcec9374989b364d))
451
+ - 🎸 add `until` selenium helpers to test context
485
452
 
486
- ### Features
453
+ ### Fixed
487
454
 
488
- - 🎸 add sidebar keyboard handlers ([bf160b6](https://github.com/wKich/creevey/commit/bf160b61ecdd49417135f0b7b9c316efddb6e898))
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))
455
+ - 🐛 ignore docsOnly stories for now
456
+ - 🐛 improve listen story render error with `waitForReady`
457
+ - 🐛 resolving storybook modules for version less than 6.2
458
+ - 🐛 resolve storybook preview config after babel/register
459
+ - 🐛 improve update to approve only failed images
491
460
 
492
- ## [0.7.24](https://github.com/wKich/creevey/compare/v0.7.23...v0.7.24) (2021-03-10)
461
+ ### Miscellaneous
493
462
 
494
- ### Bug Fixes
463
+ - 🤖 update todos
464
+ - **deps:** Bump postcss from 7.0.35 to 7.0.36
465
+ - 🤖 update deps
495
466
 
496
- - 🐛 some security issues ([d3eed3c](https://github.com/wKich/creevey/commit/d3eed3c8970f097309e9ec2e3926a2e6a881fd9c))
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))
467
+ ### Testing
500
468
 
501
- ### Features
469
+ - 💍 add more e2e tests for storybook building and extract
470
+ ## [0.7.30] - 2021-06-10
502
471
 
503
- - 🎸 new panels in addon ([02232eb](https://github.com/wKich/creevey/commit/02232ebbeb3fe0eb0878743ccc9ad1a83277de64))
504
- - allow to ignore elements in screenshot ([19a38e0](https://github.com/wKich/creevey/commit/19a38e0379ad0b1cbbe6254f197888d2ebfb1a22))
472
+ ### Fixed
505
473
 
506
- ## [0.7.23](https://github.com/wKich/creevey/compare/v0.7.22...v0.7.23) (2021-01-25)
474
+ - Package.json & yarn.lock to reduce vulnerabilities
475
+ - 🐛 resolving storybook modules
476
+ - 🐛 import the same webpack as used for storybook manager
507
477
 
508
- ### Bug Fixes
478
+ ### Miscellaneous
509
479
 
510
- - 🐛 use shelljs to run selenoid binary ([3306071](https://github.com/wKich/creevey/commit/3306071d2840b6f8fde442880457085f6992915a))
480
+ - **deps:** Bump dns-packet from 1.3.1 to 1.3.4
481
+ - 🤖 update deps
482
+ - 🤖 downgrade ts for issue storybook#15067
483
+ - 🤖 update deps
511
484
 
512
- ## [0.7.22](https://github.com/wKich/creevey/compare/v0.7.21...v0.7.22) (2021-01-25)
485
+ ### Testing
513
486
 
514
- ### Bug Fixes
487
+ - 💍 update some images
488
+ ## [0.7.29] - 2021-05-30
515
489
 
516
- - run standalone browsers and selenoid ([ba85fdc](https://github.com/wKich/creevey/commit/ba85fdcd7f5e2ad0e6139cb3fe84e969dacb2b4c))
517
- - selenium url path for standalone run ([da45662](https://github.com/wKich/creevey/commit/da45662aff604bacb02bd949ece5e406888cbd4d))
490
+ ### Added
518
491
 
519
- ## [0.7.21](https://github.com/wKich/creevey/compare/v0.7.20...v0.7.21) (2021-01-22)
492
+ - 🎸 improve `update` command allow to pass match pattern
520
493
 
521
- ### Bug Fixes
494
+ ### Fixed
522
495
 
523
- - 🐛 create protocol relative image url ([5c574dc](https://github.com/wKich/creevey/commit/5c574dc3025eacf1c9d4402880a9893193c0180f))
524
- - 🐛 encode only path tokens for url ([28751c9](https://github.com/wKich/creevey/commit/28751c968cb4a3a8afcb606096a0a0bc2fc3bccf))
525
- - 🐛 get image url with empty port number ([43a8226](https://github.com/wKich/creevey/commit/43a822653001ecbb31534c40f688814e14bb52db))
526
- - 🐛 make report from static files works from creevey repo ([4b49df7](https://github.com/wKich/creevey/commit/4b49df72f21cee725848187c267f6b87b9e988e3))
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))
496
+ - 🐛 allow pass boolean value to skip parameter
529
497
 
530
- ### Features
498
+ ### Miscellaneous
531
499
 
532
- - 🎸 improve creevey-loader, cut-off side-effects ([a302708](https://github.com/wKich/creevey/commit/a30270808275fa5dbe83ddb33d0e5490995e9b37))
533
- - 🎸 save webpack stats.json on debug ([248e271](https://github.com/wKich/creevey/commit/248e2713bc97a601877eaa20f3c6e16ecc1e2aa5))
500
+ - 🤖 update deps
501
+ ## [0.7.28] - 2021-05-20
534
502
 
535
- ## [0.7.20](https://github.com/wKich/creevey/compare/v0.7.19...v0.7.20) (2021-01-15)
503
+ ### Added
536
504
 
537
- ### Bug Fixes
505
+ - 🎸 improve extract stories by using only babel
506
+ - 🎸 support for extract cjs and object.assign
538
507
 
539
- - 🐛 apply iframe after custom resolver ([e77bf33](https://github.com/wKich/creevey/commit/e77bf33048673e733ad2acd4799277b336e27fe5))
508
+ ### Changed
540
509
 
541
- ## [0.7.19](https://github.com/wKich/creevey/compare/v0.7.18...v0.7.19) (2021-01-14)
510
+ - 💡 simplify babel transformation helpers
542
511
 
543
- ### Bug Fixes
512
+ ### Fixed
544
513
 
545
- - 🐛 document unloaded error, again ([171b8bb](https://github.com/wKich/creevey/commit/171b8bb633f55616d58bc46655981e986cf9db95))
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))
514
+ - 🐛 improve process exiting with hooks, add ie11 tests
515
+ - 🐛 types after update to Storybook 6.2
516
+ - 🐛 improve babel-plugin to handle storiesOf in loops
517
+ - 🐛 creevey loader transforms csf funcs with props
518
+ - 🐛 csf template.bind extract correctly
519
+ - 🐛 remove some non-story and custom expressions
548
520
 
549
- ### Features
521
+ ### Miscellaneous
550
522
 
551
- - allow to set storybook's globals ([7500245](https://github.com/wKich/creevey/commit/75002458b38d5f7ac3d47cc32516ec9b55091db2))
523
+ - 🤖 update deps
524
+ - 🤖 update deps
525
+ - **deps:** Bump url-parse from 1.4.7 to 1.5.1
526
+ - **deps:** Bump handlebars from 4.7.6 to 4.7.7
552
527
 
553
- ## [0.7.18](https://github.com/wKich/creevey/compare/v0.7.17...v0.7.18) (2021-01-08)
528
+ ### Testing
554
529
 
555
- ### Bug Fixes
530
+ - 💍 fix absolute path in e2e tests
531
+ - 💍 update storybook official approvals
532
+ - 💍 update some firefox screenshots
556
533
 
557
- - 🐛 copy-paste missing function from storybook ([29144a4](https://github.com/wKich/creevey/commit/29144a41afe013874b082ca29eecc74b5b56a017))
534
+ ### Ci
558
535
 
559
- ## [0.7.17](https://github.com/wKich/creevey/compare/v0.7.16...v0.7.17) (2021-01-07)
536
+ - 🎡 ignore ie for now
537
+ - 🎡 fix report view resources
538
+ ## [0.7.27] - 2021-03-31
560
539
 
561
- ### Bug Fixes
540
+ ### Fixed
562
541
 
563
- - 🐛 addon erases global parameters in storybook ([2ed4700](https://github.com/wKich/creevey/commit/2ed47000f00e30890656872d1daae420e47db2d9))
542
+ - 🐛 capturing screenshots in ie11
543
+ - 🐛 compose browsers with external grid and builtin selenoid
564
544
 
565
- ## [0.7.16](https://github.com/wKich/creevey/compare/v0.7.15...v0.7.16) (2021-01-06)
545
+ ### Miscellaneous
566
546
 
567
- ### Bug Fixes
547
+ - 🤖 update deps
568
548
 
569
- - 🐛 resolve url for ie11 ([562a982](https://github.com/wKich/creevey/commit/562a9821135f42e428da7f64fe29f2473565eb6d))
570
- - 🐛 spinner position in sidebar ([5d2d34a](https://github.com/wKich/creevey/commit/5d2d34a7229d7fef8fd4f6731df6b807dce00d7f))
549
+ ### Testing
571
550
 
572
- ## [0.7.15](https://github.com/wKich/creevey/compare/v0.7.14...v0.7.15) (2021-01-06)
551
+ - 💍 ignore readdir error for tests
552
+ - 💍 fix absolute paths for storybook e2e tests
553
+ - 💍 another fix for absolute storybook path
554
+ - 💍 approve storybook official e2e test
573
555
 
574
- ### Bug Fixes
556
+ ### Ci
575
557
 
576
- - 🐛 addon show test name in tabs panel ([3393474](https://github.com/wKich/creevey/commit/339347498e87d5e43d1a5e89b611aeaf896e81f3))
577
- - 🐛 trim story kinds ([6ff25b0](https://github.com/wKich/creevey/commit/6ff25b0b87558d2ce0c11ecd5130480003f41988))
558
+ - 🎡 fix e2e test job steps
559
+ - 🎡 fix repository paramter for checkout action
560
+ ## [0.7.26] - 2021-03-28
578
561
 
579
- ### Features
562
+ ### Added
580
563
 
581
- - 🎸 add run all buttons in addon ([94ac2d3](https://github.com/wKich/creevey/commit/94ac2d3c6c72ec9a537b974294235f4bfdbf5a69))
564
+ - 🎸 allow define custom selenoid images and skip pull step
565
+ - 🎸 add `waitForReady` story parameter
566
+ - 🎸 add `--extract` as faster alternative to `sb extract`
582
567
 
583
- ## [0.7.14](https://github.com/wKich/creevey/compare/v0.7.13...v0.7.14) (2021-01-01)
568
+ ### Changed
584
569
 
585
- ### Bug Fixes
570
+ - 💡 simplify configs
571
+ - 💡 move e2e test approvals to separate directory
586
572
 
587
- - 🐛 disable debug logger for storybook 5.x ([a758bab](https://github.com/wKich/creevey/commit/a758bab23ebff4d357f46087ad21a9a8005dd130))
588
- - 🐛 resolve storybook properly and wait for page load ([6888178](https://github.com/wKich/creevey/commit/6888178a3ca2ee2c22ef69fc633564154a256e55))
573
+ ### Fixed
589
574
 
590
- ### Performance Improvements
575
+ - 🐛 don't show run button in a report
591
576
 
592
- - ⚡️ exclude fork ts checker plugin for webpack ([cebc0be](https://github.com/wKich/creevey/commit/cebc0be6d42148fe9be859ef49364f0abe8f883f))
577
+ ### Miscellaneous
593
578
 
594
- ## [0.7.13](https://github.com/wKich/creevey/compare/v0.7.12...v0.7.13) (2020-12-30)
579
+ - 🤖 update deps
595
580
 
596
- ### Bug Fixes
581
+ ### Testing
597
582
 
598
- - 🐛 images preview urls ([d2a7853](https://github.com/wKich/creevey/commit/d2a7853b2761a3c52a05aee2401b0f54b0e97832))
583
+ - 💍 fix e2e tests, make `npm i` before install creevey
599
584
 
600
- ### Features
585
+ ### Ci
601
586
 
602
- - 🎸 start creevey server early and wait for build ([e325d59](https://github.com/wKich/creevey/commit/e325d59b651ef3a52a2284aeb6b9de4eca4a3366))
587
+ - 🎡 remove e2e tests from any CI except github
588
+ ## [0.7.25] - 2021-03-18
603
589
 
604
- ### Performance Improvements
590
+ ### Added
605
591
 
606
- - ⚡️ speedup resolving storybook url ([4c24c88](https://github.com/wKich/creevey/commit/4c24c88646d1f4711fe24e9e8445ead06238756f))
592
+ - 🎸 add sidebar keyboard handlers
593
+ - 🎸 add support storybook 6.2
594
+ - 🎸 support capture mdx stories
607
595
 
608
- ## [0.7.12](https://github.com/wKich/creevey/compare/v0.7.11...v0.7.12) (2020-12-24)
596
+ ### Changed
609
597
 
610
- ### Bug Fixes
598
+ - 💡 move all webpack-relative code to separate dir
611
599
 
612
- - 🐛 set timeout after open for ie11 ([6fda74d](https://github.com/wKich/creevey/commit/6fda74d9fcf7cc1e6f27f0d5814798bef7f5503d))
600
+ ### Documentation
613
601
 
614
- ## [0.7.11](https://github.com/wKich/creevey/compare/v0.7.10...v0.7.11) (2020-12-21)
602
+ - ✏️ move examples to separate repo
615
603
 
616
- ### Bug Fixes
604
+ ### Fixed
617
605
 
618
- - 🐛 addon result page scroll height ([cc12cd6](https://github.com/wKich/creevey/commit/cc12cd66c69b4571015ede6492cd4b5f978f9c34))
619
- - 🐛 exclude docgen plugin for webpack bundle ([f11210a](https://github.com/wKich/creevey/commit/f11210aec9352c695eccc72202daff640a4617cb))
620
- - 🐛 webpack mdx regexp, again ([0cadad1](https://github.com/wKich/creevey/commit/0cadad15f4217312fdb3db6a3bf7ee4f2cad5bed))
621
- - 🐛 webpack mdx rule ([4e1b002](https://github.com/wKich/creevey/commit/4e1b002c378d5de7134e392495953c53537cfa5e))
606
+ - 🐛 hover shouldn't override focus styles
607
+ - 🐛 test status icons align
608
+ - 🐛 exclude all addons from nodejs storybook bundle
622
609
 
623
- ### Features
610
+ ### Miscellaneous
624
611
 
625
- - 🎸 store tests view in browser history ([868a6b0](https://github.com/wKich/creevey/commit/868a6b0e1fcd906e6441fe54d6ffeccf4ed75019))
612
+ - 🤖 fix eslint errors and warnings
613
+ - **deps:** Bump react-dev-utils from 11.0.3 to 11.0.4
614
+ - 🤖 update deps
615
+ - 🤖 update deps
626
616
 
627
- ## [0.7.10](https://github.com/wKich/creevey/compare/v0.7.9...v0.7.10) (2020-12-15)
617
+ ### Testing
628
618
 
629
- ### Bug Fixes
619
+ - 💍 fix e2e test after small refactor
630
620
 
631
- - 🐛 switch stories error ([c39ef7e](https://github.com/wKich/creevey/commit/c39ef7edf565f8c983641d89d30b5c552d0b08c7))
621
+ ### Ci
632
622
 
633
- ## [0.7.9](https://github.com/wKich/creevey/compare/v0.7.8...v0.7.9) (2020-12-14)
623
+ - 🎡 fix reports for gitlab
624
+ - 🎡 fix gitlab yaml config
625
+ - 🎡 gitlab fix report view bundle
626
+ - 🎡 fix gitlab report view
627
+ - 🎡 fix report view port and circle ci reports
628
+ - 🎡 fix circle ci attach workspace after checkout
629
+ - 🎡 make tests requires build
630
+ - 🎡 fix gitlab requirements for jobs
631
+ - 🎡 fix circle ci report view
632
+ ## [0.7.24] - 2021-03-10
634
633
 
635
- ### Features
634
+ ### Added
636
635
 
637
- - 🎸 add support docker auth config for private registry ([e157c39](https://github.com/wKich/creevey/commit/e157c39de3f13ae4026a26579590ab181665fcb7))
636
+ - 🎸 new panels in addon
637
+ - Allow to ignore elements in screenshot
638
638
 
639
- ## [0.7.8](https://github.com/wKich/creevey/compare/v0.7.7...v0.7.8) (2020-12-14)
639
+ ### Changed
640
640
 
641
- ### Bug Fixes
641
+ - 💡 delete unused code from old addon
642
+ - 💡 replace addon components, use ADDON_ID
643
+ - 💡 simplify addon manager method
644
+ - Use mocha beforeEach hook for cleaning
645
+ - Keep ignored elements interactable between screenshots
646
+ - Move dom manimulations to the decorator
647
+ - 💡 api: get browsers without status
642
648
 
643
- - 🐛 resolve url with docker ([ee5b2f7](https://github.com/wKich/creevey/commit/ee5b2f73c6c7bdbbad7574e927306b432295f241))
649
+ ### Documentation
644
650
 
645
- ## [0.7.7](https://github.com/wKich/creevey/compare/v0.7.6...v0.7.7) (2020-12-14)
651
+ - Add example for ignoreElements option
652
+ - Update TODO
653
+ - ✏️ update todos
646
654
 
647
- ### Bug Fixes
655
+ ### Fixed
648
656
 
649
- - 🐛 handle getaddrinfo error ([b3567fe](https://github.com/wKich/creevey/commit/b3567fe71aca2b9342fe51561cdf60a2936bed0d))
657
+ - 🐛 websocket invalid frame error
658
+ - 🐛 some security issues
659
+ - Upgrade tslib from 2.0.3 to 2.1.0
660
+ - Upgrade zone.js from 0.11.3 to 0.11.4
650
661
 
651
- ## [0.7.6](https://github.com/wKich/creevey/compare/v0.7.5...v0.7.6) (2020-12-14)
662
+ ### Miscellaneous
652
663
 
653
- ### Bug Fixes
664
+ - 🤖 update deps
665
+ - 🤖 delete space if test status is unknown
666
+ - 🤖 review fixes
667
+ - 🤖 update deps
668
+ - 🤖 update creevey in examples
669
+ - 🤖 update deps
670
+ - Change method of ignoring elements
671
+ - Improve ignore styles
672
+ - Ensure ignore styles removal
673
+ - 🤖 update deps
674
+ - 🤖 update deps for examples
675
+ - **deps:** Bump ini from 1.3.5 to 1.3.8 in /examples/angular
676
+ - 🤖 update deps
677
+ - 🤖 update husky configs
678
+ - **deps:** Bump pug-code-gen from 3.0.1 to 3.0.2 in /examples/vue
679
+ - **deps:** Bump pug from 3.0.0 to 3.0.2 in /examples/vue
680
+ - 🤖 update deps
681
+ - **deps:** Bump elliptic from 6.5.3 to 6.5.4
682
+ - **deps:** Bump elliptic from 6.5.3 to 6.5.4 in /examples/vue
683
+ - **deps:** Bump elliptic from 6.5.3 to 6.5.4 in /examples/svelte
684
+ - **deps:** Bump elliptic from 6.5.3 to 6.5.4 in /examples/react
685
+ - **deps:** Bump elliptic from 6.5.3 to 6.5.4 in /examples/angular
654
686
 
655
- - 🐛 don't check `isInDocker` for docker internal host ([5a81138](https://github.com/wKich/creevey/commit/5a8113891940fb0b7d700e0aaa8ebdcca76d886c))
687
+ ### Styling
656
688
 
657
- ## [0.7.5](https://github.com/wKich/creevey/compare/v0.7.4...v0.7.5) (2020-12-14)
689
+ - Fix formatting
658
690
 
659
- ### Bug Fixes
691
+ ### Testing
660
692
 
661
- - 🐛 creevey-loader support private class members ([223e3e3](https://github.com/wKich/creevey/commit/223e3e37d2aae7a96a28846abf840d5321b0f96d))
662
- - 🐛 download selenoid binary ([5e72957](https://github.com/wKich/creevey/commit/5e729571391e7082a0a0fe02dcae6d12e41622f2))
663
- - 🐛 webpack and update options ([712c911](https://github.com/wKich/creevey/commit/712c91184da6c82989d923b1d90e9d70b13d347c))
693
+ - 💍 make e2e tests more presistent
694
+ - 💍 setup gitlab ui tests
695
+ - 💍 improve gitlab ui test config
696
+ - 💍 fix gitlab gridurls config
697
+ - 💍 update screenshots
698
+ - Add screenshots with ignored elements
699
+ - Update screenshots with ignored elements
700
+ - 💍 fix a couple of screenshot tests
701
+ - 💍 make e2e be less depended on env
702
+ ## [0.7.23] - 2021-01-25
664
703
 
665
- ### Features
704
+ ### Fixed
666
705
 
667
- - 🎸 add mvp to allow run selenoid without docker ([c161e0a](https://github.com/wKich/creevey/commit/c161e0a807c26e7643bd7c4969bae8b954bcffd8))
668
- - 🎸 link to current story ([8a3c043](https://github.com/wKich/creevey/commit/8a3c043be5f05e77044b1ff1ce5707c43fc43a36))
706
+ - 🐛 use shelljs to run selenoid binary
707
+ ## [0.7.22] - 2021-01-25
669
708
 
670
- ## [0.7.4](https://github.com/wKich/creevey/compare/v0.7.3...v0.7.4) (2020-12-11)
709
+ ### Fixed
671
710
 
672
- ### Bug Fixes
711
+ - Run standalone browsers and selenoid
712
+ - Selenium url path for standalone run
713
+ ## [0.7.21] - 2021-01-22
673
714
 
674
- - 🐛 change cache dir, some issues on windows ([c2e4f34](https://github.com/wKich/creevey/commit/c2e4f34e3ea70c85c60d1e37b20b6f6ff324dda7))
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))
715
+ ### Added
677
716
 
678
- ## [0.7.3](https://github.com/wKich/creevey/compare/v0.7.2...v0.7.3) (2020-12-02)
717
+ - 🎸 improve creevey-loader, cut-off side-effects
718
+ - 🎸 save webpack stats.json on debug
679
719
 
680
- ### Features
720
+ ### Fixed
681
721
 
682
- - 🎸 apply disable animation styles in storybook decorator ([6dac967](https://github.com/wKich/creevey/commit/6dac96768f6b7953c56e22239a2adcf686f9aabb))
683
- - 🎸 remove skbkontur ip address resolver ([91e17f4](https://github.com/wKich/creevey/commit/91e17f4f0e87b553bad367eda10ed30a1246be9e))
722
+ - 🐛 store stats.json into report dir
723
+ - 🐛 make report from static files works from creevey repo
724
+ - 🐛 create protocol relative image url
725
+ - 🐛 protocol relative resolving
726
+ - 🐛 encode only path tokens for url
727
+ - 🐛 get image url with empty port number
684
728
 
685
- ## [0.7.2](https://github.com/wKich/creevey/compare/v0.7.1...v0.7.2) (2020-11-28)
729
+ ### Miscellaneous
686
730
 
687
- ### Bug Fixes
731
+ - **deps-dev:** Bump immer from 8.0.0 to 8.0.1
732
+ - **deps:** Bump socket.io from 2.3.0 to 2.4.1 in /examples/angular
733
+ - 🤖 update deps
688
734
 
689
- - 🐛 invalid websocket frame ([6796625](https://github.com/wKich/creevey/commit/679662569e985b600eb4eb6779551a4bf929f54f))
735
+ ### Testing
690
736
 
691
- ### Features
737
+ - 💍 add e2e bundle compare
738
+ ## [0.7.20] - 2021-01-15
692
739
 
693
- - 🎸 improve scale handling for image views ([454ee85](https://github.com/wKich/creevey/commit/454ee85ad4b6a608bb999b815fb4192c2a661329))
740
+ ### Fixed
694
741
 
695
- ## [0.7.1](https://github.com/wKich/creevey/compare/v0.7.0...v0.7.1) (2020-11-24)
742
+ - 🐛 apply iframe after custom resolver
743
+ ## [0.7.19] - 2021-01-14
696
744
 
697
- ### Bug Fixes
745
+ ### Added
698
746
 
699
- - 🐛 don't cutoff named exports ([cd09dd4](https://github.com/wKich/creevey/commit/cd09dd47070e4584429905f78baee82c65a82a47))
747
+ - Allow to set storybook's globals
700
748
 
701
- ### Features
749
+ ### Changed
702
750
 
703
- - 🎸 improve side-by-side view for wide images ([3d6a147](https://github.com/wKich/creevey/commit/3d6a1477804bb900d806cbac26d884d26bb28e55))
704
- - 🎸 side-by-side view supports layout resizing ([123e7c7](https://github.com/wKich/creevey/commit/123e7c78708bf2e85b1649c85d2a264a9e4594d8))
751
+ - Mark the feature as experimental
705
752
 
706
- # [0.7.0](https://github.com/wKich/creevey/compare/v0.7.0-beta.21...v0.7.0) (2020-11-09)
753
+ ### Fixed
707
754
 
708
- ### Bug Fixes
755
+ - 🐛 document unloaded while waiting for result
756
+ - 🐛 document unloaded error, again
757
+ - 🐛 properly output unnecessary images
709
758
 
710
- - 🐛 get channel before it created ([b3e89ae](https://github.com/wKich/creevey/commit/b3e89aef18baca926d1684e6734265a03cbf00ab))
711
- - 🐛 toggle theme sticky z-index ([dcdbb77](https://github.com/wKich/creevey/commit/dcdbb77e63b1f67025c897610c2df74b8d98abbd))
759
+ ### Miscellaneous
712
760
 
713
- ### Features
761
+ - Check storybook's version
762
+ ## [0.7.18] - 2021-01-08
714
763
 
715
- - 🎸 Dark theme in client ([c36aa4b](https://github.com/wKich/creevey/commit/c36aa4b59ce1661fa7cfbef72a7db1354e8ee0eb))
764
+ ### Fixed
716
765
 
717
- # [0.7.0-beta.21](https://github.com/wKich/creevey/compare/v0.7.0-beta.20...v0.7.0-beta.21) (2020-11-02)
766
+ - 🐛 copy-paste missing function from storybook
718
767
 
719
- ### Bug Fixes
768
+ ### Miscellaneous
720
769
 
721
- - 🐛 wait for fonts loaded ([78c2a74](https://github.com/wKich/creevey/commit/78c2a74782ac9bdb10d7c9c2039a332218a217cd))
770
+ - Add funding.yml
771
+ ## [0.7.17] - 2021-01-07
722
772
 
723
- # [0.7.0-beta.20](https://github.com/wKich/creevey/compare/v0.7.0-beta.19...v0.7.0-beta.20) (2020-10-30)
773
+ ### Fixed
724
774
 
725
- ### Bug Fixes
775
+ - 🐛 addon erases global parameters in storybook
776
+ ## [0.7.16] - 2021-01-06
726
777
 
727
- - 🐛 don't cutoff `name` prop from stories params ([ca1a19f](https://github.com/wKich/creevey/commit/ca1a19f75f5a31974a7fb930d871c53ce0d77567))
778
+ ### Fixed
728
779
 
729
- # [0.7.0-beta.19](https://github.com/wKich/creevey/compare/v0.7.0-beta.18...v0.7.0-beta.19) (2020-10-30)
780
+ - 🐛 spinner position in sidebar
781
+ - 🐛 resolve url for ie11
782
+ ## [0.7.15] - 2021-01-06
730
783
 
731
- ### Bug Fixes
784
+ ### Added
732
785
 
733
- - 🐛 macos docker netwrok internal host address ([90bf76d](https://github.com/wKich/creevey/commit/90bf76d8986d07626890e03b2097c0ef3ebd3f27))
786
+ - 🎸 add run all buttons in addon
734
787
 
735
- # [0.7.0-beta.18](https://github.com/wKich/creevey/compare/v0.7.0-beta.17...v0.7.0-beta.18) (2020-10-29)
788
+ ### Changed
736
789
 
737
- ### Bug Fixes
790
+ - 💡 tune a little addon tabs
791
+ - Remove unused export
792
+ - 💡 addon
738
793
 
739
- - 🐛 cutoff parameters in new declarative preview config ([a86c51a](https://github.com/wKich/creevey/commit/a86c51ae80caa1f3e7534a044e1427dcb43e9792))
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))
794
+ ### Documentation
743
795
 
744
- ### Features
796
+ - ✏️ update authors
745
797
 
746
- - 🎸 change default capture element to `#root` ([8d2c7b8](https://github.com/wKich/creevey/commit/8d2c7b8a5ddf9e3f64102c19aba1f1a7f933d8ad))
798
+ ### Fixed
747
799
 
748
- # [0.7.0-beta.17](https://github.com/wKich/creevey/compare/v0.7.0-beta.16...v0.7.0-beta.17) (2020-10-16)
800
+ - 🐛 trim story kinds
801
+ - 🐛 addon show test name in tabs panel
749
802
 
750
- ### Bug Fixes
803
+ ### Miscellaneous
751
804
 
752
- - 🐛 filter tests without statuses ([4c1d25d](https://github.com/wKich/creevey/commit/4c1d25de232816b4d99853fbaa2661a46996effc))
805
+ - 🤖 fixes after review
806
+ - 🤖 add disabled state to run buttons in addon
807
+ - 🤖 update deps
753
808
 
754
- # [0.7.0-beta.16](https://github.com/wKich/creevey/compare/v0.7.0-beta.15...v0.7.0-beta.16) (2020-10-16)
809
+ ### Styling
755
810
 
756
- ### Bug Fixes
811
+ - 💄 change a little some comments
812
+ ## [0.7.14] - 2021-01-01
757
813
 
758
- - 🐛 make sidebar a little narrower ([65c9bf7](https://github.com/wKich/creevey/commit/65c9bf7947cad71c07df5e7d5668a1b73ecfe395))
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))
814
+ ### Changed
761
815
 
762
- ### Features
816
+ - ⚡️ exclude fork ts checker plugin for webpack
763
817
 
764
- - 🎸 sideBar on storybook components ([2866c8e](https://github.com/wKich/creevey/commit/2866c8ebf7e57d460bf5254a93573c048351e1fe))
818
+ ### Fixed
765
819
 
766
- # [0.7.0-beta.15](https://github.com/wKich/creevey/compare/v0.7.0-beta.14...v0.7.0-beta.15) (2020-10-13)
820
+ - 🐛 disable debug logger for storybook 5.x
821
+ - 🐛 resolve storybook properly and wait for page load
822
+ ## [0.7.13] - 2020-12-30
767
823
 
768
- ### Bug Fixes
824
+ ### Added
769
825
 
770
- - 🐛 don't output message about unnecessary image ([83c1463](https://github.com/wKich/creevey/commit/83c14635e667d39181cbc1ddc494bac026641a2d))
771
- - 🐛 improve `getImageUrl` for circle ci at least ([7537ce9](https://github.com/wKich/creevey/commit/7537ce9efa7a0ac3bcf2597a79126d8cd5312d59))
826
+ - 🎸 start creevey server early and wait for build
772
827
 
773
- # [0.7.0-beta.14](https://github.com/wKich/creevey/compare/v0.7.0-beta.13...v0.7.0-beta.14) (2020-10-13)
828
+ ### Changed
774
829
 
775
- ### Bug Fixes
830
+ - ⚡️ speedup resolving storybook url
776
831
 
777
- - 🐛 fallback report if api don't available ([618682f](https://github.com/wKich/creevey/commit/618682f289cb316dbd3b8b78d9d96ddd9e2c8681))
832
+ ### Fixed
778
833
 
779
- ### Features
834
+ - 🐛 images preview urls
835
+ ## [0.7.12] - 2020-12-24
780
836
 
781
- - 🎸 output unnecessary images on full run ([b6dbb02](https://github.com/wKich/creevey/commit/b6dbb02d5f6ef5766f1f11c0d50d7f5b4ad17b79))
782
- - 🎸 remove `useDocker`. Creevey run docker by default ([ccbbb43](https://github.com/wKich/creevey/commit/ccbbb43f6fadd88bfcb21b266f08c45d39389c79))
837
+ ### Fixed
783
838
 
784
- # [0.7.0-beta.13](https://github.com/wKich/creevey/compare/v0.7.0-beta.12...v0.7.0-beta.13) (2020-10-09)
839
+ - 🐛 set timeout after open for ie11
785
840
 
786
- ### Bug Fixes
841
+ ### Miscellaneous
787
842
 
788
- - 🐛 add stories in addon ([50d7279](https://github.com/wKich/creevey/commit/50d7279f3daa706da204682edfa69e4bc5dad43b))
789
- - 🐛 don't crash on storybook reload error ([b393926](https://github.com/wKich/creevey/commit/b393926eda582094973e18b037f95af4530f5b21))
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))
843
+ - **deps:** Bump node-notifier from 8.0.0 to 8.0.1 in /examples/react
844
+ ## [0.7.11] - 2020-12-21
792
845
 
793
- # [0.7.0-beta.12](https://github.com/wKich/creevey/compare/v0.7.0-beta.11...v0.7.0-beta.12) (2020-10-05)
846
+ ### Added
794
847
 
795
- ### Bug Fixes
848
+ - 🎸 store tests view in browser history
796
849
 
797
- - 🐛 hmr tests on windows ([7496a72](https://github.com/wKich/creevey/commit/7496a7244648531c79dff5b9b54f01bb375607fe))
798
- - 🐛 report static bundle, add polyfiils ([dfb5f51](https://github.com/wKich/creevey/commit/dfb5f515344ae9b91f5070f002a914cbed835fd6))
850
+ ### Fixed
799
851
 
800
- # [0.7.0-beta.11](https://github.com/wKich/creevey/compare/v0.7.0-beta.10...v0.7.0-beta.11) (2020-10-05)
852
+ - 🐛 webpack mdx rule
853
+ - 🐛 webpack mdx regexp, again
854
+ - 🐛 exclude docgen plugin for webpack bundle
855
+ - 🐛 addon result page scroll height
801
856
 
802
- ### Bug Fixes
857
+ ### Miscellaneous
803
858
 
804
- - 🐛 build addon to support ie11 ([4327d6d](https://github.com/wKich/creevey/commit/4327d6dfe9471adecaf6cba7ae6b36312d9fcf5e))
805
- - 🐛 output readable error message on switch story ([aa369cb](https://github.com/wKich/creevey/commit/aa369cba3f6acb472d11f403f1081ea6c400f367))
806
- - 🐛 run tests on circle ci ([a8afef5](https://github.com/wKich/creevey/commit/a8afef582235c37722a60f9596f0e1cbb61a1da0))
859
+ - 🤖 update deps
860
+ ## [0.7.10] - 2020-12-15
807
861
 
808
- # [0.7.0-beta.10](https://github.com/wKich/creevey/compare/v0.7.0-beta.9...v0.7.0-beta.10) (2020-10-02)
862
+ ### Fixed
809
863
 
810
- ### Bug Fixes
864
+ - 🐛 switch stories error
865
+ ## [0.7.9] - 2020-12-14
811
866
 
812
- - 🐛 some generated modules are excluded as external ([9d8d04b](https://github.com/wKich/creevey/commit/9d8d04ba6b49a6fc216f661790931bb010284fef))
867
+ ### Added
813
868
 
814
- # [0.7.0-beta.9](https://github.com/wKich/creevey/compare/v0.7.0-beta.8...v0.7.0-beta.9) (2020-10-02)
869
+ - 🎸 add support docker auth config for private registry
815
870
 
816
- ### Bug Fixes
871
+ ### Ci
817
872
 
818
- - 🐛 some ui markup, change placeholder message ([b3a6bd6](https://github.com/wKich/creevey/commit/b3a6bd61c1a1d1d52a92a3513545a00962aa0159))
873
+ - 🎡 add chromatic for testing purpose
874
+ - 🎡 fix chromatic
875
+ - 🎡 fix chromatic lfs
876
+ - 🎡 fix chromatic checkout action
877
+ ## [0.7.8] - 2020-12-14
819
878
 
820
- # [0.7.0-beta.8](https://github.com/wKich/creevey/compare/v0.7.0-beta.7...v0.7.0-beta.8) (2020-10-02)
879
+ ### Fixed
821
880
 
822
- ### Bug Fixes
881
+ - 🐛 resolve url with docker
882
+ ## [0.7.7] - 2020-12-14
823
883
 
824
- - 🐛 storybook override creevey story parameters ([bd17edf](https://github.com/wKich/creevey/commit/bd17edfcbc5a7dc879c6bf08dca41fec4f207f15))
884
+ ### Fixed
825
885
 
826
- # [0.7.0-beta.7](https://github.com/wKich/creevey/compare/v0.7.0-beta.6...v0.7.0-beta.7) (2020-10-01)
886
+ - 🐛 handle getaddrinfo error
887
+ ## [0.7.6] - 2020-12-14
827
888
 
828
- ### Features
889
+ ### Documentation
829
890
 
830
- - 🎸 support declarative decorators format ([3e22854](https://github.com/wKich/creevey/commit/3e22854e3bbefc2bef9c4f7fde270620e9919859))
891
+ - ✏️ update todos
831
892
 
832
- # [0.7.0-beta.6](https://github.com/wKich/creevey/compare/v0.7.0-beta.5...v0.7.0-beta.6) (2020-09-29)
893
+ ### Fixed
833
894
 
834
- ### Bug Fixes
895
+ - 🐛 don't check `isInDocker` for docker internal host
896
+ ## [0.7.5] - 2020-12-14
835
897
 
836
- - 🐛 loader handle `export default {} as Meta` ([2dcca94](https://github.com/wKich/creevey/commit/2dcca946d9f94f2e1158974c6e9a22028b49492c))
898
+ ### Added
837
899
 
838
- # [0.7.0-beta.5](https://github.com/wKich/creevey/compare/v0.7.0-beta.4...v0.7.0-beta.5) (2020-09-28)
900
+ - 🎸 link to current story
839
901
 
840
- ### Bug Fixes
902
+ ### Changed
841
903
 
842
- - 🐛 eslint errors ([ffdc73d](https://github.com/wKich/creevey/commit/ffdc73d90f29b8452e63f0817300de7e925d0785))
843
- - 🐛 remove old selenoid container on start ([715f04a](https://github.com/wKich/creevey/commit/715f04a228198e5369653199f983c21eca88c194))
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))
904
+ - 💡 fix warn
846
905
 
847
- ### Features
906
+ ### Documentation
848
907
 
849
- - 🎸 Add run button in addon ([8b3596c](https://github.com/wKich/creevey/commit/8b3596cc05ff8dcfa987f816db0b02d5097517f6))
850
- - 🎸 show status in sidebar ([c28c2da](https://github.com/wKich/creevey/commit/c28c2daab6726735f05ab3d30d4c4662bfb8245f))
851
- - 🎸 Storybook addon ([7c47c4b](https://github.com/wKich/creevey/commit/7c47c4bc4432ef55364824cee2c1b42430e02a33))
908
+ - ✏️ install storybook and creevey into svelte example
909
+ - ✏️ split docs in a few files
852
910
 
853
- # [0.7.0-beta.4](https://github.com/wKich/creevey/compare/v0.7.0-beta.3...v0.7.0-beta.4) (2020-09-26)
911
+ ### Fixed
854
912
 
855
- ### Bug Fixes
913
+ - 🐛 download selenoid binary
914
+ - 🐛 webpack and update options
915
+ - 🐛 creevey-loader support private class members
856
916
 
857
- - 🐛 correctly load report from previous run ([e680e24](https://github.com/wKich/creevey/commit/e680e244728fa7347eac194c88145dec2d0b87a0))
917
+ ### Miscellaneous
858
918
 
859
- # [0.7.0-beta.3](https://github.com/wKich/creevey/compare/v0.7.0-beta.2...v0.7.0-beta.3) (2020-09-25)
919
+ - **deps:** Bump ini from 1.3.5 to 1.3.7 in /examples/vue
920
+ - **deps:** Bump ini from 1.3.5 to 1.3.7 in /examples/react
921
+ - 🤖 update deps
922
+ - 🤖 update react to 17.0
923
+ - 🤖 update deps for angular example
924
+ - 🤖 update storybook in angular example
925
+ - 🤖 update deps for vue example
860
926
 
861
- ### Bug Fixes
927
+ ### Testing
862
928
 
863
- - 🐛 resolve storybook url on windows with multiple networks ([eb1dcf3](https://github.com/wKich/creevey/commit/eb1dcf3df3ef1c084165ad51e41cade2190c3935))
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))
929
+ - 💍 add more image views tests
930
+ ## [0.7.4] - 2020-12-11
867
931
 
868
- ### Features
932
+ ### Added
869
933
 
870
- - 🎸 add support docker ([c5f7976](https://github.com/wKich/creevey/commit/c5f7976f741e3a7cf1d06615c8013475e4677809))
934
+ - 🎸 add mvp to allow run selenoid without docker
871
935
 
872
- # [0.7.0-beta.2](https://github.com/wKich/creevey/compare/v0.7.0-beta.1...v0.7.0-beta.2) (2020-09-10)
936
+ ### Changed
873
937
 
874
- ### Bug Fixes
938
+ - 💡 fix promise types
875
939
 
876
- - 🐛 exit master process with after hook ([e90adfb](https://github.com/wKich/creevey/commit/e90adfb603a5b48a0e085843df03b074923201d5))
940
+ ### Documentation
877
941
 
878
- # [0.7.0-beta.1](https://github.com/wKich/creevey/compare/v0.7.0-beta.0...v0.7.0-beta.1) (2020-09-08)
942
+ - ✏️ added svelte example app
879
943
 
880
- ### Bug Fixes
944
+ ### Fixed
881
945
 
882
- - 🐛 collect all errors ([66146d7](https://github.com/wKich/creevey/commit/66146d7372f46b71055ad7e64f945463b1a21184))
883
- - 🐛 don't show error if image has been approved ([6b74e1d](https://github.com/wKich/creevey/commit/6b74e1d42d8d2297e5187670f9e05be337e20348))
884
- - 🐛 image preview height ([afe125d](https://github.com/wKich/creevey/commit/afe125d535be85bc899eaa03683924c3c0c5a856))
946
+ - 🐛 merge skip options properly
947
+ - 🐛 change cache dir, some issues on windows
948
+ - 🐛 resolve grid url without docker
885
949
 
886
- ### Features
950
+ ### Miscellaneous
887
951
 
888
- - 🎸 add before/after hooks ([32bc397](https://github.com/wKich/creevey/commit/32bc397e2c0e37d947df9d34a62aa356aa88ad41))
889
- - 🎸 show error images in imagePreview ([5d2037a](https://github.com/wKich/creevey/commit/5d2037aa86a8a700a6a82e88f980eed5fba873a9))
952
+ - **deps:** Bump highlight.js from 10.4.0 to 10.4.1 in /examples/react
953
+ - **deps:** Bump highlight.js in /examples/angular
954
+ - 🤖 bump selfsigned to 1.10.8
955
+ - 🤖 bump node-forge to 0.10.0
956
+ - **deps:** Bump highlight.js from 10.4.0 to 10.4.1
957
+ - **deps:** Bump ini from 1.3.5 to 1.3.7
890
958
 
891
- # [0.7.0-beta.0](https://github.com/wKich/creevey/compare/v0.6.4...v0.7.0-beta.0) (2020-08-04)
959
+ ### Ci
892
960
 
893
- ### Bug Fixes
961
+ - 🎡 update circleci and gitlab configs
962
+ ## [0.7.3] - 2020-12-02
894
963
 
895
- - 🐛 gracefully end worker processes ([e2d2548](https://github.com/wKich/creevey/commit/e2d254882ca8fa993d20725dd3132c6069f185f5))
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))
964
+ ### Added
898
965
 
899
- ### Features
966
+ - 🎸 remove skbkontur ip address resolver
967
+ - 🎸 apply disable animation styles in storybook decorator
900
968
 
901
- - 🎸 support storybook v6.x ([9bb7397](https://github.com/wKich/creevey/commit/9bb7397b3e0dbc88f7f212aab4ee807ae25e8d64))
969
+ ### Documentation
902
970
 
903
- ## [0.6.4](https://github.com/wKich/creevey/compare/v0.6.3...v0.6.4) (2020-07-27)
971
+ - ✏️ rewrite readme a little
972
+ - ✏️ update readme
973
+ - ✏️ update readme
974
+ - ✏️ add emoji
904
975
 
905
- ### Bug Fixes
976
+ ### Miscellaneous
906
977
 
907
- - 🐛 hot-reloading issue, add readme notes ([5497b71](https://github.com/wKich/creevey/commit/5497b710053285a4f0b4cad075427b2ee7287be2))
908
- - 🐛 react example loadash vulnerability ([e188d1d](https://github.com/wKich/creevey/commit/e188d1d4e43ddd4df0a00de54f37d61f3e2aecc0))
909
- - 🐛 storybook bundle depends on core-js, regenerator-runtime ([ce596b9](https://github.com/wKich/creevey/commit/ce596b91665d74f68b0442d767d8e81a48e034c0))
910
- - 🐛 watch stories on windows ([ce599cc](https://github.com/wKich/creevey/commit/ce599ccc0e9eaa31e01987297e1f5c6a899a56ac))
978
+ - Update creevey demo video
979
+ ## [0.7.2] - 2020-11-28
911
980
 
912
- ### Features
981
+ ### Added
913
982
 
914
- - 🎸 add disabled state to start button ([260193a](https://github.com/wKich/creevey/commit/260193a49f67e500db771688aae95e2fc1e4694b))
915
- - 🎸 Save view mode ([ea461cc](https://github.com/wKich/creevey/commit/ea461ccb26c5888a1dff54077cac264f2ae4ab27))
983
+ - 🎸 improve scale handling for image views
916
984
 
917
- ## [0.6.3](https://github.com/wKich/creevey/compare/v0.6.2...v0.6.3) (2020-06-16)
985
+ ### Fixed
918
986
 
919
- ### Bug Fixes
987
+ - 🐛 invalid websocket frame
920
988
 
921
- - 🐛 test reloading dont work well ([3049dfd](https://github.com/wKich/creevey/commit/3049dfdcda6bc7ae2c85fb6afbfa89cb0f8a1aeb))
989
+ ### Miscellaneous
922
990
 
923
- ## [0.6.2](https://github.com/wKich/creevey/compare/v0.6.1...v0.6.2) (2020-06-10)
991
+ - 🤖 update deps
924
992
 
925
- ### Bug Fixes
993
+ ### Testing
926
994
 
927
- - 🐛 disable hot-reloading without `--ui` option ([3ea0792](https://github.com/wKich/creevey/commit/3ea0792a6612a01cb62a4650414b6aa26c138665))
995
+ - 💍 add BlendView tests
996
+ - 💍 improve e2e tests
997
+ ## [0.7.1] - 2020-11-24
928
998
 
929
- ## [0.6.1](https://github.com/wKich/creevey/compare/v0.6.0...v0.6.1) (2020-06-10)
999
+ ### Added
930
1000
 
931
- ### Bug Fixes
1001
+ - 🎸 improve side-by-side view for wide images
1002
+ - 🎸 side-by-side view supports layout resizing
932
1003
 
933
- - 🐛 ERR_IPC_CHANNEL_CLOSED finally ([965e6de](https://github.com/wKich/creevey/commit/965e6de21acd4d77a9971f072d40f7c42d900bab))
934
- - 🐛 mocha 7.2 multiple runs, remove old hacks ([0ca08be](https://github.com/wKich/creevey/commit/0ca08bebe436ebc91c0fbc501850339dea5fe0e2))
1004
+ ### Documentation
935
1005
 
936
- # [0.6.0](https://github.com/wKich/creevey/compare/v0.6.0-beta.8...v0.6.0) (2020-06-09)
1006
+ - ✏️ update readme
1007
+ - ✏️ add abbyy logo
1008
+ - ✏️ fix logo images
937
1009
 
938
- ### Bug Fixes
1010
+ ### Fixed
939
1011
 
940
- - 🐛 kind-of@6.0.2 vulnerability ([489783e](https://github.com/wKich/creevey/commit/489783ee489c5d4f9d0ca5de87dedb6be6e78e1e))
941
- - 🐛 loader: remove vars in desctructuring ([8567fd6](https://github.com/wKich/creevey/commit/8567fd60e3ba67572e45f22629f639f6f17647b3))
1012
+ - 🐛 don't cutoff named exports
942
1013
 
943
- # [0.6.0-beta.8](https://github.com/wKich/creevey/compare/v0.6.0-beta.7...v0.6.0-beta.8) (2020-06-04)
1014
+ ### Miscellaneous
944
1015
 
945
- ### Bug Fixes
1016
+ - 🤖 update deps
1017
+ - 🤖 update deps and storybook to 6.1
1018
+ - 🤖 fix types
946
1019
 
947
- - 🐛 output warning `Did you call 'load' twice` on reload ([1b2bbeb](https://github.com/wKich/creevey/commit/1b2bbeb8c7f8052514feab767b599b66fec3adf7))
1020
+ ### Styling
948
1021
 
949
- # [0.6.0-beta.7](https://github.com/wKich/creevey/compare/v0.6.0-beta.6...v0.6.0-beta.7) (2020-06-02)
1022
+ - 💄 hotfix prettier write glob pattern
950
1023
 
951
- ### Bug Fixes
1024
+ ### Testing
952
1025
 
953
- - 🐛 webpack recursion IPC, again ([5083454](https://github.com/wKich/creevey/commit/5083454c1d330ad0abf2ac24ddeb73f1f5367f3a))
1026
+ - 💍 start adding creevey-storybook e2e tests
1027
+ - 💍 add tests for 6.1, 5.3 and 5.2 versions of storybook
1028
+ - 💍 add tests for 5.1 and 5.0 versions of storybook
1029
+ - 💍 improve performance for e2e tests
954
1030
 
955
- # [0.6.0-beta.6](https://github.com/wKich/creevey/compare/v0.6.0-beta.5...v0.6.0-beta.6) (2020-06-02)
1031
+ ### Ci
956
1032
 
957
- ### Bug Fixes
1033
+ - 🎡 improve github actions
1034
+ - 🎡 improve github actions
1035
+ ## [0.7.0] - 2020-11-09
958
1036
 
959
- - 🐛 IPC messages recursion, again ([4500e92](https://github.com/wKich/creevey/commit/4500e92525307b1966be9fbce39c7bb50b18c25b))
1037
+ ### Added
960
1038
 
961
- # [0.6.0-beta.5](https://github.com/wKich/creevey/compare/v0.6.0-beta.4...v0.6.0-beta.5) (2020-06-02)
1039
+ - 🎸 Dark theme in client
962
1040
 
963
- ### Bug Fixes
1041
+ ### Changed
964
1042
 
965
- - 🐛 webpack compiler process send messages recursion ([4fd2afe](https://github.com/wKich/creevey/commit/4fd2afeb7e2a2254eb1638f5ca2fc836550c59dd))
1043
+ - Remove comments
1044
+ - 💡 fix linter
966
1045
 
967
- # [0.6.0-beta.4](https://github.com/wKich/creevey/compare/v0.6.0-beta.3...v0.6.0-beta.4) (2020-06-02)
1046
+ ### Documentation
968
1047
 
969
- ### Bug Fixes
1048
+ - ✏️ update readme
1049
+ - ✏️ fix whisk logo
970
1050
 
971
- - 🐛 another fix to gracefully exit ([e433afd](https://github.com/wKich/creevey/commit/e433afd30b6a001c9cfcbc1d267557dd7d7f3ed3))
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))
1051
+ ### Fixed
974
1052
 
975
- ### Features
1053
+ - 🐛 get channel before it created
1054
+ - 🐛 toggle theme sticky z-index
976
1055
 
977
- - 🎸 allow use `delay` with custom tests ([7a1ab33](https://github.com/wKich/creevey/commit/7a1ab337e52577f3fc934b5edca12638a1ea8e07))
1056
+ ### Miscellaneous
978
1057
 
979
- # [0.6.0-beta.3](https://github.com/wKich/creevey/compare/v0.6.0-beta.2...v0.6.0-beta.3) (2020-05-27)
1058
+ - 🤖 add global decorator with theme
1059
+ - 🤖 main loader in dark theme
1060
+ - 🤖 use custom storybook scroll
1061
+ - 🤖 allow change theme from client
1062
+ - Fix scroll
1063
+ - Theme switcher with icons
1064
+ - Fix scroll with big image
980
1065
 
981
- ### Bug Fixes
1066
+ ### Styling
982
1067
 
983
- - 🐛 EPIPE message on exit again ([a5bb06d](https://github.com/wKich/creevey/commit/a5bb06def9bb4598ee5619ab4942936845dea44c))
984
- - 🐛 make loader be more aggressive ([78c3d53](https://github.com/wKich/creevey/commit/78c3d53d8439338e634349e9c7999f017ea1f10f))
985
- - 🐛 soft-freeze mocha version on 7.1 ([5aa3f57](https://github.com/wKich/creevey/commit/5aa3f57ea0fcf3512646a7c346b89ba4f6057767))
1068
+ - 💄 fix prettier
986
1069
 
987
- # [0.6.0-beta.2](https://github.com/wKich/creevey/compare/v0.6.0-beta.1...v0.6.0-beta.2) (2020-05-18)
1070
+ ### Testing
988
1071
 
989
- ### Bug Fixes
1072
+ - Approve images with storybook colors
1073
+ ## [0.7.0-beta.21] - 2020-11-02
990
1074
 
991
- - 🐛 correct shutdown workers ([30e7066](https://github.com/wKich/creevey/commit/30e70661b2e1c6b8aab9efbdd3af541c56e719f4))
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))
1075
+ ### Fixed
994
1076
 
995
- # [0.6.0-beta.1](https://github.com/wKich/creevey/compare/v0.6.0-beta.0...v0.6.0-beta.1) (2020-05-15)
1077
+ - 🐛 wait for fonts loaded
1078
+ ## [0.7.0-beta.20] - 2020-10-30
996
1079
 
997
- ### Bug Fixes
1080
+ ### Fixed
998
1081
 
999
- - 🐛 storybook framework detection on windows ([fb68cf1](https://github.com/wKich/creevey/commit/fb68cf168a1ad5704e2be00b456015dd2780bf0e))
1082
+ - 🐛 don't cutoff `name` prop from stories params
1083
+ ## [0.7.0-beta.19] - 2020-10-30
1000
1084
 
1001
- # [0.6.0-beta.0](https://github.com/wKich/creevey/compare/v0.5.6...v0.6.0-beta.0) (2020-05-14)
1085
+ ### Fixed
1002
1086
 
1003
- ### Bug Fixes
1087
+ - 🐛 macos docker netwrok internal host address
1088
+ ## [0.7.0-beta.18] - 2020-10-29
1004
1089
 
1005
- - 🐛 support latest selenium browser drivers ([0921aed](https://github.com/wKich/creevey/commit/0921aed898c19ddb38bd6949a6e85699dddaffd7))
1090
+ ### Added
1006
1091
 
1007
- ### Features
1092
+ - 🎸 change default capture element to `#root`
1008
1093
 
1009
- - 🎸 add creevey-loader for webpack ([c15b32d](https://github.com/wKich/creevey/commit/c15b32ddcfbdc7fc906a6a03d27539f87e620a85))
1010
- - 🎸 rework load stories process ([e47f806](https://github.com/wKich/creevey/commit/e47f8067b6a18d066f60196605666ed8db6fadf1))
1094
+ ### Documentation
1011
1095
 
1012
- ## [0.5.6](https://github.com/wKich/creevey/compare/v0.5.5...v0.5.6) (2020-05-04)
1096
+ - ✏️ update todos
1097
+ - ✏️ update angular example
1098
+ - ✏️ update react example
1099
+ - ✏️ update vue example
1013
1100
 
1014
- ### Bug Fixes
1101
+ ### Fixed
1015
1102
 
1016
- - 🐛 handle worker initiating error ([dc8a4f6](https://github.com/wKich/creevey/commit/dc8a4f616a19d70adcd288de7b5bce89e6e46315))
1103
+ - 🐛 improve creevey loader cutoff stories meta data
1104
+ - 🐛 cutoff parameters in new declarative preview config
1105
+ - 🐛 storybook framework detection
1106
+ - 🐛 reset body margin for client ui
1017
1107
 
1018
- ## [0.5.5](https://github.com/wKich/creevey/compare/v0.5.4...v0.5.5) (2020-04-21)
1108
+ ### Miscellaneous
1019
1109
 
1020
- ### Features
1110
+ - 🤖 update deps
1111
+ ## [0.7.0-beta.17] - 2020-10-16
1021
1112
 
1022
- - 🎸 add `saveReport` cli option, enabled by default ([88aa930](https://github.com/wKich/creevey/commit/88aa930dd61ce7902095a9a86cab36529b355014))
1023
- - 🎸 support .creevey config dir ([ba1c560](https://github.com/wKich/creevey/commit/ba1c5600295e5cc655370c004cf33dee4b364615))
1113
+ ### Fixed
1024
1114
 
1025
- ## [0.5.4](https://github.com/wKich/creevey/compare/v0.5.3...v0.5.4) (2020-04-04)
1115
+ - 🐛 filter tests without statuses
1116
+ ## [0.7.0-beta.16] - 2020-10-16
1026
1117
 
1027
- ### Bug Fixes
1118
+ ### Changed
1028
1119
 
1029
- - 🐛 remove new code that added by mistake ([f4cbf8c](https://github.com/wKich/creevey/commit/f4cbf8cbc5d327f321da3f3dbf6b11da0e14583e))
1120
+ - 💡 remove unused @skbkontur libraries
1121
+ - 💡 remove unused @emotion libraries
1122
+ - 💡 remove unused @skbkontur libraries
1123
+ - 💡 use data-tid, simplify story
1124
+ - 💡 move CreeveyContext from shared to web
1030
1125
 
1031
- ## [0.5.3](https://github.com/wKich/creevey/compare/v0.5.2...v0.5.3) (2020-04-04)
1126
+ ### Fixed
1032
1127
 
1033
- ### Bug Fixes
1128
+ - 🐛 watch stories in windows
1129
+ - 🐛 make sidebar a little narrower
1034
1130
 
1035
- - 🐛 precompile decorator file for ie11 target ([f4b8742](https://github.com/wKich/creevey/commit/f4b8742a8848fd2656c6cd639ef8678e0e4f35c0))
1131
+ ### Miscellaneous
1036
1132
 
1037
- ## [0.5.2](https://github.com/wKich/creevey/compare/v0.5.1...v0.5.2) (2020-03-30)
1133
+ - 🤖 update todos
1134
+ - 🤖 main loader from storybook components
1135
+ - Remove client ResultPage
1136
+ - Remove @emotion/core using
1137
+ - 🤖 main loader from storybook components
1138
+ - Remove comments
1139
+ - 🤖 remove unused loaders
1140
+ - 🤖 fix deps of storybook/core
1038
1141
 
1039
- ### Bug Fixes
1142
+ ### Testing
1040
1143
 
1041
- - 🐛 use selenium as deps, rename storybook peerDeps package ([3e0faa3](https://github.com/wKich/creevey/commit/3e0faa39976cf30e3cd95a38bd6326c81f1078c5))
1042
- - ignore \*.scss modules while loading stories ([075068a](https://github.com/wKich/creevey/commit/075068a9192db6c0ed18c4802144b32930433e60))
1144
+ - 💍 add sideBar active and hover test
1043
1145
 
1044
- ## [0.5.1](https://github.com/wKich/creevey/compare/v0.5.0...v0.5.1) (2020-03-26)
1146
+ ### Ci
1045
1147
 
1046
- ### Features
1148
+ - 🎡 disable tests for gitlab
1149
+ ## [0.7.0-beta.15] - 2020-10-13
1047
1150
 
1048
- - 🎸 output story render error ([18e7d9d](https://github.com/wKich/creevey/commit/18e7d9dea772cc10e1f75173c4faa47155e9c934))
1151
+ ### Added
1049
1152
 
1050
- # [0.5.0](https://github.com/wKich/creevey/compare/v0.4.11...v0.5.0) (2020-03-25)
1153
+ - 🎸 sideBar on storybook components
1051
1154
 
1052
- ### Bug Fixes
1155
+ ### Fixed
1053
1156
 
1054
- - 🐛 gracefully close selenium session ([cd8b630](https://github.com/wKich/creevey/commit/cd8b630b10008db21bc57feb4ffac671fc40ad08))
1055
- - 🐛 improve blend view css filters ([6ba0687](https://github.com/wKich/creevey/commit/6ba0687f7f6e6839fe30843871daad5c04a58857))
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))
1157
+ - 🐛 small ui issues in SideBar
1158
+ - 🐛 don't output message about unnecessary image
1159
+ - 🐛 improve `getImageUrl` for circle ci at least
1058
1160
 
1059
- ### Features
1161
+ ### Miscellaneous
1060
1162
 
1061
- - 🎸 rewrite storybook decorator to be framework agnostic ([f2d7904](https://github.com/wKich/creevey/commit/f2d7904a70c981fa64891f40845b1bb2abed7559))
1062
- - 🎸 support safari for composite images ([d078448](https://github.com/wKich/creevey/commit/d07844883071607bd6424e82f239b36b401722cb))
1163
+ - 🤖 sideBar header on storybook components
1164
+ - 🤖 pageFooter on storybook components
1063
1165
 
1064
- ## [0.4.11](https://github.com/wKich/creevey/compare/v0.4.10...v0.4.11) (2020-03-13)
1166
+ ### Styling
1065
1167
 
1066
- ### Bug Fixes
1168
+ - 💄 flatten checkbox and bold icons
1169
+ ## [0.7.0-beta.14] - 2020-10-13
1067
1170
 
1068
- - 🐛 hide scroll only for composite screenshots ([d9753d2](https://github.com/wKich/creevey/commit/d9753d2405e0aefb90663070d30465b0c8528f50))
1171
+ ### Added
1069
1172
 
1070
- ## [0.4.10](https://github.com/wKich/creevey/compare/v0.4.9...v0.4.10) (2020-03-13)
1173
+ - 🎸 remove `useDocker`. Creevey run docker by default
1174
+ - 🎸 output unnecessary images on full run
1071
1175
 
1072
- ### Bug Fixes
1176
+ ### Fixed
1073
1177
 
1074
- - 🐛 skip by test name with multiple skip options ([3d0ef36](https://github.com/wKich/creevey/commit/3d0ef36c8e2a994c171133f3e0c479f92016a9a2))
1178
+ - 🐛 fallback report if api don't available
1075
1179
 
1076
- ## [0.4.9](https://github.com/wKich/creevey/compare/v0.4.8...v0.4.9) (2020-03-13)
1180
+ ### Ci
1077
1181
 
1078
- ### Bug Fixes
1182
+ - 🎡 add gitlab integration
1183
+ ## [0.7.0-beta.13] - 2020-10-09
1079
1184
 
1080
- - 🐛 exclude `@babel/*` modules from skiping while fastload ([a785fcf](https://github.com/wKich/creevey/commit/a785fcf9cf5e8e591fcf11280eb040658319ace8))
1185
+ ### Fixed
1081
1186
 
1082
- ## [0.4.8](https://github.com/wKich/creevey/compare/v0.4.7...v0.4.8) (2020-03-13)
1187
+ - 🐛 add stories in addon
1188
+ - 🐛 don't fail on mdx stories, just ignore it for now
1189
+ - 🐛 re-disable animation
1190
+ - 🐛 don't crash on storybook reload error
1083
1191
 
1084
- ### Bug Fixes
1192
+ ### Miscellaneous
1085
1193
 
1086
- - 🐛 broken skip by test names ([e33c3d9](https://github.com/wKich/creevey/commit/e33c3d90b48df22540fc6cccaae71c47163b6599))
1194
+ - 🤖 move addon/PageHeader to shared and use it
1195
+ - 🤖 update deps
1087
1196
 
1088
- ## [0.4.7](https://github.com/wKich/creevey/compare/v0.4.6...v0.4.7) (2020-03-13)
1197
+ ### Testing
1089
1198
 
1090
- ### Bug Fixes
1199
+ - 💍 add page header tests
1200
+ - 💍 approve pageHeader screenshots
1091
1201
 
1092
- - 🐛 register require.context before all other modules ([5474f87](https://github.com/wKich/creevey/commit/5474f87afe258022ad219db53c300305a143e6bb))
1202
+ ### Ci
1093
1203
 
1094
- ## [0.4.6](https://github.com/wKich/creevey/compare/v0.4.5...v0.4.6) (2020-03-13)
1204
+ - Add codeql action
1205
+ ## [0.7.0-beta.12] - 2020-10-05
1095
1206
 
1096
- ### Features
1207
+ ### Fixed
1097
1208
 
1098
- - 🎸 allow take composite screenshots in custom tests ([5dd1e7d](https://github.com/wKich/creevey/commit/5dd1e7d89b04b2629d9766f254a1b5f69bb5d17f))
1209
+ - 🐛 hmr tests on windows
1210
+ - 🐛 report static bundle, add polyfiils
1099
1211
 
1100
- ## [0.4.5](https://github.com/wKich/creevey/compare/v0.4.4...v0.4.5) (2020-03-12)
1212
+ ### Miscellaneous
1101
1213
 
1102
- ### Features
1214
+ - 🤖 update deps
1215
+ ## [0.7.0-beta.11] - 2020-10-05
1103
1216
 
1104
- - 🎸 add `delay` creevey story parameter ([49ecf00](https://github.com/wKich/creevey/commit/49ecf00ea90d2485833965794c1300ca7da4d17b))
1217
+ ### Fixed
1105
1218
 
1106
- ## [0.4.4](https://github.com/wKich/creevey/compare/v0.4.3...v0.4.4) (2020-03-12)
1219
+ - 🐛 build addon to support ie11
1220
+ - 🐛 output readable error message on switch story
1221
+ - 🐛 run tests on circle ci
1107
1222
 
1108
- ### Features
1223
+ ### Miscellaneous
1109
1224
 
1110
- - 🎸 add `debug` cli option ([cff35ea](https://github.com/wKich/creevey/commit/cff35eaad4bce400fb18b0f5daa520060cef5870))
1111
- - 🎸 improve creevey story params typings, simplify tests ([f78d372](https://github.com/wKich/creevey/commit/f78d372bff2837915ef7b0d0f22089fbe3607a18))
1225
+ - 🤖 remove unused define plugin variable
1226
+ - 🤖 update deps
1112
1227
 
1113
- ## [0.4.3](https://github.com/wKich/creevey/compare/v0.4.2...v0.4.3) (2020-03-11)
1228
+ ### Ci
1114
1229
 
1115
- ### Features
1230
+ - 🎡 setup screenshot tests for circle
1231
+ - 🎡 fix build artifacts
1232
+ - 🎡 add build job for github actions
1233
+ ## [0.7.0-beta.10] - 2020-10-02
1116
1234
 
1117
- - 🎸 improve fastloading, to allow use side effects ([15ca5cc](https://github.com/wKich/creevey/commit/15ca5cc4ed73dff38707e8a713a03778663a7482))
1235
+ ### Fixed
1118
1236
 
1119
- ## [0.4.2](https://github.com/wKich/creevey/compare/v0.4.1...v0.4.2) (2020-03-11)
1237
+ - 🐛 some generated modules are excluded as external
1238
+ ## [0.7.0-beta.9] - 2020-10-02
1120
1239
 
1121
- ### Bug Fixes
1240
+ ### Fixed
1122
1241
 
1123
- - 🐛 patch babel-register hook to support all extensions ([918ae27](https://github.com/wKich/creevey/commit/918ae2709a1f0fd7773cc44575d5ab3e9d2f4b29))
1242
+ - 🐛 some ui markup, change placeholder message
1124
1243
 
1125
- ## [0.4.1](https://github.com/wKich/creevey/compare/v0.4.0...v0.4.1) (2020-03-10)
1244
+ ### Miscellaneous
1126
1245
 
1127
- ### Bug Fixes
1246
+ - 🤖 show placeholder when server is not running
1247
+ - 🤖 addon in panel instead of tab
1248
+ - 🤖 update todos
1249
+ ## [0.7.0-beta.8] - 2020-10-02
1128
1250
 
1129
- - 🐛 some minor issues ([e309d56](https://github.com/wKich/creevey/commit/e309d56937a50fb544d7cd8b6366991b693ba111))
1251
+ ### Fixed
1130
1252
 
1131
- # [0.4.0](https://github.com/wKich/creevey/compare/v0.3.8...v0.4.0) (2020-03-04)
1253
+ - 🐛 storybook override creevey story parameters
1132
1254
 
1133
- ### Features
1255
+ ### Miscellaneous
1134
1256
 
1135
- - 🎸 add test hot reloading, support new storybook configs ([7e282cb](https://github.com/wKich/creevey/commit/7e282cb2541d1a4f105a45474decd0dcf7e05759))
1257
+ - 🤖 add storybook essential addon
1258
+ ## [0.7.0-beta.7] - 2020-10-01
1136
1259
 
1137
- ## [0.3.8](https://github.com/wKich/creevey/compare/v0.3.7...v0.3.8) (2020-03-03)
1260
+ ### Added
1138
1261
 
1139
- ### Bug Fixes
1262
+ - 🎸 support declarative decorators format
1140
1263
 
1141
- - 🐛 ie11 don't work due async fn in types.ts file ([c1e8bbc](https://github.com/wKich/creevey/commit/c1e8bbc8747e68e26656f21f2d6247f654324cf2))
1142
- - 🐛 register pirates hook before any compiler ([7acde29](https://github.com/wKich/creevey/commit/7acde290f162ea651746f4d230073055a4bed956))
1264
+ ### Changed
1143
1265
 
1144
- ## [0.3.7](https://github.com/wKich/creevey/compare/v0.3.6...v0.3.7) (2020-02-20)
1266
+ - 💡 rename src/utils => src/shared
1267
+ - 💡 move addon/ImagesView to shared
1268
+ - 💡 in client use imagesView from shared
1145
1269
 
1146
- ### Bug Fixes
1270
+ ### Miscellaneous
1147
1271
 
1148
- - 🐛 fix bug with sync call onCompare ([e5c9e2c](https://github.com/wKich/creevey/commit/e5c9e2c4b8c19238608d4bba5bc3d2bd9f6871f6))
1272
+ - 🤖 update todos
1273
+ - 🤖 update deps
1274
+ - 🤖 update todos
1275
+ - 🤖 Uppdate todo
1276
+ - Remove todos
1149
1277
 
1150
- ### Features
1278
+ ### Testing
1151
1279
 
1152
- - 🎸 add onClick on teststatus for filter ([c28261c](https://github.com/wKich/creevey/commit/c28261c829e683dcfbee480d682f4cda61958dfc))
1280
+ - 💍 use components from addon in tests
1281
+ ## [0.7.0-beta.6] - 2020-09-29
1153
1282
 
1154
- ## [0.3.6](https://github.com/wKich/creevey/compare/v0.3.5...v0.3.6) (2020-02-17)
1283
+ ### Fixed
1155
1284
 
1156
- ### Bug Fixes
1285
+ - 🐛 loader handle `export default {} as Meta`
1157
1286
 
1158
- - 🐛 output error message while init for master process ([2f48e37](https://github.com/wKich/creevey/commit/2f48e37d90422d4574b3c9186c68daf5a7339f50))
1159
- - ignore various non-js extensions on story load ([55f0ed0](https://github.com/wKich/creevey/commit/55f0ed01b1c235ba8e03f0c2defab8023087d46e))
1287
+ ### Ci
1160
1288
 
1161
- ## [0.3.5](https://github.com/wKich/creevey/compare/v0.3.4...v0.3.5) (2020-02-11)
1289
+ - 🎡 publish artifacts
1290
+ ## [0.7.0-beta.5] - 2020-09-28
1162
1291
 
1163
- ### Bug Fixes
1292
+ ### Changed
1164
1293
 
1165
- - 🐛 don't mutate test scope on image assertion ([939c1fe](https://github.com/wKich/creevey/commit/939c1fed02eee5af441a99e9451d40adaf379ffc))
1166
- - 🐛 don't show tests without status by status filter ([9d79781](https://github.com/wKich/creevey/commit/9d797817f306165b42d0e6f79ef95841d4fe24cd))
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))
1294
+ - 💡 rename creevey port variable
1172
1295
 
1173
- ## [0.3.4](https://github.com/wKich/creevey/compare/v0.3.3...v0.3.4) (2020-01-17)
1296
+ ### Fixed
1174
1297
 
1175
- ### Bug Fixes
1298
+ - 🐛 remove old selenoid container on start
1299
+ ## [0.7.0-beta.4] - 2020-09-26
1176
1300
 
1177
- - 🐛 improve fast-loading, throw non-syntax errors on require ([4f288b7](https://github.com/wKich/creevey/commit/4f288b76e932090622f295f00dca12a179403a4f))
1301
+ ### Fixed
1178
1302
 
1179
- ### Features
1303
+ - 🐛 small addon ui issues
1304
+ - 🐛 small layout fixes in addon
1305
+ - 🐛 correctly load report from previous run
1180
1306
 
1181
- - 🎸 allow pass diff options to pixelmatch ([32d6bb1](https://github.com/wKich/creevey/commit/32d6bb1868f11aa416a0872e927b97768b8eb2aa))
1182
- - 🎸 improve stories initialization speed ([1009728](https://github.com/wKich/creevey/commit/10097280d24a24fb4033e4516458b2e62a0dbe63))
1307
+ ### Miscellaneous
1183
1308
 
1184
- ### BREAKING CHANGES
1309
+ - **deps:** Bump bl from 4.0.2 to 4.0.3
1185
1310
 
1186
- - `threshold` config option are replaced to `diffOptions`
1311
+ ### Ci
1187
1312
 
1188
- ## [0.3.3](https://github.com/wKich/creevey/compare/v0.3.2...v0.3.3) (2020-01-16)
1313
+ - 🎡 add screenshot tests
1314
+ ## [0.7.0-beta.3] - 2020-09-25
1189
1315
 
1190
- ### Bug Fixes
1316
+ ### Added
1191
1317
 
1192
- - 🐛 add hint for images preview ([ddf3615](https://github.com/wKich/creevey/commit/ddf3615ca36e1f36ff02a348ad2cec0bc819a304))
1193
- - 🐛 move mocha typing to devDeps ([50f4a92](https://github.com/wKich/creevey/commit/50f4a9284e081054688114d0fd1054c8bbb3c16b))
1318
+ - 🎸 Storybook addon
1319
+ - 🎸 Add run button in addon
1320
+ - 🎸 show status in sidebar
1321
+ - 🎸 add support docker
1194
1322
 
1195
- ## [0.3.2](https://github.com/wKich/creevey/compare/v0.3.1...v0.3.2) (2020-01-15)
1323
+ ### Changed
1196
1324
 
1197
- ### Bug Fixes
1325
+ - 💡 extract code that used in client and addon
1326
+ - 💡 simplify docker initialization code
1198
1327
 
1199
- - 🐛 initiate browser after all stories has been loaded ([f95d8dc](https://github.com/wKich/creevey/commit/f95d8dcad1dd1feb1bcd5ae548131edd8c0ceec9))
1328
+ ### Fixed
1200
1329
 
1201
- ## [0.3.1](https://github.com/wKich/creevey/compare/v0.3.0...v0.3.1) (2020-01-13)
1330
+ - 🐛 eslint errors
1331
+ - 🐛 use `find-dir-cache` to store cache in right place
1332
+ - 🐛 use selenoid instead of browser images
1333
+ - Docker network for windows/wsl
1334
+ - 🐛 resolve storybook url on windows with multiple networks
1202
1335
 
1203
- ### Bug Fixes
1336
+ ### Miscellaneous
1204
1337
 
1205
- - 🐛 capture screenshot of element with non-integer size ([28fc1cc](https://github.com/wKich/creevey/commit/28fc1cc9162db6bb9085321883bd04abdb4ae880))
1206
- - 🐛 require config when path don't have extension ([93fb11b](https://github.com/wKich/creevey/commit/93fb11b0d4740b6da598a9e923dafb9c75394c70))
1338
+ - **deps:** Bump http-proxy from 1.17.0 to 1.18.1
1339
+ - **deps:** Bump http-proxy from 1.18.0 to 1.18.1 in /examples/react
1340
+ - **deps:** Bump http-proxy from 1.18.0 to 1.18.1 in /examples/angular
1341
+ - **deps:** Bump node-fetch from 2.6.0 to 2.6.1
1342
+ - **deps:** Bump node-fetch from 2.6.0 to 2.6.1 in /examples/angular
1343
+ - **deps:** Bump node-fetch from 2.6.0 to 2.6.1 in /examples/react
1344
+ - **deps:** Bump node-fetch from 2.6.0 to 2.6.1 in /examples/vue
1345
+ - **deps:** Add @storybook/theming and @storybook/components
1346
+ - 🤖 add storyId in Test
1347
+ - 🤖 update todos
1348
+ ## [0.7.0-beta.2] - 2020-09-10
1207
1349
 
1208
- # [0.3.0](https://github.com/wKich/creevey/compare/v0.2.6...v0.3.0) (2020-01-10)
1350
+ ### Fixed
1209
1351
 
1210
- ### Features
1352
+ - 🐛 exit master process with after hook
1353
+ ## [0.7.0-beta.1] - 2020-09-08
1211
1354
 
1212
- - 🎸 remove support explicit test cases ([4b56ddf](https://github.com/wKich/creevey/commit/4b56ddf7617785ce93cd17fe9e82e928c56011bb))
1355
+ ### Added
1213
1356
 
1214
- ## [0.2.6](https://github.com/wKich/creevey/compare/v0.2.5...v0.2.6) (2020-01-10)
1357
+ - 🎸 add before/after hooks
1358
+ - 🎸 show error images in imagePreview
1215
1359
 
1216
- ### Features
1360
+ ### Changed
1217
1361
 
1218
- - 🎸 add `tests` story parameter for public usage ([c4d7dc0](https://github.com/wKich/creevey/commit/c4d7dc0191b1aafba2aa9f6d18d6d99d4093fcb3))
1219
- - 🎸 add `toMatchImages` assertion for chai ([1fef184](https://github.com/wKich/creevey/commit/1fef1847248405fc32e76d4d3b4387e200290d8c))
1362
+ - 💡 output only error message for image assert
1363
+ - 💡 move some server files into directory
1364
+ - 💡 add IPC message handlers
1220
1365
 
1221
- ## [0.2.5](https://github.com/wKich/creevey/compare/v0.2.4...v0.2.5) (2020-01-10)
1366
+ ### Fixed
1222
1367
 
1223
- ### Bug Fixes
1368
+ - 🐛 collect all errors
1369
+ - 🐛 don't show error if image has been approved
1224
1370
 
1225
- - 🐛 correct work update with new report structure ([5bf17c1](https://github.com/wKich/creevey/commit/5bf17c10799f136d73639d9075866c6f308e30ed))
1371
+ ### Miscellaneous
1226
1372
 
1227
- ### Features
1373
+ - **deps:** Bump markdown-to-jsx in /examples/react
1374
+ - **deps:** Bump markdown-to-jsx in /examples/angular
1375
+ - 🤖 update storybook to stable version
1376
+ ## [0.7.0-beta.0] - 2020-08-04
1228
1377
 
1229
- - 🎸 add `reportDir/screenDir` cli options ([3b059a6](https://github.com/wKich/creevey/commit/3b059a6e36a33d5963be216368391ed940b17b65))
1230
- - 🎸 load stories in nodejs and generate tests in runtime ([3f276a4](https://github.com/wKich/creevey/commit/3f276a4d06e006878cd4733797c2a262abf73ea6))
1378
+ ### Added
1231
1379
 
1232
- ## [0.2.4](https://github.com/wKich/creevey/compare/v0.2.3...v0.2.4) (2019-12-23)
1380
+ - 🎸 support storybook v6.x
1233
1381
 
1234
- ### Bug Fixes
1382
+ ### Fixed
1235
1383
 
1236
- - 🐛 convert export story names to storybook format ([43b227e](https://github.com/wKich/creevey/commit/43b227ed69c67bbedfac555f31c845fdb2b04840))
1237
- - 🐛 don't use webdriver object serialization ([c4545f0](https://github.com/wKich/creevey/commit/c4545f071269426caa24599d6e1b72d933d60152))
1384
+ - 🐛 remove scroll when change image in swap mode
1385
+ - 🐛 tests hot reloading
1386
+ - 🐛 image preview height
1387
+ - 🐛 gracefully end worker processes
1238
1388
 
1239
- ## [0.2.3](https://github.com/wKich/creevey/compare/v0.2.2...v0.2.3) (2019-12-19)
1389
+ ### Miscellaneous
1240
1390
 
1241
- ### Bug Fixes
1391
+ - 🤖 update deps
1392
+ - 🤖 update deps
1393
+ - 🤖 update deps
1394
+ - **deps:** Bump elliptic from 6.4.1 to 6.5.3
1395
+ - 🤖 fix `dot-prop` vulnerability
1396
+ - **deps:** Bump elliptic from 6.5.2 to 6.5.3 in /examples/angular
1397
+ - **deps:** Bump elliptic from 6.5.2 to 6.5.3 in /examples/vue
1398
+ - **deps:** Bump elliptic from 6.5.2 to 6.5.3 in /examples/react
1242
1399
 
1243
- - 🐛 allow skip tests by kinds ([ddc8a27](https://github.com/wKich/creevey/commit/ddc8a272e2a24cec2c25479788791a46ef1a8943)), closes [#12](https://github.com/wKich/creevey/issues/12)
1244
- - 🐛 wrap long suite/test titles ([c7f7920](https://github.com/wKich/creevey/commit/c7f79203b3ecbb3526312084897513c827bcf598))
1400
+ ### Testing
1245
1401
 
1246
- ## [0.2.2](https://github.com/wKich/creevey/compare/v0.2.1...v0.2.2) (2019-12-11)
1402
+ - 💍 update test images
1403
+ ## [0.6.4] - 2020-07-27
1247
1404
 
1248
- ### Bug Fixes
1405
+ ### Added
1249
1406
 
1250
- - 🐛 correct publish artifacts for TeamCity reporter ([5949bc3](https://github.com/wKich/creevey/commit/5949bc3a21a393ec0b15d0b104f59e4eae0f668a))
1407
+ - 🎸 add disabled state to start button
1408
+ - 🎸 Save view mode
1251
1409
 
1252
- ## [0.2.1](https://github.com/wKich/creevey/compare/v0.2.0...v0.2.1) (2019-12-11)
1410
+ ### Fixed
1253
1411
 
1254
- ### Bug Fixes
1412
+ - 🐛 storybook bundle depends on core-js, regenerator-runtime
1413
+ - 🐛 react example loadash vulnerability
1414
+ - 🐛 watch stories on windows
1415
+ - 🐛 hot-reloading issue, add readme notes
1255
1416
 
1256
- - 🐛 allow click on checkbox in sidebar ([a750d46](https://github.com/wKich/creevey/commit/a750d46734290773298a07efef25d4eb2f992842))
1257
- - 🐛 correct report teamcity artifacts ([dfc7251](https://github.com/wKich/creevey/commit/dfc72514c1fa2f692a80e6bf1092255cbe7d47a9))
1258
- - 🐛 firefox SlideView ([91ef075](https://github.com/wKich/creevey/commit/91ef0750f1579b27a478725152f3fde95abcdb24))
1417
+ ### Miscellaneous
1259
1418
 
1260
- # [0.2.0](https://github.com/wKich/creevey/compare/v0.1.7...v0.2.0) (2019-12-05)
1419
+ - **deps:** Bump npm-registry-fetch in /examples/angular
1420
+ - **deps:** Bump lodash from 4.17.15 to 4.17.19
1421
+ - **deps:** Bump lodash from 4.17.15 to 4.17.19 in /examples/angular
1422
+ - **deps:** Bump lodash from 4.17.15 to 4.17.19 in /examples/vue
1423
+ ## [0.6.3] - 2020-06-16
1261
1424
 
1262
- ### Bug Fixes
1425
+ ### Fixed
1263
1426
 
1264
- - 🐛 a lot of bugs with views, approve and more ([45c86d3](https://github.com/wKich/creevey/commit/45c86d30468c80508aedb5c52a4e8c9e96a34daf))
1265
- - 🐛 ImagesView correctly resize image in most cases ([258506a](https://github.com/wKich/creevey/commit/258506a3877bb32d4b38d6ce20d15372095edadf))
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))
1427
+ - 🐛 test reloading dont work well
1428
+ ## [0.6.2] - 2020-06-10
1269
1429
 
1270
- ### Features
1430
+ ### Fixed
1271
1431
 
1272
- - 🎸 improve markup for ResultPage by prototypes ([09cd297](https://github.com/wKich/creevey/commit/09cd297010b1677fb8900d4e8db5be9629be10e7))
1273
- - 🎸 output penging tests count ([793d60f](https://github.com/wKich/creevey/commit/793d60fd771f267d7711b8853d1381405b4ee01f))
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))
1432
+ - 🐛 disable hot-reloading without `--ui` option
1433
+ ## [0.6.1] - 2020-06-10
1278
1434
 
1279
- ## [0.1.7](https://github.com/wKich/creevey/compare/v0.1.6...v0.1.7) (2019-11-22)
1435
+ ### Fixed
1280
1436
 
1281
- ### Features
1437
+ - 🐛 ERR_IPC_CHANNEL_CLOSED finally
1438
+ - 🐛 mocha 7.2 multiple runs, remove old hacks
1282
1439
 
1283
- - 🎸 allow skip test stories by kinds ([1cb4968](https://github.com/wKich/creevey/commit/1cb49688616ac3060012e800428f1f67d066c2ab))
1440
+ ### Miscellaneous
1284
1441
 
1285
- ## [0.1.6](https://github.com/wKich/creevey/compare/v0.1.5...v0.1.6) (2019-11-22)
1442
+ - 🤖 update minor/patch deps versions
1443
+ - 🤖 update eslint to 7.x, update eslint-plugins
1444
+ ## [0.6.0] - 2020-06-09
1286
1445
 
1287
- ### Bug Fixes
1446
+ ### Changed
1288
1447
 
1289
- - 🐛 handle regexp skip options ([d07689e](https://github.com/wKich/creevey/commit/d07689e428420084826391ae3438dc81d2b02922))
1290
- - 🐛 output correct reported screenshot path for teamcity ([fb7d230](https://github.com/wKich/creevey/commit/fb7d230258644c18649939dfb9dd92b5421d6ca1))
1291
- - 🐛 significantly improve perfomance ([422f023](https://github.com/wKich/creevey/commit/422f023cbb1b290ddd8e1b103856a6d2db293b52))
1448
+ - 💡 disable perfomance hints for webpack build
1292
1449
 
1293
- ## [0.1.5](https://github.com/wKich/creevey/compare/v0.1.4...v0.1.5) (2019-11-20)
1450
+ ### Documentation
1294
1451
 
1295
- ### Bug Fixes
1452
+ - ✏️ update readme
1453
+ - ✏️ fix links in readme
1454
+ - ✏️ update framework examples
1455
+ - ✏️ update authors and todos
1296
1456
 
1297
- - 🐛 require stories in nodejs env ([0e00fa6](https://github.com/wKich/creevey/commit/0e00fa629610960e0fab7fcea02596c4aa7ce107))
1457
+ ### Fixed
1298
1458
 
1299
- ### Features
1459
+ - 🐛 kind-of@6.0.2 vulnerability
1460
+ - 🐛 loader: remove vars in desctructuring
1300
1461
 
1301
- - 🎸 support write tests inside stories ([ce9ed7d](https://github.com/wKich/creevey/commit/ce9ed7d09c0312a073e0897ece8e082d17b0cb30))
1462
+ ### Miscellaneous
1302
1463
 
1303
- ## [0.1.4](https://github.com/wKich/creevey/compare/v0.1.3...v0.1.4) (2019-11-18)
1464
+ - **deps:** Bump websocket-extensions from 0.1.3 to 0.1.4
1304
1465
 
1305
- ### Bug Fixes
1466
+ ### Vue
1306
1467
 
1307
- - **master:** dont output skipped tests ([1e23321](https://github.com/wKich/creevey/commit/1e233218054719f72d2d0bbf040d83b68955dca2))
1308
- - **utils:** improve error message when storybook page not available ([4c44763](https://github.com/wKich/creevey/commit/4c4476347e8aa5c90d6a84d680ee6d091d1897be))
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))
1468
+ - Add readme
1469
+ - Create app && add 'eslint-plugin-vue' 4 pre-commit
1470
+ - Add storybook
1471
+ - Add creevey
1472
+ ## [0.6.0-beta.8] - 2020-06-04
1311
1473
 
1312
- ### Reverts
1474
+ ### Fixed
1313
1475
 
1314
- - Revert "fix(utils): replace ip resolver back" ([4e48706](https://github.com/wKich/creevey/commit/4e48706164abdbc1bc8765e022a99b41f60b29d5))
1476
+ - 🐛 output warning `Did you call 'load' twice` on reload
1477
+ ## [0.6.0-beta.7] - 2020-06-02
1315
1478
 
1316
- ## [0.1.3](https://github.com/wKich/creevey/compare/v0.1.2...v0.1.3) (2019-11-07)
1479
+ ### Fixed
1317
1480
 
1318
- ### Bug Fixes
1481
+ - 🐛 webpack recursion IPC, again
1482
+ ## [0.6.0-beta.6] - 2020-06-02
1319
1483
 
1320
- - **storybook:** correct fill params for old storybook ([35ae070](https://github.com/wKich/creevey/commit/35ae07064f388da6b7fd841f05ad1e40865b79b2))
1484
+ ### Fixed
1321
1485
 
1322
- ## [0.1.2](https://github.com/wKich/creevey/compare/v0.1.1...v0.1.2) (2019-11-07)
1486
+ - 🐛 IPC messages recursion, again
1487
+ ## [0.6.0-beta.5] - 2020-06-02
1323
1488
 
1324
- ### Bug Fixes
1489
+ ### Fixed
1325
1490
 
1326
- - **storybook:** read prop of undefined ([b96bb48](https://github.com/wKich/creevey/commit/b96bb48ba1938b74d9c06ebb497c6be481d02f81))
1491
+ - 🐛 webpack compiler process send messages recursion
1492
+ ## [0.6.0-beta.4] - 2020-06-02
1327
1493
 
1328
- ## [0.1.1](https://github.com/wKich/creevey/compare/v0.1.0...v0.1.1) (2019-11-07)
1494
+ ### Added
1329
1495
 
1330
- ### Bug Fixes
1496
+ - 🎸 allow use `delay` with custom tests
1331
1497
 
1332
- - **utils:** replace ip resolver back ([e87bcdd](https://github.com/wKich/creevey/commit/e87bcddc0dad156c27e4200a61fe30b2bc24ef2b))
1498
+ ### Fixed
1333
1499
 
1334
- # [0.1.0](https://github.com/wKich/creevey/compare/v0.0.30...v0.1.0) (2019-11-07)
1500
+ - 🐛 another fix to gracefully exit
1501
+ - 🐛 check element before capturing screenshot
1502
+ - 🐛 some small init/exit issues
1503
+ ## [0.6.0-beta.3] - 2020-05-27
1335
1504
 
1336
- ### Features
1505
+ ### Fixed
1337
1506
 
1338
- - simplify images directory ([0d15f73](https://github.com/wKich/creevey/commit/0d15f73e411ec6d93681d78573592c907b479e09))
1507
+ - 🐛 make loader be more aggressive
1508
+ - 🐛 EPIPE message on exit again
1509
+ - 🐛 soft-freeze mocha version on 7.1
1510
+ ## [0.6.0-beta.2] - 2020-05-18
1339
1511
 
1340
- ## [0.0.30](https://github.com/wKich/creevey/compare/v0.0.29...v0.0.30) (2019-11-05)
1512
+ ### Fixed
1341
1513
 
1342
- ### Features
1514
+ - 🐛 correctly close browser session on SIGINT
1515
+ - 🐛 correct shutdown workers
1516
+ - 🐛 ignore removing bundle cache directory
1517
+ ## [0.6.0-beta.1] - 2020-05-15
1343
1518
 
1344
- - **storybook:** disable animations for webdriver ([acfc34c](https://github.com/wKich/creevey/commit/acfc34ce50372699c0ffdb5dfe83b02a002aea44))
1519
+ ### Fixed
1345
1520
 
1346
- ## [0.0.29](https://github.com/wKich/creevey/compare/v0.0.28...v0.0.29) (2019-10-11)
1521
+ - 🐛 storybook framework detection on windows
1522
+ ## [0.6.0-beta.0] - 2020-05-14
1347
1523
 
1348
- ### Bug Fixes
1524
+ ### Added
1349
1525
 
1350
- - **storybook:** ie11 hot-reload ([e8e45c4](https://github.com/wKich/creevey/commit/e8e45c4859d4b89053a4bc2884cc7cb64c76e130))
1526
+ - 🎸 rework load stories process
1527
+ - 🎸 add creevey-loader for webpack
1351
1528
 
1352
- ## [0.0.28](https://github.com/wKich/creevey/compare/v0.0.27...v0.0.28) (2019-10-09)
1529
+ ### Changed
1353
1530
 
1354
- ### Bug Fixes
1531
+ - 💡 remove unused `require.context` and `pirates` hooks
1532
+ - 💡 fix worker message issue after rebase
1355
1533
 
1356
- - **storybook:** dont consider scroll while capture element ([6fb9ecb](https://github.com/wKich/creevey/commit/6fb9ecb19561a245d132acbf7ac3989e74b513cc))
1534
+ ### Fixed
1357
1535
 
1358
- ## [0.0.27](https://github.com/wKich/creevey/compare/v0.0.26...v0.0.27) (2019-10-07)
1536
+ - 🐛 support latest selenium browser drivers
1359
1537
 
1360
- ### Bug Fixes
1538
+ ### Miscellaneous
1361
1539
 
1362
- - **storybook:** chrome serialization stories error ([b994e9e](https://github.com/wKich/creevey/commit/b994e9e835be0e342ffa1b5d6545a326e7eb82c2))
1540
+ - 🤖 update deps
1541
+ - 🤖 update deps
1363
1542
 
1364
- ## [0.0.26](https://github.com/wKich/creevey/compare/v0.0.25...v0.0.26) (2019-10-07)
1543
+ ### Testing
1365
1544
 
1366
- ### Bug Fixes
1545
+ - 💍 update screenshot images
1546
+ ## [0.5.6] - 2020-05-04
1367
1547
 
1368
- - **storybook:** chrome serialization stories error ([23d51ed](https://github.com/wKich/creevey/commit/23d51ede18ea329a50e05cffd8a4c46751f3647a))
1548
+ ### Fixed
1369
1549
 
1370
- ## [0.0.25](https://github.com/wKich/creevey/compare/v0.0.24...v0.0.25) (2019-10-04)
1550
+ - 🐛 handle worker initiating error
1551
+ ## [0.5.5] - 2020-04-21
1371
1552
 
1372
- ### Bug Fixes
1553
+ ### Added
1373
1554
 
1374
- - **runner:** mark removed tests as skiped ([822d92a](https://github.com/wKich/creevey/commit/822d92a607899c23e0cd38396839f1e0674dcb46))
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))
1555
+ - 🎸 support .creevey config dir
1556
+ - 🎸 add `saveReport` cli option, enabled by default
1380
1557
 
1381
- ### Features
1558
+ ### Documentation
1382
1559
 
1383
- - support composite images ([594f6cb](https://github.com/wKich/creevey/commit/594f6cbee1245e92353c223053af151e6d887434))
1384
- - **worker:** support creevey skip story option ([2e36464](https://github.com/wKich/creevey/commit/2e36464654c1adccc3d8203a69fec71408925f24))
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))
1560
+ - ✏️ add example and guide for angular project
1561
+ - ✏️ small update for angular and chore fixes
1562
+ - ✏️ add example and guide for react project
1389
1563
 
1390
- ## [0.0.24](https://github.com/wKich/creevey/compare/v0.0.23...v0.0.24) (2019-09-16)
1564
+ ### Miscellaneous
1391
1565
 
1392
- ### Features
1566
+ - 🤖 clean-up npm scripts
1393
1567
 
1394
- - more improvments ([39c601d](https://github.com/wKich/creevey/commit/39c601d65c43ef276ee398d30c872702902d433f))
1395
- - support storybook kind depth levels ([7d2523d](https://github.com/wKich/creevey/commit/7d2523dae79050bd662b223463bd15cdb1470798))
1568
+ ### Ci
1396
1569
 
1397
- ## [0.0.23](https://github.com/wKich/creevey/compare/v0.0.22...v0.0.23) (2019-09-12)
1570
+ - 🎡 skip examples from type-checking process
1571
+ ## [0.5.4] - 2020-04-04
1398
1572
 
1399
- ### Bug Fixes
1573
+ ### Fixed
1400
1574
 
1401
- - export mocha/chai typings ([1340c4d](https://github.com/wKich/creevey/commit/1340c4db4603bd897053c42507398d6b5ab7eb88))
1575
+ - 🐛 remove new code that added by mistake
1576
+ ## [0.5.3] - 2020-04-04
1402
1577
 
1403
- ## [0.0.22](https://github.com/wKich/creevey/compare/v0.0.21...v0.0.22) (2019-09-11)
1578
+ ### Changed
1404
1579
 
1405
- ### Bug Fixes
1580
+ - 💡 move selenium helpers in separate module
1406
1581
 
1407
- - set-value vulnerability CVE-2019-10747 ([2db0463](https://github.com/wKich/creevey/commit/2db0463538b10f2d09674c8ed7a4e8078fabec37))
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))
1582
+ ### Fixed
1412
1583
 
1413
- ### Features
1584
+ - 🐛 precompile decorator file for ie11 target
1414
1585
 
1415
- - add storybook decorator ([4f97fd6](https://github.com/wKich/creevey/commit/4f97fd6a5e12e1a06836337299aece8ef0890dcd))
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))
1586
+ ### Miscellaneous
1418
1587
 
1419
- ## [0.0.21](https://github.com/wKich/creevey/compare/v0.0.20...v0.0.21) (2019-08-30)
1588
+ - 🤖 update AUTHORS
1589
+ - 🤖 update deps
1590
+ ## [0.5.2] - 2020-03-30
1420
1591
 
1421
- ### Bug Fixes
1592
+ ### Documentation
1422
1593
 
1423
- - **ImagesView:** improve view for side-by-side view component ([831a34e](https://github.com/wKich/creevey/commit/831a34ec024c991f96d45c831b082d765a3d6dc0))
1424
- - **pool:** improve restart workers process ([82fb1ea](https://github.com/wKich/creevey/commit/82fb1eaf30f2d7a729559595a07e047a87265dba))
1594
+ - ✏️ add authors and changelog files
1425
1595
 
1426
- ## [0.0.20](https://github.com/wKich/creevey/compare/v0.0.19...v0.0.20) (2019-08-27)
1596
+ ### Fixed
1427
1597
 
1428
- ### Bug Fixes
1598
+ - 🐛 use selenium as deps, rename storybook peerDeps package
1599
+ - Ignore *.scss modules while loading stories
1429
1600
 
1430
- - **client:** better output error message ([16eaa06](https://github.com/wKich/creevey/commit/16eaa06fdb1f1deb76d1dfa60fc55cc756eb85a3))
1431
- - **pool:** correct retry tests by timeout ([1c11e52](https://github.com/wKich/creevey/commit/1c11e528d379b4f05330cb438e5ff58d5762f917))
1601
+ ### Miscellaneous
1432
1602
 
1433
- ### Features
1603
+ - 🤖 small changes in todos
1434
1604
 
1435
- - **client:** fit large images into sidepage ([c4adbca](https://github.com/wKich/creevey/commit/c4adbca0a636b49b239255e91d4fd15799386c90))
1605
+ ### Styling
1436
1606
 
1437
- ## [0.0.19](https://github.com/wKich/creevey/compare/v0.0.18...v0.0.19) (2019-08-21)
1607
+ - 💄 reformat, fix lint issues
1608
+ ## [0.5.1] - 2020-03-26
1438
1609
 
1439
- ### Bug Fixes
1610
+ ### Added
1440
1611
 
1441
- - **reporter:** try to fix parallel output on teamcity ([0ff4faf](https://github.com/wKich/creevey/commit/0ff4faf9bd4dc504a190e76ef673ed9203152203))
1612
+ - 🎸 output story render error
1442
1613
 
1443
- ## [0.0.18](https://github.com/wKich/creevey/compare/v0.0.17...v0.0.18) (2019-08-21)
1614
+ ### Miscellaneous
1444
1615
 
1445
- ### Bug Fixes
1616
+ - 🤖 update react-ui to pre-2.0 unstable version
1617
+ - 🤖 update react-ui to next major version
1618
+ - 🤖 update deps
1619
+ ## [0.5.0] - 2020-03-25
1446
1620
 
1447
- - **reporter:** try to fix parallel output on teamcity ([8371fce](https://github.com/wKich/creevey/commit/8371fcefe08e56d60bc4ff123731e1819b77b5c3))
1621
+ ### Added
1448
1622
 
1449
- ## [0.0.17](https://github.com/wKich/creevey/compare/v0.0.16...v0.0.17) (2019-08-21)
1623
+ - 🎸 support safari for composite images
1624
+ - 🎸 rewrite storybook decorator to be framework agnostic
1450
1625
 
1451
- ### Bug Fixes
1626
+ ### Fixed
1452
1627
 
1453
- - **reporter:** try to fix parallel output on teamcity ([5de07d9](https://github.com/wKich/creevey/commit/5de07d9a72939ef62b4fb99bff624a2d79089c91))
1628
+ - 🐛 take composite images without hiding scrollbar
1629
+ - 🐛 improve blend view css filters
1630
+ - 🐛 gracefully close selenium session
1631
+ - 🐛 jsdom localStorage warning
1454
1632
 
1455
- ## [0.0.16](https://github.com/wKich/creevey/compare/v0.0.15...v0.0.16) (2019-08-21)
1633
+ ### Miscellaneous
1456
1634
 
1457
- ### Bug Fixes
1635
+ - **deps:** Bump acorn from 6.3.0 to 6.4.1
1636
+ - 🤖 update deps
1637
+ ## [0.4.11] - 2020-03-13
1458
1638
 
1459
- - **reporter:** output full filepath in metadata ([142c3a6](https://github.com/wKich/creevey/commit/142c3a6d359a95ba226d6fce35719bf0f134e19d))
1639
+ ### Fixed
1460
1640
 
1461
- ## [0.0.15](https://github.com/wKich/creevey/compare/v0.0.14...v0.0.15) (2019-08-21)
1641
+ - 🐛 hide scroll only for composite screenshots
1642
+ ## [0.4.10] - 2020-03-13
1462
1643
 
1463
- ### Bug Fixes
1644
+ ### Fixed
1464
1645
 
1465
- - **reporter:** output correct test name in teamcity ([e753e71](https://github.com/wKich/creevey/commit/e753e71b4484b8d82ed725e8ca1d023bfdd4993d))
1646
+ - 🐛 skip by test name with multiple skip options
1647
+ ## [0.4.9] - 2020-03-13
1466
1648
 
1467
- ### Features
1649
+ ### Changed
1468
1650
 
1469
- - **reporter:** output image as test metadata ([eb6a03a](https://github.com/wKich/creevey/commit/eb6a03a0f819992f40c37a739561a28a00c30a6d))
1470
- - **runner:** allow setup browser resolution ([a6b1b92](https://github.com/wKich/creevey/commit/a6b1b92621ef8db5754e25bbe8cafe3153805134))
1651
+ - 💡 simplify `storyTestFabric`, use test context
1471
1652
 
1472
- ## [0.0.14](https://github.com/wKich/creevey/compare/v0.0.13...v0.0.14) (2019-08-21)
1653
+ ### Fixed
1473
1654
 
1474
- ## [0.0.13](https://github.com/wKich/creevey/compare/v0.0.12...v0.0.13) (2019-07-01)
1655
+ - 🐛 exclude `@babel/*` modules from skiping while fastload
1656
+ ## [0.4.8] - 2020-03-13
1475
1657
 
1476
- ### Bug Fixes
1658
+ ### Fixed
1477
1659
 
1478
- - **worker:** correct `retries` prop name ([747ba56](https://github.com/wKich/creevey/commit/747ba56d101783e8767e246ae8d929aacfb1f637))
1660
+ - 🐛 broken skip by test names
1661
+ ## [0.4.7] - 2020-03-13
1479
1662
 
1480
- ## [0.0.12](https://github.com/wKich/creevey/compare/v0.0.11...v0.0.12) (2019-07-01)
1663
+ ### Fixed
1481
1664
 
1482
- ### Bug Fixes
1665
+ - 🐛 register require.context before all other modules
1666
+ ## [0.4.6] - 2020-03-13
1483
1667
 
1484
- - **server:** pass TC version to envs worker ([78585ae](https://github.com/wKich/creevey/commit/78585ae4b7788a4c2a00cf63d33c3ead469ab703))
1668
+ ### Added
1485
1669
 
1486
- ## [0.0.11](https://github.com/wKich/creevey/compare/v0.0.10...v0.0.11) (2019-07-01)
1670
+ - 🎸 allow take composite screenshots in custom tests
1671
+ ## [0.4.5] - 2020-03-12
1487
1672
 
1488
- ### Bug Fixes
1673
+ ### Added
1489
1674
 
1490
- - **reporter:** output retry test as passed for tc ([847db55](https://github.com/wKich/creevey/commit/847db5578bb34312cff2d5a409be5950b8a491f3))
1675
+ - 🎸 add `delay` creevey story parameter
1491
1676
 
1492
- ## [0.0.10](https://github.com/wKich/creevey/compare/v0.0.9...v0.0.10) (2019-06-26)
1677
+ ### Miscellaneous
1493
1678
 
1494
- ### Bug Fixes
1679
+ - 🤖 add to npmignore some stuff
1680
+ ## [0.4.4] - 2020-03-12
1495
1681
 
1496
- - **runner:** send stop event ([ade8f22](https://github.com/wKich/creevey/commit/ade8f224b0688072c526f2f1b2a2fcfcc68a09c1))
1682
+ ### Added
1497
1683
 
1498
- ## [0.0.9](https://github.com/wKich/creevey/compare/v0.0.8...v0.0.9) (2019-06-26)
1684
+ - 🎸 add `debug` cli option
1685
+ - 🎸 improve creevey story params typings, simplify tests
1686
+ ## [0.4.3] - 2020-03-11
1499
1687
 
1500
- ### Features
1688
+ ### Added
1501
1689
 
1502
- - **chai-image:** allow pass `threshold` option ([81394c8](https://github.com/wKich/creevey/commit/81394c804bceedc6a1b579d149a902cd36176035))
1503
- - **reporter:** add `chalk` to color output ([87e4d9a](https://github.com/wKich/creevey/commit/87e4d9aaac0457c7a17b6b5849ebce817e1ef64f))
1690
+ - 🎸 improve fastloading, to allow use side effects
1691
+ ## [0.4.2] - 2020-03-11
1504
1692
 
1505
- ## [0.0.8](https://github.com/wKich/creevey/compare/v0.0.7...v0.0.8) (2019-06-25)
1693
+ ### Fixed
1506
1694
 
1507
- ### Bug Fixes
1695
+ - 🐛 patch babel-register hook to support all extensions
1508
1696
 
1509
- - **worker:** send error message on fail, restart on timeout ([8ddb265](https://github.com/wKich/creevey/commit/8ddb2654afe56d41035afaa511f6c04e677015fd))
1697
+ ### Miscellaneous
1510
1698
 
1511
- ## [0.0.7](https://github.com/wKich/creevey/compare/v0.0.6...v0.0.7) (2019-06-24)
1699
+ - 🤖 add end gap in sidebar
1700
+ ## [0.4.1] - 2020-03-10
1512
1701
 
1513
- ### Bug Fixes
1702
+ ### Fixed
1514
1703
 
1515
- - **chai-image:** enable anti-aliasing for pixelmatch ([ef50047](https://github.com/wKich/creevey/commit/ef50047ef4550448d5291fba6138526fbd3b5495))
1516
- - **parser:** don't include ignored tests ([985c758](https://github.com/wKich/creevey/commit/985c7586909edeb457ab9df35fc896774cba3bfb))
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))
1704
+ - 🐛 some minor issues
1705
+ ## [0.4.0] - 2020-03-04
1519
1706
 
1520
- ### Features
1707
+ ### Added
1521
1708
 
1522
- - **client:** output disabled skiped tests ([8d7f596](https://github.com/wKich/creevey/commit/8d7f596ecadc5235c74bdb36e0ccaa6235914725))
1709
+ - 🎸 add test hot reloading, support new storybook configs
1523
1710
 
1524
- ## [0.0.6](https://github.com/wKich/creevey/compare/v0.0.5...v0.0.6) (2019-06-20)
1711
+ ### Changed
1525
1712
 
1526
- ### Bug Fixes
1713
+ - 💡 make `retries` optional property in Test
1714
+ - 💡 update screenshots, fix some minor issues
1715
+ ## [0.3.8] - 2020-03-03
1527
1716
 
1528
- - **client:** don't output skipped tests ([da51ce6](https://github.com/wKich/creevey/commit/da51ce6f0c64a0f72f98b27ed2362135d3330665))
1529
- - **worker:** escape test path string ([694cd32](https://github.com/wKich/creevey/commit/694cd32bc737b7445f683e69e5cc044f23b0a666))
1717
+ ### Documentation
1530
1718
 
1531
- ### Features
1719
+ - ✏️ add type descriptions and update readme
1532
1720
 
1533
- - **client:** improve switcher, move start button ([50259d5](https://github.com/wKich/creevey/commit/50259d5df878edeb3fbff5d511c635276acef207))
1534
- - **server:** allow define uniq options for each browser ([4280a32](https://github.com/wKich/creevey/commit/4280a326859ece52701fc5802cab7b3b9a65ec8f))
1721
+ ### Fixed
1535
1722
 
1536
- ## [0.0.5](https://github.com/wKich/creevey/compare/v0.0.4...v0.0.5) (2019-06-17)
1723
+ - 🐛 ie11 don't work due async fn in types.ts file
1724
+ - 🐛 register pirates hook before any compiler
1537
1725
 
1538
- ### Bug Fixes
1726
+ ### Miscellaneous
1539
1727
 
1540
- - **client:** output new images ([cb082a8](https://github.com/wKich/creevey/commit/cb082a81a6b1964c0c641b47aa868f4dbe5c5025))
1541
- - **utils:** better handle reset mouse position ([c85854d](https://github.com/wKich/creevey/commit/c85854df805ee974ef53c90d17bdcc9025076408))
1542
- - better handle reset mouse position ([f777a7b](https://github.com/wKich/creevey/commit/f777a7bec8951b60a0f4df4b5aa44221aae5f617))
1728
+ - 🤖 update deps, fix typos
1543
1729
 
1544
- ## [0.0.4](https://github.com/wKich/creevey/compare/v0.0.3...v0.0.4) (2019-06-14)
1730
+ ### Ci
1545
1731
 
1546
- ### Bug Fixes
1732
+ - 🎡 add github actions lint workflow
1733
+ ## [0.3.7] - 2020-02-20
1547
1734
 
1548
- - **client:** encode image url path ([aef999c](https://github.com/wKich/creevey/commit/aef999c9d1d824b2fbc4ace485ff16d307cddc30))
1549
- - **utils:** reset mouse position ([1f79e61](https://github.com/wKich/creevey/commit/1f79e6166d65631b7c076171926e6f3e542e0481))
1735
+ ### Added
1550
1736
 
1551
- ### Features
1737
+ - 🎸 add onClick on teststatus for filter
1552
1738
 
1553
- - **client:** update suites statues ([ace43df](https://github.com/wKich/creevey/commit/ace43dffb9d2f1207679f6c724d9fb434a225d82))
1739
+ ### Changed
1554
1740
 
1555
- ## [0.0.3](https://github.com/wKich/creevey/compare/v0.0.2...v0.0.3) (2019-06-03)
1741
+ - 💡 mv parcing in sidebarheader, add functionfor click
1742
+ - 💡 simplify status filter handling
1556
1743
 
1557
- ### Bug Fixes
1744
+ ### Fixed
1558
1745
 
1559
- - **runner:** parallel test running ([4931127](https://github.com/wKich/creevey/commit/4931127c3c4086c79a833dafc782eff9d369996b))
1560
- - **server:** browser config merge ([3d3dc2a](https://github.com/wKich/creevey/commit/3d3dc2aa7853886fcecdfd8863b4a3d9e2f94f78))
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))
1746
+ - 🐛 fix bug with sync call onCompare
1563
1747
 
1564
- ### Features
1748
+ ### Miscellaneous
1565
1749
 
1566
- - **client:** add `BlendView` component ([5da4a8d](https://github.com/wKich/creevey/commit/5da4a8d5e8ea36ce8e1f45cd1eeed2cdfb33935d))
1567
- - **client:** add `SlideView` component ([dda0aa9](https://github.com/wKich/creevey/commit/dda0aa9f8253d9a446e4b2f5129334a941638dd3))
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))
1750
+ - 🤖 remove underline of test status button
1751
+ - 🤖 update deps
1573
1752
 
1574
- ## [0.0.2](https://github.com/wKich/creevey/compare/v0.0.1...v0.0.2) (2019-05-29)
1753
+ ### Testing
1575
1754
 
1576
- ### Features
1755
+ - 💍 fix screenshot tests, and approve chrome diff color
1756
+ ## [0.3.6] - 2020-02-17
1577
1757
 
1578
- - **worker:** add reporter mvp ([ead4e91](https://github.com/wKich/creevey/commit/ead4e911de04cfd857f83e5e77b921b425b25513))
1758
+ ### Fixed
1579
1759
 
1580
- ## [0.0.1](https://github.com/wKich/creevey/compare/8e42cec432747648018c1c06447b3530c971a7e4...v0.0.1) (2019-05-21)
1760
+ - 🐛 output error message while init for master process
1761
+ - Ignore various non-js extensions on story load
1581
1762
 
1582
- ### Bug Fixes
1763
+ ### Miscellaneous
1583
1764
 
1584
- - **client:** handle start/stop messages ([6aac604](https://github.com/wKich/creevey/commit/6aac6048d3130c5f85026ee9051f6090dff6164b))
1585
- - **runner:** retries condition ([e8a2e2f](https://github.com/wKich/creevey/commit/e8a2e2f05d4e60ad0cee380d39adc6f791d94d26))
1586
- - **server:** served static path ([8893555](https://github.com/wKich/creevey/commit/8893555f8c94c986e4869f12f55be23fbfcaacc3))
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))
1765
+ - 🤖 update todos
1766
+ ## [0.3.5] - 2020-02-11
1593
1767
 
1594
- ### Features
1768
+ ### Changed
1769
+
1770
+ - 💡 chai-images to be more reusable
1771
+
1772
+ ### Fixed
1773
+
1774
+ - 🐛 remove mkdirp dependency
1775
+ - 🐛 don't mutate test scope on image assertion
1776
+ - 🐛 don't show tests without status by status filter
1777
+ - 🐛 improve configs load process
1778
+ - 🐛 support windows paths to load storybook, disable debug
1779
+ - 🐛 support renamed stories
1780
+ - Correct handle process errors for worker
1781
+
1782
+ ### Miscellaneous
1783
+
1784
+ - 🤖 update deps
1785
+ - 🤖 update deps
1786
+ - 🤖 update deps
1787
+ ## [0.3.4] - 2020-01-17
1788
+
1789
+ ### Added
1790
+
1791
+ - 🎸 improve stories initialization speed
1792
+ - 🎸 allow pass diff options to pixelmatch
1793
+
1794
+ ### Fixed
1795
+
1796
+ - 🐛 improve fast-loading, throw non-syntax errors on require
1797
+ ## [0.3.3] - 2020-01-16
1798
+
1799
+ ### Fixed
1800
+
1801
+ - 🐛 add hint for images preview
1802
+ - 🐛 move mocha typing to devDeps
1803
+
1804
+ ### Miscellaneous
1805
+
1806
+ - 🤖 update immer to 5.3.2
1807
+ ## [0.3.2] - 2020-01-15
1808
+
1809
+ ### Fixed
1810
+
1811
+ - 🐛 initiate browser after all stories has been loaded
1812
+
1813
+ ### Miscellaneous
1814
+
1815
+ - 🤖 update some deps
1816
+ ## [0.3.1] - 2020-01-13
1817
+
1818
+ ### Fixed
1819
+
1820
+ - 🐛 require config when path don't have extension
1821
+ - 🐛 capture screenshot of element with non-integer size
1822
+ ## [0.3.0] - 2020-01-10
1823
+
1824
+ ### Added
1825
+
1826
+ - 🎸 remove support explicit test cases
1827
+
1828
+ ### Documentation
1829
+
1830
+ - ✏️ update TODO.md
1831
+ ## [0.2.6] - 2020-01-10
1832
+
1833
+ ### Added
1834
+
1835
+ - 🎸 add `tests` story parameter for public usage
1836
+ - 🎸 add `toMatchImages` assertion for chai
1837
+ ## [0.2.5] - 2020-01-10
1838
+
1839
+ ### Added
1840
+
1841
+ - 🎸 add `reportDir/screenDir` cli options
1842
+ - 🎸 load stories in nodejs and generate tests in runtime
1843
+
1844
+ ### Fixed
1845
+
1846
+ - 🐛 correct work update with new report structure
1847
+
1848
+ ### Miscellaneous
1849
+
1850
+ - 🤖 update deps
1851
+ - 🤖 downgrade @types/node
1852
+ ## [0.2.4] - 2019-12-23
1853
+
1854
+ ### Fixed
1855
+
1856
+ - 🐛 don't use webdriver object serialization
1857
+ - 🐛 convert export story names to storybook format
1858
+ ## [0.2.3] - 2019-12-19
1859
+
1860
+ ### Fixed
1861
+
1862
+ - 🐛 wrap long suite/test titles
1863
+ - 🐛 allow skip tests by kinds
1864
+
1865
+ ### Miscellaneous
1866
+
1867
+ - 🤖 update deps
1868
+ ## [0.2.2] - 2019-12-11
1869
+
1870
+ ### Fixed
1871
+
1872
+ - 🐛 correct publish artifacts for TeamCity reporter
1873
+ ## [0.2.1] - 2019-12-11
1874
+
1875
+ ### Documentation
1876
+
1877
+ - ✏️ update todos
1878
+
1879
+ ### Fixed
1880
+
1881
+ - 🐛 correct report teamcity artifacts
1882
+ - 🐛 allow click on checkbox in sidebar
1883
+ - 🐛 firefox SlideView
1884
+
1885
+ ### Miscellaneous
1886
+
1887
+ - 🤖 update deps
1888
+
1889
+ ### Testing
1890
+
1891
+ - 💍 add SideBar screenshot tests
1892
+ ## [0.2.0] - 2019-12-05
1893
+
1894
+ ### Added
1895
+
1896
+ - 🎸 update SideBar markup by prototype
1897
+ - 🎸 improve markup for ResultPage by prototypes
1898
+ - View tests results count in sidebar
1899
+ - 🎸 sticky SideBar with sitcky header
1900
+ - 🎸 output penging tests count
1901
+ - Swap images buttons by prototype
1902
+
1903
+ ### Changed
1904
+
1905
+ - 💡 split views, rename some types, update typescript
1906
+ - 💡 creevey app on hooks
1907
+ - 💡 eslint fix all errors
1908
+ - 💡 improve ImagePreview, simplify ResultsPage
1909
+
1910
+ ### Fixed
1911
+
1912
+ - 🐛 improve SideBar tests view
1913
+ - 🐛 switch between tests
1914
+ - 🐛 a lot of bugs with views, approve and more
1915
+ - Tests status move down, when scroll is shown
1916
+ - 🐛 ImagesView correctly resize image in most cases
1917
+
1918
+ ### Miscellaneous
1919
+
1920
+ - 🤖 add prettier and lint-staged
1921
+ - 🤖 add eslint config
1922
+ - 🤖 update deps
1923
+ - 🤖 update eslint config
1924
+ - 🤖 add md/json files to lint-staged
1925
+ - 🤖 update deps
1926
+ - 🤖 update todos, use immer as devDeps
1927
+
1928
+ ### Styling
1929
+
1930
+ - 💄 apply prettier formatting
1931
+ - 💄 reformat root files
1932
+ ## [0.1.7] - 2019-11-22
1933
+
1934
+ ### Added
1935
+
1936
+ - 🎸 allow skip test stories by kinds
1937
+ ## [0.1.6] - 2019-11-22
1938
+
1939
+ ### Fixed
1940
+
1941
+ - 🐛 significantly improve perfomance
1942
+ - 🐛 output correct reported screenshot path for teamcity
1943
+ - 🐛 handle regexp skip options
1944
+ ## [0.1.5] - 2019-11-20
1945
+
1946
+ ### Added
1947
+
1948
+ - 🎸 support write tests inside stories
1949
+
1950
+ ### Fixed
1951
+
1952
+ - 🐛 require stories in nodejs env
1953
+
1954
+ ### Miscellaneous
1955
+
1956
+ - 🤖 rename .babelrc
1957
+ ## [0.1.4] - 2019-11-18
1958
+
1959
+ ### Fixed
1960
+
1961
+ - **utils:** Try resolve ip only if address is localhost
1962
+ - **utils:** Improve error message when storybook page not available
1963
+ - **worker:** Exit master process if worker couldn't start
1964
+ - **master:** Dont output skipped tests
1965
+
1966
+ ### Miscellaneous
1967
+
1968
+ - 🤖 add commitizen cli, setup git pre-commit hook
1969
+
1970
+ ### Build
1971
+
1972
+ - Update deps
1973
+ ## [0.1.3] - 2019-11-07
1974
+
1975
+ ### Fixed
1976
+
1977
+ - **storybook:** Correct fill params for old storybook
1978
+ ## [0.1.2] - 2019-11-07
1979
+
1980
+ ### Fixed
1981
+
1982
+ - **storybook:** Read prop of undefined
1983
+ ## [0.1.1] - 2019-11-07
1984
+
1985
+ ### Fixed
1986
+
1987
+ - **utils:** Replace ip resolver back
1988
+ ## [0.1.0] - 2019-11-07
1989
+
1990
+ ### Added
1991
+
1992
+ - Simplify images directory
1993
+
1994
+ ### Build
1995
+
1996
+ - Update deps
1997
+ ## [0.0.30] - 2019-11-05
1998
+
1999
+ ### Added
2000
+
2001
+ - **storybook:** Disable animations for webdriver
2002
+
2003
+ ### Changed
2004
+
2005
+ - **storybook:** Prepare story params for serialization
2006
+
2007
+ ### Build
2008
+
2009
+ - Update deps
2010
+ - Update deps
2011
+ - Update .npmignore
2012
+ ## [0.0.29] - 2019-10-11
2013
+
2014
+ ### Documentation
2015
+
2016
+ - Rewrite TODO.md
2017
+
2018
+ ### Fixed
2019
+
2020
+ - **storybook:** Ie11 hot-reload
2021
+ ## [0.0.28] - 2019-10-09
2022
+
2023
+ ### Fixed
2024
+
2025
+ - **storybook:** Dont consider scroll while capture element
2026
+
2027
+ ### Build
2028
+
2029
+ - Update deps
2030
+ ## [0.0.27] - 2019-10-07
2031
+
2032
+ ### Fixed
2033
+
2034
+ - **storybook:** Chrome serialization stories error
2035
+ ## [0.0.26] - 2019-10-07
2036
+
2037
+ ### Fixed
2038
+
2039
+ - **storybook:** Chrome serialization stories error
2040
+ ## [0.0.25] - 2019-10-04
2041
+
2042
+ ### Added
2043
+
2044
+ - Output removed tests status
2045
+ - Generate tests from stories in runtime
2046
+ - **storybook:** Pass creevey story parameters
2047
+ - Make testDir optional
2048
+ - **worker:** Support creevey skip story option
2049
+ - Support composite images
2050
+
2051
+ ### Changed
2052
+
2053
+ - Rename address to storybookUrl
2054
+ - Rename global storybook hooks
2055
+
2056
+ ### Documentation
2057
+
2058
+ - Update README.md
2059
+ - Simplify readme
2060
+ - Update TODO.md
2061
+
2062
+ ### Fixed
2063
+
2064
+ - Few types issues
2065
+ - **storybook:** Make parameters optional
2066
+ - Correct convert kind/story into storyId
2067
+ - **runner:** Mark removed tests as skiped
2068
+ - **runner:** Support skip story option
2069
+ - **storybook:** Hide scroll while screenshot, few issues
2070
+
2071
+ ### Miscellaneous
2072
+
2073
+ - Up peer deps selenium-webdriver version
2074
+
2075
+ ### Testing
2076
+
2077
+ - Update stories format
2078
+ - Approve images
2079
+ - Fix broken unit tests
2080
+
2081
+ ### Build
2082
+
2083
+ - Update package.json
2084
+ - Update deps
2085
+ - Update deps
2086
+ ## [0.0.24] - 2019-09-16
2087
+
2088
+ ### Added
2089
+
2090
+ - More improvments
2091
+ - Support storybook kind depth levels
2092
+
2093
+ ### Changed
2094
+
2095
+ - Fix few types issues
2096
+ - Remove some unnecessary code
2097
+
2098
+ ### Build
2099
+
2100
+ - Update deps
2101
+ ## [0.0.23] - 2019-09-12
2102
+
2103
+ ### Documentation
2104
+
2105
+ - Update README.md
2106
+
2107
+ ### Fixed
2108
+
2109
+ - Export mocha/chai typings
2110
+
2111
+ ### Build
2112
+
2113
+ - SkipLibCheck for storybook<=5.1.x
2114
+ ## [0.0.22] - 2019-09-11
2115
+
2116
+ ### Added
2117
+
2118
+ - **cli:** Add `update` option for batch approve
2119
+ - Add storybook decorator
2120
+ - Remove mocha-ui
2121
+
2122
+ ### Changed
2123
+
2124
+ - **ImagesView:** Reexport, build url on parent component
2125
+ - Move unit tests into separate dir
2126
+ - Rename stories
2127
+ - Optimize building
2128
+
2129
+ ### Documentation
2130
+
2131
+ - Update TODO.md
2132
+
2133
+ ### Fixed
2134
+
2135
+ - Optional hooks, fix default testRegex
2136
+ - **server:** Pass args to parser, skip folders while copy static
2137
+ - **storybook:** Improve export and types
2138
+ - **storybook:** Support storybook@3.x
2139
+ - Set-value vulnerability CVE-2019-10747
2140
+
2141
+ ### Testing
2142
+
2143
+ - Fix broken typings
2144
+ - Use creevey to test by youself
2145
+
2146
+ ### Build
2147
+
2148
+ - Add storybook
2149
+ - Update git/npm ignore files
2150
+ - Update deps
2151
+ ## [0.0.21] - 2019-08-30
2152
+
2153
+ ### Fixed
2154
+
2155
+ - **ImagesView:** Improve view for side-by-side view component
2156
+ - **pool:** Improve restart workers process
2157
+
2158
+ ### Build
2159
+
2160
+ - **deps:** Bump mixin-deep from 1.3.1 to 1.3.2
2161
+ ## [0.0.20] - 2019-08-27
2162
+
2163
+ ### Added
2164
+
2165
+ - **client:** Fit large images into sidepage
2166
+
2167
+ ### Fixed
2168
+
2169
+ - **client:** Better output error message
2170
+ - **pool:** Correct retry tests by timeout
2171
+
2172
+ ### Miscellaneous
2173
+
2174
+ - Update TODO.md
2175
+ ## [0.0.19] - 2019-08-21
2176
+
2177
+ ### Fixed
2178
+
2179
+ - **reporter:** Try to fix parallel output on teamcity
2180
+ ## [0.0.18] - 2019-08-21
2181
+
2182
+ ### Fixed
2183
+
2184
+ - **reporter:** Try to fix parallel output on teamcity
2185
+ ## [0.0.17] - 2019-08-21
2186
+
2187
+ ### Fixed
2188
+
2189
+ - **reporter:** Try to fix parallel output on teamcity
2190
+ ## [0.0.16] - 2019-08-21
2191
+
2192
+ ### Fixed
2193
+
2194
+ - **reporter:** Output full filepath in metadata
2195
+ ## [0.0.15] - 2019-08-21
2196
+
2197
+ ### Added
2198
+
2199
+ - **runner:** Allow setup browser resolution
2200
+ - **reporter:** Output image as test metadata
2201
+
2202
+ ### Fixed
2203
+
2204
+ - **reporter:** Output correct test name in teamcity
2205
+ ## [0.0.14] - 2019-08-21
2206
+
2207
+ ### Changed
2208
+
2209
+ - **chai-image:** Update types for chai
2210
+
2211
+ ### Build
2212
+
2213
+ - **deps:** Bump lodash from 4.17.11 to 4.17.14
2214
+ - Update deps
2215
+ ## [0.0.13] - 2019-07-01
2216
+
2217
+ ### Fixed
2218
+
2219
+ - **worker:** Correct `retries` prop name
2220
+ ## [0.0.12] - 2019-07-01
2221
+
2222
+ ### Fixed
2223
+
2224
+ - **server:** Pass TC version to envs worker
2225
+ ## [0.0.11] - 2019-07-01
2226
+
2227
+ ### Fixed
2228
+
2229
+ - **reporter:** Output retry test as passed for tc
2230
+ ## [0.0.10] - 2019-06-26
2231
+
2232
+ ### Fixed
2233
+
2234
+ - **runner:** Send stop event
2235
+ ## [0.0.9] - 2019-06-26
2236
+
2237
+ ### Added
2238
+
2239
+ - **chai-image:** Allow pass `threshold` option
2240
+ - **reporter:** Add `chalk` to color output
2241
+ ## [0.0.8] - 2019-06-25
2242
+
2243
+ ### Changed
2244
+
2245
+ - **client:** Update pending icon
2246
+
2247
+ ### Fixed
2248
+
2249
+ - **worker:** Send error message on fail, restart on timeout
2250
+ ## [0.0.7] - 2019-06-24
2251
+
2252
+ ### Added
2253
+
2254
+ - **client:** Output disabled skiped tests
2255
+
2256
+ ### Fixed
2257
+
2258
+ - **server:** Set `skip` flag require
2259
+ - **parser:** Don't include ignored tests
2260
+ - **chai-image:** Enable anti-aliasing for pixelmatch
2261
+ - **worker:** Patch mocha to support skip tests for browser
2262
+ ## [0.0.6] - 2019-06-20
2263
+
2264
+ ### Added
2265
+
2266
+ - **client:** Improve switcher, move start button
2267
+ - **server:** Allow define uniq options for each browser
2268
+
2269
+ ### Changed
2270
+
2271
+ - **TestTree:** Open root suite by default
2272
+
2273
+ ### Fixed
2274
+
2275
+ - **worker:** Escape test path string
2276
+ - **client:** Don't output skipped tests
2277
+
2278
+ ### Miscellaneous
2279
+
2280
+ - **client:** Add open sans font
2281
+
2282
+ ### Build
2283
+
2284
+ - Update to unstable react-ui
2285
+ ## [0.0.5] - 2019-06-17
2286
+
2287
+ ### Fixed
2288
+
2289
+ - Better handle reset mouse position
2290
+ - **client:** Output new images
2291
+ - **utils:** Better handle reset mouse position
2292
+ ## [0.0.4] - 2019-06-14
2293
+
2294
+ ### Added
2295
+
2296
+ - **client:** Update suites statues
2297
+
2298
+ ### Fixed
2299
+
2300
+ - **utils:** Reset mouse position
2301
+ - **client:** Encode image url path
2302
+
2303
+ ### Testing
2304
+
2305
+ - Fix broken typings
2306
+
2307
+ ### Build
2308
+
2309
+ - Update deps
2310
+ ## [0.0.3] - 2019-06-03
2311
+
2312
+ ### Added
2313
+
2314
+ - **client:** Output test error message
2315
+ - **server:** Better handle ws messages
2316
+ - Render approved images
2317
+ - **client:** Use `emotion` for styles
2318
+ - **client:** Add different image views
2319
+ - **client:** Add `SlideView` component
2320
+ - **client:** Add `BlendView` component
2321
+
2322
+ ### Changed
2323
+
2324
+ - **client:** Rename `TogetherView` -> `SideBySideView`
2325
+
2326
+ ### Fixed
2327
+
2328
+ - **server:** Browser config merge
2329
+ - **runner:** Parallel test running
2330
+ - **worker:** Improve test reporter
2331
+ - **server:** Restart worker on error
2332
+
2333
+ ### Miscellaneous
2334
+
2335
+ - Update TODO.md
2336
+
2337
+ ### Build
2338
+
2339
+ - Fix deps and npmignore
2340
+ - Update deps
2341
+ ## [0.0.2] - 2019-05-29
2342
+
2343
+ ### Added
2344
+
2345
+ - **worker:** Add reporter mvp
2346
+ ## [0.0.1] - 2019-05-21
1595
2347
 
1596
- - **chai-image:** save images in multiple runs ([96d1229](https://github.com/wKich/creevey/commit/96d12299238834d9731e65def930ed2c0a65c6e4))
1597
- - **client:** add results view component ([a1a0d34](https://github.com/wKich/creevey/commit/a1a0d34f8db5dd89fa69863c62a7d04b795b1958))
1598
- - **server:** add `ui` flag, wait workers ready event ([3608974](https://github.com/wKich/creevey/commit/3608974468daa1958beb5d156269da280b38f586))
1599
- - **server:** allow to use custom reporter ([f778dee](https://github.com/wKich/creevey/commit/f778dee187f1255169e97d7eb1f490c978d7feae))
1600
- - **server:** offline mode mvp, copy static ([fb609e6](https://github.com/wKich/creevey/commit/fb609e6e1bf1a864e412b42f70bf1dbd0cba89e1))
1601
- - **server:** save/load test report ([08a5fd9](https://github.com/wKich/creevey/commit/08a5fd9ec4dd8be6833bcd42d8685c9af94514c1))
1602
- - **server:** use cluster fork instead preprocessors ([6a1136b](https://github.com/wKich/creevey/commit/6a1136be5b9dcac285af1c500d344c079ba70325))
1603
- - allow approve images from ui ([86335f1](https://github.com/wKich/creevey/commit/86335f119c5fef35e783242c0670b4293243cb45))
1604
- - **server:** send status with images ([da92d7c](https://github.com/wKich/creevey/commit/da92d7c86e05558dc17cabc59c555a7062677460))
1605
- - **server:** serve static images from report dir ([f0817fd](https://github.com/wKich/creevey/commit/f0817fd8cd20822227438545497624df02797a93))
1606
- - **TestResultView:** render result images ([991148e](https://github.com/wKich/creevey/commit/991148e0cbf060fbd3bb0ec60fbf02dd7bc3e2a9))
1607
- - initial version ([8e42cec](https://github.com/wKich/creevey/commit/8e42cec432747648018c1c06447b3530c971a7e4))
2348
+ ### Added
2349
+
2350
+ - Initial version
2351
+ - **chai-image:** Save images in multiple runs
2352
+ - **server:** Send status with images
2353
+ - **client:** Add results view component
2354
+ - **TestResultView:** Render result images
2355
+ - **server:** Serve static images from report dir
2356
+ - Allow approve images from ui
2357
+ - **server:** Save/load test report
2358
+ - **server:** Use cluster fork instead preprocessors
2359
+ - **server:** Offline mode mvp, copy static
2360
+ - **server:** Add `ui` flag, wait workers ready event
2361
+ - **server:** Allow to use custom reporter
2362
+
2363
+ ### Changed
2364
+
2365
+ - Send on client flat tests structure
2366
+ - Rename test results field
2367
+ - Use Partial generic
2368
+ - Simplify something
2369
+
2370
+ ### Documentation
2371
+
2372
+ - Updare README.md
2373
+
2374
+ ### Fixed
2375
+
2376
+ - Export types
2377
+ - **runner:** Retries condition
2378
+ - **client:** Handle start/stop messages
2379
+ - **worker:** Clean images, strong regexp for grep
2380
+ - **utils:** Change test scope path. Move browser to the last
2381
+ - **worker:** Increase mocha timeout
2382
+ - **TestRestultView:** Improve images output
2383
+ - **TestRestultView:** Always open last image
2384
+ - **server:** Served static path
2385
+
2386
+ ### Miscellaneous
2387
+
2388
+ - Move react-ui to devDeps
2389
+ - Update TODO.md
2390
+ - Update TODO.md and npmignore
2391
+
2392
+ ### Build
2393
+
2394
+ - Fix babel-preset-env options
2395
+ - Prepare for publish
2396
+
2397
+ [unreleased]: https://github.com/wKich/creevey/compare/v0.8.0-beta.0...HEAD
2398
+ [0.8.0-beta.0]: https://github.com/wKich/creevey/compare/v0.7.39...v0.8.0-beta.0
2399
+ [0.7.39]: https://github.com/wKich/creevey/compare/v0.7.38...v0.7.39
2400
+ [0.7.38]: https://github.com/wKich/creevey/compare/v0.7.37...v0.7.38
2401
+ [0.7.37]: https://github.com/wKich/creevey/compare/v0.7.36...v0.7.37
2402
+ [0.7.36]: https://github.com/wKich/creevey/compare/v0.7.35...v0.7.36
2403
+ [0.7.35]: https://github.com/wKich/creevey/compare/v0.7.34...v0.7.35
2404
+ [0.7.34]: https://github.com/wKich/creevey/compare/v0.7.33...v0.7.34
2405
+ [0.7.33]: https://github.com/wKich/creevey/compare/v0.7.32...v0.7.33
2406
+ [0.7.32]: https://github.com/wKich/creevey/compare/v0.7.31...v0.7.32
2407
+ [0.7.31]: https://github.com/wKich/creevey/compare/v0.7.30...v0.7.31
2408
+ [0.7.30]: https://github.com/wKich/creevey/compare/v0.7.29...v0.7.30
2409
+ [0.7.29]: https://github.com/wKich/creevey/compare/v0.7.28...v0.7.29
2410
+ [0.7.28]: https://github.com/wKich/creevey/compare/v0.7.27...v0.7.28
2411
+ [0.7.27]: https://github.com/wKich/creevey/compare/v0.7.26...v0.7.27
2412
+ [0.7.26]: https://github.com/wKich/creevey/compare/v0.7.25...v0.7.26
2413
+ [0.7.25]: https://github.com/wKich/creevey/compare/v0.7.24...v0.7.25
2414
+ [0.7.24]: https://github.com/wKich/creevey/compare/v0.7.23...v0.7.24
2415
+ [0.7.23]: https://github.com/wKich/creevey/compare/v0.7.22...v0.7.23
2416
+ [0.7.22]: https://github.com/wKich/creevey/compare/v0.7.21...v0.7.22
2417
+ [0.7.21]: https://github.com/wKich/creevey/compare/v0.7.20...v0.7.21
2418
+ [0.7.20]: https://github.com/wKich/creevey/compare/v0.7.19...v0.7.20
2419
+ [0.7.19]: https://github.com/wKich/creevey/compare/v0.7.18...v0.7.19
2420
+ [0.7.18]: https://github.com/wKich/creevey/compare/v0.7.17...v0.7.18
2421
+ [0.7.17]: https://github.com/wKich/creevey/compare/v0.7.16...v0.7.17
2422
+ [0.7.16]: https://github.com/wKich/creevey/compare/v0.7.15...v0.7.16
2423
+ [0.7.15]: https://github.com/wKich/creevey/compare/v0.7.14...v0.7.15
2424
+ [0.7.14]: https://github.com/wKich/creevey/compare/v0.7.13...v0.7.14
2425
+ [0.7.13]: https://github.com/wKich/creevey/compare/v0.7.12...v0.7.13
2426
+ [0.7.12]: https://github.com/wKich/creevey/compare/v0.7.11...v0.7.12
2427
+ [0.7.11]: https://github.com/wKich/creevey/compare/v0.7.10...v0.7.11
2428
+ [0.7.10]: https://github.com/wKich/creevey/compare/v0.7.9...v0.7.10
2429
+ [0.7.9]: https://github.com/wKich/creevey/compare/v0.7.8...v0.7.9
2430
+ [0.7.8]: https://github.com/wKich/creevey/compare/v0.7.7...v0.7.8
2431
+ [0.7.7]: https://github.com/wKich/creevey/compare/v0.7.6...v0.7.7
2432
+ [0.7.6]: https://github.com/wKich/creevey/compare/v0.7.5...v0.7.6
2433
+ [0.7.5]: https://github.com/wKich/creevey/compare/v0.7.4...v0.7.5
2434
+ [0.7.4]: https://github.com/wKich/creevey/compare/v0.7.3...v0.7.4
2435
+ [0.7.3]: https://github.com/wKich/creevey/compare/v0.7.2...v0.7.3
2436
+ [0.7.2]: https://github.com/wKich/creevey/compare/v0.7.1...v0.7.2
2437
+ [0.7.1]: https://github.com/wKich/creevey/compare/v0.7.0...v0.7.1
2438
+ [0.7.0]: https://github.com/wKich/creevey/compare/v0.7.0-beta.21...v0.7.0
2439
+ [0.7.0-beta.21]: https://github.com/wKich/creevey/compare/v0.7.0-beta.20...v0.7.0-beta.21
2440
+ [0.7.0-beta.20]: https://github.com/wKich/creevey/compare/v0.7.0-beta.19...v0.7.0-beta.20
2441
+ [0.7.0-beta.19]: https://github.com/wKich/creevey/compare/v0.7.0-beta.18...v0.7.0-beta.19
2442
+ [0.7.0-beta.18]: https://github.com/wKich/creevey/compare/v0.7.0-beta.17...v0.7.0-beta.18
2443
+ [0.7.0-beta.17]: https://github.com/wKich/creevey/compare/v0.7.0-beta.16...v0.7.0-beta.17
2444
+ [0.7.0-beta.16]: https://github.com/wKich/creevey/compare/v0.7.0-beta.15...v0.7.0-beta.16
2445
+ [0.7.0-beta.15]: https://github.com/wKich/creevey/compare/v0.7.0-beta.14...v0.7.0-beta.15
2446
+ [0.7.0-beta.14]: https://github.com/wKich/creevey/compare/v0.7.0-beta.13...v0.7.0-beta.14
2447
+ [0.7.0-beta.13]: https://github.com/wKich/creevey/compare/v0.7.0-beta.12...v0.7.0-beta.13
2448
+ [0.7.0-beta.12]: https://github.com/wKich/creevey/compare/v0.7.0-beta.11...v0.7.0-beta.12
2449
+ [0.7.0-beta.11]: https://github.com/wKich/creevey/compare/v0.7.0-beta.10...v0.7.0-beta.11
2450
+ [0.7.0-beta.10]: https://github.com/wKich/creevey/compare/v0.7.0-beta.9...v0.7.0-beta.10
2451
+ [0.7.0-beta.9]: https://github.com/wKich/creevey/compare/v0.7.0-beta.8...v0.7.0-beta.9
2452
+ [0.7.0-beta.8]: https://github.com/wKich/creevey/compare/v0.7.0-beta.7...v0.7.0-beta.8
2453
+ [0.7.0-beta.7]: https://github.com/wKich/creevey/compare/v0.7.0-beta.6...v0.7.0-beta.7
2454
+ [0.7.0-beta.6]: https://github.com/wKich/creevey/compare/v0.7.0-beta.5...v0.7.0-beta.6
2455
+ [0.7.0-beta.5]: https://github.com/wKich/creevey/compare/v0.7.0-beta.4...v0.7.0-beta.5
2456
+ [0.7.0-beta.4]: https://github.com/wKich/creevey/compare/v0.7.0-beta.3...v0.7.0-beta.4
2457
+ [0.7.0-beta.3]: https://github.com/wKich/creevey/compare/v0.7.0-beta.2...v0.7.0-beta.3
2458
+ [0.7.0-beta.2]: https://github.com/wKich/creevey/compare/v0.7.0-beta.1...v0.7.0-beta.2
2459
+ [0.7.0-beta.1]: https://github.com/wKich/creevey/compare/v0.7.0-beta.0...v0.7.0-beta.1
2460
+ [0.7.0-beta.0]: https://github.com/wKich/creevey/compare/v0.6.4...v0.7.0-beta.0
2461
+ [0.6.4]: https://github.com/wKich/creevey/compare/v0.6.3...v0.6.4
2462
+ [0.6.3]: https://github.com/wKich/creevey/compare/v0.6.2...v0.6.3
2463
+ [0.6.2]: https://github.com/wKich/creevey/compare/v0.6.1...v0.6.2
2464
+ [0.6.1]: https://github.com/wKich/creevey/compare/v0.6.0...v0.6.1
2465
+ [0.6.0]: https://github.com/wKich/creevey/compare/v0.6.0-beta.8...v0.6.0
2466
+ [0.6.0-beta.8]: https://github.com/wKich/creevey/compare/v0.6.0-beta.7...v0.6.0-beta.8
2467
+ [0.6.0-beta.7]: https://github.com/wKich/creevey/compare/v0.6.0-beta.6...v0.6.0-beta.7
2468
+ [0.6.0-beta.6]: https://github.com/wKich/creevey/compare/v0.6.0-beta.5...v0.6.0-beta.6
2469
+ [0.6.0-beta.5]: https://github.com/wKich/creevey/compare/v0.6.0-beta.4...v0.6.0-beta.5
2470
+ [0.6.0-beta.4]: https://github.com/wKich/creevey/compare/v0.6.0-beta.3...v0.6.0-beta.4
2471
+ [0.6.0-beta.3]: https://github.com/wKich/creevey/compare/v0.6.0-beta.2...v0.6.0-beta.3
2472
+ [0.6.0-beta.2]: https://github.com/wKich/creevey/compare/v0.6.0-beta.1...v0.6.0-beta.2
2473
+ [0.6.0-beta.1]: https://github.com/wKich/creevey/compare/v0.6.0-beta.0...v0.6.0-beta.1
2474
+ [0.6.0-beta.0]: https://github.com/wKich/creevey/compare/v0.5.6...v0.6.0-beta.0
2475
+ [0.5.6]: https://github.com/wKich/creevey/compare/v0.5.5...v0.5.6
2476
+ [0.5.5]: https://github.com/wKich/creevey/compare/v0.5.4...v0.5.5
2477
+ [0.5.4]: https://github.com/wKich/creevey/compare/v0.5.3...v0.5.4
2478
+ [0.5.3]: https://github.com/wKich/creevey/compare/v0.5.2...v0.5.3
2479
+ [0.5.2]: https://github.com/wKich/creevey/compare/v0.5.1...v0.5.2
2480
+ [0.5.1]: https://github.com/wKich/creevey/compare/v0.5.0...v0.5.1
2481
+ [0.5.0]: https://github.com/wKich/creevey/compare/v0.4.11...v0.5.0
2482
+ [0.4.11]: https://github.com/wKich/creevey/compare/v0.4.10...v0.4.11
2483
+ [0.4.10]: https://github.com/wKich/creevey/compare/v0.4.9...v0.4.10
2484
+ [0.4.9]: https://github.com/wKich/creevey/compare/v0.4.8...v0.4.9
2485
+ [0.4.8]: https://github.com/wKich/creevey/compare/v0.4.7...v0.4.8
2486
+ [0.4.7]: https://github.com/wKich/creevey/compare/v0.4.6...v0.4.7
2487
+ [0.4.6]: https://github.com/wKich/creevey/compare/v0.4.5...v0.4.6
2488
+ [0.4.5]: https://github.com/wKich/creevey/compare/v0.4.4...v0.4.5
2489
+ [0.4.4]: https://github.com/wKich/creevey/compare/v0.4.3...v0.4.4
2490
+ [0.4.3]: https://github.com/wKich/creevey/compare/v0.4.2...v0.4.3
2491
+ [0.4.2]: https://github.com/wKich/creevey/compare/v0.4.1...v0.4.2
2492
+ [0.4.1]: https://github.com/wKich/creevey/compare/v0.4.0...v0.4.1
2493
+ [0.4.0]: https://github.com/wKich/creevey/compare/v0.3.8...v0.4.0
2494
+ [0.3.8]: https://github.com/wKich/creevey/compare/v0.3.7...v0.3.8
2495
+ [0.3.7]: https://github.com/wKich/creevey/compare/v0.3.6...v0.3.7
2496
+ [0.3.6]: https://github.com/wKich/creevey/compare/v0.3.5...v0.3.6
2497
+ [0.3.5]: https://github.com/wKich/creevey/compare/v0.3.4...v0.3.5
2498
+ [0.3.4]: https://github.com/wKich/creevey/compare/v0.3.3...v0.3.4
2499
+ [0.3.3]: https://github.com/wKich/creevey/compare/v0.3.2...v0.3.3
2500
+ [0.3.2]: https://github.com/wKich/creevey/compare/v0.3.1...v0.3.2
2501
+ [0.3.1]: https://github.com/wKich/creevey/compare/v0.3.0...v0.3.1
2502
+ [0.3.0]: https://github.com/wKich/creevey/compare/v0.2.6...v0.3.0
2503
+ [0.2.6]: https://github.com/wKich/creevey/compare/v0.2.5...v0.2.6
2504
+ [0.2.5]: https://github.com/wKich/creevey/compare/v0.2.4...v0.2.5
2505
+ [0.2.4]: https://github.com/wKich/creevey/compare/v0.2.3...v0.2.4
2506
+ [0.2.3]: https://github.com/wKich/creevey/compare/v0.2.2...v0.2.3
2507
+ [0.2.2]: https://github.com/wKich/creevey/compare/v0.2.1...v0.2.2
2508
+ [0.2.1]: https://github.com/wKich/creevey/compare/v0.2.0...v0.2.1
2509
+ [0.2.0]: https://github.com/wKich/creevey/compare/v0.1.7...v0.2.0
2510
+ [0.1.7]: https://github.com/wKich/creevey/compare/v0.1.6...v0.1.7
2511
+ [0.1.6]: https://github.com/wKich/creevey/compare/v0.1.5...v0.1.6
2512
+ [0.1.5]: https://github.com/wKich/creevey/compare/v0.1.4...v0.1.5
2513
+ [0.1.4]: https://github.com/wKich/creevey/compare/v0.1.3...v0.1.4
2514
+ [0.1.3]: https://github.com/wKich/creevey/compare/v0.1.2...v0.1.3
2515
+ [0.1.2]: https://github.com/wKich/creevey/compare/v0.1.1...v0.1.2
2516
+ [0.1.1]: https://github.com/wKich/creevey/compare/v0.1.0...v0.1.1
2517
+ [0.1.0]: https://github.com/wKich/creevey/compare/v0.0.30...v0.1.0
2518
+ [0.0.30]: https://github.com/wKich/creevey/compare/v0.0.29...v0.0.30
2519
+ [0.0.29]: https://github.com/wKich/creevey/compare/v0.0.28...v0.0.29
2520
+ [0.0.28]: https://github.com/wKich/creevey/compare/v0.0.27...v0.0.28
2521
+ [0.0.27]: https://github.com/wKich/creevey/compare/v0.0.26...v0.0.27
2522
+ [0.0.26]: https://github.com/wKich/creevey/compare/v0.0.25...v0.0.26
2523
+ [0.0.25]: https://github.com/wKich/creevey/compare/v0.0.24...v0.0.25
2524
+ [0.0.24]: https://github.com/wKich/creevey/compare/v0.0.23...v0.0.24
2525
+ [0.0.23]: https://github.com/wKich/creevey/compare/v0.0.22...v0.0.23
2526
+ [0.0.22]: https://github.com/wKich/creevey/compare/v0.0.21...v0.0.22
2527
+ [0.0.21]: https://github.com/wKich/creevey/compare/v0.0.20...v0.0.21
2528
+ [0.0.20]: https://github.com/wKich/creevey/compare/v0.0.19...v0.0.20
2529
+ [0.0.19]: https://github.com/wKich/creevey/compare/v0.0.18...v0.0.19
2530
+ [0.0.18]: https://github.com/wKich/creevey/compare/v0.0.17...v0.0.18
2531
+ [0.0.17]: https://github.com/wKich/creevey/compare/v0.0.16...v0.0.17
2532
+ [0.0.16]: https://github.com/wKich/creevey/compare/v0.0.15...v0.0.16
2533
+ [0.0.15]: https://github.com/wKich/creevey/compare/v0.0.14...v0.0.15
2534
+ [0.0.14]: https://github.com/wKich/creevey/compare/v0.0.13...v0.0.14
2535
+ [0.0.13]: https://github.com/wKich/creevey/compare/v0.0.12...v0.0.13
2536
+ [0.0.12]: https://github.com/wKich/creevey/compare/v0.0.11...v0.0.12
2537
+ [0.0.11]: https://github.com/wKich/creevey/compare/v0.0.10...v0.0.11
2538
+ [0.0.10]: https://github.com/wKich/creevey/compare/v0.0.9...v0.0.10
2539
+ [0.0.9]: https://github.com/wKich/creevey/compare/v0.0.8...v0.0.9
2540
+ [0.0.8]: https://github.com/wKich/creevey/compare/v0.0.7...v0.0.8
2541
+ [0.0.7]: https://github.com/wKich/creevey/compare/v0.0.6...v0.0.7
2542
+ [0.0.6]: https://github.com/wKich/creevey/compare/v0.0.5...v0.0.6
2543
+ [0.0.5]: https://github.com/wKich/creevey/compare/v0.0.4...v0.0.5
2544
+ [0.0.4]: https://github.com/wKich/creevey/compare/v0.0.3...v0.0.4
2545
+ [0.0.3]: https://github.com/wKich/creevey/compare/v0.0.2...v0.0.3
2546
+ [0.0.2]: https://github.com/wKich/creevey/compare/v0.0.1...v0.0.2