feat: technical release (#9310)

This commit is contained in:
Elise-F
2025-12-15 16:00:02 +01:00
committed by GitHub
parent a4ab2e8b06
commit 227063341e
10 changed files with 27 additions and 36 deletions

View File

@@ -1,7 +1,7 @@
{
"name": "@vates/types",
"private": false,
"version": "1.15.0",
"version": "1.16.0",
"main": "./dist/index.mjs",
"exports": {
".": {

View File

@@ -28,13 +28,13 @@
"@types/file-saver": "^2.0.7",
"@types/lodash-es": "^4.17.12",
"@types/node": "^18.19.80",
"@vates/types": "^1.15.0",
"@vates/types": "^1.16.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/tsconfig": "^0.7.0",
"@vueuse/core": "^13.0.0",
"@vueuse/math": "^13.0.0",
"@vueuse/shared": "^13.0.0",
"@xen-orchestra/web-core": "^0.37.0",
"@xen-orchestra/web-core": "^0.38.0",
"complex-matcher": "^1.0.0",
"d3-time-format": "^4.1.0",
"decorator-synchronized": "^0.6.0",

View File

@@ -14,7 +14,7 @@
"url": "https://vates.fr"
},
"license": "AGPL-3.0-or-later",
"version": "0.17.1",
"version": "0.18.0",
"engines": {
"node": ">=15.6"
},

View File

@@ -1,7 +1,7 @@
{
"private": true,
"name": "@xen-orchestra/proxy",
"version": "0.29.38",
"version": "0.29.39",
"license": "AGPL-3.0-or-later",
"description": "XO Proxy used to remotely execute backup jobs",
"keywords": [
@@ -37,7 +37,7 @@
"@xen-orchestra/fs": "^4.6.5",
"@xen-orchestra/log": "^0.7.1",
"@xen-orchestra/mixin": "^0.2.0",
"@xen-orchestra/mixins": "^0.17.1",
"@xen-orchestra/mixins": "^0.18.0",
"@xen-orchestra/self-signed": "^0.2.1",
"@xen-orchestra/xapi": "^8.6.1",
"ajv": "^8.0.3",

View File

@@ -6,7 +6,7 @@
"main": "./dist/index.mjs",
"name": "@xen-orchestra/rest-api",
"homepage": "https://github.com/vatesfr/xen-orchestra/tree/master/@xen-orchestra/rest-api",
"version": "0.21.3",
"version": "0.22.0",
"description": "REST API to manage your XOA",
"license": "AGPL-3.0-or-later",
"private": false,
@@ -35,7 +35,7 @@
"dependencies": {
"@vates/async-each": "^1.0.1",
"@vates/task": "^0.6.1",
"@vates/types": "^1.15.0",
"@vates/types": "^1.16.0",
"@xen-orchestra/backups": "^0.67.1",
"@xen-orchestra/log": "^0.7.1",
"@xen-orchestra/xapi": "^8.6.1",

View File

@@ -1,7 +1,7 @@
{
"name": "@xen-orchestra/web-core",
"type": "module",
"version": "0.37.0",
"version": "0.38.0",
"private": false,
"exports": {
"./*": {

View File

@@ -1,6 +1,6 @@
{
"name": "@xen-orchestra/web",
"version": "0.35.1",
"version": "0.36.0",
"type": "module",
"scripts": {
"dev": "vite",
@@ -25,14 +25,14 @@
"@types/d3-time-format": "^4.0.3",
"@types/lodash-es": "^4.17.12",
"@types/node": "^18.19.80",
"@vates/types": "^1.15.0",
"@vates/types": "^1.16.0",
"@vitejs/plugin-vue": "^5.2.1",
"@vue/tsconfig": "^0.7.0",
"@vueuse/core": "^13.0.0",
"@vueuse/integrations": "^13.0.0",
"@vueuse/math": "^13.0.0",
"@vueuse/shared": "^13.0.0",
"@xen-orchestra/web-core": "^0.37.0",
"@xen-orchestra/web-core": "^0.38.0",
"d3-time-format": "^4.1.0",
"human-format": "^1.2.1",
"lodash-es": "^4.17.21",

View File

@@ -7,10 +7,13 @@
- **XO 6:**
- [Navigation] Navigation state is now persisted in localStorage and items are now collapsible while filtering. (PR [#9277](https://github.com/vatesfr/xen-orchestra/pull/9277))
- [Navigation] Add links to XO 5 for actions and pages not yet implemented in XO 6 (PR [#9214](https://github.com/vatesfr/xen-orchestra/pull/9214))
- [i18n] Update Czech, Danish, Spanish, French, Italian, Dutch, Portuguese (Brazil), and Russian translations (PR [#9243](https://github.com/vatesfr/xen-orchestra/pull/9243))
- [Reactivity] Tasks are now reactive (PR [#9271](https://github.com/vatesfr/xen-orchestra/pull/9271))
- [Backups/s3] Update filesystem handling to use DeleteObjectsCommand in order to improve performance (PR [#9281](https://github.com/vatesfr/xen-orchestra/pull/9281))
- [REST API] Add link to the openAPI JSON directly in the swagger description (PR [#9285](https://github.com/vatesfr/xen-orchestra/pull/9285))
- [XO] XO6 is now the default page (PR [#9212](https://github.com/vatesfr/xen-orchestra/pull/9212))
- [REST-API/SSE] Possibility to subscribe to XO task (PR [#9269](https://github.com/vatesfr/xen-orchestra/pull/9269))
### Bug fixes
@@ -19,6 +22,8 @@
- [REST API/VM Dashboard] Return `vmProtection: 'protected' | 'unprotected' | 'not-in-job'` instead of `vmProtected: boolean` (PR [#9288](https://github.com/vatesfr/xen-orchestra/pull/9288))
- [Backup]clean up .vhd.checksum files (PR [#9291](https://github.com/vatesfr/xen-orchestra/pull/9291))
- [Backup] Prevent "No new data to upload for this VM" info on mirror backups when it was false [Forum#11623](https://xcp-ng.org/forum/topic/11623) (PR [#9286](https://github.com/vatesfr/xen-orchestra/pull/9286))
- [REST API] Fix various _cannot convert undefined or null to object_ (PR [#9304](https://github.com/vatesfr/xen-orchestra/pull/9304))
- [REST API/VM Dashboard] Fix _cannot read property of undefined_ (PR [#9304](https://github.com/vatesfr/xen-orchestra/pull/9304))
- **XO 6:**
- [VDIs] Fix broken fallback link to XO 5 VDIs page (PR [#9267](https://github.com/vatesfr/xen-orchestra/pull/9267))
@@ -29,12 +34,13 @@
- @xen-orchestra/fs 4.6.5
- @xen-orchestra/backups 0.67.1
- xo-web 5.191.1
- @xen-orchestra/web-core 0.37.0
- @xen-orchestra/mixins 0.17.1
- @xen-orchestra/proxy 0.29.38
- @xen-orchestra/rest-api 0.21.3
- @xen-orchestra/web 0.35.1
- xo-server 5.194.1
- @vates/types 1.16.0
- @xen-orchestra/web-core 0.38.0
- @xen-orchestra/mixins 0.18.0
- @xen-orchestra/proxy 0.29.39
- @xen-orchestra/rest-api 0.22.0
- @xen-orchestra/web 0.36.0
- xo-server 5.194.2
## **5.113.2** (2025-12-09)

View File

@@ -11,19 +11,10 @@
> Users must be able to say: “Nice enhancement, I'm eager to test it”
- [REST-API/SSE] Possibility to subscribe to XO task (PR [#9269](https://github.com/vatesfr/xen-orchestra/pull/9269))
- **XO 6:**
- [i18n] Update Czech, Danish, Spanish, French, Italian, Dutch, Portuguese (Brazil), and Russian translations (PR [#9243](https://github.com/vatesfr/xen-orchestra/pull/9243))
- [Reactivity] Tasks are now reactive (PR [#9271](https://github.com/vatesfr/xen-orchestra/pull/9271))
### Bug fixes
> Users must be able to say: “I had this issue, happy to know it's fixed”
- [REST API] Fix various _cannot convert undefined or null to object_ (PR [#9304](https://github.com/vatesfr/xen-orchestra/pull/9304))
- [REST API/VM Dashboard] Fix _cannot read property of undefined_ (PR [#9304](https://github.com/vatesfr/xen-orchestra/pull/9304))
### Packages to release
> When modifying a package, add it here with its release type.
@@ -40,10 +31,4 @@
<!--packages-start-->
- @vates/types minor
- @xen-orchestra/mixins minor
- @xen-orchestra/rest-api minor
- @xen-orchestra/web minor
- @xen-orchestra/web-core minor
<!--packages-end-->

View File

@@ -1,7 +1,7 @@
{
"private": true,
"name": "xo-server",
"version": "5.194.1",
"version": "5.194.2",
"license": "AGPL-3.0-or-later",
"description": "Server part of Xen-Orchestra",
"keywords": [
@@ -55,9 +55,9 @@
"@xen-orchestra/fs": "^4.6.5",
"@xen-orchestra/log": "^0.7.1",
"@xen-orchestra/mixin": "^0.2.0",
"@xen-orchestra/mixins": "^0.17.1",
"@xen-orchestra/mixins": "^0.18.0",
"@xen-orchestra/qcow2": "^1.1.0",
"@xen-orchestra/rest-api": "^0.21.3",
"@xen-orchestra/rest-api": "^0.22.0",
"@xen-orchestra/self-signed": "^0.2.1",
"@xen-orchestra/template": "^0.1.0",
"@xen-orchestra/vmware-explorer": "^0.10.6",