diff --git a/.version b/.version index 2fe6b448..bbae951e 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.98 +0.9.99 diff --git a/CHANGELOG.md b/CHANGELOG.md index 294e872c..7e75919c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ ## PVC Changelog +###### [v0.9.99](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.99) + + **Deprecation Warning**: `pvc vm backup` commands are now deprecated and will be removed in **0.9.100**. Use `pvc vm snapshot` commands instead. + **Breaking Change**: The on-disk format of VM snapshot exports differs from backup exports, and the PVC autobackup system now leverages these. It is recommended to start fresh with a new tree of backups for `pvc autobackup` for maximum compatibility. + **Breaking Change**: VM autobackups now run in `pvcworkerd` instead of the CLI client directly, allowing them to be triggerd from any node (or externally). It is important to apply the timer unit changes from the `pvc-ansible` role after upgrading to 0.9.99 to avoid duplicate runs. + **Usage Note**: VM snapshots are displayed in the `pvc vm list` and `pvc vm info` outputs, not in a unique "list" endpoint. + + * [API Daemon] Adds a proper error when an invalid provisioner profile is specified + * [Node Daemon] Sorts Ceph pools properly in node keepalive to avoid incorrect ordering + * [Health Daemon] Improves handling of IPMI checks by adding multiple tries but a shorter timeout + * [API Daemon] Improves handling of XML parsing errors in VM configurations + * [ALL] Adds support for whole VM snapshots, including configuration XML details, and direct rollback to snapshots + * [ALL] Adds support for exporting and importing whole VM snapshots + * [Client CLI] Removes vCPU topology from short VM info output + * [Client CLI] Improves output format of VM info output + * [API Daemon] Adds an endpoint to get the current primary node + * [Client CLI] Fixes a bug where API requests were made 3 times + * [Other] Improves the build-and-deploy.sh script + * [API Daemon] Improves the "vm rename" command to avoid redefining VM, preserving history etc. + * [API Daemon] Adds an indication when a task is run on the primary node + * [API Daemon] Fixes a bug where the ZK schema relative path didn't work sometimes + ###### [v0.9.98](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.98) * [CLI Client] Fixed output when API call times out diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index f255466a..107fd106 100755 --- a/api-daemon/pvcapid/Daemon.py +++ b/api-daemon/pvcapid/Daemon.py @@ -27,7 +27,7 @@ from distutils.util import strtobool as dustrtobool import daemon_lib.config as cfg # Daemon version -version = "0.9.98" +version = "0.9.99" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 8d53fd76..0e8007b0 100644 --- a/client-cli/setup.py +++ b/client-cli/setup.py @@ -2,7 +2,7 @@ from setuptools import setup setup( name="pvc", - version="0.9.98", + version="0.9.99", packages=["pvc.cli", "pvc.lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index 8f9826f6..561c599e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,27 @@ +pvc (0.9.99-0) unstable; urgency=high + + **Deprecation Warning**: `pvc vm backup` commands are now deprecated and will be removed in **0.9.100**. Use `pvc vm snapshot` commands instead. + **Breaking Change**: The on-disk format of VM snapshot exports differs from backup exports, and the PVC autobackup system now leverages these. It is recommended to start fresh with a new tree of backups for `pvc autobackup` for maximum compatibility. + **Breaking Change**: VM autobackups now run in `pvcworkerd` instead of the CLI client directly, allowing them to be triggerd from any node (or externally). It is important to apply the timer unit changes from the `pvc-ansible` role after upgrading to 0.9.99 to avoid duplicate runs. + **Usage Note**: VM snapshots are displayed in the `pvc vm list` and `pvc vm info` outputs, not in a unique "list" endpoint. + + * [API Daemon] Adds a proper error when an invalid provisioner profile is specified + * [Node Daemon] Sorts Ceph pools properly in node keepalive to avoid incorrect ordering + * [Health Daemon] Improves handling of IPMI checks by adding multiple tries but a shorter timeout + * [API Daemon] Improves handling of XML parsing errors in VM configurations + * [ALL] Adds support for whole VM snapshots, including configuration XML details, and direct rollback to snapshots + * [ALL] Adds support for exporting and importing whole VM snapshots + * [Client CLI] Removes vCPU topology from short VM info output + * [Client CLI] Improves output format of VM info output + * [API Daemon] Adds an endpoint to get the current primary node + * [Client CLI] Fixes a bug where API requests were made 3 times + * [Other] Improves the build-and-deploy.sh script + * [API Daemon] Improves the "vm rename" command to avoid redefining VM, preserving history etc. + * [API Daemon] Adds an indication when a task is run on the primary node + * [API Daemon] Fixes a bug where the ZK schema relative path didn't work sometimes + + -- Joshua M. Boniface Wed, 28 Aug 2024 11:15:55 -0400 + pvc (0.9.98-0) unstable; urgency=high * [CLI Client] Fixed output when API call times out diff --git a/health-daemon/pvchealthd/Daemon.py b/health-daemon/pvchealthd/Daemon.py index aea7112e..a1d438f7 100644 --- a/health-daemon/pvchealthd/Daemon.py +++ b/health-daemon/pvchealthd/Daemon.py @@ -33,7 +33,7 @@ import os import signal # Daemon version -version = "0.9.98" +version = "0.9.99" ########################################################## diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 35002abb..915d5993 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -49,7 +49,7 @@ import re import json # Daemon version -version = "0.9.98" +version = "0.9.99" ########################################################## diff --git a/worker-daemon/pvcworkerd/Daemon.py b/worker-daemon/pvcworkerd/Daemon.py index 86761e53..3c2ae049 100755 --- a/worker-daemon/pvcworkerd/Daemon.py +++ b/worker-daemon/pvcworkerd/Daemon.py @@ -52,7 +52,7 @@ from daemon_lib.autobackup import ( ) # Daemon version -version = "0.9.98" +version = "0.9.99" config = cfg.get_configuration()