Skip to content

Commit 5b9d16c

Browse files
committed
Mark version 8.17.0
1 parent 449f9fa commit 5b9d16c

3 files changed

Lines changed: 16 additions & 2 deletions

File tree

acorn/CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,17 @@
1+
## 8.17.0 (2026-06-11)
2+
3+
### New features
4+
5+
The new `strict` option can be used to start script sources in strict mode.
6+
7+
### Bug fixes
8+
9+
Fix a number of corner case bugs when `using` or `await using` appear in `for` loop specs.
10+
11+
Disallow `new super()` expressions.
12+
13+
Don't allow the conditional in a ternary expression to be a (naked) arrow function.
14+
115
## 8.16.0 (2026-02-19)
216

317
### 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.16.0",
19+
"version": "8.17.0",
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
@@ -29,7 +29,7 @@ import {isIdentifierChar, isIdentifierStart} from "./identifier.js"
2929
import {Token} from "./tokenize.js"
3030
import {isNewLine, lineBreak, lineBreakG, nonASCIIwhitespace} from "./whitespace.js"
3131

32-
export const version = "8.16.0"
32+
export const version = "8.17.0"
3333
export {
3434
Parser,
3535
defaultOptions,

0 commit comments

Comments
 (0)