Skip to content

Commit 874b0c0

Browse files
gkzfacebook-github-bot
authored andcommitted
Release version to 0.26.0
Summary: Release version to 0.26.0 See CHANGELOG.md Reviewed By: SamChou19815 Differential Revision: D67477283 fbshipit-source-id: f18f952ac2ef74de217bade37b2e76123f6fa033
1 parent 74ab1de commit 874b0c0

File tree

8 files changed

+30
-22
lines changed

8 files changed

+30
-22
lines changed

tools/hermes-parser/js/CHANGELOG.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## 0.26.0
2+
3+
### `hermes-parser`
4+
* Support for class static blocks.
5+
* Forbid `await`/`yield`/`arguments` in class field inits.
6+
* Support for `const` type parameters in Flow (also in `hermes-estree`, `prettier-plugin-hermes-parser`).
7+
* Experimental support for Flow pattern matching (also in `hermes-estree`, `hermes-eslint`, `hermes-transform`, `prettier-plugin-hermes-parser`).
8+
19
## 0.25.1
210

311
### `babel-plugin-syntax-hermes-parser`

tools/hermes-parser/js/babel-plugin-syntax-hermes-parser/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "babel-plugin-syntax-hermes-parser",
3-
"version": "0.25.1",
3+
"version": "0.26.0",
44
"description": "Babel plugin which switches Babel to use the Hermes parser.",
55
"main": "dist/index.js",
66
"license": "MIT",
@@ -9,7 +9,7 @@
99
"url": "[email protected]:facebook/hermes.git"
1010
},
1111
"dependencies": {
12-
"hermes-parser": "0.25.1"
12+
"hermes-parser": "0.26.0"
1313
},
1414
"files": [
1515
"dist",

tools/hermes-parser/js/flow-api-translator/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "flow-api-translator",
3-
"version": "0.25.1",
3+
"version": "0.26.0",
44
"description": "Toolkit for creating Flow and TypeScript compatible libraries from Flow source code.",
55
"main": "dist/index.js",
66
"license": "MIT",
@@ -13,10 +13,10 @@
1313
"@typescript-eslint/parser": "7.2.0",
1414
"@typescript-eslint/visitor-keys": "7.2.0",
1515
"flow-enums-runtime": "^0.0.6",
16-
"hermes-eslint": "0.25.1",
17-
"hermes-estree": "0.25.1",
18-
"hermes-parser": "0.25.1",
19-
"hermes-transform": "0.25.1",
16+
"hermes-eslint": "0.26.0",
17+
"hermes-estree": "0.26.0",
18+
"hermes-parser": "0.26.0",
19+
"hermes-transform": "0.26.0",
2020
"typescript": "5.3.2"
2121
},
2222
"peerDependencies": {

tools/hermes-parser/js/hermes-eslint/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hermes-eslint",
3-
"version": "0.25.1",
3+
"version": "0.26.0",
44
"description": "A custom parser for ESLint using the Hermes parser",
55
"main": "dist/index.js",
66
"license": "MIT",
@@ -16,7 +16,7 @@
1616
],
1717
"dependencies": {
1818
"esrecurse": "^4.3.0",
19-
"hermes-estree": "0.25.1",
20-
"hermes-parser": "0.25.1"
19+
"hermes-estree": "0.26.0",
20+
"hermes-parser": "0.26.0"
2121
}
2222
}

tools/hermes-parser/js/hermes-estree/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hermes-estree",
3-
"version": "0.25.1",
3+
"version": "0.26.0",
44
"description": "Flow types for the Flow-ESTree spec produced by the hermes parser",
55
"main": "dist/index.js",
66
"license": "MIT",

tools/hermes-parser/js/hermes-parser/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hermes-parser",
3-
"version": "0.25.1",
3+
"version": "0.26.0",
44
"description": "A JavaScript parser built from the Hermes engine",
55
"main": "dist/index.js",
66
"license": "MIT",
@@ -9,7 +9,7 @@
99
"url": "[email protected]:facebook/hermes.git"
1010
},
1111
"dependencies": {
12-
"hermes-estree": "0.25.1"
12+
"hermes-estree": "0.26.0"
1313
},
1414
"devDependencies": {
1515
"@babel/parser": "7.7.4",

tools/hermes-parser/js/hermes-transform/package.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "hermes-transform",
3-
"version": "0.25.1",
3+
"version": "0.26.0",
44
"description": "Tools built on top of Hermes-ESTree to enable codebase transformation",
55
"main": "dist/index.js",
66
"license": "MIT",
@@ -12,14 +12,14 @@
1212
"@babel/code-frame": "^7.16.0",
1313
"esquery": "^1.4.0",
1414
"flow-enums-runtime": "^0.0.6",
15-
"hermes-eslint": "0.25.1",
16-
"hermes-estree": "0.25.1",
17-
"hermes-parser": "0.25.1",
15+
"hermes-eslint": "0.26.0",
16+
"hermes-estree": "0.26.0",
17+
"hermes-parser": "0.26.0",
1818
"string-width": "4.2.3"
1919
},
2020
"peerDependencies": {
2121
"prettier": "^3.0.0 || ^2.7.1",
22-
"prettier-plugin-hermes-parser": "0.25.1"
22+
"prettier-plugin-hermes-parser": "0.26.0"
2323
},
2424
"files": [
2525
"dist",

tools/hermes-parser/js/prettier-plugin-hermes-parser/package.json

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "prettier-plugin-hermes-parser",
3-
"version": "0.25.1",
3+
"version": "0.26.0",
44
"description": "Hermes parser plugin for Prettier.",
55
"main": "dist/index.js",
66
"license": "MIT",
@@ -9,9 +9,9 @@
99
"url": "[email protected]:facebook/hermes.git"
1010
},
1111
"dependencies": {
12-
"hermes-estree": "0.25.1",
13-
"hermes-parser": "0.25.1",
14-
"prettier-plugin-hermes-parser": "0.25.1"
12+
"hermes-estree": "0.26.0",
13+
"hermes-parser": "0.26.0",
14+
"prettier-plugin-hermes-parser": "0.26.0"
1515
},
1616
"peerDependencies": {
1717
"prettier": "^3.0.0 || ^2.7.1"

0 commit comments

Comments
 (0)