Files
owncast/build/javascript/node_modules/acorn-node/CHANGELOG.md
dependabot[bot] dab7914eab Bump @justinribeiro/lite-youtube from 0.9.0 to 0.9.1 in /build/javascript (#273)
* Commit updated Javascript packages

* Bump preact from 10.5.4 to 10.5.5 in /build/javascript (#265)

* Trying a new github workflow to install javascript packages

* Bump tailwindcss from 1.9.2 to 1.9.4 in /build/javascript (#266)

Bumps [tailwindcss](https://github.com/tailwindlabs/tailwindcss) from 1.9.2 to 1.9.4.
- [Release notes](https://github.com/tailwindlabs/tailwindcss/releases)
- [Changelog](https://github.com/tailwindlabs/tailwindcss/blob/master/CHANGELOG.md)
- [Commits](https://github.com/tailwindlabs/tailwindcss/compare/v1.9.2...v1.9.4)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Commit updated Javascript packages

* Bump preact from 10.5.4 to 10.5.5 in /build/javascript

Bumps [preact](https://github.com/preactjs/preact) from 10.5.4 to 10.5.5.
- [Release notes](https://github.com/preactjs/preact/releases)
- [Commits](https://github.com/preactjs/preact/compare/10.5.4...10.5.5)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: Gabe Kangas <gabek@real-ity.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Owncast <owncast@owncast.online>

* Bump @justinribeiro/lite-youtube in /build/javascript

Bumps [@justinribeiro/lite-youtube](https://github.com/justinribeiro/lite-youtube) from 0.9.0 to 0.9.1.
- [Release notes](https://github.com/justinribeiro/lite-youtube/releases)
- [Commits](https://github.com/justinribeiro/lite-youtube/commits)

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: Owncast <owncast@owncast.online>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Gabe Kangas <gabek@real-ity.com>
2020-10-20 15:15:56 -07:00

2.0 KiB

acorn-node change log

All notable changes to this project will be documented in this file.

This project adheres to Semantic Versioning.

1.8.2

  • Revert a breaking change in import.meta parsing.

1.8.1

  • Fix crash in compiled private-class-elements code.

1.8.0

  • Upgrade acorn to v7.

    For backwards compatibility, acorn-node still uses the Import node type for dynamic imports, NOT ImportExpression like acorn v7 and estree.

  • Add numeric separator support:

    var a = 10_000_000_000_000_000_000_000_000n;
    

1.7.0

  • Add class instance fields support:
    class X {
      pub = 1;
      #priv = 2;
    }
    
  • Add class static fields support:
    class X {
      static pub = 1;
      static #priv = 2;
    }
    
  • Add export * as ns support when sourceType is 'module':
    export * as ns from './ns.mjs';
    

1.6.2

  • Allow dynamic import() in scripts.
  • Update minimum dependency versions, fixing a peerDependency warning.
  • Add Node 10 and 11 to CI.

1.6.1

  • Update acorn-dynamic-import to v4.

1.6.0

  • Upgrade acorn to v6.
  • Add bigint support.

1.5.2

  • Upgrade acorn to support optional catch binding in the AST walker.

1.5.1

  • Fix tests on Node <= 0.12.

1.5.0

  • Add tests for async iteration, optional catch binding, import.meta, dynamic import, bigint (currently unsupported).
  • Add import.meta support. (sourceType: 'module' only)
  • Add dynamic import support. (sourceType: 'module' only)
  • Fix optional catch binding support in the walker.

1.4.0

  • Upgrade acorn to 5.6, which supports optional catch bindings and other new syntax features.
  • Set ecmaVersion to 2019 to opt in to optional catch bindings etc.

1.3.0

  • Upgrade acorn to 5.4, which supports object spread and async iteration.
  • Remove acorn5-object-spread plugin.

1.2.0

  • Expose acorn/dist/walk as acorn-node/walk.

1.1.0

  • Enable allowHashBang and allowReturnOutsideFunction by default.

1.0.0

  • Initial release.