feat: release 5.58.1

This commit is contained in:
Julien Fontanet 2021-05-06 16:14:53 +02:00
parent 964810858b
commit 9e7afd67bc
9 changed files with 26 additions and 20 deletions

View File

@ -7,8 +7,8 @@
"bugs": "https://github.com/vatesfr/xen-orchestra/issues", "bugs": "https://github.com/vatesfr/xen-orchestra/issues",
"dependencies": { "dependencies": {
"@xen-orchestra/async-map": "^0.1.2", "@xen-orchestra/async-map": "^0.1.2",
"@xen-orchestra/backups": "^0.10.1", "@xen-orchestra/backups": "^0.11.0",
"@xen-orchestra/fs": "^0.16.1", "@xen-orchestra/fs": "^0.17.0",
"filenamify": "^4.1.0", "filenamify": "^4.1.0",
"getopts": "^2.2.5", "getopts": "^2.2.5",
"lodash": "^4.17.15", "lodash": "^4.17.15",

View File

@ -8,7 +8,7 @@
"type": "git", "type": "git",
"url": "https://github.com/vatesfr/xen-orchestra.git" "url": "https://github.com/vatesfr/xen-orchestra.git"
}, },
"version": "0.10.1", "version": "0.11.0",
"engines": { "engines": {
"node": ">=14.6" "node": ">=14.6"
}, },
@ -20,7 +20,7 @@
"@vates/disposable": "^0.1.1", "@vates/disposable": "^0.1.1",
"@vates/parse-duration": "^0.1.1", "@vates/parse-duration": "^0.1.1",
"@xen-orchestra/async-map": "^0.1.2", "@xen-orchestra/async-map": "^0.1.2",
"@xen-orchestra/fs": "^0.16.1", "@xen-orchestra/fs": "^0.17.0",
"@xen-orchestra/log": "^0.2.0", "@xen-orchestra/log": "^0.2.0",
"@xen-orchestra/template": "^0.1.0", "@xen-orchestra/template": "^0.1.0",
"compare-versions": "^3.6.0", "compare-versions": "^3.6.0",

View File

