Rust编写的JavaScript引擎,该项目是一个试验性质的项目。
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

135 KiB

CHANGELOG

What's Changed

0.18.0 (2024-03-04)

Feature Enhancements

Bug Fixes

Internal Improvements

Other Changes

New Contributors

Full Changelog: https://github.com/boa-dev/boa/compare/v0.17...v0.18

0.17.0 (2023-07-05)

Feature Enhancements

Bug Fixes

Internal Improvements

0.16.0 (2022-09-25)

Feature Enhancements

Bug Fixes

Internal Improvements

  • Fix spec links for some object operation methods by @CYBAI in #2111
  • Only run benchmarks on PRs when a label is set by @raskad in #2114
  • Refactor construct and PromiseCapability to preserve JsObject invariants by @jedel1043 in #2136
  • Remove string-interner dependency and implement custom string Interner by @jedel1043 in #2147
  • Fix clippy 1.62.0 lints by @raskad in #2154
  • Store call frames in Vec instead of singly-linked list by @HalidOdat in #2164
  • Dense/Packed JavaScript arrays by @HalidOdat in #2167
  • Fix Rust 1.63 clippy lints by @raskad in #2230
  • Removed some unsafe_empty_trace!() calls to improve performance by @Razican in #2233
  • Add integer type to fast path of to_property_key by @tunz in #2261

Full Changelog: https://github.com/boa-dev/boa/compare/v0.14...v0.15

0.15.0 (2022-06-10)

Feature Enhancements

Bug Fixes

Internal Improvements

Full Changelog: https://github.com/boa-dev/boa/compare/v0.14...v0.15

0.14.0 (2022-03-15) - Virtual Machine

Feature Enhancements

Bug Fixes

Internal Improvements

Full Changelog: https://github.com/boa-dev/boa/compare/v0.13...v0.14

0.13.0 (2021-09-30) - Many new features and refactors

Feature Enhancements:

Bug Fixes:

Internal Improvements:

0.12.0 (2021-06-07) - Set, accessors, @@toStringTag and no more panics

Feature Enhancements:

Bug Fixes:

Internal Improvements:

0.11.0 (2021-01-14) - Faster Parsing & Better compliance

Feature Enhancements:

Bug Fixes:

Internal Improvements:

0.10.0 (2020-09-29) - New Lexer & Test 262 Harness

Feature Enhancements:

Bug Fixes:

Internal Improvements:

# 0.9.0 (2020-07-03) - Move to Organisation, 78% faster execution time

Feature Enhancements:

Bug Fixes:

Internal Improvements

# 0.8.0 (2020-05-23) - BigInt, Modularized Parser, Faster Hashing

v0.8.0 brings more language implementations, such as do..while, function objects and also more recent EcmaScript additions, like BigInt. We have now moved the Web Assembly build into the wasm package, plus added a code of conduct for those contributing.

The parser has been even more modularized in this release making it easier to add new parsing rules.

Boa has migrated it's object implemention to FXHash which brings much improved results over the built-in Rust hashmaps (at the cost of less DOS Protection).

Feature Enhancements:

Bug fixes:

Code Of Conduct:

Security:

# 0.7.0 (2020-04-13) - New Parser is 67% faster

v0.7.0 brings a REPL, Improved parser messages and a new parser! This is now the default behaviour of Boa, so running Boa without a file argument will bring you into a javascript shell. Tests have also been moved to their own files, we had a lot of tests in some modules so it was time to separate.

New Parser

Most of the work in this release has been on rewriting the parser. A big task taken on by HalidOdat, Razican and myself.

The majority of the old parser was 1 big function (called parse) which had some pattern matching on each token coming in. The easy branches could generate expressions (which were basically AST Nodes), the more involved branches would recursively call into the same function, until eventually you had an expression generated.

This only worked so far, eventually debugging parsing problems were difficult, also more bugs were being raised against the parser which couldn't be fixed.

We decided to break the parser into more of a state-machine. The initial decision for this was inspired by Fedor Indutny who did a talk at (the last) JSConf EU about how he broke up the old node-parser to make it more maintanable. He goes into more detail here https://www.youtube.com/watch?v=x3k_5Mi66sY&feature=youtu.be&t=530

