Skip to content
Snippets Groups Projects
Commit ad9d0c75 authored by project update bot's avatar project update bot Committed by Marcin Grabias
Browse files

Issue #3435419: Automated Drupal 11 compatibility fixes for views_bulk_edit

parent b2511c19
No related branches found
No related tags found
1 merge request!21Automated Project Update Bot fixes
Pipeline #266966 failed
################
# GitLabCI template for Drupal projects.
#
# This template is designed to give any Contrib maintainer everything they need to test, without requiring modification.
# It is also designed to keep up to date with Core Development automatically through the use of include files that can be centrally maintained.
# As long as you include the project, ref and three files below, any future updates added by the Drupal Association will be used in your
# pipelines automatically. However, you can modify this template if you have additional needs for your project.
# The full documentation is on https://project.pages.drupalcode.org/gitlab_templates/
################
# For information on alternative values for 'ref' see https://project.pages.drupalcode.org/gitlab_templates/info/templates-version/
# To test a Drupal 7 project, change the first include filename from .main.yml to .main-d7.yml
include:
- project: $_GITLAB_TEMPLATES_REPO
ref: $_GITLAB_TEMPLATES_REF
file:
- "/includes/include.drupalci.main.yml"
- "/includes/include.drupalci.variables.yml"
- "/includes/include.drupalci.workflows.yml"
################
# Pipeline configuration variables are defined with default values and descriptions in the file
# https://git.drupalcode.org/project/gitlab_templates/-/blob/main/includes/include.drupalci.variables.yml
# Uncomment the lines below if you want to override any of the variables. The following is just an example.
################
# variables:
# SKIP_ESLINT: '1'
# OPT_IN_TEST_NEXT_MAJOR: '1'
# _CURL_TEMPLATES_REF: 'main'
......@@ -14,7 +14,7 @@
},
"license": "GPL-2.0+",
"require": {
"drupal/core": "^9.4 || ^10"
"drupal/core": "^9.4 || ^10 || ^11"
},
"require-dev": {
"drupal/views_bulk_operations": "~4.2.4"
......
......@@ -5,7 +5,7 @@ namespace Drupal\Tests\views_bulk_edit\Functional;
use Drupal\Core\Entity\Entity\EntityFormDisplay;
use Drupal\Core\Entity\Entity\EntityFormMode;
use Drupal\field\FieldStorageConfigInterface;
use Drupal\Tests\field\Traits\EntityReferenceTestTrait;
use Drupal\Tests\field\Traits\EntityReferenceFieldCreationTrait;
use Drupal\Tests\node\Functional\Views\NodeTestBase;
/**
......@@ -15,7 +15,7 @@ use Drupal\Tests\node\Functional\Views\NodeTestBase;
*/
class ViewsBulkEditActionTest extends NodeTestBase {
use EntityReferenceTestTrait;
use EntityReferenceFieldCreationTrait;
/**
* {@inheritdoc}
......
......@@ -14,7 +14,7 @@ class ViewsBulkEditActionTest extends ViewsBulkOperationsKernelTestBase {
/**
* {@inheritdoc}
*/
public static $modules = [
protected static $modules = [
'views_bulk_edit',
];
......
......@@ -2,6 +2,6 @@ type: module
name: 'Views Bulk Edit'
description: 'Allows bulk edition of entity field values.'
package: 'Views Bulk Operations'
core_version_requirement: ^9.4 || ^10
core_version_requirement: ^9.4 || ^10 || ^11
test_dependencies:
- drupal:views_bulk_operations
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment