From 05d560abcc264829186bbb13cdd5aae9147cdd17 Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Mon, 27 Dec 2021 11:31:27 +0100 Subject: [PATCH] Mark version 8.7.0 --- AUTHORS | 4 ++++ acorn/CHANGELOG.md | 14 ++++++++++++++ acorn/package.json | 2 +- acorn/src/index.js | 2 +- 4 files changed, 20 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index a93c2fa21..20023779d 100644 --- a/AUTHORS +++ b/AUTHORS @@ -21,11 +21,14 @@ Charmander Chris McKnight Conrad Irwin Cyril Auburtin +Daniel Nalborczyk Daniel Tschinder David Bonnet +daychongyang dnalborczyk Domenico Matteo ehmicky +ericrannaud Eugene Obrezkov Fabien LOISON Felix Maier @@ -92,6 +95,7 @@ Sebastian McKenzie Shahar Soel Sheel Bedi Simen Bekkhus +sosukesuzuki susiwen susiwen8 Teddy Katz diff --git a/acorn/CHANGELOG.md b/acorn/CHANGELOG.md index 278fa50c9..d19b5f1ba 100644 --- a/acorn/CHANGELOG.md +++ b/acorn/CHANGELOG.md @@ -1,3 +1,17 @@ +## 8.7.0 (2021-12-27) + +### New features + +Support quoted export names. + +Upgrade to Unicode 14. + +Add support for Unicode 13 properties in regular expressions. + +### Bug fixes + +Use a loop to find line breaks, because the existing regexp search would overrun the end of the searched range and waste a lot of time in minified code. + ## 8.6.0 (2021-11-18) ### Bug fixes diff --git a/acorn/package.json b/acorn/package.json index e242a235e..c7b5cbb53 100644 --- a/acorn/package.json +++ b/acorn/package.json @@ -16,7 +16,7 @@ ], "./package.json": "./package.json" }, - "version": "8.6.0", + "version": "8.7.0", "engines": {"node": ">=0.4.0"}, "maintainers": [ { diff --git a/acorn/src/index.js b/acorn/src/index.js index 8a742157a..a988960bd 100644 --- a/acorn/src/index.js +++ b/acorn/src/index.js @@ -31,7 +31,7 @@ import {isIdentifierChar, isIdentifierStart} from "./identifier.js" import {Token} from "./tokenize.js" import {isNewLine, lineBreak, lineBreakG, nonASCIIwhitespace} from "./whitespace.js" -export const version = "8.6.0" +export const version = "8.7.0" export { Parser, defaultOptions,