Compare commits

..

5 Commits

Author SHA1 Message Date
Chromatic eea1606238 v15.3.1 2026-03-23 15:24:49 +00:00
Chromatic 0794e6939f v15.3.0 2026-03-16 16:15:56 +00:00
Chromatic 5ec258af08 v15.2.0 2026-02-23 20:49:02 +00:00
Chromatic 93712e3766 v15.1.1 2026-02-17 19:22:32 +00:00
Chromatic a8ce9c58f5 v15.1.0 2026-02-10 21:15:18 +00:00
4 changed files with 673 additions and 606 deletions
+62
View File
@@ -1,3 +1,65 @@
# v15.3.1 (Mon Mar 23 2026)
#### 🐛 Bug Fix
- Properly timeout process tree in shell commands [#1254](https://github.com/chromaui/chromatic-cli/pull/1254) ([@codykaup](https://github.com/codykaup))
#### Authors: 1
- Cody Kaup ([@codykaup](https://github.com/codykaup))
---
# v15.3.0 (Mon Mar 16 2026)
#### 🚀 Enhancement
- Integrate manifest generation script [#1244](https://github.com/chromaui/chromatic-cli/pull/1244) ([@codykaup](https://github.com/codykaup))
#### Authors: 1
- Cody Kaup ([@codykaup](https://github.com/codykaup))
---
# v15.2.0 (Mon Feb 23 2026)
#### 🚀 Enhancement
- :sparkle: Add input parameter chromaticSha. [#1241](https://github.com/chromaui/chromatic-cli/pull/1241) ([@jwir3](https://github.com/jwir3))
#### Authors: 1
- Scott Johnson ([@jwir3](https://github.com/jwir3))
---
# v15.1.1 (Tue Feb 17 2026)
#### 🐛 Bug Fix
- Add concurrency limits to TurboSnap checks to fix OOM errors with large monorepos [#1242](https://github.com/chromaui/chromatic-cli/pull/1242) ([@Brookke](https://github.com/Brookke) [@codykaup](https://github.com/codykaup))
#### Authors: 2
- Brooke Hatton ([@Brookke](https://github.com/Brookke))
- Cody Kaup ([@codykaup](https://github.com/codykaup))
---
# v15.1.0 (Tue Feb 10 2026)
#### 🚀 Enhancement
- Add support for iOS React Native projects [#1229](https://github.com/chromaui/chromatic-cli/pull/1229) ([@codykaup](https://github.com/codykaup))
- Only upload `manifest.json`/`storybook.apk`/`storybook.app` [#1240](https://github.com/chromaui/chromatic-cli/pull/1240) ([@codykaup](https://github.com/codykaup))
#### Authors: 1
- Cody Kaup ([@codykaup](https://github.com/codykaup))
---
# v15.0.0 (Mon Feb 02 2026)
#### 💥 Breaking Change
+3
View File
@@ -18,6 +18,9 @@ inputs:
buildCommand:
description: 'The command that builds your Storybook (when your build command does not exist in "scripts" of your package.json)'
required: false
chromaticSha:
description: 'The git SHA of the commit that should be tested in Chromatic. Defaults to the SHA of the current branch tip on which the action is running. Use with caution, as it may yield unexpected results.'
required: false
configFile:
description: 'Path from where to load the Chromatic config JSON file.'
cypress:
+606 -605
View File
File diff suppressed because one or more lines are too long
+2 -1
View File
@@ -1,6 +1,6 @@
{
"name": "chromatic",
"version": "15.0.0",
"version": "15.3.1",
"description": "Automate visual testing across browsers. Gather UI feedback. Versioned documentation.",
"keywords": [
"storybook-addon",
@@ -172,6 +172,7 @@
"string-argv": "^0.3.1",
"strip-ansi": "^7.1.0",
"tmp-promise": "3.0.2",
"tree-kill": "^1.2.2",
"ts-dedent": "^1.0.0",
"ts-loader": "^9.2.5",
"tsup": "^7.2.0",