GitHub/WoltLab/WCF.git
22 months agoUpdate esbuild
Tim Düsterhus [Wed, 16 Nov 2022 10:33:24 +0000 (11:33 +0100)]
Update esbuild

22 months agoMerge branch '5.5'
Tim Düsterhus [Wed, 16 Nov 2022 10:32:20 +0000 (11:32 +0100)]
Merge branch '5.5'

22 months agoUpdate `@types/google.maps` and `@types/facebook-js-sdk`
Tim Düsterhus [Wed, 16 Nov 2022 10:29:25 +0000 (11:29 +0100)]
Update `@types/google.maps` and `@types/facebook-js-sdk`

22 months agoUpdate eslint
Tim Düsterhus [Wed, 16 Nov 2022 10:28:24 +0000 (11:28 +0100)]
Update eslint

22 months agoUpdate `tslib`
Tim Düsterhus [Wed, 16 Nov 2022 10:24:42 +0000 (11:24 +0100)]
Update `tslib`

22 months agoMerge branch '5.5'
Tim Düsterhus [Wed, 16 Nov 2022 09:06:57 +0000 (10:06 +0100)]
Merge branch '5.5'

22 months agoAdd the CSS class `.formAttachmentListItem` to existing attachments on page load
Alexander Ebert [Tue, 15 Nov 2022 17:00:11 +0000 (18:00 +0100)]
Add the CSS class `.formAttachmentListItem` to existing attachments on page load

See https://www.woltlab.com/community/thread/297604-dateianh%C3%A4nge-werden-bei-mehrsprachigkeit-nicht-zwischen-editoren-synchronisiert/

22 months agoMerge pull request #5124 from WoltLab/implicit-xsrf-validation
Alexander Ebert [Tue, 15 Nov 2022 13:52:57 +0000 (14:52 +0100)]
Merge pull request #5124 from WoltLab/implicit-xsrf-validation

Implicit XSRF checks for PSR-15 controllers with opt-out

22 months agoUnbreak PackageArchive::getExistingRequirements() for com.woltlab.wcf
Tim Düsterhus [Tue, 15 Nov 2022 13:46:29 +0000 (14:46 +0100)]
Unbreak PackageArchive::getExistingRequirements() for com.woltlab.wcf

com.woltlab.wcf is special, because it has no dependencies, thus failing the
assertion.

see 792278848e22a9c1bbe710176ed9f54f67f0fa7d

22 months agoMerge pull request #5125 from WoltLab/package-archive-cleanup
Tim Düsterhus [Tue, 15 Nov 2022 13:40:17 +0000 (14:40 +0100)]
Merge pull request #5125 from WoltLab/package-archive-cleanup

Further clean up the package system

22 months agoPerform the least expensive validations first
Alexander Ebert [Tue, 15 Nov 2022 13:27:52 +0000 (14:27 +0100)]
Perform the least expensive validations first

Co-authored-by: Tim Düsterhus <duesterhus@woltlab.com>
22 months agoFix the check for safe HTTP verbs
Alexander Ebert [Tue, 15 Nov 2022 11:55:52 +0000 (12:55 +0100)]
Fix the check for safe HTTP verbs

Co-authored-by: Tim Düsterhus <duesterhus@woltlab.com>
22 months agoAdd a helper method to validate if the HTTP verb requires an XSRF check
Alexander Ebert [Tue, 15 Nov 2022 11:29:10 +0000 (12:29 +0100)]
Add a helper method to validate if the HTTP verb requires an XSRF check

22 months agoMove `DisableXsrfCheck` into a separate class file
Alexander Ebert [Tue, 15 Nov 2022 11:26:03 +0000 (12:26 +0100)]
Move `DisableXsrfCheck` into a separate class file

22 months agoRemove PackageArchive::getAllExistingRequirements()
Tim Düsterhus [Tue, 15 Nov 2022 10:13:32 +0000 (11:13 +0100)]
Remove PackageArchive::getAllExistingRequirements()

The last remaining user of this method was removed in the previous commit. The
logic of this method was overly complex:

- It handled the possibility that a single package is installed multiple times,
  which is not possible since forever.
- It contained special (and semi-broken) logic for requirement links that are
  already stored in the database. Since a93b160e72731d72e58a13052c1b6b83b089552a
  all requirements in the database were deleted before this method was called
  in PackageInstallationDispatcher. It also failed to account for a requirement
  link existing, but the target package being of an insufficient version.

