[Snyk] Upgrade jscodeshift from 0.1.6 to 0.7.0 #3
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Snyk has created this PR to upgrade jscodeshift from 0.1.6 to 0.7.0.
ℹ️ Keep your dependencies up-to-date. This makes it easier to fix existing vulnerabilities and to more quickly identify and fix newly disclosed vulnerabilities when they affect your project.The recommended version fixes:
npm:minimatch:20160620
SNYK-JS-LODASH-73638
SNYK-JS-LODASH-450202
SNYK-JS-MINIMIST-559764
npm:lodash:20180130
SNYK-JS-LODASH-73639
npm:braces:20180219
Release notes
Package name: jscodeshift
-
0.7.0 - 2019-12-11
- Added jest snapshot utils (#297, @dogoku)
- Moved from BSD to MIT license
- No longer throw an error when calling jscodeshift on a non-existent path (#334, @threepointone)
- Preserve the original file extension in remote files (#317, @samselikoff)
-
0.6.4 - 2019-04-30
- Allow writing tests in TypeScript (#308)
- Better handling of
-
0.6.3 - 2019-01-19
- Don't throw an error when jscodeshift processes an empty set of files (#295, @skovhus).
- Custom/unknown CLI parameters are parsed as JSON, just like nomnom used to do.
-
0.6.2 - 2018-12-06
- Do not transpile object rest/spread in transform code if supported by running
- Presets and plugins passed to
-
0.6.1 - 2018-12-05
- Tranform files can be written in Typescript. If the file extension of the
- The preset and plugins for converting the transform file itself via babeljs
- Typescript parses use
-
0.6.0 - 2018-12-04
- New CLI option
- New CLI option
- New API in transforms:
- Support for Typescript source code, via babylon ( #286 ; @brieb). Use
- Updated babylon to v7 adding support for newer flow features (#282 , @wanderley )
- Updated recast to v0.16, which includes a bunch of printing improvments (#289 , @majapw )
- Enable more features in babylon and flow (#278 , @mjesun ; #281 , @jbrown215 )
- Improve handling of large lists of files (62b12ad, 9c83c39)
- JSXElements's
- More reliable printing to stdout (62b12ad)
- Replaces deprecated nomnom with own implementation (a2becc5)
- Remove direct dependency on lodash (4701096)
-
0.5.1 - 2018-06-05
-
0.5.0 - 2018-03-07
- Bump recast and babylon to support JSX fragments (#239)
- Add
- Allow specifying a testName for inline tests (#218)
- Add
- Fix error handling for http (#242)
- Perf: replace async with neo-async (#241)
- Fix
- Fix
-
0.4.1 - 2018-02-20
-
0.4.0 - 2017-12-07
-
0.3.32 - 2017-06-20
-
0.3.31 - 2017-06-13
-
0.3.30 - 2016-10-25
-
0.3.29 - 2016-09-30
-
0.3.28 - 2016-08-15
-
0.3.27 - 2016-07-29
-
0.3.26 - 2016-07-18
-
0.3.25 - 2016-06-23
-
0.3.24 - 2016-06-22
-
0.3.23 - 2016-06-22
-
0.3.22 - 2016-06-20
-
0.3.21 - 2016-06-20
-
0.3.20 - 2016-04-24
-
0.3.19 - 2016-03-27
-
0.3.18 - 2016-03-18
-
0.3.17 - 2016-03-17
-
0.3.16 - 2016-03-15
-
0.3.15 - 2016-03-15
-
0.3.14 - 2016-03-09
-
0.3.13 - 2016-01-25
-
0.3.12 - 2016-01-07
-
0.3.11 - 2015-12-19
-
0.3.10 - 2015-12-07
-
0.3.9 - 2015-11-18
-
0.3.8 - 2015-10-21
-
0.3.7 - 2015-09-03
-
0.3.6 - 2015-08-21
-
0.3.5 - 2015-08-12
-
0.3.4 - 2015-08-06
-
0.3.3 - 2015-07-31
-
0.3.2 - 2015-07-30
-
0.3.1 - 2015-07-30
-
0.3.0 - 2015-07-28
-
0.2.0 - 2015-07-21
-
0.1.6 - 2015-07-16
from jscodeshift GitHub release notesAdded
Changed
Fixed
Changed
.gitingorefiles: Ignore comments and support\r\nline breaks (#306)Fixed
renameToshould not rename class properties (#296, @henryqdineen).Changed
@babel/register/@babel/preset-envis configured to not transpile anylanguage features that the running Node process supports. That means if you use
features in your transform code supported by the Node version you are running,
they will be left as is. Most of ES2015 is actually supported since Node v6.
Node version.
Fixed
@babel/registerare now properly named andloaded.
Added
transform file is
.tsor.tsx,@babel/preset-typescriptis used toconvert them. This requires the
--babeloption to be set (which it is bydefault). ( #287 , @brieb )
Changed
have been updated to work with babel v7. This included removing
babel-preset-es2015andbabel-preset-stage-1in favor of@babel/preset-env. Only@babel/proposal-class-propertiesand@babel/proposal-object-rest-spreadare enabled as experimental features. Ifyou want to use other's in your transform file, please create a PR.
Fixed
@babel/parserinstead of Babylon ( #291, @elliottsj )Bumped
micromatch=> v3.1.10, which doesn't (indirectly) depend onrandomatic<v3 anymore (see #292).
A bunch of changes to get jscodeshift in a better shape. This is minor version update because important dependencies and parser configurations have changed.
New
--parser-config: This option accepts a path to a JSON file and overrides the default options for flow or babylon. This allows you to tweak parser settings (e.g. legacy decorators). (46d250f)--stdin: If provided, the list of files/directories is read from stdin. This makes it easier to pass large lists of files. (b6eaa0a)api.reportlets you print arbitrary text to stdout. Useful if another tools consumes jscodeshift's stdout. (c902a00) Example:--parser=tsor--parser=tsx.Improvements
Fixes
hasAttributesmethod understands value-less Boolean attributes (#277 , @artemruts )Internal
Bump version to 0.5.1 for publishing
New
dynamicImportplugin tobabylonparser. (#208)some()andevery()methods for Collection (#216)Fixed/Improved
renameTorenaming React component prop name unexpectedly (#220)renameTonot taking property shorthands into account (#211)Bump version to 0.4.1 for publishing
0.4.0
Commit messages
Package name: jscodeshift
Compare
Note: You are seeing this because you or someone else with access to this repository has authorized Snyk to open upgrade PRs.
For more information:
🧐 View latest project report
🛠 Adjust upgrade PR settings
🔕 Ignore this dependency or unsubscribe from future upgrade PRs