Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump meriyah from 5.0.0 to 6.0.0 in the dependencies group #301

Merged

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 16, 2024

Bumps the dependencies group with 1 update: meriyah.

Updates meriyah from 5.0.0 to 6.0.0

Release notes

Sourced from meriyah's releases.

v6.0.0

Bug Fixes

  • lexer: identifier starts with unicode-escape needs ID_Start check (e1d5534)
  • lexer: in non-strict mode, future reserved keyword can be used as identifier (5764ad7)
  • lexer: no line break is allowed in regex literal (773208b)
  • lexer: private identifier can start with escaped unicode (85a39e7)
  • lexer: unicode escaped "let" can not be let keyword (406d72c)
  • parser: "arguments" is not allowed in class property initializer or static block (c9857c6)
  • parser: "use strict" directive could be after invalid string (527ea97), closes #149
  • parser: a newline may not precede the * token in a yield expression (e0eeb89)
  • parser: add missing import-attributes support in ExportNamedDeclaration (f7864a6), closes #289
  • parser: async function should not skip duplication error (94d41ae), closes #291
  • parser: catch block without catch-binding should have lexical scope (db7b3ae)
  • parser: class is implicit strict mode, but decorator before class is not (97f4927)
  • parser: class static block disallows "await" as identifier (4c7f2c3)
  • parser: class static block disllows "yield" as idenfifier (1cb0d65)
  • parser: class static block has no return statement (f2b73ee)
  • parser: dot property name can be escaped reserved or future reserved (eedce98)
  • parser: escaped reserved keyword can be used as class element name (b8e4b3c)
  • parser: fix an edge case of invalid escape in tagged template (118fdae)
  • parser: fix annexB behaviour (webcompat) of catch param (359dcbe)
  • parser: fix destruct pattern check (1e5e394)
  • parser: fix duplicated function params check (d0aeda6)
  • parser: fix duplicated proto check in async() and async() => {} (66ad497)
  • parser: fix early error on escaped oct and \8 \9 (33b68df)
  • parser: fix import.meta check, await check and await in static block (b269996)
  • parser: fix jsx parsing on '' (ad71155), closes #185
  • parser: fix jsx with comments in tag (a2e4767), closes #185
  • parser: fix onToken callback for template and jsx (407a2ca), closes #215 #216
  • parser: fix scoped analysis for export binding and name (22509b7)
  • parser: fix simple params list and strict reserved check on func (635a41b), closes #295 #296
  • parser: fix unicode identifier value and check (36a5ef6)
  • parser: generator function should not skip duplication error (d3c953b)
  • parser: in strict mode, escaped future reserved can be used as identifier but not destructible (762f8c1)
  • parser: iteration/switch cannot across class static block boundry (c832eb6)
  • parser: new.target is allowed in class static block (2cec2a9)
  • parser: object literal ({a b}) is invalid (c069662), closes #73
  • parser: oct escape and \8 \9 are not allowed in template string if not tagged (e12d75d)
  • parser: only class static non-private property cannot be named 'prototype' (03ef7bc)
  • parser: partially fix duplicated proto check in parenthesis (e998b9c)
  • parser: private identifier should work in optional chaining (f22f7ad)
  • paser: fix strict mode check for arrow function (4ca184a)
  • paser: private identifier cannot be accessed on super (15d679d)
  • scanner: fix value for huge BigInt (a09b497)

chore

  • drop support of Nodejs < 18 (829835e)
  • reduce dist files to esm, cjs, and umd (962af5f)

... (truncated)

Changelog

Sourced from meriyah's changelog.

6.0.0 (2024-09-16)

