This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/github_actions/github-actions-dependencies-47168f74c8
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
omit 665a52d715b build(deps): bump the github-actions-dependencies group
across 1 directory with 9 updates
add dc0ba1cba74 Packaging: accept normalized Marvin archive names (#13793)
add 79189c8d6a2 backup: remove the powered-off precondition for all backup
providers (#14094)
add 27722a5dd1b storage: KVM - enable RBD/Ceph volume encryption support
(#13556)
add b9a5977a2bb fix: use auth_client_required instead of removed
auth_supported for RBD (#13991)
add 90180340814 Add basic `.editorconfig` file to help maintain consistent
coding styles (#7562)
add 9030443eac5 SharedFS: fix NPE when accessing systemvm templates for
unsupported hypervisors (#13930)
add 2e450cbddf3 marvin: use pycryptodome instead of PyCrypt (#13594)
add a01fb0be34b server: copy template details to vm instance details when
import VM (#12793)
add e38b7a724b1 kvm: apply rbd_default_data_pool when creating volumes
from templates on RBD (#13361)
add 10037c85d61 Nas backup: Fix mount/unmount error handling and timeout
in LibvirtRestoreBackupCommandWrapper (#14006)
add cffa6e3603a backport: Incremental NAS backup support for KVM (#13074)
(#13877)
add a8c8c18e56a xenserver/xcpng: do not bypass secondary storage when copy
volumes between pools (#13750)
add 5812290da14 Merge remote-tracking branch 'apache/4.22'
add 3dd6d00bcde build(deps): bump the github-actions-dependencies group
across 1 directory with 9 updates
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (665a52d715b)
\
N -- N -- N
refs/heads/dependabot/github_actions/github-actions-dependencies-47168f74c8
(3dd6d00bcde)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
.../environment.properties.in => .editorconfig | 13 +-
.github/workflows/codeql-analysis.yml | 6 +-
PendingReleaseNotes | 9 +
api/src/main/java/com/cloud/host/Host.java | 1 +
.../java/com/cloud/resource/ResourceService.java | 2 +-
api/src/main/java/com/cloud/storage/Storage.java | 2 +-
debian/cloudstack-marvin.install | 2 +-
debian/cloudstack-marvin.postinst | 2 +-
debian/rules | 2 +-
.../storage/motion/AncientDataMotionStrategy.java | 8 +
.../motion/AncientDataMotionStrategyTest.java | 15 ++
packaging/el8/cloud.spec | 6 +-
packaging/suse15/cloud.spec | 6 +-
.../cloudstack/backup/NASBackupProvider.java | 42 +--
.../kvm/resource/LibvirtComputingResource.java | 19 +-
.../hypervisor/kvm/resource/LibvirtVMDef.java | 13 +-
.../wrapper/LibvirtResizeVolumeCommandWrapper.java | 32 ++-
.../LibvirtRestoreBackupCommandWrapper.java | 46 +++-
.../wrapper/LibvirtTakeBackupCommandWrapper.java | 35 +--
.../hypervisor/kvm/storage/KVMPhysicalDisk.java | 4 +-
.../kvm/storage/KVMStorageProcessor.java | 27 +-
.../kvm/storage/LibvirtStorageAdaptor.java | 160 ++++++++++-
.../cloudstack/utils/qemu/QemuImageOptions.java | 11 +-
.../org/apache/cloudstack/utils/qemu/QemuImg.java | 56 +++-
.../apache/cloudstack/utils/qemu/QemuObject.java | 1 +
.../apache/cloudstack/utils/rbd/RbdEncryption.java | 294 +++++++++++++++++++++
.../LibvirtRestoreBackupCommandWrapperTest.java | 113 +++++++-
.../kvm/storage/KVMPhysicalDiskTest.java | 6 +-
.../kvm/storage/KVMStorageProcessorTest.java | 22 ++
.../cloudstack/utils/rbd/RbdEncryptionTest.java | 166 ++++++++++++
.../lifecycle/StorageVmSharedFSLifeCycle.java | 5 +-
.../lifecycle/StorageVmSharedFSLifeCycleTest.java | 101 ++++---
.../deploy/DeploymentPlanningManagerImpl.java | 59 ++++-
.../com/cloud/resource/ResourceManagerImpl.java | 4 +-
.../main/java/com/cloud/vm/UserVmManagerImpl.java | 14 +-
.../cloudstack/backup/BackupManagerImpl.java | 4 -
.../deploy/DeploymentPlanningManagerImplTest.java | 73 +++++
.../cloud/resource/MockResourceManagerImpl.java | 2 +-
38 files changed, 1230 insertions(+), 153 deletions(-)
copy agent/conf/environment.properties.in => .editorconfig (83%)
create mode 100644
plugins/hypervisors/kvm/src/main/java/org/apache/cloudstack/utils/rbd/RbdEncryption.java
create mode 100644
plugins/hypervisors/kvm/src/test/java/org/apache/cloudstack/utils/rbd/RbdEncryptionTest.java