Skip to content

Releases: boa-dev/boa

v0.14

15 Mar 23:13
Compare
Choose a tag to compare
v0.14 Pre-release
Pre-release

This release ports Boa to a VM, adds string interning, generator execution and many improvements and fixes, increasing the ECMAScript coverage to almost a 50%.

You can find more information in the release announcement

Changelog

v0.13

30 Sep 10:10
7be421b
Compare
Choose a tag to compare
v0.13 Pre-release
Pre-release

This release of boa brings new features and fixes all the known panics in the engine. You can check the full list of changes in the changelog.

v0.12

18 Oct 13:55
Compare
Choose a tag to compare
v0.12 Pre-release
Pre-release

Check the changelog.

v0.11

14 Jan 12:46
9160b89
Compare
Choose a tag to compare
v0.11 Pre-release
Pre-release

See changelog

v0.10

02 Oct 09:55
Compare
Choose a tag to compare
v0.10 Pre-release
Pre-release

This release makes the execution of the official ECMAScript test suite possible in Boa. It also brings a new lexer and many new features. You can see the release announcement or the changelog for more information.

v0.9.0

02 Jul 21:18
Compare
Choose a tag to compare
v0.9.0 Pre-release
Pre-release

This release makes execution around 75% - 80% faster, adds a bunch of new ECMAScript features and includes new tools for easier development. You can see the full changelog here, and the blog post explaining the release here.

v0.8.0

23 May 17:35
Compare
Choose a tag to compare
v0.8.0 Pre-release
Pre-release

see changelog!

v0.7.0 - New Parser

13 Apr 16:01
Compare
Choose a tag to compare
v0.7.0 - New Parser Pre-release
Pre-release

See changelog!

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

14 Feb 13:07
Compare
Choose a tag to compare

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)

02 Dec 21:25
Compare
Choose a tag to compare

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)