You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: deps/acorn/acorn/CHANGELOG.md
+46-2
Original file line number
Diff line number
Diff line change
@@ -1,3 +1,47 @@
1
+
## 7.1.1 (2020-03-01)
2
+
3
+
### Bug fixes
4
+
5
+
Treat `\8` and `\9` as invalid escapes in template strings.
6
+
7
+
Allow unicode escapes in property names that are keywords.
8
+
9
+
Don't error on an exponential operator expression as argument to `await`.
10
+
11
+
More carefully check for valid UTF16 surrogate pairs in regexp validator.
12
+
13
+
## 7.1.0 (2019-09-24)
14
+
15
+
### Bug fixes
16
+
17
+
Disallow trailing object literal commas when ecmaVersion is less than 5.
18
+
19
+
### New features
20
+
21
+
Add a static `acorn` property to the `Parser` class that contains the entire module interface, to allow plugins to access the instance of the library that they are acting on.
22
+
23
+
## 7.0.0 (2019-08-13)
24
+
25
+
### Breaking changes
26
+
27
+
Changes the node format for dynamic imports to use the `ImportExpression` node type, as defined in [ESTree](https://github.com/estree/estree/blob/master/es2020.md#importexpression).
28
+
29
+
Makes 10 (ES2019) the default value for the `ecmaVersion` option.
30
+
31
+
## 6.3.0 (2019-08-12)
32
+
33
+
### New features
34
+
35
+
`sourceType: "module"` can now be used even when `ecmaVersion` is less than 6, to parse module-style code that otherwise conforms to an older standard.
36
+
37
+
## 6.2.1 (2019-07-21)
38
+
39
+
### Bug fixes
40
+
41
+
Fix bug causing Acorn to treat some characters as identifier characters that shouldn't be treated as such.
42
+
43
+
Fix issue where setting the `allowReserved` option to `"never"` allowed reserved words in some circumstances.
44
+
1
45
## 6.2.0 (2019-07-04)
2
46
3
47
### Bug fixes
@@ -8,9 +52,9 @@ Disallow binding `let` in patterns.
8
52
9
53
### New features
10
54
11
-
Support bigint syntax with `ecmaVersion` >= 10.
55
+
Support bigint syntax with `ecmaVersion` >= 11.
12
56
13
-
Support dynamic `import` syntax with `ecmaVersion` >= 10.
57
+
Support dynamic `import` syntax with `ecmaVersion` >= 11.
0 commit comments