Skip to content

Commit 4d4ed27

Browse files
committed
Mark version 8.14.1
1 parent 0daa290 commit 4d4ed27

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

AUTHORS

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,9 +89,11 @@ naoh
8989
Nauja
9090
Nicholas C. Zakas
9191
Nick Fitzgerald
92+
Norbiros
9293
Olivier Thomann
9394
Oskar Schöldström
9495
ota-meshi
96+
overlookmotel
9597
Paul Harper
9698
peakchen90
9799
Peter Rust

acorn/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,15 @@
1+
## 8.14.1 (2025-03-05)
2+
3+
### Bug fixes
4+
5+
Fix an issue where `await` expressions in class field initializers were inappropriately allowed.
6+
7+
Properly allow await inside an async arrow function inside a class field initializer.
8+
9+
Mention the source file name in syntax error messages when given.
10+
11+
Properly add an empty `attributes` property to every form of `ExportNamedDeclaration`.
12+
113
## 8.14.0 (2024-10-27)
214

315
### New features

acorn/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
],
1717
"./package.json": "./package.json"
1818
},
19-
"version": "8.14.0",
19+
"version": "8.14.1",
2020
"engines": {
2121
"node": ">=0.4.0"
2222
},

acorn/src/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ import {isIdentifierChar, isIdentifierStart} from "./identifier.js"
3131
import {Token} from "./tokenize.js"
3232
import {isNewLine, lineBreak, lineBreakG, nonASCIIwhitespace} from "./whitespace.js"
3333

34-
export const version = "8.14.0"
34+
export const version = "8.14.1"
3535
export {
3636
Parser,
3737
defaultOptions,

0 commit comments

Comments
 (0)