Fixes added manually on top of bot's changes
Closes #3430427
Merge request reports
Activity
added 1 commit
- 04dadcb6 - Add a customized version of DA's `.gitlab-ci.yml` template to the project
added 1 commit
- ca5ad735 - Remove return statement as method does not returns anything.
343 343 } 344 344 345 345 // Provide some default values. 346 $formatters[$formatter] += ['weight' => $default_weight++]; 346 $formatters[$formatter]['weight'] = $default_weight + 1; changed this line in version 11 of the diff
This is changed to fix the
TypeError: Unsupported operand types: string * int
. More info in failed test result here.
2 2 type: module 3 3 hidden: TRUE 4 4 package: Testing 5 core: 8.x 6 core_version_requirement: ^8 || ^9 || ^10 5 core_version_requirement: '^9.5.11 || ^10 || ^11' 7 6 dependencies: 8 - drupal:system (>=8.6) 7 - drupal:system (>=9.5) changed this line in version 8 of the diff
8 8 "irc": "irc://irc.freenode.org/drupal-media" 9 9 }, 10 10 "require": { 11 "drupal/core": "^8.6 || ^9 || ^10" 11 "drupal/core": "^9.5.11 || ^10 || ^11" changed this line in version 8 of the diff
1 1 name: 'Fallback formatter' 2 2 type: module 3 3 description: 'Provides a formatter that allows the user to configure multiple formatters and the order in which they should be attempted to display output.' 4 core_version_requirement: ^8 || ^9 || ^10 4 core_version_requirement: '^9.5.11 || ^10 || ^11' changed this line in version 8 of the diff
added 1 commit
- 23652352 - Updated the core version to 9.5 and removed the drupal:system dependency, as...
2 2 type: module 3 3 hidden: TRUE 4 4 package: Testing 5 core_version_requirement: '^9.5.11 || ^10 || ^11' 6 dependencies: 7 - drupal:system (>=9.5) 5 core_version_requirement: '^9.5 || ^10 || ^11' changed this line in version 9 of the diff
added 1 commit
- 6f32b85b - Remove core version requirement from test module as not required.
96 97 $assert_session = $this->assertSession(); 97 98 98 99 $this->drupalGet('admin/structure/types/manage/article/display'); 100 $this->assertSession()->optionExists('fields[body][type]', 'fallback'); 99 101 $page->selectFieldOption('fields[body][type]', 'fallback'); 102 $this->assertSession()->waitForText('No formatters selected yet.'); changed this line in version 10 of the diff
8 8 "irc": "irc://irc.freenode.org/drupal-media" 9 9 }, 10 10 "require": { 11 "drupal/core": "^8.6 || ^9 || ^10" 11 "drupal/core": "^9.5 || ^10 || ^11" changed this line in version 10 of the diff
@phenaproxima respectfully disagree here, nearly 40% of users are still on Drupal 9.5. Thus its been our policy to keep Drupal 9.5 support, despite its EOL status, so people can upgrade sites easier to Drupal 11.
I've added back 9.5 to the info file and ensured that it works on Drupal 9.5 sites.
added 2 commits
- Resolved by Adam G-H