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
!979
Issue
#3311472
Set minimum stability for form
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3311472
Set minimum stability for form
issue/automatic_updates-3311472:3311472-minimumStability
into
3.0.x
Overview
9
Commits
13
Pipelines
1
Changes
5
1 unresolved thread
Hide all comments
Merged
Ted Bowman
requested to merge
issue/automatic_updates-3311472:3311472-minimumStability
into
3.0.x
1 year ago
Overview
9
Commits
13
Pipelines
1
Changes
2
1 unresolved thread
Hide all comments
Expand
Closes
#3311472
0
0
Merge request reports
Compare
version 2
version 6
6800143c
1 year ago
version 5
3152923d
1 year ago
version 4
59d190ef
1 year ago
version 3
ea004d28
1 year ago
version 2
cbc4b4bd
1 year ago
version 1
c87cf876
1 year ago
3.0.x (base)
and
version 3
latest version
08b27c07
13 commits,
1 year ago
version 6
6800143c
13 commits,
1 year ago
version 5
3152923d
12 commits,
1 year ago
version 4
59d190ef
11 commits,
1 year ago
version 3
ea004d28
10 commits,
1 year ago
version 2
cbc4b4bd
8 commits,
1 year ago
version 1
c87cf876
6 commits,
1 year ago
Show latest version
2 files
+
4
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
src/Validator/VersionPolicy/TargetVersionNotPreRelease.php
+
1
−
1
Options
@@ -33,7 +33,7 @@ final class TargetVersionNotPreRelease {
public
function
validate
(
string
$installed_version
,
?string
$target_version
):
array
{
if
(
!
in_array
(
VersionParser
::
parseStability
(
$target_version
),
[
'stable'
,
'RC'
],
TRUE
))
{
return
[
$this
->
t
(
'Drupal cannot be
automatically updated during cron
to the recommended version, @target_version, because it is not a stable version.'
,
[
$this
->
t
(
'Drupal cannot be
updated
to the recommended version, @target_version, because it is not a stable version.'
,
[
'@target_version'
=>
$target_version
,
]),
];
Loading