updated drupal core to 8.5.1
This commit is contained in:
+1
-1
@@ -6,11 +6,11 @@
|
||||
"require": {
|
||||
"composer/installers": "^1.0.24",
|
||||
"wikimedia/composer-merge-plugin": "^1.4",
|
||||
"drupal/core": "^8.5",
|
||||
"drupal/console": "^1.7",
|
||||
"drush/drush": "^9"
|
||||
},
|
||||
"replace": {
|
||||
"drupal/core": "^8.5"
|
||||
},
|
||||
"minimum-stability": "dev",
|
||||
"prefer-stable": true,
|
||||
|
||||
Generated
+390
-149
File diff suppressed because it is too large
Load Diff
+1
-1
@@ -82,7 +82,7 @@ class Drupal {
|
||||
/**
|
||||
* The current system version.
|
||||
*/
|
||||
const VERSION = '8.5.0';
|
||||
const VERSION = '8.5.1';
|
||||
|
||||
/**
|
||||
* Core API compatibility.
|
||||
|
||||
@@ -20,6 +20,7 @@ use Drupal\Core\File\MimeType\MimeTypeGuesser;
|
||||
use Drupal\Core\Http\TrustedHostsRequestFactory;
|
||||
use Drupal\Core\Installer\InstallerRedirectTrait;
|
||||
use Drupal\Core\Language\Language;
|
||||
use Drupal\Core\Security\RequestSanitizer;
|
||||
use Drupal\Core\Site\Settings;
|
||||
use Drupal\Core\Test\TestDatabase;
|
||||
use Symfony\Cmf\Component\Routing\RouteObjectInterface;
|
||||
@@ -542,6 +543,12 @@ class DrupalKernel implements DrupalKernelInterface, TerminableInterface {
|
||||
* {@inheritdoc}
|
||||
*/
|
||||
public function preHandle(Request $request) {
|
||||
// Sanitize the request.
|
||||
$request = RequestSanitizer::sanitize(
|
||||
$request,
|
||||
(array) Settings::get(RequestSanitizer::SANITIZE_WHITELIST, []),
|
||||
(bool) Settings::get(RequestSanitizer::SANITIZE_LOG, FALSE)
|
||||
);
|
||||
|
||||
$this->loadLegacyIncludes();
|
||||
|
||||
|
||||
@@ -0,0 +1,99 @@
|
||||
<?php
|
||||
|
||||
namespace Drupal\Core\Security;
|
||||
|
||||
use Symfony\Component\HttpFoundation\Request;
|
||||
|
||||
/**
|
||||
* Sanitizes user input.
|
||||
*/
|
||||
class RequestSanitizer {
|
||||
|
||||
/**
|
||||
* Request attribute to mark the request as sanitized.
|
||||
*/
|
||||
const SANITIZED = '_drupal_request_sanitized';
|
||||
|
||||
/**
|
||||
* The name of the setting that configures the whitelist.
|
||||
*/
|
||||
const SANITIZE_WHITELIST = 'sanitize_input_whitelist';
|
||||
|
||||
/**
|
||||
* The name of the setting that determines if sanitized keys are logged.
|
||||
*/
|
||||
const SANITIZE_LOG = 'sanitize_input_logging';
|
||||
|
||||
/**
|
||||
* Strips dangerous keys from user input.
|
||||
*
|
||||
* @param \Symfony\Component\HttpFoundation\Request $request
|
||||
* The incoming request to sanitize.
|
||||
* @param string[] $whitelist
|
||||
* An array of keys to whitelist as safe. See default.settings.php.
|
||||
* @param bool $log_sanitized_keys
|
||||
* (optional) Set to TRUE to log an keys that are sanitized.
|
||||
*
|
||||
* @return \Symfony\Component\HttpFoundation\Request
|
||||
* The sanitized request.
|
||||
*/
|
||||
public static function sanitize(Request $request, $whitelist, $log_sanitized_keys = FALSE) {
|
||||
if (!$request->attributes->get(self::SANITIZED, FALSE)) {
|
||||
// Process query string parameters.
|
||||
$get_sanitized_keys = [];
|
||||
$request->query->replace(static::stripDangerousValues($request->query->all(), $whitelist, $get_sanitized_keys));
|
||||
if ($log_sanitized_keys && !empty($get_sanitized_keys)) {
|
||||
trigger_error(sprintf('Potentially unsafe keys removed from query string parameters (GET): %s', implode(', ', $get_sanitized_keys)));
|
||||
}
|
||||
|
||||
// Request body parameters.
|
||||
$post_sanitized_keys = [];
|
||||
$request->request->replace(static::stripDangerousValues($request->request->all(), $whitelist, $post_sanitized_keys));
|
||||
if ($log_sanitized_keys && !empty($post_sanitized_keys)) {
|
||||
trigger_error(sprintf('Potentially unsafe keys removed from request body parameters (POST): %s', implode(', ', $post_sanitized_keys)));
|
||||
}
|
||||
|
||||
// Cookie parameters.
|
||||
$cookie_sanitized_keys = [];
|
||||
$request->cookies->replace(static::stripDangerousValues($request->cookies->all(), $whitelist, $cookie_sanitized_keys));
|
||||
if ($log_sanitized_keys && !empty($cookie_sanitized_keys)) {
|
||||
trigger_error(sprintf('Potentially unsafe keys removed from cookie parameters: %s', implode(', ', $cookie_sanitized_keys)));
|
||||
}
|
||||
|
||||
if (!empty($get_sanitized_keys) || !empty($post_sanitized_keys) || !empty($cookie_sanitized_keys)) {
|
||||
$request->overrideGlobals();
|
||||
}
|
||||
$request->attributes->set(self::SANITIZED, TRUE);
|
||||
}
|
||||
return $request;
|
||||
}
|
||||
|
||||
/**
|
||||
* Strips dangerous keys from $input.
|
||||
*
|
||||
* @param mixed $input
|
||||
* The input to sanitize.
|
||||
* @param string[] $whitelist
|
||||
* An array of keys to whitelist as safe.
|
||||
* @param string[] $sanitized_keys
|
||||
* An array of keys that have been removed.
|
||||
*
|
||||
* @return mixed
|
||||
* The sanitized input.
|
||||
*/
|
||||
protected static function stripDangerousValues($input, array $whitelist, array &$sanitized_keys) {
|
||||
if (is_array($input)) {
|
||||
foreach ($input as $key => $value) {
|
||||
if ($key !== '' && $key[0] === '#' && !in_array($key, $whitelist, TRUE)) {
|
||||
unset($input[$key]);
|
||||
$sanitized_keys[] = $key;
|
||||
}
|
||||
else {
|
||||
$input[$key] = static::stripDangerousValues($input[$key], $whitelist, $sanitized_keys);
|
||||
}
|
||||
}
|
||||
}
|
||||
return $input;
|
||||
}
|
||||
|
||||
}
|
||||
@@ -2,12 +2,6 @@ name: Actions
|
||||
type: module
|
||||
description: 'Perform tasks on specific events triggered within the system.'
|
||||
package: Core
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
configure: entity.action.collection
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,15 +2,9 @@ name: 'Action bulk form test'
|
||||
type: module
|
||||
description: 'Support module for action bulk form testing.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- action
|
||||
- views
|
||||
- node
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,12 +2,6 @@ name: action_form_ajax_test
|
||||
type: module
|
||||
description: 'module used for testing ajax in action config entity forms.'
|
||||
package: Core
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
hidden: true
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,15 +2,9 @@ name: Aggregator
|
||||
type: module
|
||||
description: 'Aggregates syndicated content (RSS, RDF, and Atom feeds) from external sources.'
|
||||
package: Core
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
configure: aggregator.admin_settings
|
||||
dependencies:
|
||||
- file
|
||||
- options
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,11 +2,5 @@ name: 'Aggregator module tests'
|
||||
type: module
|
||||
description: 'Support module for aggregator related testing.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
+2
-8
@@ -2,14 +2,8 @@ name: 'Aggregator test views'
|
||||
type: module
|
||||
description: 'Provides default views for views aggregator tests.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- aggregator
|
||||
- views
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,12 +2,6 @@ name: 'Automated Cron'
|
||||
type: module
|
||||
description: 'Provides an automated way to run cron jobs, by executing them at the end of a server response.'
|
||||
package: Core
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
configure: system.cron_settings
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,12 +2,6 @@ name: Ban
|
||||
type: module
|
||||
description: 'Enables banning of IP addresses.'
|
||||
package: Core
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
configure: ban.admin_page
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,13 +2,7 @@ name: 'HTTP Basic Authentication'
|
||||
type: module
|
||||
description: 'Provides the HTTP Basic authentication provider'
|
||||
package: Web services
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- user
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,11 +2,5 @@ name: 'HTTP Basic Authentication test'
|
||||
type: module
|
||||
description: 'Support module for HTTP Basic Authentication testing.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
@@ -2,11 +2,5 @@ name: BigPipe
|
||||
type: module
|
||||
description: 'Sends pages using the BigPipe technique that allows browsers to show them much faster.'
|
||||
package: Core
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
+2
-8
@@ -2,11 +2,5 @@ name: 'BigPipe regression test'
|
||||
type: module
|
||||
description: 'Support module for BigPipe regression testing.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
@@ -2,11 +2,5 @@ name: 'BigPipe test'
|
||||
type: module
|
||||
description: 'Support module for BigPipe testing.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
@@ -1,11 +1,5 @@
|
||||
name: 'BigPipe test theme'
|
||||
type: theme
|
||||
description: 'Theme for testing BigPipe edge cases.'
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
@@ -2,12 +2,6 @@ name: Block
|
||||
type: module
|
||||
description: 'Controls the visual building blocks a page is constructed with. Blocks are boxes of content rendered into an area, or region, of a web page.'
|
||||
package: Core
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
configure: block.admin_display
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,13 +2,7 @@ name: 'Block test'
|
||||
type: module
|
||||
description: 'Provides test blocks.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- block
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
+1
-7
@@ -1,13 +1,7 @@
|
||||
name: '<"Cat" & ''Mouse''>'
|
||||
type: theme
|
||||
description: 'Theme for testing special characters in block admin.'
|
||||
# core: 8.x
|
||||
core: 8.x
|
||||
regions:
|
||||
content: Content
|
||||
help: Help
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
+2
-8
@@ -1,8 +1,8 @@
|
||||
name: 'Block test theme'
|
||||
type: theme
|
||||
description: 'Theme for testing the block system'
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
regions:
|
||||
sidebar_first: 'Left sidebar'
|
||||
sidebar_second: 'Right sidebar'
|
||||
@@ -14,9 +14,3 @@ regions:
|
||||
regions_hidden:
|
||||
- sidebar_first
|
||||
- sidebar_second
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,14 +2,8 @@ name: 'Block test views'
|
||||
type: module
|
||||
description: 'Provides a view and block to test block displays in views.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- block
|
||||
- views
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,16 +2,10 @@ name: 'Custom Block'
|
||||
type: module
|
||||
description: 'Allows the creation of custom blocks through the user interface.'
|
||||
package: Core
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- block
|
||||
- text
|
||||
- user
|
||||
configure: entity.block_content.collection
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
+2
-8
@@ -2,13 +2,7 @@ name: "Custom Block module tests"
|
||||
type: module
|
||||
description: "Support module for custom block related testing."
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- block_content
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
+2
-8
@@ -2,14 +2,8 @@ name: 'Block Content test views'
|
||||
type: module
|
||||
description: 'Provides default views for views block_content tests.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- block_content
|
||||
- views
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,14 +2,8 @@ name: Place Blocks
|
||||
type: module
|
||||
description: 'Allow administrators to place blocks from any Drupal page'
|
||||
package: Core (Experimental)
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
hidden: true
|
||||
dependencies:
|
||||
- block
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,14 +2,8 @@ name: Book
|
||||
type: module
|
||||
description: 'Allows users to create and organize related content in an outline.'
|
||||
package: Core
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- node
|
||||
configure: book.settings
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,11 +2,5 @@ name: 'Book module breadcrumb tests'
|
||||
type: module
|
||||
description: 'Support module for book module breadcrumb testing.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
@@ -2,11 +2,5 @@ name: 'Book module tests'
|
||||
type: module
|
||||
description: 'Support module for book module testing.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
@@ -2,14 +2,8 @@ name: 'Book test views'
|
||||
type: module
|
||||
description: 'Provides default views for views book tests.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- book
|
||||
- views
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,11 +2,5 @@ name: Breakpoint
|
||||
type: module
|
||||
description: 'Manage breakpoints and breakpoint groups for responsive designs.'
|
||||
package: Core
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
+2
-8
@@ -2,12 +2,6 @@ name: 'Breakpoint test module'
|
||||
type: module
|
||||
description: 'Test module for breakpoint.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
+2
-8
@@ -1,12 +1,6 @@
|
||||
name: 'Breakpoint test theme'
|
||||
type: theme
|
||||
description: 'Test theme for breakpoint.'
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
base theme: bartik
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,13 +2,7 @@ name: CKEditor
|
||||
type: module
|
||||
description: "WYSIWYG editing for rich text fields using CKEditor."
|
||||
package: Core
|
||||
# core: 8.x
|
||||
# version: VERSION
|
||||
core: 8.x
|
||||
version: VERSION
|
||||
dependencies:
|
||||
- editor
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -1,12 +1,6 @@
|
||||
name: CKEditor test
|
||||
type: module
|
||||
description: Support module for the CKEditor module tests.
|
||||
# core: 8.x
|
||||
core: 8.x
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
|
||||
@@ -2,11 +2,5 @@ name: Color
|
||||
type: module
|
||||
description: 'Allows administrators to change the color scheme of compatible themes.'
|
||||
package: Core
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
@@ -2,11 +2,5 @@ name: 'Color test'
|
||||
type: module
|
||||
description: 'Provides test helpers for color module.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
+2
-8
@@ -1,13 +1,7 @@
|
||||
name: 'Color test theme'
|
||||
type: theme
|
||||
description: 'Theme for testing the color module'
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
libraries:
|
||||
- color_test_theme/base
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,14 +2,8 @@ name: Comment
|
||||
type: module
|
||||
description: 'Allows users to comment on and discuss published content.'
|
||||
package: Core
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- text
|
||||
configure: comment.admin
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
+2
-8
@@ -2,13 +2,7 @@ name: 'Comment empty titles test'
|
||||
type: module
|
||||
description: 'Support module for testing empty title accessibility with Comment module.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- comment
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,13 +2,7 @@ name: 'Comment test'
|
||||
type: module
|
||||
description: 'Support module for Comment module testing.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- comment
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,14 +2,8 @@ name: 'Comment test views'
|
||||
type: module
|
||||
description: 'Provides default views for views comment tests.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- comment
|
||||
- views
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,12 +2,6 @@ name: 'Configuration Manager'
|
||||
type: module
|
||||
description: 'Allows administrators to manage configuration changes.'
|
||||
package: Core
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
configure: config.sync
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -1,16 +1,10 @@
|
||||
name: 'Test theme for configuration clash detection'
|
||||
type: theme
|
||||
description: 'Test theme for configuration clash detection'
|
||||
# version: VERSION
|
||||
version: VERSION
|
||||
base theme: classy
|
||||
# core: 8.x
|
||||
core: 8.x
|
||||
regions:
|
||||
content: Content
|
||||
left: Left
|
||||
right: Right
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
+2
-8
@@ -3,13 +3,7 @@
|
||||
name: 'Config collection clash test module'
|
||||
type: module
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- config_collection_install_test
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
+2
-8
@@ -1,11 +1,5 @@
|
||||
name: 'Configuration events test'
|
||||
type: module
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
+2
-8
@@ -1,11 +1,5 @@
|
||||
name: 'Configuration entity static cache test'
|
||||
type: module
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
@@ -1,11 +1,5 @@
|
||||
name: 'Configuration events test'
|
||||
type: module
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
@@ -1,11 +1,5 @@
|
||||
name: 'Configuration import test'
|
||||
type: module
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
+2
-8
@@ -1,11 +1,5 @@
|
||||
name: 'Config install dependency test'
|
||||
type: module
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
+2
-8
@@ -1,11 +1,5 @@
|
||||
name: 'Config install double dependency test'
|
||||
type: module
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
+2
-8
@@ -1,13 +1,7 @@
|
||||
name: 'Configuration install fail test'
|
||||
type: module
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- config_test
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -1,13 +1,7 @@
|
||||
name: 'ConfigTest integration'
|
||||
type: module
|
||||
package: 'Testing'
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- config_test
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
+2
-8
@@ -1,11 +1,5 @@
|
||||
name: 'Config other module config'
|
||||
type: module
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
+2
-8
@@ -1,15 +1,9 @@
|
||||
name: 'Configuration override integration test'
|
||||
type: module
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
dependencies:
|
||||
- block
|
||||
- block_test
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -1,15 +1,9 @@
|
||||
name: 'Configuration override test'
|
||||
type: module
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
dependencies:
|
||||
- block
|
||||
- block_content
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -1,12 +1,6 @@
|
||||
name: 'Configuration schema test'
|
||||
type: module
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
hidden: true
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -1,11 +1,5 @@
|
||||
name: 'Configuration test'
|
||||
type: module
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
@@ -1,12 +1,7 @@
|
||||
name: 'Configuration test languages'
|
||||
type: module
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- config_test
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
- config_test
|
||||
@@ -2,14 +2,8 @@ name: 'Configuration Translation'
|
||||
type: module
|
||||
description: 'Provides a translation interface for configuration.'
|
||||
package: Multilingual
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
configure: config_translation.mapper_list
|
||||
dependencies:
|
||||
- locale
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
+2
-8
@@ -2,14 +2,8 @@ name: 'Configuration Translation Test'
|
||||
description: 'Helpers to test the configuration translation system'
|
||||
type: module
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- config_translation
|
||||
- config_test
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
+2
-8
@@ -1,11 +1,5 @@
|
||||
name: 'Configuration Translation Test Theme'
|
||||
type: theme
|
||||
description: 'Theme for testing the configuration translation mapper system'
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
@@ -2,12 +2,6 @@ name: Contact
|
||||
type: module
|
||||
description: 'Enables the use of both personal and site-wide contact forms.'
|
||||
package: Core
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
configure: entity.contact_form.collection
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
+2
-8
@@ -2,14 +2,8 @@ name: 'Contact test storage'
|
||||
type: module
|
||||
description: 'Tests that contact messages can be stored.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- contact
|
||||
- user
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,13 +2,7 @@ name: 'Contact test module'
|
||||
type: module
|
||||
description: 'Contains test contact form.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- contact
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,15 +2,9 @@ name: 'Contact test views'
|
||||
type: module
|
||||
description: 'Provides default views for views contact tests.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- contact
|
||||
- views
|
||||
- user
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -1,15 +1,9 @@
|
||||
name: 'Content Moderation'
|
||||
type: module
|
||||
description: 'Provides moderation states for content.'
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
package: Core
|
||||
configure: entity.workflow.collection
|
||||
dependencies:
|
||||
- workflows
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
+2
-8
@@ -2,14 +2,8 @@ name: 'Content moderation test local task'
|
||||
type: module
|
||||
description: 'Provides a local task for testing.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- content_moderation
|
||||
- node
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
+2
-8
@@ -2,16 +2,10 @@ name: 'Content moderation test views'
|
||||
type: module
|
||||
description: 'Provides default views for views Content moderation tests.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- content_moderation
|
||||
- node
|
||||
- views
|
||||
- entity_test
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -4,12 +4,6 @@ description: 'Allows users to translate content entities.'
|
||||
dependencies:
|
||||
- language
|
||||
package: Multilingual
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
configure: language.content_settings_page
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
+2
-8
@@ -2,15 +2,9 @@ name: 'Content translation tests'
|
||||
type: module
|
||||
description: 'Provides content translation tests.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- content_translation
|
||||
- language
|
||||
- entity_test
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
+2
-8
@@ -2,14 +2,8 @@ name: 'Content translation test views'
|
||||
type: module
|
||||
description: 'Provides default views for views content translation tests.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- content_translation
|
||||
- views
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,11 +2,5 @@ name: 'Contextual Links'
|
||||
type: module
|
||||
description: 'Provides contextual links to perform actions related to elements on a page.'
|
||||
package: Core
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
@@ -2,13 +2,7 @@ name: 'Contextual Test'
|
||||
type: module
|
||||
description: 'Provides test contextual links.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- contextual
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,13 +2,7 @@ name: Datetime
|
||||
type: module
|
||||
description: Defines datetime form elements and a datetime field type.
|
||||
package: Field types
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- field
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,13 +2,7 @@ name: 'Datetime test'
|
||||
type: module
|
||||
description: 'Provides default views for tests.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- views
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,13 +2,7 @@ name: 'Datetime Range'
|
||||
type: module
|
||||
description: 'Provides the ability to store end dates.'
|
||||
package: Field types
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- datetime
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,12 +2,6 @@ name: 'Database Logging'
|
||||
type: module
|
||||
description: 'Logs and records system events to the database.'
|
||||
package: Core
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
configure: system.logging_settings
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457826
|
||||
|
||||
@@ -2,14 +2,8 @@ name: 'Dblog test views'
|
||||
type: module
|
||||
description: 'Provides default views for views dblog tests.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- dblog
|
||||
- views
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457825
|
||||
|
||||
@@ -2,11 +2,5 @@ name: Internal Dynamic Page Cache
|
||||
type: module
|
||||
description: 'Caches pages for any user, handling dynamic content correctly.'
|
||||
package: Core
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457825
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
+2
-8
@@ -2,11 +2,5 @@ name: 'Test Dynamic Page Cache'
|
||||
type: module
|
||||
description: 'Provides test routes/responses for Dynamic Page Cache.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457825
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
@@ -2,15 +2,9 @@ name: 'Text Editor'
|
||||
type: module
|
||||
description: 'Provides a means to associate text formats with text editor libraries such as WYSIWYGs or toolbars.'
|
||||
package: Core
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- filter
|
||||
- file
|
||||
configure: filter.admin_overview
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457825
|
||||
|
||||
@@ -1,15 +1,9 @@
|
||||
name: 'Text Editor Private test'
|
||||
type: module
|
||||
description: 'Support module for the Text Editor Private module tests.'
|
||||
# core: 8.x
|
||||
core: 8.x
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
version: VERSION
|
||||
dependencies:
|
||||
- filter
|
||||
- ckeditor
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457825
|
||||
|
||||
@@ -1,12 +1,6 @@
|
||||
name: 'Text Editor test'
|
||||
type: module
|
||||
description: 'Support module for the Text Editor module tests.'
|
||||
# core: 8.x
|
||||
core: 8.x
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457825
|
||||
version: VERSION
|
||||
|
||||
@@ -2,12 +2,6 @@ name: 'Entity Reference'
|
||||
type: module
|
||||
description: 'Deprecated. All the functionality has been moved to Core.'
|
||||
package: Field types
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
hidden: true
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457825
|
||||
|
||||
@@ -2,11 +2,5 @@ name: Field
|
||||
type: module
|
||||
description: 'Field API to add fields to entities like nodes and users.'
|
||||
package: Core
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457825
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
|
||||
@@ -1,14 +1,8 @@
|
||||
name: 'Field Plugins Test'
|
||||
type: module
|
||||
description: 'Support module for the field and entity display tests.'
|
||||
# core: 8.x
|
||||
core: 8.x
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
version: VERSION
|
||||
dependencies:
|
||||
- text
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457825
|
||||
|
||||
@@ -1,14 +1,8 @@
|
||||
name: 'Field API Test'
|
||||
type: module
|
||||
description: 'Support module for the Field API tests.'
|
||||
# core: 8.x
|
||||
core: 8.x
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
version: VERSION
|
||||
dependencies:
|
||||
- entity_test
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457825
|
||||
|
||||
+2
-8
@@ -1,14 +1,8 @@
|
||||
name: 'Boolean field Test'
|
||||
type: module
|
||||
description: 'Support module for the field and entity display tests.'
|
||||
# core: 8.x
|
||||
core: 8.x
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
version: VERSION
|
||||
dependencies:
|
||||
- field
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457825
|
||||
|
||||
@@ -1,12 +1,6 @@
|
||||
name: 'Field API configuration tests'
|
||||
type: module
|
||||
description: 'Support module for the Field API configuration tests.'
|
||||
# core: 8.x
|
||||
core: 8.x
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457825
|
||||
version: VERSION
|
||||
|
||||
@@ -2,13 +2,7 @@ name: 'Field test views'
|
||||
type: module
|
||||
description: 'Provides default views for views field tests.'
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- views
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457825
|
||||
|
||||
+2
-8
@@ -1,15 +1,9 @@
|
||||
name: 'Field Third Party Settings Test'
|
||||
type: module
|
||||
description: 'Support module for the Field API tests.'
|
||||
# core: 8.x
|
||||
core: 8.x
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
version: VERSION
|
||||
dependencies:
|
||||
- entity_test
|
||||
- field_test
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457825
|
||||
|
||||
@@ -1,15 +1,9 @@
|
||||
name: 'Field Timestamp Test'
|
||||
type: module
|
||||
description: 'Support module for the Timestamp field item test.'
|
||||
# core: 8.x
|
||||
core: 8.x
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
version: VERSION
|
||||
dependencies:
|
||||
- entity_test
|
||||
- field
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457825
|
||||
|
||||
@@ -2,13 +2,7 @@ name: 'Field Layout'
|
||||
type: module
|
||||
description: 'Adds layout capabilities to the Field UI.'
|
||||
package: Core (Experimental)
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- layout_discovery
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457825
|
||||
|
||||
+2
-8
@@ -1,14 +1,8 @@
|
||||
name: 'Field Layout test'
|
||||
type: module
|
||||
description: 'Support module for Field Layout tests.'
|
||||
# core: 8.x
|
||||
core: 8.x
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
version: VERSION
|
||||
dependencies:
|
||||
- entity_test
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457825
|
||||
|
||||
@@ -2,13 +2,7 @@ name: 'Field UI'
|
||||
type: module
|
||||
description: 'User interface for the Field API.'
|
||||
package: Core
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- field
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457825
|
||||
|
||||
@@ -1,12 +1,6 @@
|
||||
name: 'Field UI test'
|
||||
type: module
|
||||
description: 'Support module for Field UI tests.'
|
||||
# core: 8.x
|
||||
core: 8.x
|
||||
package: Testing
|
||||
# version: VERSION
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457825
|
||||
version: VERSION
|
||||
|
||||
@@ -2,13 +2,7 @@ name: File
|
||||
type: module
|
||||
description: 'Defines a file field type.'
|
||||
package: Field types
|
||||
# version: VERSION
|
||||
# core: 8.x
|
||||
version: VERSION
|
||||
core: 8.x
|
||||
dependencies:
|
||||
- field
|
||||
|
||||
# Information added by Drupal.org packaging script on 2018-03-07
|
||||
version: '8.5.0'
|
||||
core: '8.x'
|
||||
project: 'drupal'
|
||||
datestamp: 1520457825
|
||||
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user