Skip to content

Commit 4d97304

Browse files
authored
release(crates): v0.55.0 (#9554)
1 parent a88eb56 commit 4d97304

48 files changed

Lines changed: 244 additions & 78 deletions

File tree

Some content is hidden

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

Cargo.lock

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

Cargo.toml

Lines changed: 24 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -101,30 +101,30 @@ doc_lazy_continuation = "allow" # FIXME
101101

102102
[workspace.dependencies]
103103
# publish = true
104-
oxc = { version = "0.54.0", path = "crates/oxc" }
105-
oxc_allocator = { version = "0.54.0", path = "crates/oxc_allocator" }
106-
oxc_ast = { version = "0.54.0", path = "crates/oxc_ast" }
107-
oxc_ast_macros = { version = "0.54.0", path = "crates/oxc_ast_macros" }
108-
oxc_ast_visit = { version = "0.54.0", path = "crates/oxc_ast_visit" }
109-
oxc_cfg = { version = "0.54.0", path = "crates/oxc_cfg" }
110-
oxc_codegen = { version = "0.54.0", path = "crates/oxc_codegen" }
111-
oxc_data_structures = { version = "0.54.0", path = "crates/oxc_data_structures" }
112-
oxc_diagnostics = { version = "0.54.0", path = "crates/oxc_diagnostics" }
113-
oxc_ecmascript = { version = "0.54.0", path = "crates/oxc_ecmascript" }
114-
oxc_estree = { version = "0.54.0", path = "crates/oxc_estree" }
115-
oxc_isolated_declarations = { version = "0.54.0", path = "crates/oxc_isolated_declarations" }
116-
oxc_mangler = { version = "0.54.0", path = "crates/oxc_mangler" }
117-
oxc_minifier = { version = "0.54.0", path = "crates/oxc_minifier" }
118-
oxc_napi = { version = "0.54.0", path = "crates/oxc_napi" }
119-
oxc_parser = { version = "0.54.0", path = "crates/oxc_parser" }
120-
oxc_parser_napi = { version = "0.54.0", path = "napi/parser" }
121-
oxc_regular_expression = { version = "0.54.0", path = "crates/oxc_regular_expression" }
122-
oxc_semantic = { version = "0.54.0", path = "crates/oxc_semantic" }
123-
oxc_span = { version = "0.54.0", path = "crates/oxc_span" }
124-
oxc_syntax = { version = "0.54.0", path = "crates/oxc_syntax" }
125-
oxc_transform_napi = { version = "0.54.0", path = "napi/transform" }
126-
oxc_transformer = { version = "0.54.0", path = "crates/oxc_transformer" }
127-
oxc_traverse = { version = "0.54.0", path = "crates/oxc_traverse" }
104+
oxc = { version = "0.55.0", path = "crates/oxc" }
105+
oxc_allocator = { version = "0.55.0", path = "crates/oxc_allocator" }
106+
oxc_ast = { version = "0.55.0", path = "crates/oxc_ast" }
107+
oxc_ast_macros = { version = "0.55.0", path = "crates/oxc_ast_macros" }
108+
oxc_ast_visit = { version = "0.55.0", path = "crates/oxc_ast_visit" }
109+
oxc_cfg = { version = "0.55.0", path = "crates/oxc_cfg" }
110+
oxc_codegen = { version = "0.55.0", path = "crates/oxc_codegen" }
111+
oxc_data_structures = { version = "0.55.0", path = "crates/oxc_data_structures" }
112+
oxc_diagnostics = { version = "0.55.0", path = "crates/oxc_diagnostics" }
113+
oxc_ecmascript = { version = "0.55.0", path = "crates/oxc_ecmascript" }
114+
oxc_estree = { version = "0.55.0", path = "crates/oxc_estree" }
115+
oxc_isolated_declarations = { version = "0.55.0", path = "crates/oxc_isolated_declarations" }
116+
oxc_mangler = { version = "0.55.0", path = "crates/oxc_mangler" }
117+
oxc_minifier = { version = "0.55.0", path = "crates/oxc_minifier" }
118+
oxc_napi = { version = "0.55.0", path = "crates/oxc_napi" }
119+
oxc_parser = { version = "0.55.0", path = "crates/oxc_parser" }
120+
oxc_parser_napi = { version = "0.55.0", path = "napi/parser" }
121+
oxc_regular_expression = { version = "0.55.0", path = "crates/oxc_regular_expression" }
122+
oxc_semantic = { version = "0.55.0", path = "crates/oxc_semantic" }
123+
oxc_span = { version = "0.55.0", path = "crates/oxc_span" }
124+
oxc_syntax = { version = "0.55.0", path = "crates/oxc_syntax" }
125+
oxc_transform_napi = { version = "0.55.0", path = "napi/transform" }
126+
oxc_transformer = { version = "0.55.0", path = "crates/oxc_transformer" }
127+
oxc_traverse = { version = "0.55.0", path = "crates/oxc_traverse" }
128128

129129
# publish = false
130130
oxc_linter = { path = "crates/oxc_linter" }

crates/oxc/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.
44

55
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.
66

7+
## [0.55.0] - 2025-03-05
8+
9+
### Features
10+
11+
- d55dbe2 ast/estree: Raw transfer (experimental) (#9516) (overlookmotel)
12+
713
## [0.54.0] - 2025-03-04
814

915
- a5cde10 visit_ast: [**BREAKING**] Add `oxc_visit_ast` crate (#9428) (Boshen)

crates/oxc/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc"
3-
version = "0.54.0"
3+
version = "0.55.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_allocator/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.
44

55
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.
66

7+
## [0.55.0] - 2025-03-05
8+
9+
### Features
10+
11+
- d55dbe2 ast/estree: Raw transfer (experimental) (#9516) (overlookmotel)
12+
713
## [0.53.0] - 2025-02-26
814

915
### Refactor

crates/oxc_allocator/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_allocator"
3-
version = "0.54.0"
3+
version = "0.55.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_ast/CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@ All notable changes to this package will be documented in this file.
44

55
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.
66

7+
## [0.55.0] - 2025-03-05
8+
9+
- 4056560 ast/estree: [**BREAKING**] Option to return JS-only AST (#9520) (overlookmotel)
10+
11+
### Features
12+
13+
- 59a9f1d ast: Add `AstBuilder::*_with_pure` etc methods (#9417) (Dunqing)
14+
- af02a87 ast/estree: `Property` have consistent field order (#9547) (overlookmotel)
15+
- 3e4f909 ast/estree: ESTree AST `ExportNamedDeclaration` always have `attributes` field (#9546) (overlookmotel)
16+
- d55dbe2 ast/estree: Raw transfer (experimental) (#9516) (overlookmotel)
17+
18+
### Performance
19+
20+
- 6b4a8c6 ast, codegen, transformer: Avoid allocations when converting `RegExpFlags` to string (#9550) (overlookmotel)
21+
22+
### Refactor
23+
24+
- 734b6b6 ast: `RegExpFlags::to_string` return flags in alphabetical order (#9548) (overlookmotel)
25+
- c1a8cea ast/estree: Simplify serializing `RegExpLiteral`s (#9551) (overlookmotel)
26+
727
## [0.54.0] - 2025-03-04
828

929
- 098f652 codegen: [**BREAKING**] Add `CommentAnnotation` to avoid parsing comments again (#9506) (Boshen)

crates/oxc_ast/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_ast"
3-
version = "0.54.0"
3+
version = "0.55.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_ast_macros/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_ast_macros"
3-
version = "0.54.0"
3+
version = "0.55.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_ast_visit/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to this package will be documented in this file.
44

55
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.
66

7+
## [0.55.0] - 2025-03-05
8+
9+
### Features
10+
11+
- d55dbe2 ast/estree: Raw transfer (experimental) (#9516) (overlookmotel)
12+
713
## [0.54.0] - 2025-03-04
814

915
- a5cde10 visit_ast: [**BREAKING**] Add `oxc_visit_ast` crate (#9428) (Boshen)

0 commit comments

Comments
 (0)