]> source.dussan.org Git - nextcloud-server.git/log
nextcloud-server.git
2 years agoFix distorted previews when using imaginary 35105/head
Richard Steinmetz [Fri, 11 Nov 2022 13:21:05 +0000 (14:21 +0100)]
Fix distorted previews when using imaginary

Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
2 years ago[tx-robot] updated from transifex
Nextcloud bot [Fri, 11 Nov 2022 02:14:02 +0000 (02:14 +0000)]
[tx-robot] updated from transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years agoMerge pull request #35074 from nextcloud/fix/fix-path-normalizing
Joas Schilling [Thu, 10 Nov 2022 17:50:18 +0000 (18:50 +0100)]
Merge pull request #35074 from nextcloud/fix/fix-path-normalizing

Make sure that path is normalized and then checked,

2 years agoMerge pull request #35054 from nextcloud/fix-html-entities-not-decoded-in-comment...
Pytal [Thu, 10 Nov 2022 17:10:11 +0000 (09:10 -0800)]
Merge pull request #35054 from nextcloud/fix-html-entities-not-decoded-in-comment-just-added

2 years agoMerge pull request #35076 from nextcloud/fix/bump-swiftmailer/swiftmailer-to-6.3.0
Côme Chilliet [Thu, 10 Nov 2022 16:08:04 +0000 (17:08 +0100)]
Merge pull request #35076 from nextcloud/fix/bump-swiftmailer/swiftmailer-to-6.3.0

Bump swiftmailer/swiftmailer to 6.3.0

2 years agoBump swiftmailer/swiftmailer to 6.3.0 35076/head
Côme Chilliet [Thu, 10 Nov 2022 14:36:16 +0000 (15:36 +0100)]
Bump swiftmailer/swiftmailer to 6.3.0

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2 years agoMake sure that path is normalized and then checked, 35074/head
Côme Chilliet [Thu, 10 Nov 2022 14:03:15 +0000 (15:03 +0100)]
Make sure that path is normalized and then checked,

 and not the other way around

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2 years agoCompile assets 35054/head
nextcloud-command [Wed, 9 Nov 2022 17:38:45 +0000 (17:38 +0000)]
Compile assets

Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2 years agoFix HTML entities not decoded in comment just added
Daniel Calviño Sánchez [Mon, 7 Nov 2022 23:27:15 +0000 (00:27 +0100)]
Fix HTML entities not decoded in comment just added

The XML data received from the comments endpoint has an inconsistent
encoding; some entities are encoded once and others are encoded twice.
When the comment list is loaded the comments are fetched using
GetComments, which handles all that, and therefore shows the messages
and author names as expected.

However, when a new comment is posted the list is not got again; instead
the new comment is loaded from the comment data returned after posting
it. This is done in NewComment, which did not decode the messages nor
the author names, and therefore showed, for example, "&amp;" instead of
"&".

To solve that now the same decoding logic used in GetComments is applied
too in NewComment.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2 years agoExtract "decodeHtmlEntities" function to its own file
Daniel Calviño Sánchez [Mon, 7 Nov 2022 23:26:04 +0000 (00:26 +0100)]
Extract "decodeHtmlEntities" function to its own file

This will make possible to use it from files other than
"GetComments.js".

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2 years ago[tx-robot] updated from transifex
Nextcloud bot [Thu, 10 Nov 2022 02:15:26 +0000 (02:15 +0000)]
[tx-robot] updated from transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years agoMerge pull request #35063 from nextcloud/fix/noid/versions-empty-top-margin
Pytal [Wed, 9 Nov 2022 23:58:02 +0000 (15:58 -0800)]
Merge pull request #35063 from nextcloud/fix/noid/versions-empty-top-margin

2 years agoFix top margin in empty versions list 35063/head
Richard Steinmetz [Wed, 9 Nov 2022 21:49:25 +0000 (22:49 +0100)]
Fix top margin in empty versions list

Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
2 years agoMerge pull request #34989 from nextcloud/Valdnet-patch-4
Simon L [Wed, 9 Nov 2022 18:55:04 +0000 (19:55 +0100)]
Merge pull request #34989 from nextcloud/Valdnet-patch-4

l10n: Shorten link

2 years agoMerge pull request #35052 from nextcloud/fix-sidebar-not-hidden-when-changing-section...
Simon L [Wed, 9 Nov 2022 18:51:14 +0000 (19:51 +0100)]
Merge pull request #35052 from nextcloud/fix-sidebar-not-hidden-when-changing-section-in-files-app

Fix sidebar not automatically hidden in Files app

2 years agoMerge pull request #35042 from nextcloud/enh/uri-description
Pytal [Wed, 9 Nov 2022 18:14:51 +0000 (10:14 -0800)]
Merge pull request #35042 from nextcloud/enh/uri-description

Add description for calendar uri

2 years agoFix test 34989/head
Valdnet [Wed, 9 Nov 2022 17:01:20 +0000 (18:01 +0100)]
Fix test

Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
2 years agoFix sidebar not automatically hidden in Files app 35052/head
Daniel Calviño Sánchez [Mon, 7 Nov 2022 23:53:12 +0000 (00:53 +0100)]
Fix sidebar not automatically hidden in Files app

Although the Files app creates the legacy sidebar (details view) it is
then replaced with the newer Vue app sidebar. Due to this ".detailsView"
no longer finds an element and therefore nothing was hidden when
"hideAppSidebar($('.detailsView'))" was called (for example, when
changing to another section).

However, "OC.Apps.hideAppSidebar()" does not properly work either with
the Vue sidebar used in the Files app (once hidden the sidebar is not
shown again). For simplicity, and to avoid any possible side effect in
other apps from changing "OC.Apps.hideAppSidebar", now
"OC.Files.Sidebar.close()" is used instead.

Signed-off-by: Daniel Calviño Sánchez <danxuliu@gmail.com>
2 years ago[tx-robot] updated from transifex
Nextcloud bot [Wed, 9 Nov 2022 02:14:32 +0000 (02:14 +0000)]
[tx-robot] updated from transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years agoAdd description for calendar uri 35042/head
Christopher Ng [Wed, 9 Nov 2022 00:34:20 +0000 (00:34 +0000)]
Add description for calendar uri

Signed-off-by: Christopher Ng <chrng8@gmail.com>
2 years agoMerge pull request #34613 from nextcloud/enh/noid/fix-checkmark-icon
Simon L [Tue, 8 Nov 2022 17:58:55 +0000 (18:58 +0100)]
Merge pull request #34613 from nextcloud/enh/noid/fix-checkmark-icon

fix checkmark for theme settings in dark mode

2 years agoMerge pull request #32211 from nextcloud/feat/repair_share_ownership
Simon L [Tue, 8 Nov 2022 17:57:03 +0000 (18:57 +0100)]
Merge pull request #32211 from nextcloud/feat/repair_share_ownership

Add repair command to fix wrong share ownership

2 years agoupdate autoloader 32211/head
Robin Appelman [Tue, 8 Nov 2022 16:14:22 +0000 (17:14 +0100)]
update autoloader

Signed-off-by: Robin Appelman <robin@icewind.nl>
2 years agofix repairing non user shares when repairing all shares
Robin Appelman [Tue, 18 Oct 2022 13:42:25 +0000 (15:42 +0200)]
fix repairing non user shares when repairing all shares

Signed-off-by: Robin Appelman <robin@icewind.nl>
2 years agoremove no longer needed code
Robin Appelman [Tue, 18 Oct 2022 12:31:04 +0000 (14:31 +0200)]
remove no longer needed code

Signed-off-by: Robin Appelman <robin@icewind.nl>
2 years agosplit repairing into two stages to prevent long open transaction
Robin Appelman [Tue, 11 Oct 2022 13:36:21 +0000 (15:36 +0200)]
split repairing into two stages to prevent long open transaction

