Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release crates v0.24.0 #4749

Merged
merged 1 commit into from
Aug 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 20 additions & 20 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

40 changes: 20 additions & 20 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -75,26 +75,26 @@ doc_lazy_continuation = "allow" # FIXME

[workspace.dependencies]
# publish = true
oxc = { version = "0.23.1", path = "crates/oxc" }
oxc_allocator = { version = "0.23.1", path = "crates/oxc_allocator" }
oxc_ast = { version = "0.23.1", path = "crates/oxc_ast" }
oxc_codegen = { version = "0.23.1", path = "crates/oxc_codegen" }
oxc_diagnostics = { version = "0.23.1", path = "crates/oxc_diagnostics" }
oxc_index = { version = "0.23.1", path = "crates/oxc_index" }
oxc_minifier = { version = "0.23.1", path = "crates/oxc_minifier" }
oxc_mangler = { version = "0.23.1", path = "crates/oxc_mangler" }
oxc_parser = { version = "0.23.1", path = "crates/oxc_parser" }
oxc_semantic = { version = "0.23.1", path = "crates/oxc_semantic" }
oxc_span = { version = "0.23.1", path = "crates/oxc_span" }
oxc_syntax = { version = "0.23.1", path = "crates/oxc_syntax" }
oxc_transformer = { version = "0.23.1", path = "crates/oxc_transformer" }
oxc_sourcemap = { version = "0.23.1", path = "crates/oxc_sourcemap" }
oxc_ast_macros = { version = "0.23.1", path = "crates/oxc_ast_macros" }
oxc_traverse = { version = "0.23.1", path = "crates/oxc_traverse" }
oxc_module_lexer = { version = "0.23.1", path = "crates/oxc_module_lexer" }
oxc_cfg = { version = "0.23.1", path = "crates/oxc_cfg" }
oxc_isolated_declarations = { version = "0.23.1", path = "crates/oxc_isolated_declarations" }
oxc_transform_napi = { version = "0.23.1", path = "napi/transform" }
oxc = { version = "0.24.0", path = "crates/oxc" }
oxc_allocator = { version = "0.24.0", path = "crates/oxc_allocator" }
oxc_ast = { version = "0.24.0", path = "crates/oxc_ast" }
oxc_codegen = { version = "0.24.0", path = "crates/oxc_codegen" }
oxc_diagnostics = { version = "0.24.0", path = "crates/oxc_diagnostics" }
oxc_index = { version = "0.24.0", path = "crates/oxc_index" }
oxc_minifier = { version = "0.24.0", path = "crates/oxc_minifier" }
oxc_mangler = { version = "0.24.0", path = "crates/oxc_mangler" }
oxc_parser = { version = "0.24.0", path = "crates/oxc_parser" }
oxc_semantic = { version = "0.24.0", path = "crates/oxc_semantic" }
oxc_span = { version = "0.24.0", path = "crates/oxc_span" }
oxc_syntax = { version = "0.24.0", path = "crates/oxc_syntax" }
oxc_transformer = { version = "0.24.0", path = "crates/oxc_transformer" }
oxc_sourcemap = { version = "0.24.0", path = "crates/oxc_sourcemap" }
oxc_ast_macros = { version = "0.24.0", path = "crates/oxc_ast_macros" }
oxc_traverse = { version = "0.24.0", path = "crates/oxc_traverse" }
oxc_module_lexer = { version = "0.24.0", path = "crates/oxc_module_lexer" }
oxc_cfg = { version = "0.24.0", path = "crates/oxc_cfg" }
oxc_isolated_declarations = { version = "0.24.0", path = "crates/oxc_isolated_declarations" }
oxc_transform_napi = { version = "0.24.0", path = "napi/transform" }

# publish = false
oxc_macros = { path = "crates/oxc_macros" }
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc"
version = "0.23.1"
version = "0.24.0"
publish = true
authors.workspace = true
description.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/oxc_allocator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.24.0] - 2024-08-08

### Features

- 23b0040 allocator: Introduce `CloneIn` trait. (#4726) (rzvxa)

## [0.23.0] - 2024-08-01

### Performance
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_allocator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_allocator"
version = "0.23.1"
version = "0.24.0"
authors.workspace = true
description.workspace = true
edition.workspace = true
Expand Down
37 changes: 37 additions & 0 deletions crates/oxc_ast/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,43 @@ 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.24.0] - 2024-08-08

### Features

