Security News
38% of CISOs Fear They’re Not Moving Fast Enough on AI
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
@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.
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
CISOs are racing to adopt AI for cybersecurity, but hurdles in budgets and governance may leave some falling behind in the fight against cyber threats.
Research
Security News
Socket researchers uncovered a backdoored typosquat of BoltDB in the Go ecosystem, exploiting Go Module Proxy caching to persist undetected for years.
Security News
Company News
Socket is joining TC54 to help develop standards for software supply chain security, contributing to the evolution of SBOMs, CycloneDX, and Package URL specifications.