From 9334827826af40ebf56a38a75597696a3af9ec47 Mon Sep 17 00:00:00 2001 From: "corey.hammerton" Date: Tue, 9 Feb 2016 20:10:28 -0500 Subject: [PATCH] Version bump to 0.1.2 --- CHANGELOG.rst | 25 +++++++++++++++++++++---- puppetboard/templates/layout.html | 2 +- setup.py | 2 +- 3 files changed, 23 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 56bf34c..c8944a8 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -7,10 +7,27 @@ This is the changelog for Puppetboard. 0.1.2 ==== -* Add configuration option to set the default environment, defaults to - 'production' (https://github.com/puppet-community/puppetboard/pull/185) -* Loading all available environments with every page load. (Issue: - https://github.com/puppet-community/puppetboard/issues/186) +* Add configuration option to set the default environment with new + configuration option DEFAULT_ENVIRONMENT, defaults to 'production'. +* Loading all available environments with every page load. +* Adding an "All Environments" item to the Environments dropdown to + remove all environment filters on PuppetDB data. +* Updating README.rst to update links and describe new configuration + options. +* Fixing Query form submission problem by disabling CSRF protection. + Needs to be re-implemented. +* Updating the pypuppetdb requirement to >= 0.2.1, using information + available in PuppetDB 3.2 and higher +** latest_report_hash and latest_report_status fields from the Nodes + endpoint, this effectively deprecates the report_latest() function +** code_id from the Catalogs endpoint (current unused) +* Adding a automatic refresh on the overview page to reload the page + every X number of seconds, defaults to 30. This is configurable + with the configuration option REFRESH_RATE +* Fixing the table alignment in the catalog_compare() page by switching + to fixed tables from basic tables. +* Using colors similar to Puppet Dashboard and Foreman for the status + counts sections 0.1.1 ==== diff --git a/puppetboard/templates/layout.html b/puppetboard/templates/layout.html index 4ee29f3..e3b2e69 100644 --- a/puppetboard/templates/layout.html +++ b/puppetboard/templates/layout.html @@ -50,7 +50,7 @@ {% endfor %} -
v0.1.1
+
v0.1.2
diff --git a/setup.py b/setup.py index 1ae3990..817a15f 100644 --- a/setup.py +++ b/setup.py @@ -9,7 +9,7 @@ if sys.argv[-1] == 'publish': os.system('python setup.py sdist upload') sys.exit() -VERSION = "0.1.1" +VERSION = "0.1.2" with codecs.open('README.rst', encoding='utf-8') as f: README = f.read()