Skip to content

Commit cdec20e

Browse files
pietervfacebook-github-bot
authored andcommitted
Release version to 0.23.1
Reviewed By: alexmckenley Differential Revision: D60294907 fbshipit-source-id: c7b4a83329140049a59f02f1a370306caad36d65
1 parent 0a8078a commit cdec20e

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.23.1
2+
3+
### `hermes-transform`
4+
* Fixed an issue that caused an error when trying to print a `Program` with an empty `body` array and a docblock comment.
5+
6+
### `flow-api-translator`
7+
* Added support for `as` expressions in parent classes like `class A extends (Foo as Bar)`.
8+
19
## 0.23.0
210

311
### `hermes-estree`

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.23.0",
3+
"version": "0.23.1",
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.23.0"
12+
"hermes-parser": "0.23.1"
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.23.0",
3+
"version": "0.23.1",
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.23.0",
17-
"hermes-estree": "0.23.0",
18-
"hermes-parser": "0.23.0",
19-
"hermes-transform": "0.23.0",
16+
"hermes-eslint": "0.23.1",
17+
"hermes-estree": "0.23.1",
18+
"hermes-parser": "0.23.1",
19+
"hermes-transform": "0.23.1",
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.23.0",
3+
"version": "0.23.1",
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.23.0",
20-
"hermes-parser": "0.23.0"
19+
"hermes-estree": "0.23.1",
20+
"hermes-parser": "0.23.1"
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.23.0",
3+
"version": "0.23.1",
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.23.0",
3+
"version": "0.23.1",
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.23.0"
12+
"hermes-estree": "0.23.1"
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.23.0",
3+
"version": "0.23.1",
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.23.0",
16-
"hermes-estree": "0.23.0",
17-
"hermes-parser": "0.23.0",
15+
"hermes-eslint": "0.23.1",
16+
"hermes-estree": "0.23.1",
17+
"hermes-parser": "0.23.1",
1818
"string-width": "4.2.3"
1919
},
2020
"peerDependencies": {
2121
"prettier": "^3.0.0 || ^2.7.1",
22-
"prettier-plugin-hermes-parser": "0.23.0"
22+
"prettier-plugin-hermes-parser": "0.23.1"
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.23.0",
3+
"version": "0.23.1",
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.23.0",
13-
"hermes-parser": "0.23.0",
14-
"prettier-plugin-hermes-parser": "0.23.0"
12+
"hermes-estree": "0.23.1",
13+
"hermes-parser": "0.23.1",
14+
"prettier-plugin-hermes-parser": "0.23.1"
1515
},
1616
"peerDependencies": {
1717
"prettier": "^3.0.0 || ^2.7.1"

0 commit comments

Comments
 (0)