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 Dec 31, 2024
1 parent 34e5339 commit 7f32e56
Show file tree
Hide file tree
Showing 8 changed files with 53 additions and 39 deletions.
13 changes: 0 additions & 13 deletions .changeset/dirty-carrots-sit.md

This file was deleted.

21 changes: 0 additions & 21 deletions .changeset/silent-geese-wonder.md

This file was deleted.

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

## 0.35.0

### Minor Changes

- 34e5339a: Fix `@compiled/babel-plugin` to not require `cssMap()` to be called prior to use.

Example, this failed before for no reason other than the fact that our `state.cssMap` was generated _after_ `JSXElement` and `JSXOpeningElement` were ran.

```tsx
import { cssMap } from '@compiled/react';
export default () => <div css={styles.root} />;
const styles = cssMap({ root: { padding: 8 } });
```

- 34e5339a: Throw an error when compiling a `cssMap` object where we expect a `css` or nested `cssMap` object.

Example of code that silently fails today, using `styles` directly:

```tsx
import { cssMap } from '@compiled/react';
const styles = cssMap({ root: { padding: 8 } });
export default () => <div css={styles} />;
```

What we expect to see instead, using `styles.root` instead:

```tsx
import { cssMap } from '@compiled/react';
const styles = cssMap({ root: { padding: 8 } });
export default () => <div css={styles.root} />;
```

## 0.34.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion 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.34.0",
"version": "0.35.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
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.3

### Patch Changes

- Updated dependencies [34e5339a]
- Updated dependencies [34e5339a]
- @compiled/babel-plugin@0.35.0

## 0.18.2

### Patch Changes
Expand Down
4 changes: 2 additions & 2 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.2",
"version": "0.18.3",
"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,7 +22,7 @@
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/generator": "^7.26.3",
"@compiled/babel-plugin": "^0.34.0",
"@compiled/babel-plugin": "^0.35.0",
"@compiled/babel-plugin-strip-runtime": "^0.33.0",
"@compiled/utils": "^0.13.1",
"@parcel/plugin": "^2.8.3",
Expand Down
8 changes: 8 additions & 0 deletions packages/webpack-loader/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
# @compiled/webpack-loader

## 0.19.2

### Patch Changes

- Updated dependencies [34e5339a]
- Updated dependencies [34e5339a]
- @compiled/babel-plugin@0.35.0

## 0.19.1

### Patch Changes
Expand Down
4 changes: 2 additions & 2 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.19.1",
"version": "0.19.2",
"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,7 +22,7 @@
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/parser": "^7.26.3",
"@compiled/babel-plugin": "^0.34.0",
"@compiled/babel-plugin": "^0.35.0",
"@compiled/babel-plugin-strip-runtime": "^0.33.0",
"@compiled/css": "^0.18.0",
"@compiled/utils": "^0.13.1",
Expand Down

0 comments on commit 7f32e56

Please sign in to comment.