release(crates): v0.30.4 (#6134)

## [0.30.4] - 2024-09-28

### Bug Fixes

- 8582ae3 codegen: Missing parentheses if there is a pure comment before
a NewExpression as a ComputedMemberExpression's callee (#6105) (Dunqing)
- fd6798f parser: Remove unintended `pub Kind` (#6109) (Boshen)
- 6f98aad sourcemap: Align sourcemap type with Rollup (#6133) (Boshen)
- 64d4756 transformer: Fix debug assertion in `Stack` (#6106)
(overlookmotel)

### Performance

- 05852a0 codegen: Do not check whether there are annotation comments or
not if we don't preserve annotation comments (#6107) (Dunqing)

### Documentation

- 26a273a oxc-transform: Update README (Boshen)
- e2c5baf transformer: Fix formatting of README (#6111) (overlookmotel)

### Refactor

- 2090fce semantic: Fix lint warning in nightly (#6110) (overlookmotel)
- 7bc3988 transformer: Remove dead code (#6124) (overlookmotel)
- 07fe45b transformer: Exponentiation operator: convert to match (#6123)
(overlookmotel)
- 4387845 transformer: Share `TypeScriptOptions` with ref not `Rc`
(#6121) (overlookmotel)
- 09e41c2 transformer: Share `TransformCtx` with ref not `Rc` (#6118)
(overlookmotel)
- 58fd6eb transformer: Pre-allocate more stack space (#6095)
(overlookmotel)
- 9ac80bd transformer: Add wrapper around `NonNull` (#6115)
(overlookmotel)
- c50500e transformer: Move common stack functionality into
`StackCommon` trait (#6114) (overlookmotel)
- 9839059 transformer: Simplify `StackCapacity` trait (#6113)
(overlookmotel)

---------

Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
This commit is contained in:
oxc-bot 2024-09-28 13:08:44 +08:00 committed by GitHub
parent a5037719ab
commit 73098a43ff
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
34 changed files with 130 additions and 66 deletions

42
Cargo.lock generated
View file

@ -1398,7 +1398,7 @@ checksum = "caff54706df99d2a78a5a4e3455ff45448d81ef1bb63c22cd14052ca0e993a3f"
[[package]]
name = "oxc"
version = "0.30.3"
version = "0.30.4"
dependencies = [
"oxc_allocator",
"oxc_ast",
@ -1437,7 +1437,7 @@ dependencies = [
[[package]]
name = "oxc_allocator"
version = "0.30.3"
version = "0.30.4"
dependencies = [
"allocator-api2",
"bumpalo",
@ -1447,7 +1447,7 @@ dependencies = [
[[package]]
name = "oxc_ast"
version = "0.30.3"
version = "0.30.4"
dependencies = [
"bitflags 2.6.0",
"num-bigint",
@ -1464,7 +1464,7 @@ dependencies = [
[[package]]
name = "oxc_ast_macros"
version = "0.30.3"
version = "0.30.4"
dependencies = [
"proc-macro2",
"quote",
@ -1512,7 +1512,7 @@ dependencies = [
[[package]]
name = "oxc_cfg"
version = "0.30.3"
version = "0.30.4"
dependencies = [
"bitflags 2.6.0",
"itertools",
@ -1523,7 +1523,7 @@ dependencies = [
[[package]]
name = "oxc_codegen"
version = "0.30.3"
version = "0.30.4"
dependencies = [
"base64",
"bitflags 2.6.0",
@ -1571,7 +1571,7 @@ dependencies = [
[[package]]
name = "oxc_diagnostics"
version = "0.30.3"
version = "0.30.4"
dependencies = [
"miette",
"owo-colors",
@ -1582,7 +1582,7 @@ dependencies = [
[[package]]
name = "oxc_index"
version = "0.30.3"
version = "0.30.4"
dependencies = [
"rayon",
"serde",
@ -1590,7 +1590,7 @@ dependencies = [
[[package]]
name = "oxc_isolated_declarations"
version = "0.30.3"
version = "0.30.4"
dependencies = [
"bitflags 2.6.0",
"insta",
@ -1685,7 +1685,7 @@ dependencies = [
[[package]]
name = "oxc_mangler"
version = "0.30.3"
version = "0.30.4"
dependencies = [
"itertools",
"oxc_ast",
@ -1696,7 +1696,7 @@ dependencies = [
[[package]]
name = "oxc_minifier"
version = "0.30.3"
version = "0.30.4"
dependencies = [
"cow-utils",
"insta",
@ -1746,7 +1746,7 @@ dependencies = [
[[package]]
name = "oxc_module_lexer"
version = "0.30.3"
version = "0.30.4"
dependencies = [
"oxc_allocator",
"oxc_ast",
@ -1756,7 +1756,7 @@ dependencies = [
[[package]]
name = "oxc_parser"
version = "0.30.3"
version = "0.30.4"
dependencies = [
"assert-unchecked",
"bitflags 2.6.0",
@ -1835,7 +1835,7 @@ dependencies = [
[[package]]
name = "oxc_regular_expression"
version = "0.30.3"
version = "0.30.4"
dependencies = [
"oxc_allocator",
"oxc_ast_macros",
@ -1869,7 +1869,7 @@ dependencies = [
[[package]]
name = "oxc_semantic"
version = "0.30.3"
version = "0.30.4"
dependencies = [
"assert-unchecked",
"indexmap",
@ -1893,7 +1893,7 @@ dependencies = [
[[package]]
name = "oxc_sourcemap"
version = "0.30.3"
version = "0.30.4"
dependencies = [
"base64-simd",
"cfg-if",
@ -1906,7 +1906,7 @@ dependencies = [
[[package]]
name = "oxc_span"
version = "0.30.3"
version = "0.30.4"
dependencies = [
"compact_str",
"miette",
@ -1920,7 +1920,7 @@ dependencies = [
[[package]]
name = "oxc_syntax"
version = "0.30.3"
version = "0.30.4"
dependencies = [
"assert-unchecked",
"bitflags 2.6.0",
@ -1964,7 +1964,7 @@ dependencies = [
[[package]]
name = "oxc_transform_napi"
version = "0.30.3"
version = "0.30.4"
dependencies = [
"napi",
"napi-build",
@ -1983,7 +1983,7 @@ dependencies = [
[[package]]
name = "oxc_transformer"
version = "0.30.3"
version = "0.30.4"
dependencies = [
"assert-unchecked",
"base64",
@ -2010,7 +2010,7 @@ dependencies = [
[[package]]
name = "oxc_traverse"
version = "0.30.3"
version = "0.30.4"
dependencies = [
"compact_str",
"itoa",

View file

@ -76,27 +76,27 @@ doc_lazy_continuation = "allow" # FIXME
[workspace.dependencies]
# publish = true
oxc = { version = "0.30.3", path = "crates/oxc" }
oxc_allocator = { version = "0.30.3", path = "crates/oxc_allocator" }
oxc_ast = { version = "0.30.3", path = "crates/oxc_ast" }
oxc_ast_macros = { version = "0.30.3", path = "crates/oxc_ast_macros" }
oxc_cfg = { version = "0.30.3", path = "crates/oxc_cfg" }
oxc_codegen = { version = "0.30.3", path = "crates/oxc_codegen" }
oxc_diagnostics = { version = "0.30.3", path = "crates/oxc_diagnostics" }
oxc_index = { version = "0.30.3", path = "crates/oxc_index" }
oxc_isolated_declarations = { version = "0.30.3", path = "crates/oxc_isolated_declarations" }
oxc_mangler = { version = "0.30.3", path = "crates/oxc_mangler" }
oxc_minifier = { version = "0.30.3", path = "crates/oxc_minifier" }
oxc_module_lexer = { version = "0.30.3", path = "crates/oxc_module_lexer" }
oxc_parser = { version = "0.30.3", path = "crates/oxc_parser" }
oxc_regular_expression = { version = "0.30.3", path = "crates/oxc_regular_expression" }
oxc_semantic = { version = "0.30.3", path = "crates/oxc_semantic" }
oxc_sourcemap = { version = "0.30.3", path = "crates/oxc_sourcemap" }
oxc_span = { version = "0.30.3", path = "crates/oxc_span" }
oxc_syntax = { version = "0.30.3", path = "crates/oxc_syntax" }
oxc_transform_napi = { version = "0.30.3", path = "napi/transform" }
oxc_transformer = { version = "0.30.3", path = "crates/oxc_transformer" }
oxc_traverse = { version = "0.30.3", path = "crates/oxc_traverse" }
oxc = { version = "0.30.4", path = "crates/oxc" }
oxc_allocator = { version = "0.30.4", path = "crates/oxc_allocator" }
oxc_ast = { version = "0.30.4", path = "crates/oxc_ast" }
oxc_ast_macros = { version = "0.30.4", path = "crates/oxc_ast_macros" }
oxc_cfg = { version = "0.30.4", path = "crates/oxc_cfg" }
oxc_codegen = { version = "0.30.4", path = "crates/oxc_codegen" }
oxc_diagnostics = { version = "0.30.4", path = "crates/oxc_diagnostics" }
oxc_index = { version = "0.30.4", path = "crates/oxc_index" }
oxc_isolated_declarations = { version = "0.30.4", path = "crates/oxc_isolated_declarations" }
oxc_mangler = { version = "0.30.4", path = "crates/oxc_mangler" }
oxc_minifier = { version = "0.30.4", path = "crates/oxc_minifier" }
oxc_module_lexer = { version = "0.30.4", path = "crates/oxc_module_lexer" }
oxc_parser = { version = "0.30.4", path = "crates/oxc_parser" }
oxc_regular_expression = { version = "0.30.4", path = "crates/oxc_regular_expression" }
oxc_semantic = { version = "0.30.4", path = "crates/oxc_semantic" }
oxc_sourcemap = { version = "0.30.4", path = "crates/oxc_sourcemap" }
oxc_span = { version = "0.30.4", path = "crates/oxc_span" }
oxc_syntax = { version = "0.30.4", path = "crates/oxc_syntax" }
oxc_transform_napi = { version = "0.30.4", path = "napi/transform" }
oxc_transformer = { version = "0.30.4", path = "crates/oxc_transformer" }
oxc_traverse = { version = "0.30.4", path = "crates/oxc_traverse" }
# publish = false
oxc_linter = { path = "crates/oxc_linter" }

View file

@ -1,6 +1,6 @@
[package]
name = "oxc"
version = "0.30.3"
version = "0.30.4"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_allocator"
version = "0.30.3"
version = "0.30.4"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_ast"
version = "0.30.3"
version = "0.30.4"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_ast_macros"
version = "0.30.3"
version = "0.30.4"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_cfg"
version = "0.30.3"
version = "0.30.4"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -4,6 +4,16 @@ All notable changes to this package will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
## [0.30.4] - 2024-09-28
### Bug Fixes
- 8582ae3 codegen: Missing parentheses if there is a pure comment before a NewExpression as a ComputedMemberExpression's callee (#6105) (Dunqing)
### Performance
- 05852a0 codegen: Do not check whether there are annotation comments or not if we don't preserve annotation comments (#6107) (Dunqing)
## [0.30.2] - 2024-09-27
### Features

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_codegen"
version = "0.30.3"
version = "0.30.4"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_diagnostics"
version = "0.30.3"
version = "0.30.4"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_index"
version = "0.30.3"
version = "0.30.4"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_isolated_declarations"
version = "0.30.3"
version = "0.30.4"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_mangler"
version = "0.30.3"
version = "0.30.4"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_minifier"
version = "0.30.3"
version = "0.30.4"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_module_lexer"
version = "0.30.3"
version = "0.30.4"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
## [0.30.4] - 2024-09-28
### Bug Fixes
- fd6798f parser: Remove unintended `pub Kind` (#6109) (Boshen)
## [0.30.2] - 2024-09-27
### Bug Fixes

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_parser"
version = "0.30.3"
version = "0.30.4"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_regular_expression"
version = "0.30.3"
version = "0.30.4"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
## [0.30.4] - 2024-09-28
### Refactor
- 2090fce semantic: Fix lint warning in nightly (#6110) (overlookmotel)
## [0.30.3] - 2024-09-27
### Bug Fixes

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_semantic"
version = "0.30.3"
version = "0.30.4"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
## [0.30.4] - 2024-09-28
### Bug Fixes
- 6f98aad sourcemap: Align sourcemap type with Rollup (#6133) (Boshen)
## [0.29.0] - 2024-09-13
### Performance

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_sourcemap"
version = "0.30.3"
version = "0.30.4"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
## [0.30.4] - 2024-09-28
### Bug Fixes
- fd6798f parser: Remove unintended `pub Kind` (#6109) (Boshen)
## [0.30.0] - 2024-09-23
### Features

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_span"
version = "0.30.3"
version = "0.30.4"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_syntax"
version = "0.30.3"
version = "0.30.4"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -4,6 +4,23 @@ All notable changes to this package will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
## [0.30.4] - 2024-09-28
### Bug Fixes
- 64d4756 transformer: Fix debug assertion in `Stack` (#6106) (overlookmotel)
### Refactor
- 7bc3988 transformer: Remove dead code (#6124) (overlookmotel)
- 07fe45b transformer: Exponentiation operator: convert to match (#6123) (overlookmotel)
- 4387845 transformer: Share `TypeScriptOptions` with ref not `Rc` (#6121) (overlookmotel)
- 09e41c2 transformer: Share `TransformCtx` with ref not `Rc` (#6118) (overlookmotel)
- 58fd6eb transformer: Pre-allocate more stack space (#6095) (overlookmotel)
- 9ac80bd transformer: Add wrapper around `NonNull` (#6115) (overlookmotel)
- c50500e transformer: Move common stack functionality into `StackCommon` trait (#6114) (overlookmotel)
- 9839059 transformer: Simplify `StackCapacity` trait (#6113) (overlookmotel)
## [0.30.2] - 2024-09-27
### Features

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_transformer"
version = "0.30.3"
version = "0.30.4"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_traverse"
version = "0.30.3"
version = "0.30.4"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
## [0.30.4] - 2024-09-28
### Bug Fixes
- 6f98aad sourcemap: Align sourcemap type with Rollup (#6133) (Boshen)
## [0.30.0] - 2024-09-23
### Features

View file

@ -1,6 +1,6 @@
[package]
name = "oxc_transform_napi"
version = "0.30.3"
version = "0.30.4"
authors.workspace = true
categories.workspace = true
edition.workspace = true

View file

@ -1,6 +1,6 @@
{
"name": "oxc-parser",
"version": "0.30.3",
"version": "0.30.4",
"description": "Oxc Parser Node API",
"keywords": [
"Parser"

View file

@ -4,6 +4,13 @@ All notable changes to this package will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
## [0.30.4] - 2024-09-28
### Documentation
- 26a273a oxc-transform: Update README (Boshen)
- e2c5baf transformer: Fix formatting of README (#6111) (overlookmotel)
## [0.30.3] - 2024-09-27
### Documentation

View file

@ -1,6 +1,6 @@
{
"name": "oxc-transform",
"version": "0.30.3",
"version": "0.30.4",
"description": "Oxc transform Node API",
"keywords": [
"transform"

View file

@ -1,6 +1,6 @@
{
"name": "@oxc-parser/wasm",
"version": "0.30.3",
"version": "0.30.4",
"description": "Wasm target for the oxc parser.",
"packageManager": "pnpm@9.9.0",
"keywords": [