Skip to content

Commit

Permalink
Puppetboard: Version Bump to 0.2.0 (#263)
Browse files Browse the repository at this point in the history
  • Loading branch information
corey-hammerton authored Jun 29, 2016
1 parent 2a6e238 commit 59c79c7
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 5 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,34 @@ Changelog

This is the changelog for Puppetboard.

0.2.0
=====

* Full support for PuppetDB 4.x
* Updating Semantic UI to 2.1.8
* Updating Flask-WTF requirements to 0.12
* Updating WTForms to 2.x
* Restored CSRF protection on the Query Tab form
* Updating Pypuppetdb requirement to 0.3.x
* New configuration option OVERVIEW_FILTER allows users to add custom
PuppetDB query clauses to include/exclude nodes displayed on the
index page
* Adding Radiator view similar to what is available in Puppet Dashboard
* Adding a drop-down list in the Reports tab to configure the number of
reports displayed
* Removing unneeded report_latest() endpoint. This endpoint was deprecated
with the addition of the `latest_report_hash` field in the Nodes
PuppetDB endpoint
* Enhancing Report pagination
* Using the OOP Query Builder available in Pypuppetdb 0.3.x
* Allowing PQL queries in the Query Tab
* Fixing double url-quoting bug on Metric endpodint calls
* Adding a Boolean field to the Query form to prettyprint responses from
PuppetDB
* Fixing corner-case where empty environments would trigger a ZeroDivisionError
due to the Number of Nodes divided by the Number of Resources calculation
* Adding additional logging in `utils.py`

0.1.2
====

Expand Down
2 changes: 1 addition & 1 deletion puppetboard/templates/layout.html
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
{% endfor %}
</div>
</div>
<div class="item right"><a href="https://github.com/voxpupuli/puppetboard" target="_blank">v0.1.3</a></div>
<div class="item right"><a href="https://github.com/voxpupuli/puppetboard" target="_blank">v0.2.0</a></div>
</div>
<div class="ui grid padding-bottom">
<div class="one wide column"></div>
Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
os.system('python setup.py sdist upload')
sys.exit()

VERSION = "0.1.3"
VERSION = "0.2.0"

with codecs.open('README.rst', encoding='utf-8') as f:
README = f.read()
Expand All @@ -20,8 +20,8 @@
setup(
name='puppetboard',
version=VERSION,
author='Daniele Sluijters',
author_email='daniele.sluijters+pypi@gmail.com',
author='Corey Hammerton',
author_email='corey.hammerton@gmail.com',
packages=find_packages(),
url='https://github.com/voxpupuli/puppetboard',
license='Apache License 2.0',
Expand All @@ -31,7 +31,7 @@
install_requires=[
"Flask >= 0.10.1",
"Flask-WTF >= 0.12, <= 0.13",
"WTForms < 3.0",
"WTForms >= 2.0, < 3.0",
"pypuppetdb >= 0.3.0, < 0.4.0",
],
keywords="puppet puppetdb puppetboard",
Expand Down

0 comments on commit 59c79c7

Please sign in to comment.