Commit Graph

78919 Commits (238194d2d36b127aa3100138e79477a78ac83bdf)
 

Author SHA1 Message Date
Nextcloud bot 238194d2d3
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-06-03 00:22:40 +07:00
Andy Scherzinger 577032c1f7
Merge pull request #53176 from nextcloud/backport/53171/stable30
[stable30] fix(files): do nothing if `view local` dialog was just closed
2025-06-02 18:55:21 +07:00
nextcloud-command ed99adb838
chore(assets): Recompile assets
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2025-06-02 16:56:07 +07:00
Ferdinand Thiessen 6ef37924bf
fix(files): do nothing if `view local` dialog was just closed
We try to open a file in the Nextcloud client.
If this fails a dialog is shown with 3 options:

1. Retry: If it fails no further dialog is shown.
2. Open online: The viewer is used to open the file.
3. Close the dialog and nothing happens (abort).

This correctly implements 3 and also adds some comments + order file in
reading order (using `function` instead of arrow functions allows this
easily).

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2025-06-02 16:56:07 +07:00
Louis 44dd42870e
Merge pull request #53252 from nextcloud/backport/52242/stable30 2025-06-02 15:12:13 +07:00
Ferdinand Thiessen de1811a6ff
Merge pull request #53247 from nextcloud/backport/52776/stable30
[stable30] fix(accounts): enhance UX for groups assignment
2025-06-02 13:01:03 +07:00
Louis Chemineau 79a0cdade4
test: add test that object store folder copy preserves folder size
Signed-off-by: Robin Appelman <robin@icewind.nl>
Signed-off-by: Louis Chemineau <louis@chmn.me>
2025-06-02 12:00:59 +07:00
Robin Appelman 7eb607c8b9
perf: set the folder size in the same query as we create it
Signed-off-by: Robin Appelman <robin@icewind.nl>
2025-06-02 12:00:59 +07:00
Louis Chemineau 1c80a98720 fix(S3): Use original folder size during copy
This prevent having copied folders with a wrongly set size of 0KB.

- Fix https://github.com/nextcloud/server/issues/51916

Signed-off-by: Louis Chemineau <louis@chmn.me>
2025-06-02 09:56:15 +07:00
nextcloud-command 9e2cfc9234 chore(assets): Recompile assets
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2025-06-02 07:41:32 +07:00
Maksim Sukharev e863106aa3 fix(AppNavigationGroupList): restore navigation panel and search/filter functionality for sub-admin groups
Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
2025-06-02 07:19:42 +07:00
Maksim Sukharev b31d11b2e0 fix(UserRow): retrieve available groups from the store
- rename 'available*Groups' to 'selected*Groups'
- populate store and 'availableGroups' from search requests

Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
2025-06-02 07:19:42 +07:00
Maksim Sukharev 257be36ee5 fix(NewUserDialog): retrieve available groups from the store
- fix 'this.isAdmin' to be 'this.settings.isAdmin'
- compute 'availableGroups' instead of setting it once mounted
- populate store and 'availableGroups' from search requests

