Skip to content

Commit 522b5d7

Browse files
committed
[maven-release-plugin] prepare for next development iteration
1 parent 319b1f7 commit 522b5d7

16 files changed

+79
-85
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,27 @@
22

33
Changelog of git-changelog-plugin.
44

5+
## 3.45 (2025-03-17)
6+
7+
### Other changes
8+
9+
**Merge pull request #94 from strangelookingnerd/mirgate**
10+
11+
* Require Jenkins 2.479.1 or newer and Jakarta EE 9
12+
13+
[a4848](https://github.com/jenkinsci/git-changelog-plugin/commit/a4848aba31f38b5) Tomas Bjerre *2025-03-17 17:22:38*
14+
15+
**Use Java 17 features and cleanup**
16+
17+
18+
[29186](https://github.com/jenkinsci/git-changelog-plugin/commit/29186d8d520e5df) strangelookingnerd *2025-03-17 10:07:40*
19+
20+
**Require 2.479.1 or newer**
21+
22+
23+
[96d8e](https://github.com/jenkinsci/git-changelog-plugin/commit/96d8ea6109c435e) strangelookingnerd *2025-03-17 10:03:52*
24+
25+
526
## 3.44 (2025-03-16)
627

728
### Dependency updates

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
<groupId>de.wellnerbou.jenkins</groupId>
2323
<artifactId>git-changelog</artifactId>
24-
<version>3.45</version>
24+
<version>3.46-SNAPSHOT</version>
2525
<packaging>hpi</packaging>
2626

2727
<name>Git Changelog</name>
@@ -125,7 +125,7 @@
125125
<connection>scm:git:https://github.com/jenkinsci/${project.artifactId}-plugin.git</connection>
126126
<developerConnection>scm:git:git@github.com:jenkinsci/${project.artifactId}-plugin.git</developerConnection>
127127
<url>git@github.com:jenkinsci/${project.artifactId}-plugin</url>
128-
<tag>git-changelog-3.45</tag>
128+
<tag>git-changelog-3.44</tag>
129129
</scm>
130130

131131
<repositories>

src/main/java/org/jenkinsci/plugins/gitchangelog/config/CustomIssue.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55
import org.kohsuke.stapler.DataBoundConstructor;
66

77
public class CustomIssue implements Serializable {
8-
@Serial
9-
private static final long serialVersionUID = -6202256680695752956L;
8+
@Serial private static final long serialVersionUID = -6202256680695752956L;
109
private String link;
1110
private String name;
1211
private String pattern;

src/main/java/org/jenkinsci/plugins/gitchangelog/config/GitChangelogConfig.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,7 @@
99

1010
public class GitChangelogConfig implements Serializable {
1111

12-
@Serial
13-
private static final long serialVersionUID = -6715117454282183133L;
12+
@Serial private static final long serialVersionUID = -6715117454282183133L;
1413
private String configFile;
1514
private String createFileTemplateContent;
1615
private String createFileTemplateFile;

src/main/java/org/jenkinsci/plugins/gitchangelog/perform/RemoteCallable.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,7 @@
2929
public class RemoteCallable extends MasterToSlaveCallable<RemoteResult, IOException>
3030
implements Serializable {
3131

32-
@Serial
33-
private static final long serialVersionUID = -2489061314794088231L;
32+
@Serial private static final long serialVersionUID = -2489061314794088231L;
3433
private final GitChangelogConfig config;
3534
private String path = "";
3635

src/main/java/org/jenkinsci/plugins/gitchangelog/perform/RemoteResult.java

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,7 @@
55

66
public class RemoteResult implements Serializable {
77

8-
@Serial
9-
private static final long serialVersionUID = 8363216067945804103L;
8+
@Serial private static final long serialVersionUID = 8363216067945804103L;
109
private String leftSideTitle;
1110
private String leftSideUrl;
1211
private String log;

src/main/java/org/jenkinsci/plugins/gitchangelog/steps/GetHighestSemanticVersionStep.java

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@
2626

2727
public class GetHighestSemanticVersionStep extends Step implements Serializable {
2828

29-
@Serial
30-
private static final long serialVersionUID = 795555442767777209L;
29+
@Serial private static final long serialVersionUID = 795555442767777209L;
3130
private String repo;
3231

3332
private RefConfig from;
@@ -85,26 +84,24 @@ public DescriptorImpl() {
8584
public StepExecution start(final StepContext context) {
8685
return new SynchronousNonBlockingStepExecution<>(context) {
8786

88-
@Serial
89-
private static final long serialVersionUID = 1L;
87+
@Serial private static final long serialVersionUID = 1L;
9088

91-
@Override
92-
protected Object run() throws Exception {
93-
final FilePath workspace = context.get(FilePath.class);
89+
@Override
90+
protected Object run() throws Exception {
91+
final FilePath workspace = context.get(FilePath.class);
9492

95-
final MasterToSlaveCallable<Object, Exception> callable =
96-
new MasterToSlaveCallable<>() {
97-
@Serial
98-
private static final long serialVersionUID = 1L;
93+
final MasterToSlaveCallable<Object, Exception> callable =
94+
new MasterToSlaveCallable<>() {
95+
@Serial private static final long serialVersionUID = 1L;
9996

100-
@Override
101-
public Object call() throws Exception {
102-
return GetHighestSemanticVersionStep.this.perform(workspace);
103-
}
104-
};
97+
@Override
98+
public Object call() throws Exception {
99+
return GetHighestSemanticVersionStep.this.perform(workspace);
100+
}
101+
};
105102

106-
return workspace.act(callable);
107-
}
103+
return workspace.act(callable);
104+
}
108105
};
109106
}
110107

src/main/java/org/jenkinsci/plugins/gitchangelog/steps/GetNextSemanticVersionStep.java

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,7 @@
2626

2727
public class GetNextSemanticVersionStep extends Step implements Serializable {
2828

29-
@Serial
30-
private static final long serialVersionUID = 795555442767777209L;
29+
@Serial private static final long serialVersionUID = 795555442767777209L;
3130
private String repo;
3231

3332
private RefConfig from;
@@ -116,26 +115,24 @@ public DescriptorImpl() {
116115
public StepExecution start(final StepContext context) {
117116
return new SynchronousNonBlockingStepExecution<>(context) {
118117

119-
@Serial
120-
private static final long serialVersionUID = 1L;
118+
@Serial private static final long serialVersionUID = 1L;
121119

122-
@Override
123-
protected Object run() throws Exception {
124-
final FilePath workspace = context.get(FilePath.class);
120+
@Override
121+
protected Object run() throws Exception {
122+
final FilePath workspace = context.get(FilePath.class);
125123

126-
final MasterToSlaveCallable<Object, Exception> callable =
127-
new MasterToSlaveCallable<>() {
128-
@Serial
129-
private static final long serialVersionUID = 1L;
124+
final MasterToSlaveCallable<Object, Exception> callable =
125+
new MasterToSlaveCallable<>() {
126+
@Serial private static final long serialVersionUID = 1L;
130127

131-
@Override
132-
public Object call() throws Exception {
133-
return GetNextSemanticVersionStep.this.perform(workspace);
134-
}
135-
};
128+
@Override
129+
public Object call() throws Exception {
130+
return GetNextSemanticVersionStep.this.perform(workspace);
131+
}
132+
};
136133

137-
return workspace.act(callable);
138-
}
134+
return workspace.act(callable);
135+
}
139136
};
140137
}
141138

src/main/java/org/jenkinsci/plugins/gitchangelog/steps/GitChangelogStep.java

Lines changed: 15 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,7 @@
4646

4747
public class GitChangelogStep extends Step implements Serializable {
4848

49-
@Serial
50-
private static final long serialVersionUID = 795555442767777209L;
49+
@Serial private static final long serialVersionUID = 795555442767777209L;
5150
private RETURN_TYPE returnType;
5251
private String template;
5352

@@ -340,26 +339,24 @@ public ListBoxModel doFillReturnTypeItems() {
340339
public StepExecution start(final StepContext context) {
341340
return new SynchronousNonBlockingStepExecution<>(context) {
342341

343-
@Serial
344-
private static final long serialVersionUID = 1L;
342+
@Serial private static final long serialVersionUID = 1L;
345343

346-
@Override
347-
protected Object run() throws Exception {
348-
final FilePath workspace = context.get(FilePath.class);
344+
@Override
345+
protected Object run() throws Exception {
346+
final FilePath workspace = context.get(FilePath.class);
349347

350-
final MasterToSlaveCallable<Object, Exception> callable =
351-
new MasterToSlaveCallable<>() {
352-
@Serial
353-
private static final long serialVersionUID = 1L;
348+
final MasterToSlaveCallable<Object, Exception> callable =
349+
new MasterToSlaveCallable<>() {
350+
@Serial private static final long serialVersionUID = 1L;
354351

355-
@Override
356-
public Object call() throws Exception {
357-
return GitChangelogStep.this.perform(workspace);
358-
}
359-
};
352+
@Override
353+
public Object call() throws Exception {
354+
return GitChangelogStep.this.perform(workspace);
355+
}
356+
};
360357

361-
return workspace.act(callable);
362-
}
358+
return workspace.act(callable);
359+
}
363360
};
364361
}
365362

src/main/java/org/jenkinsci/plugins/gitchangelog/steps/config/CustomIssueConfig.java

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,16 +4,14 @@
44
import hudson.Extension;
55
import hudson.model.AbstractDescribableImpl;
66
import hudson.model.Descriptor;
7-
87
import java.io.Serial;
98
import java.io.Serializable;
109
import org.kohsuke.stapler.DataBoundConstructor;
1110
import org.kohsuke.stapler.DataBoundSetter;
1211

1312
public class CustomIssueConfig extends AbstractDescribableImpl<CustomIssueConfig>
1413
implements Serializable {
15-
@Serial
16-
private static final long serialVersionUID = 8842918044772949798L;
14+
@Serial private static final long serialVersionUID = 8842918044772949798L;
1715
private final String name;
1816
private final String issuePattern;
1917
private String title;

0 commit comments

Comments
 (0)