File tree 7 files changed +10
-10
lines changed
frontend/pipeline-console-view/pipeline-console/main
java/io/jenkins/plugins/pipelinegraphview/utils
test/resources/io/jenkins/plugins/pipelinegraphview/utils
7 files changed +10
-10
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 7
7
types :
8
8
- completed
9
9
10
+ permissions :
11
+ checks : read
12
+ contents : write
13
+
10
14
jobs :
11
15
maven-cd :
12
16
uses : jenkins-infra/github-reusable-workflows/.github/workflows/maven-cd.yml@v1
Original file line number Diff line number Diff line change 2
2
<extension >
3
3
<groupId >io.jenkins.tools.incrementals</groupId >
4
4
<artifactId >git-changelist-maven-extension</artifactId >
5
- <version >1.4 </version >
5
+ <version >1.8 </version >
6
6
</extension >
7
7
</extensions >
Original file line number Diff line number Diff line change 4
4
<parent >
5
5
<groupId >org.jenkins-ci.plugins</groupId >
6
6
<artifactId >plugin</artifactId >
7
- <version >4.72 </version >
7
+ <version >4.81 </version >
8
8
<relativePath />
9
9
</parent >
10
10
33
33
<changelist >999999-SNAPSHOT</changelist >
34
34
<gitHubRepo >jenkinsci/pipeline-graph-view-plugin</gitHubRepo >
35
35
<!-- Baseline Jenkins version you use to build the plugin. Users must have this version or newer to run. -->
36
- <jenkins .version>2.426.1 </jenkins .version>
36
+ <jenkins .version>2.426.3 </jenkins .version>
37
37
<node .version>16.18.1</node .version>
38
38
<npm .version>8.19.4</npm .version>
39
39
<spotless .check.skip>false</spotless .check.skip>
45
45
<!-- Pick up common dependencies for the selected LTS line: https://github.com/jenkinsci/bom#usage -->
46
46
<groupId >io.jenkins.tools.bom</groupId >
47
47
<artifactId >bom-2.426.x</artifactId >
48
- <version >2718.v7e8a_d43b_3f0b_ </version >
48
+ <version >2982.vdce2153031a_0 </version >
49
49
<type >pom</type >
50
50
<scope >import</scope >
51
51
</dependency >
60
60
<dependency >
61
61
<groupId >org.jenkins-ci.plugins</groupId >
62
62
<artifactId >display-url-api</artifactId >
63
- <!-- TODO: Remove once included in BOM -->
64
- <version >2.3.9</version >
65
63
</dependency >
66
64
<dependency >
67
65
<groupId >org.jenkins-ci.plugins</groupId >
Original file line number Diff line number Diff line change 1
- import { ConsoleLogStreamProps } from "./ConsoleLogModal" ;
2
1
import React from "react" ;
3
2
4
3
export type CloseIconProps = {
Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ public class PipelineNodeGraphVisitor extends StandardChunkVisitor {
73
73
74
74
private static final Logger logger = LoggerFactory .getLogger (PipelineNodeGraphVisitor .class );
75
75
76
- private final boolean isNodeVisitorDumpEnabled = logger .isTraceEnabled ();
76
+ private static final boolean isNodeVisitorDumpEnabled = logger .isTraceEnabled ();
77
77
78
78
private final Stack <FlowNode > nestedStages = new Stack <>();
79
79
private final Stack <FlowNode > nestedbranches = new Stack <>();
Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ pipeline {
43
43
}
44
44
stage('Skipped stage') {
45
45
when {
46
- branch 'master '
46
+ branch 'some-pattern '
47
47
}
48
48
steps {
49
49
echo 'This stage will be skipped.'
You can’t perform that action at this time.
0 commit comments