Commit befce946 authored by Sergey Shadrin's avatar Sergey Shadrin

[#124455] 10.3.x updated

-Docroot moved upper to match previous versions
-Fixed libraries installation from modules
-Added core patch(3323621) to correct update from previous version
parent c937b36c

Too many changes to show.

To preserve performance only 1000 of 1000+ files are displayed.

docroot/sites/*/files
!docroot/sites/*/files/
docroot/sites/*/files/*
!docroot/sites/*/files/translations
docroot/sites/*/private
docroot/sites/*/settings.php
sites/*/files
!sites/*/files/
sites/*/files/*
!sites/*/files/translations
sites/*/private
sites/*/settings.php
# Exclude update module
docroot/core/modules/update
core/modules/update
# Exclude IDE specific directories.
.idea
......
......@@ -35,8 +35,8 @@ AddEncoding gzip svgz
# Enable expirations.
ExpiresActive On
# Cache all files and redirects for 2 weeks after access (A).
ExpiresDefault A1209600
# Cache all files for 1 year after access.
ExpiresDefault "access plus 1 year"
<FilesMatch \.php$>
# Do not allow PHP scripts to be cached unless they explicitly send cache
......@@ -151,12 +151,12 @@ AddEncoding gzip svgz
# Serve gzip compressed CSS files if they exist and the client accepts gzip.
RewriteCond %{HTTP:Accept-encoding} gzip
RewriteCond %{REQUEST_FILENAME}\.gz -s
RewriteRule ^(.*css_[a-zA-Z0-9-_])\.css$ $1\.css\.gz [QSA]
RewriteRule ^(.*css_[a-zA-Z0-9-_]+)\.css$ $1\.css\.gz [QSA]
# Serve gzip compressed JS files if they exist and the client accepts gzip.
RewriteCond %{HTTP:Accept-encoding} gzip
RewriteCond %{REQUEST_FILENAME}\.gz -s
RewriteRule ^(.*js_[a-zA-Z0-9-_])\.js$ $1\.js\.gz [QSA]
RewriteRule ^(.*js_[a-zA-Z0-9-_]+)\.js$ $1\.js\.gz [QSA]
# Serve correct content types, and prevent double compression.
RewriteRule \.css\.gz$ - [T=text/css,E=no-gzip:1,E=no-brotli:1]
......@@ -173,7 +173,13 @@ AddEncoding gzip svgz
# Various header fixes.
<IfModule mod_headers.c>
# Disable content sniffing, since it's an attack vector.
# Disable content sniffing for all responses, since it's an attack vector.
# This header is also set in FinishResponseSubscriber, which depending on
# Apache configuration might get placed in the 'onsuccess' table. To prevent
# header duplication, unset that one prior to setting in the 'always' table.
# See "To circumvent this limitation..." in
# https://httpd.apache.org/docs/current/mod/mod_headers.html.
Header onsuccess unset X-Content-Type-Options
Header always set X-Content-Type-Options nosniff
# Disable Proxy header, since it's an attack vector.
RequestHeader unset Proxy
......
Please read core/INSTALL.txt for detailed installation instructions for your
Drupal website.
Read core/INSTALL.txt for detailed installation instructions for your Drupal
website.
......@@ -130,7 +130,8 @@
"drupal/xls_serialization": "^1.3",
"drush/drush": "^12.4",
"npm-asset/select2": "^4.0",
"oomphinc/composer-installers-extender": "^2.0"
"oomphinc/composer-installers-extender": "^2.0",
"wikimedia/composer-merge-plugin": "^2.1"
},
"conflict": {
"drupal/drupal": "*"
......@@ -145,53 +146,57 @@
"phpstan/extension-installer": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"cweagans/composer-patches": true,
"oomphinc/composer-installers-extender": true
"oomphinc/composer-installers-extender": true,
"wikimedia/composer-merge-plugin": true
},
"sort-packages": true
},
"extra": {
"drupal-scaffold": {
"locations": {
"web-root": "docroot/"
"web-root": "."
}
},
"installer-paths": {
"docroot/core": [
"core": [
"type:drupal-core"
],
"docroot/libraries/{$name}": [
"libraries/{$name}": [
"type:drupal-library",
"type:bower-asset",
"type:npm-asset"
],
"docroot/modules/contrib/{$name}": [
"modules/contrib/{$name}": [
"type:drupal-module"
],
"docroot/profiles/contrib/{$name}": [
"profiles/contrib/{$name}": [
"type:drupal-profile"
],
"docroot/themes/contrib/{$name}": [
"themes/contrib/{$name}": [
"type:drupal-theme"
],
"drush/Commands/contrib/{$name}": [
"type:drupal-drush"
],
"docroot/modules/custom/{$name}": [
"modules/custom/{$name}": [
"type:drupal-custom-module"
],
"docroot/profiles/custom/{$name}": [
"profiles/custom/{$name}": [
"type:drupal-custom-profile"
],
"docroot/themes/custom/{$name}": [
"themes/custom/{$name}": [
"type:drupal-custom-theme"
]
},
"installer-types": ["bower-asset", "npm-asset"],
"merge-plugin": {
"include": [
"docroot/modules/contrib/dropzonejs/composer.libraries.json",
"docroot/modules/contrib/webform/composer.libraries.json"
]
"modules/contrib/dropzonejs/composer.libraries.json",
"modules/contrib/webform/composer.libraries.json"
],
"merge-extra": true,
"merge-extra-deep": true,
"merge-scripts": true
},
"drupal-core-project-message": {
"include-keys": [
......@@ -219,7 +224,8 @@
"Deprecated function: mb_strtolower(): Passing null to parameter #1 ($string) of type string is deprecated in Drupal\\Component\\Utility\\Html::getId() (line 219 of core/lib/Drupal/Component/Utility/Html.php)": "https://www.drupal.org/files/issues/2023-04-06/3326684-apply-condition1.patch",
"Querying with NULL values results in warning mb_strtolower(): Passing null to parameter is deprecated" : "https://www.drupal.org/files/issues/2022-08-23/3302838-13.patch",
"Replace icons": "./patches/drupal_core/core-icons.patch",
"Remove update module": "./patches/drupal_core/remove-update-module.patch"
"Remove update module": "./patches/drupal_core/remove-update-module.patch",
"3323621: Exception: Warning: Undefined array key \"preprocess functions\" Drupal\\Core\\Theme\\Registry->mergePreprocessFunctions()": "https://www.drupal.org/files/issues/2022-11-25/3323621-2.patch"
},
"drupal/admin_toolbar": {
"Replace icons": "./patches/admin_toolbar/replace-icons.patch"
......
......@@ -4,8 +4,23 @@
"Read more about it at https://getcomposer.org/doc/01-basic-usage.md#installing-dependencies",
"This file is @generated automatically"
],
"content-hash": "1b127d15abe44eb9555900222d095b76",
"content-hash": "0f9e22e3efb420a49c5092a6b4218889",
"packages": [
{
"name": "algolia/places",
"version": "1.19.0",
"dist": {
"type": "tar",
"url": "https://registry.npmjs.org/places.js/-/places.js-1.19.0.tgz"
},
"type": "drupal-library",
"extra": {
"installer-name": "algolia.places"
},
"license": [
"MIT"
]
},
{
"name": "asm89/stack-cors",
"version": "v2.2.0",
......@@ -122,6 +137,36 @@
},
"time": "2024-05-20T12:50:42+00:00"
},
{
"name": "choices/choices",
"version": "9.0.1",
"dist": {
"type": "zip",
"url": "https://github.com/Choices-js/Choices/archive/refs/tags/v9.0.1.zip"
},
"type": "drupal-library",
"extra": {
"installer-name": "choices"
},
"license": [
"MIT"
]
},
{
"name": "codemirror/codemirror",
"version": "5.65.12",
"dist": {
"type": "zip",
"url": "https://github.com/components/codemirror/archive/refs/tags/5.65.12.zip"
},
"type": "drupal-library",
"extra": {
"installer-name": "codemirror"
},
"license": [
"MIT"
]
},
{
"name": "composer/installers",
"version": "v2.2.0",
......@@ -9409,6 +9454,15 @@
},
"time": "2024-06-18T10:27:15+00:00"
},
{
"name": "enyo/dropzone",
"version": "5.7.2",
"dist": {
"type": "zip",
"url": "https://github.com/enyo/dropzone/archive/v5.7.2.zip"
},
"type": "drupal-library"
},
{
"name": "ezyang/htmlpurifier",
"version": "v4.17.0",
......@@ -10194,6 +10248,186 @@
},
"time": "2020-04-16T23:44:31+00:00"
},
{
"name": "jquery/chosen",
"version": "1.8.7",
"dist": {
"type": "zip",
"url": "https://github.com/harvesthq/chosen/releases/download/v1.8.7/chosen_v1.8.7.zip"
},
"type": "drupal-library",
"extra": {
"installer-name": "jquery.chosen"
},
"license": [
"MIT"
]
},
{
"name": "jquery/geocomplete",
"version": "1.7.0",
"dist": {
"type": "zip",
"url": "https://github.com/ubilabs/geocomplete/archive/refs/tags/1.7.0.zip"
},
"type": "drupal-library",
"extra": {
"installer-name": "jquery.geocomplete"
},
"license": [
"MIT"
]
},
{
"name": "jquery/hotkeys",
"version": "0.2.0",
"dist": {
"type": "zip",
"url": "https://github.com/jeresig/jquery.hotkeys/archive/refs/tags/0.2.0.zip"
},
"type": "drupal-library",
"extra": {
"installer-name": "jquery.hotkeys"
},
"license": [
"MIT"
]
},
{
"name": "jquery/icheck",
"version": "1.0.2 ",
"dist": {
"type": "zip",
"url": "https://github.com/dargullin/icheck/archive/refs/tags/1.0.2.zip"
},
"type": "drupal-library",
"extra": {
"installer-name": "jquery.icheck"
},
"license": [
"MIT"
]
},
{
"name": "jquery/image-picker",
"version": "0.3.1",
"dist": {
"type": "zip",
"url": "https://github.com/rvera/image-picker/archive/refs/tags/0.3.1.zip"
},
"type": "drupal-library",
"extra": {
"installer-name": "jquery.image-picker"
},
"license": [
"MIT"
]
},
{
"name": "jquery/inputmask",
"version": "5.0.8",
"dist": {
"type": "zip",
"url": "https://github.com/RobinHerbots/jquery.inputmask/archive/refs/tags/5.0.8.zip"
},
"type": "drupal-library",
"extra": {
"installer-name": "jquery.inputmask"
},
"license": [
"MIT"
]
},
{
"name": "jquery/intl-tel-input",
"version": "17.0.19",
"dist": {
"type": "zip",
"url": "https://github.com/jackocnr/intl-tel-input/archive/refs/tags/v17.0.19.zip"
},
"type": "drupal-library",
"extra": {
"installer-name": "jquery.intl-tel-input"
},
"license": [
"MIT"
]
},
{
"name": "jquery/rateit",
"version": "1.1.5",
"dist": {
"type": "zip",
"url": "https://github.com/gjunge/rateit.js/archive/refs/tags/1.1.5.zip"
},
"type": "drupal-library",
"extra": {
"installer-name": "jquery.rateit"
},
"license": [
"MIT"
]
},
{
"name": "jquery/select2",
"version": "4.0.13",
"dist": {
"type": "zip",
"url": "https://github.com/select2/select2/archive/refs/tags/4.0.13.zip"
},
"type": "drupal-library",
"extra": {
"installer-name": "jquery.select2"
},
"license": [
"MIT"
]
},
{
"name": "jquery/textcounter",
"version": "0.9.1",
"dist": {
"type": "zip",
"url": "https://github.com/ractoon/jQuery-Text-Counter/archive/refs/tags/0.9.1.zip"
},
"type": "drupal-library",
"extra": {
"installer-name": "jquery.textcounter"
},
"license": [
"MIT"
]
},
{
"name": "jquery/timepicker",
"version": "1.14.0",
"dist": {
"type": "zip",
"url": "https://github.com/jonthornton/jquery-timepicker/archive/refs/tags/1.14.0.zip"
},
"type": "drupal-library",
"extra": {
"installer-name": "jquery.timepicker"
},
"license": [
"MIT"
]
},
{
"name": "jquery/toggles",
"version": "4.0.0",
"dist": {
"type": "zip",
"url": "https://github.com/simontabor/jquery-toggles/archive/refs/tags/v4.0.0.zip"
},
"type": "drupal-library",
"extra": {
"installer-name": "jquery.toggles"
},
"license": [
"MIT"
]
},
{
"name": "laminas/laminas-escaper",
"version": "2.13.0",
......@@ -11743,6 +11977,36 @@
},
"time": "2021-09-22T16:57:06+00:00"
},
{
"name": "popperjs/popperjs",
"version": "2.11.6",
"dist": {
"type": "tar",
"url": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.6.tgz"
},
"type": "drupal-library",
"extra": {
"installer-name": "popperjs"
},
"license": [
"MIT"
]
},
{
"name": "progress-tracker/progress-tracker",
"version": "2.0.7",
"dist": {
"type": "zip",
"url": "https://github.com/NigelOToole/progress-tracker/archive/refs/tags/2.0.7.zip"
},
"type": "drupal-library",
"extra": {
"installer-name": "progress-tracker"
},
"license": [
"MIT"
]
},
{
"name": "psr/cache",
"version": "3.0.0",
......@@ -12345,6 +12609,21 @@
],
"time": "2024-03-02T06:30:58+00:00"
},
{
"name": "signature_pad/signature_pad",
"version": "2.3.0",
"dist": {
"type": "zip",
"url": "https://github.com/szimek/signature_pad/archive/refs/tags/v2.3.0.zip"
},
"type": "drupal-library",
"extra": {
"installer-name": "signature_pad"
},
"license": [
"MIT"
]
},
{
"name": "simshaun/recurr",
"version": "v5.0.2",
......@@ -12404,18 +12683,33 @@
},
"time": "2023-09-26T20:31:33+00:00"
},
{
"name": "svg-pan-zoom/svg-pan-zoom",
"version": "3.6.1",
"dist": {
"type": "zip",
"url": "https://github.com/ariutta/svg-pan-zoom/archive/refs/tags/3.6.1.zip"
},
"type": "drupal-library",
"extra": {
"installer-name": "svg-pan-zoom"
},
"license": [
"BSD-2-Clause"
]
},
{
"name": "symfony/console",
"version": "v6.4.8",
"version": "v6.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/console.git",
"reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91"
"reference": "6edb5363ec0c78ad4d48c5128ebf4d083d89d3a9"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/console/zipball/be5854cee0e8c7b110f00d695d11debdfa1a2a91",
"reference": "be5854cee0e8c7b110f00d695d11debdfa1a2a91",
"url": "https://api.github.com/repos/symfony/console/zipball/6edb5363ec0c78ad4d48c5128ebf4d083d89d3a9",
"reference": "6edb5363ec0c78ad4d48c5128ebf4d083d89d3a9",
"shasum": ""
},
"require": {
......@@ -12480,7 +12774,7 @@
"terminal"
],
"support": {
"source": "https://github.com/symfony/console/tree/v6.4.8"
"source": "https://github.com/symfony/console/tree/v6.4.9"
},
"funding": [
{
......@@ -12496,7 +12790,7 @@
"type": "tidelift"
}
],
"time": "2024-05-31T14:49:08+00:00"
"time": "2024-06-28T09:49:33+00:00"
},
{
"name": "symfony/css-selector",
......@@ -12565,16 +12859,16 @@
},
{
"name": "symfony/dependency-injection",
"version": "v6.4.8",
"version": "v6.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/dependency-injection.git",
"reference": "d3b618176e8c3a9e5772151c51eba0c52a0c771c"
"reference": "a4df9dfe5da2d177af6643610c7bee2cb76a9f5e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/dependency-injection/zipball/d3b618176e8c3a9e5772151c51eba0c52a0c771c",
"reference": "d3b618176e8c3a9e5772151c51eba0c52a0c771c",
"url": "https://api.github.com/repos/symfony/dependency-injection/zipball/a4df9dfe5da2d177af6643610c7bee2cb76a9f5e",
"reference": "a4df9dfe5da2d177af6643610c7bee2cb76a9f5e",
"shasum": ""
},
"require": {
......@@ -12626,7 +12920,7 @@
"description": "Allows you to standardize and centralize the way objects are constructed in your application",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/dependency-injection/tree/v6.4.8"
"source": "https://github.com/symfony/dependency-injection/tree/v6.4.9"
},
"funding": [
{
......@@ -12642,7 +12936,7 @@
"type": "tidelift"
}
],
"time": "2024-05-31T14:49:08+00:00"
"time": "2024-06-19T10:45:28+00:00"
},
{
"name": "symfony/deprecation-contracts",
......@@ -12713,16 +13007,16 @@
},
{
"name": "symfony/error-handler",
"version": "v6.4.8",
"version": "v6.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/error-handler.git",
"reference": "ef836152bf13472dc5fb5b08b0c0c4cfeddc0fcc"
"reference": "c9b7cc075b3ab484239855622ca05cb0b99c13ec"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/error-handler/zipball/ef836152bf13472dc5fb5b08b0c0c4cfeddc0fcc",
"reference": "ef836152bf13472dc5fb5b08b0c0c4cfeddc0fcc",
"url": "https://api.github.com/repos/symfony/error-handler/zipball/c9b7cc075b3ab484239855622ca05cb0b99c13ec",
"reference": "c9b7cc075b3ab484239855622ca05cb0b99c13ec",
"shasum": ""
},
"require": {
......@@ -12768,7 +13062,7 @@
"description": "Provides tools to manage errors and ease debugging PHP code",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/error-handler/tree/v6.4.8"
"source": "https://github.com/symfony/error-handler/tree/v6.4.9"
},
"funding": [
{
......@@ -12784,7 +13078,7 @@
"type": "tidelift"
}
],
"time": "2024-05-31T14:49:08+00:00"
"time": "2024-06-21T16:04:15+00:00"
},
{
"name": "symfony/event-dispatcher",
......@@ -12944,16 +13238,16 @@
},
{
"name": "symfony/filesystem",
"version": "v6.4.8",
"version": "v6.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/filesystem.git",
"reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3"
"reference": "b51ef8059159330b74a4d52f68e671033c0fe463"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/filesystem/zipball/4d37529150e7081c51b3c5d5718c55a04a9503f3",
"reference": "4d37529150e7081c51b3c5d5718c55a04a9503f3",
"url": "https://api.github.com/repos/symfony/filesystem/zipball/b51ef8059159330b74a4d52f68e671033c0fe463",
"reference": "b51ef8059159330b74a4d52f68e671033c0fe463",
"shasum": ""
},
"require": {
......@@ -12990,7 +13284,7 @@
"description": "Provides basic utilities for the filesystem",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/filesystem/tree/v6.4.8"
"source": "https://github.com/symfony/filesystem/tree/v6.4.9"
},
"funding": [
{
......@@ -13006,7 +13300,7 @@
"type": "tidelift"
}
],
"time": "2024-05-31T14:49:08+00:00"
"time": "2024-06-28T09:49:33+00:00"
},
{
"name": "symfony/finder",
......@@ -13151,16 +13445,16 @@
},
{
"name": "symfony/http-kernel",
"version": "v6.4.8",
"version": "v6.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/http-kernel.git",
"reference": "6c519aa3f32adcfd1d1f18d923f6b227d9acf3c1"
"reference": "cc4a9bec6e1bdd2405f40277a68a6ed1bb393005"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/6c519aa3f32adcfd1d1f18d923f6b227d9acf3c1",
"reference": "6c519aa3f32adcfd1d1f18d923f6b227d9acf3c1",
"url": "https://api.github.com/repos/symfony/http-kernel/zipball/cc4a9bec6e1bdd2405f40277a68a6ed1bb393005",
"reference": "cc4a9bec6e1bdd2405f40277a68a6ed1bb393005",
"shasum": ""
},
"require": {
......@@ -13245,7 +13539,7 @@
"description": "Provides a structured process for converting a Request into a Response",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/http-kernel/tree/v6.4.8"
"source": "https://github.com/symfony/http-kernel/tree/v6.4.9"
},
"funding": [
{
......@@ -13261,20 +13555,20 @@
"type": "tidelift"
}
],
"time": "2024-06-02T16:06:25+00:00"
"time": "2024-06-28T11:48:06+00:00"
},
{
"name": "symfony/mailer",
"version": "v6.4.8",
"version": "v6.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/mailer.git",
"reference": "76326421d44c07f7824b19487cfbf87870b37efc"
"reference": "e2d56f180f5b8c5e7c0fbea872bb1f529b6d6d45"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/mailer/zipball/76326421d44c07f7824b19487cfbf87870b37efc",
"reference": "76326421d44c07f7824b19487cfbf87870b37efc",
"url": "https://api.github.com/repos/symfony/mailer/zipball/e2d56f180f5b8c5e7c0fbea872bb1f529b6d6d45",
"reference": "e2d56f180f5b8c5e7c0fbea872bb1f529b6d6d45",
"shasum": ""
},
"require": {
......@@ -13325,7 +13619,7 @@
"description": "Helps sending emails",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/mailer/tree/v6.4.8"
"source": "https://github.com/symfony/mailer/tree/v6.4.9"
},
"funding": [
{
......@@ -13341,20 +13635,20 @@
"type": "tidelift"
}
],
"time": "2024-05-31T14:49:08+00:00"
"time": "2024-06-28T07:59:05+00:00"
},
{
"name": "symfony/mime",
"version": "v6.4.8",
"version": "v6.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/mime.git",
"reference": "618597ab8b78ac86d1c75a9d0b35540cda074f33"
"reference": "7d048964877324debdcb4e0549becfa064a20d43"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/mime/zipball/618597ab8b78ac86d1c75a9d0b35540cda074f33",
"reference": "618597ab8b78ac86d1c75a9d0b35540cda074f33",
"url": "https://api.github.com/repos/symfony/mime/zipball/7d048964877324debdcb4e0549becfa064a20d43",
"reference": "7d048964877324debdcb4e0549becfa064a20d43",
"shasum": ""
},
"require": {
......@@ -13368,7 +13662,7 @@
"phpdocumentor/reflection-docblock": "<3.2.2",
"phpdocumentor/type-resolver": "<1.4.0",
"symfony/mailer": "<5.4",
"symfony/serializer": "<6.3.2"
"symfony/serializer": "<6.4.3|>7.0,<7.0.3"
},
"require-dev": {
"egulias/email-validator": "^2.1.10|^3.1|^4",
......@@ -13378,7 +13672,7 @@
"symfony/process": "^5.4|^6.4|^7.0",
"symfony/property-access": "^5.4|^6.0|^7.0",
"symfony/property-info": "^5.4|^6.0|^7.0",
"symfony/serializer": "^6.3.2|^7.0"
"symfony/serializer": "^6.4.3|^7.0.3"
},
"type": "library",
"autoload": {
......@@ -13410,7 +13704,7 @@
"mime-type"
],
"support": {
"source": "https://github.com/symfony/mime/tree/v6.4.8"
"source": "https://github.com/symfony/mime/tree/v6.4.9"
},
"funding": [
{
......@@ -13426,7 +13720,7 @@
"type": "tidelift"
}
],
"time": "2024-06-01T07:50:16+00:00"
"time": "2024-06-28T09:49:33+00:00"
},
{
"name": "symfony/polyfill-ctype",
......@@ -14445,16 +14739,16 @@
},
{
"name": "symfony/serializer",
"version": "v6.4.8",
"version": "v6.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/serializer.git",
"reference": "d6eda9966a3e5d1823c1cedf41bf98f8ed969d7c"
"reference": "56ce31d19127e79647ac53387c7555bdcd5730ce"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/serializer/zipball/d6eda9966a3e5d1823c1cedf41bf98f8ed969d7c",
"reference": "d6eda9966a3e5d1823c1cedf41bf98f8ed969d7c",
"url": "https://api.github.com/repos/symfony/serializer/zipball/56ce31d19127e79647ac53387c7555bdcd5730ce",
"reference": "56ce31d19127e79647ac53387c7555bdcd5730ce",
"shasum": ""
},
"require": {
......@@ -14523,7 +14817,7 @@
"description": "Handles serializing and deserializing data structures, including object graphs, into array structures or other formats like XML and JSON.",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/serializer/tree/v6.4.8"
"source": "https://github.com/symfony/serializer/tree/v6.4.9"
},
"funding": [
{
......@@ -14539,7 +14833,7 @@
"type": "tidelift"
}
],
"time": "2024-05-31T14:49:08+00:00"
"time": "2024-06-28T07:59:05+00:00"
},
{
"name": "symfony/service-contracts",
......@@ -14626,16 +14920,16 @@
},
{
"name": "symfony/string",
"version": "v6.4.8",
"version": "v6.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/string.git",
"reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d"
"reference": "76792dbd99690a5ebef8050d9206c60c59e681d7"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/string/zipball/a147c0f826c4a1f3afb763ab8e009e37c877a44d",
"reference": "a147c0f826c4a1f3afb763ab8e009e37c877a44d",
"url": "https://api.github.com/repos/symfony/string/zipball/76792dbd99690a5ebef8050d9206c60c59e681d7",
"reference": "76792dbd99690a5ebef8050d9206c60c59e681d7",
"shasum": ""
},
"require": {
......@@ -14692,7 +14986,7 @@
"utf8"
],
"support": {
"source": "https://github.com/symfony/string/tree/v6.4.8"
"source": "https://github.com/symfony/string/tree/v6.4.9"
},
"funding": [
{
......@@ -14708,7 +15002,7 @@
"type": "tidelift"
}
],
"time": "2024-05-31T14:49:08+00:00"
"time": "2024-06-28T09:25:38+00:00"
},
{
"name": "symfony/translation-contracts",
......@@ -14790,16 +15084,16 @@
},
{
"name": "symfony/validator",
"version": "v6.4.8",
"version": "v6.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/validator.git",
"reference": "dab2781371d54c86f6b25623ab16abb2dde2870c"
"reference": "ee0a4d6a327a963aee094f730da238f7ea18cb01"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/validator/zipball/dab2781371d54c86f6b25623ab16abb2dde2870c",
"reference": "dab2781371d54c86f6b25623ab16abb2dde2870c",
"url": "https://api.github.com/repos/symfony/validator/zipball/ee0a4d6a327a963aee094f730da238f7ea18cb01",
"reference": "ee0a4d6a327a963aee094f730da238f7ea18cb01",
"shasum": ""
},
"require": {
......@@ -14867,7 +15161,7 @@
"description": "Provides tools to validate values",
"homepage": "https://symfony.com",
"support": {
"source": "https://github.com/symfony/validator/tree/v6.4.8"
"source": "https://github.com/symfony/validator/tree/v6.4.9"
},
"funding": [
{
......@@ -14883,20 +15177,20 @@
"type": "tidelift"
}
],
"time": "2024-06-02T15:48:50+00:00"
"time": "2024-06-22T07:42:41+00:00"
},
{
"name": "symfony/var-dumper",
"version": "v6.4.8",
"version": "v6.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-dumper.git",
"reference": "ad23ca4312395f0a8a8633c831ef4c4ee542ed25"
"reference": "c31566e4ca944271cc8d8ac6887cbf31b8c6a172"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/ad23ca4312395f0a8a8633c831ef4c4ee542ed25",
"reference": "ad23ca4312395f0a8a8633c831ef4c4ee542ed25",
"url": "https://api.github.com/repos/symfony/var-dumper/zipball/c31566e4ca944271cc8d8ac6887cbf31b8c6a172",
"reference": "c31566e4ca944271cc8d8ac6887cbf31b8c6a172",
"shasum": ""
},
"require": {
......@@ -14952,7 +15246,7 @@
"dump"
],
"support": {
"source": "https://github.com/symfony/var-dumper/tree/v6.4.8"
"source": "https://github.com/symfony/var-dumper/tree/v6.4.9"
},
"funding": [
{
......@@ -14968,20 +15262,20 @@
"type": "tidelift"
}
],
"time": "2024-05-31T14:49:08+00:00"
"time": "2024-06-27T13:23:14+00:00"
},
{
"name": "symfony/var-exporter",
"version": "v6.4.8",
"version": "v6.4.9",
"source": {
"type": "git",
"url": "https://github.com/symfony/var-exporter.git",
"reference": "792ca836f99b340f2e9ca9497c7953948c49a504"
"reference": "f9a060622e0d93777b7f8687ec4860191e16802e"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/symfony/var-exporter/zipball/792ca836f99b340f2e9ca9497c7953948c49a504",
"reference": "792ca836f99b340f2e9ca9497c7953948c49a504",
"url": "https://api.github.com/repos/symfony/var-exporter/zipball/f9a060622e0d93777b7f8687ec4860191e16802e",
"reference": "f9a060622e0d93777b7f8687ec4860191e16802e",
"shasum": ""
},
"require": {
......@@ -15029,7 +15323,7 @@
"serialize"
],
"support": {
"source": "https://github.com/symfony/var-exporter/tree/v6.4.8"
"source": "https://github.com/symfony/var-exporter/tree/v6.4.9"
},
"funding": [
{
......@@ -15045,7 +15339,7 @@
"type": "tidelift"
}
],
"time": "2024-05-31T14:49:08+00:00"
"time": "2024-06-24T15:53:56+00:00"
},
{
"name": "symfony/yaml",
......@@ -15119,6 +15413,21 @@
],
"time": "2024-05-31T14:49:08+00:00"
},
{
"name": "tabby/tabby",
"version": "12.0.3",
"dist": {
"type": "zip",
"url": "https://github.com/cferdinandi/tabby/archive/refs/tags/v12.0.3.zip"
},
"type": "drupal-library",
"extra": {
"installer-name": "tabby"
},
"license": [
"MIT"
]
},
{
"name": "tijsverkoyen/css-to-inline-styles",
"version": "v2.2.7",
......@@ -15172,6 +15481,21 @@
},
"time": "2023-12-08T13:03:43+00:00"
},
{
"name": "tippyjs/tippyjs",
"version": "6.3.7",
"dist": {
"type": "tar",
"url": "https://registry.npmjs.org/tippy.js/-/tippy.js-6.3.7.tgz"
},
"type": "drupal-library",
"extra": {
"installer-name": "tippyjs"
},
"license": [
"MIT"
]
},
{
"name": "twig/twig",
"version": "v3.10.3",
......@@ -15444,6 +15768,62 @@
},
"abandoned": "symfony/filesystem",
"time": "2015-12-17T08:42:14+00:00"
},
{
"name": "wikimedia/composer-merge-plugin",
"version": "v2.1.0",
"source": {
"type": "git",
"url": "https://github.com/wikimedia/composer-merge-plugin.git",
"reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc"
},
"dist": {
"type": "zip",
"url": "https://api.github.com/repos/wikimedia/composer-merge-plugin/zipball/a03d426c8e9fb2c9c569d9deeb31a083292788bc",
"reference": "a03d426c8e9fb2c9c569d9deeb31a083292788bc",
"shasum": ""
},
"require": {
"composer-plugin-api": "^1.1||^2.0",
"php": ">=7.2.0"
},
"require-dev": {
"composer/composer": "^1.1||^2.0",
"ext-json": "*",
"mediawiki/mediawiki-phan-config": "0.11.1",
"php-parallel-lint/php-parallel-lint": "~1.3.1",
"phpspec/prophecy": "~1.15.0",
"phpunit/phpunit": "^8.5||^9.0",
"squizlabs/php_codesniffer": "~3.7.1"
},
"type": "composer-plugin",
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
},
"class": "Wikimedia\\Composer\\Merge\\V2\\MergePlugin"
},
"autoload": {
"psr-4": {
"Wikimedia\\Composer\\Merge\\V2\\": "src/"
}
},
"notification-url": "https://packagist.org/downloads/",
"license": [
"MIT"
],
"authors": [
{
"name": "Bryan Davis",
"email": "bd808@wikimedia.org"
}
],
"description": "Composer plugin to merge multiple composer.json files",
"support": {
"issues": "https://github.com/wikimedia/composer-merge-plugin/issues",
"source": "https://github.com/wikimedia/composer-merge-plugin/tree/v2.1.0"
},
"time": "2023-04-15T19:07:00+00:00"
}
],
"packages-dev": [],
......
This file was automatically generated by Composer Patches (https://github.com/cweagans/composer-patches)
Patches applied to this directory:
Deprecated function: mb_strtolower(): Passing null to parameter #1 ($string) of type string is deprecated in Drupal\Component\Utility\Html::getId() (line 219 of core/lib/Drupal/Component/Utility/Html.php)
Source: https://www.drupal.org/files/issues/2023-04-06/3326684-apply-condition1.patch
Querying with NULL values results in warning mb_strtolower(): Passing null to parameter is deprecated
Source: https://www.drupal.org/files/issues/2022-08-23/3302838-13.patch
Replace icons
Source: ./patches/drupal_core/core-icons.patch
Remove update module
Source: ./patches/drupal_core/remove-update-module.patch
3323621: Exception: Warning: Undefined array key "preprocess functions" Drupal\Core\Theme\Registry->mergePreprocessFunctions()
Source: https://www.drupal.org/files/issues/2022-11-25/3323621-2.patch
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment