
Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
semantic-release-jira-notes
Advanced tools
Semantic Release plugin to add JIRA issues link to the release notes
semantic-release plugin to add links to JIRA issues in the release notes.
For each JIRA issue detected in the release notes, it will add a link that brings directly to this issue on JIRA.
Step | Description |
---|---|
verifyConditions | Validate the config options |
generateNotes | Generate the release notes with links to JIRA issues |
# npm
npm install --save-dev semantic-release-jira-notes
# yarn
yarn add --dev semantic-release-jira-notes
# pnpm
pnpm add --save-dev semantic-release-jira-notes
Name | Required | Description |
---|---|---|
jiraHost | ✅ | Your JIRA host domain name |
ticketPrefixes | ❌ | Ticket prefixes to match. If not provided, match all tickets prefixes. |
{
"plugins": [
"@semantic-release/commit-analyzer",
["semantic-release-jira-notes", {
"jiraHost": "iamludal.atlassian.net",
"ticketPrefixes": ["ATP", "OMS"]
}]
"@semantic-release/git",
"@semantic-release/github"
]
}
Note: this plugin uses
@semantic-release/release-notes-generator
under the hood, so you don't need to use it anymore.
You can also use options defined by @semantic-release/release-notes-generator.
{
"plugins": [
"@semantic-release/commit-analyzer",
["semantic-release-jira-notes", {
"jiraHost": "iamludal.atlassian.net",
"preset": "conventionalcommits",
"presetConfig": {
"types": [
{ "type": "feat", "section": "Features" },
{ "type": "fix", "section": "Bug Fixes" },
{ "type": "build", "section": "Dependencies Updates", "hidden": false }
]
}
}]
"@semantic-release/git",
"@semantic-release/github"
]
}
FAQs
Semantic Release plugin to add JIRA issues link to the release notes
The npm package semantic-release-jira-notes receives a total of 3,001 weekly downloads. As such, semantic-release-jira-notes popularity was classified as popular.
We found that semantic-release-jira-notes 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.