Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Page properties
Macro Summary

Excerpt

 A

...

Confluence user macro that displays the latest Atlassian product release versions (with release notes), and release dates.

 What it looks like
Atlassianversions
 

  Here it is live:

 

It The Latest Atlassian Product Releases works by querying www.atlassian.com's JSON resources, at URLs such as https://my.atlassian.com/download/feeds/current/jira-software.json. The jQuery code can be found on bitbucket – improvements welcome.

...

  1. Log in as an administration
  2. Search for 'user macros'
  3. Create a new macro calledatlassianversions:

    In the body, fill in:

    Code Block
    languagexml
    ## @noparams
    
    <h4>Latest product versions</h4>
    <table id="productTable"></table>
    <!-- Chrome refuses to load because Bitbucket sets the MIME type to text/plain, not text/javascript:  <script type="text/javascript" src="https://bitbucket.org/redradish/atlassian-versionscraper/raw/master/createversiontable.js"> -->
    <script type="text/javascript" src="https://www.redradishtech.com/src/atlassian-versionscraper/createversiontable.js">
    // This line intentionally left blank - https://answers.atlassian.com/questions/21353/cant-use-script-tag-in-user-macros
    </script>
    

    i.e.:
    Image RemovedImage Added

  4. Save the macro.

...