Skip to content
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
42 changes: 21 additions & 21 deletions Cargo.lock

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

42 changes: 21 additions & 21 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,27 +76,27 @@ doc_lazy_continuation = "allow" # FIXME

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

# publish = false
oxc_linter = { path = "crates/oxc_linter" }
Expand Down
11 changes: 11 additions & 0 deletions crates/oxc/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,17 @@ 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.28.0] - 2024-09-11

- b060525 semantic: [**BREAKING**] Remove `source_type` argument from `SemanticBuilder::new` (#5553) (Boshen)

### Features

- 2016bae coverage: Add regular expression idempotency test (#5676) (Boshen)

### Refactor


## [0.27.0] - 2024-09-06

### Features
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.27.0"
version = "0.28.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
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.27.0"
version = "0.28.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
27 changes: 27 additions & 0 deletions crates/oxc_ast/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,33 @@ 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.28.0] - 2024-09-11

- afc4548 ast: [**BREAKING**] Educe byte size of `TaggedTemplateExpression::quasi` by `Boxing` it (#5679) (Boshen)

- 7415e85 ast: [**BREAKING**] Reduce byte size of `TSImportType::attributes` by `Box`ing it (#5678) (Boshen)

- ee4fb42 ast: [**BREAKING**] Reduce size of `WithClause` by `Box`ing it (#5677) (Boshen)

### Features

- 2da5ad1 ast: Add `JSXElementName::get_identifier` method (#5556) (overlookmotel)
- 68c3cf5 minifier: Fold `void 1` -> `void 0` (#5670) (Boshen)
- c6bbf94 minifier: Constant fold unary expression (#5669) (Boshen)

### Bug Fixes

- 28b934c coverage: Apply `always_strict` to test262 and typescript per the specifcation (#5555) (Boshen)
- 0511d55 regular_expression: Report more MayContainStrings error in (nested)class (#5661) (leaysgur)

### Performance


### Refactor

- 14ee086 ast: Inline `AstKind::as_*` methods (#5547) (overlookmotel)
- 2da42ef regular_expression: Improve AST docs with refactoring may_contain_strings (#5665) (leaysgur)- 26d9235 Enable clippy::ref_as_ptr (#5577) (夕舞八弦)

## [0.27.0] - 2024-09-06

- cba93f5 ast: [**BREAKING**] Add `ThisExpression` variants to `JSXElementName` and `JSXMemberExpressionObject` (#5466) (overlookmotel)
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.27.0"
version = "0.28.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
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.27.0"
version = "0.28.0"
authors.workspace = true
categories.workspace = true
edition.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.27.0"
version = "0.28.0"
authors.workspace = true
categories.workspace = true
edition.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.28.0] - 2024-09-11

- ee4fb42 ast: [**BREAKING**] Reduce size of `WithClause` by `Box`ing it (#5677) (Boshen)

- 4a8aec1 span: [**BREAKING**] Change `SourceType::js` to `SourceType::cjs` and `SourceType::mjs` (#5606) (Boshen)

### Features


### Bug Fixes

- d62defb codegen: Do not print trailing commas for `ArrayExpression` (#5551) (Boshen)

### Performance


## [0.27.0] - 2024-09-06

- cba93f5 ast: [**BREAKING**] Add `ThisExpression` variants to `JSXElementName` and `JSXMemberExpressionObject` (#5466) (overlookmotel)
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.27.0"
version = "0.28.0"
authors.workspace = true
categories.workspace = true
edition.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.27.0"
version = "0.28.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
6 changes: 6 additions & 0 deletions crates/oxc_index/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.28.0] - 2024-09-11

### Refactor

- 2de6ea0 index, traverse: Remove unnecessary type annotations (#5650) (overlookmotel)- 26d9235 Enable clippy::ref_as_ptr (#5577) (夕舞八弦)

## [0.27.0] - 2024-09-06

### Features
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.27.0"
version = "0.28.0"
authors.workspace = true
categories.workspace = true
edition.workspace = true
Expand Down
Loading