diff --git a/@xen-orchestra/upload-ova/package.json b/@xen-orchestra/upload-ova/package.json index 2f2b5b3d0..8ce9e429c 100644 --- a/@xen-orchestra/upload-ova/package.json +++ b/@xen-orchestra/upload-ova/package.json @@ -1,6 +1,6 @@ { "name": "@xen-orchestra/upload-ova", - "version": "0.1.5", + "version": "0.1.6", "license": "AGPL-3.0-or-later", "description": "Basic CLI to upload ova files to Xen-Orchestra", "keywords": [ @@ -43,7 +43,7 @@ "pw": "^0.0.4", "xdg-basedir": "^4.0.0", "xo-lib": "^0.11.1", - "xo-vmdk-to-vhd": "^2.5.1" + "xo-vmdk-to-vhd": "^2.5.2" }, "devDependencies": { "@babel/cli": "^7.0.0", diff --git a/CHANGELOG.md b/CHANGELOG.md index 09c13f6ad..9a0abd79c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,6 +12,7 @@ - [REST API] The raw content of a VDI can be downloaded directly - [Kubernetes recipe] Add the possibility to create the cluster with a static network configuration (PR [#6598](https://github.com/vatesfr/xen-orchestra/pull/6598)) - [REST API] Ability to update the name and description of objects +- [Network/NBD] Add the possibility to add and change the NBD connection associated to a Network (PR [#6646](https://github.com/vatesfr/xen-orchestra/pull/6646)) ### Bug fixes @@ -21,6 +22,7 @@ - [Disk] Show bootable status for vm running in `pv_in_pvh` virtualisation mode [#6432](https://github.com/vatesfr/xen-orchestra/issues/6432) (PR [#6629](https://github.com/vatesfr/xen-orchestra/pull/6629)) - [Ova export] Reduce memory consumption (PR [#6637](https://github.com/vatesfr/xen-orchestra/pull/6637)) - [Host/Network] Remove extra "mode" column in PIF table (PR [#6640](https://github.com/vatesfr/xen-orchestra/pull/6640)) +- [Ova export] Better computation of overprovisioning for very sparse disks (PR [#6639](https://github.com/vatesfr/xen-orchestra/pull/6639)) ### Released packages @@ -34,9 +36,10 @@ - @xen-orchestra/mixins 0.9.0 - @xen-orchestra/xapi 1.6.1 - @xen-orchestra/proxy 0.26.10 -- xo-vmdk-to-vhd 2.5.1 +- xo-vmdk-to-vhd 2.5.2 +- @xen-orchestra/upload-ova 0.1.6 - xo-cli 0.14.3 -- xo-server 5.108.0 +- xo-server 5.108.1 - xo-server-audit 0.10.3 - xo-server-auth-ldap 0.10.7 - xo-server-backup-reports 0.17.3 @@ -47,7 +50,7 @@ - xo-server-transport-nagios 1.0.1 - xo-server-usage-report 0.10.3 - xo-server-web-hooks 0.3.3 -- xo-web 5.110.0 +- xo-web 5.111.0 ## **5.78.0** (2022-12-20) diff --git a/CHANGELOG.unreleased.md b/CHANGELOG.unreleased.md index bf8eba34b..77ab5de5a 100644 --- a/CHANGELOG.unreleased.md +++ b/CHANGELOG.unreleased.md @@ -7,14 +7,10 @@ > Users must be able to say: “Nice enhancement, I'm eager to test it” -- [Network/NBD] Add the possibility to add and change the NBD connection associated to a Network (PR [#6646](https://github.com/vatesfr/xen-orchestra/pull/6646)) - ### Bug fixes > Users must be able to say: “I had this issue, happy to know it's fixed” -- [Ova export] Better computation of overprovisioning for very sparse disks (PR [#6639](https://github.com/vatesfr/xen-orchestra/pull/6639)) - ### Packages to release > When modifying a package, add it here with its release type. @@ -31,8 +27,4 @@ -- xo-vmdk-to-vhd patch -- xo-server-upload-ova patch -- xo-web minor - diff --git a/packages/xo-server/package.json b/packages/xo-server/package.json index 96a7a6264..ff3e8ca0b 100644 --- a/packages/xo-server/package.json +++ b/packages/xo-server/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "xo-server", - "version": "5.108.0", + "version": "5.108.1", "license": "AGPL-3.0-or-later", "description": "Server part of Xen-Orchestra", "keywords": [ @@ -135,7 +135,7 @@ "xo-collection": "^0.5.0", "xo-common": "^0.8.0", "xo-remote-parser": "^0.9.2", - "xo-vmdk-to-vhd": "^2.5.1" + "xo-vmdk-to-vhd": "^2.5.2" }, "devDependencies": { "@babel/cli": "^7.0.0", diff --git a/packages/xo-vmdk-to-vhd/package.json b/packages/xo-vmdk-to-vhd/package.json index fc948d35f..39169f8dd 100644 --- a/packages/xo-vmdk-to-vhd/package.json +++ b/packages/xo-vmdk-to-vhd/package.json @@ -1,7 +1,7 @@ { "private": false, "name": "xo-vmdk-to-vhd", - "version": "2.5.1", + "version": "2.5.2", "license": "AGPL-3.0-or-later", "description": "JS lib reading and writing .vmdk and .ova files", "keywords": [ diff --git a/packages/xo-web/package.json b/packages/xo-web/package.json index af7718a15..d0d713171 100644 --- a/packages/xo-web/package.json +++ b/packages/xo-web/package.json @@ -1,7 +1,7 @@ { "private": true, "name": "xo-web", - "version": "5.110.0", + "version": "5.111.0", "license": "AGPL-3.0-or-later", "description": "Web interface client for Xen-Orchestra", "keywords": [ @@ -138,7 +138,7 @@ "xo-common": "^0.8.0", "xo-lib": "^0.11.1", "xo-remote-parser": "^0.9.2", - "xo-vmdk-to-vhd": "^2.5.1" + "xo-vmdk-to-vhd": "^2.5.2" }, "scripts": { "build": "GIT_HEAD=$(git rev-parse HEAD) NODE_ENV=production gulp build",