
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
autogenerate a changelog from git metadata
requires: node, npm
npm i -g chlog
This is intended to be used as a cli tool to list the github PRs between the current git HEAD and the last tag (release).
from a git directory:
$ chlog
Generates output that looks like:
* [PR #23](https://github.com/jden/foo/pull/23) - Bump to some-dep@1.3.8
* [PR #22](https://github.com/jden/foo/pull/22) - Update documentation to add gifs
You can automatically prepend new changes onto the changelog by adding this preversion script to your package.json:
{
"preversion": "mv changelog.md changelog.old && echo \"## $npm_package_version\" >> changelog.md && echo >> changelog.md && chlog >> changelog.md && cat changelog.old >> changelog.md && rm changelog.old && git add changelog.md"
}
Then you can npm version major|minor|patch like normal and update your changelog in one command and one commit.
You can install this script in your package.json by running chlog --install or chlog -i
Pull requests and issues welcome. Follow the nodejs code of conduct.
copyright MMXV jden jason@denizac.org. available under ISC license.
FAQs
auto-generate a markdown changelog from git commit history
We found that chlog demonstrated a not healthy version release cadence and project activity because the last version was released 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
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.