22 months agoStop using PackageArchive::getAllExistingRequirements()
Tim Düsterhus [Tue, 15 Nov 2022 10:11:47 +0000 (11:11 +0100)]
Stop using PackageArchive::getAllExistingRequirements()

The method is overly complex and will be removed in a follow-up commit.

22 months agoFurther streamline the logic in PackageArchive::getExistingRequirements()
Tim Düsterhus [Tue, 15 Nov 2022 10:07:26 +0000 (11:07 +0100)]
Further streamline the logic in PackageArchive::getExistingRequirements()

22 months agoRemove obsolete handling of duplicated packages in PackageArchive::getExistingRequire...
Tim Düsterhus [Tue, 15 Nov 2022 10:05:38 +0000 (11:05 +0100)]
Remove obsolete handling of duplicated packages in PackageArchive::getExistingRequirements()

`package` is a UNIQUE KEY in the database, the deleted logic was dead code.

22 months agoAdd proper types to Package::checkFromversion()
Tim Düsterhus [Tue, 15 Nov 2022 09:26:13 +0000 (10:26 +0100)]
Add proper types to Package::checkFromversion()

22 months agoRemove PackageArchive::isValidInstall()
Tim Düsterhus [Tue, 15 Nov 2022 09:20:26 +0000 (10:20 +0100)]
Remove PackageArchive::isValidInstall()

This method is unused, instead the existing logic checks if
`->getInstallInstructions()` is (non-)empty.

22 months agoDo not attempt to sanitize the path to `[internal function]`
Tim Düsterhus [Tue, 15 Nov 2022 09:38:49 +0000 (10:38 +0100)]
Do not attempt to sanitize the path to `[internal function]`

This looks ugly and leaks some information: How deep WoltLab Suite Core is
location within the file system hierarchy.

22 months agoAdd `DisableXsrfCheck` attribute to opt out of the automated XSRF validation
Alexander Ebert [Mon, 14 Nov 2022 18:50:19 +0000 (19:50 +0100)]
Add `DisableXsrfCheck` attribute to opt out of the automated XSRF validation

22 months agoReject requests for `RquestHandlerInterface` implementations without a valid XSRF...
Alexander Ebert [Mon, 14 Nov 2022 18:28:47 +0000 (19:28 +0100)]
Reject requests for `RquestHandlerInterface` implementations without a valid XSRF token

GET and HEAD requests are always exempt from the validation, because these are by definition safe actions (*).

(*) Legacy implementations violated this principle, but this is a bad practice and is frowned upon in new PSR implementation.

22 months agoMerge pull request #5123 from WoltLab/background-queue-http-header
Alexander Ebert [Mon, 14 Nov 2022 17:17:37 +0000 (18:17 +0100)]
Merge pull request #5123 from WoltLab/background-queue-http-header

Migrate the forced check of the background queue to a HTTP response header

22 months agoReorder the conditions to make it easier to understand
Alexander Ebert [Mon, 14 Nov 2022 16:35:25 +0000 (17:35 +0100)]
Reorder the conditions to make it easier to understand

Co-authored-by: Tim Düsterhus <duesterhus@woltlab.com>
22 months agoMove the HTTP header name into a common class
Alexander Ebert [Mon, 14 Nov 2022 15:48:13 +0000 (16:48 +0100)]
Move the HTTP header name into a common class

22 months agoMove the HTTP header for legacy requests into the `AJAXProxyAction`
Alexander Ebert [Mon, 14 Nov 2022 15:45:40 +0000 (16:45 +0100)]
Move the HTTP header for legacy requests into the `AJAXProxyAction`

22 months agoMove the PhpDoc comment to the public API
Alexander Ebert [Mon, 14 Nov 2022 15:42:08 +0000 (16:42 +0100)]
Move the PhpDoc comment to the public API

22 months agoUse `isACPRequest()` instead of probing for the `WCFACP` class
Alexander Ebert [Mon, 14 Nov 2022 15:41:15 +0000 (16:41 +0100)]
Use `isACPRequest()` instead of probing for the `WCFACP` class

22 months agoStop injecting `forceBackgroundQueuePerform` into AJAX responses
Alexander Ebert [Mon, 14 Nov 2022 15:15:55 +0000 (16:15 +0100)]
Stop injecting `forceBackgroundQueuePerform` into AJAX responses

