updated core to 8.9.2
This commit is contained in:
+1
-1
@@ -37,7 +37,7 @@
|
|||||||
"drupal/console": "^1.0.2",
|
"drupal/console": "^1.0.2",
|
||||||
"drupal/context": "4.0.0-beta2",
|
"drupal/context": "4.0.0-beta2",
|
||||||
"drupal/core-composer-scaffold": "8.8.6",
|
"drupal/core-composer-scaffold": "8.8.6",
|
||||||
"drupal/core-recommended": "^8.8",
|
"drupal/core-recommended": "8.9.2",
|
||||||
"drupal/ctools": "^3.4",
|
"drupal/ctools": "^3.4",
|
||||||
"drupal/date_range_formatter": "3.1.0",
|
"drupal/date_range_formatter": "3.1.0",
|
||||||
"drupal/devel": "2.1",
|
"drupal/devel": "2.1",
|
||||||
|
|||||||
Generated
+648
-456
File diff suppressed because it is too large
Load Diff
+5
-12
@@ -27,16 +27,9 @@ AddEncoding gzip svgz
|
|||||||
# Drupal\Core\DrupalKernel::bootEnvironment() for settings that can be
|
# Drupal\Core\DrupalKernel::bootEnvironment() for settings that can be
|
||||||
# changed at runtime.
|
# changed at runtime.
|
||||||
|
|
||||||
# PHP 5, Apache 1 and 2.
|
# PHP 7, Apache 1 and 2.
|
||||||
<IfModule mod_php5.c>
|
<IfModule mod_php7.c>
|
||||||
php_value assert.active 0
|
php_value assert.active 0
|
||||||
php_flag session.auto_start off
|
|
||||||
php_value mbstring.http_input pass
|
|
||||||
php_value mbstring.http_output pass
|
|
||||||
php_flag mbstring.encoding_translation off
|
|
||||||
# PHP 5.6 has deprecated $HTTP_RAW_POST_DATA and produces warnings if this is
|
|
||||||
# not set.
|
|
||||||
php_value always_populate_raw_post_data -1
|
|
||||||
</IfModule>
|
</IfModule>
|
||||||
|
|
||||||
# Requires mod_expires to be enabled.
|
# Requires mod_expires to be enabled.
|
||||||
@@ -167,9 +160,9 @@ AddEncoding gzip svgz
|
|||||||
RewriteCond %{REQUEST_FILENAME}\.gz -s
|
RewriteCond %{REQUEST_FILENAME}\.gz -s
|
||||||
RewriteRule ^(.*)\.js $1\.js\.gz [QSA]
|
RewriteRule ^(.*)\.js $1\.js\.gz [QSA]
|
||||||
|
|
||||||
# Serve correct content types, and prevent mod_deflate double gzip.
|
# Serve correct content types, and prevent double compression.
|
||||||
RewriteRule \.css\.gz$ - [T=text/css,E=no-gzip:1]
|
RewriteRule \.css\.gz$ - [T=text/css,E=no-gzip:1,E=no-brotli:1]
|
||||||
RewriteRule \.js\.gz$ - [T=text/javascript,E=no-gzip:1]
|
RewriteRule \.js\.gz$ - [T=text/javascript,E=no-gzip:1,E=no-brotli:1]
|
||||||
|
|
||||||
<FilesMatch "(\.js\.gz|\.css\.gz)$">
|
<FilesMatch "(\.js\.gz|\.css\.gz)$">
|
||||||
# Serve correct encoding type.
|
# Serve correct encoding type.
|
||||||
|
|||||||
@@ -105,6 +105,16 @@ $databases = [];
|
|||||||
* webserver. For most other drivers, you must specify a
|
* webserver. For most other drivers, you must specify a
|
||||||
* username, password, host, and database name.
|
* username, password, host, and database name.
|
||||||
*
|
*
|
||||||
|
* Drupal core implements drivers for mysql, pgsql, and sqlite. Other drivers
|
||||||
|
* can be provided by contributed or custom modules. To use a contributed or
|
||||||
|
* custom driver, the "namespace" property must be set to the namespace of the
|
||||||
|
* driver. The code in this namespace must be autoloadable prior to connecting
|
||||||
|
* to the database, and therefore, prior to when module root namespaces are
|
||||||
|
* added to the autoloader. To add the driver's namespace to the autoloader,
|
||||||
|
* set the "autoload" property to the PSR-4 base directory of the driver's
|
||||||
|
* namespace. This is optional for projects managed with Composer if the
|
||||||
|
* driver's namespace is in Composer's autoloader.
|
||||||
|
*
|
||||||
* Transaction support is enabled by default for all drivers that support it,
|
* Transaction support is enabled by default for all drivers that support it,
|
||||||
* including MySQL. To explicitly disable it, set the 'transactions' key to
|
* including MySQL. To explicitly disable it, set the 'transactions' key to
|
||||||
* FALSE.
|
* FALSE.
|
||||||
@@ -224,6 +234,20 @@ $databases = [];
|
|||||||
* 'database' => '/path/to/databasefilename',
|
* 'database' => '/path/to/databasefilename',
|
||||||
* ];
|
* ];
|
||||||
* @endcode
|
* @endcode
|
||||||
|
*
|
||||||
|
* Sample Database configuration format for a driver in a contributed module:
|
||||||
|
* @code
|
||||||
|
* $databases['default']['default'] = [
|
||||||
|
* 'driver' => 'mydriver',
|
||||||
|
* 'namespace' => 'Drupal\mymodule\Driver\Database\mydriver',
|
||||||
|
* 'autoload' => 'modules/mymodule/src/Driver/Database/mydriver/',
|
||||||
|
* 'database' => 'databasename',
|
||||||
|
* 'username' => 'sqlusername',
|
||||||
|
* 'password' => 'sqlpassword',
|
||||||
|
* 'host' => 'localhost',
|
||||||
|
* 'prefix' => '',
|
||||||
|
* ];
|
||||||
|
* @endcode
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -741,6 +765,19 @@ $settings['entity_update_batch_size'] = 50;
|
|||||||
*/
|
*/
|
||||||
$settings['entity_update_backup'] = TRUE;
|
$settings['entity_update_backup'] = TRUE;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Node migration type.
|
||||||
|
*
|
||||||
|
* This is used to force the migration system to use the classic node migrations
|
||||||
|
* instead of the default complete node migrations. The migration system will
|
||||||
|
* use the classic node migration only if there are existing migrate_map tables
|
||||||
|
* for the classic node migrations and they contain data. These tables may not
|
||||||
|
* exist if you are developing custom migrations and do not want to use the
|
||||||
|
* complete node migrations. Set this to TRUE to force the use of the classic
|
||||||
|
* node migrations.
|
||||||
|
*/
|
||||||
|
$settings['migrate_node_migrate_type_classic'] = FALSE;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Load local development override configuration, if available.
|
* Load local development override configuration, if available.
|
||||||
*
|
*
|
||||||
|
|||||||
@@ -131,15 +131,15 @@ $settings['rebuild_access'] = TRUE;
|
|||||||
$settings['skip_permissions_hardening'] = TRUE;
|
$settings['skip_permissions_hardening'] = TRUE;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Exclude modules from configuration synchronisation.
|
* Exclude modules from configuration synchronization.
|
||||||
*
|
*
|
||||||
* On config export sync, no config or dependent config of any excluded module
|
* On config export sync, no config or dependent config of any excluded module
|
||||||
* is exported. On config import sync, any config of any installed excluded
|
* is exported. On config import sync, any config of any installed excluded
|
||||||
* module is ignored. In the exported configuration, it will be as if the
|
* module is ignored. In the exported configuration, it will be as if the
|
||||||
* excluded module had never been installed. When syncing configuration, if an
|
* excluded module had never been installed. When syncing configuration, if an
|
||||||
* excluded module is already installed, it will not be uninstalled by the
|
* excluded module is already installed, it will not be uninstalled by the
|
||||||
* configuration synchronisation, and dependent configuration will remain
|
* configuration synchronization, and dependent configuration will remain
|
||||||
* intact. This affects only configuration synchronisation; single import and
|
* intact. This affects only configuration synchronization; single import and
|
||||||
* export of configuration are not affected.
|
* export of configuration are not affected.
|
||||||
*
|
*
|
||||||
* Drupal does not validate or sanity check the list of excluded modules. For
|
* Drupal does not validate or sanity check the list of excluded modules. For
|
||||||
@@ -148,7 +148,7 @@ $settings['skip_permissions_hardening'] = TRUE;
|
|||||||
* anymore.
|
* anymore.
|
||||||
*
|
*
|
||||||
* This is an advanced feature and using it means opting out of some of the
|
* This is an advanced feature and using it means opting out of some of the
|
||||||
* guarantees the configuration synchronisation provides. It is not recommended
|
* guarantees the configuration synchronization provides. It is not recommended
|
||||||
* to use this feature with modules that affect Drupal in a major way such as
|
* to use this feature with modules that affect Drupal in a major way such as
|
||||||
* the language or field module.
|
* the language or field module.
|
||||||
*/
|
*/
|
||||||
|
|||||||
Reference in New Issue
Block a user