From b9d0a4dce9b2f6e02a58e37298f698122aa6f875 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 1 Aug 2026 14:42:06 +0000 Subject: [PATCH] Version Packages --- .changeset/tame-lions-jump.md | 7 ------- .changeset/tidy-pugs-repeat.md | 11 ----------- packages/atomic/CHANGELOG.md | 7 +++++++ packages/atomic/package.json | 2 +- packages/core/CHANGELOG.md | 2 ++ packages/core/package.json | 2 +- packages/interop/CHANGELOG.md | 2 ++ packages/interop/package.json | 2 +- packages/linaria/CHANGELOG.md | 8 ++++++++ packages/linaria/package.json | 2 +- packages/postcss-linaria/CHANGELOG.md | 16 ++++++++++++++++ packages/postcss-linaria/package.json | 2 +- packages/react/CHANGELOG.md | 6 ++++++ packages/react/package.json | 2 +- packages/server/CHANGELOG.md | 2 ++ packages/server/package.json | 2 +- .../CHANGELOG.md | 8 ++++++++ .../package.json | 2 +- packages/stylelint/CHANGELOG.md | 2 ++ packages/stylelint/package.json | 2 +- 20 files changed, 62 insertions(+), 27 deletions(-) delete mode 100644 .changeset/tame-lions-jump.md delete mode 100644 .changeset/tidy-pugs-repeat.md diff --git a/.changeset/tame-lions-jump.md b/.changeset/tame-lions-jump.md deleted file mode 100644 index b5066e37f..000000000 --- a/.changeset/tame-lions-jump.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -'@linaria/postcss-linaria': patch ---- - -Fix adjacent interpolations being mangled by `stylelint --fix` - -`substitutePlaceholders` split each whitespace-separated token on the placeholder marker and only read the first two parts, so a token holding more than one interpolation — an attribute selector like `&[${a}][${b}]`, or a value like `margin: ${a}${b}` — silently lost everything from the second interpolation onward, corrupting the output into invalid CSS (#1498). diff --git a/.changeset/tidy-pugs-repeat.md b/.changeset/tidy-pugs-repeat.md deleted file mode 100644 index bcafb39af..000000000 --- a/.changeset/tidy-pugs-repeat.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -'@linaria/postcss-linaria': patch ---- - -Fix interpolations and indentation being mangled by `stylelint --fix` - -An interpolation alone on its own line gets a comment placeholder. Inside a parenthesised value PostCSS keeps that comment only in `raws.value.raw`, and the re-indented value was read from `value`, so the placeholder was gone by the time the stringifier ran, and the interpolation with it (#1494). - -Multi-line at-rule params were corrupted rather than dropped: `super.atrule` re-reads params through `rawValue`, so substituting into `node.params` was discarded and `@media screen and ${query}` came out as `@media screen and .pcss-lin0`. An interpolation on the line after the at-rule name lands in the `afterName` raw and was emitted verbatim for the same reason. - -A newline inside `afterName` also never had its base indentation restored, so a wrapped at-rule prelude lost its leading whitespace on any fix, templates with no interpolations at all included. diff --git a/packages/atomic/CHANGELOG.md b/packages/atomic/CHANGELOG.md index e0af94bdf..0dc4ade2d 100644 --- a/packages/atomic/CHANGELOG.md +++ b/packages/atomic/CHANGELOG.md @@ -1,5 +1,12 @@ # Change Log +## 8.1.2 + +### Patch Changes + +- @linaria/core@8.1.2 +- @linaria/react@8.1.2 + ## 8.1.1 ### Patch Changes diff --git a/packages/atomic/package.json b/packages/atomic/package.json index 8f748b2a4..3557fc228 100644 --- a/packages/atomic/package.json +++ b/packages/atomic/package.json @@ -1,6 +1,6 @@ { "name": "@linaria/atomic", - "version": "8.1.1", + "version": "8.1.2", "description": "Blazing fast zero-runtime CSS in JS library", "keywords": [ "css", diff --git a/packages/core/CHANGELOG.md b/packages/core/CHANGELOG.md index 9272b7613..bc0c058d3 100644 --- a/packages/core/CHANGELOG.md +++ b/packages/core/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.1.2 + ## 8.1.1 ## 8.1.0 diff --git a/packages/core/package.json b/packages/core/package.json index bc1ccb3fe..e8c990c16 100644 --- a/packages/core/package.json +++ b/packages/core/package.json @@ -1,6 +1,6 @@ { "name": "@linaria/core", - "version": "8.1.1", + "version": "8.1.2", "description": "Blazing fast zero-runtime CSS in JS library", "keywords": [ "css", diff --git a/packages/interop/CHANGELOG.md b/packages/interop/CHANGELOG.md index 97b4e2538..63f26bc09 100644 --- a/packages/interop/CHANGELOG.md +++ b/packages/interop/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.1.2 + ## 8.1.1 ## 8.1.0 diff --git a/packages/interop/package.json b/packages/interop/package.json index 534d6d055..0ec69e4b6 100644 --- a/packages/interop/package.json +++ b/packages/interop/package.json @@ -1,6 +1,6 @@ { "name": "@linaria/babel-plugin-interop", - "version": "8.1.1", + "version": "8.1.2", "homepage": "https://github.com/callstack/linaria/tree/master/packages/interop#readme", "repository": "git@github.com:callstack/linaria.git", "license": "MIT", diff --git a/packages/linaria/CHANGELOG.md b/packages/linaria/CHANGELOG.md index dc50bdc66..ff2f787a8 100644 --- a/packages/linaria/CHANGELOG.md +++ b/packages/linaria/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 8.1.2 + +### Patch Changes + +- @linaria/core@8.1.2 +- @linaria/react@8.1.2 +- @linaria/server@8.1.2 + ## 8.1.1 ### Patch Changes diff --git a/packages/linaria/package.json b/packages/linaria/package.json index 900b21ed4..a73aeda5b 100644 --- a/packages/linaria/package.json +++ b/packages/linaria/package.json @@ -1,6 +1,6 @@ { "name": "linaria", - "version": "8.1.1", + "version": "8.1.2", "description": "Blazing fast zero-runtime CSS in JS library", "keywords": [ "babel", diff --git a/packages/postcss-linaria/CHANGELOG.md b/packages/postcss-linaria/CHANGELOG.md index 2da31a1b8..d3f7d4df3 100644 --- a/packages/postcss-linaria/CHANGELOG.md +++ b/packages/postcss-linaria/CHANGELOG.md @@ -1,5 +1,21 @@ # Change Log +## 8.1.2 + +### Patch Changes + +- f3871e64: Fix adjacent interpolations being mangled by `stylelint --fix` + + `substitutePlaceholders` split each whitespace-separated token on the placeholder marker and only read the first two parts, so a token holding more than one interpolation — an attribute selector like `&[${a}][${b}]`, or a value like `margin: ${a}${b}` — silently lost everything from the second interpolation onward, corrupting the output into invalid CSS (#1498). + +- d28a5a88: Fix interpolations and indentation being mangled by `stylelint --fix` + + An interpolation alone on its own line gets a comment placeholder. Inside a parenthesised value PostCSS keeps that comment only in `raws.value.raw`, and the re-indented value was read from `value`, so the placeholder was gone by the time the stringifier ran, and the interpolation with it (#1494). + + Multi-line at-rule params were corrupted rather than dropped: `super.atrule` re-reads params through `rawValue`, so substituting into `node.params` was discarded and `@media screen and ${query}` came out as `@media screen and .pcss-lin0`. An interpolation on the line after the at-rule name lands in the `afterName` raw and was emitted verbatim for the same reason. + + A newline inside `afterName` also never had its base indentation restored, so a wrapped at-rule prelude lost its leading whitespace on any fix, templates with no interpolations at all included. + ## 8.1.1 ## 8.1.0 diff --git a/packages/postcss-linaria/package.json b/packages/postcss-linaria/package.json index 4a858fb09..8254e4be3 100644 --- a/packages/postcss-linaria/package.json +++ b/packages/postcss-linaria/package.json @@ -1,6 +1,6 @@ { "name": "@linaria/postcss-linaria", - "version": "8.1.1", + "version": "8.1.2", "description": "Blazing fast zero-runtime CSS in JS library", "keywords": [ "css", diff --git a/packages/react/CHANGELOG.md b/packages/react/CHANGELOG.md index dac0a1cc4..0f90033bc 100644 --- a/packages/react/CHANGELOG.md +++ b/packages/react/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 8.1.2 + +### Patch Changes + +- @linaria/core@8.1.2 + ## 8.1.1 ### Patch Changes diff --git a/packages/react/package.json b/packages/react/package.json index 166471c46..4e5e81a8a 100644 --- a/packages/react/package.json +++ b/packages/react/package.json @@ -1,6 +1,6 @@ { "name": "@linaria/react", - "version": "8.1.1", + "version": "8.1.2", "description": "Blazing fast zero-runtime CSS in JS library", "keywords": [ "css", diff --git a/packages/server/CHANGELOG.md b/packages/server/CHANGELOG.md index 9d0f00120..b430ea4e9 100644 --- a/packages/server/CHANGELOG.md +++ b/packages/server/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.1.2 + ## 8.1.1 ## 8.1.0 diff --git a/packages/server/package.json b/packages/server/package.json index d4c936576..4f5df2bc9 100644 --- a/packages/server/package.json +++ b/packages/server/package.json @@ -1,6 +1,6 @@ { "name": "@linaria/server", - "version": "8.1.1", + "version": "8.1.2", "description": "Blazing fast zero-runtime CSS in JS library", "keywords": [ "css", diff --git a/packages/stylelint-config-standard-linaria/CHANGELOG.md b/packages/stylelint-config-standard-linaria/CHANGELOG.md index 0f813207d..169ad4157 100644 --- a/packages/stylelint-config-standard-linaria/CHANGELOG.md +++ b/packages/stylelint-config-standard-linaria/CHANGELOG.md @@ -1,5 +1,13 @@ # Change Log +## 8.1.2 + +### Patch Changes + +- Updated dependencies [f3871e64] +- Updated dependencies [d28a5a88] + - @linaria/postcss-linaria@8.1.2 + ## 8.1.1 ### Patch Changes diff --git a/packages/stylelint-config-standard-linaria/package.json b/packages/stylelint-config-standard-linaria/package.json index ea8a88234..b810befd3 100644 --- a/packages/stylelint-config-standard-linaria/package.json +++ b/packages/stylelint-config-standard-linaria/package.json @@ -1,6 +1,6 @@ { "name": "@linaria/stylelint-config-standard-linaria", - "version": "8.1.1", + "version": "8.1.2", "description": "Blazing fast zero-runtime CSS in JS library", "keywords": [ "css", diff --git a/packages/stylelint/CHANGELOG.md b/packages/stylelint/CHANGELOG.md index a017a1e13..1fac209b0 100644 --- a/packages/stylelint/CHANGELOG.md +++ b/packages/stylelint/CHANGELOG.md @@ -1,5 +1,7 @@ # Change Log +## 8.1.2 + ## 8.1.1 ## 8.1.0 diff --git a/packages/stylelint/package.json b/packages/stylelint/package.json index af3192463..ac282a7e7 100644 --- a/packages/stylelint/package.json +++ b/packages/stylelint/package.json @@ -1,6 +1,6 @@ { "name": "@linaria/stylelint", - "version": "8.1.1", + "version": "8.1.2", "description": "Blazing fast zero-runtime CSS in JS library", "keywords": [ "css",