Skip to content

Commit 8cf1c28

Browse files
authored
Merge branch 'main' into feat/export-rule-version-metadata-upstream
2 parents a8f7fb4 + 16569c7 commit 8cf1c28

84 files changed

Lines changed: 1140 additions & 756 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: 34 additions & 34 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 30 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -105,38 +105,38 @@ multiple_crate_versions = "allow"
105105

106106
[workspace.dependencies]
107107
# publish = true
108-
oxc = { version = "0.126.0", path = "crates/oxc" } # Main entry point
109-
oxc_allocator = { version = "0.126.0", path = "crates/oxc_allocator" } # Memory management
110-
oxc_ast = { version = "0.126.0", path = "crates/oxc_ast" } # AST definitions
111-
oxc_ast_macros = { version = "0.126.0", path = "crates/oxc_ast_macros" } # AST proc macros
112-
oxc_ast_visit = { version = "0.126.0", path = "crates/oxc_ast_visit" } # AST visitor pattern
113-
oxc_cfg = { version = "0.126.0", path = "crates/oxc_cfg" } # Control flow graph
114-
oxc_codegen = { version = "0.126.0", path = "crates/oxc_codegen", default-features = false } # Code generation
115-
oxc_compat = { version = "0.126.0", path = "crates/oxc_compat" } # Browser compatibility
116-
oxc_data_structures = { version = "0.126.0", path = "crates/oxc_data_structures" } # Shared data structures
117-
oxc_diagnostics = { version = "0.126.0", path = "crates/oxc_diagnostics" } # Error reporting
118-
oxc_ecmascript = { version = "0.126.0", path = "crates/oxc_ecmascript" } # ECMAScript operations
119-
oxc_estree = { version = "0.126.0", path = "crates/oxc_estree" } # ESTree format
120-
oxc_estree_tokens = { version = "0.126.0", path = "crates/oxc_estree_tokens" } # ESTree token conversion
121-
oxc_isolated_declarations = { version = "0.126.0", path = "crates/oxc_isolated_declarations" } # TS declaration generation
122-
oxc_jsdoc = { version = "0.126.0", path = "crates/oxc_jsdoc" } # JSDoc parsing
123-
oxc_mangler = { version = "0.126.0", path = "crates/oxc_mangler" } # Name mangling
124-
oxc_minifier = { version = "0.126.0", path = "crates/oxc_minifier" } # Code minification
125-
oxc_minify_napi = { version = "0.126.0", path = "napi/minify" } # Node.js minifier binding
126-
oxc_napi = { version = "0.126.0", path = "crates/oxc_napi" } # NAPI utilities
127-
oxc_parser = { version = "0.126.0", path = "crates/oxc_parser", features = [
108+
oxc = { version = "0.127.0", path = "crates/oxc" } # Main entry point
109+
oxc_allocator = { version = "0.127.0", path = "crates/oxc_allocator" } # Memory management
110+
oxc_ast = { version = "0.127.0", path = "crates/oxc_ast" } # AST definitions
111+
oxc_ast_macros = { version = "0.127.0", path = "crates/oxc_ast_macros" } # AST proc macros
112+
oxc_ast_visit = { version = "0.127.0", path = "crates/oxc_ast_visit" } # AST visitor pattern
113+
oxc_cfg = { version = "0.127.0", path = "crates/oxc_cfg" } # Control flow graph
114+
oxc_codegen = { version = "0.127.0", path = "crates/oxc_codegen", default-features = false } # Code generation
115+
oxc_compat = { version = "0.127.0", path = "crates/oxc_compat" } # Browser compatibility
116+
oxc_data_structures = { version = "0.127.0", path = "crates/oxc_data_structures" } # Shared data structures
117+
oxc_diagnostics = { version = "0.127.0", path = "crates/oxc_diagnostics" } # Error reporting
118+
oxc_ecmascript = { version = "0.127.0", path = "crates/oxc_ecmascript" } # ECMAScript operations
119+
oxc_estree = { version = "0.127.0", path = "crates/oxc_estree" } # ESTree format
120+
oxc_estree_tokens = { version = "0.127.0", path = "crates/oxc_estree_tokens" } # ESTree token conversion
121+
oxc_isolated_declarations = { version = "0.127.0", path = "crates/oxc_isolated_declarations" } # TS declaration generation
122+
oxc_jsdoc = { version = "0.127.0", path = "crates/oxc_jsdoc" } # JSDoc parsing
123+
oxc_mangler = { version = "0.127.0", path = "crates/oxc_mangler" } # Name mangling
124+
oxc_minifier = { version = "0.127.0", path = "crates/oxc_minifier" } # Code minification
125+
oxc_minify_napi = { version = "0.127.0", path = "napi/minify" } # Node.js minifier binding
126+
oxc_napi = { version = "0.127.0", path = "crates/oxc_napi" } # NAPI utilities
127+
oxc_parser = { version = "0.127.0", path = "crates/oxc_parser", features = [
128128
"regular_expression",
129129
] } # JS/TS parser
130-
oxc_parser_napi = { version = "0.126.0", path = "napi/parser" } # Node.js parser binding
131-
oxc_regular_expression = { version = "0.126.0", path = "crates/oxc_regular_expression" } # Regex parser
132-
oxc_semantic = { version = "0.126.0", path = "crates/oxc_semantic" } # Semantic analysis
133-
oxc_span = { version = "0.126.0", path = "crates/oxc_span" } # Source positions
134-
oxc_str = { version = "0.126.0", path = "crates/oxc_str" } # String types
135-
oxc_syntax = { version = "0.126.0", path = "crates/oxc_syntax" } # Syntax utilities
136-
oxc_transform_napi = { version = "0.126.0", path = "napi/transform" } # Node.js transformer binding
137-
oxc_transformer = { version = "0.126.0", path = "crates/oxc_transformer" } # Code transformation
138-
oxc_transformer_plugins = { version = "0.126.0", path = "crates/oxc_transformer_plugins" } # Transformer plugins
139-
oxc_traverse = { version = "0.126.0", path = "crates/oxc_traverse" } # AST traversal
130+
oxc_parser_napi = { version = "0.127.0", path = "napi/parser" } # Node.js parser binding
131+
oxc_regular_expression = { version = "0.127.0", path = "crates/oxc_regular_expression" } # Regex parser
132+
oxc_semantic = { version = "0.127.0", path = "crates/oxc_semantic" } # Semantic analysis
133+
oxc_span = { version = "0.127.0", path = "crates/oxc_span" } # Source positions
134+
oxc_str = { version = "0.127.0", path = "crates/oxc_str" } # String types
135+
oxc_syntax = { version = "0.127.0", path = "crates/oxc_syntax" } # Syntax utilities
136+
oxc_transform_napi = { version = "0.127.0", path = "napi/transform" } # Node.js transformer binding
137+
oxc_transformer = { version = "0.127.0", path = "crates/oxc_transformer" } # Code transformation
138+
oxc_transformer_plugins = { version = "0.127.0", path = "crates/oxc_transformer_plugins" } # Transformer plugins
139+
oxc_traverse = { version = "0.127.0", path = "crates/oxc_traverse" } # AST traversal
140140

141141
# publish = false
142142
oxc_formatter = { path = "crates/oxc_formatter" } # Code formatting

apps/oxfmt/CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,25 @@ 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.46.0] - 2026-04-20
8+
9+
### 🚀 Features
10+
11+
- 5aa7fe1 oxfmt: Add `--disable-nested-config` CLI flag (#21514) (leaysgur)
12+
- b5cb8d1 oxfmt: Update prettier to 3.8.3 (#21451) (leaysgur)
13+
- 16713d5 oxfmt/cli: Support per-directory config (#21103) (leaysgur)
14+
- 952de06 oxfmt/lsp: Support per-directory config (#21081) (leaysgur)
15+
16+
### 🐛 Bug Fixes
17+
18+
- 6f49fad oxfmt: Respect nested config.`ignorePatterns` (#21489) (leaysgur)
19+
- 7c98d52 oxfmt: Do not panic on finding invalid nested config (#21461) (leaysgur)
20+
21+
### ⚡ Performance
22+
23+
- df27b48 oxfmt: Skip ancestors check when no nested config found (#21517) (leaysgur)
24+
- 5e1522a oxfmt: Do not occupy the rayon thread solely for handover (#21408) (leaysgur)
25+
726
## [0.45.0] - 2026-04-13
827

928
### 🚀 Features

0 commit comments

Comments
 (0)