Update babel-eslint to the latest version 🚀
Version 8.0.0 of babel-eslint just got published.
| Dependency | babel-eslint |
|---|---|
| Current Version | 7.2.3 |
| Type | devDependency |
The version 8.0.0 is not covered by your current version range.
Without accepting this pull request your project will work just like it did before. There might be a bunch of new features, fixes and perf improvements that the maintainers worked on for you though.
I recommend you look into these changes and try to get onto the latest version of babel-eslint. Given that you have a decent test suite, a passing build is a strong indicator that you can take advantage of these changes by merging the proposed change into your project. Otherwise this branch is a great starting point for you to work on the update.
Release Notes
v8.0.08.0.0
No major changes, just updating babel deps to v7
Commits
The new version differs by 22 commits.
905887c8.0.049493e4update to beta.042d0c5bRemove already fixed workaround (#508)25bd2088.0.0-alpha.171468905alpha.1757c133e8.0.0-alpha.151e41162update (#504)c31b577Readme update usage section (#501) [skip ci]c2626f9Update eslint to the latest version 🚀 (#500)3c6b2dechore(package): update husky to version 0.14.0 (#498)e052d5aUpdate install instructions to use latest stable release (#497) [skip ci]8e3e0888.0.0-alpha.13f757e22Merge pull request #493 from danez/regression-test5736be6Update babylon37f9242Add Prettier (#491)
There are 22 commits in total.
See the full diff
Not sure how things should work exactly?
There is a collection of frequently asked questions and of course you may always ask my humans.
Your Greenkeeper Bot :palm_tree:
Version 8.0.1 just got published.
Version 8.0.2 just got published.
Update to this version instead 🚀
Commits
The new version differs by 8 commits ahead by 8, behind by 1.
a0fbd508.0.22004b91require correct depsfa56d21Always use unpad (#535)295091dAllow ^ version for babel dependencies (#534)d3b8519fix(package): update babylon to version 7.0.0-beta.31 (#533)54ab4ac8.0.1c1a7882Update README.md support (#531) [skip ci]51100c9chore(package): update mocha to version 4.0.0 (#524)
See the full diff
Version 8.0.3 just got published.
Version 8.1.0 just got published.
Update to this version instead 🚀
Release Notes
v8.1.0Use ESLint's API to customize scope analysis and avoid monkeypatching: #542
Version 8.1.1 just got published.
Version 8.1.2 just got published.
Version 8.2.0 just got published.
Version 8.2.1 just got published.
Version 8.2.2 just got published.
Version 8.2.3 just got published.
Version 8.2.4 just got published.
Update to this version instead 🚀
Commits
The new version differs by 11 commits.
2bd85088.2.45881648Add test for template string with object with template string inside (#639)476426aSupport OptionalMemberExpression with scope too (#634)92874d4Drop node4 in travisd2ac299Bump Babel depse63962drefactor: rename babylon to @babel/parser873f02fFix converting template types to handle nested templates (#610)74a3207Fix token types for experimental operators (#632)e802577Add support for the optional chaining operator (#630)ebc46e1don't require unpad per test fixture, fixes #572 (#618)9641e4bupdates readme for latest eslint & babel-eslint (#607) [skip ci]
See the full diff
Version 8.2.5 just got published.
Version 8.2.6 just got published.
Update to this version instead 🚀
Commits
The new version differs by 2 commits.
b9067fa8.2.6c797a36pin to [email protected]
See the full diff
Version 9.0.0 just got published.
Update to this version instead 🚀
Commits
The new version differs by 15 commits ahead by 15, behind by 2.
6aa8b6f9.0.0c7ee9aeBump to [email protected] 🎉 (#676)3ece549Docs: Make the default parserOptions more explicit (#673)0b36951Add logical assignment plugin (#674)5856ff5Bump some devDeps45938d9build(deps): upgrade @babel/* to 7.0.0-rc.2 (#668)bc978759.0.0-beta.374c5d62update lock6a45632chore - fixing eslint-scope to a safe version; resolves #656. (#657)e0119e09.0.0-beta.2198964bMerge pull request #645 from rubennorte/support-new-flow-syntax-in-scope-analysis9b06e1fAdded failing test for variables used in type parameters8948d83Upgrade Babel to v7.0.0-beta.52 (#650)4882b299.0.0-beta.115e8d6fBreaking: Upgraded Babel to 7.0.0-beta.51 (#642)
See the full diff
- The
devDependencybabel-eslint was updated from7.2.3to10.0.0.
Update to this version instead 🚀
Release Notes for v10.0.0
v10.0.0
Small breaking change: add a peerDependency starting from the ESLint version that added a parser feature that we were monkeypatching before (and drop that code). If already using ESLint 5 shouldn't be any different.
- Bugfix for
TypeAlias: #584
/* @flow */
type Node<T> = { head: T; tail: Node<T> }
// or
type File = {chunks: Array<Chunk>}
type Chunk = {file: File}
- The
devDependencybabel-eslint was updated from7.2.3to10.0.1.
Update to this version instead 🚀
Release Notes for v10.0.1
v10.0.1
- Reverting #584
The TypeAlias "conversion" to a function has issues. Sounds like we need to rethink the change, most likely we can just actually change the scoping rather than hardcode an AST change.
- The
devDependencybabel-eslint was updated from7.2.3to10.0.2.
Update to this version instead 🚀
Release Notes for v10.0.2
Fixes #772