Skip to content

Commit 75b34ed

Browse files
Version Packages (#1802)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 3d10a6d commit 75b34ed

File tree

7 files changed

+28
-13
lines changed

7 files changed

+28
-13
lines changed

.changeset/fresh-monkeys-laugh.md

-8
This file was deleted.

packages/babel-plugin/CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @compiled/babel-plugin
22

3+
## 0.37.0
4+
5+
### Minor Changes
6+
7+
- 3d10a6d2: Fixes two scenarios found in https://github.com/atlassian-labs/compiled/issues/1789
8+
9+
- The static syntax of `"8px ".concat("8px")` which is auto-generated by certain Babel targets generates `props.style` outputs when not necessary—we can simplify this to `"8px 8px"` ourselves.
10+
- Mixing "indirect selectors" (eg. `~`, `+`, `|`, `||`) that do not inherit CSS variables with dynamic styles which generates CSS variables and `props.style` will never work in Compiled, this now throws an error.
11+
312
## 0.36.1
413

514
### Patch Changes

packages/babel-plugin/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@compiled/babel-plugin",
3-
"version": "0.36.1",
3+
"version": "0.37.0",
44
"description": "A familiar and performant compile time CSS-in-JS library for React.",
55
"homepage": "https://compiledcssinjs.com/docs/pkg-babel-plugin",
66
"bugs": "https://github.com/atlassian-labs/compiled/issues/new?assignees=&labels=bug&template=bug_report.md",

packages/parcel-transformer/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @compiled/parcel-transformer
22

3+
## 0.18.5
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [3d10a6d2]
8+
- @compiled/babel-plugin@0.37.0
9+
310
## 0.18.4
411

512
### Patch Changes

packages/parcel-transformer/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@compiled/parcel-transformer",
3-
"version": "0.18.4",
3+
"version": "0.18.5",
44
"description": "A familiar and performant compile time CSS-in-JS library for React.",
55
"homepage": "https://compiledcssinjs.com/docs/pkg-parcel-transformer",
66
"bugs": "https://github.com/atlassian-labs/compiled/issues/new?assignees=&labels=bug&template=bug_report.md",
@@ -22,7 +22,7 @@
2222
"dependencies": {
2323
"@babel/core": "^7.26.9",
2424
"@babel/generator": "^7.26.9",
25-
"@compiled/babel-plugin": "^0.36.0",
25+
"@compiled/babel-plugin": "^0.37.0",
2626
"@compiled/babel-plugin-strip-runtime": "^0.36.0",
2727
"@compiled/utils": "^0.13.1",
2828
"@parcel/plugin": "^2.8.3",

packages/webpack-loader/CHANGELOG.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
# @compiled/webpack-loader
22

3+
## 0.19.4
4+
5+
### Patch Changes
6+
7+
- Updated dependencies [3d10a6d2]
8+
- @compiled/babel-plugin@0.37.0
9+
310
## 0.19.3
411

512
### Patch Changes

packages/webpack-loader/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@compiled/webpack-loader",
3-
"version": "0.19.3",
3+
"version": "0.19.4",
44
"description": "A familiar and performant compile time CSS-in-JS library for React.",
55
"homepage": "https://compiledcssinjs.com/docs/pkg-webpack-loader",
66
"bugs": "https://github.com/atlassian-labs/compiled/issues/new?assignees=&labels=bug&template=bug_report.md",
@@ -22,7 +22,7 @@
2222
"dependencies": {
2323
"@babel/core": "^7.26.9",
2424
"@babel/parser": "^7.26.9",
25-
"@compiled/babel-plugin": "^0.36.0",
25+
"@compiled/babel-plugin": "^0.37.0",
2626
"@compiled/babel-plugin-strip-runtime": "^0.36.0",
2727
"@compiled/css": "^0.19.0",
2828
"@compiled/utils": "^0.13.1",

0 commit comments

Comments
 (0)