Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: Prepare 5.1.0 release #1197

Merged
merged 1 commit into from
Jan 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,26 @@

All notable changes to this project will be documented in this file.

## [v5.1.0](https://github.com/nextcloud-libraries/nextcloud-dialogs/tree/v5.0.3) (2024-01-19)
[Full Changelog](https://github.com/nextcloud-libraries/nextcloud-dialogs/compare/v5.0.3...v5.1.0)

### :rocket: Enhancement
* enh(FilePickerBuilder): Change error thrown when FilePicker is closed [\#1166](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1166) \([susnux](https://github.com/susnux)\)

### :bug: Fixed bugs
* fix(FilePicker): Adjust stylings after migration to `NcDialog` [\#1138](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1138) \([susnux](https://github.com/susnux)\)
* fix(FilePicker): Set default of `path` to undefined to allow using the saved path [\#1137](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1137) \([susnux](https://github.com/susnux)\)
* fix(FilePicker): Use `Node::path` for current path fixing an clicking favorite folders [\#1165](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1165) \([susnux](https://github.com/susnux)\)
* fix(FilePicker): Stop click event on checkbox column to allow multiselect [\#1192](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1192) \([susnux](https://github.com/susnux)\)
* fix(FilePicker): Adjust checkbox position [\#1193](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1193) \([susnux](https://github.com/susnux)\)
* fix(FilePicker): Improve choose button text when selecting multiple [\#1191](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1191) \([susnux](https://github.com/susnux)\)
* Remove unneeded `tab`, `tablist` and `aria-selected` roles from navigation [\#1180](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1180) \([JuliaKirschenheuter](https://github.com/JuliaKirschenheuter)\)
* Remove `aria-label` from `<div>` [\#1179](https://github.com/nextcloud-libraries/nextcloud-dialogs/pull/1179) \([JuliaKirschenheuter](https://github.com/JuliaKirschenheuter)\)

### Changed
* Updated translations
* Updated dependencies

## [v5.0.3](https://github.com/nextcloud-libraries/nextcloud-dialogs/tree/v5.0.3) (2023-11-27)
[Full Changelog](https://github.com/nextcloud-libraries/nextcloud-dialogs/compare/v5.0.2...v5.0.3)

Expand Down
12 changes: 6 additions & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@nextcloud/dialogs",
"version": "5.0.3",
"version": "5.1.0",
"description": "Nextcloud dialog helpers",
"types": "dist/index.d.ts",
"main": "dist/index.cjs",
Expand Down Expand Up @@ -87,7 +87,7 @@
"typedoc": "^0.25.7",
"typescript": "^5.3.3",
"typescript-plugin-css-modules": "^5.0.2",
"vite": "^5.0.11",
"vite": "^5.0.12",
"vitest": "^1.2.1",
"vue-material-design-icons": "^5.2.0",
"vue-template-compiler": "^2.7.16"
Expand Down
Loading