Skip to content

Commit 5804e84

Browse files
committed
v16.2.2
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
1 parent 41bb0e5 commit 5804e84

4 files changed

Lines changed: 25 additions & 5 deletions

File tree

CHANGELOG.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,26 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

7+
## [16.2.2] - 2026-06-20
8+
9+
### Fixed
10+
* fix(BookmarkMapper): Fix click count methods to use recursive CTE
11+
* fix(BookmarkMapper): Fix countUnavailable to use recursive CTE
12+
* fix(BookmarkMapper): Fix countDuplicated to use the recursive CTE
13+
* fix(Import): Handle transactions correctly
14+
* fix(Trashbin): Improve folder undelete UX
15+
* tests: Do not return folders twice in trashbin endpoint Marcel Klehr Yesterday 11:09 AM
16+
* fix(TreeMapper#getSoftDeletedRootItems): Do not return folders twice
17+
* fix(Trashbin): Only populate the parent folders of bookmark entries that are actually soft deleted when showing trashbin items
18+
* fix(MOVE_BOOKMARK): Hard delete moved items from the origin of the move
19+
* fix(l10n): Update translations from Transifex
20+
* fix: Update dependencies
21+
* fix(TrashBin): Trashed shared folders should not show up for sharees
22+
* fix(PrivateView): Do not wait for deleted folders to load
23+
* fix(VirtualScroll): Exit early while loading
24+
* fix(TagMapper): Surface tags from bookmarks in deep folders within shared folders
25+
* fix(FolderService): Propagate title updates to shared folders
26+
727
## [16.2.1] - 2026-06-12
828

929
### Fixed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ source_dir=$(build_dir)/source
77
sign_dir=$(build_dir)/sign
88
package_name=$(app_name)
99
cert_dir=$(HOME)/.nextcloud/certificates
10-
version+=16.2.1
10+
version+=16.2.2
1111

1212
all: dev-setup build-js-production composer-no-dev
1313

@@ -27,10 +27,10 @@ npm-update:
2727
npm update
2828

2929
composer-install:
30-
composer install
30+
composer install --ignore-platform-req=php
3131

3232
composer-no-dev:
33-
composer install --no-dev
33+
composer install --no-dev --ignore-platform-req=php
3434

3535
# Building
3636
build-js:

appinfo/info.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Requirements:
2323
- mbstring: *
2424
- when using MySQL, use at least v8.0
2525
]]></description>
26-
<version>16.2.1</version>
26+
<version>16.2.2</version>
2727
<licence>agpl</licence>
2828
<author mail="mklehr@gmx.net" homepage="https://marcelklehr.de">Marcel Klehr</author>
2929
<author mail="blizzz@arthur-schiwon.de" homepage="https://www.arthur-schiwon.de">Arthur Schiwon</author>

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bookmarks",
3-
"version": "16.2.1",
3+
"version": "16.2.2",
44
"main": "js/index.js",
55
"scripts": {
66
"build": "webpack --node-env production --progress --config webpack.js",

0 commit comments

Comments
 (0)