Skip to content

Commit

Permalink
Version Packages (#1713)
Browse files Browse the repository at this point in the history
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
  • Loading branch information
atlas-dst-bot and github-actions[bot] authored Sep 30, 2024
1 parent 9a15e74 commit c3c5660
Show file tree
Hide file tree
Showing 41 changed files with 294 additions and 77 deletions.
22 changes: 0 additions & 22 deletions .changeset/chatty-geese-invite.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/curvy-scissors-double.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lucky-gorillas-wash.md

This file was deleted.

22 changes: 22 additions & 0 deletions examples/ssr/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# @compiled/ssr-app

## 1.2.0

### Minor Changes

- 9a15e742: Sort shorthand properties so that they come before longhand properties.

When using Compiled, one of the following will happen:

Option 1. If stylesheet extraction is turned off ("runtime mode"): shorthand properties will be sorted before longhand properties, as long as they are not in a pseudo-selector like `:hover` or `:active`. This is enabled by default and cannot be turned off.

Option 2. If stylesheet extraction is turned on and one of the below is true:

- You are using Webpack
- You are using Parcel AND you are running in production mode

... shorthand properties will only be sorted if `sortShorthand: true` is passed to `CompiledExtractPlugin` (Webpack), or `sortShorthand: true` is passed to your Compiled config file like `.compiledcssrc` (Parcel). When sorting shorthand properties using this method (option 2), shorthand properties will always be sorted before longhand properties, taking precedence over pseudo-selectors like `:hover` or `:active`.

### Patch Changes

- Updated dependencies [9a15e742]
- @compiled/react@0.18.0

## 1.1.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/ssr/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@compiled/ssr-app",
"version": "1.1.0",
"version": "1.2.0",
"private": true,
"scripts": {
"build": "razzle build",
Expand Down
9 changes: 9 additions & 0 deletions examples/webpack/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @compiled/webpack-app

## 1.3.1

### Patch Changes

- 9a15e742: Enable sortShorthand
- Updated dependencies [9a15e742]
- @compiled/webpack-loader@0.16.0
- @compiled/react@0.18.0

## 1.3.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion examples/webpack/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@compiled/webpack-app",
"version": "1.3.0",
"version": "1.3.1",
"private": true,
"scripts": {
"build": "webpack",
Expand Down
7 changes: 7 additions & 0 deletions fixtures/parcel-optimizer-test-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @compiled/parcel-optimizer-test-app

## 0.1.6

### Patch Changes

- Updated dependencies [9a15e742]
- @compiled/react@0.18.0

## 0.1.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions fixtures/parcel-optimizer-test-app/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@compiled/parcel-optimizer-test-app",
"version": "0.1.5",
"version": "0.1.6",
"private": true,
"dependencies": {
"@compiled/react": "^0.17.0",
"@compiled/react": "^0.18.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
Expand Down
7 changes: 7 additions & 0 deletions fixtures/parcel-transformer-test-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @compiled/parcel-transformer-test-app

## 0.1.6

### Patch Changes

- Updated dependencies [9a15e742]
- @compiled/react@0.18.0

## 0.1.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions fixtures/parcel-transformer-test-app/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@compiled/parcel-transformer-test-app",
"version": "0.1.5",
"version": "0.1.6",
"private": true,
"dependencies": {
"@compiled/react": "^0.17.0",
"@compiled/react": "^0.18.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @compiled/parcel-transformer-test-compress-class-name-app

## 0.2.5

### Patch Changes

- Updated dependencies [9a15e742]
- @compiled/react@0.18.0

## 0.2.4

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@compiled/parcel-transformer-test-compress-class-name-app",
"version": "0.2.4",
"version": "0.2.5",
"private": true,
"dependencies": {
"@compiled/react": "^0.17.0",
"@compiled/react": "^0.18.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @compiled/parcel-transformer-test-custom-resolve-app

## 0.1.7

### Patch Changes

- Updated dependencies [9a15e742]
- @compiled/react@0.18.0

## 0.1.6

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@compiled/parcel-transformer-test-custom-resolve-app",
"version": "0.1.6",
"version": "0.1.7",
"private": true,
"dependencies": {
"@compiled/react": "^0.17.0",
"@compiled/react": "^0.18.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @compiled/parcel-transformer-test-custom-resolver-app

## 0.1.3

### Patch Changes

- Updated dependencies [9a15e742]
- @compiled/react@0.18.0

## 0.1.2

### Patch Changes
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@compiled/parcel-transformer-test-custom-resolver-app",
"version": "0.1.2",
"version": "0.1.3",
"private": true,
"dependencies": {
"@compiled/react": "^0.17.0",
"@compiled/react": "^0.18.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
Expand Down
7 changes: 7 additions & 0 deletions fixtures/parcel-transformer-test-extract-app/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# @compiled/parcel-transformer-test-extract-app

## 0.1.6

### Patch Changes

- Updated dependencies [9a15e742]
- @compiled/react@0.18.0

## 0.1.5

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions fixtures/parcel-transformer-test-extract-app/package.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
{
"name": "@compiled/parcel-transformer-test-extract-app",
"version": "0.1.5",
"version": "0.1.6",
"private": true,
"dependencies": {
"@compiled/react": "^0.17.0",
"@compiled/react": "^0.18.0",
"react": "^17.0.2",
"react-dom": "^17.0.2"
},
Expand Down
24 changes: 24 additions & 0 deletions packages/babel-plugin-strip-runtime/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,29 @@
# @compiled/babel-plugin-strip-runtime

## 0.31.0

### Minor Changes

- 9a15e742: Sort shorthand properties so that they come before longhand properties.

When using Compiled, one of the following will happen:

Option 1. If stylesheet extraction is turned off ("runtime mode"): shorthand properties will be sorted before longhand properties, as long as they are not in a pseudo-selector like `:hover` or `:active`. This is enabled by default and cannot be turned off.

Option 2. If stylesheet extraction is turned on and one of the below is true:

- You are using Webpack
- You are using Parcel AND you are running in production mode

... shorthand properties will only be sorted if `sortShorthand: true` is passed to `CompiledExtractPlugin` (Webpack), or `sortShorthand: true` is passed to your Compiled config file like `.compiledcssrc` (Parcel). When sorting shorthand properties using this method (option 2), shorthand properties will always be sorted before longhand properties, taking precedence over pseudo-selectors like `:hover` or `:active`.

### Patch Changes

- Updated dependencies [9a15e742]
- Updated dependencies [9a15e742]
- @compiled/utils@0.12.0
- @compiled/css@0.15.0

## 0.29.0

### Patch Changes
Expand Down
6 changes: 3 additions & 3 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.29.0",
"version": "0.31.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,8 +24,8 @@
"@babel/template": "^7.20.7",
"@babel/traverse": "^7.23.2",
"@babel/types": "^7.21.5",
"@compiled/css": "^0.14.0",
"@compiled/utils": "^0.11.1"
"@compiled/css": "^0.15.0",
"@compiled/utils": "^0.12.0"
},
"devDependencies": {
"@compiled/babel-plugin": "*",
Expand Down
9 changes: 9 additions & 0 deletions packages/babel-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @compiled/babel-plugin

## 0.31.0

### Patch Changes

- Updated dependencies [9a15e742]
- Updated dependencies [9a15e742]
- @compiled/utils@0.12.0
- @compiled/css@0.15.0

## 0.30.0

### Minor Changes
Expand Down
6 changes: 3 additions & 3 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.30.0",
"version": "0.31.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,8 +28,8 @@
"@babel/template": "^7.20.7",
"@babel/traverse": "^7.23.2",
"@babel/types": "^7.21.5",
"@compiled/css": "^0.14.0",
"@compiled/utils": "^0.11.1",
"@compiled/css": "^0.15.0",
"@compiled/utils": "^0.12.0",
"@emotion/is-prop-valid": "^1.2.1",
"resolve": "^1.22.8"
},
Expand Down
8 changes: 8 additions & 0 deletions packages/codemods/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @compiled/codemods

## 0.9.5

### Patch Changes

- Updated dependencies [9a15e742]
- Updated dependencies [9a15e742]
- @compiled/utils@0.12.0

## 0.9.4

### Patch Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/codemods/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@compiled/codemods",
"version": "0.9.4",
"version": "0.9.5",
"description": "A familiar and performant compile time CSS-in-JS library for React.",
"keywords": [
"codemod",
Expand Down Expand Up @@ -30,7 +30,7 @@
"unset-value": ">=2.0.1"
},
"dependencies": {
"@compiled/utils": "^0.11.1",
"@compiled/utils": "^0.12.0",
"chalk": "^4.1.2",
"jscodeshift": "^0.16.0"
},
Expand Down
23 changes: 23 additions & 0 deletions packages/css/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,28 @@
# @compiled/css

## 0.15.0

### Minor Changes

- 9a15e742: Sort shorthand properties so that they come before longhand properties.

When using Compiled, one of the following will happen:

Option 1. If stylesheet extraction is turned off ("runtime mode"): shorthand properties will be sorted before longhand properties, as long as they are not in a pseudo-selector like `:hover` or `:active`. This is enabled by default and cannot be turned off.

Option 2. If stylesheet extraction is turned on and one of the below is true:

- You are using Webpack
- You are using Parcel AND you are running in production mode

... shorthand properties will only be sorted if `sortShorthand: true` is passed to `CompiledExtractPlugin` (Webpack), or `sortShorthand: true` is passed to your Compiled config file like `.compiledcssrc` (Parcel). When sorting shorthand properties using this method (option 2), shorthand properties will always be sorted before longhand properties, taking precedence over pseudo-selectors like `:hover` or `:active`.

### Patch Changes

- Updated dependencies [9a15e742]
- Updated dependencies [9a15e742]
- @compiled/utils@0.12.0

## 0.14.0

### Minor Changes
Expand Down
Loading

0 comments on commit c3c5660

Please sign in to comment.