Signed-off-by: Maksim Sukharev <antreesy.web@gmail.com>
2025-06-02 07:19:42 +07:00
Nextcloud bot fc9176b567
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-06-02 00:48:07 +07:00
Andy Scherzinger f2ff14e6a4
Merge pull request #52961 from nextcloud/backport/52808/stable30
[stable30] Introduce own method for calendar unsharing
2025-06-01 20:12:18 +07:00
Ferdinand Thiessen 878e18c9a4
Merge pull request #52836 from nextcloud/dependabot/npm_and_yarn/stable30/nextcloud/auth-2.5.1
build(deps): bump @nextcloud/auth from 2.4.0 to 2.5.1
2025-06-01 18:12:09 +07:00
dependabot[bot] 011a1f5ec3 build(deps): bump @nextcloud/auth from 2.4.0 to 2.5.1
Bumps [@nextcloud/auth](https://github.com/nextcloud/nextcloud-auth) from 2.4.0 to 2.5.1.
- [Release notes](https://github.com/nextcloud/nextcloud-auth/releases)
- [Changelog](https://github.com/nextcloud-libraries/nextcloud-auth/blob/main/CHANGELOG.md)
- [Commits](https://github.com/nextcloud/nextcloud-auth/compare/v2.4.0...v2.5.1)

---
updated-dependencies:
- dependency-name: "@nextcloud/auth"
  dependency-version: 2.5.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-06-01 17:45:50 +07:00
dependabot[bot] e6f09b5b04
Merge pull request #53095 from nextcloud/dependabot/npm_and_yarn/stable30/query-string-9.2.0 2025-06-01 15:35:32 +07:00
Daniel Kesselberg 4c13ef7f0d
fix(dav): only consider user's principal for unsharing entries
Before: Find all entries in `dav_shares` with `access = 5` for the user's principal, as well as group and circle memberships.

After: Find all entries in `dav_shares` with `access = 5` solely for the user's principal.

Future support for unsharing group or circle principals could be considered as a feature enhancement.

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2025-06-01 16:39:43 +07:00
Daniel Kesselberg d0871f6cdc
fix(caldav): prevent unshare entry creation for owner unsharing
- Introduces a `unshare` method in `CalDavBackend` to handle user unshares.
- Implements check to determine if unshare entry is needed based on group/circle membership.
- Ensures `updateShares` is only used when the calendar owner manages shares.
- Resolves issue where unsharing a calendar as owner created an unshare entry in `oc_dav_shares`.

Related PRs:
- https://github.com/nextcloud/server/pull/43117
- https://github.com/nextcloud/server/pull/47737

Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
2025-06-01 16:39:43 +07:00
nextcloud-command f82437ec37 chore(assets): Recompile assets
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2025-06-01 14:35:40 +07:00
dependabot[bot] d73584bdba
chore(deps): Bump query-string from 9.1.2 to 9.2.0
Dependabot couldn't find the original pull request head commit, 73fa7b1ed130390737beb360c38570bb5c3ab32b.
2025-06-01 14:31:52 +07:00
dependabot[bot] c28cfb7ee3
Merge pull request #52741 from nextcloud/dependabot/npm_and_yarn/stable30/nextcloud/upload-1.10.0 2025-06-01 14:28:39 +07:00
John Molakvoæ 3d70de2480
Merge pull request #53239 from nextcloud/backport/53178/stable30 2025-06-01 15:08:30 +07:00
nextcloud-command f4a2227732 chore(assets): Recompile assets
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2025-06-01 12:40:56 +07:00
John Molakvoæ b9c10e0250 fix(profile): keep error status persistent until valid
Signed-off-by: John Molakvoæ <skjnldsv@users.noreply.github.com>
2025-06-01 12:25:25 +07:00
skjnldsv dc258a531c fix(profile): do not restore previous value on invalid request
Signed-off-by: skjnldsv <skjnldsv@protonmail.com>
2025-06-01 12:25:25 +07:00
dependabot[bot] 44ba8a05f9 build(deps): bump @nextcloud/upload from 1.9.1 to 1.10.0
Bumps [@nextcloud/upload](https://github.com/nextcloud-libraries/nextcloud-upload) from 1.9.1 to 1.10.0.
- [Release notes](https://github.com/nextcloud-libraries/nextcloud-upload/releases)
- [Changelog](https://github.com/nextcloud-libraries/nextcloud-upload/blob/main/CHANGELOG.md)
- [Commits](https://github.com/nextcloud-libraries/nextcloud-upload/compare/v1.9.1...v1.10.0)

---
updated-dependencies:
- dependency-name: "@nextcloud/upload"
  dependency-version: 1.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2025-06-01 11:40:20 +07:00
Nextcloud bot d87b6080c8
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-06-01 00:22:14 +07:00
dependabot[bot] 8cbef179b7
Merge pull request #52607 from nextcloud/dependabot/npm_and_yarn/stable30/nextcloud/dialogs-6.2.0 2025-05-31 22:39:08 +07:00
dependabot[bot] e1adb955bc build(deps): bump @nextcloud/dialogs from 6.1.1 to 6.2.0
Bumps [@nextcloud/dialogs](https://github.com/nextcloud-libraries/nextcloud-dialogs) from 6.1.1 to 6.2.0.
- [Release notes](https://github.com/nextcloud-libraries/nextcloud-dialogs/releases)
- [Changelog](https://github.com/nextcloud-libraries/nextcloud-dialogs/blob/main/CHANGELOG.md)
- [Commits](https://github.com/nextcloud-libraries/nextcloud-dialogs/compare/v6.1.1...v6.2.0)

---
updated-dependencies:
- dependency-name: "@nextcloud/dialogs"
  dependency-version: 6.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2025-05-31 21:41:00 +07:00
dependabot[bot] a2796dbcbc
Merge pull request #53228 from nextcloud/dependabot/npm_and_yarn/stable30/moment-timezone-0.6.0 2025-05-31 21:32:37 +07:00
dependabot[bot] 594b3a8d17 build(deps): bump moment-timezone from 0.5.48 to 0.6.0
Bumps [moment-timezone](https://github.com/moment/moment-timezone) from 0.5.48 to 0.6.0.
- [Release notes](https://github.com/moment/moment-timezone/releases)
- [Changelog](https://github.com/moment/moment-timezone/blob/develop/changelog.md)
- [Commits](https://github.com/moment/moment-timezone/compare/0.5.48...0.6.0)

---
updated-dependencies:
- dependency-name: moment-timezone
  dependency-version: 0.6.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2025-05-31 20:18:03 +07:00
dependabot[bot] 999ad333ef
Merge pull request #53230 from nextcloud/dependabot/npm_and_yarn/stable30/focus-trap-7.6.5 2025-05-31 18:38:12 +07:00
dependabot[bot] cac822d365 build(deps): bump focus-trap from 7.6.4 to 7.6.5
Bumps [focus-trap](https://github.com/focus-trap/focus-trap) from 7.6.4 to 7.6.5.
- [Release notes](https://github.com/focus-trap/focus-trap/releases)
- [Changelog](https://github.com/focus-trap/focus-trap/blob/master/CHANGELOG.md)
- [Commits](https://github.com/focus-trap/focus-trap/compare/v7.6.4...v7.6.5)

---
updated-dependencies:
- dependency-name: focus-trap
  dependency-version: 7.6.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2025-05-31 18:10:06 +07:00
dependabot[bot] 0fb158b3c2
Merge pull request #53229 from nextcloud/dependabot/npm_and_yarn/stable30/sass-1.89.1 2025-05-31 17:48:32 +07:00
dependabot[bot] fb22d2ab56
Merge pull request #53231 from nextcloud/dependabot/npm_and_yarn/stable30/nextcloud/vue-8.27.0 2025-05-31 17:34:19 +07:00
Ferdinand Thiessen 645ddc8195
test: adjust cypress tests to be less flaky
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
2025-05-31 19:05:23 +07:00
Andy Scherzinger 8a7ffb0984
Merge pull request #53208 from nextcloud/backport/53145/stable30
[stable30] fix: log error when writing stream to dav file
2025-05-31 17:46:14 +07:00
dependabot[bot] e2de0c3b57 build(deps): bump @nextcloud/vue from 8.26.1 to 8.27.0
Bumps [@nextcloud/vue](https://github.com/nextcloud-libraries/nextcloud-vue) from 8.26.1 to 8.27.0.
- [Release notes](https://github.com/nextcloud-libraries/nextcloud-vue/releases)
- [Changelog](https://github.com/nextcloud-libraries/nextcloud-vue/blob/v8.27.0/CHANGELOG.md)
- [Commits](https://github.com/nextcloud-libraries/nextcloud-vue/compare/v8.26.1...v8.27.0)

---
updated-dependencies:
- dependency-name: "@nextcloud/vue"
  dependency-version: 8.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2025-05-31 15:29:48 +07:00
dependabot[bot] 33de4b31e0
build(deps-dev): bump sass from 1.89.0 to 1.89.1
Bumps [sass](https://github.com/sass/dart-sass) from 1.89.0 to 1.89.1.
- [Release notes](https://github.com/sass/dart-sass/releases)
- [Changelog](https://github.com/sass/dart-sass/blob/main/CHANGELOG.md)
- [Commits](https://github.com/sass/dart-sass/compare/1.89.0...1.89.1)

---
updated-dependencies:
- dependency-name: sass
  dependency-version: 1.89.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2025-05-31 02:12:51 +07:00
Nextcloud bot 455880d5ca
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-05-31 00:22:55 +07:00
Kate 22848f7725
Update apps/dav/lib/Connector/Sabre/File.php
Signed-off-by: Kate <26026535+provokateurin@users.noreply.github.com>
2025-05-30 16:07:56 +07:00
Robin Appelman ca432b8157 fix: log error when writing stream to dav file
Signed-off-by: Robin Appelman <robin@icewind.nl>
2025-05-30 12:46:32 +07:00
Andy Scherzinger 93320cd157
Merge pull request #53203 from nextcloud/backport/53198/stable30
[stable30] fix(user_status): Avoid unique constraint violations from parallel he…
2025-05-30 13:40:58 +07:00
Joas Schilling f248ceab71 fix(user_status): Avoid unique constraint violations from parallel heartbeats and GET requests
Signed-off-by: Joas Schilling <coding@schilljs.com>
2025-05-30 08:00:35 +07:00
Matthieu Gallien 6860c45515
Merge pull request #53192 from nextcloud/automated/noid/stable30-update-code-signing-crl
[stable30] fix(security): Update code signing revocation list
2025-05-30 09:03:58 +07:00
nextcloud-command 58fc11b39d fix(security): Update code signing revocation list
Signed-off-by: GitHub <noreply@github.com>
2025-05-30 02:38:55 +07:00
Nextcloud bot 6ed6316c4f
fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2025-05-30 00:22:51 +07:00
Kate e31206cd7b
Merge pull request #52676 from nextcloud/backport/52375/stable30 2025-05-29 20:54:32 +07:00