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