]>
source.dussan.org Git - nextcloud-server.git/log
Côme Chilliet [Thu, 29 Jun 2023 14:15:12 +0000 (16:15 +0200)]
Add method to list disabled users to IProvideEnabledStateBackend
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Côme Chilliet [Tue, 20 Jun 2023 13:10:39 +0000 (15:10 +0200)]
Fix since annotations and add boolean return type for setUserEnabled
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Côme Chilliet [Thu, 25 May 2023 13:55:04 +0000 (15:55 +0200)]
Fix User_Proxy tests as well
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Côme Chilliet [Thu, 25 May 2023 10:18:28 +0000 (12:18 +0200)]
Use DI for DeletedUsersIndex and fix tests
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Côme Chilliet [Thu, 25 May 2023 09:40:40 +0000 (11:40 +0200)]
Fix autoloaders
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Côme Chilliet [Tue, 23 May 2023 15:18:19 +0000 (17:18 +0200)]
Fix user tests, avoid setting enabled state to the same value
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Côme Chilliet [Tue, 23 May 2023 14:03:17 +0000 (16:03 +0200)]
[user_ldap] Add per-connection setting for marking remnants as disabled
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Côme Chilliet [Wed, 5 Oct 2022 15:58:56 +0000 (17:58 +0200)]
Use the new IProvideEnabledStateBackend interface in user_ldap
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Côme Chilliet [Wed, 5 Oct 2022 15:13:33 +0000 (17:13 +0200)]
Add user enabled state backend feature
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Côme Chilliet [Mon, 22 May 2023 12:30:10 +0000 (14:30 +0200)]
Merge pull request #38162 from nextcloud/automated/noid/master-update-psalm-baseline
[master] Update psalm-baseline.xml
Joas Schilling [Mon, 22 May 2023 12:17:27 +0000 (14:17 +0200)]
Merge pull request #38164 from nextcloud/show-pending-popover-menu-when-password-is-enabled-by-default
Show pending popover menu when password is enabled by default
Joas Schilling [Mon, 22 May 2023 12:06:18 +0000 (14:06 +0200)]
Merge pull request #38227 from nextcloud/allow-enforcing-share-passwords-only-when-already-asking-for-a-password
Allow enforcing share passwords only when already asking for a password
Joas Schilling [Mon, 22 May 2023 10:53:21 +0000 (12:53 +0200)]
chore(assets): Recompile JS
Signed-off-by: Joas Schilling <coding@schilljs.com>
Daniel Calviño Sánchez [Tue, 9 May 2023 23:54:32 +0000 (01:54 +0200)]
Show pending popover menu when password is enabled by default
When "Enforce password protection" is enabled in the sharing settings a
popover menu is shown to set a password before the share is created. On
the other hand, when "Always ask for a password" was enabled in the
sharing settings and a new link share was created the share was
immediately created with a default password; the user was not able to
specify a password (nor create the share without password).
The component template already provided the needed elements to also ask
for the password without enforcing it, but the popover menu was not
shown due to "enableLinkPasswordByDefault" being missing in "if"
conditions.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Daniel Calviño Sánchez [Tue, 9 May 2023 23:51:50 +0000 (01:51 +0200)]
Rename "pendingPassword" to "pendingEnforcedPassword"
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Joas Schilling [Mon, 22 May 2023 10:46:59 +0000 (12:46 +0200)]
chore(assets): Recompile JS
Signed-off-by: Joas Schilling <coding@schilljs.com>
Daniel Calviño Sánchez [Fri, 12 May 2023 12:54:59 +0000 (14:54 +0200)]
Disable "Enforce password protection" if not asking for a password
"Enforce password protection" is a subcase of "Always ask for a
password", so it should be disabled if its parent option is unchecked.
Although other dependant options in the sharing settings are fully
hidden instead of just disabled this option is disabled but shown to
avoid confusion when updating from a previous Nextcloud version where
"Always ask for a password" was unchecked and "Enforce password
protection" was checked.
Besides that, due to their dependency the enforced password protection
is now automatically unchecked too if its parent option is unchecked.
Finally, the groups excluded from password requirements are also
disabled when "Always ask for a password" is unchecked, as they might be
still shown if "Enforce password protection" was checked due to an
update from a previous version.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Daniel Calviño Sánchez [Fri, 12 May 2023 15:51:13 +0000 (17:51 +0200)]
Split long line
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Daniel Calviño Sánchez [Fri, 12 May 2023 04:13:35 +0000 (06:13 +0200)]
Indent "Enforce password protection"
"Enforce password protection" is a subcase of "Always ask for a
password", so it should be indented to visually show the dependency.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Daniel Calviño Sánchez [Fri, 12 May 2023 03:53:56 +0000 (05:53 +0200)]
Replace "div" with "span" inside "p"
The permitted contents of a paragraph are only phrasing contents, so
"div" elements can not be used, although "span" can. Besides being
invalid HTML it seems that the browser ends the paragraph at the div, so
the label/input that appears after it is treated as being in a new
paragraph, which is not indented by default, and thus is not aligned
with the rest of its sibling inputs.
Note that an additional div is nevertheless added once the page is
loaded to be able to select the groups, but this one does not break its
parent paragraph (maybe due to being added after the page load, but I do
not really know). Nevertheless, it needs to be explicitly indented, and
the second indentend wrapper needs to be removed, as it affects only the
label but not the div/input, and therefore the label had an extra
indentation over the input.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Daniel Calviño Sánchez [Fri, 12 May 2023 03:50:56 +0000 (05:50 +0200)]
Move "br" immediately after "label" for consistency with other elements
The rest of "<br/>" elements in the file appear immediately after their
previous "</label>" rather than in a new line.
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
Daniel Calviño Sánchez [Fri, 12 May 2023 03:49:41 +0000 (05:49 +0200)]
Add missing end tag for "label"
Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
nextcloud-command [Mon, 22 May 2023 02:29:09 +0000 (02:29 +0000)]
Update psalm baseline
Signed-off-by: GitHub <noreply@github.com>
Nextcloud bot [Mon, 22 May 2023 00:17:43 +0000 (00:17 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Nextcloud bot [Sun, 21 May 2023 00:17:10 +0000 (00:17 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
dependabot[bot] [Sat, 20 May 2023 03:54:51 +0000 (03:54 +0000)]
Merge pull request #38372 from nextcloud/dependabot/npm_and_yarn/tar-6.1.15
dependabot[bot] [Sat, 20 May 2023 03:05:38 +0000 (03:05 +0000)]
chore(deps-dev): Bump tar from 6.1.14 to 6.1.15
Bumps [tar](https://github.com/isaacs/node-tar) from 6.1.14 to 6.1.15.
- [Release notes](https://github.com/isaacs/node-tar/releases)
- [Changelog](https://github.com/isaacs/node-tar/blob/main/CHANGELOG.md)
- [Commits](https://github.com/isaacs/node-tar/compare/v6.1.14...v6.1.15)
---
updated-dependencies:
- dependency-name: tar
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
Nextcloud bot [Sat, 20 May 2023 00:17:12 +0000 (00:17 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Simon L [Fri, 19 May 2023 22:56:07 +0000 (00:56 +0200)]
Merge pull request #38354 from nextcloud/pulsejet/patch-ubr
Make unsupported browser check asynchronous
Varun Patil [Wed, 17 May 2023 22:09:00 +0000 (15:09 -0700)]
Make unsupported browser check asynchronous
This check is very expensive, and will pass almost 100% of the time.
Related #36728
Depends on #38329
Signed-off-by: Varun Patil <varunpatil@ucla.edu>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Simon L [Fri, 19 May 2023 21:29:24 +0000 (23:29 +0200)]
Merge pull request #37758 from nextcloud/redis-atomic
redis: use atomic operations everywhere
Simon L [Fri, 19 May 2023 21:27:12 +0000 (23:27 +0200)]
Merge pull request #38332 from nextcloud/pulsejet/patch-dead1
Remove some dead code in files app
Marcel Klehr [Fri, 19 May 2023 12:39:52 +0000 (14:39 +0200)]
Merge pull request #32775 from nextcloud/fix/23877/unread-comments
nextcloud-command [Fri, 19 May 2023 10:22:21 +0000 (10:22 +0000)]
Compile assets
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Christopher Ng [Wed, 3 May 2023 01:51:07 +0000 (18:51 -0700)]
fix(comments): Mark comments as read
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Simon L [Fri, 19 May 2023 09:58:22 +0000 (11:58 +0200)]
Merge pull request #38306 from nextcloud/enh/noid/migrate-to-ncselect
migrate a few components to NcSelect
Simon L [Fri, 19 May 2023 08:14:23 +0000 (10:14 +0200)]
address review
Signed-off-by: Simon L <szaimen@e.mail.de>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Simon L [Tue, 16 May 2023 10:11:03 +0000 (12:11 +0200)]
migrate a few components to NcSelect
Signed-off-by: Simon L <szaimen@e.mail.de>
Nextcloud bot [Fri, 19 May 2023 00:17:21 +0000 (00:17 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Nextcloud bot [Thu, 18 May 2023 18:46:31 +0000 (18:46 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
F. E Noel Nfebe [Thu, 18 May 2023 09:26:11 +0000 (10:26 +0100)]
Merge pull request #38344 from nextcloud/38340-fix-add-group-broken
38340 fix add group broken
fenn-cs [Wed, 17 May 2023 13:10:27 +0000 (14:10 +0100)]
Fix add new group event
1ee8fbaad1eea6544b21059f65efe12a9e601956 broke the addgroup functionality
by not updating the event to reflect the one in
https://github.com/nextcloud/nextcloud-vue/blob/master/src/components/NcAppNavigationNewItem/NcAppNavigationNewItem.vue
Resolves : https://github.com/nextcloud/server/issues/38340
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
F. E Noel Nfebe [Thu, 18 May 2023 07:08:16 +0000 (08:08 +0100)]
Merge pull request #38294 from nextcloud/fix/37137/add-aria-expanded-to-toggler-user-options
Use aria-expanded correctly on toggle user actions
dependabot[bot] [Thu, 18 May 2023 03:54:03 +0000 (03:54 +0000)]
Merge pull request #38232 from nextcloud/dependabot/npm_and_yarn/cypress-12.12.0
dependabot[bot] [Thu, 18 May 2023 01:57:31 +0000 (01:57 +0000)]
Merge pull request #38234 from nextcloud/dependabot/composer/build/integration/phpunit/phpunit-9.6.8
Nextcloud bot [Thu, 18 May 2023 00:17:49 +0000 (00:17 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
dependabot[bot] [Wed, 17 May 2023 23:44:07 +0000 (23:44 +0000)]
chore(deps-dev): Bump cypress from 12.11.0 to 12.12.0
Bumps [cypress](https://github.com/cypress-io/cypress) from 12.11.0 to 12.12.0.
- [Release notes](https://github.com/cypress-io/cypress/releases)
- [Changelog](https://github.com/cypress-io/cypress/blob/develop/CHANGELOG.md)
- [Commits](https://github.com/cypress-io/cypress/compare/v12.11.0...v12.12.0)
---
updated-dependencies:
- dependency-name: cypress
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Varun Patil [Wed, 17 May 2023 23:42:53 +0000 (16:42 -0700)]
Merge pull request #38323 from nextcloud/pulsejet/focus-visible
Remove focus-visible polyfill
fenn-cs [Tue, 16 May 2023 00:16:25 +0000 (01:16 +0100)]
Use aria-expanded correctly on toggle user actions
The aria-expanded attribute was added on the expandable item rather
Than the button that triggers the expand.
Resolves : #37137
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
dependabot[bot] [Wed, 17 May 2023 21:45:09 +0000 (21:45 +0000)]
chore(deps-dev): Bump phpunit/phpunit in /build/integration
Bumps [phpunit/phpunit](https://github.com/sebastianbergmann/phpunit) from 9.6.7 to 9.6.8.
- [Changelog](https://github.com/sebastianbergmann/phpunit/blob/9.6.8/ChangeLog-9.6.md)
- [Commits](https://github.com/sebastianbergmann/phpunit/compare/9.6.7...9.6.8)
---
updated-dependencies:
- dependency-name: phpunit/phpunit
dependency-type: direct:development
update-type: version-update:semver-patch
...
Signed-off-by: dependabot[bot] <support@github.com>
dependabot[bot] [Wed, 17 May 2023 21:44:26 +0000 (21:44 +0000)]
Merge pull request #38346 from nextcloud/dependabot/composer/build/integration/guzzlehttp/guzzle-7.6.1
Varun Patil [Wed, 17 May 2023 01:22:14 +0000 (18:22 -0700)]
Remove some dead code in files app
Signed-off-by: Varun Patil <varunpatil@ucla.edu>
Varun Patil [Tue, 16 May 2023 18:51:44 +0000 (11:51 -0700)]
Remove focus-visible polyfill
Supercedes and closes #35384
Signed-off-by: Varun Patil <varunpatil@ucla.edu>
Simon L [Wed, 17 May 2023 15:04:26 +0000 (17:04 +0200)]
Merge pull request #38330 from nextcloud/fix/alt-login-box-design
Adjust style of passwordless login
dependabot[bot] [Wed, 17 May 2023 14:01:20 +0000 (14:01 +0000)]
chore(deps-dev): Bump guzzlehttp/guzzle in /build/integration
Bumps [guzzlehttp/guzzle](https://github.com/guzzle/guzzle) from 7.5.1 to 7.6.1.
- [Release notes](https://github.com/guzzle/guzzle/releases)
- [Changelog](https://github.com/guzzle/guzzle/blob/7.6/CHANGELOG.md)
- [Commits](https://github.com/guzzle/guzzle/compare/7.5.1...7.6.1)
---
updated-dependencies:
- dependency-name: guzzlehttp/guzzle
dependency-type: direct:development
update-type: version-update:semver-minor
...
Signed-off-by: dependabot[bot] <support@github.com>
Joas Schilling [Wed, 17 May 2023 13:59:38 +0000 (15:59 +0200)]
Merge pull request #38336 from nextcloud/master-is-now-28
Master is now 28
Joas Schilling [Wed, 17 May 2023 10:01:39 +0000 (12:01 +0200)]
Merge pull request #38337 from nextcloud/enh/noid/disable-some-contactsmenu-tests
disable contacts menu features that regularly fail on drone
Andy Scherzinger [Wed, 17 May 2023 09:39:14 +0000 (11:39 +0200)]
Merge pull request #38328 from nextcloud/fix/codeowners
Fix codeowners named Χριστόφορος
Andy Scherzinger [Wed, 17 May 2023 09:38:45 +0000 (11:38 +0200)]
Update CODEOWNERS
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
Simon L [Wed, 17 May 2023 09:07:38 +0000 (11:07 +0200)]
Merge pull request #38327 from nextcloud/fix/dashboard-adjust-border
dashboard: Adjust border radius of panels to match main content container
Simon L [Wed, 17 May 2023 08:51:24 +0000 (10:51 +0200)]
disable contacts menu features that regularly fail on drone
Signed-off-by: Simon L <szaimen@e.mail.de>
Joas Schilling [Wed, 17 May 2023 08:44:07 +0000 (10:44 +0200)]
chore(release): Bump requirements and versions in apps/
Signed-off-by: Joas Schilling <coding@schilljs.com>
Joas Schilling [Wed, 17 May 2023 08:36:15 +0000 (10:36 +0200)]
chore(release): Bump Major version in master branch to 28
Signed-off-by: Joas Schilling <coding@schilljs.com>
Joas Schilling [Wed, 17 May 2023 08:34:27 +0000 (10:34 +0200)]
chore(CI): Update psalm baseline also on stable27
Signed-off-by: Joas Schilling <coding@schilljs.com>
Joas Schilling [Wed, 17 May 2023 08:33:16 +0000 (10:33 +0200)]
chore(CI): Backport the CA Cert update to stable27
Signed-off-by: Joas Schilling <coding@schilljs.com>
Joas Schilling [Wed, 17 May 2023 08:32:16 +0000 (10:32 +0200)]
chore(security): Bump "Expires" of well-known/security.txt
Signed-off-by: Joas Schilling <coding@schilljs.com>
Joas Schilling [Wed, 17 May 2023 08:30:46 +0000 (10:30 +0200)]
chore(CI): Add stable26 to dependabot config
Signed-off-by: Joas Schilling <coding@schilljs.com>
Simon L [Wed, 17 May 2023 02:29:11 +0000 (04:29 +0200)]
Merge pull request #38295 from nextcloud/deps/webdav-5.0.0
chore(deps): Bump webdav from 5.0.0-r3 to 5.0.0
Ferdinand Thiessen [Wed, 17 May 2023 00:19:36 +0000 (02:19 +0200)]
chore: compile assets
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Ferdinand Thiessen [Wed, 17 May 2023 00:06:39 +0000 (02:06 +0200)]
feat(login): Improve passwordless login box
* Remove wrong background of error message boxes
* Use `NcTextInput` for username or mail to align with login box
* Add a heading for better overview where you (as a user) are currently
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Ferdinand Thiessen [Wed, 17 May 2023 00:04:37 +0000 (02:04 +0200)]
feat(login): Use `tertiary` button for "back to login"
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Christopher Ng [Tue, 16 May 2023 01:37:21 +0000 (18:37 -0700)]
chore(deps): Bump webdav from 5.0.0-r3 to 5.0.0
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Nextcloud bot [Wed, 17 May 2023 00:17:37 +0000 (00:17 +0000)]
Fix(l10n): Update translations from Transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Christopher Ng [Tue, 16 May 2023 23:55:48 +0000 (16:55 -0700)]
Fix codeowners named Χριστόφορος
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Pytal [Tue, 16 May 2023 23:41:59 +0000 (16:41 -0700)]
Merge pull request #38316 from nextcloud/deps/nextcloud/vue-7.11.6
Ferdinand Thiessen [Tue, 16 May 2023 22:57:50 +0000 (00:57 +0200)]
fix(dashboard): Adjust border radius of panels to match main content container
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Christopher Ng [Tue, 16 May 2023 22:49:11 +0000 (15:49 -0700)]
chore(deps): Bump @nextcloud/vue from 7.11.4 to 7.11.6
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Simon L [Tue, 16 May 2023 22:14:42 +0000 (00:14 +0200)]
Merge pull request #36692 from nextcloud/throw-exception-to-avoid-division-by-zero
fix(preview-generator): Throw exception before dividing by zero when generating previews
Simon L [Tue, 16 May 2023 21:36:10 +0000 (23:36 +0200)]
Merge pull request #38131 from nextcloud/fix/login-footer-design
fix(login): Make login form and footer look like a dashboard panel
Simon L [Tue, 16 May 2023 21:32:15 +0000 (23:32 +0200)]
Merge pull request #31001 from takahiro-blab/master
Fixed 'overwritewebroot' not work with 'overwritecondaddr'.
Simon L [Tue, 16 May 2023 20:50:37 +0000 (22:50 +0200)]
Merge pull request #38321 from nextcloud/pulsejet/patch-dbtableprefix
docs: add dbtableprefix to sample config
Ferdinand Thiessen [Mon, 15 May 2023 10:15:24 +0000 (12:15 +0200)]
chore: Build compiled assets
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Varun Patil [Tue, 16 May 2023 18:20:13 +0000 (11:20 -0700)]
Add dbtableprefix to sample config
Signed-off-by: Varun Patil <varunpatil@ucla.edu>
Ferdinand Thiessen [Mon, 15 May 2023 13:59:34 +0000 (15:59 +0200)]
feat(theming): Add border radius rounded css variable so `body-container-radius` can be used on mobile devices
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Ferdinand Thiessen [Mon, 8 May 2023 22:43:22 +0000 (00:43 +0200)]
fix(login): Make login form and footer look like a dashboard panel
Also adjust border radius to match new main content box.
Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
Joas Schilling [Tue, 16 May 2023 17:40:05 +0000 (19:40 +0200)]
Merge pull request #38310 from nextcloud/followup/38170/remove-former-track-by-property
fix(workflowengine): Remove unused property track-by
Simon L [Tue, 16 May 2023 17:29:29 +0000 (19:29 +0200)]
Merge pull request #38101 from nextcloud/Jerome-Herbinet-share-expire-after-n-days-width-patch-1
Fix : Share Expire After N Days width
Simon L [Tue, 16 May 2023 17:24:17 +0000 (19:24 +0200)]
Merge pull request #38303 from nextcloud/fix/loadmore
fix(search): fix load more
Simon L [Tue, 16 May 2023 17:08:39 +0000 (19:08 +0200)]
Merge pull request #38115 from DerGenaue/patch-1
Rename `numericStorageId` to `numericExternalStorageId` in PersonalMount.php
Simon L [Tue, 16 May 2023 17:01:50 +0000 (19:01 +0200)]
Merge pull request #37326 from nextcloud/add-IMoveTarget-support-to-addressbooks
feat(CardDAV): Add Sabre\DAV\IMoveTarget support to OCA\DAV\CardDAV\AddressBook
Jérôme Herbinet [Fri, 5 May 2023 13:57:24 +0000 (15:57 +0200)]
Finally no with seams better to be relevant with other fields
Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Joas Schilling [Tue, 16 May 2023 13:23:28 +0000 (15:23 +0200)]
chore(assets): Recompile JS
Signed-off-by: Joas Schilling <coding@schilljs.com>
Joas Schilling [Tue, 16 May 2023 13:22:55 +0000 (15:22 +0200)]
fix(workflowengine): Remove unused property track-by
Signed-off-by: Joas Schilling <coding@schilljs.com>
Simon L [Tue, 16 May 2023 13:13:22 +0000 (15:13 +0200)]
Merge pull request #38205 from nextcloud/feat/css-add-info-color
Add css variables for info colors (`--color-info`)
Simon L [Tue, 16 May 2023 09:53:30 +0000 (11:53 +0200)]
Merge pull request #38030 from nextcloud/enh/retry-transaction
Wrapper method to easily retry deadlock exceptions
John Molakvoæ [Tue, 16 May 2023 09:42:12 +0000 (11:42 +0200)]
fix(search): fix load more
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Jérôme Herbinet [Fri, 5 May 2023 13:06:10 +0000 (15:06 +0200)]
Fix : Share Expire After N Days width
Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com>
Simon L [Tue, 16 May 2023 09:39:39 +0000 (11:39 +0200)]
Fixed bug which 'overwritewebroot' does not work with 'overwritecondaddr'.
Signed-off-by: Takahiro Nagai <78393959+takahiro-blab@users.noreply.github.com>
Signed-off-by: Simon L <szaimen@e.mail.de>
Thomas Citharel [Tue, 21 Mar 2023 17:11:56 +0000 (18:11 +0100)]
feat(CardDAV): Add Sabre\DAV\IMoveTarget support to OCA\DAV\CardDAV\AddressBook
This allows to just UPDATE the card row instead of deleting it and reinsert it. It's very similar to https://github.com/nextcloud/server/pull/30120 for calendars.
As we need the addressbookid exposed, this introduces OCA\DAV\CardDAV\Card that extends Sabre's.
I chose specifically NOT to auto-inject LoggerInterface in Addressbook like in #30120 because the chain of DI is huge just for ONE simple call and it would break an existing dirty call (OCA\Contacts calling OCA\DAV) of ContactsManager in Contacts: https://github.com/nextcloud/contacts/pull/1722 (in SocialApiService), but this is debatable.
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
Simon L [Tue, 16 May 2023 09:37:49 +0000 (11:37 +0200)]
Merge pull request #38143 from nextcloud/fix/generated-avatars-cache
Fix generated avatars cache