diff --git a/.changeset/flat-waves-talk.md b/.changeset/flat-waves-talk.md deleted file mode 100644 index b36d66bb..00000000 --- a/.changeset/flat-waves-talk.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -'@vanilla-extract/jest-transform': patch -'@vanilla-extract/integration': patch ---- - -Extend `esbuild` dependency range to include `0.24.x` diff --git a/.changeset/many-flowers-switch.md b/.changeset/many-flowers-switch.md deleted file mode 100644 index b1df5598..00000000 --- a/.changeset/many-flowers-switch.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@vanilla-extract/vite-plugin': patch ---- - -Consume compiler API from new `@vanilla-extract/compiler` package instead of `@vanilla-extract/integration` diff --git a/.changeset/new-cameras-stare.md b/.changeset/new-cameras-stare.md deleted file mode 100644 index 62e24bdc..00000000 --- a/.changeset/new-cameras-stare.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@vanilla-extract/compiler': minor ---- - -Initial release diff --git a/.changeset/seven-drinks-drum.md b/.changeset/seven-drinks-drum.md deleted file mode 100644 index 6d765fbb..00000000 --- a/.changeset/seven-drinks-drum.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@vanilla-extract/integration': minor ---- - -Export `serializeVanillaModule` function diff --git a/.changeset/soft-kiwis-pull.md b/.changeset/soft-kiwis-pull.md deleted file mode 100644 index 84013342..00000000 --- a/.changeset/soft-kiwis-pull.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@vanilla-extract/css': patch ---- - -Fixes a bug where `@container` queries inside `selectors` were not being generated diff --git a/.changeset/tame-hornets-turn.md b/.changeset/tame-hornets-turn.md deleted file mode 100644 index 6be86554..00000000 --- a/.changeset/tame-hornets-turn.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -'@vanilla-extract/integration': patch ---- - -Fixes an error that sometimes occurred when loading a page via the astro dev server diff --git a/.changeset/tiny-needles-dance.md b/.changeset/tiny-needles-dance.md deleted file mode 100644 index 1ff26259..00000000 --- a/.changeset/tiny-needles-dance.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@vanilla-extract/integration': major ---- - -Remove `createCompiler` function and `Compiler` and `CreateCompilerOptions` types - -BREAKING CHANGE: These APIs have been moved to the new `@vanilla-extract/compiler` package diff --git a/packages/compiler/CHANGELOG.md b/packages/compiler/CHANGELOG.md new file mode 100644 index 00000000..c703748b --- /dev/null +++ b/packages/compiler/CHANGELOG.md @@ -0,0 +1,13 @@ +# @vanilla-extract/compiler + +## 0.1.0 + +### Minor Changes + +- [#1536](https://github.com/vanilla-extract-css/vanilla-extract/pull/1536) [`a8248be`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a8248befac51aa51d771b9b22a46209b1fd1e3b3) Thanks [@askoufis](https://github.com/askoufis)! - Initial release + +### Patch Changes + +- Updated dependencies [[`5f66abb`](https://github.com/vanilla-extract-css/vanilla-extract/commit/5f66abbd607e76d491bbb7b9bfe9c64c882a53e8), [`a8248be`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a8248befac51aa51d771b9b22a46209b1fd1e3b3), [`c432ff3`](https://github.com/vanilla-extract-css/vanilla-extract/commit/c432ff33a8aead2c94fa6a4fcc9fcb1d7990427d), [`ec0b024`](https://github.com/vanilla-extract-css/vanilla-extract/commit/ec0b024fd19c133c233445f9e860626d104f9d97), [`a8248be`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a8248befac51aa51d771b9b22a46209b1fd1e3b3)]: + - @vanilla-extract/integration@8.0.0 + - @vanilla-extract/css@1.17.1 diff --git a/packages/compiler/package.json b/packages/compiler/package.json index 905d601d..d2f69a92 100644 --- a/packages/compiler/package.json +++ b/packages/compiler/package.json @@ -1,6 +1,6 @@ { "name": "@vanilla-extract/compiler", - "version": "0.0.0", + "version": "0.1.0", "description": "Zero-runtime Stylesheets-in-TypeScript", "main": "dist/vanilla-extract-compiler.cjs.js", "module": "dist/vanilla-extract-compiler.esm.js", diff --git a/packages/css/CHANGELOG.md b/packages/css/CHANGELOG.md index 66a02240..aaad10e1 100644 --- a/packages/css/CHANGELOG.md +++ b/packages/css/CHANGELOG.md @@ -1,5 +1,11 @@ # @vanilla-extract/css +## 1.17.1 + +### Patch Changes + +- [#1533](https://github.com/vanilla-extract-css/vanilla-extract/pull/1533) [`c432ff3`](https://github.com/vanilla-extract-css/vanilla-extract/commit/c432ff33a8aead2c94fa6a4fcc9fcb1d7990427d) Thanks [@askoufis](https://github.com/askoufis)! - Fixes a bug where `@container` queries inside `selectors` were not being generated + ## 1.17.0 ### Minor Changes diff --git a/packages/css/package.json b/packages/css/package.json index e1266b1d..a891f809 100644 --- a/packages/css/package.json +++ b/packages/css/package.json @@ -1,6 +1,6 @@ { "name": "@vanilla-extract/css", - "version": "1.17.0", + "version": "1.17.1", "description": "Zero-runtime Stylesheets-in-TypeScript", "sideEffects": true, "main": "dist/vanilla-extract-css.cjs.js", diff --git a/packages/esbuild-plugin/CHANGELOG.md b/packages/esbuild-plugin/CHANGELOG.md index c170224e..caa65c30 100644 --- a/packages/esbuild-plugin/CHANGELOG.md +++ b/packages/esbuild-plugin/CHANGELOG.md @@ -1,5 +1,12 @@ # @vanilla-extract/esbuild-plugin +## 2.3.14 + +### Patch Changes + +- Updated dependencies [[`5f66abb`](https://github.com/vanilla-extract-css/vanilla-extract/commit/5f66abbd607e76d491bbb7b9bfe9c64c882a53e8), [`a8248be`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a8248befac51aa51d771b9b22a46209b1fd1e3b3), [`ec0b024`](https://github.com/vanilla-extract-css/vanilla-extract/commit/ec0b024fd19c133c233445f9e860626d104f9d97), [`a8248be`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a8248befac51aa51d771b9b22a46209b1fd1e3b3)]: + - @vanilla-extract/integration@8.0.0 + ## 2.3.13 ### Patch Changes diff --git a/packages/esbuild-plugin/package.json b/packages/esbuild-plugin/package.json index b0c166ab..41c85267 100644 --- a/packages/esbuild-plugin/package.json +++ b/packages/esbuild-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@vanilla-extract/esbuild-plugin", - "version": "2.3.13", + "version": "2.3.14", "description": "Zero-runtime Stylesheets-in-TypeScript", "main": "dist/vanilla-extract-esbuild-plugin.cjs.js", "module": "dist/vanilla-extract-esbuild-plugin.esm.js", diff --git a/packages/integration/CHANGELOG.md b/packages/integration/CHANGELOG.md index 71985aac..69f14462 100644 --- a/packages/integration/CHANGELOG.md +++ b/packages/integration/CHANGELOG.md @@ -1,5 +1,26 @@ # @vanilla-extract/integration +## 8.0.0 + +### Major Changes + +- [#1536](https://github.com/vanilla-extract-css/vanilla-extract/pull/1536) [`a8248be`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a8248befac51aa51d771b9b22a46209b1fd1e3b3) Thanks [@askoufis](https://github.com/askoufis)! - Remove `createCompiler` function and `Compiler` and `CreateCompilerOptions` types + + BREAKING CHANGE: These APIs have been moved to the new `@vanilla-extract/compiler` package + +### Minor Changes + +- [#1536](https://github.com/vanilla-extract-css/vanilla-extract/pull/1536) [`a8248be`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a8248befac51aa51d771b9b22a46209b1fd1e3b3) Thanks [@askoufis](https://github.com/askoufis)! - Export `serializeVanillaModule` function + +### Patch Changes + +- [#1530](https://github.com/vanilla-extract-css/vanilla-extract/pull/1530) [`5f66abb`](https://github.com/vanilla-extract-css/vanilla-extract/commit/5f66abbd607e76d491bbb7b9bfe9c64c882a53e8) Thanks [@askoufis](https://github.com/askoufis)! - Extend `esbuild` dependency range to include `0.24.x` + +- [#1535](https://github.com/vanilla-extract-css/vanilla-extract/pull/1535) [`ec0b024`](https://github.com/vanilla-extract-css/vanilla-extract/commit/ec0b024fd19c133c233445f9e860626d104f9d97) Thanks [@askoufis](https://github.com/askoufis)! - Fixes an error that sometimes occurred when loading a page via the astro dev server + +- Updated dependencies [[`c432ff3`](https://github.com/vanilla-extract-css/vanilla-extract/commit/c432ff33a8aead2c94fa6a4fcc9fcb1d7990427d)]: + - @vanilla-extract/css@1.17.1 + ## 7.1.12 ### Patch Changes diff --git a/packages/integration/package.json b/packages/integration/package.json index f0322ed6..c5fd34ac 100644 --- a/packages/integration/package.json +++ b/packages/integration/package.json @@ -1,6 +1,6 @@ { "name": "@vanilla-extract/integration", - "version": "7.1.12", + "version": "8.0.0", "description": "Zero-runtime Stylesheets-in-TypeScript", "main": "dist/vanilla-extract-integration.cjs.js", "types": "dist/vanilla-extract-integration.cjs.d.ts", diff --git a/packages/jest-transform/CHANGELOG.md b/packages/jest-transform/CHANGELOG.md index fc7b32be..283466a3 100644 --- a/packages/jest-transform/CHANGELOG.md +++ b/packages/jest-transform/CHANGELOG.md @@ -1,5 +1,14 @@ # @vanilla-extract/jest-transform +## 1.1.13 + +### Patch Changes + +- [#1530](https://github.com/vanilla-extract-css/vanilla-extract/pull/1530) [`5f66abb`](https://github.com/vanilla-extract-css/vanilla-extract/commit/5f66abbd607e76d491bbb7b9bfe9c64c882a53e8) Thanks [@askoufis](https://github.com/askoufis)! - Extend `esbuild` dependency range to include `0.24.x` + +- Updated dependencies [[`5f66abb`](https://github.com/vanilla-extract-css/vanilla-extract/commit/5f66abbd607e76d491bbb7b9bfe9c64c882a53e8), [`a8248be`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a8248befac51aa51d771b9b22a46209b1fd1e3b3), [`ec0b024`](https://github.com/vanilla-extract-css/vanilla-extract/commit/ec0b024fd19c133c233445f9e860626d104f9d97), [`a8248be`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a8248befac51aa51d771b9b22a46209b1fd1e3b3)]: + - @vanilla-extract/integration@8.0.0 + ## 1.1.12 ### Patch Changes diff --git a/packages/jest-transform/package.json b/packages/jest-transform/package.json index 5b539515..e9990708 100644 --- a/packages/jest-transform/package.json +++ b/packages/jest-transform/package.json @@ -1,6 +1,6 @@ { "name": "@vanilla-extract/jest-transform", - "version": "1.1.12", + "version": "1.1.13", "description": "Jest transformer for vanilla-extract", "main": "dist/vanilla-extract-jest-transform.cjs.js", "module": "dist/vanilla-extract-jest-transform.esm.js", diff --git a/packages/next-plugin/CHANGELOG.md b/packages/next-plugin/CHANGELOG.md index ed668c6d..aed4d7ae 100644 --- a/packages/next-plugin/CHANGELOG.md +++ b/packages/next-plugin/CHANGELOG.md @@ -1,5 +1,12 @@ # @vanilla-extract/next-plugin +## 2.4.9 + +### Patch Changes + +- Updated dependencies []: + - @vanilla-extract/webpack-plugin@2.3.17 + ## 2.4.8 ### Patch Changes diff --git a/packages/next-plugin/package.json b/packages/next-plugin/package.json index 9a182f95..47b93fce 100644 --- a/packages/next-plugin/package.json +++ b/packages/next-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@vanilla-extract/next-plugin", - "version": "2.4.8", + "version": "2.4.9", "description": "Zero-runtime Stylesheets-in-TypeScript", "main": "dist/vanilla-extract-next-plugin.cjs.js", "module": "dist/vanilla-extract-next-plugin.esm.js", diff --git a/packages/parcel-transformer/CHANGELOG.md b/packages/parcel-transformer/CHANGELOG.md index d522b606..755a2a7e 100644 --- a/packages/parcel-transformer/CHANGELOG.md +++ b/packages/parcel-transformer/CHANGELOG.md @@ -1,5 +1,12 @@ # @vanilla-extract/parcel-transformer +## 1.0.13 + +### Patch Changes + +- Updated dependencies [[`5f66abb`](https://github.com/vanilla-extract-css/vanilla-extract/commit/5f66abbd607e76d491bbb7b9bfe9c64c882a53e8), [`a8248be`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a8248befac51aa51d771b9b22a46209b1fd1e3b3), [`ec0b024`](https://github.com/vanilla-extract-css/vanilla-extract/commit/ec0b024fd19c133c233445f9e860626d104f9d97), [`a8248be`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a8248befac51aa51d771b9b22a46209b1fd1e3b3)]: + - @vanilla-extract/integration@8.0.0 + ## 1.0.12 ### Patch Changes diff --git a/packages/parcel-transformer/package.json b/packages/parcel-transformer/package.json index cc947728..8b00d65c 100644 --- a/packages/parcel-transformer/package.json +++ b/packages/parcel-transformer/package.json @@ -1,6 +1,6 @@ { "name": "@vanilla-extract/parcel-transformer", - "version": "1.0.12", + "version": "1.0.13", "description": "Zero-runtime Stylesheets-in-TypeScript", "main": "dist/vanilla-extract-parcel-transformer.cjs.js", "module": "dist/vanilla-extract-parcel-transformer.esm.js", diff --git a/packages/rollup-plugin/CHANGELOG.md b/packages/rollup-plugin/CHANGELOG.md index df622e94..76339b00 100644 --- a/packages/rollup-plugin/CHANGELOG.md +++ b/packages/rollup-plugin/CHANGELOG.md @@ -1,5 +1,12 @@ # @vanilla-extract/rollup-plugin +## 1.3.13 + +### Patch Changes + +- Updated dependencies [[`5f66abb`](https://github.com/vanilla-extract-css/vanilla-extract/commit/5f66abbd607e76d491bbb7b9bfe9c64c882a53e8), [`a8248be`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a8248befac51aa51d771b9b22a46209b1fd1e3b3), [`ec0b024`](https://github.com/vanilla-extract-css/vanilla-extract/commit/ec0b024fd19c133c233445f9e860626d104f9d97), [`a8248be`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a8248befac51aa51d771b9b22a46209b1fd1e3b3)]: + - @vanilla-extract/integration@8.0.0 + ## 1.3.12 ### Patch Changes diff --git a/packages/rollup-plugin/package.json b/packages/rollup-plugin/package.json index 25481a72..64a18829 100644 --- a/packages/rollup-plugin/package.json +++ b/packages/rollup-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@vanilla-extract/rollup-plugin", - "version": "1.3.12", + "version": "1.3.13", "description": "Zero-runtime Stylesheets-in-TypeScript", "main": "dist/vanilla-extract-rollup-plugin.cjs.js", "module": "dist/vanilla-extract-rollup-plugin.esm.js", diff --git a/packages/vite-plugin/CHANGELOG.md b/packages/vite-plugin/CHANGELOG.md index df922982..ef3fa0ec 100644 --- a/packages/vite-plugin/CHANGELOG.md +++ b/packages/vite-plugin/CHANGELOG.md @@ -1,5 +1,15 @@ # @vanilla-extract/vite-plugin +## 4.0.20 + +### Patch Changes + +- [#1536](https://github.com/vanilla-extract-css/vanilla-extract/pull/1536) [`a8248be`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a8248befac51aa51d771b9b22a46209b1fd1e3b3) Thanks [@askoufis](https://github.com/askoufis)! - Consume compiler API from new `@vanilla-extract/compiler` package instead of `@vanilla-extract/integration` + +- Updated dependencies [[`5f66abb`](https://github.com/vanilla-extract-css/vanilla-extract/commit/5f66abbd607e76d491bbb7b9bfe9c64c882a53e8), [`a8248be`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a8248befac51aa51d771b9b22a46209b1fd1e3b3), [`a8248be`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a8248befac51aa51d771b9b22a46209b1fd1e3b3), [`ec0b024`](https://github.com/vanilla-extract-css/vanilla-extract/commit/ec0b024fd19c133c233445f9e860626d104f9d97), [`a8248be`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a8248befac51aa51d771b9b22a46209b1fd1e3b3)]: + - @vanilla-extract/integration@8.0.0 + - @vanilla-extract/compiler@0.1.0 + ## 4.0.19 ### Patch Changes diff --git a/packages/vite-plugin/package.json b/packages/vite-plugin/package.json index 20a4dfa6..d58bf92c 100644 --- a/packages/vite-plugin/package.json +++ b/packages/vite-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@vanilla-extract/vite-plugin", - "version": "4.0.19", + "version": "4.0.20", "description": "Zero-runtime Stylesheets-in-TypeScript", "main": "dist/vanilla-extract-vite-plugin.cjs.js", "module": "dist/vanilla-extract-vite-plugin.esm.js", diff --git a/packages/webpack-plugin/CHANGELOG.md b/packages/webpack-plugin/CHANGELOG.md index dafce448..8501f1b0 100644 --- a/packages/webpack-plugin/CHANGELOG.md +++ b/packages/webpack-plugin/CHANGELOG.md @@ -1,5 +1,12 @@ # @vanilla-extract/webpack-plugin +## 2.3.17 + +### Patch Changes + +- Updated dependencies [[`5f66abb`](https://github.com/vanilla-extract-css/vanilla-extract/commit/5f66abbd607e76d491bbb7b9bfe9c64c882a53e8), [`a8248be`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a8248befac51aa51d771b9b22a46209b1fd1e3b3), [`ec0b024`](https://github.com/vanilla-extract-css/vanilla-extract/commit/ec0b024fd19c133c233445f9e860626d104f9d97), [`a8248be`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a8248befac51aa51d771b9b22a46209b1fd1e3b3)]: + - @vanilla-extract/integration@8.0.0 + ## 2.3.16 ### Patch Changes diff --git a/packages/webpack-plugin/package.json b/packages/webpack-plugin/package.json index 1fddb0cc..3d3b6c46 100644 --- a/packages/webpack-plugin/package.json +++ b/packages/webpack-plugin/package.json @@ -1,6 +1,6 @@ { "name": "@vanilla-extract/webpack-plugin", - "version": "2.3.16", + "version": "2.3.17", "description": "Zero-runtime Stylesheets-in-TypeScript", "main": "dist/vanilla-extract-webpack-plugin.cjs.js", "module": "dist/vanilla-extract-webpack-plugin.esm.js",