Skip to content

Commit

Permalink
Prep for v0.11.6 release
Browse files Browse the repository at this point in the history
  • Loading branch information
lowell80 committed Sep 20, 2023
1 parent db01cc8 commit 4380523
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
4 changes: 2 additions & 2 deletions docs/source/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -24,15 +24,14 @@ Ksconf 0.11
Anyone wanting to implement a new plugin should use the public-facing :py:mod:`ksconf.hook` module.


Ksconf v0.11.6 (DRAFT)
Ksconf v0.11.6 (2023-09-20)
~~~~~~~~~~~~~~~~~~~~~~~~~~~

* Introducing plugin functionality using `pluggy <https://pluggy.readthedocs.io/en/latest/>`__ plugin management system.
This adds a small, single-package dependency that can greatly increase customization potential of ksconf.
The first demo of this can be seen in the ``ksconf-jinja-markdown`` package that enables ``.j2`` payloads to be rendered by registering a custom Jinja filter named ``markdown2html``.



Ksconf v0.11.5 (2023-08-25)
~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand All @@ -50,6 +49,7 @@ Ksconf v0.11.5 (2023-08-25)

* Improved various error messages, minor optimizations, and some minor security improvements.


Ksconf v0.11.4 (2023-06-09)
~~~~~~~~~~~~~~~~~~~~~~~~~~~

Expand Down
3 changes: 1 addition & 2 deletions plugins/jinja-markdown/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,5 @@ Contents of `inputs.json`:
```

```sh
ksconf package my_app --template_vars @inputs.conf
ksconf package --enable-handler=jinja --template_vars @inputs.conf my_app
```

4 changes: 2 additions & 2 deletions plugins/jinja-markdown/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
install_requires=[
"commonmark>=0.9",
"jinja2>=3.0",
"ksconf>=0.11.5", # XXX: Update when new release supporting pluggy!
"ksconf>=0.11.6",
],
entry_points={
"ksconf_plugin": [
Expand All @@ -32,6 +32,6 @@
keywords='ksconf splunk jinja markdown',
author="Lowell Alleman",
author_email="lowell.alleman@cdillc.com",
url="https://github.com/Kintyre/ksconf",
url="https://github.com/Kintyre/ksconf/tree/devel/plugins/jinja-markdown",
zip_safe=True,
)

0 comments on commit 4380523

Please sign in to comment.