creevey 0.9.0-beta.1 → 0.9.0-non-webpack.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/AUTHORS +15 -15
- package/CHANGELOG.md +1275 -1275
- package/LICENSE +21 -21
- package/README.md +7 -0
- package/addon/README.md +3 -0
- package/addon/package.json +4 -0
- package/docs/config.md +212 -212
- package/docs/grid.md +10 -10
- package/docs/tests.md +63 -63
- package/jest.config.js +6 -0
- package/lib/cjs/cli.js +5 -0
- package/lib/cjs/client/addon/Manager.js +418 -0
- package/lib/cjs/client/addon/components/Addon.js +76 -0
- package/lib/cjs/client/addon/components/Icons.js +42 -0
- package/lib/cjs/client/addon/components/Panel.js +68 -0
- package/lib/cjs/client/addon/components/TestSelect.js +63 -0
- package/lib/cjs/client/addon/components/Tools.js +114 -0
- package/lib/cjs/client/addon/decorator.js +11 -0
- package/lib/cjs/client/addon/index.js +31 -0
- package/lib/cjs/client/addon/preset.js +81 -0
- package/lib/cjs/client/addon/readyForCapture.js +12 -0
- package/lib/cjs/client/addon/register.js +100 -0
- package/lib/cjs/client/addon/utils.js +38 -0
- package/lib/cjs/client/addon/withCreevey.js +558 -0
- package/lib/cjs/client/shared/components/ImagesView/BlendView.js +85 -0
- package/lib/cjs/client/shared/components/ImagesView/ImagesView.js +88 -0
- package/lib/cjs/client/shared/components/ImagesView/SideBySideView.js +176 -0
- package/lib/cjs/client/shared/components/ImagesView/SlideView.js +179 -0
- package/lib/cjs/client/shared/components/ImagesView/SwapView.js +110 -0
- package/lib/cjs/client/shared/components/ImagesView/index.js +45 -0
- package/lib/cjs/client/shared/components/PageFooter/PageFooter.js +46 -0
- package/lib/cjs/client/shared/components/PageFooter/Paging.js +98 -0
- package/lib/cjs/client/shared/components/PageHeader/ImagePreview.js +78 -0
- package/lib/cjs/client/shared/components/PageHeader/PageHeader.js +144 -0
- package/lib/cjs/client/shared/components/ResultsPage.js +173 -0
- package/lib/cjs/client/shared/creeveyClientApi.js +107 -0
- package/lib/cjs/client/shared/helpers.js +482 -0
- package/lib/cjs/client/shared/viewMode.js +17 -0
- package/lib/cjs/client/web/142.js +2 -0
- package/lib/cjs/client/web/142.js.LICENSE.txt +12 -0
- package/lib/cjs/client/web/32.js +1 -0
- package/lib/cjs/client/web/551.js +1 -0
- package/lib/cjs/client/web/566.js +2 -0
- package/lib/cjs/client/web/566.js.LICENSE.txt +31 -0
- package/lib/cjs/client/web/691.js +2 -0
- package/lib/cjs/client/web/691.js.LICENSE.txt +8 -0
- package/lib/cjs/client/web/725.js +1 -0
- package/lib/cjs/client/web/index.html +19 -0
- package/lib/cjs/client/web/main.js +2 -38
- package/lib/cjs/client/web/main.js.LICENSE.txt +49 -0
- package/lib/cjs/creevey.js +69 -0
- package/lib/cjs/index.js +62 -0
- package/lib/cjs/server/config.js +96 -0
- package/lib/cjs/server/docker.js +146 -0
- package/lib/cjs/server/extract.js +50 -0
- package/lib/cjs/server/index.js +83 -0
- package/lib/cjs/server/loaders/babel/creevey-plugin.js +86 -0
- package/lib/cjs/server/loaders/babel/helpers.js +469 -0
- package/lib/cjs/server/loaders/babel/register.js +124 -0
- package/lib/cjs/server/loaders/hooks/mdx.js +30 -0
- package/lib/cjs/server/loaders/hooks/svelte.js +65 -0
- package/lib/cjs/server/loaders/webpack/compile.js +293 -0
- package/lib/cjs/server/loaders/webpack/creevey-loader.js +179 -0
- package/lib/cjs/server/loaders/webpack/dummy-hmr.js +39 -0
- package/lib/cjs/server/loaders/webpack/mdx-loader.js +72 -0
- package/lib/cjs/server/loaders/webpack/start.js +41 -0
- package/lib/cjs/server/logger.js +48 -0
- package/lib/cjs/server/master/api.js +71 -0
- package/lib/cjs/server/master/index.js +146 -0
- package/lib/cjs/server/master/master.js +57 -0
- package/lib/cjs/server/master/pool.js +197 -0
- package/lib/cjs/server/master/runner.js +281 -0
- package/lib/cjs/server/master/server.js +129 -0
- package/lib/cjs/server/messages.js +264 -0
- package/lib/cjs/server/selenium/browser.js +672 -0
- package/lib/cjs/server/selenium/index.js +31 -0
- package/lib/cjs/server/selenium/selenoid.js +172 -0
- package/lib/cjs/server/stories.js +159 -0
- package/lib/cjs/server/storybook/entry.js +70 -0
- package/lib/cjs/server/storybook/helpers.js +159 -0
- package/lib/cjs/server/storybook/providers/browser.js +74 -0
- package/lib/cjs/server/storybook/providers/hybrid.js +84 -0
- package/lib/cjs/server/storybook/providers/nodejs.js +239 -0
- package/lib/cjs/server/testsFiles/parser.js +72 -0
- package/lib/cjs/server/testsFiles/register.js +48 -0
- package/lib/cjs/server/update.js +79 -0
- package/lib/cjs/server/utils.js +183 -0
- package/lib/cjs/server/worker/chai-image.js +142 -0
- package/lib/cjs/server/worker/helpers.js +69 -0
- package/lib/cjs/server/worker/index.js +15 -0
- package/lib/cjs/server/worker/reporter.js +108 -0
- package/lib/cjs/server/worker/worker.js +268 -0
- package/lib/cjs/shared/index.js +89 -0
- package/lib/cjs/shared/serializeRegExp.js +41 -0
- package/lib/cjs/types.js +74 -0
- package/lib/esm/cli.js +4 -0
- package/lib/esm/client/addon/Manager.js +402 -0
- package/lib/esm/client/addon/components/Addon.js +58 -0
- package/lib/esm/client/addon/components/Icons.js +27 -0
- package/lib/esm/client/addon/components/Panel.js +49 -0
- package/lib/esm/client/addon/components/TestSelect.js +49 -0
- package/lib/esm/client/addon/components/Tools.js +91 -0
- package/lib/esm/client/addon/decorator.js +2 -0
- package/lib/esm/client/addon/index.js +2 -0
- package/lib/esm/client/addon/preset.js +56 -0
- package/lib/esm/client/addon/readyForCapture.js +5 -0
- package/lib/esm/client/addon/register.js +79 -0
- package/lib/esm/client/addon/utils.js +31 -0
- package/lib/esm/client/addon/withCreevey.js +534 -0
- package/lib/esm/client/shared/components/ImagesView/BlendView.js +63 -0
- package/lib/esm/client/shared/components/ImagesView/ImagesView.js +65 -0
- package/lib/esm/client/shared/components/ImagesView/SideBySideView.js +151 -0
- package/lib/esm/client/shared/components/ImagesView/SlideView.js +154 -0
- package/lib/esm/client/shared/components/ImagesView/SwapView.js +88 -0
- package/lib/esm/client/shared/components/ImagesView/index.js +5 -0
- package/lib/esm/client/shared/components/PageFooter/PageFooter.js +32 -0
- package/lib/esm/client/shared/components/PageFooter/Paging.js +84 -0
- package/lib/esm/client/shared/components/PageHeader/ImagePreview.js +64 -0
- package/lib/esm/client/shared/components/PageHeader/PageHeader.js +120 -0
- package/lib/esm/client/shared/components/ResultsPage.js +143 -0
- package/lib/esm/client/shared/creeveyClientApi.js +98 -0
- package/lib/esm/client/shared/helpers.js +424 -0
- package/lib/esm/client/shared/viewMode.js +6 -0
- package/lib/esm/creevey.js +54 -0
- package/lib/esm/index.js +5 -0
- package/lib/esm/server/config.js +73 -0
- package/lib/esm/server/docker.js +123 -0
- package/lib/esm/server/extract.js +34 -0
- package/lib/esm/server/index.js +64 -0
- package/lib/esm/server/loaders/babel/creevey-plugin.js +72 -0
- package/lib/esm/server/loaders/babel/helpers.js +452 -0
- package/lib/esm/server/loaders/babel/register.js +103 -0
- package/lib/esm/server/loaders/hooks/mdx.js +15 -0
- package/lib/esm/server/loaders/hooks/svelte.js +49 -0
- package/lib/esm/server/loaders/webpack/compile.js +270 -0
- package/lib/esm/server/loaders/webpack/creevey-loader.js +158 -0
- package/lib/esm/server/loaders/webpack/dummy-hmr.js +32 -0
- package/lib/esm/server/loaders/webpack/mdx-loader.js +58 -0
- package/lib/esm/server/loaders/webpack/start.js +27 -0
- package/lib/esm/server/logger.js +20 -0
- package/lib/esm/server/master/api.js +60 -0
- package/lib/esm/server/master/index.js +125 -0
- package/lib/esm/server/master/master.js +38 -0
- package/lib/esm/server/master/pool.js +176 -0
- package/lib/esm/server/master/runner.js +259 -0
- package/lib/esm/server/master/server.js +105 -0
- package/lib/esm/server/messages.js +232 -0
- package/lib/esm/server/selenium/browser.js +639 -0
- package/lib/esm/server/selenium/index.js +2 -0
- package/lib/esm/server/selenium/selenoid.js +149 -0
- package/lib/esm/server/stories.js +140 -0
- package/lib/esm/server/storybook/entry.js +46 -0
- package/lib/esm/server/storybook/helpers.js +98 -0
- package/lib/esm/server/storybook/providers/browser.js +60 -0
- package/lib/esm/server/storybook/providers/hybrid.js +64 -0
- package/lib/esm/server/storybook/providers/nodejs.js +217 -0
- package/lib/esm/server/testsFiles/parser.js +50 -0
- package/lib/esm/server/testsFiles/register.js +35 -0
- package/lib/esm/server/update.js +61 -0
- package/lib/esm/server/utils.js +142 -0
- package/lib/esm/server/worker/chai-image.js +130 -0
- package/lib/esm/server/worker/helpers.js +60 -0
- package/lib/esm/server/worker/index.js +1 -0
- package/lib/esm/server/worker/reporter.js +86 -0
- package/lib/esm/server/worker/worker.js +238 -0
- package/lib/esm/shared/index.js +66 -0
- package/lib/esm/shared/serializeRegExp.js +23 -0
- package/lib/esm/types.js +43 -0
- package/lib/types/cli.d.ts +1 -1
- package/lib/types/client/addon/Manager.d.ts +37 -37
- package/lib/types/client/addon/components/Addon.d.ts +8 -8
- package/lib/types/client/addon/components/Icons.d.ts +7 -7
- package/lib/types/client/addon/components/Panel.d.ts +9 -9
- package/lib/types/client/addon/components/TestSelect.d.ts +8 -9
- package/lib/types/client/addon/components/Tools.d.ts +6 -6
- package/lib/types/client/addon/decorator.d.ts +1 -1
- package/lib/types/client/addon/index.d.ts +2 -0
- package/lib/types/client/addon/preset.d.ts +23 -24
- package/lib/types/client/addon/readyForCapture.d.ts +6 -6
- package/lib/types/client/addon/register.d.ts +3 -3
- package/lib/types/client/addon/utils.d.ts +2 -2
- package/lib/types/client/addon/withCreevey.d.ts +24 -24
- package/lib/types/client/shared/components/ImagesView/BlendView.d.ts +3 -3
- package/lib/types/client/shared/components/ImagesView/ImagesView.d.ts +24 -25
- package/lib/types/client/shared/components/ImagesView/SideBySideView.d.ts +3 -3
- package/lib/types/client/shared/components/ImagesView/SlideView.d.ts +3 -3
- package/lib/types/client/shared/components/ImagesView/SwapView.d.ts +3 -3
- package/lib/types/client/shared/components/ImagesView/index.d.ts +5 -5
- package/lib/types/client/shared/components/PageFooter/PageFooter.d.ts +8 -9
- package/lib/types/client/shared/components/PageFooter/Paging.d.ts +7 -8
- package/lib/types/client/shared/components/PageHeader/ImagePreview.d.ts +12 -12
- package/lib/types/client/shared/components/PageHeader/PageHeader.d.ts +16 -17
- package/lib/types/client/shared/components/ResultsPage.d.ts +18 -18
- package/lib/types/client/shared/creeveyClientApi.d.ts +9 -9
- package/lib/types/client/shared/helpers.d.ts +46 -46
- package/lib/types/client/shared/viewMode.d.ts +4 -4
- package/lib/types/client/web/CreeveyApp.d.ts +11 -12
- package/lib/types/client/web/CreeveyContext.d.ts +11 -11
- package/lib/types/client/web/CreeveyLoader.d.ts +2 -3
- package/lib/types/client/web/CreeveyView/SideBar/Checkbox.d.ts +19 -19
- package/lib/types/client/web/CreeveyView/SideBar/Search.d.ts +6 -6
- package/lib/types/client/web/CreeveyView/SideBar/SideBar.d.ts +14 -14
- package/lib/types/client/web/CreeveyView/SideBar/SideBarHeader.d.ts +12 -13
- package/lib/types/client/web/CreeveyView/SideBar/SuiteLink.d.ts +33 -33
- package/lib/types/client/web/CreeveyView/SideBar/TestLink.d.ts +7 -8
- package/lib/types/client/web/CreeveyView/SideBar/TestStatusIcon.d.ts +10 -10
- package/lib/types/client/web/CreeveyView/SideBar/TestsStatus.d.ts +9 -9
- package/lib/types/client/web/CreeveyView/SideBar/Toggle.d.ts +6 -6
- package/lib/types/client/web/CreeveyView/SideBar/index.d.ts +1 -1
- package/lib/types/client/web/KeyboardEventsContext.d.ts +13 -13
- package/lib/types/client/web/index.d.ts +4 -4
- package/lib/types/creevey.d.ts +1 -1
- package/lib/types/index.d.ts +1 -4
- package/lib/types/server/config.d.ts +4 -4
- package/lib/types/server/docker.d.ts +7 -7
- package/lib/types/server/extract.d.ts +2 -2
- package/lib/types/server/index.d.ts +2 -2
- package/lib/types/server/loaders/babel/creevey-plugin.d.ts +1 -1
- package/lib/types/server/loaders/babel/helpers.d.ts +19 -19
- package/lib/types/server/loaders/babel/register.d.ts +5 -5
- package/lib/types/server/loaders/hooks/mdx.d.ts +1 -1
- package/lib/types/server/loaders/hooks/svelte.d.ts +1 -1
- package/lib/types/server/loaders/webpack/compile.d.ts +2 -2
- package/lib/types/server/loaders/webpack/creevey-loader.d.ts +4 -2
- package/lib/types/server/loaders/webpack/dummy-hmr.d.ts +10 -10
- package/lib/types/server/loaders/webpack/mdx-loader.d.ts +6 -6
- package/lib/types/server/loaders/webpack/start.d.ts +1 -1
- package/lib/types/server/logger.d.ts +10 -6
- package/lib/types/server/master/api.d.ts +7 -7
- package/lib/types/server/master/index.d.ts +3 -3
- package/lib/types/server/master/master.d.ts +7 -7
- package/lib/types/server/master/pool.d.ts +31 -31
- package/lib/types/server/master/runner.d.ts +26 -26
- package/lib/types/server/master/server.d.ts +2 -2
- package/lib/types/server/messages.d.ts +27 -27
- package/lib/types/server/selenium/browser.d.ts +17 -17
- package/lib/types/server/selenium/index.d.ts +2 -2
- package/lib/types/server/selenium/selenoid.d.ts +3 -3
- package/lib/types/server/stories.d.ts +8 -8
- package/lib/types/server/storybook/entry.d.ts +18 -18
- package/lib/types/server/storybook/helpers.d.ts +24 -24
- package/lib/types/server/storybook/providers/browser.d.ts +4 -4
- package/lib/types/server/storybook/providers/hybrid.d.ts +4 -4
- package/lib/types/server/storybook/providers/nodejs.d.ts +9 -9
- package/lib/types/server/testsFiles/parser.d.ts +12 -12
- package/lib/types/server/testsFiles/register.d.ts +2 -2
- package/lib/types/server/update.d.ts +2 -2
- package/lib/types/server/utils.d.ts +20 -20
- package/lib/types/server/worker/chai-image.d.ts +6 -6
- package/lib/types/server/worker/helpers.d.ts +8 -8
- package/lib/types/server/worker/index.d.ts +1 -1
- package/lib/types/server/worker/reporter.d.ts +8 -8
- package/lib/types/server/worker/worker.d.ts +4 -4
- package/lib/types/{shared.d.ts → shared/index.d.ts} +7 -16
- package/lib/types/shared/serializeRegExp.d.ts +9 -0
- package/lib/types/types.d.ts +490 -489
- package/package.json +115 -102
- package/preset.js +9 -9
- package/types/babel__register.d.ts +1 -1
- package/types/chai.d.ts +12 -12
- package/types/event-source-polyfill.d.ts +6 -6
- package/types/mdx.d.ts +3 -2
- package/types/mocha.d.ts +20 -20
- package/types/png.d.ts +4 -4
- package/lib/cjs/client/web/1.js +0 -13
- package/lib/cjs/client/web/2.js +0 -1
- package/storybook-static/stories.json +0 -21
package/CHANGELOG.md
CHANGED
@@ -1,1275 +1,1275 @@
|
|
1
|
-
# [0.8.0-beta.0](https://github.com/wKich/creevey/compare/v0.7.39...v0.8.0-beta.0) (2022-03-17)
|
2
|
-
|
3
|
-
### Bug Fixes
|
4
|
-
|
5
|
-
- 🐛 revert cross-env scripts, as they not work in unix ([92b04a5](https://github.com/wKich/creevey/commit/92b04a5bed56191b7ee6bd169f5327e30a1c2232))
|
6
|
-
|
7
|
-
### Features
|
8
|
-
|
9
|
-
- 🎸 change format for `skip` parameter ([f244b7c](https://github.com/wKich/creevey/commit/f244b7cd344b276762408a1df841e5afc3853fad))
|
10
|
-
- 🎸 Improve skip options ([2fcc624](https://github.com/wKich/creevey/commit/2fcc624a9b2ab1dcdce3927779c8f58bb0a0d02c))
|
11
|
-
- new creevey params: "global" and "kind" ([7d7c885](https://github.com/wKich/creevey/commit/7d7c88521a28c91586bfdd663500bea576845292))
|
12
|
-
- support storybook 6.4 ([74010e5](https://github.com/wKich/creevey/commit/74010e53d93ff1815427cd7ee818481ce6e21288))
|
13
|
-
|
14
|
-
## [0.7.39](https://github.com/wKich/creevey/compare/v0.7.38...v0.7.39) (2021-11-04)
|
15
|
-
|
16
|
-
### Features
|
17
|
-
|
18
|
-
- 🎸 add ability to update story arguments from test cases ([18d8ecb](https://github.com/wKich/creevey/commit/18d8ecb909097b585282a04bfb0b0c721ad45e22))
|
19
|
-
|
20
|
-
## [0.7.38](https://github.com/wKich/creevey/compare/v0.7.37...v0.7.38) (2021-09-28)
|
21
|
-
|
22
|
-
### Features
|
23
|
-
|
24
|
-
- 🎸 add storiesProvider config option ([7cf7454](https://github.com/wKich/creevey/commit/7cf74542d527bcfd5b41b17026464a4f9298e1f5))
|
25
|
-
|
26
|
-
## [0.7.37](https://github.com/wKich/creevey/compare/v0.7.36...v0.7.37) (2021-08-27)
|
27
|
-
|
28
|
-
### Bug Fixes
|
29
|
-
|
30
|
-
- 🐛 save report data after each tests run ([86c6c2e](https://github.com/wKich/creevey/commit/86c6c2ee1261bdc38fc3b7c6ebb1753348339a0a))
|
31
|
-
- 🐛 selenium url path to '/' for webkit browsers ([748d896](https://github.com/wKich/creevey/commit/748d8968c645ee684cec5dcd899d2de749d5e2c6)), closes [#176](https://github.com/wKich/creevey/issues/176)
|
32
|
-
|
33
|
-
### Features
|
34
|
-
|
35
|
-
- 🎸 failFast doesn't disable maxRetries option ([c81c637](https://github.com/wKich/creevey/commit/c81c63784aecea890596647225ce8278d7383df5)), closes [#175](https://github.com/wKich/creevey/issues/175)
|
36
|
-
- 🎸 improve delay option to allow specify browsers ([4bec3b5](https://github.com/wKich/creevey/commit/4bec3b5a4ddca2e2610db4ecf79f0e859202da65)), closes [#174](https://github.com/wKich/creevey/issues/174)
|
37
|
-
|
38
|
-
## [0.7.36](https://github.com/wKich/creevey/compare/v0.7.35...v0.7.36) (2021-07-30)
|
39
|
-
|
40
|
-
### Bug Fixes
|
41
|
-
|
42
|
-
- 🐛 report test as a failed for teamcity reporter ([0e58915](https://github.com/wKich/creevey/commit/0e58915b6d14441e14851c7c3bc888fe0759ddce))
|
43
|
-
|
44
|
-
## [0.7.35](https://github.com/wKich/creevey/compare/v0.7.34...v0.7.35) (2021-07-28)
|
45
|
-
|
46
|
-
### Bug Fixes
|
47
|
-
|
48
|
-
- 🐛 update didn't use report data to approve failed tests ([107d0fa](https://github.com/wKich/creevey/commit/107d0faf4c717bbb7a547422e9baf7105389d0bd))
|
49
|
-
|
50
|
-
### Features
|
51
|
-
|
52
|
-
- 🎸 add `dockerImagePlatform` config option ([f52de6c](https://github.com/wKich/creevey/commit/f52de6c31ab41012ce127702d0967c8f40fb7c20))
|
53
|
-
|
54
|
-
## [0.7.34](https://github.com/wKich/creevey/compare/v0.7.33...v0.7.34) (2021-07-12)
|
55
|
-
|
56
|
-
### Features
|
57
|
-
|
58
|
-
- 🎸 add `failFat` parameter to the config ([c4fe538](https://github.com/wKich/creevey/commit/c4fe538569311cc7ca3c0c9e8e93916cf4a3cb8b))
|
59
|
-
|
60
|
-
## [0.7.33](https://github.com/wKich/creevey/compare/v0.7.32...v0.7.33) (2021-07-12)
|
61
|
-
|
62
|
-
### Bug Fixes
|
63
|
-
|
64
|
-
- 🐛 improve `waitForStorybook` wait for `setStories` event ([8431918](https://github.com/wKich/creevey/commit/8431918656378b6760a60da8570fb18952de210c))
|
65
|
-
- 🐛 make creevey work with vite ([0d576c6](https://github.com/wKich/creevey/commit/0d576c6e2660fd4f29ba4efd440d4af9ee590ac2))
|
66
|
-
- 🐛 some issues for storybook 5.3 and create-react-preset ([c1e20b3](https://github.com/wKich/creevey/commit/c1e20b31234875d3ef961ce3804e3384d858f94d))
|
67
|
-
|
68
|
-
### Features
|
69
|
-
|
70
|
-
- 🎸 add `failFast` CLI option. Terminates on first fail ([0023bbb](https://github.com/wKich/creevey/commit/0023bbb022e71b7b3cb60fd7cea9bdb89a7e87bc))
|
71
|
-
|
72
|
-
## [0.7.32](https://github.com/wKich/creevey/compare/v0.7.31...v0.7.32) (2021-07-07)
|
73
|
-
|
74
|
-
### Features
|
75
|
-
|
76
|
-
- 🎸 add webdriver debug logging ([6124a43](https://github.com/wKich/creevey/commit/6124a43b79d2761c3f04f6f3f118599ecb517c27))
|
77
|
-
- 🎸 run extract stories.json on storybook-build ([803a1d1](https://github.com/wKich/creevey/commit/803a1d1b9b774121e1a611dfbbe1a3ad041339af))
|
78
|
-
|
79
|
-
## [0.7.31](https://github.com/wKich/creevey/compare/v0.7.30...v0.7.31) (2021-06-26)
|
80
|
-
|
81
|
-
### Bug Fixes
|
82
|
-
|
83
|
-
- 🐛 ignore docsOnly stories for now ([2fda22b](https://github.com/wKich/creevey/commit/2fda22b333929306c2ad31243f1a0fd1900bbd7f))
|
84
|
-
- 🐛 improve listen story render error with `waitForReady` ([dda7948](https://github.com/wKich/creevey/commit/dda7948c3496a7ef7a8e9fc4ce50d774b470bd94))
|
85
|
-
- 🐛 improve update to approve only failed images ([f0e5719](https://github.com/wKich/creevey/commit/f0e5719f1b8d1b0fb105bacb5619cd903eadced6))
|
86
|
-
- 🐛 resolve storybook preview config after babel/register ([cb3f46c](https://github.com/wKich/creevey/commit/cb3f46c0502264cdd5aefc2dc397da1892938eb5))
|
87
|
-
- 🐛 resolving storybook modules for version less than 6.2 ([bd84c5f](https://github.com/wKich/creevey/commit/bd84c5f87a3c271665c3fd283ae09cabc2851120))
|
88
|
-
|
89
|
-
### Features
|
90
|
-
|
91
|
-
- 🎸 add `until` selenium helpers to test context ([4f29eca](https://github.com/wKich/creevey/commit/4f29eca9e829c68d765da88fbb3ab327278fefe3))
|
92
|
-
|
93
|
-
## [0.7.30](https://github.com/wKich/creevey/compare/v0.7.29...v0.7.30) (2021-06-10)
|
94
|
-
|
95
|
-
### Bug Fixes
|
96
|
-
|
97
|
-
- 🐛 import the same webpack as used for storybook manager ([ae3c6b7](https://github.com/wKich/creevey/commit/ae3c6b712a8e41a7d3f4396b269d471c578d9408))
|
98
|
-
- 🐛 resolving storybook modules ([d30274d](https://github.com/wKich/creevey/commit/d30274d3dc12e77cea21ea170a9e03fc35892671))
|
99
|
-
- package.json & yarn.lock to reduce vulnerabilities ([b1f8697](https://github.com/wKich/creevey/commit/b1f869758bb6b41165748de15f897a4bee22545b))
|
100
|
-
|
101
|
-
## [0.7.29](https://github.com/wKich/creevey/compare/v0.7.28...v0.7.29) (2021-05-30)
|
102
|
-
|
103
|
-
### Bug Fixes
|
104
|
-
|
105
|
-
- 🐛 allow pass boolean value to skip parameter ([9e36eec](https://github.com/wKich/creevey/commit/9e36eecce9d7df352ced159c1ec5b0de86fa7257)), closes [#147](https://github.com/wKich/creevey/issues/147)
|
106
|
-
|
107
|
-
### Features
|
108
|
-
|
109
|
-
- 🎸 improve `update` command allow to pass match pattern ([4cf79f4](https://github.com/wKich/creevey/commit/4cf79f4d7693686be86c4bec5ae7e5736f900615))
|
110
|
-
|
111
|
-
## [0.7.28](https://github.com/wKich/creevey/compare/v0.7.27...v0.7.28) (2021-05-20)
|
112
|
-
|
113
|
-
### Bug Fixes
|
114
|
-
|
115
|
-
- 🐛 creevey loader transforms csf funcs with props ([11bbc96](https://github.com/wKich/creevey/commit/11bbc96133edbce3c578a240a0a69c45d2b7a508))
|
116
|
-
- 🐛 csf template.bind extract correctly ([ba27817](https://github.com/wKich/creevey/commit/ba27817e9fd91a0515edb3896414c7ac04bfa65d))
|
117
|
-
- 🐛 improve babel-plugin to handle storiesOf in loops ([ec6ad03](https://github.com/wKich/creevey/commit/ec6ad03a796c6d25647f30aff75c41c1ec630704))
|
118
|
-
- 🐛 improve process exiting with hooks, add ie11 tests ([effa16f](https://github.com/wKich/creevey/commit/effa16f434ac82bbc740be4f2b4ecc67557cba7b))
|
119
|
-
- 🐛 remove some non-story and custom expressions ([9fd55dc](https://github.com/wKich/creevey/commit/9fd55dcee25c7cd5ca965629861bd324bdc95612))
|
120
|
-
- 🐛 types after update to Storybook 6.2 ([dcf433e](https://github.com/wKich/creevey/commit/dcf433e52ca9a4e595968365061f73708fcc9ab4))
|
121
|
-
|
122
|
-
### Features
|
123
|
-
|
124
|
-
- 🎸 improve extract stories by using only babel ([6e43452](https://github.com/wKich/creevey/commit/6e43452e8607ce62f8e73387245557812e051160))
|
125
|
-
- 🎸 support for extract cjs and object.assign ([1978669](https://github.com/wKich/creevey/commit/1978669c1fcf9f5a9866d9399793d7388bab1680))
|
126
|
-
|
127
|
-
## [0.7.27](https://github.com/wKich/creevey/compare/v0.7.26...v0.7.27) (2021-03-31)
|
128
|
-
|
129
|
-
### Bug Fixes
|
130
|
-
|
131
|
-
- 🐛 capturing screenshots in ie11 ([2e47b2f](https://github.com/wKich/creevey/commit/2e47b2fe77a5af88673c369f297b5a373d3a2eba))
|
132
|
-
- 🐛 compose browsers with external grid and builtin selenoid ([c429bec](https://github.com/wKich/creevey/commit/c429becc3827764c8349ed428bae5a7f4288bd5a))
|
133
|
-
|
134
|
-
## [0.7.26](https://github.com/wKich/creevey/compare/v0.7.25...v0.7.26) (2021-03-28)
|
135
|
-
|
136
|
-
### Bug Fixes
|
137
|
-
|
138
|
-
- 🐛 don't show run button in a report ([958c8ad](https://github.com/wKich/creevey/commit/958c8ad742121dd57adb841939fb5f27134132c5))
|
139
|
-
|
140
|
-
### Features
|
141
|
-
|
142
|
-
- 🎸 add `--extract` as faster alternative to `sb extract` ([5f5de2d](https://github.com/wKich/creevey/commit/5f5de2d44ba49c0f9868cb843a522745308fa055))
|
143
|
-
- 🎸 add `waitForReady` story parameter ([8517883](https://github.com/wKich/creevey/commit/8517883019dc371141a0b7308b37bde8b17577b6))
|
144
|
-
- 🎸 allow define custom selenoid images and skip pull step ([e508eec](https://github.com/wKich/creevey/commit/e508eec9918cb63194a74c2ebd44aa1f62c9930d))
|
145
|
-
|
146
|
-
## [0.7.25](https://github.com/wKich/creevey/compare/v0.7.24...v0.7.25) (2021-03-18)
|
147
|
-
|
148
|
-
### Bug Fixes
|
149
|
-
|
150
|
-
- 🐛 exclude all addons from nodejs storybook bundle ([1194400](https://github.com/wKich/creevey/commit/1194400d441fe22a0b60718c67e083c76bf7e2c2))
|
151
|
-
- 🐛 hover shouldn't override focus styles ([6762af9](https://github.com/wKich/creevey/commit/6762af942600dbb9f5d100539dcbe1fdee016a4c))
|
152
|
-
- 🐛 test status icons align ([c3e5c7e](https://github.com/wKich/creevey/commit/c3e5c7ea14eb46e218a0d1dcbcec9374989b364d))
|
153
|
-
|
154
|
-
### Features
|
155
|
-
|
156
|
-
- 🎸 add sidebar keyboard handlers ([bf160b6](https://github.com/wKich/creevey/commit/bf160b61ecdd49417135f0b7b9c316efddb6e898))
|
157
|
-
- 🎸 add support storybook 6.2 ([e4cc662](https://github.com/wKich/creevey/commit/e4cc66245b0f2aea8cfba0e849f1e9e4f80d1442))
|
158
|
-
- 🎸 support capture mdx stories ([6fc9185](https://github.com/wKich/creevey/commit/6fc918505718393ccbc424a794159eecf66a456d))
|
159
|
-
|
160
|
-
## [0.7.24](https://github.com/wKich/creevey/compare/v0.7.23...v0.7.24) (2021-03-10)
|
161
|
-
|
162
|
-
### Bug Fixes
|
163
|
-
|
164
|
-
- 🐛 some security issues ([d3eed3c](https://github.com/wKich/creevey/commit/d3eed3c8970f097309e9ec2e3926a2e6a881fd9c))
|
165
|
-
- 🐛 websocket invalid frame error ([aafda92](https://github.com/wKich/creevey/commit/aafda92ff3d45cf20005872ea344831b53c2f5af))
|
166
|
-
- upgrade tslib from 2.0.3 to 2.1.0 ([f047cae](https://github.com/wKich/creevey/commit/f047cae1c0a6b072b30b91be9f7bceef1a776917))
|
167
|
-
- upgrade zone.js from 0.11.3 to 0.11.4 ([f1a911a](https://github.com/wKich/creevey/commit/f1a911a070658f8b2488f1d596a53e3cd2d3e001))
|
168
|
-
|
169
|
-
### Features
|
170
|
-
|
171
|
-
- 🎸 new panels in addon ([02232eb](https://github.com/wKich/creevey/commit/02232ebbeb3fe0eb0878743ccc9ad1a83277de64))
|
172
|
-
- allow to ignore elements in screenshot ([19a38e0](https://github.com/wKich/creevey/commit/19a38e0379ad0b1cbbe6254f197888d2ebfb1a22))
|
173
|
-
|
174
|
-
## [0.7.23](https://github.com/wKich/creevey/compare/v0.7.22...v0.7.23) (2021-01-25)
|
175
|
-
|
176
|
-
### Bug Fixes
|
177
|
-
|
178
|
-
- 🐛 use shelljs to run selenoid binary ([3306071](https://github.com/wKich/creevey/commit/3306071d2840b6f8fde442880457085f6992915a))
|
179
|
-
|
180
|
-
## [0.7.22](https://github.com/wKich/creevey/compare/v0.7.21...v0.7.22) (2021-01-25)
|
181
|
-
|
182
|
-
### Bug Fixes
|
183
|
-
|
184
|
-
- run standalone browsers and selenoid ([ba85fdc](https://github.com/wKich/creevey/commit/ba85fdcd7f5e2ad0e6139cb3fe84e969dacb2b4c))
|
185
|
-
- selenium url path for standalone run ([da45662](https://github.com/wKich/creevey/commit/da45662aff604bacb02bd949ece5e406888cbd4d))
|
186
|
-
|
187
|
-
## [0.7.21](https://github.com/wKich/creevey/compare/v0.7.20...v0.7.21) (2021-01-22)
|
188
|
-
|
189
|
-
### Bug Fixes
|
190
|
-
|
191
|
-
- 🐛 create protocol relative image url ([5c574dc](https://github.com/wKich/creevey/commit/5c574dc3025eacf1c9d4402880a9893193c0180f))
|
192
|
-
- 🐛 encode only path tokens for url ([28751c9](https://github.com/wKich/creevey/commit/28751c968cb4a3a8afcb606096a0a0bc2fc3bccf))
|
193
|
-
- 🐛 get image url with empty port number ([43a8226](https://github.com/wKich/creevey/commit/43a822653001ecbb31534c40f688814e14bb52db))
|
194
|
-
- 🐛 make report from static files works from creevey repo ([4b49df7](https://github.com/wKich/creevey/commit/4b49df72f21cee725848187c267f6b87b9e988e3))
|
195
|
-
- 🐛 protocol relative resolving ([fc2559e](https://github.com/wKich/creevey/commit/fc2559e60091ef96af48fbbac92e7f06b7f57dbc))
|
196
|
-
- 🐛 store stats.json into report dir ([9b0586d](https://github.com/wKich/creevey/commit/9b0586db49681b654045ad54dece4c195e490605))
|
197
|
-
|
198
|
-
### Features
|
199
|
-
|
200
|
-
- 🎸 improve creevey-loader, cut-off side-effects ([a302708](https://github.com/wKich/creevey/commit/a30270808275fa5dbe83ddb33d0e5490995e9b37))
|
201
|
-
- 🎸 save webpack stats.json on debug ([248e271](https://github.com/wKich/creevey/commit/248e2713bc97a601877eaa20f3c6e16ecc1e2aa5))
|
202
|
-
|
203
|
-
## [0.7.20](https://github.com/wKich/creevey/compare/v0.7.19...v0.7.20) (2021-01-15)
|
204
|
-
|
205
|
-
### Bug Fixes
|
206
|
-
|
207
|
-
- 🐛 apply iframe after custom resolver ([e77bf33](https://github.com/wKich/creevey/commit/e77bf33048673e733ad2acd4799277b336e27fe5))
|
208
|
-
|
209
|
-
## [0.7.19](https://github.com/wKich/creevey/compare/v0.7.18...v0.7.19) (2021-01-14)
|
210
|
-
|
211
|
-
### Bug Fixes
|
212
|
-
|
213
|
-
- 🐛 document unloaded error, again ([171b8bb](https://github.com/wKich/creevey/commit/171b8bb633f55616d58bc46655981e986cf9db95))
|
214
|
-
- 🐛 document unloaded while waiting for result ([dd31445](https://github.com/wKich/creevey/commit/dd3144558de74349f41108e29aed97814a48eeb7))
|
215
|
-
- 🐛 properly output unnecessary images ([40e791e](https://github.com/wKich/creevey/commit/40e791edd5eddce838ccc62902430ca00422bb8b))
|
216
|
-
|
217
|
-
### Features
|
218
|
-
|
219
|
-
- allow to set storybook's globals ([7500245](https://github.com/wKich/creevey/commit/75002458b38d5f7ac3d47cc32516ec9b55091db2))
|
220
|
-
|
221
|
-
## [0.7.18](https://github.com/wKich/creevey/compare/v0.7.17...v0.7.18) (2021-01-08)
|
222
|
-
|
223
|
-
### Bug Fixes
|
224
|
-
|
225
|
-
- 🐛 copy-paste missing function from storybook ([29144a4](https://github.com/wKich/creevey/commit/29144a41afe013874b082ca29eecc74b5b56a017))
|
226
|
-
|
227
|
-
## [0.7.17](https://github.com/wKich/creevey/compare/v0.7.16...v0.7.17) (2021-01-07)
|
228
|
-
|
229
|
-
### Bug Fixes
|
230
|
-
|
231
|
-
- 🐛 addon erases global parameters in storybook ([2ed4700](https://github.com/wKich/creevey/commit/2ed47000f00e30890656872d1daae420e47db2d9))
|
232
|
-
|
233
|
-
## [0.7.16](https://github.com/wKich/creevey/compare/v0.7.15...v0.7.16) (2021-01-06)
|
234
|
-
|
235
|
-
### Bug Fixes
|
236
|
-
|
237
|
-
- 🐛 resolve url for ie11 ([562a982](https://github.com/wKich/creevey/commit/562a9821135f42e428da7f64fe29f2473565eb6d))
|
238
|
-
- 🐛 spinner position in sidebar ([5d2d34a](https://github.com/wKich/creevey/commit/5d2d34a7229d7fef8fd4f6731df6b807dce00d7f))
|
239
|
-
|
240
|
-
## [0.7.15](https://github.com/wKich/creevey/compare/v0.7.14...v0.7.15) (2021-01-06)
|
241
|
-
|
242
|
-
### Bug Fixes
|
243
|
-
|
244
|
-
- 🐛 addon show test name in tabs panel ([3393474](https://github.com/wKich/creevey/commit/339347498e87d5e43d1a5e89b611aeaf896e81f3))
|
245
|
-
- 🐛 trim story kinds ([6ff25b0](https://github.com/wKich/creevey/commit/6ff25b0b87558d2ce0c11ecd5130480003f41988))
|
246
|
-
|
247
|
-
### Features
|
248
|
-
|
249
|
-
- 🎸 add run all buttons in addon ([94ac2d3](https://github.com/wKich/creevey/commit/94ac2d3c6c72ec9a537b974294235f4bfdbf5a69))
|
250
|
-
|
251
|
-
## [0.7.14](https://github.com/wKich/creevey/compare/v0.7.13...v0.7.14) (2021-01-01)
|
252
|
-
|
253
|
-
### Bug Fixes
|
254
|
-
|
255
|
-
- 🐛 disable debug logger for storybook 5.x ([a758bab](https://github.com/wKich/creevey/commit/a758bab23ebff4d357f46087ad21a9a8005dd130))
|
256
|
-
- 🐛 resolve storybook properly and wait for page load ([6888178](https://github.com/wKich/creevey/commit/6888178a3ca2ee2c22ef69fc633564154a256e55))
|
257
|
-
|
258
|
-
### Performance Improvements
|
259
|
-
|
260
|
-
- ⚡️ exclude fork ts checker plugin for webpack ([cebc0be](https://github.com/wKich/creevey/commit/cebc0be6d42148fe9be859ef49364f0abe8f883f))
|
261
|
-
|
262
|
-
## [0.7.13](https://github.com/wKich/creevey/compare/v0.7.12...v0.7.13) (2020-12-30)
|
263
|
-
|
264
|
-
### Bug Fixes
|
265
|
-
|
266
|
-
- 🐛 images preview urls ([d2a7853](https://github.com/wKich/creevey/commit/d2a7853b2761a3c52a05aee2401b0f54b0e97832))
|
267
|
-
|
268
|
-
### Features
|
269
|
-
|
270
|
-
- 🎸 start creevey server early and wait for build ([e325d59](https://github.com/wKich/creevey/commit/e325d59b651ef3a52a2284aeb6b9de4eca4a3366))
|
271
|
-
|
272
|
-
### Performance Improvements
|
273
|
-
|
274
|
-
- ⚡️ speedup resolving storybook url ([4c24c88](https://github.com/wKich/creevey/commit/4c24c88646d1f4711fe24e9e8445ead06238756f))
|
275
|
-
|
276
|
-
## [0.7.12](https://github.com/wKich/creevey/compare/v0.7.11...v0.7.12) (2020-12-24)
|
277
|
-
|
278
|
-
### Bug Fixes
|
279
|
-
|
280
|
-
- 🐛 set timeout after open for ie11 ([6fda74d](https://github.com/wKich/creevey/commit/6fda74d9fcf7cc1e6f27f0d5814798bef7f5503d))
|
281
|
-
|
282
|
-
## [0.7.11](https://github.com/wKich/creevey/compare/v0.7.10...v0.7.11) (2020-12-21)
|
283
|
-
|
284
|
-
### Bug Fixes
|
285
|
-
|
286
|
-
- 🐛 addon result page scroll height ([cc12cd6](https://github.com/wKich/creevey/commit/cc12cd66c69b4571015ede6492cd4b5f978f9c34))
|
287
|
-
- 🐛 exclude docgen plugin for webpack bundle ([f11210a](https://github.com/wKich/creevey/commit/f11210aec9352c695eccc72202daff640a4617cb))
|
288
|
-
- 🐛 webpack mdx regexp, again ([0cadad1](https://github.com/wKich/creevey/commit/0cadad15f4217312fdb3db6a3bf7ee4f2cad5bed))
|
289
|
-
- 🐛 webpack mdx rule ([4e1b002](https://github.com/wKich/creevey/commit/4e1b002c378d5de7134e392495953c53537cfa5e))
|
290
|
-
|
291
|
-
### Features
|
292
|
-
|
293
|
-
- 🎸 store tests view in browser history ([868a6b0](https://github.com/wKich/creevey/commit/868a6b0e1fcd906e6441fe54d6ffeccf4ed75019))
|
294
|
-
|
295
|
-
## [0.7.10](https://github.com/wKich/creevey/compare/v0.7.9...v0.7.10) (2020-12-15)
|
296
|
-
|
297
|
-
### Bug Fixes
|
298
|
-
|
299
|
-
- 🐛 switch stories error ([c39ef7e](https://github.com/wKich/creevey/commit/c39ef7edf565f8c983641d89d30b5c552d0b08c7))
|
300
|
-
|
301
|
-
## [0.7.9](https://github.com/wKich/creevey/compare/v0.7.8...v0.7.9) (2020-12-14)
|
302
|
-
|
303
|
-
### Features
|
304
|
-
|
305
|
-
- 🎸 add support docker auth config for private registry ([e157c39](https://github.com/wKich/creevey/commit/e157c39de3f13ae4026a26579590ab181665fcb7))
|
306
|
-
|
307
|
-
## [0.7.8](https://github.com/wKich/creevey/compare/v0.7.7...v0.7.8) (2020-12-14)
|
308
|
-
|
309
|
-
### Bug Fixes
|
310
|
-
|
311
|
-
- 🐛 resolve url with docker ([ee5b2f7](https://github.com/wKich/creevey/commit/ee5b2f73c6c7bdbbad7574e927306b432295f241))
|
312
|
-
|
313
|
-
## [0.7.7](https://github.com/wKich/creevey/compare/v0.7.6...v0.7.7) (2020-12-14)
|
314
|
-
|
315
|
-
### Bug Fixes
|
316
|
-
|
317
|
-
- 🐛 handle getaddrinfo error ([b3567fe](https://github.com/wKich/creevey/commit/b3567fe71aca2b9342fe51561cdf60a2936bed0d))
|
318
|
-
|
319
|
-
## [0.7.6](https://github.com/wKich/creevey/compare/v0.7.5...v0.7.6) (2020-12-14)
|
320
|
-
|
321
|
-
### Bug Fixes
|
322
|
-
|
323
|
-
- 🐛 don't check `isInDocker` for docker internal host ([5a81138](https://github.com/wKich/creevey/commit/5a8113891940fb0b7d700e0aaa8ebdcca76d886c))
|
324
|
-
|
325
|
-
## [0.7.5](https://github.com/wKich/creevey/compare/v0.7.4...v0.7.5) (2020-12-14)
|
326
|
-
|
327
|
-
### Bug Fixes
|
328
|
-
|
329
|
-
- 🐛 creevey-loader support private class members ([223e3e3](https://github.com/wKich/creevey/commit/223e3e37d2aae7a96a28846abf840d5321b0f96d))
|
330
|
-
- 🐛 download selenoid binary ([5e72957](https://github.com/wKich/creevey/commit/5e729571391e7082a0a0fe02dcae6d12e41622f2))
|
331
|
-
- 🐛 webpack and update options ([712c911](https://github.com/wKich/creevey/commit/712c91184da6c82989d923b1d90e9d70b13d347c))
|
332
|
-
|
333
|
-
### Features
|
334
|
-
|
335
|
-
- 🎸 add mvp to allow run selenoid without docker ([c161e0a](https://github.com/wKich/creevey/commit/c161e0a807c26e7643bd7c4969bae8b954bcffd8))
|
336
|
-
- 🎸 link to current story ([8a3c043](https://github.com/wKich/creevey/commit/8a3c043be5f05e77044b1ff1ce5707c43fc43a36))
|
337
|
-
|
338
|
-
## [0.7.4](https://github.com/wKich/creevey/compare/v0.7.3...v0.7.4) (2020-12-11)
|
339
|
-
|
340
|
-
### Bug Fixes
|
341
|
-
|
342
|
-
- 🐛 change cache dir, some issues on windows ([c2e4f34](https://github.com/wKich/creevey/commit/c2e4f34e3ea70c85c60d1e37b20b6f6ff324dda7))
|
343
|
-
- 🐛 merge skip options properly ([24427af](https://github.com/wKich/creevey/commit/24427af40e812478b9832ae82d2dd64e3e146805))
|
344
|
-
- 🐛 resolve grid url without docker ([97e06fe](https://github.com/wKich/creevey/commit/97e06fe8c92496a99e659e8f221428bb4bb4062d))
|
345
|
-
|
346
|
-
## [0.7.3](https://github.com/wKich/creevey/compare/v0.7.2...v0.7.3) (2020-12-02)
|
347
|
-
|
348
|
-
### Features
|
349
|
-
|
350
|
-
- 🎸 apply disable animation styles in storybook decorator ([6dac967](https://github.com/wKich/creevey/commit/6dac96768f6b7953c56e22239a2adcf686f9aabb))
|
351
|
-
- 🎸 remove skbkontur ip address resolver ([91e17f4](https://github.com/wKich/creevey/commit/91e17f4f0e87b553bad367eda10ed30a1246be9e))
|
352
|
-
|
353
|
-
## [0.7.2](https://github.com/wKich/creevey/compare/v0.7.1...v0.7.2) (2020-11-28)
|
354
|
-
|
355
|
-
### Bug Fixes
|
356
|
-
|
357
|
-
- 🐛 invalid websocket frame ([6796625](https://github.com/wKich/creevey/commit/679662569e985b600eb4eb6779551a4bf929f54f))
|
358
|
-
|
359
|
-
### Features
|
360
|
-
|
361
|
-
- 🎸 improve scale handling for image views ([454ee85](https://github.com/wKich/creevey/commit/454ee85ad4b6a608bb999b815fb4192c2a661329))
|
362
|
-
|
363
|
-
## [0.7.1](https://github.com/wKich/creevey/compare/v0.7.0...v0.7.1) (2020-11-24)
|
364
|
-
|
365
|
-
### Bug Fixes
|
366
|
-
|
367
|
-
- 🐛 don't cutoff named exports ([cd09dd4](https://github.com/wKich/creevey/commit/cd09dd47070e4584429905f78baee82c65a82a47))
|
368
|
-
|
369
|
-
### Features
|
370
|
-
|
371
|
-
- 🎸 improve side-by-side view for wide images ([3d6a147](https://github.com/wKich/creevey/commit/3d6a1477804bb900d806cbac26d884d26bb28e55))
|
372
|
-
- 🎸 side-by-side view supports layout resizing ([123e7c7](https://github.com/wKich/creevey/commit/123e7c78708bf2e85b1649c85d2a264a9e4594d8))
|
373
|
-
|
374
|
-
# [0.7.0](https://github.com/wKich/creevey/compare/v0.7.0-beta.21...v0.7.0) (2020-11-09)
|
375
|
-
|
376
|
-
### Bug Fixes
|
377
|
-
|
378
|
-
- 🐛 get channel before it created ([b3e89ae](https://github.com/wKich/creevey/commit/b3e89aef18baca926d1684e6734265a03cbf00ab))
|
379
|
-
- 🐛 toggle theme sticky z-index ([dcdbb77](https://github.com/wKich/creevey/commit/dcdbb77e63b1f67025c897610c2df74b8d98abbd))
|
380
|
-
|
381
|
-
### Features
|
382
|
-
|
383
|
-
- 🎸 Dark theme in client ([c36aa4b](https://github.com/wKich/creevey/commit/c36aa4b59ce1661fa7cfbef72a7db1354e8ee0eb))
|
384
|
-
|
385
|
-
# [0.7.0-beta.21](https://github.com/wKich/creevey/compare/v0.7.0-beta.20...v0.7.0-beta.21) (2020-11-02)
|
386
|
-
|
387
|
-
### Bug Fixes
|
388
|
-
|
389
|
-
- 🐛 wait for fonts loaded ([78c2a74](https://github.com/wKich/creevey/commit/78c2a74782ac9bdb10d7c9c2039a332218a217cd))
|
390
|
-
|
391
|
-
# [0.7.0-beta.20](https://github.com/wKich/creevey/compare/v0.7.0-beta.19...v0.7.0-beta.20) (2020-10-30)
|
392
|
-
|
393
|
-
### Bug Fixes
|
394
|
-
|
395
|
-
- 🐛 don't cutoff `name` prop from stories params ([ca1a19f](https://github.com/wKich/creevey/commit/ca1a19f75f5a31974a7fb930d871c53ce0d77567))
|
396
|
-
|
397
|
-
# [0.7.0-beta.19](https://github.com/wKich/creevey/compare/v0.7.0-beta.18...v0.7.0-beta.19) (2020-10-30)
|
398
|
-
|
399
|
-
### Bug Fixes
|
400
|
-
|
401
|
-
- 🐛 macos docker netwrok internal host address ([90bf76d](https://github.com/wKich/creevey/commit/90bf76d8986d07626890e03b2097c0ef3ebd3f27))
|
402
|
-
|
403
|
-
# [0.7.0-beta.18](https://github.com/wKich/creevey/compare/v0.7.0-beta.17...v0.7.0-beta.18) (2020-10-29)
|
404
|
-
|
405
|
-
### Bug Fixes
|
406
|
-
|
407
|
-
- 🐛 cutoff parameters in new declarative preview config ([a86c51a](https://github.com/wKich/creevey/commit/a86c51ae80caa1f3e7534a044e1427dcb43e9792))
|
408
|
-
- 🐛 improve creevey loader cutoff stories meta data ([7b651d5](https://github.com/wKich/creevey/commit/7b651d5fe2945cffa10929ce038d01885c1db6ab))
|
409
|
-
- 🐛 reset body margin for client ui ([54fee7f](https://github.com/wKich/creevey/commit/54fee7f061a7b5eef7179faec09e79fd1652e305))
|
410
|
-
- 🐛 storybook framework detection ([25e1651](https://github.com/wKich/creevey/commit/25e1651608765698629e8f2ac1b9e43f98234288))
|
411
|
-
|
412
|
-
### Features
|
413
|
-
|
414
|
-
- 🎸 change default capture element to `#root` ([8d2c7b8](https://github.com/wKich/creevey/commit/8d2c7b8a5ddf9e3f64102c19aba1f1a7f933d8ad))
|
415
|
-
|
416
|
-
# [0.7.0-beta.17](https://github.com/wKich/creevey/compare/v0.7.0-beta.16...v0.7.0-beta.17) (2020-10-16)
|
417
|
-
|
418
|
-
### Bug Fixes
|
419
|
-
|
420
|
-
- 🐛 filter tests without statuses ([4c1d25d](https://github.com/wKich/creevey/commit/4c1d25de232816b4d99853fbaa2661a46996effc))
|
421
|
-
|
422
|
-
# [0.7.0-beta.16](https://github.com/wKich/creevey/compare/v0.7.0-beta.15...v0.7.0-beta.16) (2020-10-16)
|
423
|
-
|
424
|
-
### Bug Fixes
|
425
|
-
|
426
|
-
- 🐛 make sidebar a little narrower ([65c9bf7](https://github.com/wKich/creevey/commit/65c9bf7947cad71c07df5e7d5668a1b73ecfe395))
|
427
|
-
- 🐛 small ui issues in SideBar ([6df7a0a](https://github.com/wKich/creevey/commit/6df7a0a13dcea12614bc4fc4e34389c52f9b03a8))
|
428
|
-
- 🐛 watch stories in windows ([e8458dd](https://github.com/wKich/creevey/commit/e8458ddde503011aaa6a7479694edd2aa42b1941))
|
429
|
-
|
430
|
-
### Features
|
431
|
-
|
432
|
-
- 🎸 sideBar on storybook components ([2866c8e](https://github.com/wKich/creevey/commit/2866c8ebf7e57d460bf5254a93573c048351e1fe))
|
433
|
-
|
434
|
-
# [0.7.0-beta.15](https://github.com/wKich/creevey/compare/v0.7.0-beta.14...v0.7.0-beta.15) (2020-10-13)
|
435
|
-
|
436
|
-
### Bug Fixes
|
437
|
-
|
438
|
-
- 🐛 don't output message about unnecessary image ([83c1463](https://github.com/wKich/creevey/commit/83c14635e667d39181cbc1ddc494bac026641a2d))
|
439
|
-
- 🐛 improve `getImageUrl` for circle ci at least ([7537ce9](https://github.com/wKich/creevey/commit/7537ce9efa7a0ac3bcf2597a79126d8cd5312d59))
|
440
|
-
|
441
|
-
# [0.7.0-beta.14](https://github.com/wKich/creevey/compare/v0.7.0-beta.13...v0.7.0-beta.14) (2020-10-13)
|
442
|
-
|
443
|
-
### Bug Fixes
|
444
|
-
|
445
|
-
- 🐛 fallback report if api don't available ([618682f](https://github.com/wKich/creevey/commit/618682f289cb316dbd3b8b78d9d96ddd9e2c8681))
|
446
|
-
|
447
|
-
### Features
|
448
|
-
|
449
|
-
- 🎸 output unnecessary images on full run ([b6dbb02](https://github.com/wKich/creevey/commit/b6dbb02d5f6ef5766f1f11c0d50d7f5b4ad17b79))
|
450
|
-
- 🎸 remove `useDocker`. Creevey run docker by default ([ccbbb43](https://github.com/wKich/creevey/commit/ccbbb43f6fadd88bfcb21b266f08c45d39389c79))
|
451
|
-
|
452
|
-
# [0.7.0-beta.13](https://github.com/wKich/creevey/compare/v0.7.0-beta.12...v0.7.0-beta.13) (2020-10-09)
|
453
|
-
|
454
|
-
### Bug Fixes
|
455
|
-
|
456
|
-
- 🐛 add stories in addon ([50d7279](https://github.com/wKich/creevey/commit/50d7279f3daa706da204682edfa69e4bc5dad43b))
|
457
|
-
- 🐛 don't crash on storybook reload error ([b393926](https://github.com/wKich/creevey/commit/b393926eda582094973e18b037f95af4530f5b21))
|
458
|
-
- 🐛 don't fail on mdx stories, just ignore it for now ([527f962](https://github.com/wKich/creevey/commit/527f96222a73eac0711882b7541d5d318a9aa4fa))
|
459
|
-
- 🐛 re-disable animation ([ecbf380](https://github.com/wKich/creevey/commit/ecbf380316ce3479a70d7ce269a93088930a9880))
|
460
|
-
|
461
|
-
# [0.7.0-beta.12](https://github.com/wKich/creevey/compare/v0.7.0-beta.11...v0.7.0-beta.12) (2020-10-05)
|
462
|
-
|
463
|
-
### Bug Fixes
|
464
|
-
|
465
|
-
- 🐛 hmr tests on windows ([7496a72](https://github.com/wKich/creevey/commit/7496a7244648531c79dff5b9b54f01bb375607fe))
|
466
|
-
- 🐛 report static bundle, add polyfiils ([dfb5f51](https://github.com/wKich/creevey/commit/dfb5f515344ae9b91f5070f002a914cbed835fd6))
|
467
|
-
|
468
|
-
# [0.7.0-beta.11](https://github.com/wKich/creevey/compare/v0.7.0-beta.10...v0.7.0-beta.11) (2020-10-05)
|
469
|
-
|
470
|
-
### Bug Fixes
|
471
|
-
|
472
|
-
- 🐛 build addon to support ie11 ([4327d6d](https://github.com/wKich/creevey/commit/4327d6dfe9471adecaf6cba7ae6b36312d9fcf5e))
|
473
|
-
- 🐛 output readable error message on switch story ([aa369cb](https://github.com/wKich/creevey/commit/aa369cba3f6acb472d11f403f1081ea6c400f367))
|
474
|
-
- 🐛 run tests on circle ci ([a8afef5](https://github.com/wKich/creevey/commit/a8afef582235c37722a60f9596f0e1cbb61a1da0))
|
475
|
-
|
476
|
-
# [0.7.0-beta.10](https://github.com/wKich/creevey/compare/v0.7.0-beta.9...v0.7.0-beta.10) (2020-10-02)
|
477
|
-
|
478
|
-
### Bug Fixes
|
479
|
-
|
480
|
-
- 🐛 some generated modules are excluded as external ([9d8d04b](https://github.com/wKich/creevey/commit/9d8d04ba6b49a6fc216f661790931bb010284fef))
|
481
|
-
|
482
|
-
# [0.7.0-beta.9](https://github.com/wKich/creevey/compare/v0.7.0-beta.8...v0.7.0-beta.9) (2020-10-02)
|
483
|
-
|
484
|
-
### Bug Fixes
|
485
|
-
|
486
|
-
- 🐛 some ui markup, change placeholder message ([b3a6bd6](https://github.com/wKich/creevey/commit/b3a6bd61c1a1d1d52a92a3513545a00962aa0159))
|
487
|
-
|
488
|
-
# [0.7.0-beta.8](https://github.com/wKich/creevey/compare/v0.7.0-beta.7...v0.7.0-beta.8) (2020-10-02)
|
489
|
-
|
490
|
-
### Bug Fixes
|
491
|
-
|
492
|
-
- 🐛 storybook override creevey story parameters ([bd17edf](https://github.com/wKich/creevey/commit/bd17edfcbc5a7dc879c6bf08dca41fec4f207f15))
|
493
|
-
|
494
|
-
# [0.7.0-beta.7](https://github.com/wKich/creevey/compare/v0.7.0-beta.6...v0.7.0-beta.7) (2020-10-01)
|
495
|
-
|
496
|
-
### Features
|
497
|
-
|
498
|
-
- 🎸 support declarative decorators format ([3e22854](https://github.com/wKich/creevey/commit/3e22854e3bbefc2bef9c4f7fde270620e9919859))
|
499
|
-
|
500
|
-
# [0.7.0-beta.6](https://github.com/wKich/creevey/compare/v0.7.0-beta.5...v0.7.0-beta.6) (2020-09-29)
|
501
|
-
|
502
|
-
### Bug Fixes
|
503
|
-
|
504
|
-
- 🐛 loader handle `export default {} as Meta` ([2dcca94](https://github.com/wKich/creevey/commit/2dcca946d9f94f2e1158974c6e9a22028b49492c))
|
505
|
-
|
506
|
-
# [0.7.0-beta.5](https://github.com/wKich/creevey/compare/v0.7.0-beta.4...v0.7.0-beta.5) (2020-09-28)
|
507
|
-
|
508
|
-
### Bug Fixes
|
509
|
-
|
510
|
-
- 🐛 eslint errors ([ffdc73d](https://github.com/wKich/creevey/commit/ffdc73d90f29b8452e63f0817300de7e925d0785))
|
511
|
-
- 🐛 remove old selenoid container on start ([715f04a](https://github.com/wKich/creevey/commit/715f04a228198e5369653199f983c21eca88c194))
|
512
|
-
- 🐛 small addon ui issues ([f055c1c](https://github.com/wKich/creevey/commit/f055c1c16394250f4aaf6db56d444a1c218ab66b))
|
513
|
-
- 🐛 small layout fixes in addon ([0f29b12](https://github.com/wKich/creevey/commit/0f29b121bb09e9840d3251eb9fe6d25a986aa46d))
|
514
|
-
|
515
|
-
### Features
|
516
|
-
|
517
|
-
- 🎸 Add run button in addon ([8b3596c](https://github.com/wKich/creevey/commit/8b3596cc05ff8dcfa987f816db0b02d5097517f6))
|
518
|
-
- 🎸 show status in sidebar ([c28c2da](https://github.com/wKich/creevey/commit/c28c2daab6726735f05ab3d30d4c4662bfb8245f))
|
519
|
-
- 🎸 Storybook addon ([7c47c4b](https://github.com/wKich/creevey/commit/7c47c4bc4432ef55364824cee2c1b42430e02a33))
|
520
|
-
|
521
|
-
# [0.7.0-beta.4](https://github.com/wKich/creevey/compare/v0.7.0-beta.3...v0.7.0-beta.4) (2020-09-26)
|
522
|
-
|
523
|
-
### Bug Fixes
|
524
|
-
|
525
|
-
- 🐛 correctly load report from previous run ([e680e24](https://github.com/wKich/creevey/commit/e680e244728fa7347eac194c88145dec2d0b87a0))
|
526
|
-
|
527
|
-
# [0.7.0-beta.3](https://github.com/wKich/creevey/compare/v0.7.0-beta.2...v0.7.0-beta.3) (2020-09-25)
|
528
|
-
|
529
|
-
### Bug Fixes
|
530
|
-
|
531
|
-
- 🐛 resolve storybook url on windows with multiple networks ([eb1dcf3](https://github.com/wKich/creevey/commit/eb1dcf3df3ef1c084165ad51e41cade2190c3935))
|
532
|
-
- 🐛 use `find-dir-cache` to store cache in right place ([c10a951](https://github.com/wKich/creevey/commit/c10a951e6cb05c29222348922d3639de98c04544))
|
533
|
-
- 🐛 use selenoid instead of browser images ([b187e62](https://github.com/wKich/creevey/commit/b187e62cb3ef3fe8d4e0128f293ebf693054c5d3))
|
534
|
-
- docker network for windows/wsl ([da8b491](https://github.com/wKich/creevey/commit/da8b49172f01a6131bea505021c6ea6ff2e77561))
|
535
|
-
|
536
|
-
### Features
|
537
|
-
|
538
|
-
- 🎸 add support docker ([c5f7976](https://github.com/wKich/creevey/commit/c5f7976f741e3a7cf1d06615c8013475e4677809))
|
539
|
-
|
540
|
-
# [0.7.0-beta.2](https://github.com/wKich/creevey/compare/v0.7.0-beta.1...v0.7.0-beta.2) (2020-09-10)
|
541
|
-
|
542
|
-
### Bug Fixes
|
543
|
-
|
544
|
-
- 🐛 exit master process with after hook ([e90adfb](https://github.com/wKich/creevey/commit/e90adfb603a5b48a0e085843df03b074923201d5))
|
545
|
-
|
546
|
-
# [0.7.0-beta.1](https://github.com/wKich/creevey/compare/v0.7.0-beta.0...v0.7.0-beta.1) (2020-09-08)
|
547
|
-
|
548
|
-
### Bug Fixes
|
549
|
-
|
550
|
-
- 🐛 collect all errors ([66146d7](https://github.com/wKich/creevey/commit/66146d7372f46b71055ad7e64f945463b1a21184))
|
551
|
-
- 🐛 don't show error if image has been approved ([6b74e1d](https://github.com/wKich/creevey/commit/6b74e1d42d8d2297e5187670f9e05be337e20348))
|
552
|
-
- 🐛 image preview height ([afe125d](https://github.com/wKich/creevey/commit/afe125d535be85bc899eaa03683924c3c0c5a856))
|
553
|
-
|
554
|
-
### Features
|
555
|
-
|
556
|
-
- 🎸 add before/after hooks ([32bc397](https://github.com/wKich/creevey/commit/32bc397e2c0e37d947df9d34a62aa356aa88ad41))
|
557
|
-
- 🎸 show error images in imagePreview ([5d2037a](https://github.com/wKich/creevey/commit/5d2037aa86a8a700a6a82e88f980eed5fba873a9))
|
558
|
-
|
559
|
-
# [0.7.0-beta.0](https://github.com/wKich/creevey/compare/v0.6.4...v0.7.0-beta.0) (2020-08-04)
|
560
|
-
|
561
|
-
### Bug Fixes
|
562
|
-
|
563
|
-
- 🐛 gracefully end worker processes ([e2d2548](https://github.com/wKich/creevey/commit/e2d254882ca8fa993d20725dd3132c6069f185f5))
|
564
|
-
- 🐛 remove scroll when change image in swap mode ([7ccc42c](https://github.com/wKich/creevey/commit/7ccc42cc36b3d1fef5964fcc60e40899b6d995fc))
|
565
|
-
- 🐛 tests hot reloading ([b96bfa9](https://github.com/wKich/creevey/commit/b96bfa9e9509d67dd685ee30c26b37b96eb20289))
|
566
|
-
|
567
|
-
### Features
|
568
|
-
|
569
|
-
- 🎸 support storybook v6.x ([9bb7397](https://github.com/wKich/creevey/commit/9bb7397b3e0dbc88f7f212aab4ee807ae25e8d64))
|
570
|
-
|
571
|
-
## [0.6.4](https://github.com/wKich/creevey/compare/v0.6.3...v0.6.4) (2020-07-27)
|
572
|
-
|
573
|
-
### Bug Fixes
|
574
|
-
|
575
|
-
- 🐛 hot-reloading issue, add readme notes ([5497b71](https://github.com/wKich/creevey/commit/5497b710053285a4f0b4cad075427b2ee7287be2))
|
576
|
-
- 🐛 react example loadash vulnerability ([e188d1d](https://github.com/wKich/creevey/commit/e188d1d4e43ddd4df0a00de54f37d61f3e2aecc0))
|
577
|
-
- 🐛 storybook bundle depends on core-js, regenerator-runtime ([ce596b9](https://github.com/wKich/creevey/commit/ce596b91665d74f68b0442d767d8e81a48e034c0))
|
578
|
-
- 🐛 watch stories on windows ([ce599cc](https://github.com/wKich/creevey/commit/ce599ccc0e9eaa31e01987297e1f5c6a899a56ac))
|
579
|
-
|
580
|
-
### Features
|
581
|
-
|
582
|
-
- 🎸 add disabled state to start button ([260193a](https://github.com/wKich/creevey/commit/260193a49f67e500db771688aae95e2fc1e4694b))
|
583
|
-
- 🎸 Save view mode ([ea461cc](https://github.com/wKich/creevey/commit/ea461ccb26c5888a1dff54077cac264f2ae4ab27))
|
584
|
-
|
585
|
-
## [0.6.3](https://github.com/wKich/creevey/compare/v0.6.2...v0.6.3) (2020-06-16)
|
586
|
-
|
587
|
-
### Bug Fixes
|
588
|
-
|
589
|
-
- 🐛 test reloading dont work well ([3049dfd](https://github.com/wKich/creevey/commit/3049dfdcda6bc7ae2c85fb6afbfa89cb0f8a1aeb))
|
590
|
-
|
591
|
-
## [0.6.2](https://github.com/wKich/creevey/compare/v0.6.1...v0.6.2) (2020-06-10)
|
592
|
-
|
593
|
-
### Bug Fixes
|
594
|
-
|
595
|
-
- 🐛 disable hot-reloading without `--ui` option ([3ea0792](https://github.com/wKich/creevey/commit/3ea0792a6612a01cb62a4650414b6aa26c138665))
|
596
|
-
|
597
|
-
## [0.6.1](https://github.com/wKich/creevey/compare/v0.6.0...v0.6.1) (2020-06-10)
|
598
|
-
|
599
|
-
### Bug Fixes
|
600
|
-
|
601
|
-
- 🐛 ERR_IPC_CHANNEL_CLOSED finally ([965e6de](https://github.com/wKich/creevey/commit/965e6de21acd4d77a9971f072d40f7c42d900bab))
|
602
|
-
- 🐛 mocha 7.2 multiple runs, remove old hacks ([0ca08be](https://github.com/wKich/creevey/commit/0ca08bebe436ebc91c0fbc501850339dea5fe0e2))
|
603
|
-
|
604
|
-
# [0.6.0](https://github.com/wKich/creevey/compare/v0.6.0-beta.8...v0.6.0) (2020-06-09)
|
605
|
-
|
606
|
-
### Bug Fixes
|
607
|
-
|
608
|
-
- 🐛 kind-of@6.0.2 vulnerability ([489783e](https://github.com/wKich/creevey/commit/489783ee489c5d4f9d0ca5de87dedb6be6e78e1e))
|
609
|
-
- 🐛 loader: remove vars in desctructuring ([8567fd6](https://github.com/wKich/creevey/commit/8567fd60e3ba67572e45f22629f639f6f17647b3))
|
610
|
-
|
611
|
-
# [0.6.0-beta.8](https://github.com/wKich/creevey/compare/v0.6.0-beta.7...v0.6.0-beta.8) (2020-06-04)
|
612
|
-
|
613
|
-
### Bug Fixes
|
614
|
-
|
615
|
-
- 🐛 output warning `Did you call 'load' twice` on reload ([1b2bbeb](https://github.com/wKich/creevey/commit/1b2bbeb8c7f8052514feab767b599b66fec3adf7))
|
616
|
-
|
617
|
-
# [0.6.0-beta.7](https://github.com/wKich/creevey/compare/v0.6.0-beta.6...v0.6.0-beta.7) (2020-06-02)
|
618
|
-
|
619
|
-
### Bug Fixes
|
620
|
-
|
621
|
-
- 🐛 webpack recursion IPC, again ([5083454](https://github.com/wKich/creevey/commit/5083454c1d330ad0abf2ac24ddeb73f1f5367f3a))
|
622
|
-
|
623
|
-
# [0.6.0-beta.6](https://github.com/wKich/creevey/compare/v0.6.0-beta.5...v0.6.0-beta.6) (2020-06-02)
|
624
|
-
|
625
|
-
### Bug Fixes
|
626
|
-
|
627
|
-
- 🐛 IPC messages recursion, again ([4500e92](https://github.com/wKich/creevey/commit/4500e92525307b1966be9fbce39c7bb50b18c25b))
|
628
|
-
|
629
|
-
# [0.6.0-beta.5](https://github.com/wKich/creevey/compare/v0.6.0-beta.4...v0.6.0-beta.5) (2020-06-02)
|
630
|
-
|
631
|
-
### Bug Fixes
|
632
|
-
|
633
|
-
- 🐛 webpack compiler process send messages recursion ([4fd2afe](https://github.com/wKich/creevey/commit/4fd2afeb7e2a2254eb1638f5ca2fc836550c59dd))
|
634
|
-
|
635
|
-
# [0.6.0-beta.4](https://github.com/wKich/creevey/compare/v0.6.0-beta.3...v0.6.0-beta.4) (2020-06-02)
|
636
|
-
|
637
|
-
### Bug Fixes
|
638
|
-
|
639
|
-
- 🐛 another fix to gracefully exit ([e433afd](https://github.com/wKich/creevey/commit/e433afd30b6a001c9cfcbc1d267557dd7d7f3ed3))
|
640
|
-
- 🐛 check element before capturing screenshot ([53df80b](https://github.com/wKich/creevey/commit/53df80bb2a7c234e5f0109d0f1c8beca88ddb1e9))
|
641
|
-
- 🐛 some small init/exit issues ([6c4d666](https://github.com/wKich/creevey/commit/6c4d666040eafdf721d17a0f40714af9a85ae109))
|
642
|
-
|
643
|
-
### Features
|
644
|
-
|
645
|
-
- 🎸 allow use `delay` with custom tests ([7a1ab33](https://github.com/wKich/creevey/commit/7a1ab337e52577f3fc934b5edca12638a1ea8e07))
|
646
|
-
|
647
|
-
# [0.6.0-beta.3](https://github.com/wKich/creevey/compare/v0.6.0-beta.2...v0.6.0-beta.3) (2020-05-27)
|
648
|
-
|
649
|
-
### Bug Fixes
|
650
|
-
|
651
|
-
- 🐛 EPIPE message on exit again ([a5bb06d](https://github.com/wKich/creevey/commit/a5bb06def9bb4598ee5619ab4942936845dea44c))
|
652
|
-
- 🐛 make loader be more aggressive ([78c3d53](https://github.com/wKich/creevey/commit/78c3d53d8439338e634349e9c7999f017ea1f10f))
|
653
|
-
- 🐛 soft-freeze mocha version on 7.1 ([5aa3f57](https://github.com/wKich/creevey/commit/5aa3f57ea0fcf3512646a7c346b89ba4f6057767))
|
654
|
-
|
655
|
-
# [0.6.0-beta.2](https://github.com/wKich/creevey/compare/v0.6.0-beta.1...v0.6.0-beta.2) (2020-05-18)
|
656
|
-
|
657
|
-
### Bug Fixes
|
658
|
-
|
659
|
-
- 🐛 correct shutdown workers ([30e7066](https://github.com/wKich/creevey/commit/30e70661b2e1c6b8aab9efbdd3af541c56e719f4))
|
660
|
-
- 🐛 correctly close browser session on SIGINT ([079b832](https://github.com/wKich/creevey/commit/079b8326f45d8b7a0de539c3ed2f105679a04534))
|
661
|
-
- 🐛 ignore removing bundle cache directory ([6be2bd7](https://github.com/wKich/creevey/commit/6be2bd789c5b259e3351169a47f1bb932ef5de44))
|
662
|
-
|
663
|
-
# [0.6.0-beta.1](https://github.com/wKich/creevey/compare/v0.6.0-beta.0...v0.6.0-beta.1) (2020-05-15)
|
664
|
-
|
665
|
-
### Bug Fixes
|
666
|
-
|
667
|
-
- 🐛 storybook framework detection on windows ([fb68cf1](https://github.com/wKich/creevey/commit/fb68cf168a1ad5704e2be00b456015dd2780bf0e))
|
668
|
-
|
669
|
-
# [0.6.0-beta.0](https://github.com/wKich/creevey/compare/v0.5.6...v0.6.0-beta.0) (2020-05-14)
|
670
|
-
|
671
|
-
### Bug Fixes
|
672
|
-
|
673
|
-
- 🐛 support latest selenium browser drivers ([0921aed](https://github.com/wKich/creevey/commit/0921aed898c19ddb38bd6949a6e85699dddaffd7))
|
674
|
-
|
675
|
-
### Features
|
676
|
-
|
677
|
-
- 🎸 add creevey-loader for webpack ([c15b32d](https://github.com/wKich/creevey/commit/c15b32ddcfbdc7fc906a6a03d27539f87e620a85))
|
678
|
-
- 🎸 rework load stories process ([e47f806](https://github.com/wKich/creevey/commit/e47f8067b6a18d066f60196605666ed8db6fadf1))
|
679
|
-
|
680
|
-
## [0.5.6](https://github.com/wKich/creevey/compare/v0.5.5...v0.5.6) (2020-05-04)
|
681
|
-
|
682
|
-
### Bug Fixes
|
683
|
-
|
684
|
-
- 🐛 handle worker initiating error ([dc8a4f6](https://github.com/wKich/creevey/commit/dc8a4f616a19d70adcd288de7b5bce89e6e46315))
|
685
|
-
|
686
|
-
## [0.5.5](https://github.com/wKich/creevey/compare/v0.5.4...v0.5.5) (2020-04-21)
|
687
|
-
|
688
|
-
### Features
|
689
|
-
|
690
|
-
- 🎸 add `saveReport` cli option, enabled by default ([88aa930](https://github.com/wKich/creevey/commit/88aa930dd61ce7902095a9a86cab36529b355014))
|
691
|
-
- 🎸 support .creevey config dir ([ba1c560](https://github.com/wKich/creevey/commit/ba1c5600295e5cc655370c004cf33dee4b364615))
|
692
|
-
|
693
|
-
## [0.5.4](https://github.com/wKich/creevey/compare/v0.5.3...v0.5.4) (2020-04-04)
|
694
|
-
|
695
|
-
### Bug Fixes
|
696
|
-
|
697
|
-
- 🐛 remove new code that added by mistake ([f4cbf8c](https://github.com/wKich/creevey/commit/f4cbf8cbc5d327f321da3f3dbf6b11da0e14583e))
|
698
|
-
|
699
|
-
## [0.5.3](https://github.com/wKich/creevey/compare/v0.5.2...v0.5.3) (2020-04-04)
|
700
|
-
|
701
|
-
### Bug Fixes
|
702
|
-
|
703
|
-
- 🐛 precompile decorator file for ie11 target ([f4b8742](https://github.com/wKich/creevey/commit/f4b8742a8848fd2656c6cd639ef8678e0e4f35c0))
|
704
|
-
|
705
|
-
## [0.5.2](https://github.com/wKich/creevey/compare/v0.5.1...v0.5.2) (2020-03-30)
|
706
|
-
|
707
|
-
### Bug Fixes
|
708
|
-
|
709
|
-
- 🐛 use selenium as deps, rename storybook peerDeps package ([3e0faa3](https://github.com/wKich/creevey/commit/3e0faa39976cf30e3cd95a38bd6326c81f1078c5))
|
710
|
-
- ignore \*.scss modules while loading stories ([075068a](https://github.com/wKich/creevey/commit/075068a9192db6c0ed18c4802144b32930433e60))
|
711
|
-
|
712
|
-
## [0.5.1](https://github.com/wKich/creevey/compare/v0.5.0...v0.5.1) (2020-03-26)
|
713
|
-
|
714
|
-
### Features
|
715
|
-
|
716
|
-
- 🎸 output story render error ([18e7d9d](https://github.com/wKich/creevey/commit/18e7d9dea772cc10e1f75173c4faa47155e9c934))
|
717
|
-
|
718
|
-
# [0.5.0](https://github.com/wKich/creevey/compare/v0.4.11...v0.5.0) (2020-03-25)
|
719
|
-
|
720
|
-
### Bug Fixes
|
721
|
-
|
722
|
-
- 🐛 gracefully close selenium session ([cd8b630](https://github.com/wKich/creevey/commit/cd8b630b10008db21bc57feb4ffac671fc40ad08))
|
723
|
-
- 🐛 improve blend view css filters ([6ba0687](https://github.com/wKich/creevey/commit/6ba0687f7f6e6839fe30843871daad5c04a58857))
|
724
|
-
- 🐛 jsdom localStorage warning ([d1099ff](https://github.com/wKich/creevey/commit/d1099ffbce27c8e6851c55970f3875680df6fabb))
|
725
|
-
- 🐛 take composite images without hiding scrollbar ([4b3d95a](https://github.com/wKich/creevey/commit/4b3d95a82d339070497b97cb4bd50435851b75de))
|
726
|
-
|
727
|
-
### Features
|
728
|
-
|
729
|
-
- 🎸 rewrite storybook decorator to be framework agnostic ([f2d7904](https://github.com/wKich/creevey/commit/f2d7904a70c981fa64891f40845b1bb2abed7559))
|
730
|
-
- 🎸 support safari for composite images ([d078448](https://github.com/wKich/creevey/commit/d07844883071607bd6424e82f239b36b401722cb))
|
731
|
-
|
732
|
-
## [0.4.11](https://github.com/wKich/creevey/compare/v0.4.10...v0.4.11) (2020-03-13)
|
733
|
-
|
734
|
-
### Bug Fixes
|
735
|
-
|
736
|
-
- 🐛 hide scroll only for composite screenshots ([d9753d2](https://github.com/wKich/creevey/commit/d9753d2405e0aefb90663070d30465b0c8528f50))
|
737
|
-
|
738
|
-
## [0.4.10](https://github.com/wKich/creevey/compare/v0.4.9...v0.4.10) (2020-03-13)
|
739
|
-
|
740
|
-
### Bug Fixes
|
741
|
-
|
742
|
-
- 🐛 skip by test name with multiple skip options ([3d0ef36](https://github.com/wKich/creevey/commit/3d0ef36c8e2a994c171133f3e0c479f92016a9a2))
|
743
|
-
|
744
|
-
## [0.4.9](https://github.com/wKich/creevey/compare/v0.4.8...v0.4.9) (2020-03-13)
|
745
|
-
|
746
|
-
### Bug Fixes
|
747
|
-
|
748
|
-
- 🐛 exclude `@babel/*` modules from skiping while fastload ([a785fcf](https://github.com/wKich/creevey/commit/a785fcf9cf5e8e591fcf11280eb040658319ace8))
|
749
|
-
|
750
|
-
## [0.4.8](https://github.com/wKich/creevey/compare/v0.4.7...v0.4.8) (2020-03-13)
|
751
|
-
|
752
|
-
### Bug Fixes
|
753
|
-
|
754
|
-
- 🐛 broken skip by test names ([e33c3d9](https://github.com/wKich/creevey/commit/e33c3d90b48df22540fc6cccaae71c47163b6599))
|
755
|
-
|
756
|
-
## [0.4.7](https://github.com/wKich/creevey/compare/v0.4.6...v0.4.7) (2020-03-13)
|
757
|
-
|
758
|
-
### Bug Fixes
|
759
|
-
|
760
|
-
- 🐛 register require.context before all other modules ([5474f87](https://github.com/wKich/creevey/commit/5474f87afe258022ad219db53c300305a143e6bb))
|
761
|
-
|
762
|
-
## [0.4.6](https://github.com/wKich/creevey/compare/v0.4.5...v0.4.6) (2020-03-13)
|
763
|
-
|
764
|
-
### Features
|
765
|
-
|
766
|
-
- 🎸 allow take composite screenshots in custom tests ([5dd1e7d](https://github.com/wKich/creevey/commit/5dd1e7d89b04b2629d9766f254a1b5f69bb5d17f))
|
767
|
-
|
768
|
-
## [0.4.5](https://github.com/wKich/creevey/compare/v0.4.4...v0.4.5) (2020-03-12)
|
769
|
-
|
770
|
-
### Features
|
771
|
-
|
772
|
-
- 🎸 add `delay` creevey story parameter ([49ecf00](https://github.com/wKich/creevey/commit/49ecf00ea90d2485833965794c1300ca7da4d17b))
|
773
|
-
|
774
|
-
## [0.4.4](https://github.com/wKich/creevey/compare/v0.4.3...v0.4.4) (2020-03-12)
|
775
|
-
|
776
|
-
### Features
|
777
|
-
|
778
|
-
- 🎸 add `debug` cli option ([cff35ea](https://github.com/wKich/creevey/commit/cff35eaad4bce400fb18b0f5daa520060cef5870))
|
779
|
-
- 🎸 improve creevey story params typings, simplify tests ([f78d372](https://github.com/wKich/creevey/commit/f78d372bff2837915ef7b0d0f22089fbe3607a18))
|
780
|
-
|
781
|
-
## [0.4.3](https://github.com/wKich/creevey/compare/v0.4.2...v0.4.3) (2020-03-11)
|
782
|
-
|
783
|
-
### Features
|
784
|
-
|
785
|
-
- 🎸 improve fastloading, to allow use side effects ([15ca5cc](https://github.com/wKich/creevey/commit/15ca5cc4ed73dff38707e8a713a03778663a7482))
|
786
|
-
|
787
|
-
## [0.4.2](https://github.com/wKich/creevey/compare/v0.4.1...v0.4.2) (2020-03-11)
|
788
|
-
|
789
|
-
### Bug Fixes
|
790
|
-
|
791
|
-
- 🐛 patch babel-register hook to support all extensions ([918ae27](https://github.com/wKich/creevey/commit/918ae2709a1f0fd7773cc44575d5ab3e9d2f4b29))
|
792
|
-
|
793
|
-
## [0.4.1](https://github.com/wKich/creevey/compare/v0.4.0...v0.4.1) (2020-03-10)
|
794
|
-
|
795
|
-
### Bug Fixes
|
796
|
-
|
797
|
-
- 🐛 some minor issues ([e309d56](https://github.com/wKich/creevey/commit/e309d56937a50fb544d7cd8b6366991b693ba111))
|
798
|
-
|
799
|
-
# [0.4.0](https://github.com/wKich/creevey/compare/v0.3.8...v0.4.0) (2020-03-04)
|
800
|
-
|
801
|
-
### Features
|
802
|
-
|
803
|
-
- 🎸 add test hot reloading, support new storybook configs ([7e282cb](https://github.com/wKich/creevey/commit/7e282cb2541d1a4f105a45474decd0dcf7e05759))
|
804
|
-
|
805
|
-
## [0.3.8](https://github.com/wKich/creevey/compare/v0.3.7...v0.3.8) (2020-03-03)
|
806
|
-
|
807
|
-
### Bug Fixes
|
808
|
-
|
809
|
-
- 🐛 ie11 don't work due async fn in types.ts file ([c1e8bbc](https://github.com/wKich/creevey/commit/c1e8bbc8747e68e26656f21f2d6247f654324cf2))
|
810
|
-
- 🐛 register pirates hook before any compiler ([7acde29](https://github.com/wKich/creevey/commit/7acde290f162ea651746f4d230073055a4bed956))
|
811
|
-
|
812
|
-
## [0.3.7](https://github.com/wKich/creevey/compare/v0.3.6...v0.3.7) (2020-02-20)
|
813
|
-
|
814
|
-
### Bug Fixes
|
815
|
-
|
816
|
-
- 🐛 fix bug with sync call onCompare ([e5c9e2c](https://github.com/wKich/creevey/commit/e5c9e2c4b8c19238608d4bba5bc3d2bd9f6871f6))
|
817
|
-
|
818
|
-
### Features
|
819
|
-
|
820
|
-
- 🎸 add onClick on teststatus for filter ([c28261c](https://github.com/wKich/creevey/commit/c28261c829e683dcfbee480d682f4cda61958dfc))
|
821
|
-
|
822
|
-
## [0.3.6](https://github.com/wKich/creevey/compare/v0.3.5...v0.3.6) (2020-02-17)
|
823
|
-
|
824
|
-
### Bug Fixes
|
825
|
-
|
826
|
-
- 🐛 output error message while init for master process ([2f48e37](https://github.com/wKich/creevey/commit/2f48e37d90422d4574b3c9186c68daf5a7339f50))
|
827
|
-
- ignore various non-js extensions on story load ([55f0ed0](https://github.com/wKich/creevey/commit/55f0ed01b1c235ba8e03f0c2defab8023087d46e))
|
828
|
-
|
829
|
-
## [0.3.5](https://github.com/wKich/creevey/compare/v0.3.4...v0.3.5) (2020-02-11)
|
830
|
-
|
831
|
-
### Bug Fixes
|
832
|
-
|
833
|
-
- 🐛 don't mutate test scope on image assertion ([939c1fe](https://github.com/wKich/creevey/commit/939c1fed02eee5af441a99e9451d40adaf379ffc))
|
834
|
-
- 🐛 don't show tests without status by status filter ([9d79781](https://github.com/wKich/creevey/commit/9d797817f306165b42d0e6f79ef95841d4fe24cd))
|
835
|
-
- 🐛 improve configs load process ([611af95](https://github.com/wKich/creevey/commit/611af959d9b91e1826e0d357620f56ee6b394d93))
|
836
|
-
- 🐛 remove mkdirp dependency ([e5cabef](https://github.com/wKich/creevey/commit/e5cabef02ae096318b3281cfe099fb6e275106fc))
|
837
|
-
- 🐛 support renamed stories ([003ff10](https://github.com/wKich/creevey/commit/003ff109a25475d7c849d06ba408e29090709a9b))
|
838
|
-
- 🐛 support windows paths to load storybook, disable debug ([7250b6a](https://github.com/wKich/creevey/commit/7250b6ad85862985e2e30a874bd508d79bf1b175))
|
839
|
-
- correct handle process errors for worker ([1d7f035](https://github.com/wKich/creevey/commit/1d7f035b66bb2d5638679d4cb4f50958da629773))
|
840
|
-
|
841
|
-
## [0.3.4](https://github.com/wKich/creevey/compare/v0.3.3...v0.3.4) (2020-01-17)
|
842
|
-
|
843
|
-
### Bug Fixes
|
844
|
-
|
845
|
-
- 🐛 improve fast-loading, throw non-syntax errors on require ([4f288b7](https://github.com/wKich/creevey/commit/4f288b76e932090622f295f00dca12a179403a4f))
|
846
|
-
|
847
|
-
### Features
|
848
|
-
|
849
|
-
- 🎸 allow pass diff options to pixelmatch ([32d6bb1](https://github.com/wKich/creevey/commit/32d6bb1868f11aa416a0872e927b97768b8eb2aa))
|
850
|
-
- 🎸 improve stories initialization speed ([1009728](https://github.com/wKich/creevey/commit/10097280d24a24fb4033e4516458b2e62a0dbe63))
|
851
|
-
|
852
|
-
### BREAKING CHANGES
|
853
|
-
|
854
|
-
- `threshold` config option are replaced to `diffOptions`
|
855
|
-
|
856
|
-
## [0.3.3](https://github.com/wKich/creevey/compare/v0.3.2...v0.3.3) (2020-01-16)
|
857
|
-
|
858
|
-
### Bug Fixes
|
859
|
-
|
860
|
-
- 🐛 add hint for images preview ([ddf3615](https://github.com/wKich/creevey/commit/ddf3615ca36e1f36ff02a348ad2cec0bc819a304))
|
861
|
-
- 🐛 move mocha typing to devDeps ([50f4a92](https://github.com/wKich/creevey/commit/50f4a9284e081054688114d0fd1054c8bbb3c16b))
|
862
|
-
|
863
|
-
## [0.3.2](https://github.com/wKich/creevey/compare/v0.3.1...v0.3.2) (2020-01-15)
|
864
|
-
|
865
|
-
### Bug Fixes
|
866
|
-
|
867
|
-
- 🐛 initiate browser after all stories has been loaded ([f95d8dc](https://github.com/wKich/creevey/commit/f95d8dcad1dd1feb1bcd5ae548131edd8c0ceec9))
|
868
|
-
|
869
|
-
## [0.3.1](https://github.com/wKich/creevey/compare/v0.3.0...v0.3.1) (2020-01-13)
|
870
|
-
|
871
|
-
### Bug Fixes
|
872
|
-
|
873
|
-
- 🐛 capture screenshot of element with non-integer size ([28fc1cc](https://github.com/wKich/creevey/commit/28fc1cc9162db6bb9085321883bd04abdb4ae880))
|
874
|
-
- 🐛 require config when path don't have extension ([93fb11b](https://github.com/wKich/creevey/commit/93fb11b0d4740b6da598a9e923dafb9c75394c70))
|
875
|
-
|
876
|
-
# [0.3.0](https://github.com/wKich/creevey/compare/v0.2.6...v0.3.0) (2020-01-10)
|
877
|
-
|
878
|
-
### Features
|
879
|
-
|
880
|
-
- 🎸 remove support explicit test cases ([4b56ddf](https://github.com/wKich/creevey/commit/4b56ddf7617785ce93cd17fe9e82e928c56011bb))
|
881
|
-
|
882
|
-
## [0.2.6](https://github.com/wKich/creevey/compare/v0.2.5...v0.2.6) (2020-01-10)
|
883
|
-
|
884
|
-
### Features
|
885
|
-
|
886
|
-
- 🎸 add `tests` story parameter for public usage ([c4d7dc0](https://github.com/wKich/creevey/commit/c4d7dc0191b1aafba2aa9f6d18d6d99d4093fcb3))
|
887
|
-
- 🎸 add `toMatchImages` assertion for chai ([1fef184](https://github.com/wKich/creevey/commit/1fef1847248405fc32e76d4d3b4387e200290d8c))
|
888
|
-
|
889
|
-
## [0.2.5](https://github.com/wKich/creevey/compare/v0.2.4...v0.2.5) (2020-01-10)
|
890
|
-
|
891
|
-
### Bug Fixes
|
892
|
-
|
893
|
-
- 🐛 correct work update with new report structure ([5bf17c1](https://github.com/wKich/creevey/commit/5bf17c10799f136d73639d9075866c6f308e30ed))
|
894
|
-
|
895
|
-
### Features
|
896
|
-
|
897
|
-
- 🎸 add `reportDir/screenDir` cli options ([3b059a6](https://github.com/wKich/creevey/commit/3b059a6e36a33d5963be216368391ed940b17b65))
|
898
|
-
- 🎸 load stories in nodejs and generate tests in runtime ([3f276a4](https://github.com/wKich/creevey/commit/3f276a4d06e006878cd4733797c2a262abf73ea6))
|
899
|
-
|
900
|
-
## [0.2.4](https://github.com/wKich/creevey/compare/v0.2.3...v0.2.4) (2019-12-23)
|
901
|
-
|
902
|
-
### Bug Fixes
|
903
|
-
|
904
|
-
- 🐛 convert export story names to storybook format ([43b227e](https://github.com/wKich/creevey/commit/43b227ed69c67bbedfac555f31c845fdb2b04840))
|
905
|
-
- 🐛 don't use webdriver object serialization ([c4545f0](https://github.com/wKich/creevey/commit/c4545f071269426caa24599d6e1b72d933d60152))
|
906
|
-
|
907
|
-
## [0.2.3](https://github.com/wKich/creevey/compare/v0.2.2...v0.2.3) (2019-12-19)
|
908
|
-
|
909
|
-
### Bug Fixes
|
910
|
-
|
911
|
-
- 🐛 allow skip tests by kinds ([ddc8a27](https://github.com/wKich/creevey/commit/ddc8a272e2a24cec2c25479788791a46ef1a8943)), closes [#12](https://github.com/wKich/creevey/issues/12)
|
912
|
-
- 🐛 wrap long suite/test titles ([c7f7920](https://github.com/wKich/creevey/commit/c7f79203b3ecbb3526312084897513c827bcf598))
|
913
|
-
|
914
|
-
## [0.2.2](https://github.com/wKich/creevey/compare/v0.2.1...v0.2.2) (2019-12-11)
|
915
|
-
|
916
|
-
### Bug Fixes
|
917
|
-
|
918
|
-
- 🐛 correct publish artifacts for TeamCity reporter ([5949bc3](https://github.com/wKich/creevey/commit/5949bc3a21a393ec0b15d0b104f59e4eae0f668a))
|
919
|
-
|
920
|
-
## [0.2.1](https://github.com/wKich/creevey/compare/v0.2.0...v0.2.1) (2019-12-11)
|
921
|
-
|
922
|
-
### Bug Fixes
|
923
|
-
|
924
|
-
- 🐛 allow click on checkbox in sidebar ([a750d46](https://github.com/wKich/creevey/commit/a750d46734290773298a07efef25d4eb2f992842))
|
925
|
-
- 🐛 correct report teamcity artifacts ([dfc7251](https://github.com/wKich/creevey/commit/dfc72514c1fa2f692a80e6bf1092255cbe7d47a9))
|
926
|
-
- 🐛 firefox SlideView ([91ef075](https://github.com/wKich/creevey/commit/91ef0750f1579b27a478725152f3fde95abcdb24))
|
927
|
-
|
928
|
-
# [0.2.0](https://github.com/wKich/creevey/compare/v0.1.7...v0.2.0) (2019-12-05)
|
929
|
-
|
930
|
-
### Bug Fixes
|
931
|
-
|
932
|
-
- 🐛 a lot of bugs with views, approve and more ([45c86d3](https://github.com/wKich/creevey/commit/45c86d30468c80508aedb5c52a4e8c9e96a34daf))
|
933
|
-
- 🐛 ImagesView correctly resize image in most cases ([258506a](https://github.com/wKich/creevey/commit/258506a3877bb32d4b38d6ce20d15372095edadf))
|
934
|
-
- 🐛 improve SideBar tests view ([a495fc1](https://github.com/wKich/creevey/commit/a495fc1b0321763092105ef641fc48b23548440b))
|
935
|
-
- 🐛 switch between tests ([ae25d59](https://github.com/wKich/creevey/commit/ae25d59d3d6e8433b522d13994d7e096e0958651))
|
936
|
-
- tests status move down, when scroll is shown ([9df0523](https://github.com/wKich/creevey/commit/9df0523e9a4b8bc54488e45eb106e8077303f146))
|
937
|
-
|
938
|
-
### Features
|
939
|
-
|
940
|
-
- 🎸 improve markup for ResultPage by prototypes ([09cd297](https://github.com/wKich/creevey/commit/09cd297010b1677fb8900d4e8db5be9629be10e7))
|
941
|
-
- 🎸 output penging tests count ([793d60f](https://github.com/wKich/creevey/commit/793d60fd771f267d7711b8853d1381405b4ee01f))
|
942
|
-
- 🎸 sticky SideBar with sitcky header ([06cc16c](https://github.com/wKich/creevey/commit/06cc16cc79be0756ff117f40447a9eaa28bf5f2a))
|
943
|
-
- 🎸 update SideBar markup by prototype ([7ba22fd](https://github.com/wKich/creevey/commit/7ba22fd766ca86de92da89b4a2260bc3495e16ab))
|
944
|
-
- swap images buttons by prototype ([5ce4214](https://github.com/wKich/creevey/commit/5ce4214c9a18f48b654534fbd77e297dce9cb7b7))
|
945
|
-
- view tests results count in sidebar ([9300f07](https://github.com/wKich/creevey/commit/9300f07abeb7cb4271cf85478493a9090cdc8127))
|
946
|
-
|
947
|
-
## [0.1.7](https://github.com/wKich/creevey/compare/v0.1.6...v0.1.7) (2019-11-22)
|
948
|
-
|
949
|
-
### Features
|
950
|
-
|
951
|
-
- 🎸 allow skip test stories by kinds ([1cb4968](https://github.com/wKich/creevey/commit/1cb49688616ac3060012e800428f1f67d066c2ab))
|
952
|
-
|
953
|
-
## [0.1.6](https://github.com/wKich/creevey/compare/v0.1.5...v0.1.6) (2019-11-22)
|
954
|
-
|
955
|
-
### Bug Fixes
|
956
|
-
|
957
|
-
- 🐛 handle regexp skip options ([d07689e](https://github.com/wKich/creevey/commit/d07689e428420084826391ae3438dc81d2b02922))
|
958
|
-
- 🐛 output correct reported screenshot path for teamcity ([fb7d230](https://github.com/wKich/creevey/commit/fb7d230258644c18649939dfb9dd92b5421d6ca1))
|
959
|
-
- 🐛 significantly improve perfomance ([422f023](https://github.com/wKich/creevey/commit/422f023cbb1b290ddd8e1b103856a6d2db293b52))
|
960
|
-
|
961
|
-
## [0.1.5](https://github.com/wKich/creevey/compare/v0.1.4...v0.1.5) (2019-11-20)
|
962
|
-
|
963
|
-
### Bug Fixes
|
964
|
-
|
965
|
-
- 🐛 require stories in nodejs env ([0e00fa6](https://github.com/wKich/creevey/commit/0e00fa629610960e0fab7fcea02596c4aa7ce107))
|
966
|
-
|
967
|
-
### Features
|
968
|
-
|
969
|
-
- 🎸 support write tests inside stories ([ce9ed7d](https://github.com/wKich/creevey/commit/ce9ed7d09c0312a073e0897ece8e082d17b0cb30))
|
970
|
-
|
971
|
-
## [0.1.4](https://github.com/wKich/creevey/compare/v0.1.3...v0.1.4) (2019-11-18)
|
972
|
-
|
973
|
-
### Bug Fixes
|
974
|
-
|
975
|
-
- **master:** dont output skipped tests ([1e23321](https://github.com/wKich/creevey/commit/1e233218054719f72d2d0bbf040d83b68955dca2))
|
976
|
-
- **utils:** improve error message when storybook page not available ([4c44763](https://github.com/wKich/creevey/commit/4c4476347e8aa5c90d6a84d680ee6d091d1897be))
|
977
|
-
- **utils:** try resolve ip only if address is localhost ([4aa6c69](https://github.com/wKich/creevey/commit/4aa6c693f537543ad86cebfc3e071583422a555a))
|
978
|
-
- **worker:** exit master process if worker couldn't start ([e682a47](https://github.com/wKich/creevey/commit/e682a47a9900c12941e0bb6ab72d9ef7628faa7c))
|
979
|
-
|
980
|
-
### Reverts
|
981
|
-
|
982
|
-
- Revert "fix(utils): replace ip resolver back" ([4e48706](https://github.com/wKich/creevey/commit/4e48706164abdbc1bc8765e022a99b41f60b29d5))
|
983
|
-
|
984
|
-
## [0.1.3](https://github.com/wKich/creevey/compare/v0.1.2...v0.1.3) (2019-11-07)
|
985
|
-
|
986
|
-
### Bug Fixes
|
987
|
-
|
988
|
-
- **storybook:** correct fill params for old storybook ([35ae070](https://github.com/wKich/creevey/commit/35ae07064f388da6b7fd841f05ad1e40865b79b2))
|
989
|
-
|
990
|
-
## [0.1.2](https://github.com/wKich/creevey/compare/v0.1.1...v0.1.2) (2019-11-07)
|
991
|
-
|
992
|
-
### Bug Fixes
|
993
|
-
|
994
|
-
- **storybook:** read prop of undefined ([b96bb48](https://github.com/wKich/creevey/commit/b96bb48ba1938b74d9c06ebb497c6be481d02f81))
|
995
|
-
|
996
|
-
## [0.1.1](https://github.com/wKich/creevey/compare/v0.1.0...v0.1.1) (2019-11-07)
|
997
|
-
|
998
|
-
### Bug Fixes
|
999
|
-
|
1000
|
-
- **utils:** replace ip resolver back ([e87bcdd](https://github.com/wKich/creevey/commit/e87bcddc0dad156c27e4200a61fe30b2bc24ef2b))
|
1001
|
-
|
1002
|
-
# [0.1.0](https://github.com/wKich/creevey/compare/v0.0.30...v0.1.0) (2019-11-07)
|
1003
|
-
|
1004
|
-
### Features
|
1005
|
-
|
1006
|
-
- simplify images directory ([0d15f73](https://github.com/wKich/creevey/commit/0d15f73e411ec6d93681d78573592c907b479e09))
|
1007
|
-
|
1008
|
-
## [0.0.30](https://github.com/wKich/creevey/compare/v0.0.29...v0.0.30) (2019-11-05)
|
1009
|
-
|
1010
|
-
### Features
|
1011
|
-
|
1012
|
-
- **storybook:** disable animations for webdriver ([acfc34c](https://github.com/wKich/creevey/commit/acfc34ce50372699c0ffdb5dfe83b02a002aea44))
|
1013
|
-
|
1014
|
-
## [0.0.29](https://github.com/wKich/creevey/compare/v0.0.28...v0.0.29) (2019-10-11)
|
1015
|
-
|
1016
|
-
### Bug Fixes
|
1017
|
-
|
1018
|
-
- **storybook:** ie11 hot-reload ([e8e45c4](https://github.com/wKich/creevey/commit/e8e45c4859d4b89053a4bc2884cc7cb64c76e130))
|
1019
|
-
|
1020
|
-
## [0.0.28](https://github.com/wKich/creevey/compare/v0.0.27...v0.0.28) (2019-10-09)
|
1021
|
-
|
1022
|
-
### Bug Fixes
|
1023
|
-
|
1024
|
-
- **storybook:** dont consider scroll while capture element ([6fb9ecb](https://github.com/wKich/creevey/commit/6fb9ecb19561a245d132acbf7ac3989e74b513cc))
|
1025
|
-
|
1026
|
-
## [0.0.27](https://github.com/wKich/creevey/compare/v0.0.26...v0.0.27) (2019-10-07)
|
1027
|
-
|
1028
|
-
### Bug Fixes
|
1029
|
-
|
1030
|
-
- **storybook:** chrome serialization stories error ([b994e9e](https://github.com/wKich/creevey/commit/b994e9e835be0e342ffa1b5d6545a326e7eb82c2))
|
1031
|
-
|
1032
|
-
## [0.0.26](https://github.com/wKich/creevey/compare/v0.0.25...v0.0.26) (2019-10-07)
|
1033
|
-
|
1034
|
-
### Bug Fixes
|
1035
|
-
|
1036
|
-
- **storybook:** chrome serialization stories error ([23d51ed](https://github.com/wKich/creevey/commit/23d51ede18ea329a50e05cffd8a4c46751f3647a))
|
1037
|
-
|
1038
|
-
## [0.0.25](https://github.com/wKich/creevey/compare/v0.0.24...v0.0.25) (2019-10-04)
|
1039
|
-
|
1040
|
-
### Bug Fixes
|
1041
|
-
|
1042
|
-
- **runner:** mark removed tests as skiped ([822d92a](https://github.com/wKich/creevey/commit/822d92a607899c23e0cd38396839f1e0674dcb46))
|
1043
|
-
- **runner:** support skip story option ([f094548](https://github.com/wKich/creevey/commit/f094548016fa57ae26ca6b91c61dc8547eac3285))
|
1044
|
-
- **storybook:** hide scroll while screenshot, few issues ([313cfa4](https://github.com/wKich/creevey/commit/313cfa498f19c8fa7407b365ee998795c9488877))
|
1045
|
-
- correct convert kind/story into storyId ([12d3c3a](https://github.com/wKich/creevey/commit/12d3c3af184cca6634246ad70010e32c515ecc8a))
|
1046
|
-
- **storybook:** make parameters optional ([6c674bd](https://github.com/wKich/creevey/commit/6c674bd615a0fbea5a42ff930eb7da54ed63bd45))
|
1047
|
-
- few types issues ([1ee82f8](https://github.com/wKich/creevey/commit/1ee82f8e3e28e1e37e1bc50fc5f5d081a468e0dd))
|
1048
|
-
|
1049
|
-
### Features
|
1050
|
-
|
1051
|
-
- support composite images ([594f6cb](https://github.com/wKich/creevey/commit/594f6cbee1245e92353c223053af151e6d887434))
|
1052
|
-
- **worker:** support creevey skip story option ([2e36464](https://github.com/wKich/creevey/commit/2e36464654c1adccc3d8203a69fec71408925f24))
|
1053
|
-
- make testDir optional ([714f76f](https://github.com/wKich/creevey/commit/714f76f1addc2b1fafcd95f0b96ac34a1100bbea))
|
1054
|
-
- **storybook:** pass creevey story parameters ([df259fe](https://github.com/wKich/creevey/commit/df259feb630f03914e5153e37bfe76d5ce587738))
|
1055
|
-
- generate tests from stories in runtime ([2625f93](https://github.com/wKich/creevey/commit/2625f93c83c52c8f2408a00022462cf2ae950e87))
|
1056
|
-
- output removed tests status ([442f4da](https://github.com/wKich/creevey/commit/442f4daee06f831350eae16fe2c7acc372abda25))
|
1057
|
-
|
1058
|
-
## [0.0.24](https://github.com/wKich/creevey/compare/v0.0.23...v0.0.24) (2019-09-16)
|
1059
|
-
|
1060
|
-
### Features
|
1061
|
-
|
1062
|
-
- more improvments ([39c601d](https://github.com/wKich/creevey/commit/39c601d65c43ef276ee398d30c872702902d433f))
|
1063
|
-
- support storybook kind depth levels ([7d2523d](https://github.com/wKich/creevey/commit/7d2523dae79050bd662b223463bd15cdb1470798))
|
1064
|
-
|
1065
|
-
## [0.0.23](https://github.com/wKich/creevey/compare/v0.0.22...v0.0.23) (2019-09-12)
|
1066
|
-
|
1067
|
-
### Bug Fixes
|
1068
|
-
|
1069
|
-
- export mocha/chai typings ([1340c4d](https://github.com/wKich/creevey/commit/1340c4db4603bd897053c42507398d6b5ab7eb88))
|
1070
|
-
|
1071
|
-
## [0.0.22](https://github.com/wKich/creevey/compare/v0.0.21...v0.0.22) (2019-09-11)
|
1072
|
-
|
1073
|
-
### Bug Fixes
|
1074
|
-
|
1075
|
-
- set-value vulnerability CVE-2019-10747 ([2db0463](https://github.com/wKich/creevey/commit/2db0463538b10f2d09674c8ed7a4e8078fabec37))
|
1076
|
-
- **server:** pass args to parser, skip folders while copy static ([1343c28](https://github.com/wKich/creevey/commit/1343c28b5694a43d99f52086ffffed5c51cace9c))
|
1077
|
-
- **storybook:** improve export and types ([11a8dc2](https://github.com/wKich/creevey/commit/11a8dc2b7ff28a2d5ab46845a5885a9d467419e1))
|
1078
|
-
- **storybook:** support storybook@3.x ([8c952cc](https://github.com/wKich/creevey/commit/8c952cc43abb9d490c2436ad6433d322feb58d62))
|
1079
|
-
- optional hooks, fix default testRegex ([8da03d2](https://github.com/wKich/creevey/commit/8da03d211adb6a8902f48e884dd414f03296e53e))
|
1080
|
-
|
1081
|
-
### Features
|
1082
|
-
|
1083
|
-
- add storybook decorator ([4f97fd6](https://github.com/wKich/creevey/commit/4f97fd6a5e12e1a06836337299aece8ef0890dcd))
|
1084
|
-
- remove mocha-ui ([1abf335](https://github.com/wKich/creevey/commit/1abf3352e15bd1fb777ff7ac35a8d00b87969c4a))
|
1085
|
-
- **cli:** add `update` option for batch approve ([ed2a1f6](https://github.com/wKich/creevey/commit/ed2a1f61430a8befdddb148b426601e39b90540a))
|
1086
|
-
|
1087
|
-
## [0.0.21](https://github.com/wKich/creevey/compare/v0.0.20...v0.0.21) (2019-08-30)
|
1088
|
-
|
1089
|
-
### Bug Fixes
|
1090
|
-
|
1091
|
-
- **ImagesView:** improve view for side-by-side view component ([831a34e](https://github.com/wKich/creevey/commit/831a34ec024c991f96d45c831b082d765a3d6dc0))
|
1092
|
-
- **pool:** improve restart workers process ([82fb1ea](https://github.com/wKich/creevey/commit/82fb1eaf30f2d7a729559595a07e047a87265dba))
|
1093
|
-
|
1094
|
-
## [0.0.20](https://github.com/wKich/creevey/compare/v0.0.19...v0.0.20) (2019-08-27)
|
1095
|
-
|
1096
|
-
### Bug Fixes
|
1097
|
-
|
1098
|
-
- **client:** better output error message ([16eaa06](https://github.com/wKich/creevey/commit/16eaa06fdb1f1deb76d1dfa60fc55cc756eb85a3))
|
1099
|
-
- **pool:** correct retry tests by timeout ([1c11e52](https://github.com/wKich/creevey/commit/1c11e528d379b4f05330cb438e5ff58d5762f917))
|
1100
|
-
|
1101
|
-
### Features
|
1102
|
-
|
1103
|
-
- **client:** fit large images into sidepage ([c4adbca](https://github.com/wKich/creevey/commit/c4adbca0a636b49b239255e91d4fd15799386c90))
|
1104
|
-
|
1105
|
-
## [0.0.19](https://github.com/wKich/creevey/compare/v0.0.18...v0.0.19) (2019-08-21)
|
1106
|
-
|
1107
|
-
### Bug Fixes
|
1108
|
-
|
1109
|
-
- **reporter:** try to fix parallel output on teamcity ([0ff4faf](https://github.com/wKich/creevey/commit/0ff4faf9bd4dc504a190e76ef673ed9203152203))
|
1110
|
-
|
1111
|
-
## [0.0.18](https://github.com/wKich/creevey/compare/v0.0.17...v0.0.18) (2019-08-21)
|
1112
|
-
|
1113
|
-
### Bug Fixes
|
1114
|
-
|
1115
|
-
- **reporter:** try to fix parallel output on teamcity ([8371fce](https://github.com/wKich/creevey/commit/8371fcefe08e56d60bc4ff123731e1819b77b5c3))
|
1116
|
-
|
1117
|
-
## [0.0.17](https://github.com/wKich/creevey/compare/v0.0.16...v0.0.17) (2019-08-21)
|
1118
|
-
|
1119
|
-
### Bug Fixes
|
1120
|
-
|
1121
|
-
- **reporter:** try to fix parallel output on teamcity ([5de07d9](https://github.com/wKich/creevey/commit/5de07d9a72939ef62b4fb99bff624a2d79089c91))
|
1122
|
-
|
1123
|
-
## [0.0.16](https://github.com/wKich/creevey/compare/v0.0.15...v0.0.16) (2019-08-21)
|
1124
|
-
|
1125
|
-
### Bug Fixes
|
1126
|
-
|
1127
|
-
- **reporter:** output full filepath in metadata ([142c3a6](https://github.com/wKich/creevey/commit/142c3a6d359a95ba226d6fce35719bf0f134e19d))
|
1128
|
-
|
1129
|
-
## [0.0.15](https://github.com/wKich/creevey/compare/v0.0.14...v0.0.15) (2019-08-21)
|
1130
|
-
|
1131
|
-
### Bug Fixes
|
1132
|
-
|
1133
|
-
- **reporter:** output correct test name in teamcity ([e753e71](https://github.com/wKich/creevey/commit/e753e71b4484b8d82ed725e8ca1d023bfdd4993d))
|
1134
|
-
|
1135
|
-
### Features
|
1136
|
-
|
1137
|
-
- **reporter:** output image as test metadata ([eb6a03a](https://github.com/wKich/creevey/commit/eb6a03a0f819992f40c37a739561a28a00c30a6d))
|
1138
|
-
- **runner:** allow setup browser resolution ([a6b1b92](https://github.com/wKich/creevey/commit/a6b1b92621ef8db5754e25bbe8cafe3153805134))
|
1139
|
-
|
1140
|
-
## [0.0.14](https://github.com/wKich/creevey/compare/v0.0.13...v0.0.14) (2019-08-21)
|
1141
|
-
|
1142
|
-
## [0.0.13](https://github.com/wKich/creevey/compare/v0.0.12...v0.0.13) (2019-07-01)
|
1143
|
-
|
1144
|
-
### Bug Fixes
|
1145
|
-
|
1146
|
-
- **worker:** correct `retries` prop name ([747ba56](https://github.com/wKich/creevey/commit/747ba56d101783e8767e246ae8d929aacfb1f637))
|
1147
|
-
|
1148
|
-
## [0.0.12](https://github.com/wKich/creevey/compare/v0.0.11...v0.0.12) (2019-07-01)
|
1149
|
-
|
1150
|
-
### Bug Fixes
|
1151
|
-
|
1152
|
-
- **server:** pass TC version to envs worker ([78585ae](https://github.com/wKich/creevey/commit/78585ae4b7788a4c2a00cf63d33c3ead469ab703))
|
1153
|
-
|
1154
|
-
## [0.0.11](https://github.com/wKich/creevey/compare/v0.0.10...v0.0.11) (2019-07-01)
|
1155
|
-
|
1156
|
-
### Bug Fixes
|
1157
|
-
|
1158
|
-
- **reporter:** output retry test as passed for tc ([847db55](https://github.com/wKich/creevey/commit/847db5578bb34312cff2d5a409be5950b8a491f3))
|
1159
|
-
|
1160
|
-
## [0.0.10](https://github.com/wKich/creevey/compare/v0.0.9...v0.0.10) (2019-06-26)
|
1161
|
-
|
1162
|
-
### Bug Fixes
|
1163
|
-
|
1164
|
-
- **runner:** send stop event ([ade8f22](https://github.com/wKich/creevey/commit/ade8f224b0688072c526f2f1b2a2fcfcc68a09c1))
|
1165
|
-
|
1166
|
-
## [0.0.9](https://github.com/wKich/creevey/compare/v0.0.8...v0.0.9) (2019-06-26)
|
1167
|
-
|
1168
|
-
### Features
|
1169
|
-
|
1170
|
-
- **chai-image:** allow pass `threshold` option ([81394c8](https://github.com/wKich/creevey/commit/81394c804bceedc6a1b579d149a902cd36176035))
|
1171
|
-
- **reporter:** add `chalk` to color output ([87e4d9a](https://github.com/wKich/creevey/commit/87e4d9aaac0457c7a17b6b5849ebce817e1ef64f))
|
1172
|
-
|
1173
|
-
## [0.0.8](https://github.com/wKich/creevey/compare/v0.0.7...v0.0.8) (2019-06-25)
|
1174
|
-
|
1175
|
-
### Bug Fixes
|
1176
|
-
|
1177
|
-
- **worker:** send error message on fail, restart on timeout ([8ddb265](https://github.com/wKich/creevey/commit/8ddb2654afe56d41035afaa511f6c04e677015fd))
|
1178
|
-
|
1179
|
-
## [0.0.7](https://github.com/wKich/creevey/compare/v0.0.6...v0.0.7) (2019-06-24)
|
1180
|
-
|
1181
|
-
### Bug Fixes
|
1182
|
-
|
1183
|
-
- **chai-image:** enable anti-aliasing for pixelmatch ([ef50047](https://github.com/wKich/creevey/commit/ef50047ef4550448d5291fba6138526fbd3b5495))
|
1184
|
-
- **parser:** don't include ignored tests ([985c758](https://github.com/wKich/creevey/commit/985c7586909edeb457ab9df35fc896774cba3bfb))
|
1185
|
-
- **server:** set `skip` flag require ([db235d3](https://github.com/wKich/creevey/commit/db235d3fecac99f65f56220b176d4a7284e09c92))
|
1186
|
-
- **worker:** patch mocha to support skip tests for browser ([1de1ea0](https://github.com/wKich/creevey/commit/1de1ea071ada8724e0240430a4cd21299c757abb))
|
1187
|
-
|
1188
|
-
### Features
|
1189
|
-
|
1190
|
-
- **client:** output disabled skiped tests ([8d7f596](https://github.com/wKich/creevey/commit/8d7f596ecadc5235c74bdb36e0ccaa6235914725))
|
1191
|
-
|
1192
|
-
## [0.0.6](https://github.com/wKich/creevey/compare/v0.0.5...v0.0.6) (2019-06-20)
|
1193
|
-
|
1194
|
-
### Bug Fixes
|
1195
|
-
|
1196
|
-
- **client:** don't output skipped tests ([da51ce6](https://github.com/wKich/creevey/commit/da51ce6f0c64a0f72f98b27ed2362135d3330665))
|
1197
|
-
- **worker:** escape test path string ([694cd32](https://github.com/wKich/creevey/commit/694cd32bc737b7445f683e69e5cc044f23b0a666))
|
1198
|
-
|
1199
|
-
### Features
|
1200
|
-
|
1201
|
-
- **client:** improve switcher, move start button ([50259d5](https://github.com/wKich/creevey/commit/50259d5df878edeb3fbff5d511c635276acef207))
|
1202
|
-
- **server:** allow define uniq options for each browser ([4280a32](https://github.com/wKich/creevey/commit/4280a326859ece52701fc5802cab7b3b9a65ec8f))
|
1203
|
-
|
1204
|
-
## [0.0.5](https://github.com/wKich/creevey/compare/v0.0.4...v0.0.5) (2019-06-17)
|
1205
|
-
|
1206
|
-
### Bug Fixes
|
1207
|
-
|
1208
|
-
- **client:** output new images ([cb082a8](https://github.com/wKich/creevey/commit/cb082a81a6b1964c0c641b47aa868f4dbe5c5025))
|
1209
|
-
- **utils:** better handle reset mouse position ([c85854d](https://github.com/wKich/creevey/commit/c85854df805ee974ef53c90d17bdcc9025076408))
|
1210
|
-
- better handle reset mouse position ([f777a7b](https://github.com/wKich/creevey/commit/f777a7bec8951b60a0f4df4b5aa44221aae5f617))
|
1211
|
-
|
1212
|
-
## [0.0.4](https://github.com/wKich/creevey/compare/v0.0.3...v0.0.4) (2019-06-14)
|
1213
|
-
|
1214
|
-
### Bug Fixes
|
1215
|
-
|
1216
|
-
- **client:** encode image url path ([aef999c](https://github.com/wKich/creevey/commit/aef999c9d1d824b2fbc4ace485ff16d307cddc30))
|
1217
|
-
- **utils:** reset mouse position ([1f79e61](https://github.com/wKich/creevey/commit/1f79e6166d65631b7c076171926e6f3e542e0481))
|
1218
|
-
|
1219
|
-
### Features
|
1220
|
-
|
1221
|
-
- **client:** update suites statues ([ace43df](https://github.com/wKich/creevey/commit/ace43dffb9d2f1207679f6c724d9fb434a225d82))
|
1222
|
-
|
1223
|
-
## [0.0.3](https://github.com/wKich/creevey/compare/v0.0.2...v0.0.3) (2019-06-03)
|
1224
|
-
|
1225
|
-
### Bug Fixes
|
1226
|
-
|
1227
|
-
- **runner:** parallel test running ([4931127](https://github.com/wKich/creevey/commit/4931127c3c4086c79a833dafc782eff9d369996b))
|
1228
|
-
- **server:** browser config merge ([3d3dc2a](https://github.com/wKich/creevey/commit/3d3dc2aa7853886fcecdfd8863b4a3d9e2f94f78))
|
1229
|
-
- **server:** restart worker on error ([73abcf7](https://github.com/wKich/creevey/commit/73abcf7d6535555bcf13e1d571c00fafcd91e848))
|
1230
|
-
- **worker:** improve test reporter ([e18878c](https://github.com/wKich/creevey/commit/e18878c68c56c66838d085a2e93788c6c7ab9ac8))
|
1231
|
-
|
1232
|
-
### Features
|
1233
|
-
|
1234
|
-
- **client:** add `BlendView` component ([5da4a8d](https://github.com/wKich/creevey/commit/5da4a8d5e8ea36ce8e1f45cd1eeed2cdfb33935d))
|
1235
|
-
- **client:** add `SlideView` component ([dda0aa9](https://github.com/wKich/creevey/commit/dda0aa9f8253d9a446e4b2f5129334a941638dd3))
|
1236
|
-
- **client:** add different image views ([9f08bcc](https://github.com/wKich/creevey/commit/9f08bcced07ef619f951c8489c5774202868bef6))
|
1237
|
-
- **client:** output test error message ([e277298](https://github.com/wKich/creevey/commit/e27729869a8e383a3ae6b2ef1ff73784e8880d9e))
|
1238
|
-
- **client:** use `emotion` for styles ([35ba95a](https://github.com/wKich/creevey/commit/35ba95a286aa355162fccfd39b4a93a054a58f50))
|
1239
|
-
- render approved images ([af80081](https://github.com/wKich/creevey/commit/af8008112bc98dc3d7d0bfa5baaef91783210abe))
|
1240
|
-
- **server:** better handle ws messages ([64cb126](https://github.com/wKich/creevey/commit/64cb126e5c4b671d99b4df4f308e1ec6f3251447))
|
1241
|
-
|
1242
|
-
## [0.0.2](https://github.com/wKich/creevey/compare/v0.0.1...v0.0.2) (2019-05-29)
|
1243
|
-
|
1244
|
-
### Features
|
1245
|
-
|
1246
|
-
- **worker:** add reporter mvp ([ead4e91](https://github.com/wKich/creevey/commit/ead4e911de04cfd857f83e5e77b921b425b25513))
|
1247
|
-
|
1248
|
-
## [0.0.1](https://github.com/wKich/creevey/compare/8e42cec432747648018c1c06447b3530c971a7e4...v0.0.1) (2019-05-21)
|
1249
|
-
|
1250
|
-
### Bug Fixes
|
1251
|
-
|
1252
|
-
- **client:** handle start/stop messages ([6aac604](https://github.com/wKich/creevey/commit/6aac6048d3130c5f85026ee9051f6090dff6164b))
|
1253
|
-
- **runner:** retries condition ([e8a2e2f](https://github.com/wKich/creevey/commit/e8a2e2f05d4e60ad0cee380d39adc6f791d94d26))
|
1254
|
-
- **server:** served static path ([8893555](https://github.com/wKich/creevey/commit/8893555f8c94c986e4869f12f55be23fbfcaacc3))
|
1255
|
-
- **TestRestultView:** always open last image ([b7f9cd6](https://github.com/wKich/creevey/commit/b7f9cd6a33c0b9f97cec10a5d5b89526eab92689))
|
1256
|
-
- **TestRestultView:** improve images output ([60849d2](https://github.com/wKich/creevey/commit/60849d2199699a5cf46caa21ab7a9b31595cc4d9))
|
1257
|
-
- **utils:** change test scope path. Move browser to the last ([4cd00ed](https://github.com/wKich/creevey/commit/4cd00ed5a3ac9a9371e6aedfc4cbff7d47d3e2bf))
|
1258
|
-
- **worker:** clean images, strong regexp for grep ([c55da42](https://github.com/wKich/creevey/commit/c55da4291e7a813e39b6aca13ea8ca1d2764c17a))
|
1259
|
-
- **worker:** increase mocha timeout ([e841f5c](https://github.com/wKich/creevey/commit/e841f5c72bb55069db3827424a102153c1c3141e))
|
1260
|
-
- export types ([87e502e](https://github.com/wKich/creevey/commit/87e502e93418f7d38a6e6762c50a118bfa94e58d))
|
1261
|
-
|
1262
|
-
### Features
|
1263
|
-
|
1264
|
-
- **chai-image:** save images in multiple runs ([96d1229](https://github.com/wKich/creevey/commit/96d12299238834d9731e65def930ed2c0a65c6e4))
|
1265
|
-
- **client:** add results view component ([a1a0d34](https://github.com/wKich/creevey/commit/a1a0d34f8db5dd89fa69863c62a7d04b795b1958))
|
1266
|
-
- **server:** add `ui` flag, wait workers ready event ([3608974](https://github.com/wKich/creevey/commit/3608974468daa1958beb5d156269da280b38f586))
|
1267
|
-
- **server:** allow to use custom reporter ([f778dee](https://github.com/wKich/creevey/commit/f778dee187f1255169e97d7eb1f490c978d7feae))
|
1268
|
-
- **server:** offline mode mvp, copy static ([fb609e6](https://github.com/wKich/creevey/commit/fb609e6e1bf1a864e412b42f70bf1dbd0cba89e1))
|
1269
|
-
- **server:** save/load test report ([08a5fd9](https://github.com/wKich/creevey/commit/08a5fd9ec4dd8be6833bcd42d8685c9af94514c1))
|
1270
|
-
- **server:** use cluster fork instead preprocessors ([6a1136b](https://github.com/wKich/creevey/commit/6a1136be5b9dcac285af1c500d344c079ba70325))
|
1271
|
-
- allow approve images from ui ([86335f1](https://github.com/wKich/creevey/commit/86335f119c5fef35e783242c0670b4293243cb45))
|
1272
|
-
- **server:** send status with images ([da92d7c](https://github.com/wKich/creevey/commit/da92d7c86e05558dc17cabc59c555a7062677460))
|
1273
|
-
- **server:** serve static images from report dir ([f0817fd](https://github.com/wKich/creevey/commit/f0817fd8cd20822227438545497624df02797a93))
|
1274
|
-
- **TestResultView:** render result images ([991148e](https://github.com/wKich/creevey/commit/991148e0cbf060fbd3bb0ec60fbf02dd7bc3e2a9))
|
1275
|
-
- initial version ([8e42cec](https://github.com/wKich/creevey/commit/8e42cec432747648018c1c06447b3530c971a7e4))
|
1
|
+
# [0.8.0-beta.0](https://github.com/wKich/creevey/compare/v0.7.39...v0.8.0-beta.0) (2022-03-17)
|
2
|
+
|
3
|
+
### Bug Fixes
|
4
|
+
|
5
|
+
- 🐛 revert cross-env scripts, as they not work in unix ([92b04a5](https://github.com/wKich/creevey/commit/92b04a5bed56191b7ee6bd169f5327e30a1c2232))
|
6
|
+
|
7
|
+
### Features
|
8
|
+
|
9
|
+
- 🎸 change format for `skip` parameter ([f244b7c](https://github.com/wKich/creevey/commit/f244b7cd344b276762408a1df841e5afc3853fad))
|
10
|
+
- 🎸 Improve skip options ([2fcc624](https://github.com/wKich/creevey/commit/2fcc624a9b2ab1dcdce3927779c8f58bb0a0d02c))
|
11
|
+
- new creevey params: "global" and "kind" ([7d7c885](https://github.com/wKich/creevey/commit/7d7c88521a28c91586bfdd663500bea576845292))
|
12
|
+
- support storybook 6.4 ([74010e5](https://github.com/wKich/creevey/commit/74010e53d93ff1815427cd7ee818481ce6e21288))
|
13
|
+
|
14
|
+
## [0.7.39](https://github.com/wKich/creevey/compare/v0.7.38...v0.7.39) (2021-11-04)
|
15
|
+
|
16
|
+
### Features
|
17
|
+
|
18
|
+
- 🎸 add ability to update story arguments from test cases ([18d8ecb](https://github.com/wKich/creevey/commit/18d8ecb909097b585282a04bfb0b0c721ad45e22))
|
19
|
+
|
20
|
+
## [0.7.38](https://github.com/wKich/creevey/compare/v0.7.37...v0.7.38) (2021-09-28)
|
21
|
+
|
22
|
+
### Features
|
23
|
+
|
24
|
+
- 🎸 add storiesProvider config option ([7cf7454](https://github.com/wKich/creevey/commit/7cf74542d527bcfd5b41b17026464a4f9298e1f5))
|
25
|
+
|
26
|
+
## [0.7.37](https://github.com/wKich/creevey/compare/v0.7.36...v0.7.37) (2021-08-27)
|
27
|
+
|
28
|
+
### Bug Fixes
|
29
|
+
|
30
|
+
- 🐛 save report data after each tests run ([86c6c2e](https://github.com/wKich/creevey/commit/86c6c2ee1261bdc38fc3b7c6ebb1753348339a0a))
|
31
|
+
- 🐛 selenium url path to '/' for webkit browsers ([748d896](https://github.com/wKich/creevey/commit/748d8968c645ee684cec5dcd899d2de749d5e2c6)), closes [#176](https://github.com/wKich/creevey/issues/176)
|
32
|
+
|
33
|
+
### Features
|
34
|
+
|
35
|
+
- 🎸 failFast doesn't disable maxRetries option ([c81c637](https://github.com/wKich/creevey/commit/c81c63784aecea890596647225ce8278d7383df5)), closes [#175](https://github.com/wKich/creevey/issues/175)
|
36
|
+
- 🎸 improve delay option to allow specify browsers ([4bec3b5](https://github.com/wKich/creevey/commit/4bec3b5a4ddca2e2610db4ecf79f0e859202da65)), closes [#174](https://github.com/wKich/creevey/issues/174)
|
37
|
+
|
38
|
+
## [0.7.36](https://github.com/wKich/creevey/compare/v0.7.35...v0.7.36) (2021-07-30)
|
39
|
+
|
40
|
+
### Bug Fixes
|
41
|
+
|
42
|
+
- 🐛 report test as a failed for teamcity reporter ([0e58915](https://github.com/wKich/creevey/commit/0e58915b6d14441e14851c7c3bc888fe0759ddce))
|
43
|
+
|
44
|
+
## [0.7.35](https://github.com/wKich/creevey/compare/v0.7.34...v0.7.35) (2021-07-28)
|
45
|
+
|
46
|
+
### Bug Fixes
|
47
|
+
|
48
|
+
- 🐛 update didn't use report data to approve failed tests ([107d0fa](https://github.com/wKich/creevey/commit/107d0faf4c717bbb7a547422e9baf7105389d0bd))
|
49
|
+
|
50
|
+
### Features
|
51
|
+
|
52
|
+
- 🎸 add `dockerImagePlatform` config option ([f52de6c](https://github.com/wKich/creevey/commit/f52de6c31ab41012ce127702d0967c8f40fb7c20))
|
53
|
+
|
54
|
+
## [0.7.34](https://github.com/wKich/creevey/compare/v0.7.33...v0.7.34) (2021-07-12)
|
55
|
+
|
56
|
+
### Features
|
57
|
+
|
58
|
+
- 🎸 add `failFat` parameter to the config ([c4fe538](https://github.com/wKich/creevey/commit/c4fe538569311cc7ca3c0c9e8e93916cf4a3cb8b))
|
59
|
+
|
60
|
+
## [0.7.33](https://github.com/wKich/creevey/compare/v0.7.32...v0.7.33) (2021-07-12)
|
61
|
+
|
62
|
+
### Bug Fixes
|
63
|
+
|
64
|
+
- 🐛 improve `waitForStorybook` wait for `setStories` event ([8431918](https://github.com/wKich/creevey/commit/8431918656378b6760a60da8570fb18952de210c))
|
65
|
+
- 🐛 make creevey work with vite ([0d576c6](https://github.com/wKich/creevey/commit/0d576c6e2660fd4f29ba4efd440d4af9ee590ac2))
|
66
|
+
- 🐛 some issues for storybook 5.3 and create-react-preset ([c1e20b3](https://github.com/wKich/creevey/commit/c1e20b31234875d3ef961ce3804e3384d858f94d))
|
67
|
+
|
68
|
+
### Features
|
69
|
+
|
70
|
+
- 🎸 add `failFast` CLI option. Terminates on first fail ([0023bbb](https://github.com/wKich/creevey/commit/0023bbb022e71b7b3cb60fd7cea9bdb89a7e87bc))
|
71
|
+
|
72
|
+
## [0.7.32](https://github.com/wKich/creevey/compare/v0.7.31...v0.7.32) (2021-07-07)
|
73
|
+
|
74
|
+
### Features
|
75
|
+
|
76
|
+
- 🎸 add webdriver debug logging ([6124a43](https://github.com/wKich/creevey/commit/6124a43b79d2761c3f04f6f3f118599ecb517c27))
|
77
|
+
- 🎸 run extract stories.json on storybook-build ([803a1d1](https://github.com/wKich/creevey/commit/803a1d1b9b774121e1a611dfbbe1a3ad041339af))
|
78
|
+
|
79
|
+
## [0.7.31](https://github.com/wKich/creevey/compare/v0.7.30...v0.7.31) (2021-06-26)
|
80
|
+
|
81
|
+
### Bug Fixes
|
82
|
+
|
83
|
+
- 🐛 ignore docsOnly stories for now ([2fda22b](https://github.com/wKich/creevey/commit/2fda22b333929306c2ad31243f1a0fd1900bbd7f))
|
84
|
+
- 🐛 improve listen story render error with `waitForReady` ([dda7948](https://github.com/wKich/creevey/commit/dda7948c3496a7ef7a8e9fc4ce50d774b470bd94))
|
85
|
+
- 🐛 improve update to approve only failed images ([f0e5719](https://github.com/wKich/creevey/commit/f0e5719f1b8d1b0fb105bacb5619cd903eadced6))
|
86
|
+
- 🐛 resolve storybook preview config after babel/register ([cb3f46c](https://github.com/wKich/creevey/commit/cb3f46c0502264cdd5aefc2dc397da1892938eb5))
|
87
|
+
- 🐛 resolving storybook modules for version less than 6.2 ([bd84c5f](https://github.com/wKich/creevey/commit/bd84c5f87a3c271665c3fd283ae09cabc2851120))
|
88
|
+
|
89
|
+
### Features
|
90
|
+
|
91
|
+
- 🎸 add `until` selenium helpers to test context ([4f29eca](https://github.com/wKich/creevey/commit/4f29eca9e829c68d765da88fbb3ab327278fefe3))
|
92
|
+
|
93
|
+
## [0.7.30](https://github.com/wKich/creevey/compare/v0.7.29...v0.7.30) (2021-06-10)
|
94
|
+
|
95
|
+
### Bug Fixes
|
96
|
+
|
97
|
+
- 🐛 import the same webpack as used for storybook manager ([ae3c6b7](https://github.com/wKich/creevey/commit/ae3c6b712a8e41a7d3f4396b269d471c578d9408))
|
98
|
+
- 🐛 resolving storybook modules ([d30274d](https://github.com/wKich/creevey/commit/d30274d3dc12e77cea21ea170a9e03fc35892671))
|
99
|
+
- package.json & yarn.lock to reduce vulnerabilities ([b1f8697](https://github.com/wKich/creevey/commit/b1f869758bb6b41165748de15f897a4bee22545b))
|
100
|
+
|
101
|
+
## [0.7.29](https://github.com/wKich/creevey/compare/v0.7.28...v0.7.29) (2021-05-30)
|
102
|
+
|
103
|
+
### Bug Fixes
|
104
|
+
|
105
|
+
- 🐛 allow pass boolean value to skip parameter ([9e36eec](https://github.com/wKich/creevey/commit/9e36eecce9d7df352ced159c1ec5b0de86fa7257)), closes [#147](https://github.com/wKich/creevey/issues/147)
|
106
|
+
|
107
|
+
### Features
|
108
|
+
|
109
|
+
- 🎸 improve `update` command allow to pass match pattern ([4cf79f4](https://github.com/wKich/creevey/commit/4cf79f4d7693686be86c4bec5ae7e5736f900615))
|
110
|
+
|
111
|
+
## [0.7.28](https://github.com/wKich/creevey/compare/v0.7.27...v0.7.28) (2021-05-20)
|
112
|
+
|
113
|
+
### Bug Fixes
|
114
|
+
|
115
|
+
- 🐛 creevey loader transforms csf funcs with props ([11bbc96](https://github.com/wKich/creevey/commit/11bbc96133edbce3c578a240a0a69c45d2b7a508))
|
116
|
+
- 🐛 csf template.bind extract correctly ([ba27817](https://github.com/wKich/creevey/commit/ba27817e9fd91a0515edb3896414c7ac04bfa65d))
|
117
|
+
- 🐛 improve babel-plugin to handle storiesOf in loops ([ec6ad03](https://github.com/wKich/creevey/commit/ec6ad03a796c6d25647f30aff75c41c1ec630704))
|
118
|
+
- 🐛 improve process exiting with hooks, add ie11 tests ([effa16f](https://github.com/wKich/creevey/commit/effa16f434ac82bbc740be4f2b4ecc67557cba7b))
|
119
|
+
- 🐛 remove some non-story and custom expressions ([9fd55dc](https://github.com/wKich/creevey/commit/9fd55dcee25c7cd5ca965629861bd324bdc95612))
|
120
|
+
- 🐛 types after update to Storybook 6.2 ([dcf433e](https://github.com/wKich/creevey/commit/dcf433e52ca9a4e595968365061f73708fcc9ab4))
|
121
|
+
|
122
|
+
### Features
|
123
|
+
|
124
|
+
- 🎸 improve extract stories by using only babel ([6e43452](https://github.com/wKich/creevey/commit/6e43452e8607ce62f8e73387245557812e051160))
|
125
|
+
- 🎸 support for extract cjs and object.assign ([1978669](https://github.com/wKich/creevey/commit/1978669c1fcf9f5a9866d9399793d7388bab1680))
|
126
|
+
|
127
|
+
## [0.7.27](https://github.com/wKich/creevey/compare/v0.7.26...v0.7.27) (2021-03-31)
|
128
|
+
|
129
|
+
### Bug Fixes
|
130
|
+
|
131
|
+
- 🐛 capturing screenshots in ie11 ([2e47b2f](https://github.com/wKich/creevey/commit/2e47b2fe77a5af88673c369f297b5a373d3a2eba))
|
132
|
+
- 🐛 compose browsers with external grid and builtin selenoid ([c429bec](https://github.com/wKich/creevey/commit/c429becc3827764c8349ed428bae5a7f4288bd5a))
|
133
|
+
|
134
|
+
## [0.7.26](https://github.com/wKich/creevey/compare/v0.7.25...v0.7.26) (2021-03-28)
|
135
|
+
|
136
|
+
### Bug Fixes
|
137
|
+
|
138
|
+
- 🐛 don't show run button in a report ([958c8ad](https://github.com/wKich/creevey/commit/958c8ad742121dd57adb841939fb5f27134132c5))
|
139
|
+
|
140
|
+
### Features
|
141
|
+
|
142
|
+
- 🎸 add `--extract` as faster alternative to `sb extract` ([5f5de2d](https://github.com/wKich/creevey/commit/5f5de2d44ba49c0f9868cb843a522745308fa055))
|
143
|
+
- 🎸 add `waitForReady` story parameter ([8517883](https://github.com/wKich/creevey/commit/8517883019dc371141a0b7308b37bde8b17577b6))
|
144
|
+
- 🎸 allow define custom selenoid images and skip pull step ([e508eec](https://github.com/wKich/creevey/commit/e508eec9918cb63194a74c2ebd44aa1f62c9930d))
|
145
|
+
|
146
|
+
## [0.7.25](https://github.com/wKich/creevey/compare/v0.7.24...v0.7.25) (2021-03-18)
|
147
|
+
|
148
|
+
### Bug Fixes
|
149
|
+
|
150
|
+
- 🐛 exclude all addons from nodejs storybook bundle ([1194400](https://github.com/wKich/creevey/commit/1194400d441fe22a0b60718c67e083c76bf7e2c2))
|
151
|
+
- 🐛 hover shouldn't override focus styles ([6762af9](https://github.com/wKich/creevey/commit/6762af942600dbb9f5d100539dcbe1fdee016a4c))
|
152
|
+
- 🐛 test status icons align ([c3e5c7e](https://github.com/wKich/creevey/commit/c3e5c7ea14eb46e218a0d1dcbcec9374989b364d))
|
153
|
+
|
154
|
+
### Features
|
155
|
+
|
156
|
+
- 🎸 add sidebar keyboard handlers ([bf160b6](https://github.com/wKich/creevey/commit/bf160b61ecdd49417135f0b7b9c316efddb6e898))
|
157
|
+
- 🎸 add support storybook 6.2 ([e4cc662](https://github.com/wKich/creevey/commit/e4cc66245b0f2aea8cfba0e849f1e9e4f80d1442))
|
158
|
+
- 🎸 support capture mdx stories ([6fc9185](https://github.com/wKich/creevey/commit/6fc918505718393ccbc424a794159eecf66a456d))
|
159
|
+
|
160
|
+
## [0.7.24](https://github.com/wKich/creevey/compare/v0.7.23...v0.7.24) (2021-03-10)
|
161
|
+
|
162
|
+
### Bug Fixes
|
163
|
+
|
164
|
+
- 🐛 some security issues ([d3eed3c](https://github.com/wKich/creevey/commit/d3eed3c8970f097309e9ec2e3926a2e6a881fd9c))
|
165
|
+
- 🐛 websocket invalid frame error ([aafda92](https://github.com/wKich/creevey/commit/aafda92ff3d45cf20005872ea344831b53c2f5af))
|
166
|
+
- upgrade tslib from 2.0.3 to 2.1.0 ([f047cae](https://github.com/wKich/creevey/commit/f047cae1c0a6b072b30b91be9f7bceef1a776917))
|
167
|
+
- upgrade zone.js from 0.11.3 to 0.11.4 ([f1a911a](https://github.com/wKich/creevey/commit/f1a911a070658f8b2488f1d596a53e3cd2d3e001))
|
168
|
+
|
169
|
+
### Features
|
170
|
+
|
171
|
+
- 🎸 new panels in addon ([02232eb](https://github.com/wKich/creevey/commit/02232ebbeb3fe0eb0878743ccc9ad1a83277de64))
|
172
|
+
- allow to ignore elements in screenshot ([19a38e0](https://github.com/wKich/creevey/commit/19a38e0379ad0b1cbbe6254f197888d2ebfb1a22))
|
173
|
+
|
174
|
+
## [0.7.23](https://github.com/wKich/creevey/compare/v0.7.22...v0.7.23) (2021-01-25)
|
175
|
+
|
176
|
+
### Bug Fixes
|
177
|
+
|
178
|
+
- 🐛 use shelljs to run selenoid binary ([3306071](https://github.com/wKich/creevey/commit/3306071d2840b6f8fde442880457085f6992915a))
|
179
|
+
|
180
|
+
## [0.7.22](https://github.com/wKich/creevey/compare/v0.7.21...v0.7.22) (2021-01-25)
|
181
|
+
|
182
|
+
### Bug Fixes
|
183
|
+
|
184
|
+
- run standalone browsers and selenoid ([ba85fdc](https://github.com/wKich/creevey/commit/ba85fdcd7f5e2ad0e6139cb3fe84e969dacb2b4c))
|
185
|
+
- selenium url path for standalone run ([da45662](https://github.com/wKich/creevey/commit/da45662aff604bacb02bd949ece5e406888cbd4d))
|
186
|
+
|
187
|
+
## [0.7.21](https://github.com/wKich/creevey/compare/v0.7.20...v0.7.21) (2021-01-22)
|
188
|
+
|
189
|
+
### Bug Fixes
|
190
|
+
|
191
|
+
- 🐛 create protocol relative image url ([5c574dc](https://github.com/wKich/creevey/commit/5c574dc3025eacf1c9d4402880a9893193c0180f))
|
192
|
+
- 🐛 encode only path tokens for url ([28751c9](https://github.com/wKich/creevey/commit/28751c968cb4a3a8afcb606096a0a0bc2fc3bccf))
|
193
|
+
- 🐛 get image url with empty port number ([43a8226](https://github.com/wKich/creevey/commit/43a822653001ecbb31534c40f688814e14bb52db))
|
194
|
+
- 🐛 make report from static files works from creevey repo ([4b49df7](https://github.com/wKich/creevey/commit/4b49df72f21cee725848187c267f6b87b9e988e3))
|
195
|
+
- 🐛 protocol relative resolving ([fc2559e](https://github.com/wKich/creevey/commit/fc2559e60091ef96af48fbbac92e7f06b7f57dbc))
|
196
|
+
- 🐛 store stats.json into report dir ([9b0586d](https://github.com/wKich/creevey/commit/9b0586db49681b654045ad54dece4c195e490605))
|
197
|
+
|
198
|
+
### Features
|
199
|
+
|
200
|
+
- 🎸 improve creevey-loader, cut-off side-effects ([a302708](https://github.com/wKich/creevey/commit/a30270808275fa5dbe83ddb33d0e5490995e9b37))
|
201
|
+
- 🎸 save webpack stats.json on debug ([248e271](https://github.com/wKich/creevey/commit/248e2713bc97a601877eaa20f3c6e16ecc1e2aa5))
|
202
|
+
|
203
|
+
## [0.7.20](https://github.com/wKich/creevey/compare/v0.7.19...v0.7.20) (2021-01-15)
|
204
|
+
|
205
|
+
### Bug Fixes
|
206
|
+
|
207
|
+
- 🐛 apply iframe after custom resolver ([e77bf33](https://github.com/wKich/creevey/commit/e77bf33048673e733ad2acd4799277b336e27fe5))
|
208
|
+
|
209
|
+
## [0.7.19](https://github.com/wKich/creevey/compare/v0.7.18...v0.7.19) (2021-01-14)
|
210
|
+
|
211
|
+
### Bug Fixes
|
212
|
+
|
213
|
+
- 🐛 document unloaded error, again ([171b8bb](https://github.com/wKich/creevey/commit/171b8bb633f55616d58bc46655981e986cf9db95))
|
214
|
+
- 🐛 document unloaded while waiting for result ([dd31445](https://github.com/wKich/creevey/commit/dd3144558de74349f41108e29aed97814a48eeb7))
|
215
|
+
- 🐛 properly output unnecessary images ([40e791e](https://github.com/wKich/creevey/commit/40e791edd5eddce838ccc62902430ca00422bb8b))
|
216
|
+
|
217
|
+
### Features
|
218
|
+
|
219
|
+
- allow to set storybook's globals ([7500245](https://github.com/wKich/creevey/commit/75002458b38d5f7ac3d47cc32516ec9b55091db2))
|
220
|
+
|
221
|
+
## [0.7.18](https://github.com/wKich/creevey/compare/v0.7.17...v0.7.18) (2021-01-08)
|
222
|
+
|
223
|
+
### Bug Fixes
|
224
|
+
|
225
|
+
- 🐛 copy-paste missing function from storybook ([29144a4](https://github.com/wKich/creevey/commit/29144a41afe013874b082ca29eecc74b5b56a017))
|
226
|
+
|
227
|
+
## [0.7.17](https://github.com/wKich/creevey/compare/v0.7.16...v0.7.17) (2021-01-07)
|
228
|
+
|
229
|
+
### Bug Fixes
|
230
|
+
|
231
|
+
- 🐛 addon erases global parameters in storybook ([2ed4700](https://github.com/wKich/creevey/commit/2ed47000f00e30890656872d1daae420e47db2d9))
|
232
|
+
|
233
|
+
## [0.7.16](https://github.com/wKich/creevey/compare/v0.7.15...v0.7.16) (2021-01-06)
|
234
|
+
|
235
|
+
### Bug Fixes
|
236
|
+
|
237
|
+
- 🐛 resolve url for ie11 ([562a982](https://github.com/wKich/creevey/commit/562a9821135f42e428da7f64fe29f2473565eb6d))
|
238
|
+
- 🐛 spinner position in sidebar ([5d2d34a](https://github.com/wKich/creevey/commit/5d2d34a7229d7fef8fd4f6731df6b807dce00d7f))
|
239
|
+
|
240
|
+
## [0.7.15](https://github.com/wKich/creevey/compare/v0.7.14...v0.7.15) (2021-01-06)
|
241
|
+
|
242
|
+
### Bug Fixes
|
243
|
+
|
244
|
+
- 🐛 addon show test name in tabs panel ([3393474](https://github.com/wKich/creevey/commit/339347498e87d5e43d1a5e89b611aeaf896e81f3))
|
245
|
+
- 🐛 trim story kinds ([6ff25b0](https://github.com/wKich/creevey/commit/6ff25b0b87558d2ce0c11ecd5130480003f41988))
|
246
|
+
|
247
|
+
### Features
|
248
|
+
|
249
|
+
- 🎸 add run all buttons in addon ([94ac2d3](https://github.com/wKich/creevey/commit/94ac2d3c6c72ec9a537b974294235f4bfdbf5a69))
|
250
|
+
|
251
|
+
## [0.7.14](https://github.com/wKich/creevey/compare/v0.7.13...v0.7.14) (2021-01-01)
|
252
|
+
|
253
|
+
### Bug Fixes
|
254
|
+
|
255
|
+
- 🐛 disable debug logger for storybook 5.x ([a758bab](https://github.com/wKich/creevey/commit/a758bab23ebff4d357f46087ad21a9a8005dd130))
|
256
|
+
- 🐛 resolve storybook properly and wait for page load ([6888178](https://github.com/wKich/creevey/commit/6888178a3ca2ee2c22ef69fc633564154a256e55))
|
257
|
+
|
258
|
+
### Performance Improvements
|
259
|
+
|
260
|
+
- ⚡️ exclude fork ts checker plugin for webpack ([cebc0be](https://github.com/wKich/creevey/commit/cebc0be6d42148fe9be859ef49364f0abe8f883f))
|
261
|
+
|
262
|
+
## [0.7.13](https://github.com/wKich/creevey/compare/v0.7.12...v0.7.13) (2020-12-30)
|
263
|
+
|
264
|
+
### Bug Fixes
|
265
|
+
|
266
|
+
- 🐛 images preview urls ([d2a7853](https://github.com/wKich/creevey/commit/d2a7853b2761a3c52a05aee2401b0f54b0e97832))
|
267
|
+
|
268
|
+
### Features
|
269
|
+
|
270
|
+
- 🎸 start creevey server early and wait for build ([e325d59](https://github.com/wKich/creevey/commit/e325d59b651ef3a52a2284aeb6b9de4eca4a3366))
|
271
|
+
|
272
|
+
### Performance Improvements
|
273
|
+
|
274
|
+
- ⚡️ speedup resolving storybook url ([4c24c88](https://github.com/wKich/creevey/commit/4c24c88646d1f4711fe24e9e8445ead06238756f))
|
275
|
+
|
276
|
+
## [0.7.12](https://github.com/wKich/creevey/compare/v0.7.11...v0.7.12) (2020-12-24)
|
277
|
+
|
278
|
+
### Bug Fixes
|
279
|
+
|
280
|
+
- 🐛 set timeout after open for ie11 ([6fda74d](https://github.com/wKich/creevey/commit/6fda74d9fcf7cc1e6f27f0d5814798bef7f5503d))
|
281
|
+
|
282
|
+
## [0.7.11](https://github.com/wKich/creevey/compare/v0.7.10...v0.7.11) (2020-12-21)
|
283
|
+
|
284
|
+
### Bug Fixes
|
285
|
+
|
286
|
+
- 🐛 addon result page scroll height ([cc12cd6](https://github.com/wKich/creevey/commit/cc12cd66c69b4571015ede6492cd4b5f978f9c34))
|
287
|
+
- 🐛 exclude docgen plugin for webpack bundle ([f11210a](https://github.com/wKich/creevey/commit/f11210aec9352c695eccc72202daff640a4617cb))
|
288
|
+
- 🐛 webpack mdx regexp, again ([0cadad1](https://github.com/wKich/creevey/commit/0cadad15f4217312fdb3db6a3bf7ee4f2cad5bed))
|
289
|
+
- 🐛 webpack mdx rule ([4e1b002](https://github.com/wKich/creevey/commit/4e1b002c378d5de7134e392495953c53537cfa5e))
|
290
|
+
|
291
|
+
### Features
|
292
|
+
|
293
|
+
- 🎸 store tests view in browser history ([868a6b0](https://github.com/wKich/creevey/commit/868a6b0e1fcd906e6441fe54d6ffeccf4ed75019))
|
294
|
+
|
295
|
+
## [0.7.10](https://github.com/wKich/creevey/compare/v0.7.9...v0.7.10) (2020-12-15)
|
296
|
+
|
297
|
+
### Bug Fixes
|
298
|
+
|
299
|
+
- 🐛 switch stories error ([c39ef7e](https://github.com/wKich/creevey/commit/c39ef7edf565f8c983641d89d30b5c552d0b08c7))
|
300
|
+
|
301
|
+
## [0.7.9](https://github.com/wKich/creevey/compare/v0.7.8...v0.7.9) (2020-12-14)
|
302
|
+
|
303
|
+
### Features
|
304
|
+
|
305
|
+
- 🎸 add support docker auth config for private registry ([e157c39](https://github.com/wKich/creevey/commit/e157c39de3f13ae4026a26579590ab181665fcb7))
|
306
|
+
|
307
|
+
## [0.7.8](https://github.com/wKich/creevey/compare/v0.7.7...v0.7.8) (2020-12-14)
|
308
|
+
|
309
|
+
### Bug Fixes
|
310
|
+
|
311
|
+
- 🐛 resolve url with docker ([ee5b2f7](https://github.com/wKich/creevey/commit/ee5b2f73c6c7bdbbad7574e927306b432295f241))
|
312
|
+
|
313
|
+
## [0.7.7](https://github.com/wKich/creevey/compare/v0.7.6...v0.7.7) (2020-12-14)
|
314
|
+
|
315
|
+
### Bug Fixes
|
316
|
+
|
317
|
+
- 🐛 handle getaddrinfo error ([b3567fe](https://github.com/wKich/creevey/commit/b3567fe71aca2b9342fe51561cdf60a2936bed0d))
|
318
|
+
|
319
|
+
## [0.7.6](https://github.com/wKich/creevey/compare/v0.7.5...v0.7.6) (2020-12-14)
|
320
|
+
|
321
|
+
### Bug Fixes
|
322
|
+
|
323
|
+
- 🐛 don't check `isInDocker` for docker internal host ([5a81138](https://github.com/wKich/creevey/commit/5a8113891940fb0b7d700e0aaa8ebdcca76d886c))
|
324
|
+
|
325
|
+
## [0.7.5](https://github.com/wKich/creevey/compare/v0.7.4...v0.7.5) (2020-12-14)
|
326
|
+
|
327
|
+
### Bug Fixes
|
328
|
+
|
329
|
+
- 🐛 creevey-loader support private class members ([223e3e3](https://github.com/wKich/creevey/commit/223e3e37d2aae7a96a28846abf840d5321b0f96d))
|
330
|
+
- 🐛 download selenoid binary ([5e72957](https://github.com/wKich/creevey/commit/5e729571391e7082a0a0fe02dcae6d12e41622f2))
|
331
|
+
- 🐛 webpack and update options ([712c911](https://github.com/wKich/creevey/commit/712c91184da6c82989d923b1d90e9d70b13d347c))
|
332
|
+
|
333
|
+
### Features
|
334
|
+
|
335
|
+
- 🎸 add mvp to allow run selenoid without docker ([c161e0a](https://github.com/wKich/creevey/commit/c161e0a807c26e7643bd7c4969bae8b954bcffd8))
|
336
|
+
- 🎸 link to current story ([8a3c043](https://github.com/wKich/creevey/commit/8a3c043be5f05e77044b1ff1ce5707c43fc43a36))
|
337
|
+
|
338
|
+
## [0.7.4](https://github.com/wKich/creevey/compare/v0.7.3...v0.7.4) (2020-12-11)
|
339
|
+
|
340
|
+
### Bug Fixes
|
341
|
+
|
342
|
+
- 🐛 change cache dir, some issues on windows ([c2e4f34](https://github.com/wKich/creevey/commit/c2e4f34e3ea70c85c60d1e37b20b6f6ff324dda7))
|
343
|
+
- 🐛 merge skip options properly ([24427af](https://github.com/wKich/creevey/commit/24427af40e812478b9832ae82d2dd64e3e146805))
|
344
|
+
- 🐛 resolve grid url without docker ([97e06fe](https://github.com/wKich/creevey/commit/97e06fe8c92496a99e659e8f221428bb4bb4062d))
|
345
|
+
|
346
|
+
## [0.7.3](https://github.com/wKich/creevey/compare/v0.7.2...v0.7.3) (2020-12-02)
|
347
|
+
|
348
|
+
### Features
|
349
|
+
|
350
|
+
- 🎸 apply disable animation styles in storybook decorator ([6dac967](https://github.com/wKich/creevey/commit/6dac96768f6b7953c56e22239a2adcf686f9aabb))
|
351
|
+
- 🎸 remove skbkontur ip address resolver ([91e17f4](https://github.com/wKich/creevey/commit/91e17f4f0e87b553bad367eda10ed30a1246be9e))
|
352
|
+
|
353
|
+
## [0.7.2](https://github.com/wKich/creevey/compare/v0.7.1...v0.7.2) (2020-11-28)
|
354
|
+
|
355
|
+
### Bug Fixes
|
356
|
+
|
357
|
+
- 🐛 invalid websocket frame ([6796625](https://github.com/wKich/creevey/commit/679662569e985b600eb4eb6779551a4bf929f54f))
|
358
|
+
|
359
|
+
### Features
|
360
|
+
|
361
|
+
- 🎸 improve scale handling for image views ([454ee85](https://github.com/wKich/creevey/commit/454ee85ad4b6a608bb999b815fb4192c2a661329))
|
362
|
+
|
363
|
+
## [0.7.1](https://github.com/wKich/creevey/compare/v0.7.0...v0.7.1) (2020-11-24)
|
364
|
+
|
365
|
+
### Bug Fixes
|
366
|
+
|
367
|
+
- 🐛 don't cutoff named exports ([cd09dd4](https://github.com/wKich/creevey/commit/cd09dd47070e4584429905f78baee82c65a82a47))
|
368
|
+
|
369
|
+
### Features
|
370
|
+
|
371
|
+
- 🎸 improve side-by-side view for wide images ([3d6a147](https://github.com/wKich/creevey/commit/3d6a1477804bb900d806cbac26d884d26bb28e55))
|
372
|
+
- 🎸 side-by-side view supports layout resizing ([123e7c7](https://github.com/wKich/creevey/commit/123e7c78708bf2e85b1649c85d2a264a9e4594d8))
|
373
|
+
|
374
|
+
# [0.7.0](https://github.com/wKich/creevey/compare/v0.7.0-beta.21...v0.7.0) (2020-11-09)
|
375
|
+
|
376
|
+
### Bug Fixes
|
377
|
+
|
378
|
+
- 🐛 get channel before it created ([b3e89ae](https://github.com/wKich/creevey/commit/b3e89aef18baca926d1684e6734265a03cbf00ab))
|
379
|
+
- 🐛 toggle theme sticky z-index ([dcdbb77](https://github.com/wKich/creevey/commit/dcdbb77e63b1f67025c897610c2df74b8d98abbd))
|
380
|
+
|
381
|
+
### Features
|
382
|
+
|
383
|
+
- 🎸 Dark theme in client ([c36aa4b](https://github.com/wKich/creevey/commit/c36aa4b59ce1661fa7cfbef72a7db1354e8ee0eb))
|
384
|
+
|
385
|
+
# [0.7.0-beta.21](https://github.com/wKich/creevey/compare/v0.7.0-beta.20...v0.7.0-beta.21) (2020-11-02)
|
386
|
+
|
387
|
+
### Bug Fixes
|
388
|
+
|
389
|
+
- 🐛 wait for fonts loaded ([78c2a74](https://github.com/wKich/creevey/commit/78c2a74782ac9bdb10d7c9c2039a332218a217cd))
|
390
|
+
|
391
|
+
# [0.7.0-beta.20](https://github.com/wKich/creevey/compare/v0.7.0-beta.19...v0.7.0-beta.20) (2020-10-30)
|
392
|
+
|
393
|
+
### Bug Fixes
|
394
|
+
|
395
|
+
- 🐛 don't cutoff `name` prop from stories params ([ca1a19f](https://github.com/wKich/creevey/commit/ca1a19f75f5a31974a7fb930d871c53ce0d77567))
|
396
|
+
|
397
|
+
# [0.7.0-beta.19](https://github.com/wKich/creevey/compare/v0.7.0-beta.18...v0.7.0-beta.19) (2020-10-30)
|
398
|
+
|
399
|
+
### Bug Fixes
|
400
|
+
|
401
|
+
- 🐛 macos docker netwrok internal host address ([90bf76d](https://github.com/wKich/creevey/commit/90bf76d8986d07626890e03b2097c0ef3ebd3f27))
|
402
|
+
|
403
|
+
# [0.7.0-beta.18](https://github.com/wKich/creevey/compare/v0.7.0-beta.17...v0.7.0-beta.18) (2020-10-29)
|
404
|
+
|
405
|
+
### Bug Fixes
|
406
|
+
|
407
|
+
- 🐛 cutoff parameters in new declarative preview config ([a86c51a](https://github.com/wKich/creevey/commit/a86c51ae80caa1f3e7534a044e1427dcb43e9792))
|
408
|
+
- 🐛 improve creevey loader cutoff stories meta data ([7b651d5](https://github.com/wKich/creevey/commit/7b651d5fe2945cffa10929ce038d01885c1db6ab))
|
409
|
+
- 🐛 reset body margin for client ui ([54fee7f](https://github.com/wKich/creevey/commit/54fee7f061a7b5eef7179faec09e79fd1652e305))
|
410
|
+
- 🐛 storybook framework detection ([25e1651](https://github.com/wKich/creevey/commit/25e1651608765698629e8f2ac1b9e43f98234288))
|
411
|
+
|
412
|
+
### Features
|
413
|
+
|
414
|
+
- 🎸 change default capture element to `#root` ([8d2c7b8](https://github.com/wKich/creevey/commit/8d2c7b8a5ddf9e3f64102c19aba1f1a7f933d8ad))
|
415
|
+
|
416
|
+
# [0.7.0-beta.17](https://github.com/wKich/creevey/compare/v0.7.0-beta.16...v0.7.0-beta.17) (2020-10-16)
|
417
|
+
|
418
|
+
### Bug Fixes
|
419
|
+
|
420
|
+
- 🐛 filter tests without statuses ([4c1d25d](https://github.com/wKich/creevey/commit/4c1d25de232816b4d99853fbaa2661a46996effc))
|
421
|
+
|
422
|
+
# [0.7.0-beta.16](https://github.com/wKich/creevey/compare/v0.7.0-beta.15...v0.7.0-beta.16) (2020-10-16)
|
423
|
+
|
424
|
+
### Bug Fixes
|
425
|
+
|
426
|
+
- 🐛 make sidebar a little narrower ([65c9bf7](https://github.com/wKich/creevey/commit/65c9bf7947cad71c07df5e7d5668a1b73ecfe395))
|
427
|
+
- 🐛 small ui issues in SideBar ([6df7a0a](https://github.com/wKich/creevey/commit/6df7a0a13dcea12614bc4fc4e34389c52f9b03a8))
|
428
|
+
- 🐛 watch stories in windows ([e8458dd](https://github.com/wKich/creevey/commit/e8458ddde503011aaa6a7479694edd2aa42b1941))
|
429
|
+
|
430
|
+
### Features
|
431
|
+
|
432
|
+
- 🎸 sideBar on storybook components ([2866c8e](https://github.com/wKich/creevey/commit/2866c8ebf7e57d460bf5254a93573c048351e1fe))
|
433
|
+
|
434
|
+
# [0.7.0-beta.15](https://github.com/wKich/creevey/compare/v0.7.0-beta.14...v0.7.0-beta.15) (2020-10-13)
|
435
|
+
|
436
|
+
### Bug Fixes
|
437
|
+
|
438
|
+
- 🐛 don't output message about unnecessary image ([83c1463](https://github.com/wKich/creevey/commit/83c14635e667d39181cbc1ddc494bac026641a2d))
|
439
|
+
- 🐛 improve `getImageUrl` for circle ci at least ([7537ce9](https://github.com/wKich/creevey/commit/7537ce9efa7a0ac3bcf2597a79126d8cd5312d59))
|
440
|
+
|
441
|
+
# [0.7.0-beta.14](https://github.com/wKich/creevey/compare/v0.7.0-beta.13...v0.7.0-beta.14) (2020-10-13)
|
442
|
+
|
443
|
+
### Bug Fixes
|
444
|
+
|
445
|
+
- 🐛 fallback report if api don't available ([618682f](https://github.com/wKich/creevey/commit/618682f289cb316dbd3b8b78d9d96ddd9e2c8681))
|
446
|
+
|
447
|
+
### Features
|
448
|
+
|
449
|
+
- 🎸 output unnecessary images on full run ([b6dbb02](https://github.com/wKich/creevey/commit/b6dbb02d5f6ef5766f1f11c0d50d7f5b4ad17b79))
|
450
|
+
- 🎸 remove `useDocker`. Creevey run docker by default ([ccbbb43](https://github.com/wKich/creevey/commit/ccbbb43f6fadd88bfcb21b266f08c45d39389c79))
|
451
|
+
|
452
|
+
# [0.7.0-beta.13](https://github.com/wKich/creevey/compare/v0.7.0-beta.12...v0.7.0-beta.13) (2020-10-09)
|
453
|
+
|
454
|
+
### Bug Fixes
|
455
|
+
|
456
|
+
- 🐛 add stories in addon ([50d7279](https://github.com/wKich/creevey/commit/50d7279f3daa706da204682edfa69e4bc5dad43b))
|
457
|
+
- 🐛 don't crash on storybook reload error ([b393926](https://github.com/wKich/creevey/commit/b393926eda582094973e18b037f95af4530f5b21))
|
458
|
+
- 🐛 don't fail on mdx stories, just ignore it for now ([527f962](https://github.com/wKich/creevey/commit/527f96222a73eac0711882b7541d5d318a9aa4fa))
|
459
|
+
- 🐛 re-disable animation ([ecbf380](https://github.com/wKich/creevey/commit/ecbf380316ce3479a70d7ce269a93088930a9880))
|
460
|
+
|
461
|
+
# [0.7.0-beta.12](https://github.com/wKich/creevey/compare/v0.7.0-beta.11...v0.7.0-beta.12) (2020-10-05)
|
462
|
+
|
463
|
+
### Bug Fixes
|
464
|
+
|
465
|
+
- 🐛 hmr tests on windows ([7496a72](https://github.com/wKich/creevey/commit/7496a7244648531c79dff5b9b54f01bb375607fe))
|
466
|
+
- 🐛 report static bundle, add polyfiils ([dfb5f51](https://github.com/wKich/creevey/commit/dfb5f515344ae9b91f5070f002a914cbed835fd6))
|
467
|
+
|
468
|
+
# [0.7.0-beta.11](https://github.com/wKich/creevey/compare/v0.7.0-beta.10...v0.7.0-beta.11) (2020-10-05)
|
469
|
+
|
470
|
+
### Bug Fixes
|
471
|
+
|
472
|
+
- 🐛 build addon to support ie11 ([4327d6d](https://github.com/wKich/creevey/commit/4327d6dfe9471adecaf6cba7ae6b36312d9fcf5e))
|
473
|
+
- 🐛 output readable error message on switch story ([aa369cb](https://github.com/wKich/creevey/commit/aa369cba3f6acb472d11f403f1081ea6c400f367))
|
474
|
+
- 🐛 run tests on circle ci ([a8afef5](https://github.com/wKich/creevey/commit/a8afef582235c37722a60f9596f0e1cbb61a1da0))
|
475
|
+
|
476
|
+
# [0.7.0-beta.10](https://github.com/wKich/creevey/compare/v0.7.0-beta.9...v0.7.0-beta.10) (2020-10-02)
|
477
|
+
|
478
|
+
### Bug Fixes
|
479
|
+
|
480
|
+
- 🐛 some generated modules are excluded as external ([9d8d04b](https://github.com/wKich/creevey/commit/9d8d04ba6b49a6fc216f661790931bb010284fef))
|
481
|
+
|
482
|
+
# [0.7.0-beta.9](https://github.com/wKich/creevey/compare/v0.7.0-beta.8...v0.7.0-beta.9) (2020-10-02)
|
483
|
+
|
484
|
+
### Bug Fixes
|
485
|
+
|
486
|
+
- 🐛 some ui markup, change placeholder message ([b3a6bd6](https://github.com/wKich/creevey/commit/b3a6bd61c1a1d1d52a92a3513545a00962aa0159))
|
487
|
+
|
488
|
+
# [0.7.0-beta.8](https://github.com/wKich/creevey/compare/v0.7.0-beta.7...v0.7.0-beta.8) (2020-10-02)
|
489
|
+
|
490
|
+
### Bug Fixes
|
491
|
+
|
492
|
+
- 🐛 storybook override creevey story parameters ([bd17edf](https://github.com/wKich/creevey/commit/bd17edfcbc5a7dc879c6bf08dca41fec4f207f15))
|
493
|
+
|
494
|
+
# [0.7.0-beta.7](https://github.com/wKich/creevey/compare/v0.7.0-beta.6...v0.7.0-beta.7) (2020-10-01)
|
495
|
+
|
496
|
+
### Features
|
497
|
+
|
498
|
+
- 🎸 support declarative decorators format ([3e22854](https://github.com/wKich/creevey/commit/3e22854e3bbefc2bef9c4f7fde270620e9919859))
|
499
|
+
|
500
|
+
# [0.7.0-beta.6](https://github.com/wKich/creevey/compare/v0.7.0-beta.5...v0.7.0-beta.6) (2020-09-29)
|
501
|
+
|
502
|
+
### Bug Fixes
|
503
|
+
|
504
|
+
- 🐛 loader handle `export default {} as Meta` ([2dcca94](https://github.com/wKich/creevey/commit/2dcca946d9f94f2e1158974c6e9a22028b49492c))
|
505
|
+
|
506
|
+
# [0.7.0-beta.5](https://github.com/wKich/creevey/compare/v0.7.0-beta.4...v0.7.0-beta.5) (2020-09-28)
|
507
|
+
|
508
|
+
### Bug Fixes
|
509
|
+
|
510
|
+
- 🐛 eslint errors ([ffdc73d](https://github.com/wKich/creevey/commit/ffdc73d90f29b8452e63f0817300de7e925d0785))
|
511
|
+
- 🐛 remove old selenoid container on start ([715f04a](https://github.com/wKich/creevey/commit/715f04a228198e5369653199f983c21eca88c194))
|
512
|
+
- 🐛 small addon ui issues ([f055c1c](https://github.com/wKich/creevey/commit/f055c1c16394250f4aaf6db56d444a1c218ab66b))
|
513
|
+
- 🐛 small layout fixes in addon ([0f29b12](https://github.com/wKich/creevey/commit/0f29b121bb09e9840d3251eb9fe6d25a986aa46d))
|
514
|
+
|
515
|
+
### Features
|
516
|
+
|
517
|
+
- 🎸 Add run button in addon ([8b3596c](https://github.com/wKich/creevey/commit/8b3596cc05ff8dcfa987f816db0b02d5097517f6))
|
518
|
+
- 🎸 show status in sidebar ([c28c2da](https://github.com/wKich/creevey/commit/c28c2daab6726735f05ab3d30d4c4662bfb8245f))
|
519
|
+
- 🎸 Storybook addon ([7c47c4b](https://github.com/wKich/creevey/commit/7c47c4bc4432ef55364824cee2c1b42430e02a33))
|
520
|
+
|
521
|
+
# [0.7.0-beta.4](https://github.com/wKich/creevey/compare/v0.7.0-beta.3...v0.7.0-beta.4) (2020-09-26)
|
522
|
+
|
523
|
+
### Bug Fixes
|
524
|
+
|
525
|
+
- 🐛 correctly load report from previous run ([e680e24](https://github.com/wKich/creevey/commit/e680e244728fa7347eac194c88145dec2d0b87a0))
|
526
|
+
|
527
|
+
# [0.7.0-beta.3](https://github.com/wKich/creevey/compare/v0.7.0-beta.2...v0.7.0-beta.3) (2020-09-25)
|
528
|
+
|
529
|
+
### Bug Fixes
|
530
|
+
|
531
|
+
- 🐛 resolve storybook url on windows with multiple networks ([eb1dcf3](https://github.com/wKich/creevey/commit/eb1dcf3df3ef1c084165ad51e41cade2190c3935))
|
532
|
+
- 🐛 use `find-dir-cache` to store cache in right place ([c10a951](https://github.com/wKich/creevey/commit/c10a951e6cb05c29222348922d3639de98c04544))
|
533
|
+
- 🐛 use selenoid instead of browser images ([b187e62](https://github.com/wKich/creevey/commit/b187e62cb3ef3fe8d4e0128f293ebf693054c5d3))
|
534
|
+
- docker network for windows/wsl ([da8b491](https://github.com/wKich/creevey/commit/da8b49172f01a6131bea505021c6ea6ff2e77561))
|
535
|
+
|
536
|
+
### Features
|
537
|
+
|
538
|
+
- 🎸 add support docker ([c5f7976](https://github.com/wKich/creevey/commit/c5f7976f741e3a7cf1d06615c8013475e4677809))
|
539
|
+
|
540
|
+
# [0.7.0-beta.2](https://github.com/wKich/creevey/compare/v0.7.0-beta.1...v0.7.0-beta.2) (2020-09-10)
|
541
|
+
|
542
|
+
### Bug Fixes
|
543
|
+
|
544
|
+
- 🐛 exit master process with after hook ([e90adfb](https://github.com/wKich/creevey/commit/e90adfb603a5b48a0e085843df03b074923201d5))
|
545
|
+
|
546
|
+
# [0.7.0-beta.1](https://github.com/wKich/creevey/compare/v0.7.0-beta.0...v0.7.0-beta.1) (2020-09-08)
|
547
|
+
|
548
|
+
### Bug Fixes
|
549
|
+
|
550
|
+
- 🐛 collect all errors ([66146d7](https://github.com/wKich/creevey/commit/66146d7372f46b71055ad7e64f945463b1a21184))
|
551
|
+
- 🐛 don't show error if image has been approved ([6b74e1d](https://github.com/wKich/creevey/commit/6b74e1d42d8d2297e5187670f9e05be337e20348))
|
552
|
+
- 🐛 image preview height ([afe125d](https://github.com/wKich/creevey/commit/afe125d535be85bc899eaa03683924c3c0c5a856))
|
553
|
+
|
554
|
+
### Features
|
555
|
+
|
556
|
+
- 🎸 add before/after hooks ([32bc397](https://github.com/wKich/creevey/commit/32bc397e2c0e37d947df9d34a62aa356aa88ad41))
|
557
|
+
- 🎸 show error images in imagePreview ([5d2037a](https://github.com/wKich/creevey/commit/5d2037aa86a8a700a6a82e88f980eed5fba873a9))
|
558
|
+
|
559
|
+
# [0.7.0-beta.0](https://github.com/wKich/creevey/compare/v0.6.4...v0.7.0-beta.0) (2020-08-04)
|
560
|
+
|
561
|
+
### Bug Fixes
|
562
|
+
|
563
|
+
- 🐛 gracefully end worker processes ([e2d2548](https://github.com/wKich/creevey/commit/e2d254882ca8fa993d20725dd3132c6069f185f5))
|
564
|
+
- 🐛 remove scroll when change image in swap mode ([7ccc42c](https://github.com/wKich/creevey/commit/7ccc42cc36b3d1fef5964fcc60e40899b6d995fc))
|
565
|
+
- 🐛 tests hot reloading ([b96bfa9](https://github.com/wKich/creevey/commit/b96bfa9e9509d67dd685ee30c26b37b96eb20289))
|
566
|
+
|
567
|
+
### Features
|
568
|
+
|
569
|
+
- 🎸 support storybook v6.x ([9bb7397](https://github.com/wKich/creevey/commit/9bb7397b3e0dbc88f7f212aab4ee807ae25e8d64))
|
570
|
+
|
571
|
+
## [0.6.4](https://github.com/wKich/creevey/compare/v0.6.3...v0.6.4) (2020-07-27)
|
572
|
+
|
573
|
+
### Bug Fixes
|
574
|
+
|
575
|
+
- 🐛 hot-reloading issue, add readme notes ([5497b71](https://github.com/wKich/creevey/commit/5497b710053285a4f0b4cad075427b2ee7287be2))
|
576
|
+
- 🐛 react example loadash vulnerability ([e188d1d](https://github.com/wKich/creevey/commit/e188d1d4e43ddd4df0a00de54f37d61f3e2aecc0))
|
577
|
+
- 🐛 storybook bundle depends on core-js, regenerator-runtime ([ce596b9](https://github.com/wKich/creevey/commit/ce596b91665d74f68b0442d767d8e81a48e034c0))
|
578
|
+
- 🐛 watch stories on windows ([ce599cc](https://github.com/wKich/creevey/commit/ce599ccc0e9eaa31e01987297e1f5c6a899a56ac))
|
579
|
+
|
580
|
+
### Features
|
581
|
+
|
582
|
+
- 🎸 add disabled state to start button ([260193a](https://github.com/wKich/creevey/commit/260193a49f67e500db771688aae95e2fc1e4694b))
|
583
|
+
- 🎸 Save view mode ([ea461cc](https://github.com/wKich/creevey/commit/ea461ccb26c5888a1dff54077cac264f2ae4ab27))
|
584
|
+
|
585
|
+
## [0.6.3](https://github.com/wKich/creevey/compare/v0.6.2...v0.6.3) (2020-06-16)
|
586
|
+
|
587
|
+
### Bug Fixes
|
588
|
+
|
589
|
+
- 🐛 test reloading dont work well ([3049dfd](https://github.com/wKich/creevey/commit/3049dfdcda6bc7ae2c85fb6afbfa89cb0f8a1aeb))
|
590
|
+
|
591
|
+
## [0.6.2](https://github.com/wKich/creevey/compare/v0.6.1...v0.6.2) (2020-06-10)
|
592
|
+
|
593
|
+
### Bug Fixes
|
594
|
+
|
595
|
+
- 🐛 disable hot-reloading without `--ui` option ([3ea0792](https://github.com/wKich/creevey/commit/3ea0792a6612a01cb62a4650414b6aa26c138665))
|
596
|
+
|
597
|
+
## [0.6.1](https://github.com/wKich/creevey/compare/v0.6.0...v0.6.1) (2020-06-10)
|
598
|
+
|
599
|
+
### Bug Fixes
|
600
|
+
|
601
|
+
- 🐛 ERR_IPC_CHANNEL_CLOSED finally ([965e6de](https://github.com/wKich/creevey/commit/965e6de21acd4d77a9971f072d40f7c42d900bab))
|
602
|
+
- 🐛 mocha 7.2 multiple runs, remove old hacks ([0ca08be](https://github.com/wKich/creevey/commit/0ca08bebe436ebc91c0fbc501850339dea5fe0e2))
|
603
|
+
|
604
|
+
# [0.6.0](https://github.com/wKich/creevey/compare/v0.6.0-beta.8...v0.6.0) (2020-06-09)
|
605
|
+
|
606
|
+
### Bug Fixes
|
607
|
+
|
608
|
+
- 🐛 kind-of@6.0.2 vulnerability ([489783e](https://github.com/wKich/creevey/commit/489783ee489c5d4f9d0ca5de87dedb6be6e78e1e))
|
609
|
+
- 🐛 loader: remove vars in desctructuring ([8567fd6](https://github.com/wKich/creevey/commit/8567fd60e3ba67572e45f22629f639f6f17647b3))
|
610
|
+
|
611
|
+
# [0.6.0-beta.8](https://github.com/wKich/creevey/compare/v0.6.0-beta.7...v0.6.0-beta.8) (2020-06-04)
|
612
|
+
|
613
|
+
### Bug Fixes
|
614
|
+
|
615
|
+
- 🐛 output warning `Did you call 'load' twice` on reload ([1b2bbeb](https://github.com/wKich/creevey/commit/1b2bbeb8c7f8052514feab767b599b66fec3adf7))
|
616
|
+
|
617
|
+
# [0.6.0-beta.7](https://github.com/wKich/creevey/compare/v0.6.0-beta.6...v0.6.0-beta.7) (2020-06-02)
|
618
|
+
|
619
|
+
### Bug Fixes
|
620
|
+
|
621
|
+
- 🐛 webpack recursion IPC, again ([5083454](https://github.com/wKich/creevey/commit/5083454c1d330ad0abf2ac24ddeb73f1f5367f3a))
|
622
|
+
|
623
|
+
# [0.6.0-beta.6](https://github.com/wKich/creevey/compare/v0.6.0-beta.5...v0.6.0-beta.6) (2020-06-02)
|
624
|
+
|
625
|
+
### Bug Fixes
|
626
|
+
|
627
|
+
- 🐛 IPC messages recursion, again ([4500e92](https://github.com/wKich/creevey/commit/4500e92525307b1966be9fbce39c7bb50b18c25b))
|
628
|
+
|
629
|
+
# [0.6.0-beta.5](https://github.com/wKich/creevey/compare/v0.6.0-beta.4...v0.6.0-beta.5) (2020-06-02)
|
630
|
+
|
631
|
+
### Bug Fixes
|
632
|
+
|
633
|
+
- 🐛 webpack compiler process send messages recursion ([4fd2afe](https://github.com/wKich/creevey/commit/4fd2afeb7e2a2254eb1638f5ca2fc836550c59dd))
|
634
|
+
|
635
|
+
# [0.6.0-beta.4](https://github.com/wKich/creevey/compare/v0.6.0-beta.3...v0.6.0-beta.4) (2020-06-02)
|
636
|
+
|
637
|
+
### Bug Fixes
|
638
|
+
|
639
|
+
- 🐛 another fix to gracefully exit ([e433afd](https://github.com/wKich/creevey/commit/e433afd30b6a001c9cfcbc1d267557dd7d7f3ed3))
|
640
|
+
- 🐛 check element before capturing screenshot ([53df80b](https://github.com/wKich/creevey/commit/53df80bb2a7c234e5f0109d0f1c8beca88ddb1e9))
|
641
|
+
- 🐛 some small init/exit issues ([6c4d666](https://github.com/wKich/creevey/commit/6c4d666040eafdf721d17a0f40714af9a85ae109))
|
642
|
+
|
643
|
+
### Features
|
644
|
+
|
645
|
+
- 🎸 allow use `delay` with custom tests ([7a1ab33](https://github.com/wKich/creevey/commit/7a1ab337e52577f3fc934b5edca12638a1ea8e07))
|
646
|
+
|
647
|
+
# [0.6.0-beta.3](https://github.com/wKich/creevey/compare/v0.6.0-beta.2...v0.6.0-beta.3) (2020-05-27)
|
648
|
+
|
649
|
+
### Bug Fixes
|
650
|
+
|
651
|
+
- 🐛 EPIPE message on exit again ([a5bb06d](https://github.com/wKich/creevey/commit/a5bb06def9bb4598ee5619ab4942936845dea44c))
|
652
|
+
- 🐛 make loader be more aggressive ([78c3d53](https://github.com/wKich/creevey/commit/78c3d53d8439338e634349e9c7999f017ea1f10f))
|
653
|
+
- 🐛 soft-freeze mocha version on 7.1 ([5aa3f57](https://github.com/wKich/creevey/commit/5aa3f57ea0fcf3512646a7c346b89ba4f6057767))
|
654
|
+
|
655
|
+
# [0.6.0-beta.2](https://github.com/wKich/creevey/compare/v0.6.0-beta.1...v0.6.0-beta.2) (2020-05-18)
|
656
|
+
|
657
|
+
### Bug Fixes
|
658
|
+
|
659
|
+
- 🐛 correct shutdown workers ([30e7066](https://github.com/wKich/creevey/commit/30e70661b2e1c6b8aab9efbdd3af541c56e719f4))
|
660
|
+
- 🐛 correctly close browser session on SIGINT ([079b832](https://github.com/wKich/creevey/commit/079b8326f45d8b7a0de539c3ed2f105679a04534))
|
661
|
+
- 🐛 ignore removing bundle cache directory ([6be2bd7](https://github.com/wKich/creevey/commit/6be2bd789c5b259e3351169a47f1bb932ef5de44))
|
662
|
+
|
663
|
+
# [0.6.0-beta.1](https://github.com/wKich/creevey/compare/v0.6.0-beta.0...v0.6.0-beta.1) (2020-05-15)
|
664
|
+
|
665
|
+
### Bug Fixes
|
666
|
+
|
667
|
+
- 🐛 storybook framework detection on windows ([fb68cf1](https://github.com/wKich/creevey/commit/fb68cf168a1ad5704e2be00b456015dd2780bf0e))
|
668
|
+
|
669
|
+
# [0.6.0-beta.0](https://github.com/wKich/creevey/compare/v0.5.6...v0.6.0-beta.0) (2020-05-14)
|
670
|
+
|
671
|
+
### Bug Fixes
|
672
|
+
|
673
|
+
- 🐛 support latest selenium browser drivers ([0921aed](https://github.com/wKich/creevey/commit/0921aed898c19ddb38bd6949a6e85699dddaffd7))
|
674
|
+
|
675
|
+
### Features
|
676
|
+
|
677
|
+
- 🎸 add creevey-loader for webpack ([c15b32d](https://github.com/wKich/creevey/commit/c15b32ddcfbdc7fc906a6a03d27539f87e620a85))
|
678
|
+
- 🎸 rework load stories process ([e47f806](https://github.com/wKich/creevey/commit/e47f8067b6a18d066f60196605666ed8db6fadf1))
|
679
|
+
|
680
|
+
## [0.5.6](https://github.com/wKich/creevey/compare/v0.5.5...v0.5.6) (2020-05-04)
|
681
|
+
|
682
|
+
### Bug Fixes
|
683
|
+
|
684
|
+
- 🐛 handle worker initiating error ([dc8a4f6](https://github.com/wKich/creevey/commit/dc8a4f616a19d70adcd288de7b5bce89e6e46315))
|
685
|
+
|
686
|
+
## [0.5.5](https://github.com/wKich/creevey/compare/v0.5.4...v0.5.5) (2020-04-21)
|
687
|
+
|
688
|
+
### Features
|
689
|
+
|
690
|
+
- 🎸 add `saveReport` cli option, enabled by default ([88aa930](https://github.com/wKich/creevey/commit/88aa930dd61ce7902095a9a86cab36529b355014))
|
691
|
+
- 🎸 support .creevey config dir ([ba1c560](https://github.com/wKich/creevey/commit/ba1c5600295e5cc655370c004cf33dee4b364615))
|
692
|
+
|
693
|
+
## [0.5.4](https://github.com/wKich/creevey/compare/v0.5.3...v0.5.4) (2020-04-04)
|
694
|
+
|
695
|
+
### Bug Fixes
|
696
|
+
|
697
|
+
- 🐛 remove new code that added by mistake ([f4cbf8c](https://github.com/wKich/creevey/commit/f4cbf8cbc5d327f321da3f3dbf6b11da0e14583e))
|
698
|
+
|
699
|
+
## [0.5.3](https://github.com/wKich/creevey/compare/v0.5.2...v0.5.3) (2020-04-04)
|
700
|
+
|
701
|
+
### Bug Fixes
|
702
|
+
|
703
|
+
- 🐛 precompile decorator file for ie11 target ([f4b8742](https://github.com/wKich/creevey/commit/f4b8742a8848fd2656c6cd639ef8678e0e4f35c0))
|
704
|
+
|
705
|
+
## [0.5.2](https://github.com/wKich/creevey/compare/v0.5.1...v0.5.2) (2020-03-30)
|
706
|
+
|
707
|
+
### Bug Fixes
|
708
|
+
|
709
|
+
- 🐛 use selenium as deps, rename storybook peerDeps package ([3e0faa3](https://github.com/wKich/creevey/commit/3e0faa39976cf30e3cd95a38bd6326c81f1078c5))
|
710
|
+
- ignore \*.scss modules while loading stories ([075068a](https://github.com/wKich/creevey/commit/075068a9192db6c0ed18c4802144b32930433e60))
|
711
|
+
|
712
|
+
## [0.5.1](https://github.com/wKich/creevey/compare/v0.5.0...v0.5.1) (2020-03-26)
|
713
|
+
|
714
|
+
### Features
|
715
|
+
|
716
|
+
- 🎸 output story render error ([18e7d9d](https://github.com/wKich/creevey/commit/18e7d9dea772cc10e1f75173c4faa47155e9c934))
|
717
|
+
|
718
|
+
# [0.5.0](https://github.com/wKich/creevey/compare/v0.4.11...v0.5.0) (2020-03-25)
|
719
|
+
|
720
|
+
### Bug Fixes
|
721
|
+
|
722
|
+
- 🐛 gracefully close selenium session ([cd8b630](https://github.com/wKich/creevey/commit/cd8b630b10008db21bc57feb4ffac671fc40ad08))
|
723
|
+
- 🐛 improve blend view css filters ([6ba0687](https://github.com/wKich/creevey/commit/6ba0687f7f6e6839fe30843871daad5c04a58857))
|
724
|
+
- 🐛 jsdom localStorage warning ([d1099ff](https://github.com/wKich/creevey/commit/d1099ffbce27c8e6851c55970f3875680df6fabb))
|
725
|
+
- 🐛 take composite images without hiding scrollbar ([4b3d95a](https://github.com/wKich/creevey/commit/4b3d95a82d339070497b97cb4bd50435851b75de))
|
726
|
+
|
727
|
+
### Features
|
728
|
+
|
729
|
+
- 🎸 rewrite storybook decorator to be framework agnostic ([f2d7904](https://github.com/wKich/creevey/commit/f2d7904a70c981fa64891f40845b1bb2abed7559))
|
730
|
+
- 🎸 support safari for composite images ([d078448](https://github.com/wKich/creevey/commit/d07844883071607bd6424e82f239b36b401722cb))
|
731
|
+
|
732
|
+
## [0.4.11](https://github.com/wKich/creevey/compare/v0.4.10...v0.4.11) (2020-03-13)
|
733
|
+
|
734
|
+
### Bug Fixes
|
735
|
+
|
736
|
+
- 🐛 hide scroll only for composite screenshots ([d9753d2](https://github.com/wKich/creevey/commit/d9753d2405e0aefb90663070d30465b0c8528f50))
|
737
|
+
|
738
|
+
## [0.4.10](https://github.com/wKich/creevey/compare/v0.4.9...v0.4.10) (2020-03-13)
|
739
|
+
|
740
|
+
### Bug Fixes
|
741
|
+
|
742
|
+
- 🐛 skip by test name with multiple skip options ([3d0ef36](https://github.com/wKich/creevey/commit/3d0ef36c8e2a994c171133f3e0c479f92016a9a2))
|
743
|
+
|
744
|
+
## [0.4.9](https://github.com/wKich/creevey/compare/v0.4.8...v0.4.9) (2020-03-13)
|
745
|
+
|
746
|
+
### Bug Fixes
|
747
|
+
|
748
|
+
- 🐛 exclude `@babel/*` modules from skiping while fastload ([a785fcf](https://github.com/wKich/creevey/commit/a785fcf9cf5e8e591fcf11280eb040658319ace8))
|
749
|
+
|
750
|
+
## [0.4.8](https://github.com/wKich/creevey/compare/v0.4.7...v0.4.8) (2020-03-13)
|
751
|
+
|
752
|
+
### Bug Fixes
|
753
|
+
|
754
|
+
- 🐛 broken skip by test names ([e33c3d9](https://github.com/wKich/creevey/commit/e33c3d90b48df22540fc6cccaae71c47163b6599))
|
755
|
+
|
756
|
+
## [0.4.7](https://github.com/wKich/creevey/compare/v0.4.6...v0.4.7) (2020-03-13)
|
757
|
+
|
758
|
+
### Bug Fixes
|
759
|
+
|
760
|
+
- 🐛 register require.context before all other modules ([5474f87](https://github.com/wKich/creevey/commit/5474f87afe258022ad219db53c300305a143e6bb))
|
761
|
+
|
762
|
+
## [0.4.6](https://github.com/wKich/creevey/compare/v0.4.5...v0.4.6) (2020-03-13)
|
763
|
+
|
764
|
+
### Features
|
765
|
+
|
766
|
+
- 🎸 allow take composite screenshots in custom tests ([5dd1e7d](https://github.com/wKich/creevey/commit/5dd1e7d89b04b2629d9766f254a1b5f69bb5d17f))
|
767
|
+
|
768
|
+
## [0.4.5](https://github.com/wKich/creevey/compare/v0.4.4...v0.4.5) (2020-03-12)
|
769
|
+
|
770
|
+
### Features
|
771
|
+
|
772
|
+
- 🎸 add `delay` creevey story parameter ([49ecf00](https://github.com/wKich/creevey/commit/49ecf00ea90d2485833965794c1300ca7da4d17b))
|
773
|
+
|
774
|
+
## [0.4.4](https://github.com/wKich/creevey/compare/v0.4.3...v0.4.4) (2020-03-12)
|
775
|
+
|
776
|
+
### Features
|
777
|
+
|
778
|
+
- 🎸 add `debug` cli option ([cff35ea](https://github.com/wKich/creevey/commit/cff35eaad4bce400fb18b0f5daa520060cef5870))
|
779
|
+
- 🎸 improve creevey story params typings, simplify tests ([f78d372](https://github.com/wKich/creevey/commit/f78d372bff2837915ef7b0d0f22089fbe3607a18))
|
780
|
+
|
781
|
+
## [0.4.3](https://github.com/wKich/creevey/compare/v0.4.2...v0.4.3) (2020-03-11)
|
782
|
+
|
783
|
+
### Features
|
784
|
+
|
785
|
+
- 🎸 improve fastloading, to allow use side effects ([15ca5cc](https://github.com/wKich/creevey/commit/15ca5cc4ed73dff38707e8a713a03778663a7482))
|
786
|
+
|
787
|
+
## [0.4.2](https://github.com/wKich/creevey/compare/v0.4.1...v0.4.2) (2020-03-11)
|
788
|
+
|
789
|
+
### Bug Fixes
|
790
|
+
|
791
|
+
- 🐛 patch babel-register hook to support all extensions ([918ae27](https://github.com/wKich/creevey/commit/918ae2709a1f0fd7773cc44575d5ab3e9d2f4b29))
|
792
|
+
|
793
|
+
## [0.4.1](https://github.com/wKich/creevey/compare/v0.4.0...v0.4.1) (2020-03-10)
|
794
|
+
|
795
|
+
### Bug Fixes
|
796
|
+
|
797
|
+
- 🐛 some minor issues ([e309d56](https://github.com/wKich/creevey/commit/e309d56937a50fb544d7cd8b6366991b693ba111))
|
798
|
+
|
799
|
+
# [0.4.0](https://github.com/wKich/creevey/compare/v0.3.8...v0.4.0) (2020-03-04)
|
800
|
+
|
801
|
+
### Features
|
802
|
+
|
803
|
+
- 🎸 add test hot reloading, support new storybook configs ([7e282cb](https://github.com/wKich/creevey/commit/7e282cb2541d1a4f105a45474decd0dcf7e05759))
|
804
|
+
|
805
|
+
## [0.3.8](https://github.com/wKich/creevey/compare/v0.3.7...v0.3.8) (2020-03-03)
|
806
|
+
|
807
|
+
### Bug Fixes
|
808
|
+
|
809
|
+
- 🐛 ie11 don't work due async fn in types.ts file ([c1e8bbc](https://github.com/wKich/creevey/commit/c1e8bbc8747e68e26656f21f2d6247f654324cf2))
|
810
|
+
- 🐛 register pirates hook before any compiler ([7acde29](https://github.com/wKich/creevey/commit/7acde290f162ea651746f4d230073055a4bed956))
|
811
|
+
|
812
|
+
## [0.3.7](https://github.com/wKich/creevey/compare/v0.3.6...v0.3.7) (2020-02-20)
|
813
|
+
|
814
|
+
### Bug Fixes
|
815
|
+
|
816
|
+
- 🐛 fix bug with sync call onCompare ([e5c9e2c](https://github.com/wKich/creevey/commit/e5c9e2c4b8c19238608d4bba5bc3d2bd9f6871f6))
|
817
|
+
|
818
|
+
### Features
|
819
|
+
|
820
|
+
- 🎸 add onClick on teststatus for filter ([c28261c](https://github.com/wKich/creevey/commit/c28261c829e683dcfbee480d682f4cda61958dfc))
|
821
|
+
|
822
|
+
## [0.3.6](https://github.com/wKich/creevey/compare/v0.3.5...v0.3.6) (2020-02-17)
|
823
|
+
|
824
|
+
### Bug Fixes
|
825
|
+
|
826
|
+
- 🐛 output error message while init for master process ([2f48e37](https://github.com/wKich/creevey/commit/2f48e37d90422d4574b3c9186c68daf5a7339f50))
|
827
|
+
- ignore various non-js extensions on story load ([55f0ed0](https://github.com/wKich/creevey/commit/55f0ed01b1c235ba8e03f0c2defab8023087d46e))
|
828
|
+
|
829
|
+
## [0.3.5](https://github.com/wKich/creevey/compare/v0.3.4...v0.3.5) (2020-02-11)
|
830
|
+
|
831
|
+
### Bug Fixes
|
832
|
+
|
833
|
+
- 🐛 don't mutate test scope on image assertion ([939c1fe](https://github.com/wKich/creevey/commit/939c1fed02eee5af441a99e9451d40adaf379ffc))
|
834
|
+
- 🐛 don't show tests without status by status filter ([9d79781](https://github.com/wKich/creevey/commit/9d797817f306165b42d0e6f79ef95841d4fe24cd))
|
835
|
+
- 🐛 improve configs load process ([611af95](https://github.com/wKich/creevey/commit/611af959d9b91e1826e0d357620f56ee6b394d93))
|
836
|
+
- 🐛 remove mkdirp dependency ([e5cabef](https://github.com/wKich/creevey/commit/e5cabef02ae096318b3281cfe099fb6e275106fc))
|
837
|
+
- 🐛 support renamed stories ([003ff10](https://github.com/wKich/creevey/commit/003ff109a25475d7c849d06ba408e29090709a9b))
|
838
|
+
- 🐛 support windows paths to load storybook, disable debug ([7250b6a](https://github.com/wKich/creevey/commit/7250b6ad85862985e2e30a874bd508d79bf1b175))
|
839
|
+
- correct handle process errors for worker ([1d7f035](https://github.com/wKich/creevey/commit/1d7f035b66bb2d5638679d4cb4f50958da629773))
|
840
|
+
|
841
|
+
## [0.3.4](https://github.com/wKich/creevey/compare/v0.3.3...v0.3.4) (2020-01-17)
|
842
|
+
|
843
|
+
### Bug Fixes
|
844
|
+
|
845
|
+
- 🐛 improve fast-loading, throw non-syntax errors on require ([4f288b7](https://github.com/wKich/creevey/commit/4f288b76e932090622f295f00dca12a179403a4f))
|
846
|
+
|
847
|
+
### Features
|
848
|
+
|
849
|
+
- 🎸 allow pass diff options to pixelmatch ([32d6bb1](https://github.com/wKich/creevey/commit/32d6bb1868f11aa416a0872e927b97768b8eb2aa))
|
850
|
+
- 🎸 improve stories initialization speed ([1009728](https://github.com/wKich/creevey/commit/10097280d24a24fb4033e4516458b2e62a0dbe63))
|
851
|
+
|
852
|
+
### BREAKING CHANGES
|
853
|
+
|
854
|
+
- `threshold` config option are replaced to `diffOptions`
|
855
|
+
|
856
|
+
## [0.3.3](https://github.com/wKich/creevey/compare/v0.3.2...v0.3.3) (2020-01-16)
|
857
|
+
|
858
|
+
### Bug Fixes
|
859
|
+
|
860
|
+
- 🐛 add hint for images preview ([ddf3615](https://github.com/wKich/creevey/commit/ddf3615ca36e1f36ff02a348ad2cec0bc819a304))
|
861
|
+
- 🐛 move mocha typing to devDeps ([50f4a92](https://github.com/wKich/creevey/commit/50f4a9284e081054688114d0fd1054c8bbb3c16b))
|
862
|
+
|
863
|
+
## [0.3.2](https://github.com/wKich/creevey/compare/v0.3.1...v0.3.2) (2020-01-15)
|
864
|
+
|
865
|
+
### Bug Fixes
|
866
|
+
|
867
|
+
- 🐛 initiate browser after all stories has been loaded ([f95d8dc](https://github.com/wKich/creevey/commit/f95d8dcad1dd1feb1bcd5ae548131edd8c0ceec9))
|
868
|
+
|
869
|
+
## [0.3.1](https://github.com/wKich/creevey/compare/v0.3.0...v0.3.1) (2020-01-13)
|
870
|
+
|
871
|
+
### Bug Fixes
|
872
|
+
|
873
|
+
- 🐛 capture screenshot of element with non-integer size ([28fc1cc](https://github.com/wKich/creevey/commit/28fc1cc9162db6bb9085321883bd04abdb4ae880))
|
874
|
+
- 🐛 require config when path don't have extension ([93fb11b](https://github.com/wKich/creevey/commit/93fb11b0d4740b6da598a9e923dafb9c75394c70))
|
875
|
+
|
876
|
+
# [0.3.0](https://github.com/wKich/creevey/compare/v0.2.6...v0.3.0) (2020-01-10)
|
877
|
+
|
878
|
+
### Features
|
879
|
+
|
880
|
+
- 🎸 remove support explicit test cases ([4b56ddf](https://github.com/wKich/creevey/commit/4b56ddf7617785ce93cd17fe9e82e928c56011bb))
|
881
|
+
|
882
|
+
## [0.2.6](https://github.com/wKich/creevey/compare/v0.2.5...v0.2.6) (2020-01-10)
|
883
|
+
|
884
|
+
### Features
|
885
|
+
|
886
|
+
- 🎸 add `tests` story parameter for public usage ([c4d7dc0](https://github.com/wKich/creevey/commit/c4d7dc0191b1aafba2aa9f6d18d6d99d4093fcb3))
|
887
|
+
- 🎸 add `toMatchImages` assertion for chai ([1fef184](https://github.com/wKich/creevey/commit/1fef1847248405fc32e76d4d3b4387e200290d8c))
|
888
|
+
|
889
|
+
## [0.2.5](https://github.com/wKich/creevey/compare/v0.2.4...v0.2.5) (2020-01-10)
|
890
|
+
|
891
|
+
### Bug Fixes
|
892
|
+
|
893
|
+
- 🐛 correct work update with new report structure ([5bf17c1](https://github.com/wKich/creevey/commit/5bf17c10799f136d73639d9075866c6f308e30ed))
|
894
|
+
|
895
|
+
### Features
|
896
|
+
|
897
|
+
- 🎸 add `reportDir/screenDir` cli options ([3b059a6](https://github.com/wKich/creevey/commit/3b059a6e36a33d5963be216368391ed940b17b65))
|
898
|
+
- 🎸 load stories in nodejs and generate tests in runtime ([3f276a4](https://github.com/wKich/creevey/commit/3f276a4d06e006878cd4733797c2a262abf73ea6))
|
899
|
+
|
900
|
+
## [0.2.4](https://github.com/wKich/creevey/compare/v0.2.3...v0.2.4) (2019-12-23)
|
901
|
+
|
902
|
+
### Bug Fixes
|
903
|
+
|
904
|
+
- 🐛 convert export story names to storybook format ([43b227e](https://github.com/wKich/creevey/commit/43b227ed69c67bbedfac555f31c845fdb2b04840))
|
905
|
+
- 🐛 don't use webdriver object serialization ([c4545f0](https://github.com/wKich/creevey/commit/c4545f071269426caa24599d6e1b72d933d60152))
|
906
|
+
|
907
|
+
## [0.2.3](https://github.com/wKich/creevey/compare/v0.2.2...v0.2.3) (2019-12-19)
|
908
|
+
|
909
|
+
### Bug Fixes
|
910
|
+
|
911
|
+
- 🐛 allow skip tests by kinds ([ddc8a27](https://github.com/wKich/creevey/commit/ddc8a272e2a24cec2c25479788791a46ef1a8943)), closes [#12](https://github.com/wKich/creevey/issues/12)
|
912
|
+
- 🐛 wrap long suite/test titles ([c7f7920](https://github.com/wKich/creevey/commit/c7f79203b3ecbb3526312084897513c827bcf598))
|
913
|
+
|
914
|
+
## [0.2.2](https://github.com/wKich/creevey/compare/v0.2.1...v0.2.2) (2019-12-11)
|
915
|
+
|
916
|
+
### Bug Fixes
|
917
|
+
|
918
|
+
- 🐛 correct publish artifacts for TeamCity reporter ([5949bc3](https://github.com/wKich/creevey/commit/5949bc3a21a393ec0b15d0b104f59e4eae0f668a))
|
919
|
+
|
920
|
+
## [0.2.1](https://github.com/wKich/creevey/compare/v0.2.0...v0.2.1) (2019-12-11)
|
921
|
+
|
922
|
+
### Bug Fixes
|
923
|
+
|
924
|
+
- 🐛 allow click on checkbox in sidebar ([a750d46](https://github.com/wKich/creevey/commit/a750d46734290773298a07efef25d4eb2f992842))
|
925
|
+
- 🐛 correct report teamcity artifacts ([dfc7251](https://github.com/wKich/creevey/commit/dfc72514c1fa2f692a80e6bf1092255cbe7d47a9))
|
926
|
+
- 🐛 firefox SlideView ([91ef075](https://github.com/wKich/creevey/commit/91ef0750f1579b27a478725152f3fde95abcdb24))
|
927
|
+
|
928
|
+
# [0.2.0](https://github.com/wKich/creevey/compare/v0.1.7...v0.2.0) (2019-12-05)
|
929
|
+
|
930
|
+
### Bug Fixes
|
931
|
+
|
932
|
+
- 🐛 a lot of bugs with views, approve and more ([45c86d3](https://github.com/wKich/creevey/commit/45c86d30468c80508aedb5c52a4e8c9e96a34daf))
|
933
|
+
- 🐛 ImagesView correctly resize image in most cases ([258506a](https://github.com/wKich/creevey/commit/258506a3877bb32d4b38d6ce20d15372095edadf))
|
934
|
+
- 🐛 improve SideBar tests view ([a495fc1](https://github.com/wKich/creevey/commit/a495fc1b0321763092105ef641fc48b23548440b))
|
935
|
+
- 🐛 switch between tests ([ae25d59](https://github.com/wKich/creevey/commit/ae25d59d3d6e8433b522d13994d7e096e0958651))
|
936
|
+
- tests status move down, when scroll is shown ([9df0523](https://github.com/wKich/creevey/commit/9df0523e9a4b8bc54488e45eb106e8077303f146))
|
937
|
+
|
938
|
+
### Features
|
939
|
+
|
940
|
+
- 🎸 improve markup for ResultPage by prototypes ([09cd297](https://github.com/wKich/creevey/commit/09cd297010b1677fb8900d4e8db5be9629be10e7))
|
941
|
+
- 🎸 output penging tests count ([793d60f](https://github.com/wKich/creevey/commit/793d60fd771f267d7711b8853d1381405b4ee01f))
|
942
|
+
- 🎸 sticky SideBar with sitcky header ([06cc16c](https://github.com/wKich/creevey/commit/06cc16cc79be0756ff117f40447a9eaa28bf5f2a))
|
943
|
+
- 🎸 update SideBar markup by prototype ([7ba22fd](https://github.com/wKich/creevey/commit/7ba22fd766ca86de92da89b4a2260bc3495e16ab))
|
944
|
+
- swap images buttons by prototype ([5ce4214](https://github.com/wKich/creevey/commit/5ce4214c9a18f48b654534fbd77e297dce9cb7b7))
|
945
|
+
- view tests results count in sidebar ([9300f07](https://github.com/wKich/creevey/commit/9300f07abeb7cb4271cf85478493a9090cdc8127))
|
946
|
+
|
947
|
+
## [0.1.7](https://github.com/wKich/creevey/compare/v0.1.6...v0.1.7) (2019-11-22)
|
948
|
+
|
949
|
+
### Features
|
950
|
+
|
951
|
+
- 🎸 allow skip test stories by kinds ([1cb4968](https://github.com/wKich/creevey/commit/1cb49688616ac3060012e800428f1f67d066c2ab))
|
952
|
+
|
953
|
+
## [0.1.6](https://github.com/wKich/creevey/compare/v0.1.5...v0.1.6) (2019-11-22)
|
954
|
+
|
955
|
+
### Bug Fixes
|
956
|
+
|
957
|
+
- 🐛 handle regexp skip options ([d07689e](https://github.com/wKich/creevey/commit/d07689e428420084826391ae3438dc81d2b02922))
|
958
|
+
- 🐛 output correct reported screenshot path for teamcity ([fb7d230](https://github.com/wKich/creevey/commit/fb7d230258644c18649939dfb9dd92b5421d6ca1))
|
959
|
+
- 🐛 significantly improve perfomance ([422f023](https://github.com/wKich/creevey/commit/422f023cbb1b290ddd8e1b103856a6d2db293b52))
|
960
|
+
|
961
|
+
## [0.1.5](https://github.com/wKich/creevey/compare/v0.1.4...v0.1.5) (2019-11-20)
|
962
|
+
|
963
|
+
### Bug Fixes
|
964
|
+
|
965
|
+
- 🐛 require stories in nodejs env ([0e00fa6](https://github.com/wKich/creevey/commit/0e00fa629610960e0fab7fcea02596c4aa7ce107))
|
966
|
+
|
967
|
+
### Features
|
968
|
+
|
969
|
+
- 🎸 support write tests inside stories ([ce9ed7d](https://github.com/wKich/creevey/commit/ce9ed7d09c0312a073e0897ece8e082d17b0cb30))
|
970
|
+
|
971
|
+
## [0.1.4](https://github.com/wKich/creevey/compare/v0.1.3...v0.1.4) (2019-11-18)
|
972
|
+
|
973
|
+
### Bug Fixes
|
974
|
+
|
975
|
+
- **master:** dont output skipped tests ([1e23321](https://github.com/wKich/creevey/commit/1e233218054719f72d2d0bbf040d83b68955dca2))
|
976
|
+
- **utils:** improve error message when storybook page not available ([4c44763](https://github.com/wKich/creevey/commit/4c4476347e8aa5c90d6a84d680ee6d091d1897be))
|
977
|
+
- **utils:** try resolve ip only if address is localhost ([4aa6c69](https://github.com/wKich/creevey/commit/4aa6c693f537543ad86cebfc3e071583422a555a))
|
978
|
+
- **worker:** exit master process if worker couldn't start ([e682a47](https://github.com/wKich/creevey/commit/e682a47a9900c12941e0bb6ab72d9ef7628faa7c))
|
979
|
+
|
980
|
+
### Reverts
|
981
|
+
|
982
|
+
- Revert "fix(utils): replace ip resolver back" ([4e48706](https://github.com/wKich/creevey/commit/4e48706164abdbc1bc8765e022a99b41f60b29d5))
|
983
|
+
|
984
|
+
## [0.1.3](https://github.com/wKich/creevey/compare/v0.1.2...v0.1.3) (2019-11-07)
|
985
|
+
|
986
|
+
### Bug Fixes
|
987
|
+
|
988
|
+
- **storybook:** correct fill params for old storybook ([35ae070](https://github.com/wKich/creevey/commit/35ae07064f388da6b7fd841f05ad1e40865b79b2))
|
989
|
+
|
990
|
+
## [0.1.2](https://github.com/wKich/creevey/compare/v0.1.1...v0.1.2) (2019-11-07)
|
991
|
+
|
992
|
+
### Bug Fixes
|
993
|
+
|
994
|
+
- **storybook:** read prop of undefined ([b96bb48](https://github.com/wKich/creevey/commit/b96bb48ba1938b74d9c06ebb497c6be481d02f81))
|
995
|
+
|
996
|
+
## [0.1.1](https://github.com/wKich/creevey/compare/v0.1.0...v0.1.1) (2019-11-07)
|
997
|
+
|
998
|
+
### Bug Fixes
|
999
|
+
|
1000
|
+
- **utils:** replace ip resolver back ([e87bcdd](https://github.com/wKich/creevey/commit/e87bcddc0dad156c27e4200a61fe30b2bc24ef2b))
|
1001
|
+
|
1002
|
+
# [0.1.0](https://github.com/wKich/creevey/compare/v0.0.30...v0.1.0) (2019-11-07)
|
1003
|
+
|
1004
|
+
### Features
|
1005
|
+
|
1006
|
+
- simplify images directory ([0d15f73](https://github.com/wKich/creevey/commit/0d15f73e411ec6d93681d78573592c907b479e09))
|
1007
|
+
|
1008
|
+
## [0.0.30](https://github.com/wKich/creevey/compare/v0.0.29...v0.0.30) (2019-11-05)
|
1009
|
+
|
1010
|
+
### Features
|
1011
|
+
|
1012
|
+
- **storybook:** disable animations for webdriver ([acfc34c](https://github.com/wKich/creevey/commit/acfc34ce50372699c0ffdb5dfe83b02a002aea44))
|
1013
|
+
|
1014
|
+
## [0.0.29](https://github.com/wKich/creevey/compare/v0.0.28...v0.0.29) (2019-10-11)
|
1015
|
+
|
1016
|
+
### Bug Fixes
|
1017
|
+
|
1018
|
+
- **storybook:** ie11 hot-reload ([e8e45c4](https://github.com/wKich/creevey/commit/e8e45c4859d4b89053a4bc2884cc7cb64c76e130))
|
1019
|
+
|
1020
|
+
## [0.0.28](https://github.com/wKich/creevey/compare/v0.0.27...v0.0.28) (2019-10-09)
|
1021
|
+
|
1022
|
+
### Bug Fixes
|
1023
|
+
|
1024
|
+
- **storybook:** dont consider scroll while capture element ([6fb9ecb](https://github.com/wKich/creevey/commit/6fb9ecb19561a245d132acbf7ac3989e74b513cc))
|
1025
|
+
|
1026
|
+
## [0.0.27](https://github.com/wKich/creevey/compare/v0.0.26...v0.0.27) (2019-10-07)
|
1027
|
+
|
1028
|
+
### Bug Fixes
|
1029
|
+
|
1030
|
+
- **storybook:** chrome serialization stories error ([b994e9e](https://github.com/wKich/creevey/commit/b994e9e835be0e342ffa1b5d6545a326e7eb82c2))
|
1031
|
+
|
1032
|
+
## [0.0.26](https://github.com/wKich/creevey/compare/v0.0.25...v0.0.26) (2019-10-07)
|
1033
|
+
|
1034
|
+
### Bug Fixes
|
1035
|
+
|
1036
|
+
- **storybook:** chrome serialization stories error ([23d51ed](https://github.com/wKich/creevey/commit/23d51ede18ea329a50e05cffd8a4c46751f3647a))
|
1037
|
+
|
1038
|
+
## [0.0.25](https://github.com/wKich/creevey/compare/v0.0.24...v0.0.25) (2019-10-04)
|
1039
|
+
|
1040
|
+
### Bug Fixes
|
1041
|
+
|
1042
|
+
- **runner:** mark removed tests as skiped ([822d92a](https://github.com/wKich/creevey/commit/822d92a607899c23e0cd38396839f1e0674dcb46))
|
1043
|
+
- **runner:** support skip story option ([f094548](https://github.com/wKich/creevey/commit/f094548016fa57ae26ca6b91c61dc8547eac3285))
|
1044
|
+
- **storybook:** hide scroll while screenshot, few issues ([313cfa4](https://github.com/wKich/creevey/commit/313cfa498f19c8fa7407b365ee998795c9488877))
|
1045
|
+
- correct convert kind/story into storyId ([12d3c3a](https://github.com/wKich/creevey/commit/12d3c3af184cca6634246ad70010e32c515ecc8a))
|
1046
|
+
- **storybook:** make parameters optional ([6c674bd](https://github.com/wKich/creevey/commit/6c674bd615a0fbea5a42ff930eb7da54ed63bd45))
|
1047
|
+
- few types issues ([1ee82f8](https://github.com/wKich/creevey/commit/1ee82f8e3e28e1e37e1bc50fc5f5d081a468e0dd))
|
1048
|
+
|
1049
|
+
### Features
|
1050
|
+
|
1051
|
+
- support composite images ([594f6cb](https://github.com/wKich/creevey/commit/594f6cbee1245e92353c223053af151e6d887434))
|
1052
|
+
- **worker:** support creevey skip story option ([2e36464](https://github.com/wKich/creevey/commit/2e36464654c1adccc3d8203a69fec71408925f24))
|
1053
|
+
- make testDir optional ([714f76f](https://github.com/wKich/creevey/commit/714f76f1addc2b1fafcd95f0b96ac34a1100bbea))
|
1054
|
+
- **storybook:** pass creevey story parameters ([df259fe](https://github.com/wKich/creevey/commit/df259feb630f03914e5153e37bfe76d5ce587738))
|
1055
|
+
- generate tests from stories in runtime ([2625f93](https://github.com/wKich/creevey/commit/2625f93c83c52c8f2408a00022462cf2ae950e87))
|
1056
|
+
- output removed tests status ([442f4da](https://github.com/wKich/creevey/commit/442f4daee06f831350eae16fe2c7acc372abda25))
|
1057
|
+
|
1058
|
+
## [0.0.24](https://github.com/wKich/creevey/compare/v0.0.23...v0.0.24) (2019-09-16)
|
1059
|
+
|
1060
|
+
### Features
|
1061
|
+
|
1062
|
+
- more improvments ([39c601d](https://github.com/wKich/creevey/commit/39c601d65c43ef276ee398d30c872702902d433f))
|
1063
|
+
- support storybook kind depth levels ([7d2523d](https://github.com/wKich/creevey/commit/7d2523dae79050bd662b223463bd15cdb1470798))
|
1064
|
+
|
1065
|
+
## [0.0.23](https://github.com/wKich/creevey/compare/v0.0.22...v0.0.23) (2019-09-12)
|
1066
|
+
|
1067
|
+
### Bug Fixes
|
1068
|
+
|
1069
|
+
- export mocha/chai typings ([1340c4d](https://github.com/wKich/creevey/commit/1340c4db4603bd897053c42507398d6b5ab7eb88))
|
1070
|
+
|
1071
|
+
## [0.0.22](https://github.com/wKich/creevey/compare/v0.0.21...v0.0.22) (2019-09-11)
|
1072
|
+
|
1073
|
+
### Bug Fixes
|
1074
|
+
|
1075
|
+
- set-value vulnerability CVE-2019-10747 ([2db0463](https://github.com/wKich/creevey/commit/2db0463538b10f2d09674c8ed7a4e8078fabec37))
|
1076
|
+
- **server:** pass args to parser, skip folders while copy static ([1343c28](https://github.com/wKich/creevey/commit/1343c28b5694a43d99f52086ffffed5c51cace9c))
|
1077
|
+
- **storybook:** improve export and types ([11a8dc2](https://github.com/wKich/creevey/commit/11a8dc2b7ff28a2d5ab46845a5885a9d467419e1))
|
1078
|
+
- **storybook:** support storybook@3.x ([8c952cc](https://github.com/wKich/creevey/commit/8c952cc43abb9d490c2436ad6433d322feb58d62))
|
1079
|
+
- optional hooks, fix default testRegex ([8da03d2](https://github.com/wKich/creevey/commit/8da03d211adb6a8902f48e884dd414f03296e53e))
|
1080
|
+
|
1081
|
+
### Features
|
1082
|
+
|
1083
|
+
- add storybook decorator ([4f97fd6](https://github.com/wKich/creevey/commit/4f97fd6a5e12e1a06836337299aece8ef0890dcd))
|
1084
|
+
- remove mocha-ui ([1abf335](https://github.com/wKich/creevey/commit/1abf3352e15bd1fb777ff7ac35a8d00b87969c4a))
|
1085
|
+
- **cli:** add `update` option for batch approve ([ed2a1f6](https://github.com/wKich/creevey/commit/ed2a1f61430a8befdddb148b426601e39b90540a))
|
1086
|
+
|
1087
|
+
## [0.0.21](https://github.com/wKich/creevey/compare/v0.0.20...v0.0.21) (2019-08-30)
|
1088
|
+
|
1089
|
+
### Bug Fixes
|
1090
|
+
|
1091
|
+
- **ImagesView:** improve view for side-by-side view component ([831a34e](https://github.com/wKich/creevey/commit/831a34ec024c991f96d45c831b082d765a3d6dc0))
|
1092
|
+
- **pool:** improve restart workers process ([82fb1ea](https://github.com/wKich/creevey/commit/82fb1eaf30f2d7a729559595a07e047a87265dba))
|
1093
|
+
|
1094
|
+
## [0.0.20](https://github.com/wKich/creevey/compare/v0.0.19...v0.0.20) (2019-08-27)
|
1095
|
+
|
1096
|
+
### Bug Fixes
|
1097
|
+
|
1098
|
+
- **client:** better output error message ([16eaa06](https://github.com/wKich/creevey/commit/16eaa06fdb1f1deb76d1dfa60fc55cc756eb85a3))
|
1099
|
+
- **pool:** correct retry tests by timeout ([1c11e52](https://github.com/wKich/creevey/commit/1c11e528d379b4f05330cb438e5ff58d5762f917))
|
1100
|
+
|
1101
|
+
### Features
|
1102
|
+
|
1103
|
+
- **client:** fit large images into sidepage ([c4adbca](https://github.com/wKich/creevey/commit/c4adbca0a636b49b239255e91d4fd15799386c90))
|
1104
|
+
|
1105
|
+
## [0.0.19](https://github.com/wKich/creevey/compare/v0.0.18...v0.0.19) (2019-08-21)
|
1106
|
+
|
1107
|
+
### Bug Fixes
|
1108
|
+
|
1109
|
+
- **reporter:** try to fix parallel output on teamcity ([0ff4faf](https://github.com/wKich/creevey/commit/0ff4faf9bd4dc504a190e76ef673ed9203152203))
|
1110
|
+
|
1111
|
+
## [0.0.18](https://github.com/wKich/creevey/compare/v0.0.17...v0.0.18) (2019-08-21)
|
1112
|
+
|
1113
|
+
### Bug Fixes
|
1114
|
+
|
1115
|
+
- **reporter:** try to fix parallel output on teamcity ([8371fce](https://github.com/wKich/creevey/commit/8371fcefe08e56d60bc4ff123731e1819b77b5c3))
|
1116
|
+
|
1117
|
+
## [0.0.17](https://github.com/wKich/creevey/compare/v0.0.16...v0.0.17) (2019-08-21)
|
1118
|
+
|
1119
|
+
### Bug Fixes
|
1120
|
+
|
1121
|
+
- **reporter:** try to fix parallel output on teamcity ([5de07d9](https://github.com/wKich/creevey/commit/5de07d9a72939ef62b4fb99bff624a2d79089c91))
|
1122
|
+
|
1123
|
+
## [0.0.16](https://github.com/wKich/creevey/compare/v0.0.15...v0.0.16) (2019-08-21)
|
1124
|
+
|
1125
|
+
### Bug Fixes
|
1126
|
+
|
1127
|
+
- **reporter:** output full filepath in metadata ([142c3a6](https://github.com/wKich/creevey/commit/142c3a6d359a95ba226d6fce35719bf0f134e19d))
|
1128
|
+
|
1129
|
+
## [0.0.15](https://github.com/wKich/creevey/compare/v0.0.14...v0.0.15) (2019-08-21)
|
1130
|
+
|
1131
|
+
### Bug Fixes
|
1132
|
+
|
1133
|
+
- **reporter:** output correct test name in teamcity ([e753e71](https://github.com/wKich/creevey/commit/e753e71b4484b8d82ed725e8ca1d023bfdd4993d))
|
1134
|
+
|
1135
|
+
### Features
|
1136
|
+
|
1137
|
+
- **reporter:** output image as test metadata ([eb6a03a](https://github.com/wKich/creevey/commit/eb6a03a0f819992f40c37a739561a28a00c30a6d))
|
1138
|
+
- **runner:** allow setup browser resolution ([a6b1b92](https://github.com/wKich/creevey/commit/a6b1b92621ef8db5754e25bbe8cafe3153805134))
|
1139
|
+
|
1140
|
+
## [0.0.14](https://github.com/wKich/creevey/compare/v0.0.13...v0.0.14) (2019-08-21)
|
1141
|
+
|
1142
|
+
## [0.0.13](https://github.com/wKich/creevey/compare/v0.0.12...v0.0.13) (2019-07-01)
|
1143
|
+
|
1144
|
+
### Bug Fixes
|
1145
|
+
|
1146
|
+
- **worker:** correct `retries` prop name ([747ba56](https://github.com/wKich/creevey/commit/747ba56d101783e8767e246ae8d929aacfb1f637))
|
1147
|
+
|
1148
|
+
## [0.0.12](https://github.com/wKich/creevey/compare/v0.0.11...v0.0.12) (2019-07-01)
|
1149
|
+
|
1150
|
+
### Bug Fixes
|
1151
|
+
|
1152
|
+
- **server:** pass TC version to envs worker ([78585ae](https://github.com/wKich/creevey/commit/78585ae4b7788a4c2a00cf63d33c3ead469ab703))
|
1153
|
+
|
1154
|
+
## [0.0.11](https://github.com/wKich/creevey/compare/v0.0.10...v0.0.11) (2019-07-01)
|
1155
|
+
|
1156
|
+
### Bug Fixes
|
1157
|
+
|
1158
|
+
- **reporter:** output retry test as passed for tc ([847db55](https://github.com/wKich/creevey/commit/847db5578bb34312cff2d5a409be5950b8a491f3))
|
1159
|
+
|
1160
|
+
## [0.0.10](https://github.com/wKich/creevey/compare/v0.0.9...v0.0.10) (2019-06-26)
|
1161
|
+
|
1162
|
+
### Bug Fixes
|
1163
|
+
|
1164
|
+
- **runner:** send stop event ([ade8f22](https://github.com/wKich/creevey/commit/ade8f224b0688072c526f2f1b2a2fcfcc68a09c1))
|
1165
|
+
|
1166
|
+
## [0.0.9](https://github.com/wKich/creevey/compare/v0.0.8...v0.0.9) (2019-06-26)
|
1167
|
+
|
1168
|
+
### Features
|
1169
|
+
|
1170
|
+
- **chai-image:** allow pass `threshold` option ([81394c8](https://github.com/wKich/creevey/commit/81394c804bceedc6a1b579d149a902cd36176035))
|
1171
|
+
- **reporter:** add `chalk` to color output ([87e4d9a](https://github.com/wKich/creevey/commit/87e4d9aaac0457c7a17b6b5849ebce817e1ef64f))
|
1172
|
+
|
1173
|
+
## [0.0.8](https://github.com/wKich/creevey/compare/v0.0.7...v0.0.8) (2019-06-25)
|
1174
|
+
|
1175
|
+
### Bug Fixes
|
1176
|
+
|
1177
|
+
- **worker:** send error message on fail, restart on timeout ([8ddb265](https://github.com/wKich/creevey/commit/8ddb2654afe56d41035afaa511f6c04e677015fd))
|
1178
|
+
|
1179
|
+
## [0.0.7](https://github.com/wKich/creevey/compare/v0.0.6...v0.0.7) (2019-06-24)
|
1180
|
+
|
1181
|
+
### Bug Fixes
|
1182
|
+
|
1183
|
+
- **chai-image:** enable anti-aliasing for pixelmatch ([ef50047](https://github.com/wKich/creevey/commit/ef50047ef4550448d5291fba6138526fbd3b5495))
|
1184
|
+
- **parser:** don't include ignored tests ([985c758](https://github.com/wKich/creevey/commit/985c7586909edeb457ab9df35fc896774cba3bfb))
|
1185
|
+
- **server:** set `skip` flag require ([db235d3](https://github.com/wKich/creevey/commit/db235d3fecac99f65f56220b176d4a7284e09c92))
|
1186
|
+
- **worker:** patch mocha to support skip tests for browser ([1de1ea0](https://github.com/wKich/creevey/commit/1de1ea071ada8724e0240430a4cd21299c757abb))
|
1187
|
+
|
1188
|
+
### Features
|
1189
|
+
|
1190
|
+
- **client:** output disabled skiped tests ([8d7f596](https://github.com/wKich/creevey/commit/8d7f596ecadc5235c74bdb36e0ccaa6235914725))
|
1191
|
+
|
1192
|
+
## [0.0.6](https://github.com/wKich/creevey/compare/v0.0.5...v0.0.6) (2019-06-20)
|
1193
|
+
|
1194
|
+
### Bug Fixes
|
1195
|
+
|
1196
|
+
- **client:** don't output skipped tests ([da51ce6](https://github.com/wKich/creevey/commit/da51ce6f0c64a0f72f98b27ed2362135d3330665))
|
1197
|
+
- **worker:** escape test path string ([694cd32](https://github.com/wKich/creevey/commit/694cd32bc737b7445f683e69e5cc044f23b0a666))
|
1198
|
+
|
1199
|
+
### Features
|
1200
|
+
|
1201
|
+
- **client:** improve switcher, move start button ([50259d5](https://github.com/wKich/creevey/commit/50259d5df878edeb3fbff5d511c635276acef207))
|
1202
|
+
- **server:** allow define uniq options for each browser ([4280a32](https://github.com/wKich/creevey/commit/4280a326859ece52701fc5802cab7b3b9a65ec8f))
|
1203
|
+
|
1204
|
+
## [0.0.5](https://github.com/wKich/creevey/compare/v0.0.4...v0.0.5) (2019-06-17)
|
1205
|
+
|
1206
|
+
### Bug Fixes
|
1207
|
+
|
1208
|
+
- **client:** output new images ([cb082a8](https://github.com/wKich/creevey/commit/cb082a81a6b1964c0c641b47aa868f4dbe5c5025))
|
1209
|
+
- **utils:** better handle reset mouse position ([c85854d](https://github.com/wKich/creevey/commit/c85854df805ee974ef53c90d17bdcc9025076408))
|
1210
|
+
- better handle reset mouse position ([f777a7b](https://github.com/wKich/creevey/commit/f777a7bec8951b60a0f4df4b5aa44221aae5f617))
|
1211
|
+
|
1212
|
+
## [0.0.4](https://github.com/wKich/creevey/compare/v0.0.3...v0.0.4) (2019-06-14)
|
1213
|
+
|
1214
|
+
### Bug Fixes
|
1215
|
+
|
1216
|
+
- **client:** encode image url path ([aef999c](https://github.com/wKich/creevey/commit/aef999c9d1d824b2fbc4ace485ff16d307cddc30))
|
1217
|
+
- **utils:** reset mouse position ([1f79e61](https://github.com/wKich/creevey/commit/1f79e6166d65631b7c076171926e6f3e542e0481))
|
1218
|
+
|
1219
|
+
### Features
|
1220
|
+
|
1221
|
+
- **client:** update suites statues ([ace43df](https://github.com/wKich/creevey/commit/ace43dffb9d2f1207679f6c724d9fb434a225d82))
|
1222
|
+
|
1223
|
+
## [0.0.3](https://github.com/wKich/creevey/compare/v0.0.2...v0.0.3) (2019-06-03)
|
1224
|
+
|
1225
|
+
### Bug Fixes
|
1226
|
+
|
1227
|
+
- **runner:** parallel test running ([4931127](https://github.com/wKich/creevey/commit/4931127c3c4086c79a833dafc782eff9d369996b))
|
1228
|
+
- **server:** browser config merge ([3d3dc2a](https://github.com/wKich/creevey/commit/3d3dc2aa7853886fcecdfd8863b4a3d9e2f94f78))
|
1229
|
+
- **server:** restart worker on error ([73abcf7](https://github.com/wKich/creevey/commit/73abcf7d6535555bcf13e1d571c00fafcd91e848))
|
1230
|
+
- **worker:** improve test reporter ([e18878c](https://github.com/wKich/creevey/commit/e18878c68c56c66838d085a2e93788c6c7ab9ac8))
|
1231
|
+
|
1232
|
+
### Features
|
1233
|
+
|
1234
|
+
- **client:** add `BlendView` component ([5da4a8d](https://github.com/wKich/creevey/commit/5da4a8d5e8ea36ce8e1f45cd1eeed2cdfb33935d))
|
1235
|
+
- **client:** add `SlideView` component ([dda0aa9](https://github.com/wKich/creevey/commit/dda0aa9f8253d9a446e4b2f5129334a941638dd3))
|
1236
|
+
- **client:** add different image views ([9f08bcc](https://github.com/wKich/creevey/commit/9f08bcced07ef619f951c8489c5774202868bef6))
|
1237
|
+
- **client:** output test error message ([e277298](https://github.com/wKich/creevey/commit/e27729869a8e383a3ae6b2ef1ff73784e8880d9e))
|
1238
|
+
- **client:** use `emotion` for styles ([35ba95a](https://github.com/wKich/creevey/commit/35ba95a286aa355162fccfd39b4a93a054a58f50))
|
1239
|
+
- render approved images ([af80081](https://github.com/wKich/creevey/commit/af8008112bc98dc3d7d0bfa5baaef91783210abe))
|
1240
|
+
- **server:** better handle ws messages ([64cb126](https://github.com/wKich/creevey/commit/64cb126e5c4b671d99b4df4f308e1ec6f3251447))
|
1241
|
+
|
1242
|
+
## [0.0.2](https://github.com/wKich/creevey/compare/v0.0.1...v0.0.2) (2019-05-29)
|
1243
|
+
|
1244
|
+
### Features
|
1245
|
+
|
1246
|
+
- **worker:** add reporter mvp ([ead4e91](https://github.com/wKich/creevey/commit/ead4e911de04cfd857f83e5e77b921b425b25513))
|
1247
|
+
|
1248
|
+
## [0.0.1](https://github.com/wKich/creevey/compare/8e42cec432747648018c1c06447b3530c971a7e4...v0.0.1) (2019-05-21)
|
1249
|
+
|
1250
|
+
### Bug Fixes
|
1251
|
+
|
1252
|
+
- **client:** handle start/stop messages ([6aac604](https://github.com/wKich/creevey/commit/6aac6048d3130c5f85026ee9051f6090dff6164b))
|
1253
|
+
- **runner:** retries condition ([e8a2e2f](https://github.com/wKich/creevey/commit/e8a2e2f05d4e60ad0cee380d39adc6f791d94d26))
|
1254
|
+
- **server:** served static path ([8893555](https://github.com/wKich/creevey/commit/8893555f8c94c986e4869f12f55be23fbfcaacc3))
|
1255
|
+
- **TestRestultView:** always open last image ([b7f9cd6](https://github.com/wKich/creevey/commit/b7f9cd6a33c0b9f97cec10a5d5b89526eab92689))
|
1256
|
+
- **TestRestultView:** improve images output ([60849d2](https://github.com/wKich/creevey/commit/60849d2199699a5cf46caa21ab7a9b31595cc4d9))
|
1257
|
+
- **utils:** change test scope path. Move browser to the last ([4cd00ed](https://github.com/wKich/creevey/commit/4cd00ed5a3ac9a9371e6aedfc4cbff7d47d3e2bf))
|
1258
|
+
- **worker:** clean images, strong regexp for grep ([c55da42](https://github.com/wKich/creevey/commit/c55da4291e7a813e39b6aca13ea8ca1d2764c17a))
|
1259
|
+
- **worker:** increase mocha timeout ([e841f5c](https://github.com/wKich/creevey/commit/e841f5c72bb55069db3827424a102153c1c3141e))
|
1260
|
+
- export types ([87e502e](https://github.com/wKich/creevey/commit/87e502e93418f7d38a6e6762c50a118bfa94e58d))
|
1261
|
+
|
1262
|
+
### Features
|
1263
|
+
|
1264
|
+
- **chai-image:** save images in multiple runs ([96d1229](https://github.com/wKich/creevey/commit/96d12299238834d9731e65def930ed2c0a65c6e4))
|
1265
|
+
- **client:** add results view component ([a1a0d34](https://github.com/wKich/creevey/commit/a1a0d34f8db5dd89fa69863c62a7d04b795b1958))
|
1266
|
+
- **server:** add `ui` flag, wait workers ready event ([3608974](https://github.com/wKich/creevey/commit/3608974468daa1958beb5d156269da280b38f586))
|
1267
|
+
- **server:** allow to use custom reporter ([f778dee](https://github.com/wKich/creevey/commit/f778dee187f1255169e97d7eb1f490c978d7feae))
|
1268
|
+
- **server:** offline mode mvp, copy static ([fb609e6](https://github.com/wKich/creevey/commit/fb609e6e1bf1a864e412b42f70bf1dbd0cba89e1))
|
1269
|
+
- **server:** save/load test report ([08a5fd9](https://github.com/wKich/creevey/commit/08a5fd9ec4dd8be6833bcd42d8685c9af94514c1))
|
1270
|
+
- **server:** use cluster fork instead preprocessors ([6a1136b](https://github.com/wKich/creevey/commit/6a1136be5b9dcac285af1c500d344c079ba70325))
|
1271
|
+
- allow approve images from ui ([86335f1](https://github.com/wKich/creevey/commit/86335f119c5fef35e783242c0670b4293243cb45))
|
1272
|
+
- **server:** send status with images ([da92d7c](https://github.com/wKich/creevey/commit/da92d7c86e05558dc17cabc59c555a7062677460))
|
1273
|
+
- **server:** serve static images from report dir ([f0817fd](https://github.com/wKich/creevey/commit/f0817fd8cd20822227438545497624df02797a93))
|
1274
|
+
- **TestResultView:** render result images ([991148e](https://github.com/wKich/creevey/commit/991148e0cbf060fbd3bb0ec60fbf02dd7bc3e2a9))
|
1275
|
+
- initial version ([8e42cec](https://github.com/wKich/creevey/commit/8e42cec432747648018c1c06447b3530c971a7e4))
|