Bug Fixes

  • lexer: identifier starts with unicode-escape needs ID_Start check (e1d5534)
  • lexer: in non-strict mode, future reserved keyword can be used as identifier (5764ad7)
  • lexer: no line break is allowed in regex literal (773208b)
  • lexer: private identifier can start with escaped unicode (85a39e7)
  • lexer: unicode escaped "let" can not be let keyword (406d72c)
  • parser: "arguments" is not allowed in class property initializer or static block (c9857c6)
  • parser: "use strict" directive could be after invalid string (527ea97), closes #149
  • parser: a newline may not precede the * token in a yield expression (e0eeb89)
  • parser: add missing import-attributes support in ExportNamedDeclaration (f7864a6), closes #289
  • parser: async function should not skip duplication error (94d41ae), closes #291
  • parser: catch block without catch-binding should have lexical scope (db7b3ae)
  • parser: class is implicit strict mode, but decorator before class is not (97f4927)
  • parser: class static block disallows "await" as identifier (4c7f2c3)
  • parser: class static block disllows "yield" as idenfifier (1cb0d65)
  • parser: class static block has no return statement (f2b73ee)
  • parser: dot property name can be escaped reserved or future reserved (eedce98)
  • parser: escaped reserved keyword can be used as class element name (b8e4b3c)
  • parser: fix an edge case of invalid escape in tagged template (118fdae)
  • parser: fix annexB behaviour (webcompat) of catch param (359dcbe)
  • parser: fix destruct pattern check (1e5e394)
  • parser: fix duplicated function params check (d0aeda6)
  • parser: fix duplicated proto check in async() and async() => {} (66ad497)
  • parser: fix early error on escaped oct and \8 \9 (33b68df)
  • parser: fix import.meta check, await check and await in static block (b269996)
  • parser: fix jsx parsing on '' (ad71155), closes #185
  • parser: fix jsx with comments in tag (a2e4767), closes #185
  • parser: fix onToken callback for template and jsx (407a2ca), closes #215 #216
  • parser: fix scoped analysis for export binding and name (22509b7)
  • parser: fix simple params list and strict reserved check on func (635a41b), closes #295 #296
  • parser: fix unicode identifier value and check (36a5ef6)
  • parser: generator function should not skip duplication error (d3c953b)
  • parser: in strict mode, escaped future reserved can be used as identifier but not destructible (762f8c1)
  • parser: iteration/switch cannot across class static block boundry (c832eb6)
  • parser: new.target is allowed in class static block (2cec2a9)
  • parser: object literal ({a b}) is invalid (c069662), closes #73
  • parser: oct escape and \8 \9 are not allowed in template string if not tagged (e12d75d)
  • parser: only class static non-private property cannot be named 'prototype' (03ef7bc)
  • parser: partially fix duplicated proto check in parenthesis (e998b9c)
  • parser: private identifier should work in optional chaining (f22f7ad)
  • paser: fix strict mode check for arrow function (4ca184a)
  • paser: private identifier cannot be accessed on super (15d679d)
  • scanner: fix value for huge BigInt (a09b497)

chore

  • drop support of Nodejs < 18 (829835e)

... (truncated)

Commits
  • 39e6cf9 6.0.0
  • c0d9e84 chore: update readme and package.json
  • 2102da2 chore: missed typo in bundle script
  • e73e755 chore: update readme
  • e070827 chore: update readme
  • 5d941e6 feat: remove option "directives"
  • 3acdf95 chore: remove outdated bench
  • 66ad497 fix(parser): fix duplicated proto check in async() and async() => {}
  • e998b9c fix(parser): partially fix duplicated proto check in parenthesis
  • b269996 fix(parser): fix import.meta check, await check and await in static block
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the dependencies group with 1 update: [meriyah](https://github.com/meriyah/meriyah).


Updates `meriyah` from 5.0.0 to 6.0.0
- [Release notes](https://github.com/meriyah/meriyah/releases)
- [Changelog](https://github.com/meriyah/meriyah/blob/main/CHANGELOG.md)
- [Commits](meriyah/meriyah@v5.0.0...v6.0.0)

---
updated-dependencies:
- dependency-name: meriyah
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Sep 16, 2024
@github-actions github-actions bot merged commit 0907e72 into master Sep 16, 2024
7 checks passed
@github-actions github-actions bot deleted the dependabot/npm_and_yarn/dependencies-11e325531d branch September 16, 2024 09:04
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants