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
!726
Issue
#3343889
: Local failure due to composer's newer versions in ComposerPatchesValidatorTest::testErrorDuringPreApply
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3343889
: Local failure due to composer's newer versions in ComposerPatchesValidatorTest::testErrorDuringPreApply
issue/automatic_updates-3343889:3343889-local-failure-due
into
3.0.x
Overview
3
Commits
10
Pipelines
0
Changes
2
1 unresolved thread
Hide all comments
Merged
Yash Rode
requested to merge
issue/automatic_updates-3343889:3343889-local-failure-due
into
3.0.x
2 years ago
Overview
3
Commits
10
Pipelines
0
Changes
2
1 unresolved thread
Hide all comments
Expand
0
0
Merge request reports
Compare
3.0.x
version 9
51f31a92
2 years ago
version 8
4c1d3465
2 years ago
version 7
ed2c049c
2 years ago
version 6
e661908c
2 years ago
version 5
b36c6dbc
2 years ago
version 4
81f6d47f
2 years ago
version 3
10d662d2
2 years ago
version 2
192e3765
2 years ago
version 1
01426eb5
2 years ago
3.0.x (base)
and
latest version
latest version
51f31a92
10 commits,
2 years ago
version 9
51f31a92
10 commits,
2 years ago
version 8
4c1d3465
9 commits,
2 years ago
version 7
ed2c049c
7 commits,
2 years ago
version 6
e661908c
6 commits,
2 years ago
version 5
b36c6dbc
5 commits,
2 years ago
version 4
81f6d47f
5 commits,
2 years ago
version 3
10d662d2
4 commits,
2 years ago
version 2
192e3765
2 commits,
2 years ago
version 1
01426eb5
1 commit,
2 years ago
2 files
+
16
−
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)
package_manager/src/ComposerInspector.php
+
11
−
1
Options
@@ -42,9 +42,19 @@ class ComposerInspector {
/**
* A semantic version constraint for the supported version(s) of Composer.
*
* Only versions supported by Composer are supported: the LTS and the latest
* minor version. Those are currently 2.2 and 2.5.
*
* @see https://endoflife.date/composer
*
* Note that Composer <= 2.2.11 is not supported anymore due to a security
* vulnerability.
*
* @see https://blog.packagist.com/cve-2022-24828-composer-command-injection-vulnerability/
*
* @var string
*/
final
public
const
SUPPORTED_VERSION
=
'~2.2.12 || ^2.
3.
5'
;
final
public
const
SUPPORTED_VERSION
=
'~2.2.12 || ^2.5'
;
/**
* Constructs a ComposerInspector object.
Loading