Skip to content

Commit

Permalink
Release version to 0.26.0
Browse files Browse the repository at this point in the history
Summary:
Release version to 0.26.0

See CHANGELOG.md

Reviewed By: SamChou19815

Differential Revision: D67477283

fbshipit-source-id: f18f952ac2ef74de217bade37b2e76123f6fa033
  • Loading branch information
gkz authored and facebook-github-bot committed Dec 20, 2024
1 parent 74ab1de commit 874b0c0
Show file tree
Hide file tree
Showing 8 changed files with 30 additions and 22 deletions.
8 changes: 8 additions & 0 deletions tools/hermes-parser/js/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## 0.26.0

### `hermes-parser`
* Support for class static blocks.
* Forbid `await`/`yield`/`arguments` in class field inits.
* Support for `const` type parameters in Flow (also in `hermes-estree`, `prettier-plugin-hermes-parser`).
* Experimental support for Flow pattern matching (also in `hermes-estree`, `hermes-eslint`, `hermes-transform`, `prettier-plugin-hermes-parser`).

## 0.25.1

### `babel-plugin-syntax-hermes-parser`
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "babel-plugin-syntax-hermes-parser",
"version": "0.25.1",
"version": "0.26.0",
"description": "Babel plugin which switches Babel to use the Hermes parser.",
"main": "dist/index.js",
"license": "MIT",
Expand All @@ -9,7 +9,7 @@
"url": "[email protected]:facebook/hermes.git"
},
"dependencies": {
"hermes-parser": "0.25.1"
"hermes-parser": "0.26.0"
},
"files": [
"dist",
Expand Down
10 changes: 5 additions & 5 deletions tools/hermes-parser/js/flow-api-translator/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "flow-api-translator",
"version": "0.25.1",
"version": "0.26.0",
"description": "Toolkit for creating Flow and TypeScript compatible libraries from Flow source code.",
"main": "dist/index.js",
"license": "MIT",
Expand All @@ -13,10 +13,10 @@
"@typescript-eslint/parser": "7.2.0",
"@typescript-eslint/visitor-keys": "7.2.0",
"flow-enums-runtime": "^0.0.6",
"hermes-eslint": "0.25.1",
"hermes-estree": "0.25.1",
"hermes-parser": "0.25.1",
"hermes-transform": "0.25.1",
"hermes-eslint": "0.26.0",
"hermes-estree": "0.26.0",
"hermes-parser": "0.26.0",
"hermes-transform": "0.26.0",
"typescript": "5.3.2"
},
"peerDependencies": {
Expand Down
6 changes: 3 additions & 3 deletions tools/hermes-parser/js/hermes-eslint/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hermes-eslint",
"version": "0.25.1",
"version": "0.26.0",
"description": "A custom parser for ESLint using the Hermes parser",
"main": "dist/index.js",
"license": "MIT",
Expand All @@ -16,7 +16,7 @@
],
"dependencies": {
"esrecurse": "^4.3.0",
"hermes-estree": "0.25.1",
"hermes-parser": "0.25.1"
"hermes-estree": "0.26.0",
"hermes-parser": "0.26.0"
}
}
2 changes: 1 addition & 1 deletion tools/hermes-parser/js/hermes-estree/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hermes-estree",
"version": "0.25.1",
"version": "0.26.0",
"description": "Flow types for the Flow-ESTree spec produced by the hermes parser",
"main": "dist/index.js",
"license": "MIT",
Expand Down
4 changes: 2 additions & 2 deletions tools/hermes-parser/js/hermes-parser/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hermes-parser",
"version": "0.25.1",
"version": "0.26.0",
"description": "A JavaScript parser built from the Hermes engine",
"main": "dist/index.js",
"license": "MIT",
Expand All @@ -9,7 +9,7 @@
"url": "[email protected]:facebook/hermes.git"
},
"dependencies": {
"hermes-estree": "0.25.1"
"hermes-estree": "0.26.0"
},
"devDependencies": {
"@babel/parser": "7.7.4",
Expand Down
10 changes: 5 additions & 5 deletions tools/hermes-parser/js/hermes-transform/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "hermes-transform",
"version": "0.25.1",
"version": "0.26.0",
"description": "Tools built on top of Hermes-ESTree to enable codebase transformation",
"main": "dist/index.js",
"license": "MIT",
Expand All @@ -12,14 +12,14 @@
"@babel/code-frame": "^7.16.0",
"esquery": "^1.4.0",
"flow-enums-runtime": "^0.0.6",
"hermes-eslint": "0.25.1",
"hermes-estree": "0.25.1",
"hermes-parser": "0.25.1",
"hermes-eslint": "0.26.0",
"hermes-estree": "0.26.0",
"hermes-parser": "0.26.0",
"string-width": "4.2.3"
},
"peerDependencies": {
"prettier": "^3.0.0 || ^2.7.1",
"prettier-plugin-hermes-parser": "0.25.1"
"prettier-plugin-hermes-parser": "0.26.0"
},
"files": [
"dist",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "prettier-plugin-hermes-parser",
"version": "0.25.1",
"version": "0.26.0",
"description": "Hermes parser plugin for Prettier.",
"main": "dist/index.js",
"license": "MIT",
Expand All @@ -9,9 +9,9 @@
"url": "[email protected]:facebook/hermes.git"
},
"dependencies": {
"hermes-estree": "0.25.1",
"hermes-parser": "0.25.1",
"prettier-plugin-hermes-parser": "0.25.1"
"hermes-estree": "0.26.0",
"hermes-parser": "0.26.0",
"prettier-plugin-hermes-parser": "0.26.0"
},
"peerDependencies": {
"prettier": "^3.0.0 || ^2.7.1"
Expand Down

0 comments on commit 874b0c0

Please sign in to comment.