Skip to content

Commit

Permalink
Version Packages
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 6, 2024
1 parent f63b99d commit 1803f26
Show file tree
Hide file tree
Showing 15 changed files with 97 additions and 29 deletions.
12 changes: 0 additions & 12 deletions .changeset/plenty-feet-rest.md

This file was deleted.

15 changes: 15 additions & 0 deletions packages/babel-plugin-strip-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @compiled/babel-plugin-strip-runtime

## 0.33.0

### Minor Changes

- f63b99d4: Possibly BREAKING: Default `sortShorthand` to be enabled during stylesheet extraction to match the config we have internally at Atlassian and our recommendation.

You can opt-out from this change by setting `sortShorthand: false` in several places, refer to https://compiledcssinjs.com/docs/shorthand and package-specific documentation.

This is only a breaking change if you expect `margin:0` to override `margin-top:8px` for example, which in other CSS-in-JS libraries may actually work, but in Compiled it's not guaranteed to work, so we forcibly sort it to guarantee the order in which these styles are applied.

### Patch Changes

- Updated dependencies [f63b99d4]
- @compiled/css@0.18.0

## 0.32.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/babel-plugin-strip-runtime/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@compiled/babel-plugin-strip-runtime",
"version": "0.32.2",
"version": "0.33.0",
"description": "A familiar and performant compile time CSS-in-JS library for React.",
"homepage": "https://compiledcssinjs.com/docs/pkg-babel-plugin-strip-runtime",
"bugs": "https://github.com/atlassian-labs/compiled/issues/new?assignees=&labels=bug&template=bug_report.md",
Expand All @@ -24,7 +24,7 @@
"@babel/template": "^7.20.7",
"@babel/traverse": "^7.23.2",
"@babel/types": "^7.21.5",
"@compiled/css": "^0.17.0",
"@compiled/css": "^0.18.0",
"@compiled/utils": "^0.13.0"
},
"devDependencies": {
Expand Down
7 changes: 7 additions & 0 deletions packages/babel-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @compiled/babel-plugin

## 0.33.0

### Patch Changes

- Updated dependencies [f63b99d4]
- @compiled/css@0.18.0

## 0.32.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/babel-plugin/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@compiled/babel-plugin",
"version": "0.32.2",
"version": "0.33.0",
"description": "A familiar and performant compile time CSS-in-JS library for React.",
"homepage": "https://compiledcssinjs.com/docs/pkg-babel-plugin",
"bugs": "https://github.com/atlassian-labs/compiled/issues/new?assignees=&labels=bug&template=bug_report.md",
Expand Down Expand Up @@ -28,7 +28,7 @@
"@babel/template": "^7.20.7",
"@babel/traverse": "^7.23.2",
"@babel/types": "^7.21.5",
"@compiled/css": "^0.17.0",
"@compiled/css": "^0.18.0",
"@compiled/utils": "^0.13.0",
"@emotion/is-prop-valid": "^1.2.1",
"resolve": "^1.22.8"
Expand Down
10 changes: 10 additions & 0 deletions packages/css/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @compiled/css

## 0.18.0

### Minor Changes

- f63b99d4: Possibly BREAKING: Default `sortShorthand` to be enabled during stylesheet extraction to match the config we have internally at Atlassian and our recommendation.

You can opt-out from this change by setting `sortShorthand: false` in several places, refer to https://compiledcssinjs.com/docs/shorthand and package-specific documentation.

This is only a breaking change if you expect `margin:0` to override `margin-top:8px` for example, which in other CSS-in-JS libraries may actually work, but in Compiled it's not guaranteed to work, so we forcibly sort it to guarantee the order in which these styles are applied.

## 0.17.1

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/css/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@compiled/css",
"version": "0.17.1",
"version": "0.18.0",
"description": "A familiar and performant compile time CSS-in-JS library for React.",
"homepage": "https://compiledcssinjs.com/docs/pkg-css",
"bugs": "https://github.com/atlassian-labs/compiled/issues/new?assignees=&labels=bug&template=bug_report.md",
Expand Down
8 changes: 8 additions & 0 deletions packages/parcel-config/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @compiled/parcel-config

## 0.5.5

### Patch Changes

- Updated dependencies [f63b99d4]
- @compiled/parcel-optimizer@0.6.0
- @compiled/parcel-transformer@0.18.1

## 0.5.4

### Patch Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/parcel-config/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@compiled/parcel-config",
"version": "0.5.4",
"version": "0.5.5",
"description": "A familiar and performant compile time CSS-in-JS library for React.",
"bugs": "https://github.com/atlassian-labs/compiled/issues/new?assignees=&labels=bug&template=bug_report.md",
"repository": {
Expand All @@ -16,8 +16,8 @@
"config.json"
],
"dependencies": {
"@compiled/parcel-optimizer": "^0.5.1",
"@compiled/parcel-transformer": "^0.18.0",
"@compiled/parcel-optimizer": "^0.6.0",
"@compiled/parcel-transformer": "^0.18.1",
"@compiled/parcel-transformer-external": "^0.1.0",
"@parcel/plugin": "^2.8.3"
},
Expand Down
15 changes: 15 additions & 0 deletions packages/parcel-optimizer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# @compiled/parcel-optimizer

## 0.6.0

### Minor Changes

- f63b99d4: Possibly BREAKING: Default `sortShorthand` to be enabled during stylesheet extraction to match the config we have internally at Atlassian and our recommendation.

You can opt-out from this change by setting `sortShorthand: false` in several places, refer to https://compiledcssinjs.com/docs/shorthand and package-specific documentation.

This is only a breaking change if you expect `margin:0` to override `margin-top:8px` for example, which in other CSS-in-JS libraries may actually work, but in Compiled it's not guaranteed to work, so we forcibly sort it to guarantee the order in which these styles are applied.

### Patch Changes

- Updated dependencies [f63b99d4]
- @compiled/css@0.18.0

## 0.5.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/parcel-optimizer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@compiled/parcel-optimizer",
"version": "0.5.2",
"version": "0.6.0",
"description": "A familiar and performant compile time CSS-in-JS library for React.",
"bugs": "https://github.com/atlassian-labs/compiled/issues/new?assignees=&labels=bug&template=bug_report.md",
"repository": {
Expand All @@ -19,7 +19,7 @@
"src"
],
"dependencies": {
"@compiled/css": "^0.17.0",
"@compiled/css": "^0.18.0",
"@compiled/utils": "^0.13.0",
"@parcel/plugin": "^2.8.3",
"posthtml": "^0.16.6",
Expand Down
8 changes: 8 additions & 0 deletions packages/parcel-transformer/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @compiled/parcel-transformer

## 0.18.1

### Patch Changes

- Updated dependencies [f63b99d4]
- @compiled/babel-plugin-strip-runtime@0.33.0
- @compiled/babel-plugin@0.33.0

## 0.18.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 deletions packages/parcel-transformer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@compiled/parcel-transformer",
"version": "0.18.0",
"version": "0.18.1",
"description": "A familiar and performant compile time CSS-in-JS library for React.",
"homepage": "https://compiledcssinjs.com/docs/pkg-parcel-transformer",
"bugs": "https://github.com/atlassian-labs/compiled/issues/new?assignees=&labels=bug&template=bug_report.md",
Expand All @@ -22,8 +22,8 @@
"dependencies": {
"@babel/core": "^7.21.8",
"@babel/generator": "^7.21.5",
"@compiled/babel-plugin": "^0.32.1",
"@compiled/babel-plugin-strip-runtime": "^0.32.0",
"@compiled/babel-plugin": "^0.33.0",
"@compiled/babel-plugin-strip-runtime": "^0.33.0",
"@compiled/utils": "^0.13.0",
"@parcel/plugin": "^2.8.3",
"@parcel/source-map": "^2.1.1",
Expand Down
17 changes: 17 additions & 0 deletions packages/webpack-loader/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# @compiled/webpack-loader

## 0.19.0

### Minor Changes

- f63b99d4: Possibly BREAKING: Default `sortShorthand` to be enabled during stylesheet extraction to match the config we have internally at Atlassian and our recommendation.

You can opt-out from this change by setting `sortShorthand: false` in several places, refer to https://compiledcssinjs.com/docs/shorthand and package-specific documentation.

This is only a breaking change if you expect `margin:0` to override `margin-top:8px` for example, which in other CSS-in-JS libraries may actually work, but in Compiled it's not guaranteed to work, so we forcibly sort it to guarantee the order in which these styles are applied.

### Patch Changes

- Updated dependencies [f63b99d4]
- @compiled/babel-plugin-strip-runtime@0.33.0
- @compiled/css@0.18.0
- @compiled/babel-plugin@0.33.0

## 0.18.1

### Patch Changes
Expand Down
8 changes: 4 additions & 4 deletions packages/webpack-loader/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@compiled/webpack-loader",
"version": "0.18.1",
"version": "0.19.0",
"description": "A familiar and performant compile time CSS-in-JS library for React.",
"homepage": "https://compiledcssinjs.com/docs/pkg-webpack-loader",
"bugs": "https://github.com/atlassian-labs/compiled/issues/new?assignees=&labels=bug&template=bug_report.md",
Expand All @@ -22,9 +22,9 @@
"dependencies": {
"@babel/core": "^7.21.8",
"@babel/parser": "^7.21.8",
"@compiled/babel-plugin": "^0.32.2",
"@compiled/babel-plugin-strip-runtime": "^0.32.2",
"@compiled/css": "^0.17.0",
"@compiled/babel-plugin": "^0.33.0",
"@compiled/babel-plugin-strip-runtime": "^0.33.0",
"@compiled/css": "^0.18.0",
"@compiled/utils": "^0.13.0",
"enhanced-resolve": "^5.15.0",
"loader-utils": "^2.0.4",
Expand Down

0 comments on commit 1803f26

Please sign in to comment.