@ -1,7 +1,7 @@
{ {
"private": false, "private": false,
"name": "@xen-orchestra/fs", "name": "@xen-orchestra/fs",
"version": "0.16.1", "version": "0.17.0",
"license": "AGPL-3.0-or-later", "license": "AGPL-3.0-or-later",
"description": "The File System for Xen Orchestra backups.", "description": "The File System for Xen Orchestra backups.",
"homepage": "https://github.com/vatesfr/xen-orchestra/tree/master/@xen-orchestra/fs", "homepage": "https://github.com/vatesfr/xen-orchestra/tree/master/@xen-orchestra/fs",

View File

@ -1,7 +1,7 @@
{ {
"private": true, "private": true,
"name": "@xen-orchestra/proxy", "name": "@xen-orchestra/proxy",
"version": "0.13.0", "version": "0.13.1",
"license": "AGPL-3.0-or-later", "license": "AGPL-3.0-or-later",
"description": "XO Proxy used to remotely execute backup jobs", "description": "XO Proxy used to remotely execute backup jobs",
"keywords": [ "keywords": [
@ -32,8 +32,8 @@
"@vates/decorate-with": "^0.0.1", "@vates/decorate-with": "^0.0.1",
"@vates/disposable": "^0.1.1", "@vates/disposable": "^0.1.1",
"@xen-orchestra/async-map": "^0.1.2", "@xen-orchestra/async-map": "^0.1.2",
"@xen-orchestra/backups": "^0.10.1", "@xen-orchestra/backups": "^0.11.0",
"@xen-orchestra/fs": "^0.16.1", "@xen-orchestra/fs": "^0.17.0",
"@xen-orchestra/log": "^0.2.0", "@xen-orchestra/log": "^0.2.0",
"@xen-orchestra/mixin": "^0.1.0", "@xen-orchestra/mixin": "^0.1.0",
"@xen-orchestra/mixins": "^0.1.0", "@xen-orchestra/mixins": "^0.1.0",

View File

@ -1,5 +1,18 @@
# ChangeLog # ChangeLog
## **5.58.1** (2021-05-06)
### Bug fixes
- [Backups] Better handling of errors in remotes, fix `task has already ended`
- [Metadata Backup] Fix `Cannot read property 'constructor' of null` when editing job [Forum post](https://xcp-ng.org/forum/topic/4556/can-t-edit-xo-metatata-backup-config)
### Released packages
- @xen-orchestra/fs 0.17.0
- @xen-orchestra/backups 0.11.0
- xo-server 5.79.3
## **5.58.0** (2021-04-30) ## **5.58.0** (2021-04-30)
<img id="latest" src="https://badgen.net/badge/channel/latest/yellow" alt="Channel: latest" /> <img id="latest" src="https://badgen.net/badge/channel/latest/yellow" alt="Channel: latest" />

View File

@ -11,9 +11,6 @@
> Users must be able to say: “I had this issue, happy to know it's fixed” > Users must be able to say: “I had this issue, happy to know it's fixed”
- [Backups] Better handling of errors in remotes, fix `task has already ended`
- [Metadata Backup] Fix `Cannot read property 'constructor' of null` when editing job [Forum post](https://xcp-ng.org/forum/topic/4556/can-t-edit-xo-metatata-backup-config)
### Packages to release ### Packages to release
> Packages will be released in the order they are here, therefore, they should > Packages will be released in the order they are here, therefore, they should
@ -30,7 +27,3 @@
> - major: if the change breaks compatibility > - major: if the change breaks compatibility
> >
> In case of conflict, the highest (lowest in previous list) `$version` wins. > In case of conflict, the highest (lowest in previous list) `$version` wins.
- @xen-orchestra/fs minor
- @xen-orchestra/backups minor
- xo-server patch

View File

@ -24,7 +24,7 @@
"node": ">=8.10" "node": ">=8.10"
}, },
"dependencies": { "dependencies": {
"@xen-orchestra/fs": "^0.16.1", "@xen-orchestra/fs": "^0.17.0",
"cli-progress": "^3.1.0", "cli-progress": "^3.1.0",
"exec-promise": "^0.7.0", "exec-promise": "^0.7.0",
"getopts": "^2.2.3", "getopts": "^2.2.3",

View File

@ -31,7 +31,7 @@
"@babel/cli": "^7.0.0", "@babel/cli": "^7.0.0",
"@babel/core": "^7.0.0", "@babel/core": "^7.0.0",
"@babel/preset-env": "^7.0.0", "@babel/preset-env": "^7.0.0",
"@xen-orchestra/fs": "^0.16.1", "@xen-orchestra/fs": "^0.17.0",
"babel-plugin-lodash": "^3.3.2", "babel-plugin-lodash": "^3.3.2",
"cross-env": "^7.0.2", "cross-env": "^7.0.2",
"execa": "^5.0.0", "execa": "^5.0.0",

View File

@ -1,7 +1,7 @@
{ {
"private": true, "private": true,
"name": "xo-server", "name": "xo-server",
"version": "5.79.2", "version": "5.79.3",
"license": "AGPL-3.0-or-later", "license": "AGPL-3.0-or-later",
"description": "Server part of Xen-Orchestra", "description": "Server part of Xen-Orchestra",
"keywords": [ "keywords": [
@ -33,11 +33,11 @@
"@vates/parse-duration": "^0.1.1", "@vates/parse-duration": "^0.1.1",
"@vates/read-chunk": "^0.1.2", "@vates/read-chunk": "^0.1.2",
"@xen-orchestra/async-map": "^0.1.2", "@xen-orchestra/async-map": "^0.1.2",
"@xen-orchestra/backups": "^0.10.1", "@xen-orchestra/backups": "^0.11.0",
"@xen-orchestra/cron": "^1.0.6", "@xen-orchestra/cron": "^1.0.6",
"@xen-orchestra/defined": "^0.0.0", "@xen-orchestra/defined": "^0.0.0",
"@xen-orchestra/emit-async": "^0.0.0", "@xen-orchestra/emit-async": "^0.0.0",
"@xen-orchestra/fs": "^0.16.1", "@xen-orchestra/fs": "^0.17.0",
"@xen-orchestra/log": "^0.2.0", "@xen-orchestra/log": "^0.2.0",
"@xen-orchestra/mixin": "^0.1.0", "@xen-orchestra/mixin": "^0.1.0",
"@xen-orchestra/mixins": "^0.1.0", "@xen-orchestra/mixins": "^0.1.0",