From 6d2dd27b7ccf13bf3687e83bbb50ba54beaefd5e Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Tue, 25 Aug 2026 11:18:21 +0200 Subject: [PATCH 1/2] chore: prepare v7.5.0 Signed-off-by: Ferdinand Thiessen --- CHANGELOG.md | 7 +++++++ package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0f397d23e..829751142 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,13 @@ All notable changes to this project will be documented in this file. +## [v7.5.0](https://github.com/nextcloud-libraries/nextcloud-dialogs/compare/v7.4.1...v7.5.0) +### Added +* feat: toast timeout configuration [\#2539](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/2539) \([kristian-zendato](https://github.com/kristian-zendato)\) +* feat: accessible toast and drop toastify [\#2324](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/2324) \([skjnldsv](https://github.com/skjnldsv)\) +### Fixed +* Simplify the file conflict dialog [\#2540](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/2540) \([jancborchardt](https://github.com/jancborchardt)\) + ## [v7.4.1](https://github.com/nextcloud-libraries/nextcloud-dialogs/compare/v7.4.0...v7.4.1) ### Fixed * fix(filepicker): only add current folder if pickable \([\#2512](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/2512)\) diff --git a/package-lock.json b/package-lock.json index 80eb6e29b..3c5a51edc 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@nextcloud/dialogs", - "version": "7.4.1", + "version": "7.5.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@nextcloud/dialogs", - "version": "7.4.1", + "version": "7.5.0", "license": "AGPL-3.0-or-later", "dependencies": { "@mdi/js": "^7.4.47", diff --git a/package.json b/package.json index 729cc8af4..e2c0831f2 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@nextcloud/dialogs", - "version": "7.4.1", + "version": "7.5.0", "description": "Nextcloud dialog helpers", "keywords": [ "nextcloud" From 395a38f4257377c66392595a12dd01a94535b26a Mon Sep 17 00:00:00 2001 From: Ferdinand Thiessen Date: Tue, 25 Aug 2026 15:11:39 +0200 Subject: [PATCH 2/2] chore: add note about toasts Signed-off-by: Ferdinand Thiessen --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 829751142..ea82b4adc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ All notable changes to this project will be documented in this file. ## [v7.5.0](https://github.com/nextcloud-libraries/nextcloud-dialogs/compare/v7.4.1...v7.5.0) +### Notes +This version include some reworked - and accessible - toast notifications. +Those new toast messages will be displayed on the bottom start of the page, +this is by design and not a bug. + ### Added * feat: toast timeout configuration [\#2539](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/2539) \([kristian-zendato](https://github.com/kristian-zendato)\) * feat: accessible toast and drop toastify [\#2324](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/2324) \([skjnldsv](https://github.com/skjnldsv)\)