From 6a8c393373969313ee1d0538dc5c007cbdbffe1a Mon Sep 17 00:00:00 2001 From: Sol Jerome Date: Thu, 4 Sep 2014 08:40:27 -0500 Subject: doc: Add 1.3.5 release notes Signed-off-by: Sol Jerome --- doc/releases/1.3.5.txt | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) create mode 100644 doc/releases/1.3.5.txt (limited to 'doc/releases') diff --git a/doc/releases/1.3.5.txt b/doc/releases/1.3.5.txt new file mode 100644 index 000000000..893cdbf39 --- /dev/null +++ b/doc/releases/1.3.5.txt @@ -0,0 +1,33 @@ +.. -*- mode: rst -*- +.. vim: ft=rst + +.. _releases-1.3.5: + +1.3.5 +===== + +We are happy to announce the release of Bcfg2 1.3.5. It is available for +download at: + + ftp://ftp.mcs.anl.gov/pub/bcfg + +This is primarily a bugfix release. + +* Properly close db connections +* Improved error messages +* Fix yum upgrade/downgrade +* Enable bcfg2-yum-helper to depsolve for arches incompatible with + server +* Spec file fixes +* bcfg2-crypet: Default to only (En|De)crypt vars that need it +* Fix email reporting bug +* Fix debsums parsing +* Fix solaris makefile +* SYSV: Implement downloading and installing SYSV packages from HTTP: + http://docs.bcfg2.org/client/tools.html#sysv +* Fix debian bcfg2-server init script + + +Special thanks to the following contributors for this release: John +Morris, Jonathan Billings, Chris Brinker, Tim Laszlo, Matt Kemp, Michael +Fenn, Pavel Labushev, Nathan Olla, Alexander Sulfrian. -- cgit v1.2.3-1-g7c22 From f2209ac6fb7b86a91e052a33828861cabf185245 Mon Sep 17 00:00:00 2001 From: Sol Jerome Date: Wed, 10 Sep 2014 07:38:11 -0500 Subject: doc: Include the 1.3.5 release notes Signed-off-by: Sol Jerome --- doc/releases/index.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'doc/releases') diff --git a/doc/releases/index.txt b/doc/releases/index.txt index 42a2306f6..1ed644f9c 100644 --- a/doc/releases/index.txt +++ b/doc/releases/index.txt @@ -7,4 +7,5 @@ Release Announcements ===================== +.. include:: 1.3.5.txt .. include:: 1.3.4.txt -- cgit v1.2.3-1-g7c22 From 111bb75cf8872cc2bca4b00983c5ea9beffed7ae Mon Sep 17 00:00:00 2001 From: Sol Jerome Date: Tue, 28 Oct 2014 14:47:34 -0500 Subject: doc: Add 1.3.6 release notes Signed-off-by: Sol Jerome --- doc/releases/1.3.6.txt | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 doc/releases/1.3.6.txt (limited to 'doc/releases') diff --git a/doc/releases/1.3.6.txt b/doc/releases/1.3.6.txt new file mode 100644 index 000000000..edae39d0d --- /dev/null +++ b/doc/releases/1.3.6.txt @@ -0,0 +1,26 @@ +.. -*- mode: rst -*- +.. vim: ft=rst + +.. _releases-1.3.6: + +1.3.6 +===== + +We are happy to announce the release of Bcfg2 1.3.6. It is available for +download at: + + ftp://ftp.mcs.anl.gov/pub/bcfg + +This is primarily a bugfix release. + +* Fix python 2.4 compatibility +* Fix stale lockfile detection and behavior +* Reporting: fix filter urls +* Fix client protocol option handling +* YUM: Add options to enable and disable Yum plugins +* Packages: add name to sources +* Reporting: better exception handling +* Various interrupt handling fixes + +Special thanks to the following contributors for this release: Michael +Fenn, Matt Kemp, Alexander Sulfrian, Jonathan Billings. -- cgit v1.2.3-1-g7c22 From a5c00f1c8f581d3d9b3c76e53404ad3489d15c52 Mon Sep 17 00:00:00 2001 From: Sol Jerome Date: Fri, 31 Oct 2014 07:23:08 -0500 Subject: doc: Add note about Decisions fix for 1.3.6 Signed-off-by: Sol Jerome --- doc/releases/1.3.6.txt | 1 + 1 file changed, 1 insertion(+) (limited to 'doc/releases') diff --git a/doc/releases/1.3.6.txt b/doc/releases/1.3.6.txt index edae39d0d..e27b102bf 100644 --- a/doc/releases/1.3.6.txt +++ b/doc/releases/1.3.6.txt @@ -21,6 +21,7 @@ This is primarily a bugfix release. * Packages: add name to sources * Reporting: better exception handling * Various interrupt handling fixes +* Fix client decision whitelist/blacklist handling Special thanks to the following contributors for this release: Michael Fenn, Matt Kemp, Alexander Sulfrian, Jonathan Billings. -- cgit v1.2.3-1-g7c22 From 257eb0c174ef2fdaa2015975c5919979afa8da90 Mon Sep 17 00:00:00 2001 From: Sol Jerome Date: Tue, 4 Nov 2014 09:57:08 -0600 Subject: Options.py: Fix database OPTIONS parsing Instead of parsing key/value pairs from bcfg2.conf, this allows the setting of the literal value which is then passed through to django as the value of the OPTIONS setting. This change allows for setting arbitrary options since some settings require nested dictionaries, etc. Signed-off-by: Sol Jerome --- doc/releases/1.3.6.txt | 7 +++++++ 1 file changed, 7 insertions(+) (limited to 'doc/releases') diff --git a/doc/releases/1.3.6.txt b/doc/releases/1.3.6.txt index e27b102bf..757fbf6f5 100644 --- a/doc/releases/1.3.6.txt +++ b/doc/releases/1.3.6.txt @@ -22,6 +22,13 @@ This is primarily a bugfix release. * Reporting: better exception handling * Various interrupt handling fixes * Fix client decision whitelist/blacklist handling +* Fix database OPTIONS parsing + + This change requires you to set the *options* value of the + ``[database`` section in ``bcfg2.conf`` to the literal value which is + passed through to the django OPTIONS setting. + + https://docs.djangoproject.com/en/1.7/ref/settings/#std:setting-OPTIONS Special thanks to the following contributors for this release: Michael Fenn, Matt Kemp, Alexander Sulfrian, Jonathan Billings. -- cgit v1.2.3-1-g7c22