From c3bc55eff8561c39dc9afaaf15e22adba39020da Mon Sep 17 00:00:00 2001 From: "Joshua M. Boniface" Date: Thu, 27 Oct 2022 14:19:18 -0400 Subject: [PATCH] Bump version to 0.9.56 --- .version | 2 +- CHANGELOG.md | 11 +++++++++++ api-daemon/pvcapid/Daemon.py | 2 +- client-cli/setup.py | 2 +- debian/changelog | 10 ++++++++++ node-daemon/pvcnoded/Daemon.py | 2 +- 6 files changed, 25 insertions(+), 4 deletions(-) diff --git a/.version b/.version index 9f065fa5..6bfc0299 100644 --- a/.version +++ b/.version @@ -1 +1 @@ -0.9.55 +0.9.56 diff --git a/CHANGELOG.md b/CHANGELOG.md index 72eb4ed4..608f7059 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ ## PVC Changelog +###### [v0.9.56](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.56) + + **Breaking Change**: Existing provisioner scripts are no longer valid; new example scripts are provided. + **Breaking Change**: OVA profiles now require an `ova` or `default_ova` provisioner script (use example) to function. + + * [API/Provisioner] Fundamentally revamps the provisioner script framework to provide more extensibility + * [API/Provisioner] Adds example provisioner scripts for noop, ova, debootstrap, rinse, and pfsense + * [API/Provisioner] Enforces the use of the ova provisioner script during new OVA uploads; existing uploads will not work + * [Documentation] Updates the documentation around provisioner scripts and OVAs to reflect the above changes + * [Node] Adds a new pvcautoready.service oneshot unit to replicate the on-boot-ready functionality of old pvc-flush.service unit + ###### [v0.9.55](https://github.com/parallelvirtualcluster/pvc/releases/tag/v0.9.55) * Fixes a problem with the literal eval handler in the provisioner (again) diff --git a/api-daemon/pvcapid/Daemon.py b/api-daemon/pvcapid/Daemon.py index 25947326..38dea93c 100755 --- a/api-daemon/pvcapid/Daemon.py +++ b/api-daemon/pvcapid/Daemon.py @@ -27,7 +27,7 @@ from ssl import SSLContext, TLSVersion from distutils.util import strtobool as dustrtobool # Daemon version -version = "0.9.55" +version = "0.9.56" # API version API_VERSION = 1.0 diff --git a/client-cli/setup.py b/client-cli/setup.py index 16199287..806ed4b4 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.55", + version="0.9.56", packages=["pvc", "pvc.cli_lib"], install_requires=[ "Click", diff --git a/debian/changelog b/debian/changelog index d624712b..3747ac1d 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,13 @@ +pvc (0.9.56-0) unstable; urgency=high + + * [API/Provisioner] Fundamentally revamps the provisioner script framework to provide more extensibility (BREAKING CHANGE) + * [API/Provisioner] Adds example provisioner scripts for noop, ova, debootstrap, rinse, and pfsense (BREAKING CHANGE) + * [API/Provisioner] Enforces the use of the ova provisioner script during new OVA uploads; existing uploads will not work (BREAKING CHANGE) + * [Documentation] Updates the documentation around provisioner scripts and OVAs to reflect the above changes + * [Node] Adds a new pvcautoready.service oneshot unit to replicate the on-boot-ready functionality of old pvc-flush.service unit + + -- Joshua M. Boniface Thu, 27 Oct 2022 14:19:18 -0400 + pvc (0.9.55-0) unstable; urgency=high * Fixes a problem with the literal eval handler in the provisioner (again) diff --git a/node-daemon/pvcnoded/Daemon.py b/node-daemon/pvcnoded/Daemon.py index 3cfba07f..b30c9e94 100644 --- a/node-daemon/pvcnoded/Daemon.py +++ b/node-daemon/pvcnoded/Daemon.py @@ -48,7 +48,7 @@ import re import json # Daemon version -version = "0.9.55" +version = "0.9.56" ##########################################################