Skip to content

Commit dbefbe0

Browse files
Bump org.jenkins-ci:jenkins from 1.129 to 1.130 (#785)
Signed-off-by: dependabot[bot] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 1088c6d commit dbefbe0

File tree

7 files changed

+3
-17
lines changed

7 files changed

+3
-17
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ THE SOFTWARE.
2828
<parent>
2929
<groupId>org.jenkins-ci</groupId>
3030
<artifactId>jenkins</artifactId>
31-
<version>1.129</version>
31+
<version>1.130</version>
3232
<relativePath />
3333
</parent>
3434

src/main/java/hudson/remoting/Channel.java

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -818,10 +818,6 @@ private ExecutorService createPipeWriterExecutor() {
818818
* This is the lowest layer of abstraction in {@link Channel}.
819819
* {@link Command}s are executed on a remote system in the order they are sent.
820820
*/
821-
@SuppressFBWarnings(
822-
value = "VO_VOLATILE_INCREMENT",
823-
justification =
824-
"The method is synchronized, no other usages. See https://sourceforge.net/p/findbugs/bugs/1032/")
825821
/*package*/ synchronized void send(Command cmd) throws IOException {
826822
if (outClosed != null) {
827823
throw new ChannelClosedException(this, outClosed);
@@ -1165,9 +1161,6 @@ protected V adapt(UserRequest.ResponseToUserRequest<V, T> r) throws ExecutionExc
11651161
* @param e
11661162
* The error that caused the connection to be aborted. Never null.
11671163
*/
1168-
@SuppressFBWarnings(
1169-
value = "ITA_INEFFICIENT_TO_ARRAY",
1170-
justification = "intentionally; race condition on listeners otherwise")
11711164
public void terminate(@NonNull IOException e) {
11721165

11731166
if (e == null) {

src/main/java/hudson/remoting/ClassLoaderHolder.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,7 @@ public void set(@CheckForNull ClassLoader classLoader) {
3333
this.classLoader = classLoader;
3434
}
3535

36+
@SuppressFBWarnings(value = "MC_OVERRIDABLE_METHOD_CALL_IN_READ_OBJECT", justification = "TODO needs triage")
3637
private void readObject(ObjectInputStream ois) throws IOException, ClassNotFoundException {
3738
RemoteClassLoader.IClassLoader proxy = (RemoteClassLoader.IClassLoader) ois.readObject();
3839
classLoader = proxy == null

src/main/java/hudson/remoting/FileSystemJarCache.java

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -86,9 +86,6 @@ protected URL lookInCache(Channel channel, long sum1, long sum2) throws IOExcept
8686
}
8787

8888
@Override
89-
@SuppressFBWarnings(
90-
value = "PATH_TRAVERSAL_IN",
91-
justification = "The file path is a generated value based on server supplied data.")
9289
protected URL retrieve(Channel channel, long sum1, long sum2) throws IOException, InterruptedException {
9390
Checksum expected = new Checksum(sum1, sum2);
9491
File target = map(sum1, sum2);

src/main/java/hudson/remoting/Launcher.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -461,9 +461,6 @@ public static void main(String... args) throws IOException, InterruptedException
461461
}
462462
}
463463

464-
@SuppressFBWarnings(
465-
value = "DM_DEFAULT_ENCODING",
466-
justification = "log file, just like console output, should be in platform default encoding")
467464
public void run() throws CmdLineException, IOException, InterruptedException {
468465
if (showVersion) {
469466
String version = Util.getVersion();
@@ -1099,7 +1096,6 @@ private static void closeWithLogOnly(Closeable stream, String name) {
10991096
}
11001097
}
11011098

1102-
@SuppressFBWarnings(value = "PATH_TRAVERSAL_IN", justification = "Parameter supplied by user / administrator.")
11031099
private Engine createEngine() throws IOException {
11041100
LOGGER.log(Level.INFO, "Setting up agent: {0}", name);
11051101
Engine engine = new Engine(

src/main/java/hudson/remoting/RemoteInputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -182,7 +182,7 @@ public void run() {
182182
}
183183

184184
@SuppressFBWarnings(
185-
value = "DESERIALIZATION_GADGET",
185+
value = {"DESERIALIZATION_GADGET", "MC_OVERRIDABLE_METHOD_CALL_IN_READ_OBJECT"},
186186
justification = "Serializable only over remoting. Class filtering is done through JEP-200.")
187187
private void readObject(ObjectInputStream ois) throws IOException, ClassNotFoundException {
188188
final Channel channel = getChannelForSerialization();

src/main/java/hudson/remoting/URLDeserializationHelper.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
*/
4444
public class URLDeserializationHelper {
4545
// escape hatch for SECURITY-637 to keep legacy behavior
46-
@SuppressFBWarnings(value = "MS_SHOULD_BE_FINAL", justification = "Accessible via System Groovy Scripts")
4746
private static boolean AVOID_URL_WRAPPING =
4847
Boolean.getBoolean(URLDeserializationHelper.class + ".avoidUrlWrapping");
4948

0 commit comments

Comments
 (0)