Socket
Socket
Sign inDemoInstall

@semantic-release/changelog

Package Overview
Dependencies
Maintainers
5
Versions
25
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@semantic-release/changelog

semantic-release plugin to create or update a changelog file


Version published
Weekly downloads
432K
decreased by-38.76%
Maintainers
5
Weekly downloads
 
Created

What is @semantic-release/changelog?

@semantic-release/changelog is a plugin for semantic-release that updates a changelog file with the changes of the new release. It automates the process of generating and maintaining a changelog based on commit messages, ensuring that the changelog is always up-to-date and consistent with the project's release history.

What are @semantic-release/changelog's main functionalities?

Generate Changelog

This configuration snippet shows how to include the @semantic-release/changelog plugin in your semantic-release setup. It will generate or update the changelog file with the changes of the new release.

{
  "plugins": [
    "@semantic-release/changelog",
    "@semantic-release/git"
  ]
}

Custom Changelog File

This configuration snippet demonstrates how to specify a custom path for the changelog file. In this example, the changelog will be written to 'docs/CHANGELOG.md' instead of the default 'CHANGELOG.md'.

{
  "plugins": [
    [
      "@semantic-release/changelog",
      {
        "changelogFile": "docs/CHANGELOG.md"
      }
    ],
    "@semantic-release/git"
  ]
}

Custom Changelog Title

This configuration snippet shows how to set a custom title for the changelog file. The title '# Project Changelog' will be used at the top of the changelog file.

{
  "plugins": [
    [
      "@semantic-release/changelog",
      {
        "changelogTitle": "# Project Changelog"
      }
    ],
    "@semantic-release/git"
  ]
}

Other packages similar to @semantic-release/changelog

Keywords

FAQs

Package last updated on 26 Oct 2019

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc