Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Version Packages #1017

Merged
merged 4 commits into from
Jul 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 0 additions & 5 deletions .changeset/angry-donuts-hide.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/cool-rockets-battle.md

This file was deleted.

24 changes: 0 additions & 24 deletions .changeset/curly-birds-joke.md

This file was deleted.

26 changes: 0 additions & 26 deletions .changeset/early-ads-admire.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/empty-lamps-crash.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/empty-papayas-attack.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/fair-cars-attack.md

This file was deleted.

25 changes: 0 additions & 25 deletions .changeset/itchy-ears-judge.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lemon-taxis-heal.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/nasty-snakes-join.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/plenty-peas-rescue.md

This file was deleted.

10 changes: 0 additions & 10 deletions .changeset/popular-wolves-pretend.md

This file was deleted.

37 changes: 0 additions & 37 deletions .changeset/pre.json

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/slow-flowers-rest.md

This file was deleted.

11 changes: 0 additions & 11 deletions .changeset/spotty-wombats-guess.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/strange-hairs-rush.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/swift-panthers-happen.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tall-dolls-compete.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tough-pans-obey.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/twelve-dolphins-sin.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/wicked-mugs-smash.md

This file was deleted.

9 changes: 0 additions & 9 deletions .changeset/wild-rabbits-mate.md

This file was deleted.

6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,11 @@ jobs:
- name: Install and prepare
run: pnpm install --frozen-lockfile --strict-peer-dependencies

- name: Create Release Pull Request
- name: Create Release Pull Request or Publish to npm
id: changesets
uses: changesets/action@v1
with:
publish: pnpm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@
"clean": "del 'packages/*/{coverage,esm,lib,types,tsconfig.tsbuildinfo}'",
"lint": "eslint --ext .js,.ts,.tsx .",
"prepare": "turbo run build --output-logs=new-only",
"release": "release-it",
"release": "pnpm run prepare && pnpm changeset publish",
"sp:check": "syncpack",
"sp:fix": "syncpack format && syncpack fix-mismatches",
"sp:format": "syncpack format",
Expand Down
25 changes: 22 additions & 3 deletions packages/atomic/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,32 @@
# Change Log

## 4.0.0

### Major Changes

- bc0cbeea: A completely new async mode with native support for Vite, Rollup, esbuild and Webpack resolvers.

BREAKING CHANGES: Despite the fact, that it should be fully compatible with 3.0 and 2.0 branches, the new version of styles evaluator can have some serious bugs which can make your project unbuildable (however, since there is no runtime, if the build is finished successfully, everything will continue work as it was on 2.0 and 3.0). If you face some problems please let us know and we will fix it as soon as possible.

### Patch Changes

- 8be5650d: The repo has been migrated to PNPM and Turborepo
- ea41d440: New package @linaria/tags that contains all abstract logic for tags processors.
- 9a50c1c1: Linaria now removes all unused css-related code from the runtime.
- 12d35cb9: `processors` aliases have been lost during publishing. (fixes #984)
- 17c83e34: Aliases for environments without the support of `exports` in package.json.
- Updated dependencies [f0cddda4]
- @linaria/core@4.0.0
- @linaria/logger@4.0.0
- @linaria/react@4.0.0
- @linaria/utils@4.0.0
- @linaria/tags@4.0.0

## 3.0.0-beta.21

### Patch Changes

- 17c83e34: Aliases for environments without the support of `exports` in package.json.
- Updated dependencies [609d79ba]
- Updated dependencies [f726eb3b]
- Updated dependencies [17c83e34]
- @linaria/react@3.0.0-beta.21
- @linaria/core@3.0.0-beta.21
Expand All @@ -16,7 +36,6 @@
### Patch Changes

- 8be5650d: The repo has been migrated to PNPM and Turborepo
- Updated dependencies [8be5650d]
- Updated dependencies
- @linaria/core@3.0.0-beta.20
- @linaria/logger@3.0.0-beta.20
Expand Down
2 changes: 1 addition & 1 deletion packages/atomic/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@linaria/atomic",
"description": "Blazing fast zero-runtime CSS in JS library",
"version": "3.0.0-beta.21",
"version": "4.0.0",
"bugs": "https://github.com/callstack/linaria/issues",
"dependencies": {
"@linaria/core": "workspace:^",
Expand Down
28 changes: 27 additions & 1 deletion packages/babel/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,37 @@
# Change Log

## 4.0.0

### Major Changes

- bc0cbeea: A completely new async mode with native support for Vite, Rollup, esbuild and Webpack resolvers.

BREAKING CHANGES: Despite the fact, that it should be fully compatible with 3.0 and 2.0 branches, the new version of styles evaluator can have some serious bugs which can make your project unbuildable (however, since there is no runtime, if the build is finished successfully, everything will continue work as it was on 2.0 and 3.0). If you face some problems please let us know and we will fix it as soon as possible.

### Patch Changes

- 8be5650d: The repo has been migrated to PNPM and Turborepo
- 17c83e34: Fix for the case when `styled` wraps an imported component.
- ea41d440: New package @linaria/tags that contains all abstract logic for tags processors.
- 592b89b5: Fix for broken object interpolation (#995)
- bc0cbeea: Brought back `libResolver` under the new name `tagResolver`
- 9a50c1c1: Linaria now removes all unused css-related code from the runtime.
- 4cdf0315: Tagged template-specific logic has been moved from `BaseProcessor` to `TaggedTemplateProcessor`. `BaseProcessor` now can be used to define any type of expressions for zero-runtime transformations, such as `makeStyles` from `@griffel/react`.
- 782deb6f: Pass source-root option from CLI to babel-preset
- 17c83e34: Aliases for environments without the support of `exports` in package.json.
- f0cddda4: Extends `BaseProcessor` to support tags other than tagged templates, such as `makeStyles` from `@griffel/react`.
- Updated dependencies [f0cddda4]
- @linaria/core@4.0.0
- @linaria/logger@4.0.0
- @linaria/shaker@4.0.0
- @linaria/utils@4.0.0
- @linaria/tags@4.0.0

## 3.0.0-beta.21

### Patch Changes

- 17c83e34: Fix for the case when `styled` wraps an imported component.
- Updated dependencies [f726eb3b]
- Updated dependencies [17c83e34]
- @linaria/core@3.0.0-beta.21

Expand Down
2 changes: 1 addition & 1 deletion packages/babel/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@linaria/babel-preset",
"description": "Blazing fast zero-runtime CSS in JS library",
"version": "3.0.0-beta.21",
"version": "4.0.0",
"bugs": "https://github.com/callstack/linaria/issues",
"dependencies": {
"@babel/core": "^7.18.9",
Expand Down