Skip to content

Commit

Permalink
Merge branch 'main' into changesets
Browse files Browse the repository at this point in the history
  • Loading branch information
trivikr authored Nov 5, 2024
2 parents 916782b + af78edc commit 0169599
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 3 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,12 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased]
<!-- Add new changes here -->

## [17.1.1] 2024-10-31

### Fixed
- Republished with `temp` dependency properly removed (#638, thanks @trivikr for reporting)

## [17.1.0] 2024-10-30

### Added
- `pkg.pr.new` will now be used to build an npm pakage for each commit to the repo, allowing you to more easily test changes or use new features before an official release is cut. (#622, @Aslemammad)

### Changed
- Replaced `temp` library with `tmp` (#633, @r4zendev)

### Fixed
- Removed old `docs` command from `package.json` since the new docs are in the `website` folder, which has instructions in its README.

## [17.0.0] 2024-08-06

We needed to go [from v0.x to a major release](https://github.com/facebook/jscodeshift/issues/593), and it may as well happen now. jscodeshift has been around for nine years though, so going to v1.0.0 didn't feel quite right. I've instead promoted the minor version number to a major version number, similar to what React did when it went from 0.14 to 15.0.

### Fixed
- Node.js 16 is now explicitly specified as the minimum required version. It was *already* (#607, @trivikr)
- Node.js 16 is now explicitly specified as the minimum required version. It was *already* implicitly required due to some dependencies requiring it, but this wasn't explicitly specified until now. (#607, @trivikr)

### Added
- A new [jscodeshift website](https://jscodeshift.com/) has launched, thanks to the team at [Codemod](https://codemod.com/). (#592, @mohab-sameh with some tweaks by @morinokami)
Expand Down
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ This will install the runner as `jscodeshift`.

## Usage (CLI)

See [the website](https://jscodeshift.com/) for full documentation.

The CLI provides the following options:

```
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jscodeshift",
"version": "17.0.0",
"version": "17.1.1",
"description": "A toolkit for JavaScript codemods",
"repository": {
"type": "git",
Expand All @@ -9,7 +9,8 @@
"bugs": "https://github.com/facebook/jscodeshift/issues",
"main": "index.js",
"scripts": {
"prepare": "cp -R src/ dist/",
"clean": "rm -rf dist/",
"prepare": "yarn clean && cp -R src/ dist/",
"test": "jest --bail",
"release": "changeset publish"
},
Expand Down

0 comments on commit 0169599

Please sign in to comment.