Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
automatic_updates
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
automatic_updates
Merge requests
!310
Issue
#3279527
: Ensure plugins are reloaded after an update
Code
Review changes
Check out branch
Open in Workspace
Download
Patches
Plain diff
Expand sidebar
Merged
Issue
#3279527
: Ensure plugins are reloaded after an update
issue/automatic_updates-3279527:3279527-ensure-plugins-are
into
8.x-2.x
Overview
12
Commits
14
Pipelines
0
Changes
9
All threads resolved!
Show all comments
Merged
Issue #3279527: Ensure plugins are reloaded after an update
Adam G-H
requested to merge
issue/automatic_updates-3279527:3279527-ensure-plugins-are
into
8.x-2.x
May 9, 2022
Overview
12
Commits
14
Pipelines
0
Changes
9
All threads resolved!
Show all comments
0
0
Merge request reports
Compare
8.x-2.x
version 12
8378e25a
May 11, 2022
version 11
41bc3bb1
May 11, 2022
version 10
89c3b196
May 11, 2022
version 9
2a03135a
May 11, 2022
version 8
bbf81727
May 11, 2022
version 7
3397c1f5
May 10, 2022
version 6
36a629dc
May 9, 2022
version 5
528de00b
May 9, 2022
version 4
f61a1978
May 9, 2022
version 3
416e5283
May 9, 2022
version 2
3e9ff5b9
May 9, 2022
version 1
4f4e2506
May 9, 2022
8.x-2.x (base)
and
latest version
latest version
8378e25a
14 commits,
May 11, 2022
version 12
8378e25a
14 commits,
May 11, 2022
version 11
41bc3bb1
13 commits,
May 11, 2022
version 10
89c3b196
12 commits,
May 11, 2022
version 9
2a03135a
11 commits,
May 11, 2022
version 8
bbf81727
10 commits,
May 11, 2022
version 7
3397c1f5
8 commits,
May 10, 2022
version 6
36a629dc
7 commits,
May 9, 2022
version 5
528de00b
6 commits,
May 9, 2022
version 4
f61a1978
5 commits,
May 9, 2022
version 3
416e5283
4 commits,
May 9, 2022
version 2
3e9ff5b9
3 commits,
May 9, 2022
version 1
4f4e2506
2 commits,
May 9, 2022
9 files
+
243
−
1
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
package_manager/tests/fixtures/updated_module/1.0.0/src/Plugin/Block/DeletedBlock.php
0 → 100644
+
26
−
0
View file @ 8378e25a
Edit in single-file editor
Open in Web IDE
<?php
namespace
Drupal\updated_module\Plugin\Block
;
use
Drupal\Core\Block\BlockBase
;
/**
* This block is removed from version 1.1.0 of this module.
*
* @Block(
* id = "updated_module_deleted_block",
* admin_label = @Translation("Deleted block"),
* )
*/
class
DeletedBlock
extends
BlockBase
{
/**
* {@inheritdoc}
*/
public
function
build
()
{
return
[
'#markup'
=>
$this
->
t
(
'Goodbye!'
),
];
}
}
Loading