Signed-off-by: Robin Appelman <robin@icewind.nl>
2 years agoupdate shares directly in db
Robin Appelman [Fri, 30 Sep 2022 13:34:55 +0000 (15:34 +0200)]
update shares directly in db

Signed-off-by: Robin Appelman <robin@icewind.nl>
2 years agoMore verbose output for repair share ownership cmd
Vincent Petry [Thu, 29 Sep 2022 19:23:45 +0000 (21:23 +0200)]
More verbose output for repair share ownership cmd

Signed-off-by: Vincent Petry <vincent@nextcloud.com>
2 years agomove share owner repair to occ command
Robin Appelman [Thu, 29 Sep 2022 11:40:04 +0000 (13:40 +0200)]
move share owner repair to occ command

Signed-off-by: Robin Appelman <robin@icewind.nl>
2 years agoAdd repair step to fix wrong share ownership
Louis Chemineau [Thu, 28 Apr 2022 13:23:54 +0000 (15:23 +0200)]
Add repair step to fix wrong share ownership

Signed-off-by: Louis Chemineau <louis@chmn.me>
2 years agoMerge pull request #35028 from nextcloud/fix/dns-pin-middleware-throws-public-ip
Richard Steinmetz [Tue, 8 Nov 2022 15:44:50 +0000 (16:44 +0100)]
Merge pull request #35028 from nextcloud/fix/dns-pin-middleware-throws-public-ip

Fix DNS Pin Middleware throwing for public IPs

2 years agoCompile assets 34613/head
nextcloud-command [Tue, 8 Nov 2022 13:44:49 +0000 (13:44 +0000)]
Compile assets

Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
2 years agofix checkmark for theme settings in dark mode
szaimen [Fri, 14 Oct 2022 15:30:11 +0000 (17:30 +0200)]
fix checkmark for theme settings in dark mode

Signed-off-by: szaimen <szaimen@e.mail.de>
2 years agoFix DNS Pin Middleware throwing for public IPs 35028/head
Christoph Wurst [Tue, 8 Nov 2022 13:18:05 +0000 (14:18 +0100)]
Fix DNS Pin Middleware throwing for public IPs

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2 years agoMerge pull request #32838 from markuszeller/bugfix/32837/implicitFloatConversion
Simon L [Tue, 8 Nov 2022 09:53:13 +0000 (10:53 +0100)]
Merge pull request #32838 from markuszeller/bugfix/32837/implicitFloatConversion

Cast to int

2 years agoMerge pull request #34985 from nextcloud/dependabot/npm_and_yarn/nextcloud/l10n-1.6.0
Joas Schilling [Tue, 8 Nov 2022 05:51:31 +0000 (06:51 +0100)]
Merge pull request #34985 from nextcloud/dependabot/npm_and_yarn/nextcloud/l10n-1.6.0

Bump @nextcloud/l10n from 1.4.1 to 1.6.0

2 years ago[tx-robot] updated from transifex
Nextcloud bot [Tue, 8 Nov 2022 02:14:18 +0000 (02:14 +0000)]
[tx-robot] updated from transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years agoBump @nextcloud/l10n from 1.4.1 to 1.6.0 34985/head
dependabot[bot] [Mon, 7 Nov 2022 19:19:54 +0000 (19:19 +0000)]
Bump @nextcloud/l10n from 1.4.1 to 1.6.0

