-
-
Notifications
You must be signed in to change notification settings - Fork 5.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fa5ec75
commit a9a7f4e
Showing
10 changed files
with
20 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
{ | ||
"version": "7.5.3", | ||
"version": "7.5.4", | ||
"changelog": { | ||
"repo": "babel/babel", | ||
"cacheDir": ".changelog", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@babel/core", | ||
"version": "7.5.0", | ||
"version": "7.5.4", | ||
"description": "Babel compiler core.", | ||
"main": "lib/index.js", | ||
"author": "Sebastian McKenzie <[email protected]>", | ||
|
@@ -35,7 +35,7 @@ | |
"dependencies": { | ||
"@babel/code-frame": "^7.0.0", | ||
"@babel/generator": "^7.5.0", | ||
"@babel/helpers": "^7.5.0", | ||
"@babel/helpers": "^7.5.4", | ||
"@babel/parser": "^7.5.0", | ||
"@babel/template": "^7.4.4", | ||
"@babel/traverse": "^7.5.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@babel/helpers", | ||
"version": "7.5.3", | ||
"version": "7.5.4", | ||
"description": "Collection of helper functions used by Babel transforms.", | ||
"author": "Sebastian McKenzie <[email protected]>", | ||
"homepage": "https://babeljs.io/", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@babel/preset-env", | ||
"version": "7.5.3", | ||
"version": "7.5.4", | ||
"description": "A Babel preset for each environment.", | ||
"author": "Henry Zhu <[email protected]>", | ||
"homepage": "https://babeljs.io/", | ||
|
@@ -19,7 +19,7 @@ | |
"@babel/plugin-proposal-async-generator-functions": "^7.2.0", | ||
"@babel/plugin-proposal-dynamic-import": "^7.5.0", | ||
"@babel/plugin-proposal-json-strings": "^7.2.0", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.5.3", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.5.4", | ||
"@babel/plugin-proposal-optional-catch-binding": "^7.2.0", | ||
"@babel/plugin-proposal-unicode-property-regex": "^7.4.4", | ||
"@babel/plugin-syntax-async-generators": "^7.2.0", | ||
|
@@ -70,7 +70,7 @@ | |
}, | ||
"devDependencies": { | ||
"@babel/cli": "^7.5.0", | ||
"@babel/core": "^7.5.0", | ||
"@babel/core": "^7.5.4", | ||
"@babel/helper-fixtures": "^7.4.4", | ||
"@babel/helper-plugin-test-runner": "^7.0.0", | ||
"@babel/plugin-syntax-dynamic-import": "^7.2.0", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
a9a7f4e
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you have any idea why the On master branch Github action is now failing? None of your releases past 7.5.0 have been publishing successfully to npm in the last 10 days...
a9a7f4e
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's because the "is on master branch" gets executed twice, and GitHub kills it the second time. Apart from that, everything is successful.
a9a7f4e
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah ok, I can see that @babel/core on npm is at 7.5.4. I previously thought that this issue might be what was keeping @babel/cli on npm at 7.5.0 (since I need to update to fix the lodash vulnerability), but I don't know if @babel/core and @babel/cli should always have the same release version or if it normal for @babel/core to be a few version numbers ahead of @babel/cli.

a9a7f4e
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, we only release packages that actually changed
a9a7f4e
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks for all your help and clarification! I eagerly await for the next release of @babel/cli so that Github can stop sending me lodash vulnerability notifications.