Version bump to 0.1.2

This commit is contained in:
corey.hammerton
2016-02-09 20:10:28 -05:00
parent 7c44854988
commit 9334827826
3 changed files with 23 additions and 6 deletions

View File

@@ -7,10 +7,27 @@ This is the changelog for Puppetboard.
0.1.2 0.1.2
==== ====
* Add configuration option to set the default environment, defaults to * Add configuration option to set the default environment with new
'production' (https://github.com/puppet-community/puppetboard/pull/185) configuration option DEFAULT_ENVIRONMENT, defaults to 'production'.
* Loading all available environments with every page load. (Issue: * Loading all available environments with every page load.
https://github.com/puppet-community/puppetboard/issues/186) * 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 0.1.1
==== ====

View File

@@ -50,7 +50,7 @@
{% endfor %} {% endfor %}
</div> </div>
</div> </div>
<div class="item right"><a href="https://github.com/puppet-community/puppetboard" target="_blank">v0.1.1</a></div> <div class="item right"><a href="https://github.com/puppet-community/puppetboard" target="_blank">v0.1.2</a></div>
</div> </div>
<div class="ui grid padding-bottom"> <div class="ui grid padding-bottom">
<div class="one wide column"></div> <div class="one wide column"></div>

View File

@@ -9,7 +9,7 @@ if sys.argv[-1] == 'publish':
os.system('python setup.py sdist upload') os.system('python setup.py sdist upload')
sys.exit() sys.exit()
VERSION = "0.1.1" VERSION = "0.1.2"
with codecs.open('README.rst', encoding='utf-8') as f: with codecs.open('README.rst', encoding='utf-8') as f:
README = f.read() README = f.read()