The new parser has functions to match the states of parsing in the spec. For example https://tc39.es/ecma262/#prod-VariableDeclaration has a matching function read_variable_declaration. This not only makes it better to maintain but easier for new contributors to get involed, as following the parsing logic of the spec is easier than before.

Once finished some optimisations were added by HalidOdat to use references to the tokens instead of cloning them each time we take them from the lexer. This works because the tokens live just as long as the parser operations do, so we don't need to copy the tokens. What this brings is a huge performance boost, the parser is 67% faster than before!

Parser Improvement

Feature enhancements:

Bug fixes:

Documentation Updates:

  • DOC #297: Better user contributed documentation

# 0.6.0 (2020-02-14) - Migration to Workspace Architecture + lexer/parser improvements

The lexer has had several fixes in this release, including how it parses numbers, scientific notation should be improved. On top of that the lexer no longer panics on errors including Syntax Errors (thanks @adumbidiot), instead you get some output on where the error happened.

Moving to a workspace architecture

Boa offers both a CLI and a library, initially these were all in the same binary. The downside is those who want to embed boa as-is end up with all of the command-line dependencies. So the time has come to separate out the two, this is normal procedure, this should be analogous to ripgrep and the regex crate. Cargo has great support for workspaces, so this shouldn't be an issue.

Benchmarks

We now have benchmarks which run against master! Thanks to Github Actions these will run automatically a commit is merged.

Feature enhancements:

Bug fixes:

# 0.5.1 (2019-12-02) - Rest / Spread (almost)

Feature enhancements:

  • FEATURE #151: Implement the Rest/Spread operator (functions and arrays).
  • FEATURE #193: Implement macro for setting builtin functions
  • FEATURE #211: Better Display support for all Objects (pretty printing)

# 0.5.0 (2019-11-06) - Hacktoberfest Release

Feature enhancements:

Bug fixes:

  • BUG #113: Unassigned variables have default of undefined (@pop)
  • BUG #61: Clippy warnings/errors fixed (@korpen)
  • BUG #147: Updated object global
  • BUG #154: Correctly handle all whitespaces within the lexer
  • Tidy up Globals being added to Global Object. Thanks @DomParfitt

0.4.0 (2019-09-25)

v0.4.0 brings quite a big release. The biggest feature to land is the support of regular expressions. Functions now have the arguments object supported and we have a debugging section in the docs.

Feature enhancements:

  • FEATURE #6: Support for regex literals. (Big thanks @999eagle)
  • FEATURE #13: toLowerCase, toUpperCase, substring, substr and valueOf implemented (thanks @arbroween)
  • Support for arguments object within functions
  • StringData instead of PrimitieData to match spec
  • Native function signatures changed, operations added to match spec
  • Primitives can now be boxed/unboxed when methods are ran on them
  • Spelling edits (thanks @someguynamedmatt)
  • Ability to set global values before interpreter starts (thanks @999eagle)
  • Assign operators implemented (thanks @oll3)

Bug fixes:

  • BUG #57: Fixed issue with stackoverflow by implementing early returns.
  • Allow to re-assign value to an existing binding. (Thanks @oll3)

0.3.0 (2019-07-26)

  • UnexpectedKeyword(Else) bug fixed https://github.com/boa-dev/boa/issues/38
  • Contributing guide added
  • Ability to specify file - Thanks @callumquick
  • Travis fixes
  • Parser Tests - Thanks @Razican
  • Migrate to dyn traits - Thanks @Atul9
  • Added implementations for Array.prototype: concat(), push(), pop() and join() - Thanks @callumquick
  • Some clippy Issues fixed - Thanks @Razican
  • Objects have been refactored to use structs which are more closely aligned with the specification
  • Benchmarks have been added
  • String and Array specific console.log formats - Thanks @callumquick
  • isPropertyKey implementation added - Thanks @KrisChambers
  • Unit Tests for Array and Strings - Thanks @GalAster
  • typo fix - Thanks @palerdot
  • dist cleanup, thanks @zgotsch

0.2.1 (2019-06-30)

Some String prototype methods are implemented. Thanks to @lennartbuit we have trim/trimStart/trimEnd added to the string prototype

Feature enhancements:

Bug fixes:

  • Plenty

0.2.0 (2019-06-10)

Working state reached

  • Tests on the lexer, conforms with puncturators and keywords from TC39 specification
  • wasm-bindgen added with working demo in Web Assembly
  • snapshot of boa in a working state for the first time