Skip to content

Commit 48bb908

Browse files
authored
build: Update swc_core to v19.0.0 (#429)
1 parent 69e6ac3 commit 48bb908

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

57 files changed

+304
-111
lines changed

Cargo.lock

Lines changed: 93 additions & 74 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -44,24 +44,24 @@ similar-asserts = "1.4.2"
4444
sourcemap = "9.0.0"
4545
swc_atoms = "5.0.0"
4646
swc_cached = "2.0.0"
47-
swc_common = "8.0.0"
48-
swc_core = "16.0.0"
47+
swc_common = "8.0.1"
48+
swc_core = "19.0.0"
4949
swc_css_ast = "8.0.0"
5050
swc_css_codegen = "8.0.0"
5151
swc_css_compat = "8.0.0"
5252
swc_css_minifier = "8.0.0"
5353
swc_css_parser = "8.0.0"
5454
swc_css_prefixer = "9.0.0"
5555
swc_css_visit = "8.0.0"
56-
swc_ecma_ast = "8.0.0"
57-
swc_ecma_codegen = "8.0.1"
58-
swc_ecma_minifier = "12.0.1"
59-
swc_ecma_parser = "10.0.0"
60-
swc_ecma_transforms = "14.0.0"
61-
swc_ecma_transforms_base = "11.1.0"
62-
swc_ecma_transforms_react = "12.0.0"
63-
swc_ecma_transforms_testing = "11.0.0"
64-
swc_ecma_utils = "11.0.0"
56+
swc_ecma_ast = "8.1.0"
57+
swc_ecma_codegen = "8.1.0"
58+
swc_ecma_minifier = "14.0.0"
59+
swc_ecma_parser = "11.0.0"
60+
swc_ecma_transforms = "15.0.0"
61+
swc_ecma_transforms_base = "12.0.0"
62+
swc_ecma_transforms_react = "13.0.0"
63+
swc_ecma_transforms_testing = "12.0.0"
64+
swc_ecma_utils = "12.0.0"
6565
swc_ecma_visit = "8.0.0"
6666
swc_plugin_macro = "1.0.0"
6767
swc_plugin_proxy = "8.0.0"

crates/swc_experimental_babel/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ homepage = { workspace = true }
1010
license = { workspace = true }
1111
repository = { workspace = true }
1212
rust-version = { workspace = true }
13-
version = "0.6.0"
13+
version = "0.7.0"
1414

1515
[dependencies]
1616
anyhow = { workspace = true }

packages/emotion/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @swc/plugin-emotion
22

3+
## 9.0.1
4+
5+
### Patch Changes
6+
7+
- 31e3254: build: Update `swc_core` to `v19.0.0`
8+
39
## 9.0.0
410

511
### Major Changes

packages/emotion/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,12 @@ Source code for plugin itself (not transforms) are copied from https://github.co
3434
3535
# @swc/plugin-emotion
3636
37+
## 9.0.1
38+
39+
### Patch Changes
40+
41+
- 31e3254: build: Update `swc_core` to `v19.0.0`
42+
3743
## 9.0.0
3844
3945
### Major Changes

packages/emotion/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swc/plugin-emotion",
3-
"version": "9.0.0",
3+
"version": "9.0.1",
44
"description": "SWC plugin for emotion css-in-js library",
55
"main": "swc_plugin_emotion.wasm",
66
"scripts": {

packages/emotion/transform/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ license = { workspace = true }
77
name = "swc_emotion"
88
repository = { workspace = true }
99
rust-version = { workspace = true }
10-
version = "0.83.0"
10+
version = "0.84.0"
1111

1212

1313
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

packages/formatjs/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @swc/plugin-formatjs
22

3+
## 3.0.1
4+
5+
### Patch Changes
6+
7+
- 31e3254: build: Update `swc_core` to `v19.0.0`
8+
39
## 3.0.0
410

511
### Major Changes

packages/formatjs/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ FormatJS SWC plugin, maintained by SWC team.
44

55
# @swc/plugin-formatjs
66

7+
## 3.0.1
8+
9+
### Patch Changes
10+
11+
- 31e3254: build: Update `swc_core` to `v19.0.0`
12+
713
## 3.0.0
814

915
### Major Changes

packages/formatjs/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swc/plugin-formatjs",
3-
"version": "3.0.0",
3+
"version": "3.0.1",
44
"description": "FormatJS SWC plugin",
55
"main": "swc_plugin_formatjs.wasm",
66
"scripts": {

packages/jest/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @swc/plugin-jest
22

3+
## 7.0.1
4+
5+
### Patch Changes
6+
7+
- 31e3254: build: Update `swc_core` to `v19.0.0`
8+
39
## 7.0.0
410

511
### Major Changes

packages/jest/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
# @swc/plugin-jest
44

5+
## 7.0.1
6+
7+
### Patch Changes
8+
9+
- 31e3254: build: Update `swc_core` to `v19.0.0`
10+
511
## 7.0.0
612

713
### Major Changes

packages/jest/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swc/plugin-jest",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"description": "SWC plugin for jest",
55
"main": "swc_plugin_jest.wasm",
66
"scripts": {

packages/loadable-components/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @swc/plugin-loadable-components
22

3+
## 6.0.1
4+
5+
### Patch Changes
6+
7+
- 31e3254: build: Update `swc_core` to `v19.0.0`
8+
39
## 6.0.0
410

511
### Major Changes

packages/loadable-components/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ By default `loadable-components` are configured to transform dynamic imports use
2323

2424
# @swc/plugin-loadable-components
2525

26+
## 6.0.1
27+
28+
### Patch Changes
29+
30+
- 31e3254: build: Update `swc_core` to `v19.0.0`
31+
2632
## 6.0.0
2733

2834
### Major Changes

packages/loadable-components/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swc/plugin-loadable-components",
3-
"version": "6.0.0",
3+
"version": "6.0.1",
44
"description": "SWC plugin for `@loadable/components`",
55
"main": "swc_plugin_loadable_components.wasm",
66
"scripts": {

packages/noop/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @swc/plugin-noop
22

3+
## 7.0.1
4+
5+
### Patch Changes
6+
7+
- 31e3254: build: Update `swc_core` to `v19.0.0`
8+
39
## 7.0.0
410

511
### Major Changes

packages/noop/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@
22

33
# @swc/plugin-noop
44

5+
## 7.0.1
6+
7+
### Patch Changes
8+
9+
- 31e3254: build: Update `swc_core` to `v19.0.0`
10+
511
## 7.0.0
612

713
### Major Changes

packages/noop/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swc/plugin-noop",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"description": "Noop SWC plugin, for debugging",
55
"main": "swc_plugin_noop.wasm",
66
"scripts": {

packages/prefresh/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @swc/plugin-prefresh
22

3+
## 7.0.1
4+
5+
### Patch Changes
6+
7+
- 31e3254: build: Update `swc_core` to `v19.0.0`
8+
39
## 7.0.0
410

511
### Major Changes

packages/prefresh/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,12 @@ And SWC has built-in React Refresh transformation, therefore, this plugin only i
4040

4141
# @swc/plugin-prefresh
4242

43+
## 7.0.1
44+
45+
### Patch Changes
46+
47+
- 31e3254: build: Update `swc_core` to `v19.0.0`
48+
4349
## 7.0.0
4450

4551
### Major Changes

packages/prefresh/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swc/plugin-prefresh",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"description": "SWC plugin for preact refresh",
55
"main": "swc_plugin_prefresh.wasm",
66
"scripts": {

packages/prefresh/transform/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ homepage = { workspace = true }
1010
license = { workspace = true }
1111
repository = { workspace = true }
1212
rust-version = { workspace = true }
13-
version = "0.10.0"
13+
version = "0.11.0"
1414

1515
[dependencies]
1616
serde = { workspace = true, features = ["derive"] }

packages/react-remove-properties/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @swc/plugin-react-remove-properties
22

3+
## 7.0.1
4+
5+
### Patch Changes
6+
7+
- 31e3254: build: Update `swc_core` to `v19.0.0`
8+
39
## 7.0.0
410

511
### Major Changes

packages/react-remove-properties/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,12 @@ or
2323

2424
# @swc/plugin-react-remove-properties
2525

26+
## 7.0.1
27+
28+
### Patch Changes
29+
30+
- 31e3254: build: Update `swc_core` to `v19.0.0`
31+
2632
## 7.0.0
2733

2834
### Major Changes

packages/react-remove-properties/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swc/plugin-react-remove-properties",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"description": "SWC plugin for https://www.npmjs.com/package/babel-plugin-react-remove-properties",
55
"main": "swc_plugin_react_remove_properties.wasm",
66
"scripts": {

packages/react-remove-properties/transform/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ homepage = { workspace = true }
1111
license = { workspace = true }
1212
repository = { workspace = true }
1313
rust-version = { workspace = true }
14-
version = "0.33.0"
14+
version = "0.34.0"
1515

1616

1717
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

packages/relay/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @swc/plugin-relay
22

3+
## 7.0.1
4+
5+
### Patch Changes
6+
7+
- 31e3254: build: Update `swc_core` to `v19.0.0`
8+
39
## 7.0.0
410

511
### Major Changes

packages/relay/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,12 @@ In this example typescript graphql files will output transpiled import path of `
104104

105105
# @swc/plugin-relay
106106

107+
## 7.0.1
108+
109+
### Patch Changes
110+
111+
- 31e3254: build: Update `swc_core` to `v19.0.0`
112+
107113
## 7.0.0
108114

109115
### Major Changes

packages/relay/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swc/plugin-relay",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"description": "SWC plugin for relay",
55
"main": "swc_plugin_relay.wasm",
66
"types": "./types.d.ts",

packages/relay/transform/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ homepage = { workspace = true }
1111
license = { workspace = true }
1212
repository = { workspace = true }
1313
rust-version = { workspace = true }
14-
version = "0.53.0"
14+
version = "0.54.0"
1515

1616

1717
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

packages/remove-console/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @swc/plugin-remove-console
22

3+
## 7.0.1
4+
5+
### Patch Changes
6+
7+
- 31e3254: build: Update `swc_core` to `v19.0.0`
8+
39
## 7.0.0
410

511
### Major Changes

packages/remove-console/README.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ or
2121

2222
# @swc/plugin-remove-console
2323

24+
## 7.0.1
25+
26+
### Patch Changes
27+
28+
- 31e3254: build: Update `swc_core` to `v19.0.0`
29+
2430
## 7.0.0
2531

2632
### Major Changes

packages/remove-console/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@swc/plugin-remove-console",
3-
"version": "7.0.0",
3+
"version": "7.0.1",
44
"description": "SWC plugin for https://www.npmjs.com/package/babel-plugin-remove-console",
55
"main": "swc_plugin_remove_console.wasm",
66
"scripts": {

packages/remove-console/transform/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ homepage = { workspace = true }
1111
license = { workspace = true }
1212
repository = { workspace = true }
1313
rust-version = { workspace = true }
14-
version = "0.34.0"
14+
version = "0.35.0"
1515

1616

1717
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

packages/styled-components/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @swc/plugin-styled-components
22

3+
## 7.1.1
4+
5+
### Patch Changes
6+
7+
- 31e3254: build: Update `swc_core` to `v19.0.0`
8+
39
## 7.1.0
410

511
### Minor Changes

0 commit comments

Comments
 (0)