Skip to content

Commit

Permalink
chore: Publish crates with swc_core v13.3.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kdy1 committed Feb 13, 2025
1 parent 308f5d0 commit 660b92a
Show file tree
Hide file tree
Showing 83 changed files with 176 additions and 183 deletions.
6 changes: 0 additions & 6 deletions .changeset/breezy-bobcats-sort.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/cool-eggs-jump.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/early-poems-own.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/three-nails-repair.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/three-ties-kiss.md

This file was deleted.

23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,27 @@
# Changelog
## [unreleased]

### Bug Fixes



- **(es/minifier)** Check assign target before merge assign cond ([#10020](https://github.com/swc-project/swc/issues/10020)) ([6dab49a](https://github.com/swc-project/swc/commit/6dab49a07c5f0853fd6200a7ee153e66a7b8dcdc))


- **(es/parser)** Preserve comment positions with leading semicolon ([#10019](https://github.com/swc-project/swc/issues/10019)) ([c9937b6](https://github.com/swc-project/swc/commit/c9937b65bfdaeb2ad9b8fe72943053ac5fe767c5))


- **(swc_common)** Fix panic with non-narrow chars with width != 2 ([#10011](https://github.com/swc-project/swc/issues/10011)) ([f9f4cac](https://github.com/swc-project/swc/commit/f9f4cac0e5ae586f0d3cbd3c8f4db8f79ff67e17))


- **(ts/fast-strip)** Handle unsupported `module` keyword ([#10022](https://github.com/swc-project/swc/issues/10022)) ([308f5d0](https://github.com/swc-project/swc/commit/308f5d03c735649ec81d73ec6b785cd68345a04c))

### Performance



- **(es/codegen)** Reduce allocation using `compact_str` ([#10008](https://github.com/swc-project/swc/issues/10008)) ([7d7319f](https://github.com/swc-project/swc/commit/7d7319f248afe10f33da2a7201c1a90ec58a441c))

## [1.10.15] - 2025-02-08

### Bug Fixes
Expand Down
12 changes: 6 additions & 6 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/binding_macros/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ binding_wasm = [
[dependencies]
# Common deps for the SWC imports
swc = { optional = true, version = "13.0.1", path = "../swc" }
swc_common = { optional = true, version = "6.1.0", path = "../swc_common" }
swc_common = { optional = true, version = "6.1.1", path = "../swc_common" }
swc_ecma_ast = { optional = true, version = "6.1.0", path = "../swc_ecma_ast" }
swc_ecma_transforms = { optional = true, version = "11.0.0", path = "../swc_ecma_transforms" }
swc_ecma_visit = { optional = true, version = "6.0.0", path = "../swc_ecma_visit" }
Expand Down
8 changes: 4 additions & 4 deletions crates/dbg-swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,16 +27,16 @@ clap = { version = "3", features = ["derive"] }
tracing-subscriber = { workspace = true, features = ["fmt", "env-filter"] }

swc_atoms = { version = "3.1.0", path = "../swc_atoms" }
swc_common = { version = "6.1.0", features = [
swc_common = { version = "6.1.1", features = [
"concurrent",
"tty-emitter",
], path = "../swc_common" }
swc_ecma_ast = { version = "6.1.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "6.0.2", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "10.2.0", path = "../swc_ecma_minifier", features = [
swc_ecma_codegen = { version = "6.1.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "10.2.1", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_parser = { version = "8.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "8.0.2", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "9.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_visit = { version = "6.0.0", path = "../swc_ecma_visit" }
swc_error_reporters = { version = "7.0.0", path = "../swc_error_reporters" }
Expand Down
4 changes: 2 additions & 2 deletions crates/jsdoc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,12 +20,12 @@ nom = { workspace = true }
serde = { workspace = true, features = ["derive"], optional = true }

swc_atoms = { version = "3.1.0", path = "../swc_atoms" }
swc_common = { version = "6.1.0", path = "../swc_common" }
swc_common = { version = "6.1.1", path = "../swc_common" }

[dev-dependencies]
anyhow = { workspace = true }
dashmap = { workspace = true }

swc_ecma_ast = { version = "6.1.0", path = "../swc_ecma_ast" }
swc_ecma_parser = { version = "8.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "8.0.2", path = "../swc_ecma_parser" }
testing = { version = "6.0.0", path = "../testing" }
8 changes: 4 additions & 4 deletions crates/swc/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -71,23 +71,23 @@ url = { workspace = true }

swc_atoms = { version = "3.1.0", path = "../swc_atoms" }
swc_cached = { version = "2.0.0", path = "../swc_cached" }
swc_common = { version = "6.1.0", path = "../swc_common", features = [
swc_common = { version = "6.1.1", path = "../swc_common", features = [
"sourcemap",
"parking_lot",
] }
swc_compiler_base = { version = "11.0.0", path = "../swc_compiler_base" }
swc_config = { version = "2.0.0", path = "../swc_config" }
swc_ecma_ast = { version = "6.1.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "6.0.2", path = "../swc_ecma_codegen" }
swc_ecma_codegen = { version = "6.1.0", path = "../swc_ecma_codegen" }
swc_ecma_ext_transforms = { version = "9.0.0", path = "../swc_ecma_ext_transforms" }
swc_ecma_lints = { version = "9.0.0", path = "../swc_ecma_lints" }
swc_ecma_loader = { version = "6.0.0", path = "../swc_ecma_loader", features = [
"cache",
"node",
"tsc",
] }
swc_ecma_minifier = { version = "10.2.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "8.0.1", path = "../swc_ecma_parser" }
swc_ecma_minifier = { version = "10.2.1", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "8.0.2", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { version = "11.0.0", path = "../swc_ecma_preset_env" }
swc_ecma_transforms = { version = "11.0.0", path = "../swc_ecma_transforms", features = [
"compat",
Expand Down
8 changes: 4 additions & 4 deletions crates/swc_bundler/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,11 +39,11 @@ rustc-hash = { workspace = true }
tracing = { workspace = true }

swc_atoms = { version = "3.1.0", path = "../swc_atoms" }
swc_common = { version = "6.1.0", path = "../swc_common" }
swc_common = { version = "6.1.1", path = "../swc_common" }
swc_ecma_ast = { version = "6.1.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "6.0.2", path = "../swc_ecma_codegen" }
swc_ecma_codegen = { version = "6.1.0", path = "../swc_ecma_codegen" }
swc_ecma_loader = { version = "6.0.0", path = "../swc_ecma_loader" }
swc_ecma_parser = { version = "8.0.1", path = "../swc_ecma_parser" }
swc_ecma_parser = { version = "8.0.2", path = "../swc_ecma_parser" }
swc_ecma_transforms_base = { version = "9.0.1", path = "../swc_ecma_transforms_base" }
swc_ecma_transforms_optimization = { version = "9.0.0", path = "../swc_ecma_transforms_optimization" }
swc_ecma_utils = { version = "9.0.0", path = "../swc_ecma_utils" }
Expand All @@ -64,7 +64,7 @@ swc_ecma_loader = { version = "6.0.0", path = "../swc_ecma_loader", features = [
"node",
"cache",
] }
swc_ecma_minifier = { version = "10.2.0", path = "../swc_ecma_minifier", features = [
swc_ecma_minifier = { version = "10.2.1", path = "../swc_ecma_minifier", features = [
"concurrent",
] }
swc_ecma_transforms_proposal = { version = "9.0.0", path = "../swc_ecma_transforms_proposal" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_cli_impl/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ tracing-futures = { workspace = true }
tracing-subscriber = { workspace = true, features = ["env-filter"] }
walkdir = { workspace = true }

swc_core = { version = "13.2.0", features = [
swc_core = { version = "13.3.0", features = [
"trace_macro",
"common_concurrent",
"base_concurrent",
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = { workspace = true }
license = { workspace = true }
name = "swc_common"
repository = { workspace = true }
version = "6.1.0"
version = "6.1.1"

[package.metadata.docs.rs]
all-features = true
Expand Down
8 changes: 4 additions & 4 deletions crates/swc_compiler_base/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,14 +24,14 @@ sourcemap = { workspace = true }
swc_allocator = { version = "3.0.0", path = "../swc_allocator", default-features = false }

swc_atoms = { version = "3.1.0", path = "../swc_atoms" }
swc_common = { version = "6.1.0", path = "../swc_common", features = [
swc_common = { version = "6.1.1", path = "../swc_common", features = [
"sourcemap",
] }
swc_config = { version = "2.0.0", path = "../swc_config" }
swc_ecma_ast = { version = "6.1.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { version = "6.0.2", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "10.2.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "8.0.1", path = "../swc_ecma_parser" }
swc_ecma_codegen = { version = "6.1.0", path = "../swc_ecma_codegen" }
swc_ecma_minifier = { version = "10.2.1", path = "../swc_ecma_minifier" }
swc_ecma_parser = { version = "8.0.2", path = "../swc_ecma_parser" }
swc_ecma_visit = { version = "6.0.0", path = "../swc_ecma_visit" }
swc_timer = { version = "1.0.0", path = "../swc_timer" }

Expand Down
10 changes: 5 additions & 5 deletions crates/swc_core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ edition = { workspace = true }
license = { workspace = true }
name = "swc_core"
repository = { workspace = true }
version = "13.2.0"
version = "13.3.0"
[package.metadata.docs.rs]
features = [
"allocator_node",
Expand Down Expand Up @@ -342,7 +342,7 @@ swc = { optional = true, version = "13.0.1", path =
swc_atoms = { optional = true, version = "3.1.0", path = "../swc_atoms" }
swc_bundler = { optional = true, version = "9.0.0", path = "../swc_bundler" }
swc_cached = { optional = true, version = "2.0.0", path = "../swc_cached" }
swc_common = { optional = true, version = "6.1.0", path = "../swc_common" }
swc_common = { optional = true, version = "6.1.1", path = "../swc_common" }
swc_css_ast = { optional = true, version = "6.0.0", path = "../swc_css_ast" }
swc_css_codegen = { optional = true, version = "6.0.0", path = "../swc_css_codegen" }
swc_css_compat = { optional = true, version = "6.0.0", path = "../swc_css_compat" }
Expand All @@ -353,11 +353,11 @@ swc_css_prefixer = { optional = true, version = "7.0.0", path =
swc_css_utils = { optional = true, version = "6.0.0", path = "../swc_css_utils/" }
swc_css_visit = { optional = true, version = "6.0.0", path = "../swc_css_visit" }
swc_ecma_ast = { optional = true, version = "6.1.0", path = "../swc_ecma_ast" }
swc_ecma_codegen = { optional = true, version = "6.0.2", path = "../swc_ecma_codegen" }
swc_ecma_codegen = { optional = true, version = "6.1.0", path = "../swc_ecma_codegen" }
swc_ecma_lints = { optional = true, version = "9.0.0", path = "../swc_ecma_lints" }
swc_ecma_loader = { optional = true, version = "6.0.0", path = "../swc_ecma_loader" }
swc_ecma_minifier = { optional = true, version = "10.2.0", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "8.0.1", path = "../swc_ecma_parser" }
swc_ecma_minifier = { optional = true, version = "10.2.1", path = "../swc_ecma_minifier" }
swc_ecma_parser = { optional = true, version = "8.0.2", path = "../swc_ecma_parser" }
swc_ecma_preset_env = { optional = true, version = "11.0.0", path = "../swc_ecma_preset_env" }
swc_ecma_quote_macros = { optional = true, version = "8.0.0", path = "../swc_ecma_quote_macros" }
swc_ecma_transforms_base = { optional = true, version = "9.0.1", path = "../swc_ecma_transforms_base" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_css_ast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,6 @@ serde = { workspace = true, features = ["derive"], optional = true }
string_enum = { version = "1.0.0", path = "../string_enum/" }

swc_atoms = { version = "3.1.0", path = "../swc_atoms" }
swc_common = { version = "6.1.0", path = "../swc_common" }
swc_common = { version = "6.1.1", path = "../swc_common" }

rkyv = { workspace = true, optional = true }
4 changes: 2 additions & 2 deletions crates/swc_css_codegen/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@ rustc-hash = { workspace = true }
serde = { workspace = true }

swc_atoms = { version = "3.1.0", path = "../swc_atoms" }
swc_common = { version = "6.1.0", path = "../swc_common" }
swc_common = { version = "6.1.1", path = "../swc_common" }
swc_css_ast = { version = "6.0.0", path = "../swc_css_ast" }
swc_css_codegen_macros = { version = "1.0.0", path = "../swc_css_codegen_macros" }
swc_css_utils = { version = "6.0.0", path = "../swc_css_utils" }

[dev-dependencies]
swc_common = { version = "6.1.0", path = "../swc_common", features = [
swc_common = { version = "6.1.1", path = "../swc_common", features = [
"sourcemap",
] }
swc_css_parser = { version = "6.0.0", path = "../swc_css_parser" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_css_compat/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }

swc_atoms = { version = "3.1.0", path = "../swc_atoms" }
swc_common = { version = "6.1.0", path = "../swc_common" }
swc_common = { version = "6.1.1", path = "../swc_common" }
swc_css_ast = { version = "6.0.0", path = "../swc_css_ast" }
swc_css_utils = { version = "6.0.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "6.0.0", path = "../swc_css_visit" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_css_lints/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ thiserror = { workspace = true }

swc_atoms = { version = "3.1.0", path = "../swc_atoms" }
swc_cached = { version = "2.0.0", path = "../swc_cached" }
swc_common = { version = "6.1.0", path = "../swc_common" }
swc_common = { version = "6.1.1", path = "../swc_common" }
swc_css_ast = { version = "6.0.0", path = "../swc_css_ast" }
swc_css_visit = { version = "6.0.0", path = "../swc_css_visit" }

Expand Down
2 changes: 1 addition & 1 deletion crates/swc_css_minifier/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ rustc-hash = { workspace = true }
serde = { workspace = true }

swc_atoms = { version = "3.1.0", path = "../swc_atoms" }
swc_common = { version = "6.1.0", path = "../swc_common" }
swc_common = { version = "6.1.1", path = "../swc_common" }
swc_css_ast = { version = "6.0.0", path = "../swc_css_ast" }
swc_css_utils = { version = "6.0.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "6.0.0", path = "../swc_css_visit" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_css_modules/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ rustc-hash = { workspace = true }
serde = { workspace = true, features = ["derive"] }

swc_atoms = { version = "3.1.0", path = "../swc_atoms" }
swc_common = { version = "6.1.0", path = "../swc_common" }
swc_common = { version = "6.1.1", path = "../swc_common" }
swc_css_ast = { version = "6.0.0", path = "../swc_css_ast" }
swc_css_codegen = { version = "6.0.0", path = "../swc_css_codegen" }
swc_css_parser = { version = "6.0.0", path = "../swc_css_parser" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_css_parser/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ lexical = { workspace = true }
serde = { workspace = true }

swc_atoms = { version = "3.1.0", path = "../swc_atoms" }
swc_common = { version = "6.1.0", path = "../swc_common" }
swc_common = { version = "6.1.1", path = "../swc_common" }
swc_css_ast = { version = "6.0.0", path = "../swc_css_ast" }

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_css_prefixer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ serde_json = { workspace = true }

preset_env_base = { version = "2.0.1", path = "../preset_env_base" }
swc_atoms = { version = "3.1.0", path = "../swc_atoms" }
swc_common = { version = "6.1.0", path = "../swc_common" }
swc_common = { version = "6.1.1", path = "../swc_common" }
swc_css_ast = { version = "6.0.0", path = "../swc_css_ast" }
swc_css_utils = { version = "6.0.0", path = "../swc_css_utils/" }
swc_css_visit = { version = "6.0.0", path = "../swc_css_visit" }
Expand Down
2 changes: 1 addition & 1 deletion crates/swc_css_utils/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,6 @@ serde = { workspace = true, features = ["derive"] }
serde_json = { workspace = true }

swc_atoms = { version = "3.1.0", path = "../swc_atoms" }
swc_common = { version = "6.1.0", path = "../swc_common" }
swc_common = { version = "6.1.1", path = "../swc_common" }
swc_css_ast = { version = "6.0.0", path = "../swc_css_ast" }
swc_css_visit = { version = "6.0.0", path = "../swc_css_visit" }
2 changes: 1 addition & 1 deletion crates/swc_css_visit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ serde-impl = ["serde"]
serde = { workspace = true, optional = true, features = ["derive"] }

swc_atoms = { version = "3.1.0", path = "../swc_atoms" }
swc_common = { version = "6.1.0", path = "../swc_common" }
swc_common = { version = "6.1.1", path = "../swc_common" }
swc_css_ast = { version = "6.0.0", path = "../swc_css_ast" }
swc_visit = { version = "2.0.0", path = "../swc_visit" }
2 changes: 1 addition & 1 deletion crates/swc_ecma_ast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ unicode-id-start = { workspace = true }

string_enum = { version = "1.0.0", path = "../string_enum" }
swc_atoms = { version = "3.1.0", path = "../swc_atoms" }
swc_common = { version = "6.1.0", path = "../swc_common" }
swc_common = { version = "6.1.1", path = "../swc_common" }
swc_visit = { version = "2.0.0", path = "../swc_visit" }

[dev-dependencies]
Expand Down
Loading

0 comments on commit 660b92a

Please sign in to comment.