From 9fbd283c9f293ab3b9d308d54485136c2641d073 Mon Sep 17 00:00:00 2001 From: Corey Hammerton Date: Fri, 9 Oct 2015 20:22:37 -0400 Subject: [PATCH 1/2] puppetboard: Version bump to 0.0.5 --- CHANGELOG.rst | 20 ++++++++++++++++++++ puppetboard/templates/layout.html | 2 +- setup.py | 4 ++-- 3 files changed, 23 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 4228906..f8a86ee 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,26 @@ Changelog This is the changelog for Puppetboard. +0.0.5 +===== + +* Now requires WTForms versions less than 2.0 +* Adding a Flask development server in ``dev.py``. +* Adding CSRF protection VIA the flask_wtf CsrfProtect object. +* Allowing users to configure the report limit on pages where reports are + listed with the LIMIT_REPORTS configuration option. +* Adding an inventory page to users to be able to see all available nodes + and a configure lists of facts to display VIA the INVENTORY_FACTS + configuration option. +* Adding a page to view a node's catalog information if enabled, disabled + by default. Can be changed with the ENABLE_CATALOG configuration attribute. +* New configuration option GRAPH_FACTS allows the user to choose which graphs + will generate pie on the fact pages. +* Replacing Chart.js with c3.js and d3.js. +* Adding Semantic UI 0.16.1 and removing unused bootstrap styles. +* Adding an OFFLINE_MODE configuration option to load local assets or from a + CDN service. This is useful in environments without internet access. + 0.0.4 ===== diff --git a/puppetboard/templates/layout.html b/puppetboard/templates/layout.html index 910bab3..f60c8de 100644 --- a/puppetboard/templates/layout.html +++ b/puppetboard/templates/layout.html @@ -39,7 +39,7 @@ {{ caption }} {%- endfor %} -
v0.0.4
+
v0.0.5
diff --git a/setup.py b/setup.py index a0c4775..fbd9aef 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.0.4" +VERSION = "0.0.5" with codecs.open('README.rst', encoding='utf-8') as f: README = f.read() @@ -32,7 +32,7 @@ setup( "Flask >= 0.10.1", "Flask-WTF >= 0.9.4, <= 0.9.5", "WTForms < 2.0", - "pypuppetdb >= 0.1.0", + "pypuppetdb < 0.2.0", ], keywords="puppet puppetdb puppetboard", classifiers=[ From 0e0c46d17c1d1423a663dedad5a71c047e06fe8e Mon Sep 17 00:00:00 2001 From: Corey Hammerton Date: Thu, 15 Oct 2015 20:42:44 -0400 Subject: [PATCH 2/2] setup.py: Requiring pypuppetdb >= 0.1.0 In addition to requiring pypuppet in versions less than 0.2.0 we also need versions greater than or equal to 0.1.0 because they support the Query API v3. --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index fbd9aef..c7cf0ee 100644 --- a/setup.py +++ b/setup.py @@ -32,7 +32,7 @@ setup( "Flask >= 0.10.1", "Flask-WTF >= 0.9.4, <= 0.9.5", "WTForms < 2.0", - "pypuppetdb < 0.2.0", + "pypuppetdb >= 0.1.0, < 0.2.0", ], keywords="puppet puppetdb puppetboard", classifiers=[