diff --git a/README.md b/README.md index a4a80025..f0166cb3 100644 --- a/README.md +++ b/README.md @@ -20,6 +20,18 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.19 + + * [CLI] Corrects some flawed conditionals + * [API] Disables SQLAlchemy modification tracking functionality (not used by us) + * [Daemons] Implements new zkhandler module for improved reliability and reusability + * [Daemons] Refactors some code to use new zkhandler module + * [API, CLI] Adds support for "none" migration selector (uses cluster default instead) + * [Daemons] Moves some configuration keys to new /config tree + * [Node Daemon] Increases initial lock timeout for VM migrations to avoid out-of-sync potential + * [Provisioner] Support storing and using textual cluster network labels ("upstream", "storage", "cluster") in templates + * [API] Avoid duplicating existing node states + #### v0.9.18 * Adds VM rename functionality to API and CLI client diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index f663cf9e..13b69881 100755 --- a/api-daemon/pvcapid/Daemon.py +++ b/api-daemon/pvcapid/Daemon.py @@ -25,7 +25,7 @@ import yaml from distutils.util import strtobool as dustrtobool # Daemon version -version = '0.9.18' +version = '0.9.19' # API version API_VERSION = 1.0 diff --git a/debian/changelog b/debian/changelog index 7f3c4352..d03967e5 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,17 @@ +pvc (0.9.19-0) unstable; urgency=high + + * [CLI] Corrects some flawed conditionals + * [API] Disables SQLAlchemy modification tracking functionality (not used by us) + * [Daemons] Implements new zkhandler module for improved reliability and reusability + * [Daemons] Refactors some code to use new zkhandler module + * [API, CLI] Adds support for "none" migration selector (uses cluster default instead) + * [Daemons] Moves some configuration keys to new /config tree + * [Node Daemon] Increases initial lock timeout for VM migrations to avoid out-of-sync potential + * [Provisioner] Support storing and using textual cluster network labels ("upstream", "storage", "cluster") in templates + * [API] Avoid duplicating existing node states + + -- Joshua M. Boniface Sun, 06 Jun 2021 01:47:41 -0400 + pvc (0.9.18-0) unstable; urgency=high * Adds VM rename functionality to API and CLI client diff --git a/docs/index.md b/docs/index.md index bb31470f..a5ae0cb1 100644 --- a/docs/index.md +++ b/docs/index.md @@ -18,6 +18,18 @@ To get started with PVC, please see the [About](https://parallelvirtualcluster.r ## Changelog +#### v0.9.19 + + * [CLI] Corrects some flawed conditionals + * [API] Disables SQLAlchemy modification tracking functionality (not used by us) + * [Daemons] Implements new zkhandler module for improved reliability and reusability + * [Daemons] Refactors some code to use new zkhandler module + * [API, CLI] Adds support for "none" migration selector (uses cluster default instead) + * [Daemons] Moves some configuration keys to new /config tree + * [Node Daemon] Increases initial lock timeout for VM migrations to avoid out-of-sync potential + * [Provisioner] Support storing and using textual cluster network labels ("upstream", "storage", "cluster") in templates + * [API] Avoid duplicating existing node states + #### v0.9.18 * Adds VM rename functionality to API and CLI client diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 655321a4..676de2b2 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -54,7 +54,7 @@ import pvcnoded.CephInstance as CephInstance import pvcnoded.MetadataAPIInstance as MetadataAPIInstance # Version string for startup output -version = '0.9.18' +version = '0.9.19' ############################################################################### # PVCD - node daemon startup program