Skip to content

Releases: Workable/confluence-docs-as-code

Release v1.6.0

Choose a tag to compare

@github-actions github-actions released this 24 Apr 10:13
1.6.0

Release v1.5.0

Choose a tag to compare

@github-actions github-actions released this 29 Jan 12:19
1.5.0

v1.4.0

Choose a tag to compare

@github-actions github-actions released this 15 Feb 18:51

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

Choose a tag to compare

@github-actions github-actions released this 07 Feb 18:01
  • Added missing input parameter confluence_force_update to action.yaml

v1.3.0

Choose a tag to compare

@github-actions github-actions released this 07 Feb 13:04

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

Choose a tag to compare

@echetzakis echetzakis released this 02 Feb 12:23

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

Choose a tag to compare

@echetzakis echetzakis released this 01 Feb 17:03

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

Choose a tag to compare

@echetzakis echetzakis released this 22 Jan 09:04

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

Choose a tag to compare

@echetzakis echetzakis released this 16 Jan 18:12

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