22 months agoSkip the background queue check for backend requests
Alexander Ebert [Mon, 14 Nov 2022 15:13:51 +0000 (16:13 +0100)]
Skip the background queue check for backend requests

22 months agoCheck the background queue when the response header is present
Alexander Ebert [Mon, 14 Nov 2022 15:12:31 +0000 (16:12 +0100)]
Check the background queue when the response header is present

22 months agoConditionally add `woltlab-background-queue-check: yes` to the response
Alexander Ebert [Mon, 14 Nov 2022 15:06:56 +0000 (16:06 +0100)]
Conditionally add `woltlab-background-queue-check: yes` to the response

This header is intended to signal the client that an async check for pending jobs in the background queue should be dispatched.

22 months agoFix the creation of DOM elements from a HTML string
Alexander Ebert [Mon, 14 Nov 2022 14:26:03 +0000 (15:26 +0100)]
Fix the creation of DOM elements from a HTML string

The naive approach of using `innerHTML` does not work for script tags. These are only recognized when they are manually inserted into the DOM for security reasons.

22 months agoMerge pull request #5122 from WoltLab/json-request-body
Tim Düsterhus [Mon, 14 Nov 2022 14:17:49 +0000 (15:17 +0100)]
Merge pull request #5122 from WoltLab/json-request-body

Add JsonBody middleware

22 months agoMerge pull request #5121 from WoltLab/formbuilder-id-escape
Tim Düsterhus [Mon, 14 Nov 2022 14:17:39 +0000 (15:17 +0100)]
Merge pull request #5121 from WoltLab/formbuilder-id-escape

Properly escape special characters in form builder IDs

22 months agoProperly escape special characters in form builder IDs
Tim Düsterhus [Mon, 14 Nov 2022 13:43:44 +0000 (14:43 +0100)]
Properly escape special characters in form builder IDs

22 months agoImprove content-type check in JsonBody middleware
Tim Düsterhus [Fri, 4 Nov 2022 09:00:12 +0000 (10:00 +0100)]
Improve content-type check in JsonBody middleware

22 months agoTransparently decode JSON requests
Alexander Ebert [Thu, 3 Nov 2022 16:56:50 +0000 (17:56 +0100)]
Transparently decode JSON requests

22 months agoAdd __valueIntervalFormFieldDependency.tpl to syncTemplates.json
Tim Düsterhus [Mon, 14 Nov 2022 13:41:22 +0000 (14:41 +0100)]
Add __valueIntervalFormFieldDependency.tpl to syncTemplates.json

22 months agoAdd npm script to refresh the web component bundle
Alexander Ebert [Mon, 14 Nov 2022 12:04:45 +0000 (13:04 +0100)]
Add npm script to refresh the web component bundle

22 months agoMerge pull request #5117 from WoltLab/js-preload
Alexander Ebert [Mon, 14 Nov 2022 12:01:49 +0000 (13:01 +0100)]
Merge pull request #5117 from WoltLab/js-preload

Preload phrases for use in TypeScript

22 months agoReplace `@\unlink()` with a check for file existence
Alexander Ebert [Mon, 14 Nov 2022 11:53:45 +0000 (12:53 +0100)]
Replace `@\unlink()` with a check for file existence

22 months agoUse the `AtomicWriter` to create the phrase cache
Alexander Ebert [Mon, 14 Nov 2022 11:52:30 +0000 (12:52 +0100)]
Use the `AtomicWriter` to create the phrase cache

22 months agoFix the logic of the check for the phrase preload rebuild
Alexander Ebert [Mon, 14 Nov 2022 11:50:01 +0000 (12:50 +0100)]
Fix the logic of the check for the phrase preload rebuild

22 months agoRebuild compiled JavaScript
Tim Düsterhus [Mon, 14 Nov 2022 10:14:22 +0000 (11:14 +0100)]
Rebuild compiled JavaScript

22 months agoFix bad merge in EnforceAcpAuthentication middleware
Tim Düsterhus [Mon, 14 Nov 2022 09:41:39 +0000 (10:41 +0100)]
Fix bad merge in EnforceAcpAuthentication middleware

The exception should no longer be there.

