Skip to content

Releases: Workable/confluence-docs-as-code

Release v1.6.0

24 Apr 10:13
Compare
Choose a tag to compare

Release v1.5.0

29 Jan 12:19
Compare
Choose a tag to compare

v1.4.0

15 Feb 18:51
Compare
Choose a tag to compare

This feature release:

  • Adds a footer with "Edit on GitHub" link to all pages
  • Adds more options for graph rendering, more specifically, introduces two new input parameters
    • mermaid_renderer which can be one of:
    • plantuml_renderer which can be one of:
      • 'none': will not render
      • 'kroki': will use Kroki.io to render as png
      • 'plantuml': will use plantuml.com to render as png

v1.3.1

07 Feb 18:01
Compare
Choose a tag to compare
  • Added missing input parameter confluence_force_update to action.yaml

v1.3.0

07 Feb 13:04
Compare
Choose a tag to compare

This feature release:

  • Adds job summary with a link to the published documentation on confluence
  • Adds git_ref, git_sha & publisher_version¹ to page metadata
  • Forcibly updates pages with publisher_version != current_version²

¹ publisher_version: this action's version when the page was published
² current_version: this action's current version

Release v1.2.1

02 Feb 12:23
Compare
Choose a tag to compare

Patch release with a couple of bug fixes:

  • Absolute paths in links transposed to the CWD (ie /foo/bar.md is transposed to ${cwd}/foo/bar.md)
  • Do not add prefix to title of README.md (since it inherits the site_name from mkdocs.yml)

Release v1.2.0

01 Feb 17:03
Compare
Choose a tag to compare

This release brings that following:

  1. Switched to type: module (instead of using .mjs extensions)
  2. Added an optional prefix to confluence page titles
  3. Fixed a bug with link parsing
  4. Added a temporary fix for pages with many children

Release v1.1.0

22 Jan 09:04
Compare
Choose a tag to compare

Adds support for internal links, converting them to Confluence (page) links:

ie an md link like this:

[Readme](./README.md)

becomes something like:

<ac:link ac:card-appearance="inline">
  <ri:page ri:content-title="Confluence Page Title" />
  <ac:link-body>Readme</ac:link-body>
</ac:link>

in order to reference the Confluence page that README.md will be published to

Release v1.0.0

16 Jan 18:12
Compare
Choose a tag to compare

Refer to README.md for features, requirements and usage instructions