Skip to content

Commit ab68d5c

Browse files
authored
release(crates): v0.77.1 (#12319)
1 parent 324eb2f commit ab68d5c

File tree

60 files changed

+344
-80
lines changed

Some content is hidden

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

60 files changed

+344
-80
lines changed

Cargo.lock

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

Cargo.toml

Lines changed: 25 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -105,31 +105,31 @@ ignore_without_reason = "allow" # FIXME
105105

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

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

crates/oxc/CHANGELOG.md

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

1313

1414

15+
1516
# Changelog
1617

1718
All notable changes to this package will be documented in this file.

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

crates/oxc_allocator/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,24 @@ 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.77.1] - 2025-07-16
8+
9+
### 🐛 Bug Fixes
10+
11+
- 13c5783 allocator: Fix `FixedSizeAllocator` pointer maths (#12299) (overlookmotel)
12+
13+
### 🚜 Refactor
14+
15+
- 04e6a2f allocator: Improve documentation on pointer alignment (#12307) (overlookmotel)
16+
- 2f9bd11 allocator: Fixed size allocator leave space for metadata after arena (#12278) (overlookmotel)
17+
- 39ef911 napi/parser, allocator: Raw transfer: store buffer size and align as consts (#12275) (overlookmotel)
18+
- f130a0c allocator: Disable fixed size allocators on unsupported platforms (#12272) (overlookmotel)
19+
20+
### ⚡ Performance
21+
22+
- cc1e9fc napi/parser: Raw transfer: reduce size of buffer by 16 bytes (#12277) (overlookmotel)
23+
24+
725
## [0.77.0] - 2025-07-12
826

927
### 💥 BREAKING CHANGES

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

crates/oxc_ast/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,20 @@ 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.77.1] - 2025-07-16
8+
9+
### 🚀 Features
10+
11+
- 9b14fbc ast: Add `ThisExpression` to `TSTypeName` (#12156) (Boshen)
12+
13+
### 🚜 Refactor
14+
15+
- ee761de ast: Remove `AstKind` for `AssignmentTarget` (#12252) (Tyler Earls)
16+
- c025868 ast: Remove `AstKind` for `TSFunctionType` (#12287) (camc314)
17+
- c68b607 ast: Rename `TemplateLiteral::quasi` to `TemplateLiteral::single_quasi` (#12266) (Dunqing)
18+
- 32c32af ast: Check whether there is a single `quasi` in `TemplateLiteral::quasi` (#12265) (Dunqing)
19+
20+
721
## [0.77.0] - 2025-07-12
822

923
### 🚜 Refactor

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

crates/oxc_ast_macros/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.77.1] - 2025-07-16
8+
9+
### 🚜 Refactor
10+
11+
- 5fba91c napi/parser: Raw transfer: introduce metadata struct (#12269) (overlookmotel)
12+
13+
714

815

916

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

0 commit comments

Comments
 (0)