updated drupal to 10.6.17, updated webform, updated drush to 13, changed submodule profile url to gitea (gogs shot down)

This commit is contained in:
2026-09-20 00:52:34 +02:00
parent e6f4df78e5
commit c2f594ef2f
5 changed files with 850 additions and 772 deletions
+1 -1
View File
@@ -1,3 +1,3 @@
[submodule "web/profiles/d8-starterkit-profile"]
path = web/profiles/d8-starterkit-profile
url = https://figureslibres.io/gogs/bachir/drupal-starterkit-profile
url = https://figureslibres.io/gitea/bachir/drupal-starterkit-profile
+5 -4
View File
@@ -158,10 +158,11 @@
"drupal/views_field_view": "^1.0@beta",
"drupal/webform": "^6.2",
"drupal/workflow": "^1.7",
"drush/drush": "^13",
"kint-php/kint": "^3.3",
"smalot/pdfparser": "*",
"symfony/mailjet-mailer": "^5.4",
"vlucas/phpdotenv": "^4.0",
"vlucas/phpdotenv": "^5.0",
"w8tcha/ckeditor_codemirror": "v1.17.8",
"wa72/htmlpagedom": "1.3.*",
"webflo/drupal-finder": "^1.0.0",
@@ -177,7 +178,7 @@
"config": {
"sort-packages": true,
"platform": {
"php": "8.1"
"php": "8.4"
},
"discard-changes": true,
"allow-plugins": {
@@ -251,7 +252,6 @@
"Integrate Address with Search API https://www.drupal.org/project/address/issues/2812659": "https://www.drupal.org/files/issues/2020-11-02/integrate-address-searchapi-2812659-56.patch"
},
"drupal/mailjet": {
"DrupalmailjetControllerMailjetRegisterController::redirectRegister() does not exist https://www.drupal.org/project/mailjet/issues/3450474": "https://www.drupal.org/files/issues/2024-05-29/mailjet-15615025-5.patch",
"MailjetConfigurationAccessCheck blocks access to all pages for users except admin https://www.drupal.org/project/mailjet/issues/3539776": "https://www.drupal.org/files/issues/2025-08-05/0001-fix-mailjetconfigurationaccesscheck-blocking-access.patch"
},
"drupal/pwa": {
@@ -302,7 +302,8 @@
"drupal/mailjet": {
"Error: Class MailjetTools/MailjetApi not found in Drupal/mailjet/Form/MailjetApiForm->submitForm() https://www.drupal.org/project/mailjet/issues/3464788":"https://www.drupal.org/files/issues/2024-08-20/mailjetApiForm_use_mailjettools_mailjetapi.patch",
"Error: Class MailjetTools/UsStates not found https://www.drupal.org/project/mailjet/issues/3469059":"https://www.drupal.org/files/issues/2024-08-20/mailjet_settingsform_usstates.patch",
"https://www.drupal.org/project/mailjet/issues/3325412":"https://www.drupal.org/files/issues/2022-12-05/mailjet-list_instead_of_listid.patch"
"https://www.drupal.org/project/mailjet/issues/3325412":"https://www.drupal.org/files/issues/2022-12-05/mailjet-list_instead_of_listid.patch",
"DrupalmailjetControllerMailjetRegisterController::redirectRegister() does not exist https://www.drupal.org/project/mailjet/issues/3450474": "https://www.drupal.org/files/issues/2024-05-29/mailjet-15615025-5.patch"
},
"drupal/user_history": {
"init batch : field_storage_values misses type https://www.drupal.org/project/user_history/issues/3311360": "https://www.drupal.org/files/issues/2022-09-23/user_history__field_storage_values__miss__type.patch"
Generated
+826 -766
View File
File diff suppressed because it is too large Load Diff
+17
View File
@@ -875,6 +875,23 @@ $settings['migrate_node_migrate_type_classic'] = FALSE;
# $settings['migrate_file_public_path'] = '';
# $settings['migrate_file_private_path'] = '';
/**
* Media oEmbed discovery trusted host configuration.
*
* The oEmbed spec allows for provider/resource discovery by fetching a URL. The
* patterns here restrict which domains Drupal will make a request to for oEmbed
* discovery.
*
* For example:
* @code
* $settings['media_oembed_discovery_trusted_host_patterns'] = [
* '^www\.example\.com$',
* ];
* @endcode
* will allow the site to make oEmbed discovery requests to www.example.com.
*/
# $settings['media_oembed_discovery_trusted_host_patterns'] = [];
/**
* Load local development override configuration, if available.
*