Skip to content

Commit c3f08ce

Browse files
Release crates v0.17.2 (#4115)
## [0.17.2] - 2024-07-08 ### Features - 115ac3b allocator: Introduce `FromIn` and `IntoIn` traits. (#4088) (rzvxa) - 720983a napi/transform: Allow setting `sourceType` to `transform` (#4113) (Boshen) - e386b62 semantic: Check for invalid type import assignments (#4097) (DonIsaac) ### Bug Fixes - 5472b7c codegen: 256 indentations level is not enough for codegen (Boshen) - 5c31236 isolated-declarations: Keep literal value for readonly property (#4106) (Dunqing) - e67c7d1 isolated-declarations: Do not infer type for private parameters (#4105) (Dunqing) - 3fcad5e isolated_declarations: Remove nested AssignmentPatterns from inside parameters (#4077) (michaelm) - f8d77e4 isolated_declarations: Infer type of template literal expressions as string (#4068) (michaelm) - 0f02608 semantic: Bind `TSImportEqualsDeclaration`s (#4100) (Don Isaac) - 4413e2d transformer: Missing initializer for readonly consructor properties (#4103) (Don Isaac) ### Performance - 7ed27b7 isolated-declarations: Use `FxHashSet` instead of `Vec` to speed up the `contain` (#4074) (Dunqing) - 9114c8e semantic: Keep a single map of unresolved references (#4107) (Luca Bruno) Co-authored-by: Boshen <Boshen@users.noreply.github.com>
1 parent 720983a commit c3f08ce

File tree

31 files changed

+117
-60
lines changed

31 files changed

+117
-60
lines changed

Cargo.lock

+19-19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+19-19
Original file line numberDiff line numberDiff line change
@@ -74,25 +74,25 @@ cargo_common_metadata = "allow" # TODO: fix this
7474

7575
[workspace.dependencies]
7676
# publish = true
77-
oxc = { version = "0.17.1", path = "crates/oxc" }
78-
oxc_allocator = { version = "0.17.1", path = "crates/oxc_allocator" }
79-
oxc_ast = { version = "0.17.1", path = "crates/oxc_ast" }
80-
oxc_codegen = { version = "0.17.1", path = "crates/oxc_codegen" }
81-
oxc_diagnostics = { version = "0.17.1", path = "crates/oxc_diagnostics" }
82-
oxc_index = { version = "0.17.1", path = "crates/oxc_index" }
83-
oxc_minifier = { version = "0.17.1", path = "crates/oxc_minifier" }
84-
oxc_parser = { version = "0.17.1", path = "crates/oxc_parser" }
85-
oxc_semantic = { version = "0.17.1", path = "crates/oxc_semantic" }
86-
oxc_span = { version = "0.17.1", path = "crates/oxc_span" }
87-
oxc_syntax = { version = "0.17.1", path = "crates/oxc_syntax" }
88-
oxc_transformer = { version = "0.17.1", path = "crates/oxc_transformer" }
89-
oxc_sourcemap = { version = "0.17.1", path = "crates/oxc_sourcemap" }
90-
oxc_ast_macros = { version = "0.17.1", path = "crates/oxc_ast_macros" }
91-
oxc_traverse = { version = "0.17.1", path = "crates/oxc_traverse" }
92-
oxc_module_lexer = { version = "0.17.1", path = "crates/oxc_module_lexer" }
93-
oxc_cfg = { version = "0.17.1", path = "crates/oxc_cfg" }
94-
oxc_isolated_declarations = { version = "0.17.1", path = "crates/oxc_isolated_declarations" }
95-
oxc_transform_napi = { version = "0.17.1", path = "napi/transform" }
77+
oxc = { version = "0.17.2", path = "crates/oxc" }
78+
oxc_allocator = { version = "0.17.2", path = "crates/oxc_allocator" }
79+
oxc_ast = { version = "0.17.2", path = "crates/oxc_ast" }
80+
oxc_codegen = { version = "0.17.2", path = "crates/oxc_codegen" }
81+
oxc_diagnostics = { version = "0.17.2", path = "crates/oxc_diagnostics" }
82+
oxc_index = { version = "0.17.2", path = "crates/oxc_index" }
83+
oxc_minifier = { version = "0.17.2", path = "crates/oxc_minifier" }
84+
oxc_parser = { version = "0.17.2", path = "crates/oxc_parser" }
85+
oxc_semantic = { version = "0.17.2", path = "crates/oxc_semantic" }
86+
oxc_span = { version = "0.17.2", path = "crates/oxc_span" }
87+
oxc_syntax = { version = "0.17.2", path = "crates/oxc_syntax" }
88+
oxc_transformer = { version = "0.17.2", path = "crates/oxc_transformer" }
89+
oxc_sourcemap = { version = "0.17.2", path = "crates/oxc_sourcemap" }
90+
oxc_ast_macros = { version = "0.17.2", path = "crates/oxc_ast_macros" }
91+
oxc_traverse = { version = "0.17.2", path = "crates/oxc_traverse" }
92+
oxc_module_lexer = { version = "0.17.2", path = "crates/oxc_module_lexer" }
93+
oxc_cfg = { version = "0.17.2", path = "crates/oxc_cfg" }
94+
oxc_isolated_declarations = { version = "0.17.2", path = "crates/oxc_isolated_declarations" }
95+
oxc_transform_napi = { version = "0.17.2", path = "napi/transform" }
9696

9797
# publish = false
9898
oxc_macros = { path = "crates/oxc_macros" }

crates/oxc/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
publish = true
55
authors.workspace = true
66
description.workspace = true

crates/oxc_allocator/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ 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/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
66

7+
## [0.17.2] - 2024-07-08
8+
9+
### Features
10+
11+
- 115ac3b allocator: Introduce `FromIn` and `IntoIn` traits. (#4088) (rzvxa)
12+
713
## [0.15.0] - 2024-06-18
814

915
### Features

crates/oxc_allocator/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_allocator"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
authors.workspace = true
55
description.workspace = true
66
edition.workspace = true

crates/oxc_ast/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ 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/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
66

7+
## [0.17.2] - 2024-07-08
8+
9+
### Features
10+
11+
- e386b62 semantic: Check for invalid type import assignments (#4097) (DonIsaac)
12+
713
## [0.17.1] - 2024-07-06
814

915
### Bug Fixes

crates/oxc_ast/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_ast"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
authors.workspace = true
55
description.workspace = true
66
edition.workspace = true

crates/oxc_ast_macros/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_ast_macros"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
publish = true
55
authors.workspace = true
66
description.workspace = true

crates/oxc_cfg/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_cfg"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
publish = true
55
authors.workspace = true
66
description.workspace = true

crates/oxc_codegen/CHANGELOG.md

+6
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ 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/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
66

7+
## [0.17.2] - 2024-07-08
8+
9+
### Bug Fixes
10+
11+
- 5472b7c codegen: 256 indentations level is not enough for codegen (Boshen)
12+
713
## [0.17.1] - 2024-07-06
814

915
### Bug Fixes

crates/oxc_codegen/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_codegen"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
publish = true
55
authors.workspace = true
66
description.workspace = true

crates/oxc_diagnostics/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_diagnostics"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
authors.workspace = true
55
description.workspace = true
66
edition.workspace = true

crates/oxc_index/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_index"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
publish = true
55
authors.workspace = true
66
description.workspace = true

crates/oxc_isolated_declarations/CHANGELOG.md

+13
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,19 @@ 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/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
66

7+
## [0.17.2] - 2024-07-08
8+
9+
### Bug Fixes
10+
11+
- 5c31236 isolated-declarations: Keep literal value for readonly property (#4106) (Dunqing)
12+
- e67c7d1 isolated-declarations: Do not infer type for private parameters (#4105) (Dunqing)
13+
- 3fcad5e isolated_declarations: Remove nested AssignmentPatterns from inside parameters (#4077) (michaelm)
14+
- f8d77e4 isolated_declarations: Infer type of template literal expressions as string (#4068) (michaelm)
15+
16+
### Performance
17+
18+
- 7ed27b7 isolated-declarations: Use `FxHashSet` instead of `Vec` to speed up the `contain` (#4074) (Dunqing)
19+
720
## [0.17.1] - 2024-07-06
821

922
### Bug Fixes

crates/oxc_isolated_declarations/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_isolated_declarations"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
publish = true
55
authors.workspace = true
66
description.workspace = true

crates/oxc_minifier/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_minifier"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
publish = true
55
authors.workspace = true
66
description.workspace = true

crates/oxc_module_lexer/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_module_lexer"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
publish = true
55
authors.workspace = true
66
description.workspace = true

crates/oxc_parser/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_parser"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
authors.workspace = true
55
description.workspace = true
66
edition.workspace = true

crates/oxc_semantic/CHANGELOG.md

+14
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/), and this project does not adhere to [Semantic Versioning](https://semver.org/spec/v2.0.0.html) until v1.0.0.
66

7+
## [0.17.2] - 2024-07-08
8+
9+
### Features
10+
11+
- e386b62 semantic: Check for invalid type import assignments (#4097) (DonIsaac)
12+
13+
### Bug Fixes
14+
15+
- 0f02608 semantic: Bind `TSImportEqualsDeclaration`s (#4100) (Don Isaac)
16+
17+
### Performance
18+
19+
- 9114c8e semantic: Keep a single map of unresolved references (#4107) (Luca Bruno)
20+
721
## [0.17.0] - 2024-07-05
822

923
- 1df6ac0 ast: [**BREAKING**] Rename `visit_enum_memeber` to `visit_ts_enum_member`. (#4000) (rzvxa)

crates/oxc_semantic/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "oxc_semantic"
3-
version = "0.17.1"
3+
version = "0.17.2"
44
authors.workspace = true
55
description.workspace = true
66
edition.workspace = true

0 commit comments

Comments
 (0)