creevey 0.10.35 → 0.10.36

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