Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
8ad69a40de | ||
|
|
0b8c883861 | ||
|
|
7aca53e7aa |
@@ -1,3 +1,47 @@
|
|||||||
|
# v17.1.0 (Wed May 27 2026)
|
||||||
|
|
||||||
|
#### 🚀 Enhancement
|
||||||
|
|
||||||
|
- Add additional bail details to `changedPackageFiles` [#1344](https://github.com/chromaui/chromatic-cli/pull/1344) ([@codykaup](https://github.com/codykaup))
|
||||||
|
|
||||||
|
#### Authors: 1
|
||||||
|
|
||||||
|
- Cody Kaup ([@codykaup](https://github.com/codykaup))
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# v17.0.1 (Tue May 26 2026)
|
||||||
|
|
||||||
|
#### 🐛 Bug Fix
|
||||||
|
|
||||||
|
- Delay check of `build-storybook` script validation [#1327](https://github.com/chromaui/chromatic-cli/pull/1327) ([@jmhobbs](https://github.com/jmhobbs))
|
||||||
|
- Force `es-toolkit` version to avoid bundle error in Yarn classic smoke test [#1347](https://github.com/chromaui/chromatic-cli/pull/1347) ([@codykaup](https://github.com/codykaup))
|
||||||
|
- Fix TurboSnap mis-categorizing static assets as Storybook config changes [#1340](https://github.com/chromaui/chromatic-cli/pull/1340) ([@codykaup](https://github.com/codykaup))
|
||||||
|
|
||||||
|
#### Authors: 2
|
||||||
|
|
||||||
|
- Cody Kaup ([@codykaup](https://github.com/codykaup))
|
||||||
|
- John Hobbs ([@jmhobbs](https://github.com/jmhobbs))
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
# v17.0.0 (Tue May 19 2026)
|
||||||
|
|
||||||
|
#### 💥 Breaking Change
|
||||||
|
|
||||||
|
- Drop support for Node 20 and define supported Node engines [#1334](https://github.com/chromaui/chromatic-cli/pull/1334) ([@codykaup](https://github.com/codykaup))
|
||||||
|
|
||||||
|
#### 🐛 Bug Fix
|
||||||
|
|
||||||
|
- Promotes `prepare`, `build`, and `verify` tasks to modules [#1331](https://github.com/chromaui/chromatic-cli/pull/1331) ([@justin-thurman](https://github.com/justin-thurman))
|
||||||
|
|
||||||
|
#### Authors: 2
|
||||||
|
|
||||||
|
- Cody Kaup ([@codykaup](https://github.com/codykaup))
|
||||||
|
- Justin Thurman ([@justin-thurman](https://github.com/justin-thurman))
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
# v16.10.1 (Fri May 15 2026)
|
# v16.10.1 (Fri May 15 2026)
|
||||||
|
|
||||||
#### 🐛 Bug Fix
|
#### 🐛 Bug Fix
|
||||||
|
|||||||
+194
-181
File diff suppressed because one or more lines are too long
+5
-1
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "chromatic",
|
"name": "chromatic",
|
||||||
"version": "16.10.1",
|
"version": "17.1.0",
|
||||||
"description": "Automate visual testing across browsers. Gather UI feedback. Versioned documentation.",
|
"description": "Automate visual testing across browsers. Gather UI feedback. Versioned documentation.",
|
||||||
"keywords": [
|
"keywords": [
|
||||||
"storybook-addon",
|
"storybook-addon",
|
||||||
@@ -70,6 +70,7 @@
|
|||||||
],
|
],
|
||||||
"resolutions": {
|
"resolutions": {
|
||||||
"any-observable": "^0.5.1",
|
"any-observable": "^0.5.1",
|
||||||
|
"es-toolkit": "1.46.0",
|
||||||
"lodash": "4.17.21",
|
"lodash": "4.17.21",
|
||||||
"@types/minimatch": "5.1.2"
|
"@types/minimatch": "5.1.2"
|
||||||
},
|
},
|
||||||
@@ -221,6 +222,9 @@
|
|||||||
"access": "public",
|
"access": "public",
|
||||||
"registry": "https://registry.npmjs.org/"
|
"registry": "https://registry.npmjs.org/"
|
||||||
},
|
},
|
||||||
|
"engines": {
|
||||||
|
"node": ">=22.0.0"
|
||||||
|
},
|
||||||
"docs": "https://www.chromatic.com/docs/cli",
|
"docs": "https://www.chromatic.com/docs/cli",
|
||||||
"storybook": {
|
"storybook": {
|
||||||
"icon": "https://user-images.githubusercontent.com/263385/101995175-2e087800-3c96-11eb-9a33-9860a1c3ce62.gif",
|
"icon": "https://user-images.githubusercontent.com/263385/101995175-2e087800-3c96-11eb-9a33-9860a1c3ce62.gif",
|
||||||
|
|||||||
Reference in New Issue
Block a user