see a693ef9dc6ab80b8c3c4671923071e4b9f9b23f3
see 2115b6456f75068740d54db29d4b5970a4bb7f36

22 months agoMerge branch '5.5'
Tim Düsterhus [Mon, 14 Nov 2022 09:41:16 +0000 (10:41 +0100)]
Merge branch '5.5'

22 months agoMerge commit '89b58a82cfb6e8c098b9a5b19118caedca5b386d'
Tim Düsterhus [Mon, 14 Nov 2022 09:37:02 +0000 (10:37 +0100)]
Merge commit '89b58a82cfb6e8c098b9a5b19118caedca5b386d'

22 months agoUpdate composer dependencies
Tim Düsterhus [Mon, 14 Nov 2022 09:22:05 +0000 (10:22 +0100)]
Update composer dependencies

22 months agoMerge pull request #5120 from WoltLab/package-fix-update
Tim Düsterhus [Mon, 14 Nov 2022 08:08:12 +0000 (09:08 +0100)]
Merge pull request #5120 from WoltLab/package-fix-update

Clean up package archive handling

22 months ago`getSearchFormElement()` expects a string for the value parameter
Alexander Ebert [Sun, 13 Nov 2022 16:15:04 +0000 (17:15 +0100)]
`getSearchFormElement()` expects a string for the value parameter

22 months agoValidate that the searched option implements the required interface
Alexander Ebert [Sun, 13 Nov 2022 16:14:24 +0000 (17:14 +0100)]
Validate that the searched option implements the required interface

22 months agoRemove selection markers after discarding the link dialog
Alexander Ebert [Sun, 13 Nov 2022 15:43:36 +0000 (16:43 +0100)]
Remove selection markers after discarding the link dialog

See https://www.woltlab.com/community/thread/297178-links-bearbeiten-und-kopieren/

22 months agoBind the event listeners for the RSS feed dialog everytime
Alexander Ebert [Sun, 13 Nov 2022 15:09:23 +0000 (16:09 +0100)]
Bind the event listeners for the RSS feed dialog everytime

The dialog is replaced with the provided HTML on every invocation. Since this is a named dialog, the instance is set up once, but rebuild with every invocation.

See https://www.woltlab.com/community/thread/297896-kopieren-schaltfl%C3%A4che-nach-erneutem-%C3%B6ffnen-des-dialogs-nicht-mehr-funktionsf%C3%A4hig/

22 months agoFix the scroll offset when the first message is being targeted
Alexander Ebert [Sun, 13 Nov 2022 14:53:58 +0000 (15:53 +0100)]
Fix the scroll offset when the first message is being targeted

See https://www.woltlab.com/community/thread/297814-mobil-zus%C3%A4tzlicher-container-sichtbar-bei-direktlink-auf-den-ersten-beitrag-eine/

22 months agoPreload common phrases
Alexander Ebert [Sat, 12 Nov 2022 14:00:25 +0000 (15:00 +0100)]
Preload common phrases

22 months agoMove the registration of preload phrases into a dedicated event listener
Alexander Ebert [Sat, 12 Nov 2022 13:17:25 +0000 (14:17 +0100)]
Move the registration of preload phrases into a dedicated event listener

22 months agoProvide only the plugin name when syncing pips
Alexander Ebert [Sat, 12 Nov 2022 11:53:15 +0000 (12:53 +0100)]
Provide only the plugin name when syncing pips

The full object provides little details because it is created on-the-fly with as little information as required.

22 months agoReset the phrase preload cache when syncing files and languages
Alexander Ebert [Sat, 12 Nov 2022 11:51:20 +0000 (12:51 +0100)]
Reset the phrase preload cache when syncing files and languages

22 months agoPreload the phrase for relative timestamps
Alexander Ebert [Sat, 12 Nov 2022 11:18:01 +0000 (12:18 +0100)]
Preload the phrase for relative timestamps

22 months agoFix the namespace and file name of the collecting event
Alexander Ebert [Sat, 12 Nov 2022 11:11:37 +0000 (12:11 +0100)]
Fix the namespace and file name of the collecting event

22 months agoFix the condition to rebuild the phrase cache
Alexander Ebert [Sat, 12 Nov 2022 11:09:55 +0000 (12:09 +0100)]
Fix the condition to rebuild the phrase cache

