Skip to content

Commit 454ee94

Browse files
authored
release(crates): v0.95.0 (#14619)
1 parent 2f85b31 commit 454ee94

Some content is hidden

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

66 files changed

+677
-527
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -103,33 +103,33 @@ multiple_crate_versions = "allow"
103103

104104
[workspace.dependencies]
105105
# publish = true
106-
oxc = { version = "0.94.0", path = "crates/oxc" }
107-
oxc_allocator = { version = "0.94.0", path = "crates/oxc_allocator" }
108-
oxc_ast = { version = "0.94.0", path = "crates/oxc_ast" }
109-
oxc_ast_macros = { version = "0.94.0", path = "crates/oxc_ast_macros" }
110-
oxc_ast_visit = { version = "0.94.0", path = "crates/oxc_ast_visit" }
111-
oxc_cfg = { version = "0.94.0", path = "crates/oxc_cfg" }
112-
oxc_codegen = { version = "0.94.0", path = "crates/oxc_codegen" }
113-
oxc_compat = { version = "0.94.0", path = "crates/oxc_compat" }
114-
oxc_data_structures = { version = "0.94.0", path = "crates/oxc_data_structures" }
115-
oxc_diagnostics = { version = "0.94.0", path = "crates/oxc_diagnostics" }
116-
oxc_ecmascript = { version = "0.94.0", path = "crates/oxc_ecmascript" }
117-
oxc_estree = { version = "0.94.0", path = "crates/oxc_estree" }
118-
oxc_isolated_declarations = { version = "0.94.0", path = "crates/oxc_isolated_declarations" }
119-
oxc_mangler = { version = "0.94.0", path = "crates/oxc_mangler" }
120-
oxc_minifier = { version = "0.94.0", path = "crates/oxc_minifier" }
121-
oxc_minify_napi = { version = "0.94.0", path = "napi/minify" }
122-
oxc_napi = { version = "0.94.0", path = "crates/oxc_napi" }
123-
oxc_parser = { version = "0.94.0", path = "crates/oxc_parser", features = ["regular_expression"] }
124-
oxc_parser_napi = { version = "0.94.0", path = "napi/parser" }
125-
oxc_regular_expression = { version = "0.94.0", path = "crates/oxc_regular_expression" }
126-
oxc_semantic = { version = "0.94.0", path = "crates/oxc_semantic" }
127-
oxc_span = { version = "0.94.0", path = "crates/oxc_span" }
128-
oxc_syntax = { version = "0.94.0", path = "crates/oxc_syntax" }
129-
oxc_transform_napi = { version = "0.94.0", path = "napi/transform" }
130-
oxc_transformer = { version = "0.94.0", path = "crates/oxc_transformer" }
131-
oxc_transformer_plugins = { version = "0.94.0", path = "crates/oxc_transformer_plugins" }
132-
oxc_traverse = { version = "0.94.0", path = "crates/oxc_traverse" }
106+
oxc = { version = "0.95.0", path = "crates/oxc" }
107+
oxc_allocator = { version = "0.95.0", path = "crates/oxc_allocator" }
108+
oxc_ast = { version = "0.95.0", path = "crates/oxc_ast" }
109+
oxc_ast_macros = { version = "0.95.0", path = "crates/oxc_ast_macros" }
110+
oxc_ast_visit = { version = "0.95.0", path = "crates/oxc_ast_visit" }
111+
oxc_cfg = { version = "0.95.0", path = "crates/oxc_cfg" }
112+
oxc_codegen = { version = "0.95.0", path = "crates/oxc_codegen" }
113+
oxc_compat = { version = "0.95.0", path = "crates/oxc_compat" }
114+
oxc_data_structures = { version = "0.95.0", path = "crates/oxc_data_structures" }
115+
oxc_diagnostics = { version = "0.95.0", path = "crates/oxc_diagnostics" }
116+
oxc_ecmascript = { version = "0.95.0", path = "crates/oxc_ecmascript" }
117+
oxc_estree = { version = "0.95.0", path = "crates/oxc_estree" }
118+
oxc_isolated_declarations = { version = "0.95.0", path = "crates/oxc_isolated_declarations" }
119+
oxc_mangler = { version = "0.95.0", path = "crates/oxc_mangler" }
120+
oxc_minifier = { version = "0.95.0", path = "crates/oxc_minifier" }
121+
oxc_minify_napi = { version = "0.95.0", path = "napi/minify" }
122+
oxc_napi = { version = "0.95.0", path = "crates/oxc_napi" }
123+
oxc_parser = { version = "0.95.0", path = "crates/oxc_parser", features = ["regular_expression"] }
124+
oxc_parser_napi = { version = "0.95.0", path = "napi/parser" }
125+
oxc_regular_expression = { version = "0.95.0", path = "crates/oxc_regular_expression" }
126+
oxc_semantic = { version = "0.95.0", path = "crates/oxc_semantic" }
127+
oxc_span = { version = "0.95.0", path = "crates/oxc_span" }
128+
oxc_syntax = { version = "0.95.0", path = "crates/oxc_syntax" }
129+
oxc_transform_napi = { version = "0.95.0", path = "napi/transform" }
130+
oxc_transformer = { version = "0.95.0", path = "crates/oxc_transformer" }
131+
oxc_transformer_plugins = { version = "0.95.0", path = "crates/oxc_transformer_plugins" }
132+
oxc_traverse = { version = "0.95.0", path = "crates/oxc_traverse" }
133133

134134
# publish = false
135135
oxc_formatter = { path = "crates/oxc_formatter" }

crates/oxc/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,13 @@ 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).
66

7+
## [0.95.0] - 2025-10-15
8+
9+
### 🐛 Bug Fixes
10+
11+
- 5e0ab1b tranformer_plugins: Define plugin need to add reference to scoping (#14615) (Boshen)
12+
13+
714
## [0.94.0] - 2025-10-06
815

916
### 🐛 Bug Fixes

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.94.0"
3+
version = "0.95.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_allocator/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ 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).
66

7+
78
## [0.94.0] - 2025-10-06
89

910
### 🚀 Features

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.94.0"
3+
version = "0.95.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_ast/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,18 @@ 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).
66

7+
## [0.95.0] - 2025-10-15
8+
9+
### 🚀 Features
10+
11+
- b1a9a03 linter/plugins: Implement `SourceCode#getAllComments` (#14589) (Arsh)
12+
- 368829b ast: Show `JSXText({value})` in `debug_name()` (#14461) (leaysgur)
13+
14+
### 🐛 Bug Fixes
15+
16+
- a86ca0b ast: Skip `source_text` and `comments` fields in `ContentEq` for `Program` (#14370) (overlookmotel)
17+
18+
719
## [0.94.0] - 2025-10-06
820

921
### 🚀 Features

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.94.0"
3+
version = "0.95.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

crates/oxc_ast_macros/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0).
77

88

99

10+
1011
## [0.91.0] - 2025-09-22
1112

1213
### 💼 Other

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.94.0"
3+
version = "0.95.0"
44
authors.workspace = true
55
categories.workspace = true
66
edition.workspace = true

0 commit comments

Comments
 (0)