I'm being asked to maintain a list of applicaitons in Confluence showing their release status which will automatically update when versions are released.
Another alternative would be to pull all version data from JIRA for each application and have the release status automatically update when versions are released in JIRA.
Maybe this will help visualize what I am trying to accomplish,
I see where Bette is going here. Nicolas' suggestion is the closest thing you can get from the JIRA and Confluence integration. The thing here is that you cannot just get a "version" of what those issues are. I have been faced with a similar dilemma before and I was even pushed to create an add-on for it but it's not worth my time that time. What we did is just create a JQL "Project = ABC and fixVersion = 1.0.0" then manually create a label for that JQL gadget like "ABC version 1.0.0".
I will check with the admin team. I know we are trying Bitbucket for our one application and think they plan to move the others as we update them. No to Bamboo. I can utilize JIRA filters to produce a Confluence page listing the issues so I am assuming we are fully integrated.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If your Confluence page shows the results of a JIRA filter, you could have something like that. Consider this JQL:
fixVersion in releasedVersions()
That JQL statement will return issues that have a released version. So yes, releasing your version could automatically display a list of released issues in Confluence, provided you use the JIRA macro with the appropriate filter.
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.
I see. Then no, there's no ready-made Confluence gadget that would let you do that.
That information can be gotten through JIRA's REST api though
https://docs.atlassian.com/jira/REST/cloud/#api/2/project-getProjectVersions
But it's not that easy. You'd basically need to make a plugin that allows you to make REST calls to JIRA from Confluence. This Answer has some more info on this: https://answers.atlassian.com/questions/191112
There might be something you could do using the CLI plugin for JIRA and Confluence. You'd need the plugin on both applications. You'd use it to pull version data from JIRA and push it to Confluence. But even that would require quite a bit of scripting, and I don't think it would look pretty.
Other than that, you could use the SQL for Confluence plugin and query the JIRA database directly. Of all listed solutions, I think this one would be the best.
Maybe somebody has other more practical/affordable ideas, but I doubt you could achieve what you want without a certain amount of scripting or purchasing plugins.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you describe your configuration? Do you use bitbucket, bamboo? Do you have any integrations or automations currently? You can do many of these things but some require a level of scripting.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.