From e0dd391ca1f674eeb4b27aeef1f728e24eccce53 Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Thu, 26 Oct 2023 20:04:30 +0200 Subject: [PATCH] Mark version 8.11.0 --- AUTHORS | 1 + acorn/CHANGELOG.md | 14 ++++++++++++++ acorn/package.json | 2 +- acorn/src/index.js | 2 +- 4 files changed, 17 insertions(+), 2 deletions(-) diff --git a/AUTHORS b/AUTHORS index bfdb6a5d0..63a094e92 100644 --- a/AUTHORS +++ b/AUTHORS @@ -13,6 +13,7 @@ Arian Stolwijk Artem Govorov Benedikt Meurer Ben Page +bojavou Boopesh Mahendran Bradley Heinz Brandon Mills diff --git a/acorn/CHANGELOG.md b/acorn/CHANGELOG.md index 12464cfdb..8c2ae39c9 100644 --- a/acorn/CHANGELOG.md +++ b/acorn/CHANGELOG.md @@ -1,3 +1,17 @@ +## 8.11.0 (2023-10-26) + +### Bug fixes + +Fix an issue where tokenizing (without parsing) an object literal with a property named `class` or `function` could, in some circumstance, put the tokenizer into an invalid state. + +Fix an issue where a slash after a call to a propery named the same as some keywords would be tokenized as a regular expression. + +### New features + +Upgrade to Unicode 15.1. + +Use a set of new, much more precise, TypeScript types. + ## 8.10.0 (2023-07-05) ### New features diff --git a/acorn/package.json b/acorn/package.json index 4243aa354..67e0ed412 100644 --- a/acorn/package.json +++ b/acorn/package.json @@ -16,7 +16,7 @@ ], "./package.json": "./package.json" }, - "version": "8.10.0", + "version": "8.11.0", "engines": { "node": ">=0.4.0" }, diff --git a/acorn/src/index.js b/acorn/src/index.js index ea679c298..9e8095270 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.10.0" +export const version = "8.11.0" export { Parser, defaultOptions,