You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
How can we get all the issues associated (through smart commit) to bitbucket commit
Through the UI:
On the commit url (https://bitbucket-server-url/projects/project-name/repos/repo-name/commits/commit-hash) at the top right of the page, there is a section that will show the related issues, next to a JIRA icon.
Edit:
Sorry I didn't realise you were looking for an API.
The REST APIs available for Bitbucket JIRA integration can be found here:
https://developer.atlassian.com/static/rest/bitbucket-server/latest/bitbucket-jira-rest.html
Unfortunately, it does not contain a way to get the issues via a commit hash. In order to do that, you need to call getIssuesForCommit
from the JiraIssueService
. See https://developer.atlassian.com/static/javadoc/bitbucket-server/latest/jira-api/reference/com/atlassian/bitbucket/integration/jira/JiraIssueService.html for more details.
Hi Kristy,
Thank you for response. Is there any REST API available to pull out total issues associated to commit? I want to use this list in one of my developed plugin.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I have edited my answer to include details about the API. Hope that helps
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Daiva and Kristy, Can you please share the code snippet or path where I can find it. Also can you please help me to find the correct jar file which will include JiraIssueService interface. Thanks
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Rinkal Garg,
To access the API you need to write a Bitbucket Plugin (see https://developer.atlassian.com/server/bitbucket/how-tos/beginner-guide-to-bitbucket-server-plugin-development/ for details).
You can depend on the jar by adding the dependency in your pom.xml
<dependency>
<groupId>com.atlassian.bitbucket.server</groupId>
<artifactId>bitbucket-jira-api</artifactId>
<version>5.12.0</version>
</dependency>
You would then need access to the JiraIssueService from your code (you'd probably wire this up using osgi) and you can call it with something along the lines of:
Set<JiraIssue> issues = jiraIssueService.getIssuesForCommits(ImmutableSet.of("111c0f1b97df94995b91f236300e4ae7f3ddf993", "dd25dda3131911ad842e0b828bff4825fae216e1"));
Hope that helps,
Kristy
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Kristy ,
I tried your solution above however, I have trouble accessing JiraIssueService.
I tried Component-Import (No qualifying bean of type 'com.atlassian.bitbucket.integration.jira.JiraIssueService')
I tried ComponentLocator but I got null
I dont know where to start fixing to be able to access JiraIssueService
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi everyone, The Cloud team recently announced 12 new DevOps features that help developers ship better code, faster ! While we’re all excited about the new improvements to Bitbucket ...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.