Compare commits

...

2 Commits

Author SHA1 Message Date
Chromatic 5c6ec06f45 v16.3.0 2026-04-14 17:22:46 +00:00
Chromatic 688adae582 v16.2.0 2026-04-09 17:05:52 +00:00
4 changed files with 663 additions and 626 deletions
+33
View File
@@ -1,3 +1,36 @@
# v16.3.0 (Tue Apr 14 2026)
#### 🚀 Enhancement
- feat: add `--vitest` flag for `@chromatic-com/vitest` integration [#1252](https://github.com/chromaui/chromatic-cli/pull/1252) ([@AriPerkkio](https://github.com/AriPerkkio))
- Show more information on invalid React Native builds [#1271](https://github.com/chromaui/chromatic-cli/pull/1271) ([@codykaup](https://github.com/codykaup))
#### Authors: 2
- Ari Perkkiö ([@AriPerkkio](https://github.com/AriPerkkio))
- Cody Kaup ([@codykaup](https://github.com/codykaup))
---
# v16.2.0 (Thu Apr 09 2026)
#### 🚀 Enhancement
- Improve merge queue support [#1256](https://github.com/chromaui/chromatic-cli/pull/1256) ([@codykaup](https://github.com/codykaup))
#### 🐛 Bug Fix
- test: improve chromatic-e2e related tests [#1273](https://github.com/chromaui/chromatic-cli/pull/1273) ([@AriPerkkio](https://github.com/AriPerkkio))
- test: update Vitest to v4 [#1266](https://github.com/chromaui/chromatic-cli/pull/1266) ([@AriPerkkio](https://github.com/AriPerkkio))
- Throw error on React Native projects using TurboSnap [#1267](https://github.com/chromaui/chromatic-cli/pull/1267) ([@codykaup](https://github.com/codykaup))
#### Authors: 2
- Ari Perkkiö ([@AriPerkkio](https://github.com/AriPerkkio))
- Cody Kaup ([@codykaup](https://github.com/codykaup))
---
# v16.1.0 (Thu Apr 02 2026)
#### 🚀 Enhancement
+3
View File
@@ -116,6 +116,9 @@ inputs:
uploadMetadata:
description: 'Upload Chromatic metadata files as part of the published Storybook'
required: false
vitest:
description: 'Run build against `@chromatic-com/vitest` test archives'
required: false
workingDir:
description: 'Working directory for the package.json file'
required: false
+616 -620
View File
File diff suppressed because one or more lines are too long
+11 -6
View File
@@ -1,6 +1,6 @@
{
"name": "chromatic",
"version": "16.1.0",
"version": "16.3.0",
"description": "Automate visual testing across browsers. Gather UI feedback. Versioned documentation.",
"keywords": [
"storybook-addon",
@@ -69,7 +69,8 @@
"isChromatic.d.ts"
],
"resolutions": {
"any-observable": "^0.5.1"
"any-observable": "^0.5.1",
"lodash": "4.17.21"
},
"devDependencies": {
"@actions/core": "^1.10.0",
@@ -103,7 +104,7 @@
"@types/ws": "^8",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@vitest/coverage-v8": "^2.0.5",
"@vitest/coverage-v8": "^4.1.2",
"ansi-html": "0.0.9",
"any-observable": "^0.5.1",
"archiver": "^5.3.0",
@@ -181,9 +182,9 @@
"typescript-eslint": "^7.11.0",
"util-deprecate": "^1.0.2",
"uuid": "^8.3.2",
"vite": "^4.4.9",
"vite": "^8.0.3",
"vite-tsconfig-paths": "^5.1.4",
"vitest": "^2.0.5",
"vitest": "^4.1.2",
"why-is-node-running": "^2.1.2",
"ws": "^8.18.2",
"xxhash-wasm": "^1.0.2",
@@ -193,7 +194,8 @@
},
"peerDependencies": {
"@chromatic-com/cypress": "^0.*.* || ^1.0.0",
"@chromatic-com/playwright": "^0.*.* || ^1.0.0"
"@chromatic-com/playwright": "^0.*.* || ^1.0.0",
"@chromatic-com/vitest": "^0.*.* || ^1.0.0"
},
"peerDependenciesMeta": {
"@chromatic-com/cypress": {
@@ -201,6 +203,9 @@
},
"@chromatic-com/playwright": {
"optional": true
},
"@chromatic-com/vitest": {
"optional": true
}
},
"publishConfig": {