Gathering detailed insights and metrics for jira-changelog
Gathering detailed insights and metrics for jira-changelog
Gathering detailed insights and metrics for jira-changelog
Gathering detailed insights and metrics for jira-changelog
@digitalroute/cz-conventional-changelog-for-jira
Commitizen adapter following the conventional-changelog format and also asking for JIRA issue.
@dgc-org/commitlint-config-conventional-changelog-for-jira
Shareable commitlint config enforcing the angular commit convention and Jira smart commits
@auto-canary/jira
Jira plugin for auto
@auto-it/jira
Jira plugin for auto
Generates a changelog by matching git commits to Jira tickets.
npm install jira-changelog
Typescript
Module System
Node Version
NPM Version
66.3
Supply Chain
91.5
Quality
71.2
Maintenance
25
Vulnerability
97
License
Bug fix and library updates
Updated on Jun 24, 2021
v2.1.0
Updated on Apr 12, 2021
Git range fix + enhancements
Updated on Mar 24, 2021
Fix AllHtmlEntities error
Updated on Apr 13, 2020
Disable symmetric comparison
Updated on Mar 12, 2020
Version 1.6.0 - Less noise, more signal
Updated on Feb 20, 2020
JavaScript (100%)
Total Downloads
0
Last Day
0
Last Week
0
Last Month
0
Last Year
0
MIT License
87 Stars
72 Commits
34 Forks
4 Watchers
10 Branches
9 Contributors
Updated on Aug 30, 2024
Latest Version
2.2.0
Package Id
jira-changelog@2.2.0
Unpacked Size
209.38 kB
Size
53.45 kB
File Count
29
NPM Version
7.6.3
Node Version
14.15.0
Cumulative downloads
Total Downloads
Last Day
0%
NaN
Compared to previous day
Last Week
0%
NaN
Compared to previous week
Last Month
0%
NaN
Compared to previous month
Last Year
0%
NaN
Compared to previous year
Generates a changelog of Jira issues from your git history and, optionally, attach all issues to a release.
For example:
1$ jira-changelog --range origin/prod...origin/master
Jira Tickets
---------------------
* <Bug> - Unable to access date widget
[DEV-1234] https://yoursite.atlassian.net/browse/DEV-1234
* <Story> - Support left-handed keyboards
[DEV-5678] https://yoursite.atlassian.net/browse/DEV-5678
* <Story> - Search by location
[DEV-8901] https://yoursite.atlassian.net/browse/DEV-8901
Other Commits
---------------------
* <cd6f512> - Fix typo in welcome message
Pending Approval
---------------------
~ None. Yay! ~
You can also have it automatically post to slack!
The script looks for Jira issue keys, surrounded by square brackets (i.e. [DEV-123]
), in the git commit logs. When it finds one, it associates that Jira issue ticket with that commit and adds it to the changelog.
1npm install -g jira-changelog
Before configuring the app, register a new user in Jira for the app to use to retrieve and update tickets. Then create an Auth Token for this user, which will be used for authentication. Jira no longer supports authenticating with password for API calls.
Create a file called changelog.config.js
and put it at the root of your git workspace directory. This is also where you'll call the jira-changelog
command from.
Here's a simple example with sample Jira API values:
1module.exports = { 2 jira: { 3 api: { 4 host: 'myapp.atlassian.net', 5 email: 'jirauser@myapp.com', 6 token: 'qWoJBdlEp6pJy15fc9tGpsOOR2L5i35v', 7 options: {} 8 }, 9 } 10}
The token is the API token assigned to this user. To see all values supported, look at the changelog.config.js file at the root of this repo.
Use the options object to set jira-client options. See official docs for available options.
1jira-changelog --range origin/prod...origin/master
Assuming you deploy from a branch named prod
, this will generate a changelog with all commits after the last production deploy to the current master version (You can change the default branch names with the sourceControl.defaultRange
object, in your config).
1jira-changelog
Alternatively, you can specify a range (using git commit range format) in the command:
1jira-changelog --range origin/prod...origin/stage
You can automatically attach a release to all Jira issues in the changelog with the --release
flag. For example, let's say we want to add all issues in the changelog to the "sprint-12" release:
1jira-changelog --release sprint-12
This will set the fixVersions
of all issues to "sprint-12" in Jira.
The script can also automatically post the changelog to slack.
First, get an API token from Slack for your workspace: https://api.slack.com/tokens
Then add slack to your configuration file:
1module.exports = { 2 ... 3 slack: { 4 apiKey: 'asdlfkjasdoifuoiucvlkxjcvoixucvi', 5 channel: '#changelogs' 6 }, 7}
slack.apiKey
.slack.channel
is the channel you want the script to send the changelog to.Then simply add the --slack
flag to the command:
1jira-changelog --slack
The code used to generate the changelogs can also be used as modules in your node app. See the module source for documentation.
For example:
1npm install -S jira-changelog
1const Config = require('jira-changelog').Config; 2const SourceControl = require('jira-changelog').SourceControl; 3const Jira = require('jira-changelog').Jira; 4 5const gitRepoPath = '/home/user/source/' 6 7// Get configuration 8const confPath = `${gitRepoPath}/changelog.config.js`; 9const config = Config.readConfigFile('/Users/jeremygillick/Source/app/changelog.config.js'); 10 11// Get commits for a range 12const source = new SourceControl(config); 13const range = { 14 from: "origin/prod", 15 to: "origin/master" 16}; 17source.getCommitLogs(gitRepoPath, range).then((commitLogs) => { 18 19 // Associate git commits with jira tickets and output changelog object 20 const jira = new Jira(config); 21 jira.generate(commitLogs).then((changelog) => { 22 console.log(changelog); 23 }); 24 25});
The output of the changelog is controlled by an ejs template defined in your changelog.config.js
file. You can see the default template, here:
https://github.com/jgillick/jira-changelog/blob/master/changelog.config.js#L95-L136
The data sent to the template looks like this:
{
jira: {
baseUrl: "...",
releaseVersions: [],
},
commits: {
all: [], // all commits
tickets: [], // commits associated with jira tickets
noTickets: [], // commits not associated with jira tickets
},
tickets: {
all: [], // all tickets
approved: [], // tickets marked as approved
pending: [], // tickets not marked as approved
pendingByOwner: [], // pending tickets arranged under ticket reporters.
}
}
The template should output data only, not perform data transformations. For that, define the transformData
or transformForSlack
functions.
What if you want to edit the git commit log messages to automatically add links around the ticket numbers? You can do that, and more, by defining the transformData
function inside your changelog.config.js
file. This function can transform all the template data, before it is sent to the template.
For example, adding a link around all ticket numbers in the git logs would look something like this (overly simplistic, for example only):
1transformData: (data) => { 2 // Link the ticket numbers in all commit summaries. 3 data.commits.all.forEach((commit) => { 4 commit.summary = commit.summary.replace( 5 /\[([A-Z]+\-[0-9]+)\]/, 6 '[<a href="https://YOU.atlassian.net/browse/$1">$1</a>]' 7 ); 8 }); 9 return data; 10},
Then, if you want to create slack specific data transformations, define the transformForSlack
function. This function will be called after transformData
.
No vulnerabilities found.
Reason
no binaries found in the repo
Reason
license file detected
Details
Reason
Found 6/25 approved changesets -- score normalized to 2
Reason
0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0
Reason
security policy file not detected
Details
Reason
no effort to earn an OpenSSF best practices badge detected
Reason
project is not fuzzed
Details
Reason
branch protection not enabled on development/release branches
Details
Reason
SAST tool is not run on all commits -- score normalized to 0
Details
Reason
30 existing vulnerabilities detected
Details
Score
Last Scanned on 2025-07-07
The Open Source Security Foundation is a cross-industry collaboration to improve the security of open source software (OSS). The Scorecard provides security health metrics for open source projects.
Learn More