22 months agoCreate the directory used for JS phrase preloads
Alexander Ebert [Sat, 12 Nov 2022 11:06:50 +0000 (12:06 +0100)]
Create the directory used for JS phrase preloads

22 months agoSimplify the events by using constructor property promotion
Alexander Ebert [Fri, 11 Nov 2022 17:33:38 +0000 (18:33 +0100)]
Simplify the events by using constructor property promotion

22 months agoInvert the order of the phrase preloader and the web component bundle
Alexander Ebert [Fri, 11 Nov 2022 17:30:42 +0000 (18:30 +0100)]
Invert the order of the phrase preloader and the web component bundle

22 months agoReplace the usage of `\gmdate()`
Alexander Ebert [Fri, 11 Nov 2022 17:30:25 +0000 (18:30 +0100)]
Replace the usage of `\gmdate()`

22 months agoAdd explicit markers to the preload cache files
Alexander Ebert [Thu, 10 Nov 2022 17:10:13 +0000 (18:10 +0100)]
Add explicit markers to the preload cache files

22 months agoRemove the previous service implementation
Alexander Ebert [Thu, 10 Nov 2022 16:57:51 +0000 (17:57 +0100)]
Remove the previous service implementation

For some reason the `git mv` did not properly work.

22 months agoAdd the cache buster to the generated JS artifacts
Alexander Ebert [Thu, 10 Nov 2022 16:57:17 +0000 (17:57 +0100)]
Add the cache buster to the generated JS artifacts

22 months agoMove the URL generation for the phrase preloader into the template
Alexander Ebert [Thu, 10 Nov 2022 16:46:33 +0000 (17:46 +0100)]
Move the URL generation for the phrase preloader into the template

22 months agoMove the URL handling of the phrase preloader into the bootstrap script
Alexander Ebert [Thu, 10 Nov 2022 16:42:26 +0000 (17:42 +0100)]
Move the URL handling of the phrase preloader into the bootstrap script

22 months agoRestrict preload phrases to static exports only
Alexander Ebert [Thu, 10 Nov 2022 16:38:34 +0000 (17:38 +0100)]
Restrict preload phrases to static exports only

Evaluating template scripting on runtime inside JavaScript is still possible, but not server-side replacements will be made.

22 months agoAdd a reference to the phrase preload cache
Alexander Ebert [Thu, 10 Nov 2022 15:38:08 +0000 (16:38 +0100)]
Add a reference to the phrase preload cache

22 months agoAdd `PhrasePreloadCache` to retrieve and implicitly create the preload cache
Alexander Ebert [Thu, 10 Nov 2022 15:36:33 +0000 (16:36 +0100)]
Add `PhrasePreloadCache` to retrieve and implicitly create the preload cache

22 months agoCreate the preload cache for phrases
Alexander Ebert [Thu, 10 Nov 2022 15:32:11 +0000 (16:32 +0100)]
Create the preload cache for phrases

22 months agoRename `RebuildPreloadPhrases` to `CachePreloadPhrases`
Alexander Ebert [Thu, 10 Nov 2022 15:13:32 +0000 (16:13 +0100)]
Rename `RebuildPreloadPhrases` to `CachePreloadPhrases`

22 months agoReset the preload cache when a language has been imported
Alexander Ebert [Thu, 10 Nov 2022 15:09:56 +0000 (16:09 +0100)]
Reset the preload cache when a language has been imported

22 months agoReset the preload cache if a cached phrase was modified
Alexander Ebert [Thu, 10 Nov 2022 15:00:35 +0000 (16:00 +0100)]
Reset the preload cache if a cached phrase was modified

22 months agoRequest the rebuild of the preload cache after changes to the package list
Alexander Ebert [Thu, 10 Nov 2022 13:36:39 +0000 (14:36 +0100)]
Request the rebuild of the preload cache after changes to the package list

22 months agoAdd a PoC for a static phrase preloader
Alexander Ebert [Wed, 9 Nov 2022 15:50:42 +0000 (16:50 +0100)]
Add a PoC for a static phrase preloader

22 months agoAdd the `PackageInstallationSynced` event
Alexander Ebert [Sat, 12 Nov 2022 11:29:39 +0000 (12:29 +0100)]
Add the `PackageInstallationSynced` event

22 months agoAdd the `LanguageImported` event
Alexander Ebert [Thu, 10 Nov 2022 15:09:43 +0000 (16:09 +0100)]
Add the `LanguageImported` event

