From fcb15ff8715481fe02a456685f7b92eba74a4d85 Mon Sep 17 00:00:00 2001 From: Marijn Haverbeke Date: Fri, 29 Dec 2023 10:03:05 +0100 Subject: [PATCH] Mark version 8.11.3 --- AUTHORS | 3 ++- acorn/CHANGELOG.md | 10 ++++++++++ acorn/package.json | 2 +- acorn/src/index.js | 2 +- 4 files changed, 14 insertions(+), 3 deletions(-) diff --git a/AUTHORS b/AUTHORS index e812fe01..a2c2bdfd 100644 --- a/AUTHORS +++ b/AUTHORS @@ -44,6 +44,7 @@ Forbes Lindesay Gilad Peleg HonkingGoose Huáng Jùnliàng +ibr4qr impinball Ingvar Stepanyan Jackson Ray Hamilton @@ -103,7 +104,6 @@ Richard Gibson Rich Harris Robert Palmer Rouven Weßling -rwalle Sebastian McKenzie Shahar Soel Sheel Bedi @@ -120,6 +120,7 @@ Tony Ross Toru Nagashima tuesmiddt tyrealhu +Vanilla Victor Homyakov Vladislav Tupikin Wexpo Lyu diff --git a/acorn/CHANGELOG.md b/acorn/CHANGELOG.md index 02a4b546..eb848a58 100644 --- a/acorn/CHANGELOG.md +++ b/acorn/CHANGELOG.md @@ -1,3 +1,13 @@ +## 8.11.3 (2023-12-29) + +### Bug fixes + +Add `Function` and `Class` to the `AggregateType` type, so that they can be used in walkers without raising a type error. + +Make sure `onToken` get an `import` keyword token when parsing `import.meta`. + +Fix a bug where `.loc.start` could be undefined for `new.target` `meta` nodes. + ## 8.11.2 (2023-10-27) ### Bug fixes diff --git a/acorn/package.json b/acorn/package.json index 430603dc..1b8dc76a 100644 --- a/acorn/package.json +++ b/acorn/package.json @@ -16,7 +16,7 @@ ], "./package.json": "./package.json" }, - "version": "8.11.2", + "version": "8.11.3", "engines": { "node": ">=0.4.0" }, diff --git a/acorn/src/index.js b/acorn/src/index.js index e91af879..14d7b5fe 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.11.2" +export const version = "8.11.3" export { Parser, defaultOptions,