Skip to content

Commit 79b3519

Browse files
Version Packages (#1695)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 90eb696 commit 79b3519

11 files changed

Lines changed: 42 additions & 40 deletions

File tree

.changeset/dry-rabbits-grow.md

Lines changed: 0 additions & 15 deletions
This file was deleted.

.changeset/frank-turtles-open.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/mighty-streets-thank.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/silly-lights-bet.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

.changeset/wacky-horses-poke.md

Lines changed: 0 additions & 5 deletions
This file was deleted.

packages/compiler/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,19 @@
11
# @vanilla-extract/compiler
22

3+
## 0.5.1
4+
5+
### Patch Changes
6+
7+
- [#1696](https://github.com/vanilla-extract-css/vanilla-extract/pull/1696) [`680097c`](https://github.com/vanilla-extract-css/vanilla-extract/commit/680097c49f79a562fdd88aba85ce0f655ed8fb5a) Thanks [@askoufis](https://github.com/askoufis)! - Set `appType: 'custom'` on compiler's Vite server to disable unused HTML middlewares
8+
9+
- [#1696](https://github.com/vanilla-extract-css/vanilla-extract/pull/1696) [`680097c`](https://github.com/vanilla-extract-css/vanilla-extract/commit/680097c49f79a562fdd88aba85ce0f655ed8fb5a) Thanks [@askoufis](https://github.com/askoufis)! - Propagate `server.middlewareMode` from parent server's Vite config
10+
11+
- [#1694](https://github.com/vanilla-extract-css/vanilla-extract/pull/1694) [`d1257c7`](https://github.com/vanilla-extract-css/vanilla-extract/commit/d1257c7e934865bd381941f601af5305cbcc2b90) Thanks [@askoufis](https://github.com/askoufis)! - Add `^5.0.0` and `^6.0.0` to `vite-node` dependency range
12+
13+
- Updated dependencies [[`9b1bfd0`](https://github.com/vanilla-extract-css/vanilla-extract/commit/9b1bfd068a61a042ff0276a901edf4e44f6c8cea), [`c34e69a`](https://github.com/vanilla-extract-css/vanilla-extract/commit/c34e69a918b55e02ce8106a193b10dcfce933437)]:
14+
- @vanilla-extract/css@1.19.1
15+
- @vanilla-extract/integration@8.0.9
16+
317
## 0.5.0
418

519
### Minor Changes

packages/compiler/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vanilla-extract/compiler",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"description": "Zero-runtime Stylesheets-in-TypeScript",
55
"main": "dist/vanilla-extract-compiler.cjs.js",
66
"module": "dist/vanilla-extract-compiler.esm.js",

packages/css/CHANGELOG.md

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# @vanilla-extract/css
22

3+
## 1.19.1
4+
5+
### Patch Changes
6+
7+
- [#1558](https://github.com/vanilla-extract-css/vanilla-extract/pull/1558) [`9b1bfd0`](https://github.com/vanilla-extract-css/vanilla-extract/commit/9b1bfd068a61a042ff0276a901edf4e44f6c8cea) Thanks [@andjsrk](https://github.com/andjsrk)! - `style`: Fixed a bug where nested arrays of classnames could cause missing or malformed CSS during [style composition](https://vanilla-extract.style/documentation/style-composition/) in certain situations.
8+
9+
For example, the following style composition would not generate CSS for the `backgroundColor: 'orange'` style, and would also generate malformed CSS:
10+
11+
```ts
12+
const styleWithNestedComposition = style([
13+
[style1, style2],
14+
{ backgroundColor: 'orange' },
15+
[style3]
16+
]);
17+
```
18+
319
## 1.19.0
420

521
### Minor Changes
@@ -849,7 +865,6 @@
849865
Previously all conditional CSS (@media and @supports) in a `.css.ts` file would merge together. This meant each unique query (e.g. `@media screen and (min-width: 700px)`) would only be rendered once. This output is ideal for file size but can lead to the conditions being rendered in the wrong order. The new strategy will still merge conditions together but only if it is considered safe to do so.
850866

851867
* [#152](https://github.com/vanilla-extract-css/vanilla-extract/pull/152) [`ae532f5`](https://github.com/vanilla-extract-css/vanilla-extract/commit/ae532f5a112c0e89a510fea224b43c6706ce6ac2) Thanks [@Saartje87](https://github.com/Saartje87)! - Added support for the following simple pseudo selectors
852-
853868
- `::-webkit-resizer`
854869
- `::-webkit-scrollbar-button`
855870
- `::-webkit-scrollbar-corner`
@@ -936,7 +951,6 @@
936951
### Patch Changes
937952

938953
- [#47](https://github.com/vanilla-extract-css/vanilla-extract/pull/47) [`a18bc03`](https://github.com/vanilla-extract-css/vanilla-extract/commit/a18bc034885a8b1cc1396b3890111067d4858626) Thanks [@mattcompiles](https://github.com/mattcompiles)! - Improve dev prefixes on generated class names
939-
940954
- Add file name to class names even if no debug id is present
941955
- If file is the index file use directory name instead
942956

packages/css/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@vanilla-extract/css",
3-
"version": "1.19.0",
3+
"version": "1.19.1",
44
"description": "Zero-runtime Stylesheets-in-TypeScript",
55
"sideEffects": true,
66
"main": "dist/vanilla-extract-css.cjs.js",

packages/integration/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @vanilla-extract/integration
22

3+
## 8.0.9
4+
5+
### Patch Changes
6+
7+
- [#1585](https://github.com/vanilla-extract-css/vanilla-extract/pull/1585) [`c34e69a`](https://github.com/vanilla-extract-css/vanilla-extract/commit/c34e69a918b55e02ce8106a193b10dcfce933437) Thanks [@sashank-gogula-glean](https://github.com/sashank-gogula-glean)! - Fixed a race condition in `processVanillaFile` that could cause missing classnames during CSS serialization
8+
9+
- Updated dependencies [[`9b1bfd0`](https://github.com/vanilla-extract-css/vanilla-extract/commit/9b1bfd068a61a042ff0276a901edf4e44f6c8cea)]:
10+
- @vanilla-extract/css@1.19.1
11+
312
## 8.0.8
413

514
### Patch Changes

0 commit comments

Comments
 (0)