22 months agoAdd the `PhraseChanged` event
Alexander Ebert [Thu, 10 Nov 2022 13:49:42 +0000 (14:49 +0100)]
Add the `PhraseChanged` event

22 months agoAdd the `PackageListChanged` event
Alexander Ebert [Thu, 10 Nov 2022 13:08:30 +0000 (14:08 +0100)]
Add the `PackageListChanged` event

22 months agoMerge pull request #5119 from WoltLab/acp-not-authorized-ux
Alexander Ebert [Fri, 11 Nov 2022 15:49:33 +0000 (16:49 +0100)]
Merge pull request #5119 from WoltLab/acp-not-authorized-ux

Improve user experience when accessing the ACP with an unauthorized user

22 months agoTypo
Marcel Werk [Fri, 11 Nov 2022 15:24:31 +0000 (16:24 +0100)]
Typo

22 months agoPrevent wrapping of text on narrow resolutions
Alexander Ebert [Fri, 11 Nov 2022 14:41:45 +0000 (15:41 +0100)]
Prevent wrapping of text on narrow resolutions

There is plenty of whitespace around each column to allow for some small overlaps.

https://www.woltlab.com/community/thread/297666-blog-unsch%C3%B6ne-darstellung-der-reaktionen/

22 months agoMerge pull request #5118 from WoltLab/remove-legacy-cookie-banner
Marcel Werk [Fri, 11 Nov 2022 13:53:19 +0000 (14:53 +0100)]
Merge pull request #5118 from WoltLab/remove-legacy-cookie-banner

Remove legacy cookie banner

22 months agoRemove PackageArchive::setPackage()
Tim Düsterhus [Fri, 11 Nov 2022 09:28:08 +0000 (10:28 +0100)]
Remove PackageArchive::setPackage()

This method was unused outside of PackageArchive. Removing this setter, removes
one avenue where state can be modified.

22 months agoReplace some `empty()` checks in PackageValidationArchive
Tim Düsterhus [Fri, 11 Nov 2022 09:20:31 +0000 (10:20 +0100)]
Replace some `empty()` checks in PackageValidationArchive

22 months agoUse `->prepare()` in PackageValidationArchive
Tim Düsterhus [Fri, 11 Nov 2022 09:18:44 +0000 (10:18 +0100)]
Use `->prepare()` in PackageValidationArchive

22 months agoUse `->prepare()` in PackageArchive
Tim Düsterhus [Fri, 11 Nov 2022 09:06:35 +0000 (10:06 +0100)]
Use `->prepare()` in PackageArchive

22 months agoAdd some return types to PackageArchive
Tim Düsterhus [Fri, 11 Nov 2022 09:05:00 +0000 (10:05 +0100)]
Add some return types to PackageArchive

22 months agoRemove PackageArchive::getInstructions()
Tim Düsterhus [Fri, 11 Nov 2022 09:01:18 +0000 (10:01 +0100)]
Remove PackageArchive::getInstructions()

This is redundant with `getUpdateInstructions()` and `getInstallInstructions()`
and unused. Remove it to keep the API simple.

22 months agoMerge pull request #5107 from WoltLab/js-lang-early
Alexander Ebert [Thu, 10 Nov 2022 16:50:44 +0000 (17:50 +0100)]
Merge pull request #5107 from WoltLab/js-lang-early

Make JavaScript Language module available early

22 months agoFix code style in \wcf\system\WCF
Tim Düsterhus [Thu, 10 Nov 2022 15:40:48 +0000 (16:40 +0100)]
Fix code style in \wcf\system\WCF

22 months agoImprove user experience when accessing the ACP with an unauthorized user
Tim Düsterhus [Thu, 10 Nov 2022 14:00:18 +0000 (15:00 +0100)]
Improve user experience when accessing the ACP with an unauthorized user

Specifically the logout link is available now.

22 months agoRemove legacy cookie banner
Marcel Werk [Thu, 10 Nov 2022 12:11:14 +0000 (13:11 +0100)]
Remove legacy cookie banner

From a legal point of view, this type of cookie banner is useless.

22 months agoUpdate composer dependencies
Tim Düsterhus [Thu, 10 Nov 2022 11:49:57 +0000 (12:49 +0100)]
Update composer dependencies