mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 04:08:41 +00:00
## [0.36.0] - 2024-11-09 -b11ed2cast: [**BREAKING**] Remove useless `ObjectProperty::init` field (#7220) (Boshen) -0e4adc1ast: [**BREAKING**] Remove invalid expressions from `TSEnumMemberName` (#7219) (Boshen) -846711ctransformer: [**BREAKING**] Change API to take a `&TransformOptions` instead of `TransformOptions` (#7213) (Boshen) -092de67types: [**BREAKING**] Append `rest` field into `elements` for objects and arrays to align with estree (#7212) (ottomated) -d1d1874ast: [**BREAKING**] Change `comment.span` to real position that contain `//` and `/*` (#7154) (Boshen) -843bce4ast: [**BREAKING**] `IdentifierReference::reference_id` return `ReferenceId` (#7126) (overlookmotel) ### Features -cc8a191ast: Methods on AST nodes to get `scope_id` etc (#7127) (overlookmotel) -dc0215cast_tools: Add #[estree(append_to)], remove some custom serialization code (#7149) (ottomated) -9d6cc9destree: ESTree compatibility for all literals (#7152) (ottomated) -b74686cisolated-declarations: Support transform TSExportAssignment declaration (#7204) (Dunqing) -ad3a2f5tasks/compat_data: Generate our own compat table (#7176) (Boshen) -b4258eetransformer: Add defaulted `Module::Preserve` option (#7225) (Boshen) -324c3fetransformer: Add `TransformOptions::module` option (#7188) (Boshen) -a166a4atransformer: Add esbuild comma separated target API `--target=es2020,chrome58` (#7210) (Boshen) -3a20b90transformer: Add es target to `engineTargets` (#7193) (Boshen) -22898c8transformer: Warn BigInt when targeting < ES2020 (#7184) (Boshen) -a579011transformer: Add features `ES2018NamedCapturingGroupsRegex` and `ES2018LookbehindRegex` (#7182) (Boshen) -8573f79transformer: Turn on async_to_generator and async_generator_functions plugins in enable_all (#7135) (Dunqing) -df77241transformer: Enable `ArrowFunctionConverter` in `async-to-generator` and `async-generator-functions` plugins (#7113) (Dunqing) -b6a5750transformer/arrow-function-converter: Move scope to changed scope for `this_var` if scope have changed (#7125) (Dunqing) -1910227transformer/async-to-generator: Support inferring the function name from the ObjectPropertyValue's key (#7201) (Dunqing) -ffa8604transformer/async-to-generator: Do not transform await expression if is not inside async function (#7138) (Dunqing) -e536d47transformer/babel: Add support for trying to get the `Module` from `BabelPlugins` (#7218) (Dunqing) -5cfdc05transformer/typescript: Support transform `export =` and `import = require(...)` when module is commonjs (#7206) (Dunqing) ### Bug Fixes -c82b273transformer/async-generator-functions: Only transform object method in exit_function (#7200) (Dunqing) -b2a888dtransformer/async-generator-functions: Incorrect transformation for `for await` if it's not placed in a block (#7148) (Dunqing) -19892edtransformer/async-generator-functions: Transform incorrectly for `for await` if it's in LabeledStatement (#7147) (Dunqing) -ede10dctransformer/async-to-generator: Incorrect transform when super expression is inside async method (#7171) (Dunqing) -293d072transformer/async-to-generator: Only transform object method in exit_function (#7199) (Dunqing) -ae692d7transformer/async_to_generator: Fix checking if function is class method (#7117) (overlookmotel) -eea4ab8transformer/helper-loader: Incorrect `SymbolFlags` for default import when `SourceType` is script (#7226) (Dunqing) ### Refactor -d27e14fast: `AstKind::as_*` methods take `self` (#5546) (overlookmotel) -fac5042ast: Use `scope_id` etc methods (#7130) (overlookmotel) -a297765minifier: Use `map` and `and_then` instead of let else (#7178) (7086cmd) -fc86703napi/transform: Change test files to TypeScript (#7221) (Boshen) -c5485aesemantic: Add `ancestor_kinds` iterator function (#7217) (camchenry) -abf1602semantic: Rename `iter_parents` to `ancestors` (#7216) (camchenry) -42171ebsemantic: Rename `ancestors` to `ancestor_ids` (#7215) (camchenry) -de56083transformer: Add `impl TryFrom<EngineTargets> for EnvOptions` (#7191) (Boshen) -0a43c64transformer: Move `ESTarget` to its own file (#7189) (Boshen) -0e1f12ctransformer: Remove unimplemented `EnvOptions::bugfixes` (#7162) (Boshen) -a981caftransformer: Add `Engine` enum for `EngineTargets` (#7161) (Boshen) -8340243transformer: Rename `Query` to `BrowserslistQuery` (#7143) (Boshen) -481f7e6transformer: Change `Targets` to `EngineTargets` (#7142) (Boshen) -55e6989transformer: Deserialize engine target strings to specific keys (#7139) (Boshen) -fdfd9a4transformer: Use `scope_id` etc methods (#7128) (overlookmotel) -ff8bd50transformer: Move implementation of ArrowFunction to common/ArrowFunctionConverter (#7107) (Dunqing) -4a515betransformer/arrow-function-coverter: Rename function name and add some comments to explain confusing parts. (#7203) (Dunqing) -c307e1btransformer/arrow-functions: Pass `ArenaBox` as function param (#7169) (overlookmotel) -217d433transformer/arrow-functions: Remove unused `&mut self` function param (#7165) (overlookmotel) -426df71transformer/arrow-functions: Use `scope_id` method (#7164) (overlookmotel) -11c5e12transformer/arrow-functions: Correct comments (#7163) (overlookmotel) -1238506transformer/async-generator-function: Remove inactive `#[allow(clippy::unused_self)]` attrs (#7167) (overlookmotel) -84ee581transformer/async-generator-functions: Simplify identifying whether within an async generator function (#7170) (overlookmotel) -1b12328transformer/async-generator-functions: Use `clone` not `clone_in` on `LabelIdentifier` (#7172) (overlookmotel) -cd1006ftransformer/async-generator-functions: Do not transform yield expression where inside generator function (#7134) (Dunqing) -2c5734dtransformer/async-generator-functions: Do not transform await expression where inside ArrowFunctionExpression (#7132) (Dunqing) -5ce83bdtransformer/async-generator-functions: Remove dead code for handle await expression (#7131) (Dunqing) -e04ee97transformer/async-generator-functions: Move handling of `MethodDefinition`'s value to `exit_function` (#7106) (Dunqing) -b57d5a5transformer/async-to-generator: Remove unused `&self` function param (#7166) (overlookmotel) -f80085ctransformer/async-to-generator: Move handling of `MethodDefinition`'s value to `exit_function` (#7105) (Dunqing) -e2241e6transformer/jsx-self: Remove unused `&self` function params (#7159) (overlookmotel) -1dfd241transformer/optional-catch-binding: Remove inactive `#[allow(clippy::unused_self)]` attr (#7158) (overlookmotel) -fd9b44ctransformer/typescript: Remove inactive `#[allow(clippy::unused_self)]` attr (#7160) (overlookmotel) -cacfb9btraverse: Use `symbol_id` etc methods (#7129) (overlookmotel) ### Styling -38a6df6transformer/arrow-functions: Semicolon after return statements (#7168) (overlookmotel) -64b7e3atransformer/async-generator-functions: Import `oxc_allocator::Vec` as `ArenaVec` (#7173) (overlookmotel) ### Testing -be819ddnapi/transform: Add test for not default es transform (Boshen) Co-authored-by: Boshen <1430279+Boshen@users.noreply.github.com>
24 lines
451 B
TOML
24 lines
451 B
TOML
[package]
|
|
name = "oxc_data_structures"
|
|
version = "0.36.0"
|
|
authors.workspace = true
|
|
categories.workspace = true
|
|
edition.workspace = true
|
|
homepage.workspace = true
|
|
include = ["/src"]
|
|
keywords.workspace = true
|
|
license.workspace = true
|
|
publish = true
|
|
repository.workspace = true
|
|
rust-version.workspace = true
|
|
description.workspace = true
|
|
|
|
[lints]
|
|
workspace = true
|
|
|
|
[lib]
|
|
test = true
|
|
doctest = false
|
|
|
|
[dependencies]
|
|
assert-unchecked = { workspace = true }
|