feat: technical release (#6648)

This commit is contained in:
Mathieu
2023-01-31 10:18:19 +00:00
committed by GitHub
parent 28800f43ee
commit 9c3d39b4a7
6 changed files with 13 additions and 18 deletions

View File

@@ -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",

View File

@@ -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)

View File

@@ -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 @@
<!--packages-start-->
- xo-vmdk-to-vhd patch
- xo-server-upload-ova patch
- xo-web minor
<!--packages-end-->

View File

@@ -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",

View File

@@ -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": [

View File

@@ -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",