Version bump to 0.1.2
This commit is contained in:
@@ -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
|
||||||
====
|
====
|
||||||
|
|||||||
@@ -746,7 +746,7 @@ def query(env):
|
|||||||
envs = environments()
|
envs = environments()
|
||||||
check_env(env, envs)
|
check_env(env, envs)
|
||||||
|
|
||||||
form = QueryForm()
|
form = QueryForm(csrf_enabled=False)
|
||||||
if form.validate_on_submit():
|
if form.validate_on_submit():
|
||||||
if form.query.data[0] == '[':
|
if form.query.data[0] == '[':
|
||||||
query = form.query.data
|
query = form.query.data
|
||||||
|
|||||||
@@ -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>
|
||||||
|
|||||||
2
setup.py
2
setup.py
@@ -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()
|
||||||
|
|||||||
Reference in New Issue
Block a user