- 51c1ca0 ast: Derive `CloneIn` for AST types, using `generate_derive`. (#4732) (rzvxa)
- e12bd1e ast: Allow conversion from TSAccessibility into &'static str (#4711) (DonIsaac)
- fd2d9da ast: Improve `AstKind::debug_name` (#4553) (DonIsaac)
- b3b7028 ast: Implement missing Clone, Hash, and Display traits for literals (#4552) (DonIsaac)
- 54047e0 ast: `GetSpanMut` trait (#4609) (overlookmotel)
- eae401c ast, ast_macros: Apply stable repr to all `#[ast]` enums (#4373) (rzvxa)
- ec0b4cb ast_codegen: Add `derive_clone_in` generator. (#4731) (rzvxa)
- 82e2f6b ast_codegen: Process AST-related `syntax` types. (#4694) (rzvxa)
- 0c52c0d ast_codegen: Add alignment and size data to the schema. (#4615) (rzvxa)
- 07607d3 ast_codegen, span: Process `Span` through ast_codegen (#4703) (overlookmotel)
- 125c5fd ast_codegen, span: Process `SourceType` through ast_codegen. (#4696) (rzvxa)
- eaddc8f linter: Add fixer for eslint/func_names (#4714) (DonIsaac)

### Bug Fixes

- a40a217 parser: Parse `assert` keyword in `TSImportAttributes` (#4610) (Boshen)

### Documentation

- c69ada4 ast: Improve AST node documentation (#4051) (Rintaro Itokawa)

### Refactor

- 579b797 ast: Use type identifier instead of `CloneIn::Cloned` GAT. (#4738) (rzvxa)
- 475266d ast: Use correct lifetimes for name-related methods (#4712) (DonIsaac)
- 83b6ca9 ast: Add explicit enum discriminants. (#4689) (rzvxa)
- ba70001 ast: Put `assert_layouts.rs` behind `debug_assertions` (#4621) (rzvxa)
- 2218340 ast, ast_codegen: Use `generate_derive` for implementing `GetSpan` and `GetSpanMut` traits. (#4735) (rzvxa)

### Testing

- 49d5196 ast: Fix `assert_layouts.rs` offset tests on 32bit platforms. (#4620) (rzvxa)

## [0.23.1] - 2024-08-06

### Features
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_ast/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_ast"
version = "0.23.1"
version = "0.24.0"
authors.workspace = true
description.workspace = true
edition.workspace = true
Expand Down
19 changes: 19 additions & 0 deletions crates/oxc_ast_macros/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,25 @@ 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.24.0] - 2024-08-08

### Features

- eae401c ast, ast_macros: Apply stable repr to all `#[ast]` enums (#4373) (rzvxa)
- 2e91ad6 ast_codegen: Support for `generate_derive` marker. (#4728) (rzvxa)
- 6a36616 syntax: Derive `CloneIn` for the AST-related items. (#4730) (rzvxa)

### Bug Fixes

- 94d3c31 minifier: Avoid removing function declaration from `KeepVar` (#4722) (Boshen)
- f290191 oxc_ast_macros: Fix `syn` lacking features to build (Boshen)
- a40a217 parser: Parse `assert` keyword in `TSImportAttributes` (#4610) (Boshen)

### Refactor

- 3f53b6f ast: Make AST structs `repr(C)`. (#4614) (rzvxa)
- 452e0ee ast: Remove defunct `visit_as` + `visit_args` attrs from `#[ast]` macro (#4599) (overlookmotel)

## [0.23.1] - 2024-08-06

### Features
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_ast_macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_ast_macros"
version = "0.23.1"
version = "0.24.0"
publish = true
authors.workspace = true
description.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_cfg/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_cfg"
version = "0.23.1"
version = "0.24.0"
publish = true
authors.workspace = true
description.workspace = true
Expand Down
16 changes: 16 additions & 0 deletions crates/oxc_codegen/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,22 @@ 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.24.0] - 2024-08-08

### Bug Fixes

- 4a56954 codegen: Print raw if value is number is Infinity (#4676) (Boshen)
- a40a217 parser: Parse `assert` keyword in `TSImportAttributes` (#4610) (Boshen)

### Performance

- 8dd76e4 codegen: Reduce size of `LineOffsetTable` (#4643) (overlookmotel)
- b8e6753 codegen: `u32` indexes in `LineOffsetTable` for source maps (#4641) (overlookmotel)

### Refactor

- e78cba6 minifier: Ast passes infrastructure (#4625) (Boshen)

## [0.23.1] - 2024-08-06

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_codegen/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_codegen"
version = "0.23.1"
version = "0.24.0"
publish = true
authors.workspace = true
description.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_diagnostics/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_diagnostics"
version = "0.23.1"
version = "0.24.0"
authors.workspace = true
description.workspace = true
edition.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion crates/oxc_index/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "oxc_index"
version = "0.23.1"
version = "0.24.0"
publish = true
authors.workspace = true
description.workspace = true
Expand Down
Loading