Releases: Workable/confluence-docs-as-code
Releases · Workable/confluence-docs-as-code
Release v1.6.0
1.6.0
Release v1.5.0
1.5.0
v1.4.0
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:'none'
: will not render'kroki'
: will use Kroki.io to render aspng
'mermaid-plugin'
: will upload the diagram source and render using
Mermaid Diagrams for Confluence add-on
plantuml_renderer
which can be one of:'none'
: will not render'kroki'
: will use Kroki.io to render aspng
'plantuml'
: will use plantuml.com to render aspng
v1.3.1
- Added missing input parameter
confluence_force_update
toaction.yaml
v1.3.0
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
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 thesite_name
frommkdocs.yml
)
Release v1.2.0
This release brings that following:
- Switched to
type: module
(instead of using.mjs
extensions) - Added an optional
prefix
to confluence page titles - Fixed a bug with link parsing
- Added a temporary fix for pages with many children
Release v1.1.0
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
Refer to README.md
for features, requirements and usage instructions