Bumps [@nextcloud/l10n](https://github.com/nextcloud/nextcloud-l10n) from 1.4.1 to 1.6.0.
- [Release notes](https://github.com/nextcloud/nextcloud-l10n/releases)
- [Changelog](https://github.com/nextcloud/nextcloud-l10n/blob/master/CHANGELOG.md)
- [Commits](https://github.com/nextcloud/nextcloud-l10n/compare/v1.4.1...v1.6.0)

---
updated-dependencies:
- dependency-name: "@nextcloud/l10n"
  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>
2 years agoMerge pull request #34986 from nextcloud/dependabot/npm_and_yarn/handlebars-loader...
Pytal [Mon, 7 Nov 2022 19:04:50 +0000 (11:04 -0800)]
Merge pull request #34986 from nextcloud/dependabot/npm_and_yarn/handlebars-loader-1.7.2

Bump handlebars-loader from 1.7.1 to 1.7.2

2 years agoCast to int #32837 32838/head
Markus Zeller [Sun, 12 Jun 2022 13:01:22 +0000 (15:01 +0200)]
Cast to int #32837

Signed-off-by: Markus Zeller <git@markuszeller.com>
2 years agoMerge pull request #35007 from nextcloud/fix/lower-logging-level-user-session-cookie...
Christoph Wurst [Mon, 7 Nov 2022 15:35:52 +0000 (16:35 +0100)]
Merge pull request #35007 from nextcloud/fix/lower-logging-level-user-session-cookie-login

Fix unsuccessful token login logged as error

2 years agoMerge pull request #35000 from nextcloud/bugfix/34959/fix-cron-warning-with-time...
Joas Schilling [Mon, 7 Nov 2022 14:38:31 +0000 (15:38 +0100)]
Merge pull request #35000 from nextcloud/bugfix/34959/fix-cron-warning-with-time-insensitive-jobs

Fix cron warning with time insensitive jobs

2 years agoFix unsuccessful token login logged as error 35007/head
Christoph Wurst [Mon, 7 Nov 2022 14:08:48 +0000 (15:08 +0100)]
Fix unsuccessful token login logged as error

The condition of a non-existent login token can happen for concurrent
requests. Admins can not do anything about this. So this is to be
expected to happen occasionally. This event is only bad if none of the
requests is able to re-acquire a session. Luckily this happens rarely.

If a login loop persists an admin can still lower the log level to find
this info. But a default error log level will no longer write those
infos about the failed cookie login of one request.

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2 years agoMerge pull request #34996 from nextcloud/fix/bump-microsoft/azure-storage-blob-to...
Côme Chilliet [Mon, 7 Nov 2022 13:34:25 +0000 (14:34 +0100)]
Merge pull request #34996 from nextcloud/fix/bump-microsoft/azure-storage-blob-to-1.5.4

Bump microsoft/azure-storage-blob to 1.5.4

2 years agoMerge pull request #32530 from nextcloud/dependabot/npm_and_yarn/nextcloud-vue-collec...
Vincent Petry [Mon, 7 Nov 2022 12:58:08 +0000 (13:58 +0100)]
Merge pull request #32530 from nextcloud/dependabot/npm_and_yarn/nextcloud-vue-collections-0.10.0

Bump nextcloud-vue-collections from 0.9.0 to 0.10.0

2 years agoMerge pull request #34929 from nextcloud/chore/deprecate-app-container-aliases
Roeland Jago Douma [Mon, 7 Nov 2022 11:04:07 +0000 (12:04 +0100)]
Merge pull request #34929 from nextcloud/chore/deprecate-app-container-aliases

Clean up and deprecate app container parameter aliases

2 years agoAlign with 3rdparty master 34996/head
Côme Chilliet [Mon, 7 Nov 2022 11:02:14 +0000 (12:02 +0100)]
Align with 3rdparty master

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2 years agoRecompile 35000/head
Joas Schilling [Mon, 7 Nov 2022 10:27:31 +0000 (11:27 +0100)]
Recompile

Signed-off-by: Joas Schilling <coding@schilljs.com>
2 years agoIncrease the "bad waiting time" for cron mode to 24h to account for "time insensitive...
Joas Schilling [Mon, 7 Nov 2022 10:04:58 +0000 (11:04 +0100)]
Increase the "bad waiting time" for cron mode to 24h to account for "time insensitive" jobs

Signed-off-by: Joas Schilling <coding@schilljs.com>
2 years agoShow the correct warning for system cron vs. webcron/ajax
Joas Schilling [Mon, 7 Nov 2022 10:01:22 +0000 (11:01 +0100)]
Show the correct warning for system cron vs. webcron/ajax

Signed-off-by: Joas Schilling <coding@schilljs.com>
2 years agoMerge pull request #34937 from nextcloud/fix/do-not-crash-on-extension-without-version
Simon L [Mon, 7 Nov 2022 09:45:44 +0000 (10:45 +0100)]
Merge pull request #34937 from nextcloud/fix/do-not-crash-on-extension-without-version

Avoid a crash when a PHP extension has no version

2 years agoBump microsoft/azure-storage-blob to 1.5.4
Côme Chilliet [Mon, 7 Nov 2022 09:44:24 +0000 (10:44 +0100)]
Bump microsoft/azure-storage-blob to 1.5.4

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2 years agoSuppress false-positives from psalm, waiting for fix upstream 34937/head
Côme Chilliet [Mon, 7 Nov 2022 09:01:53 +0000 (10:01 +0100)]
Suppress false-positives from psalm, waiting for fix upstream

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2 years agoMerge pull request #34987 from nextcloud/automated/noid/master-update-psalm-baseline
Côme Chilliet [Mon, 7 Nov 2022 08:24:03 +0000 (09:24 +0100)]
Merge pull request #34987 from nextcloud/automated/noid/master-update-psalm-baseline

[master] Update psalm-baseline.xml

2 years agoUpdate psalm baseline 34987/head
nextcloud-command [Mon, 7 Nov 2022 04:24:52 +0000 (04:24 +0000)]
Update psalm baseline

Signed-off-by: GitHub <noreply@github.com>
2 years ago[tx-robot] updated from transifex
Nextcloud bot [Mon, 7 Nov 2022 02:14:09 +0000 (02:14 +0000)]
[tx-robot] updated from transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years ago[tx-robot] updated from transifex
Nextcloud bot [Sun, 6 Nov 2022 02:12:40 +0000 (02:12 +0000)]
[tx-robot] updated from transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years agol10n: Shorten link
Valdnet [Sat, 5 Nov 2022 17:14:41 +0000 (18:14 +0100)]
l10n: Shorten link

Signed-off-by: Valdnet <47037905+Valdnet@users.noreply.github.com>
2 years agoMerge pull request #18210 from dbw9580/master
Simon L [Sat, 5 Nov 2022 10:32:13 +0000 (11:32 +0100)]
Merge pull request #18210 from dbw9580/master

Limit number of concurrent preview generations

2 years agoLimit-number-of-concurrent-preview-generations 18210/head
szaimen [Sun, 30 Oct 2022 12:43:22 +0000 (13:43 +0100)]
Limit-number-of-concurrent-preview-generations

Signed-off-by: Bowen Ding <dbw9580@live.com>
Signed-off-by: szaimen <szaimen@e.mail.de>
2 years agoBump handlebars-loader from 1.7.1 to 1.7.2 34986/head
dependabot[bot] [Sat, 5 Nov 2022 03:23:51 +0000 (03:23 +0000)]
Bump handlebars-loader from 1.7.1 to 1.7.2

Bumps [handlebars-loader](https://github.com/pcardune/handlebars-loader) from 1.7.1 to 1.7.2.
- [Release notes](https://github.com/pcardune/handlebars-loader/releases)
- [Changelog](https://github.com/pcardune/handlebars-loader/blob/main/CHANGELOG.md)
- [Commits](https://github.com/pcardune/handlebars-loader/compare/v1.7.1...v1.7.2)

---
updated-dependencies:
- dependency-name: handlebars-loader
  dependency-type: direct:development
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
2 years ago[tx-robot] updated from transifex
Nextcloud bot [Sat, 5 Nov 2022 02:15:04 +0000 (02:15 +0000)]
[tx-robot] updated from transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years agoMerge pull request #34775 from nextcloud/bugfix/noid/mailer-set-to
Julius Härtl [Fri, 4 Nov 2022 17:24:55 +0000 (18:24 +0100)]
Merge pull request #34775 from nextcloud/bugfix/noid/mailer-set-to

Do not throw errors when invalid setTo email is provided

2 years agoMerge pull request #33181 from nextcloud/dependabot/composer/build/integration/behat...
dependabot[bot] [Fri, 4 Nov 2022 16:41:23 +0000 (16:41 +0000)]
Merge pull request #33181 from nextcloud/dependabot/composer/build/integration/behat/behat-approx-3.11.0

2 years agoMerge pull request #34702 from nextcloud/fix/clean-ldap-wizard-typing
Vincent Petry [Fri, 4 Nov 2022 16:29:30 +0000 (17:29 +0100)]
Merge pull request #34702 from nextcloud/fix/clean-ldap-wizard-typing

Clean up LDAP Wizard typing

2 years agoMerge pull request #34834 from nextcloud/bugfix/noid/skeleton-size-calc
Vincent Petry [Fri, 4 Nov 2022 16:23:40 +0000 (17:23 +0100)]
Merge pull request #34834 from nextcloud/bugfix/noid/skeleton-size-calc

Fix size calculation on copying the skeleton files

2 years agoMerge pull request #34909 from nextcloud/fix/21370/duplicate-notifications-2
Vincent Petry [Fri, 4 Nov 2022 16:19:36 +0000 (17:19 +0100)]
Merge pull request #34909 from nextcloud/fix/21370/duplicate-notifications-2

Fix duplicate event email notifications

2 years agoBump nextcloud-vue-collections from 0.9.0 to 0.10.0 32530/head
dependabot[bot] [Fri, 4 Nov 2022 16:00:07 +0000 (16:00 +0000)]
Bump nextcloud-vue-collections from 0.9.0 to 0.10.0

Bumps [nextcloud-vue-collections](https://github.com/juliushaertl/nextcloud-vue-collections) from 0.9.0 to 0.10.0.
- [Release notes](https://github.com/juliushaertl/nextcloud-vue-collections/releases)
- [Commits](https://github.com/juliushaertl/nextcloud-vue-collections/compare/v0.9.0...v0.10.0)

---
updated-dependencies:
- dependency-name: nextcloud-vue-collections
  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>
2 years agoUpdate behat/behat requirement in /build/integration 33181/head
dependabot[bot] [Fri, 4 Nov 2022 15:46:56 +0000 (15:46 +0000)]
Update behat/behat requirement in /build/integration

Updates the requirements on [behat/behat](https://github.com/Behat/Behat) to permit the latest version.
- [Release notes](https://github.com/Behat/Behat/releases)
- [Changelog](https://github.com/Behat/Behat/blob/master/CHANGELOG.md)
- [Commits](https://github.com/Behat/Behat/compare/v3.10.0...v3.11.0)

---
updated-dependencies:
- dependency-name: behat/behat
  dependency-type: direct:development
...

Signed-off-by: dependabot[bot] <support@github.com>
2 years agoMerge pull request #33884 from nextcloud/dependabot/composer/build/integration/guzzle...
Vincent Petry [Fri, 4 Nov 2022 15:46:02 +0000 (16:46 +0100)]
Merge pull request #33884 from nextcloud/dependabot/composer/build/integration/guzzlehttp/guzzle-7.5.0

Bump guzzlehttp/guzzle from 7.4.5 to 7.5.0 in /build/integration

2 years agoFix duplicate event email notifications 34909/head
Richard Steinmetz [Tue, 1 Nov 2022 14:49:54 +0000 (15:49 +0100)]
Fix duplicate event email notifications

Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
2 years agoMerge pull request #34963 from nextcloud/followup/34522/fix-invalid-date
Joas Schilling [Fri, 4 Nov 2022 10:05:10 +0000 (11:05 +0100)]
Merge pull request #34963 from nextcloud/followup/34522/fix-invalid-date

Fix invalid date in security.txt

2 years agoFix invalid date in security.txt 34963/head
Joas Schilling [Fri, 4 Nov 2022 06:54:57 +0000 (07:54 +0100)]
Fix invalid date in security.txt

Signed-off-by: Joas Schilling <coding@schilljs.com>
2 years ago[tx-robot] updated from transifex
Nextcloud bot [Fri, 4 Nov 2022 02:14:14 +0000 (02:14 +0000)]
[tx-robot] updated from transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years agoMerge pull request #34954 from nextcloud/bugfix/noid/autoloader-update-imip
Simon L [Thu, 3 Nov 2022 21:10:51 +0000 (22:10 +0100)]
Merge pull request #34954 from nextcloud/bugfix/noid/autoloader-update-imip

Dump autoloaders for new IHandleImipMessage

2 years agoMerge pull request #34934 from nextcloud/bugfix/noid/session-reopen-read
Julius Härtl [Thu, 3 Nov 2022 16:26:31 +0000 (17:26 +0100)]
Merge pull request #34934 from nextcloud/bugfix/noid/session-reopen-read

Read encrypted session data again on reopen

2 years agoDump autoloaders for new IHandleImipMessage 34954/head
Julius Härtl [Thu, 3 Nov 2022 16:21:21 +0000 (17:21 +0100)]
Dump autoloaders for new IHandleImipMessage

Signed-off-by: Julius Härtl <jus@bitgrid.net>
2 years agoDo not throw errors when invalid setTo email is provided 34775/head
Julius Härtl [Mon, 24 Oct 2022 14:45:24 +0000 (16:45 +0200)]
Do not throw errors when invalid setTo email is provided

Signed-off-by: Julius Härtl <jus@bitgrid.net>
2 years agoMerge pull request #34678 from pulsejet/patch-jpeg
Côme Chilliet [Thu, 3 Nov 2022 15:11:03 +0000 (16:11 +0100)]
Merge pull request #34678 from pulsejet/patch-jpeg

Interlace all output JPEG

2 years agoMerge pull request #34893 from nextcloud/fix/move-imip-to-separate-interface
Christoph Wurst [Thu, 3 Nov 2022 14:03:42 +0000 (15:03 +0100)]
Merge pull request #34893 from nextcloud/fix/move-imip-to-separate-interface

Move iMIP to its own interface

2 years agoMerge pull request #34330 from nextcloud/fix/fix-contacts-test-php8
Côme Chilliet [Thu, 3 Nov 2022 13:55:06 +0000 (14:55 +0100)]
Merge pull request #34330 from nextcloud/fix/fix-contacts-test-php8

Fix ContactsStoreTests under PHP 8.2

2 years agoMerge pull request #32565 from nextcloud/chore/modernize-error-handler
Christoph Wurst [Thu, 3 Nov 2022 13:42:51 +0000 (14:42 +0100)]
Merge pull request #32565 from nextcloud/chore/modernize-error-handler

Modernize the error handler

2 years agoMerge pull request #34933 from nextcloud/automated/noid/master-update-psalm-baseline
Carl Schwan [Thu, 3 Nov 2022 13:24:01 +0000 (14:24 +0100)]
Merge pull request #34933 from nextcloud/automated/noid/master-update-psalm-baseline

[master] Update psalm-baseline.xml

2 years agoMerge pull request #33605 from nextcloud/perf/user-getdisplayname-cache
Anna [Thu, 3 Nov 2022 12:58:58 +0000 (13:58 +0100)]
Merge pull request #33605 from nextcloud/perf/user-getdisplayname-cache

Use cached getDisplayName method

2 years agoDo not remove complete encrypted session key when just a key should be removed 34934/head
Julius Härtl [Thu, 3 Nov 2022 08:58:31 +0000 (09:58 +0100)]
Do not remove complete encrypted session key when just a key should be removed

Signed-off-by: Julius Härtl <jus@bitgrid.net>
2 years agoRead encrypted session data again on reopen
Julius Härtl [Thu, 3 Nov 2022 07:39:59 +0000 (08:39 +0100)]
Read encrypted session data again on reopen

Signed-off-by: Julius Härtl <jus@bitgrid.net>
2 years agoAvoid a crash when a PHP extension has no version
Côme Chilliet [Thu, 3 Nov 2022 10:53:51 +0000 (11:53 +0100)]
Avoid a crash when a PHP extension has no version

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
2 years agoMerge pull request #34852 from nextcloud/enhancement/host-validator-api
Christoph Wurst [Thu, 3 Nov 2022 10:37:03 +0000 (11:37 +0100)]
Merge pull request #34852 from nextcloud/enhancement/host-validator-api

Add remote host validation API

2 years agoSwitch to DisplayNameCache for CardDAV 33605/head
Anna Larch [Thu, 18 Aug 2022 11:45:13 +0000 (13:45 +0200)]
Switch to DisplayNameCache for CardDAV

Signed-off-by: Anna Larch <anna@nextcloud.com>
2 years agoSwitch to DisplayNameCache for CalDAV
Anna Larch [Thu, 18 Aug 2022 11:44:46 +0000 (13:44 +0200)]
Switch to DisplayNameCache for CalDAV

Signed-off-by: Anna Larch <anna@nextcloud.com>
2 years agoMove iMIP to it's own interface 34893/head
Anna Larch [Mon, 31 Oct 2022 10:16:45 +0000 (11:16 +0100)]
Move iMIP to it's own interface

and clean up the code a bit.

Added:
- author

Removed:
- unused imports

Changed:
- moved iMIP handling to new interface
- pointed code to new implementation

Signed-off-by: Anna Larch <anna@nextcloud.com>
2 years agoUpdate psalm baseline 34933/head
nextcloud-command [Thu, 3 Nov 2022 04:22:48 +0000 (04:22 +0000)]
Update psalm baseline

Signed-off-by: GitHub <noreply@github.com>
2 years ago[tx-robot] updated from transifex
Nextcloud bot [Thu, 3 Nov 2022 02:14:09 +0000 (02:14 +0000)]
[tx-robot] updated from transifex

Signed-off-by: Nextcloud bot <bot@nextcloud.com>
2 years agoClean up and deprecate app container aliases 34929/head
Christoph Wurst [Wed, 2 Nov 2022 18:42:09 +0000 (19:42 +0100)]
Clean up and deprecate app container aliases

Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
2 years agoMerge pull request #34868 from nextcloud/fix/toasts-styling
John Molakvoæ [Wed, 2 Nov 2022 15:59:02 +0000 (16:59 +0100)]
Merge pull request #34868 from nextcloud/fix/toasts-styling

Update @nextcloud/dialogs and fix toasts styling

2 years agoUpdate @nextcloud/dialogs@ and fix toasts styling 34868/head
John Molakvoæ [Fri, 28 Oct 2022 09:43:49 +0000 (11:43 +0200)]
Update @nextcloud/dialogs@ and fix toasts styling

Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
2 years agoMerge pull request #34880 from nextcloud/dependabot/npm_and_yarn/babel/node-7.20.0
Julius Härtl [Wed, 2 Nov 2022 13:15:12 +0000 (14:15 +0100)]
Merge pull request #34880 from nextcloud/dependabot/npm_and_yarn/babel/node-7.20.0

Bump @babel/node from 7.17.10 to 7.20.0

2 years agoMerge pull request #34907 from nextcloud/enh/noid/remove-32bit-compatibilitiy
Simon L [Wed, 2 Nov 2022 12:01:10 +0000 (13:01 +0100)]
Merge pull request #34907 from nextcloud/enh/noid/remove-32bit-compatibilitiy

remove 32-bit workarounds

2 years agoMerge pull request #34871 from nextcloud/bugfix/34695/fix-internal-expiredate-visibility
Vincent Petry [Wed, 2 Nov 2022 11:58:24 +0000 (12:58 +0100)]
Merge pull request #34871 from nextcloud/bugfix/34695/fix-internal-expiredate-visibility

Fix visibility of internal expire date

2 years agoMerge pull request #34908 from nextcloud/enh/noid/disable-26-updates-32bit
Simon L [Wed, 2 Nov 2022 10:33:37 +0000 (11:33 +0100)]
Merge pull request #34908 from nextcloud/enh/noid/disable-26-updates-32bit

disable upgrades to 26 for 32-bit