Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
@reiniiriarios/newver
Advanced tools
A silly little script to help quickly update a version in package files, then commit, tag, and push.
A silly little script to help quickly update a version in package files, then commit, tag, and push. Useful when, like me, you use tagged releases and push versions manually and frequently.
npm i --save-dev @reiniiriarios/newver
package.json:
{
"scripts": {
"bump": "newver --commit=true"
}
}
npm run bump 1.2.3
newver <version> [options]
newver 1.2.3
newver 1.2.3 -c
newver 1.2.3 --commit
newver --commit 1.2.3
newver 1.2.3 --commit=true --tag=false --push=true --prefix="chore(release)"
newver -cptx "chore(release)" 1.2.3
newver 1.2.3 --files=path/to/file.ext --files=path/to/another/file.ext
newver --files=path/to/file.json --data-paths=package.info.version 1.2.3
For option details:
newver --help
$ newver -ct --prefix=chore(release) 1.0.3
Updating version to 1.0.3
▸ package.json updated
▸ package-lock.json updated
▸ git add package.json package-lock.json
▸ git commit -m "chore(release): update version to 1.0.3"
[main 999def8] chore(release): update version to 1.0.3
2 files changed, 3 insertions(+), 3 deletions(-)
▸ git tag v1.0.3
▸ Push to origin? (Y/n) y
▸ git push
To https://github.com/reiniiriarios/newver.git
2dba8e8..999def8 main -> main
▸ git push origin v1.0.3
To https://github.com/reiniiriarios/newver.git
* [new tag] v1.0.3 -> v1.0.3
$ newver --commit=false 1.0.0
Updating version to 1.0.0
▸ Version 1.0.0 is older than version 1.2.3 in package.json. Proceed? (Y/n) y
▸ package.json updated
▸ Version 1.0.0 is older than version 1.2.3 in package-lock.json. Proceed? (Y/n) y
▸ package-lock.json updated
#!/usr/bin/env node
import newver from "@reiniiriarios/newver";
newver(process.args.pop(), {
commit: true,
prefix: "chore(release)",
ignoreRegression: false,
files: ["package.json", "package-lock.json", "path/to/another/file.json"],
});
.json
.yaml
/ .yml
.toml
Other formats are find-and-replace.
These will be looked for automatically in the project's root directory. Other files may be specified manually.
FAQs
A silly little script to help quickly update a version in package files, then commit, tag, and push.
The npm package @reiniiriarios/newver receives a total of 9 weekly downloads. As such, @reiniiriarios/newver popularity was classified as not popular.
We found that @reiniiriarios/newver demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.