Skip to content

Commit 2f6b050

Browse files
authored
Backport of PCT fixes to 2.426.x line (#395)
1 parent 583d561 commit 2f6b050

File tree

7 files changed

+10
-10
lines changed

7 files changed

+10
-10
lines changed

.github/release-drafter.yml

Lines changed: 0 additions & 1 deletion
This file was deleted.

.github/workflows/cd.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,10 @@ on:
77
types:
88
- completed
99

10+
permissions:
11+
checks: read
12+
contents: write
13+
1014
jobs:
1115
maven-cd:
1216
uses: jenkins-infra/github-reusable-workflows/.github/workflows/maven-cd.yml@v1

.mvn/extensions.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,6 @@
22
<extension>
33
<groupId>io.jenkins.tools.incrementals</groupId>
44
<artifactId>git-changelist-maven-extension</artifactId>
5-
<version>1.4</version>
5+
<version>1.8</version>
66
</extension>
77
</extensions>

pom.xml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<parent>
55
<groupId>org.jenkins-ci.plugins</groupId>
66
<artifactId>plugin</artifactId>
7-
<version>4.72</version>
7+
<version>4.81</version>
88
<relativePath />
99
</parent>
1010

@@ -33,7 +33,7 @@
3333
<changelist>999999-SNAPSHOT</changelist>
3434
<gitHubRepo>jenkinsci/pipeline-graph-view-plugin</gitHubRepo>
3535
<!-- 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>
3737
<node.version>16.18.1</node.version>
3838
<npm.version>8.19.4</npm.version>
3939
<spotless.check.skip>false</spotless.check.skip>
@@ -45,7 +45,7 @@
4545
<!-- Pick up common dependencies for the selected LTS line: https://github.com/jenkinsci/bom#usage -->
4646
<groupId>io.jenkins.tools.bom</groupId>
4747
<artifactId>bom-2.426.x</artifactId>
48-
<version>2718.v7e8a_d43b_3f0b_</version>
48+
<version>2982.vdce2153031a_0</version>
4949
<type>pom</type>
5050
<scope>import</scope>
5151
</dependency>
@@ -60,8 +60,6 @@
6060
<dependency>
6161
<groupId>org.jenkins-ci.plugins</groupId>
6262
<artifactId>display-url-api</artifactId>
63-
<!-- TODO: Remove once included in BOM -->
64-
<version>2.3.9</version>
6563
</dependency>
6664
<dependency>
6765
<groupId>org.jenkins-ci.plugins</groupId>

src/main/frontend/pipeline-console-view/pipeline-console/main/CloseIcon.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import { ConsoleLogStreamProps } from "./ConsoleLogModal";
21
import React from "react";
32

43
export type CloseIconProps = {

src/main/java/io/jenkins/plugins/pipelinegraphview/utils/PipelineNodeGraphVisitor.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ public class PipelineNodeGraphVisitor extends StandardChunkVisitor {
7373

7474
private static final Logger logger = LoggerFactory.getLogger(PipelineNodeGraphVisitor.class);
7575

76-
private final boolean isNodeVisitorDumpEnabled = logger.isTraceEnabled();
76+
private static final boolean isNodeVisitorDumpEnabled = logger.isTraceEnabled();
7777

7878
private final Stack<FlowNode> nestedStages = new Stack<>();
7979
private final Stack<FlowNode> nestedbranches = new Stack<>();

src/test/resources/io/jenkins/plugins/pipelinegraphview/utils/complexParallelSmokes.jenkinsfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ pipeline {
4343
}
4444
stage('Skipped stage') {
4545
when {
46-
branch 'master'
46+
branch 'some-pattern'
4747
}
4848
steps {
4949
echo 'This stage will be skipped.'

0 commit comments

Comments
 (0)