diff --git a/CHANGELOG.md b/CHANGELOG.md index a1a6e24fc..0149b18ce 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,16 @@ All notable changes to this project will be documented in this file. +## [v6.3.0](https://github.com/nextcloud-libraries/nextcloud-dialogs/compare/v6.2.0...v6.3.0) +### 🚀 Enhancements +* [stable6] feat: add guest auth prompt component by @skjnldsv in https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1759 +### 🐛 Fixed bugs +* [stable6] fix(FilePickerBuilder): correctly return array / plain value depending on multiselect by @backportbot in https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1777 +### Other Changes +* Updates for project Nextcloud dialogs library by @transifex-integration in https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1740 +* Updates for project Nextcloud dialogs library by @transifex-integration in https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1741 +* Update @nextcloud/auth to 2.5.0 by @skjnldsv + ## [v6.2.0](https://github.com/nextcloud-libraries/nextcloud-dialogs/compare/v6.1.1...v6.2.0) ### Notes diff --git a/package-lock.json b/package-lock.json index c64ffe0ff..cedc05841 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,16 +1,16 @@ { "name": "@nextcloud/dialogs", - "version": "6.2.0", + "version": "6.3.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nextcloud/dialogs", - "version": "6.2.0", + "version": "6.3.0", "license": "AGPL-3.0-or-later", "dependencies": { "@mdi/js": "^7.4.47", - "@nextcloud/auth": "^2.4.0", + "@nextcloud/auth": "^2.5.0", "@nextcloud/axios": "^2.5.1", "@nextcloud/browser-storage": "^0.4.0", "@nextcloud/event-bus": "^3.3.2", @@ -1423,12 +1423,13 @@ "license": "MIT" }, "node_modules/@nextcloud/auth": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/@nextcloud/auth/-/auth-2.4.0.tgz", - "integrity": "sha512-T5OFltKd0O9Hfj47VrzE7TVjCwqOMHH9JLyjjLUR3pu2MaTY9WL6AjL79sHbFTXUaIkftZgJKu12lHYmqXnL2Q==", + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/@nextcloud/auth/-/auth-2.5.0.tgz", + "integrity": "sha512-6iv2xJeHEhKgh8ceOW/pP9JMG4TF7C89VpjTwnWGOrXRxOYJ7L+rM0nj+O1sqBrxDkkoeUccCEKgyPuQayGpMQ==", + "license": "GPL-3.0-or-later", "dependencies": { "@nextcloud/browser-storage": "^0.4.0", - "@nextcloud/event-bus": "^3.3.1" + "@nextcloud/event-bus": "^3.3.2" }, "engines": { "node": "^20.0.0", diff --git a/package.json b/package.json index ea7f64cfe..4eedc8f21 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nextcloud/dialogs", - "version": "6.2.0", + "version": "6.3.0", "description": "Nextcloud dialog helpers", "types": "dist/index.d.ts", "main": "dist/index.cjs", @@ -56,7 +56,7 @@ }, "dependencies": { "@mdi/js": "^7.4.47", - "@nextcloud/auth": "^2.4.0", + "@nextcloud/auth": "^2.5.0", "@nextcloud/axios": "^2.5.1", "@nextcloud/browser-storage": "^0.4.0", "@nextcloud/event-bus": "^3.3.2",