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
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
Download
Patches
Plain diff
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
Adam G-H
requested to merge
issue/automatic_updates-3279527:3279527-ensure-plugins-are
into
8.x-2.x
2 years ago
Overview
12
Commits
14
Pipelines
0
Changes
9
All threads resolved!
Show all comments
Expand
0
0
Merge request reports
Compare
8.x-2.x
version 12
8378e25a
2 years ago
version 11
41bc3bb1
2 years ago
version 10
89c3b196
2 years ago
version 9
2a03135a
2 years ago
version 8
bbf81727
2 years ago
version 7
3397c1f5
2 years ago
version 6
36a629dc
2 years ago
version 5
528de00b
2 years ago
version 4
f61a1978
2 years ago
version 3
416e5283
2 years ago
version 2
3e9ff5b9
2 years ago
version 1
4f4e2506
2 years ago
8.x-2.x (base)
and
latest version
latest version
8378e25a
14 commits,
2 years ago
version 12
8378e25a
14 commits,
2 years ago
version 11
41bc3bb1
13 commits,
2 years ago
version 10
89c3b196
12 commits,
2 years ago
version 9
2a03135a
11 commits,
2 years ago
version 8
bbf81727
10 commits,
2 years ago
version 7
3397c1f5
8 commits,
2 years ago
version 6
36a629dc
7 commits,
2 years ago
version 5
528de00b
6 commits,
2 years ago
version 4
f61a1978
5 commits,
2 years ago
version 3
416e5283
4 commits,
2 years ago
version 2
3e9ff5b9
3 commits,
2 years ago
version 1
4f4e2506
2 commits,
2 years ago
9 files
+
243
−
1
Side-by-side
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
9
Search (e.g. *.vue) (Ctrl+P)
package_manager/tests/fixtures/updated_module/1.0.0/src/Plugin/Block/DeletedBlock.php
0 → 100644
+
26
−
0
Options
<?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