From bfb4b8dcc4fe1a70390b89e9830b6216c8b8e172 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 21:34:49 +0000 Subject: [PATCH 001/131] Bump org.slf4j:slf4j-api from 2.0.15 to 2.0.16 Bumps org.slf4j:slf4j-api from 2.0.15 to 2.0.16. --- updated-dependencies: - dependency-name: org.slf4j:slf4j-api dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index ca33af9cc8..53d0f403d9 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -112,7 +112,7 @@ org.slf4j slf4j-api - 2.0.15 + 2.0.16 org.swinglabs.swingx From 443c9f38479d88ed07474d8d5caca81d70583cc1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 21:34:57 +0000 Subject: [PATCH 002/131] Bump org.codehaus.mojo:exec-maven-plugin from 3.4.0 to 3.4.1 Bumps [org.codehaus.mojo:exec-maven-plugin](https://github.com/mojohaus/exec-maven-plugin) from 3.4.0 to 3.4.1. - [Release notes](https://github.com/mojohaus/exec-maven-plugin/releases) - [Commits](https://github.com/mojohaus/exec-maven-plugin/compare/3.4.0...3.4.1) --- updated-dependencies: - dependency-name: org.codehaus.mojo:exec-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d5f41848a0..47063442e1 100644 --- a/pom.xml +++ b/pom.xml @@ -138,7 +138,7 @@ org.codehaus.mojo exec-maven-plugin - 3.4.0 + 3.4.1 org.codehaus.mojo From da5ef12ded297c9532d6075e2128a05cf9a9401e Mon Sep 17 00:00:00 2001 From: Joel Uckelman Date: Tue, 13 Aug 2024 21:02:17 +0100 Subject: [PATCH 003/131] Saved games should be added to Open Recent list on save. --- vassal-app/src/main/java/VASSAL/build/module/GameState.java | 1 + 1 file changed, 1 insertion(+) diff --git a/vassal-app/src/main/java/VASSAL/build/module/GameState.java b/vassal-app/src/main/java/VASSAL/build/module/GameState.java index 50589a01f8..67f56acf12 100644 --- a/vassal-app/src/main/java/VASSAL/build/module/GameState.java +++ b/vassal-app/src/main/java/VASSAL/build/module/GameState.java @@ -1406,6 +1406,7 @@ public void saveGame(File f) throws IOException { } GameModule.getGameModule().warn(msg); ModuleManagerUpdateHelper.sendGameUpdate(f); + updateRecentGames(f); } public void loadGameInForeground(final File f) { From e26e1884e61e717c5037a60cd790e60e0ea69fee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Aug 2024 21:48:18 +0000 Subject: [PATCH 004/131] Bump org.junit:junit-bom from 5.10.3 to 5.11.0 Bumps [org.junit:junit-bom](https://github.com/junit-team/junit5) from 5.10.3 to 5.11.0. - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.10.3...r5.11.0) --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index ca33af9cc8..a62ce74c63 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -26,7 +26,7 @@ org.junit junit-bom - 5.10.3 + 5.11.0 pom import From 74da7fde320cb42d596091439b7b4367e9a6f6f5 Mon Sep 17 00:00:00 2001 From: Brent <90901032@westernsydney.edu.au> Date: Thu, 15 Aug 2024 08:07:12 +1000 Subject: [PATCH 005/131] 13509 - Prevent NoSuchMethod exception opening Scenario Options in Editor --- .../build/module/properties/ScenarioPropertiesOptionTab.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vassal-app/src/main/java/VASSAL/build/module/properties/ScenarioPropertiesOptionTab.java b/vassal-app/src/main/java/VASSAL/build/module/properties/ScenarioPropertiesOptionTab.java index c5007aa3cb..51bef07791 100644 --- a/vassal-app/src/main/java/VASSAL/build/module/properties/ScenarioPropertiesOptionTab.java +++ b/vassal-app/src/main/java/VASSAL/build/module/properties/ScenarioPropertiesOptionTab.java @@ -691,7 +691,7 @@ public void setEnabled(boolean enabled) { } } - private static class AlignConfig implements ConfigurerFactory { + public static class AlignConfig implements ConfigurerFactory { @Override public Configurer getConfigurer(AutoConfigurable c, String key, String name) { return new TranslatingStringEnumConfigurer(key, name, @@ -700,7 +700,7 @@ public Configurer getConfigurer(AutoConfigurable c, String key, String name) { } } - private static class TextConfig implements ConfigurerFactory { + public static class TextConfig implements ConfigurerFactory { @Override public Configurer getConfigurer(AutoConfigurable c, String key, String name) { final TextConfigurer t = new TextConfigurer(key, name); From adf1de122834ce91bf38c443358834a414c32e35 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 Aug 2024 21:36:25 +0000 Subject: [PATCH 006/131] Bump ch.qos.logback:logback-classic from 1.5.6 to 1.5.7 Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from 1.5.6 to 1.5.7. - [Commits](https://github.com/qos-ch/logback/compare/v_1.5.6...v_1.5.7) --- updated-dependencies: - dependency-name: ch.qos.logback:logback-classic dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index ca33af9cc8..0004e072ad 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -37,7 +37,7 @@ ch.qos.logback logback-classic - 1.5.6 + 1.5.7 com.miglayout From 3e1e8cb07efae1a303c5f34048293f15a82546f7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 21:34:49 +0000 Subject: [PATCH 007/131] Bump org.slf4j:slf4j-api from 2.0.15 to 2.0.16 Bumps org.slf4j:slf4j-api from 2.0.15 to 2.0.16. --- updated-dependencies: - dependency-name: org.slf4j:slf4j-api dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index b598e8d40c..26577ae424 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -112,7 +112,7 @@ org.slf4j slf4j-api - 2.0.15 + 2.0.16 org.swinglabs.swingx From 5f987129da7a1b46d3b9da104176faf90391aead Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 14 Aug 2024 21:48:18 +0000 Subject: [PATCH 008/131] Bump org.junit:junit-bom from 5.10.3 to 5.11.0 Bumps [org.junit:junit-bom](https://github.com/junit-team/junit5) from 5.10.3 to 5.11.0. - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.10.3...r5.11.0) --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 26577ae424..5a1a9d3d4c 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -26,7 +26,7 @@ org.junit junit-bom - 5.10.3 + 5.11.0 pom import From c392697a5a6c9429d0788246fac55b4a6d8c021c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 15 Aug 2024 21:36:25 +0000 Subject: [PATCH 009/131] Bump ch.qos.logback:logback-classic from 1.5.6 to 1.5.7 Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from 1.5.6 to 1.5.7. - [Commits](https://github.com/qos-ch/logback/compare/v_1.5.6...v_1.5.7) --- updated-dependencies: - dependency-name: ch.qos.logback:logback-classic dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 5a1a9d3d4c..cb0373973b 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -37,7 +37,7 @@ ch.qos.logback logback-classic - 1.5.6 + 1.5.7 com.miglayout From 6e913ec707b3e8389d4aac0f0b3b5d6eec7dd3e3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Aug 2024 21:34:57 +0000 Subject: [PATCH 010/131] Bump org.codehaus.mojo:exec-maven-plugin from 3.4.0 to 3.4.1 Bumps [org.codehaus.mojo:exec-maven-plugin](https://github.com/mojohaus/exec-maven-plugin) from 3.4.0 to 3.4.1. - [Release notes](https://github.com/mojohaus/exec-maven-plugin/releases) - [Commits](https://github.com/mojohaus/exec-maven-plugin/compare/3.4.0...3.4.1) --- updated-dependencies: - dependency-name: org.codehaus.mojo:exec-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 52318d69c5..bcca9fdc3b 100644 --- a/pom.xml +++ b/pom.xml @@ -138,7 +138,7 @@ org.codehaus.mojo exec-maven-plugin - 3.4.0 + 3.4.1 org.codehaus.mojo From b1ffc271b5780a7c3bd159ebd5acd8d28b7c07cb Mon Sep 17 00:00:00 2001 From: Joel Uckelman Date: Fri, 16 Aug 2024 14:44:46 +0100 Subject: [PATCH 011/131] Updated change log. --- CHANGES | 1 + dist/notes/data.json | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index b4325917ee..bab932f7ab 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,6 @@ 3.7.14 - ??? +* 13530: Add saved games to Open Recent list on save * 13497: Report HTML load errors as Bad Module Data, not Vassal bugs 3.7.13 - 25 July 2024 diff --git a/dist/notes/data.json b/dist/notes/data.json index 0e4e6be3a9..3dede5d9ca 100644 --- a/dist/notes/data.json +++ b/dist/notes/data.json @@ -21,6 +21,7 @@ "new_features": [ ], "bug_fixes": [ + { "num": 13530, "desc": "Add saved games to Open Recent list on save" } ], "other_improvements": [ { "num": 13497, "desc": "Report HTML load errors as Bad Module Data, not Vassal bugs" } From 204a66251a490c800a5906b2ecb494b31b7d7f9f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 Aug 2024 21:29:08 +0000 Subject: [PATCH 012/131] Bump net.bytebuddy:byte-buddy from 1.14.18 to 1.14.19 Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.14.18 to 1.14.19. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.14.18...byte-buddy-1.14.19) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 959b1b9a8e..b58be4858f 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -192,7 +192,7 @@ net.bytebuddy byte-buddy - 1.14.18 + 1.14.19 test From 0a0697a4727228973c4ba29abb02f88fc7c02638 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 16 Aug 2024 21:29:08 +0000 Subject: [PATCH 013/131] Bump net.bytebuddy:byte-buddy from 1.14.18 to 1.14.19 Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.14.18 to 1.14.19. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.14.18...byte-buddy-1.14.19) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index cb0373973b..3e3e54020d 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -192,7 +192,7 @@ net.bytebuddy byte-buddy - 1.14.18 + 1.14.19 test From fa060943227257c2fb6fd9717a386c1e0d4e1a8e Mon Sep 17 00:00:00 2001 From: Joel Uckelman Date: Sun, 18 Aug 2024 12:23:32 +0100 Subject: [PATCH 014/131] Updated change log. --- CHANGES | 1 + dist/notes/data.json | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index bab932f7ab..cd1696c6a4 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,7 @@ 3.7.14 - ??? * 13530: Add saved games to Open Recent list on save +* 13509: Prevent NoSuchMethod exception when opening Scenario Options in Editor * 13497: Report HTML load errors as Bad Module Data, not Vassal bugs 3.7.13 - 25 July 2024 diff --git a/dist/notes/data.json b/dist/notes/data.json index 3dede5d9ca..f64355a4c5 100644 --- a/dist/notes/data.json +++ b/dist/notes/data.json @@ -21,7 +21,8 @@ "new_features": [ ], "bug_fixes": [ - { "num": 13530, "desc": "Add saved games to Open Recent list on save" } + { "num": 13530, "desc": "Add saved games to Open Recent list on save" }, + { "num": 13509, "desc": "Prevent NoSuchMethod exception when opening Scenario Options in Editor" } ], "other_improvements": [ { "num": 13497, "desc": "Report HTML load errors as Bad Module Data, not Vassal bugs" } From 9152f2cf1f018452d96a19a07cd487490ce9c26f Mon Sep 17 00:00:00 2001 From: Joel Uckelman Date: Sun, 18 Aug 2024 12:28:55 +0100 Subject: [PATCH 015/131] Updated for 3.7.14 release. --- CHANGES | 2 +- Makefile | 4 ++-- pom.xml | 2 +- release-prepare/pom.xml | 2 +- vassal-app/pom.xml | 2 +- vassal-deprecation/pom.xml | 2 +- vassal-doc/pom.xml | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGES b/CHANGES index cd1696c6a4..68fe2e1f31 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,4 @@ -3.7.14 - ??? +3.7.14 - 18 August 2024 * 13530: Add saved games to Open Recent list on save * 13509: Prevent NoSuchMethod exception when opening Scenario Options in Editor diff --git a/Makefile b/Makefile index a74790b0b2..614b272f94 100644 --- a/Makefile +++ b/Makefile @@ -51,9 +51,9 @@ VNUM:=3.7.14 # major-minor part of the version V_MAJ_MIN:=$(shell echo "$(VNUM)" | cut -f1,2 -d'.') -MAVEN_VERSION:=$(VNUM)-SNAPSHOT +#MAVEN_VERSION:=$(VNUM)-SNAPSHOT #MAVEN_VERSION:=$(VNUM)-beta5 -#MAVEN_VERSION:=$(VNUM) +MAVEN_VERSION:=$(VNUM) JARNAME:=vassal-app-$(MAVEN_VERSION) diff --git a/pom.xml b/pom.xml index bcca9fdc3b..a634c83b4f 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.vassalengine vassal-parent - 3.7.14-SNAPSHOT + 3.7.14 pom Vassal Engine diff --git a/release-prepare/pom.xml b/release-prepare/pom.xml index 384cd17158..8c35b39887 100644 --- a/release-prepare/pom.xml +++ b/release-prepare/pom.xml @@ -5,7 +5,7 @@ org.vassalengine vassal-parent - 3.7.14-SNAPSHOT + 3.7.14 release-prepare diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 3e3e54020d..6c00384186 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -6,7 +6,7 @@ org.vassalengine vassal-parent - 3.7.14-SNAPSHOT + 3.7.14 vassal-app diff --git a/vassal-deprecation/pom.xml b/vassal-deprecation/pom.xml index 14647b6389..f9e5e43dbb 100644 --- a/vassal-deprecation/pom.xml +++ b/vassal-deprecation/pom.xml @@ -5,7 +5,7 @@ org.vassalengine vassal-parent - 3.7.14-SNAPSHOT + 3.7.14 vassal-deprecation diff --git a/vassal-doc/pom.xml b/vassal-doc/pom.xml index 534f40ae62..2a5d5ffbf5 100644 --- a/vassal-doc/pom.xml +++ b/vassal-doc/pom.xml @@ -5,7 +5,7 @@ org.vassalengine vassal-parent - 3.7.14-SNAPSHOT + 3.7.14 vassal-doc From 6539b2e2f7b44baa0d1403ced236cb3650d6aff5 Mon Sep 17 00:00:00 2001 From: Joel Uckelman Date: Sun, 18 Aug 2024 21:12:09 +0100 Subject: [PATCH 016/131] Updated for 3.7.15 development. --- CHANGES | 2 ++ Makefile | 6 +++--- dist/notes/data.json | 10 ++++++++++ pom.xml | 2 +- release-prepare/pom.xml | 2 +- vassal-app/pom.xml | 2 +- vassal-deprecation/pom.xml | 2 +- vassal-doc/pom.xml | 2 +- 8 files changed, 20 insertions(+), 8 deletions(-) diff --git a/CHANGES b/CHANGES index 68fe2e1f31..8128dcb70c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,5 @@ +3.7.15 - ??? + 3.7.14 - 18 August 2024 * 13530: Add saved games to Open Recent list on save diff --git a/Makefile b/Makefile index 614b272f94..0190c6351f 100644 --- a/Makefile +++ b/Makefile @@ -47,13 +47,13 @@ JDKDIR:=$(DISTDIR)/jdks JDOCDIR:=jdoc # numeric part of the version only -VNUM:=3.7.14 +VNUM:=3.7.15 # major-minor part of the version V_MAJ_MIN:=$(shell echo "$(VNUM)" | cut -f1,2 -d'.') -#MAVEN_VERSION:=$(VNUM)-SNAPSHOT +MAVEN_VERSION:=$(VNUM)-SNAPSHOT #MAVEN_VERSION:=$(VNUM)-beta5 -MAVEN_VERSION:=$(VNUM) +#MAVEN_VERSION:=$(VNUM) JARNAME:=vassal-app-$(MAVEN_VERSION) diff --git a/dist/notes/data.json b/dist/notes/data.json index f64355a4c5..261ca0ae35 100644 --- a/dist/notes/data.json +++ b/dist/notes/data.json @@ -15,6 +15,16 @@ { "display_name": "Other", "suffix": "other.zip" } ], "changes": [ + { + "in": "3.7.15", + "since": "3.7.14", + "new_features": [ + ], + "bug_fixes": [ + ], + "other_improvements": [ + ] + }, { "in": "3.7.14", "since": "3.7.13", diff --git a/pom.xml b/pom.xml index a634c83b4f..b6942c339b 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.vassalengine vassal-parent - 3.7.14 + 3.7.15-SNAPSHOT pom Vassal Engine diff --git a/release-prepare/pom.xml b/release-prepare/pom.xml index 8c35b39887..5cec9fb3aa 100644 --- a/release-prepare/pom.xml +++ b/release-prepare/pom.xml @@ -5,7 +5,7 @@ org.vassalengine vassal-parent - 3.7.14 + 3.7.15-SNAPSHOT release-prepare diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 6c00384186..2a89166051 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -6,7 +6,7 @@ org.vassalengine vassal-parent - 3.7.14 + 3.7.15-SNAPSHOT vassal-app diff --git a/vassal-deprecation/pom.xml b/vassal-deprecation/pom.xml index f9e5e43dbb..cdc063ae76 100644 --- a/vassal-deprecation/pom.xml +++ b/vassal-deprecation/pom.xml @@ -5,7 +5,7 @@ org.vassalengine vassal-parent - 3.7.14 + 3.7.15-SNAPSHOT vassal-deprecation diff --git a/vassal-doc/pom.xml b/vassal-doc/pom.xml index 2a5d5ffbf5..3ef5b43fab 100644 --- a/vassal-doc/pom.xml +++ b/vassal-doc/pom.xml @@ -5,7 +5,7 @@ org.vassalengine vassal-parent - 3.7.14 + 3.7.15-SNAPSHOT vassal-doc From 8757d637e887cb884dbabedb772bcab40ed58939 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Aug 2024 21:26:19 +0000 Subject: [PATCH 017/131] Bump org.apache.maven:maven-artifact from 3.9.8 to 3.9.9 Bumps [org.apache.maven:maven-artifact](https://github.com/apache/maven) from 3.9.8 to 3.9.9. - [Release notes](https://github.com/apache/maven/releases) - [Commits](https://github.com/apache/maven/compare/maven-3.9.8...maven-3.9.9) --- updated-dependencies: - dependency-name: org.apache.maven:maven-artifact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index b58be4858f..c85c901896 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -132,7 +132,7 @@ org.apache.maven maven-artifact - 3.9.8 + 3.9.9 org.ow2.asm From bc6cec8ba1c2bb5ae6ba613e8fb7d5be49eaacc0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Aug 2024 21:26:24 +0000 Subject: [PATCH 018/131] Bump org.apache.maven.plugins:maven-site-plugin from 3.12.1 to 3.20.0 Bumps [org.apache.maven.plugins:maven-site-plugin](https://github.com/apache/maven-site-plugin) from 3.12.1 to 3.20.0. - [Release notes](https://github.com/apache/maven-site-plugin/releases) - [Commits](https://github.com/apache/maven-site-plugin/compare/maven-site-plugin-3.12.1...maven-site-plugin-3.20.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-site-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 47063442e1..6dd3b76250 100644 --- a/pom.xml +++ b/pom.xml @@ -87,7 +87,7 @@ maven-site-plugin - 3.12.1 + 3.20.0 maven-deploy-plugin From aa4ad8ce6e021986b2cd9c7a78ccf9a11f4ec152 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Aug 2024 21:26:41 +0000 Subject: [PATCH 019/131] Bump org.apache.maven.plugins:maven-install-plugin from 3.1.2 to 3.1.3 Bumps [org.apache.maven.plugins:maven-install-plugin](https://github.com/apache/maven-install-plugin) from 3.1.2 to 3.1.3. - [Release notes](https://github.com/apache/maven-install-plugin/releases) - [Commits](https://github.com/apache/maven-install-plugin/compare/maven-install-plugin-3.1.2...maven-install-plugin-3.1.3) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-install-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 47063442e1..c22e487fb2 100644 --- a/pom.xml +++ b/pom.xml @@ -83,7 +83,7 @@ maven-install-plugin - 3.1.2 + 3.1.3 maven-site-plugin From e7649b09c59bb106569768bdbbfa6aa3c271c52f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Aug 2024 21:26:46 +0000 Subject: [PATCH 020/131] Bump org.apache.maven.plugins:maven-surefire-plugin from 3.3.1 to 3.4.0 Bumps [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) from 3.3.1 to 3.4.0. - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.3.1...surefire-3.4.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-surefire-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 47063442e1..3330a068c7 100644 --- a/pom.xml +++ b/pom.xml @@ -75,7 +75,7 @@ maven-surefire-plugin - 3.3.1 + 3.4.0 maven-resources-plugin From bf229b5dcb4b57942396203e1b7865474d3b617a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Aug 2024 21:26:19 +0000 Subject: [PATCH 021/131] Bump org.apache.maven:maven-artifact from 3.9.8 to 3.9.9 Bumps [org.apache.maven:maven-artifact](https://github.com/apache/maven) from 3.9.8 to 3.9.9. - [Release notes](https://github.com/apache/maven/releases) - [Commits](https://github.com/apache/maven/compare/maven-3.9.8...maven-3.9.9) --- updated-dependencies: - dependency-name: org.apache.maven:maven-artifact dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 2a89166051..48fb245b4e 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -132,7 +132,7 @@ org.apache.maven maven-artifact - 3.9.8 + 3.9.9 org.ow2.asm From 1a0efb6a74e43bebd2588cb347bb773d3467576b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Aug 2024 21:26:24 +0000 Subject: [PATCH 022/131] Bump org.apache.maven.plugins:maven-site-plugin from 3.12.1 to 3.20.0 Bumps [org.apache.maven.plugins:maven-site-plugin](https://github.com/apache/maven-site-plugin) from 3.12.1 to 3.20.0. - [Release notes](https://github.com/apache/maven-site-plugin/releases) - [Commits](https://github.com/apache/maven-site-plugin/compare/maven-site-plugin-3.12.1...maven-site-plugin-3.20.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-site-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b6942c339b..3412a75c29 100644 --- a/pom.xml +++ b/pom.xml @@ -87,7 +87,7 @@ maven-site-plugin - 3.12.1 + 3.20.0 maven-deploy-plugin From 5fb2b4a879a7ae4f40fa94b4f11dd22e260a99f6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Aug 2024 21:26:41 +0000 Subject: [PATCH 023/131] Bump org.apache.maven.plugins:maven-install-plugin from 3.1.2 to 3.1.3 Bumps [org.apache.maven.plugins:maven-install-plugin](https://github.com/apache/maven-install-plugin) from 3.1.2 to 3.1.3. - [Release notes](https://github.com/apache/maven-install-plugin/releases) - [Commits](https://github.com/apache/maven-install-plugin/compare/maven-install-plugin-3.1.2...maven-install-plugin-3.1.3) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-install-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 3412a75c29..86af331cf0 100644 --- a/pom.xml +++ b/pom.xml @@ -83,7 +83,7 @@ maven-install-plugin - 3.1.2 + 3.1.3 maven-site-plugin From fc3edf3a35181293d9414f37bba8de928cceaabd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 19 Aug 2024 21:26:46 +0000 Subject: [PATCH 024/131] Bump org.apache.maven.plugins:maven-surefire-plugin from 3.3.1 to 3.4.0 Bumps [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) from 3.3.1 to 3.4.0. - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.3.1...surefire-3.4.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-surefire-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 86af331cf0..76feb804fa 100644 --- a/pom.xml +++ b/pom.xml @@ -75,7 +75,7 @@ maven-surefire-plugin - 3.3.1 + 3.4.0 maven-resources-plugin From bbaa92beac92fbf09b17bcde1893087388968634 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 Aug 2024 21:42:06 +0000 Subject: [PATCH 025/131] Bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.2 to 3.1.3 Bumps [org.apache.maven.plugins:maven-deploy-plugin](https://github.com/apache/maven-deploy-plugin) from 3.1.2 to 3.1.3. - [Release notes](https://github.com/apache/maven-deploy-plugin/releases) - [Commits](https://github.com/apache/maven-deploy-plugin/compare/maven-deploy-plugin-3.1.2...maven-deploy-plugin-3.1.3) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-deploy-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 00c518a6f3..10911fe7c6 100644 --- a/pom.xml +++ b/pom.xml @@ -91,7 +91,7 @@ maven-deploy-plugin - 3.1.2 + 3.1.3 maven-checkstyle-plugin From 2bd52c57a38e1dc6ebd5e02a668a756b9cc98fb7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 Aug 2024 21:42:06 +0000 Subject: [PATCH 026/131] Bump org.apache.maven.plugins:maven-deploy-plugin from 3.1.2 to 3.1.3 Bumps [org.apache.maven.plugins:maven-deploy-plugin](https://github.com/apache/maven-deploy-plugin) from 3.1.2 to 3.1.3. - [Release notes](https://github.com/apache/maven-deploy-plugin/releases) - [Commits](https://github.com/apache/maven-deploy-plugin/compare/maven-deploy-plugin-3.1.2...maven-deploy-plugin-3.1.3) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-deploy-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 76feb804fa..99d4e14172 100644 --- a/pom.xml +++ b/pom.xml @@ -91,7 +91,7 @@ maven-deploy-plugin - 3.1.2 + 3.1.3 maven-checkstyle-plugin From 73159e0d717c854442f4f6a682ebd4e3dac2b218 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 21 Aug 2024 21:36:37 +0000 Subject: [PATCH 027/131] Bump org.apache.maven.plugins:maven-dependency-plugin Bumps [org.apache.maven.plugins:maven-dependency-plugin](https://github.com/apache/maven-dependency-plugin) from 3.7.1 to 3.8.0. - [Release notes](https://github.com/apache/maven-dependency-plugin/releases) - [Commits](https://github.com/apache/maven-dependency-plugin/compare/maven-dependency-plugin-3.7.1...maven-dependency-plugin-3.8.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-dependency-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 10911fe7c6..7fa6415633 100644 --- a/pom.xml +++ b/pom.xml @@ -106,7 +106,7 @@ maven-dependency-plugin - 3.7.1 + 3.8.0 maven-jar-plugin From 439236ccdee58fe91b0b9bbea806cde0a235000b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Aug 2024 21:21:04 +0000 Subject: [PATCH 028/131] Bump org.apache.maven.plugins:maven-checkstyle-plugin Bumps [org.apache.maven.plugins:maven-checkstyle-plugin](https://github.com/apache/maven-checkstyle-plugin) from 3.4.0 to 3.5.0. - [Commits](https://github.com/apache/maven-checkstyle-plugin/compare/maven-checkstyle-plugin-3.4.0...maven-checkstyle-plugin-3.5.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-checkstyle-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 10911fe7c6..9247dfc7f9 100644 --- a/pom.xml +++ b/pom.xml @@ -95,7 +95,7 @@ maven-checkstyle-plugin - 3.4.0 + 3.5.0 com.puppycrawl.tools From f86ac6db567b14a9af470a80c63fe65bd73413b9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 29 Aug 2024 21:03:41 +0000 Subject: [PATCH 029/131] Bump net.bytebuddy:byte-buddy from 1.14.19 to 1.15.1 Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.14.19 to 1.15.1. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.14.19...byte-buddy-1.15.1) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index c85c901896..38382f9e9b 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -192,7 +192,7 @@ net.bytebuddy byte-buddy - 1.14.19 + 1.15.1 test From 35a48e21a2f2ec59dbc2aeaa5aaee712c00a7bb8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 21:05:43 +0000 Subject: [PATCH 030/131] Bump com.puppycrawl.tools:checkstyle from 10.17.0 to 10.18.1 Bumps [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) from 10.17.0 to 10.18.1. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-10.17.0...checkstyle-10.18.1) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 10911fe7c6..985eba6671 100644 --- a/pom.xml +++ b/pom.xml @@ -100,7 +100,7 @@ com.puppycrawl.tools checkstyle - 10.17.0 + 10.18.1 From 68ba4b274ecbf8609df09e20e0c5edc5f20c0b5f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 21 Aug 2024 21:36:37 +0000 Subject: [PATCH 031/131] Bump org.apache.maven.plugins:maven-dependency-plugin Bumps [org.apache.maven.plugins:maven-dependency-plugin](https://github.com/apache/maven-dependency-plugin) from 3.7.1 to 3.8.0. - [Release notes](https://github.com/apache/maven-dependency-plugin/releases) - [Commits](https://github.com/apache/maven-dependency-plugin/compare/maven-dependency-plugin-3.7.1...maven-dependency-plugin-3.8.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-dependency-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 99d4e14172..d990db367c 100644 --- a/pom.xml +++ b/pom.xml @@ -106,7 +106,7 @@ maven-dependency-plugin - 3.7.1 + 3.8.0 maven-jar-plugin From dd7fff53da741a3d1b9b331500337d32b396df82 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 22 Aug 2024 21:21:04 +0000 Subject: [PATCH 032/131] Bump org.apache.maven.plugins:maven-checkstyle-plugin Bumps [org.apache.maven.plugins:maven-checkstyle-plugin](https://github.com/apache/maven-checkstyle-plugin) from 3.4.0 to 3.5.0. - [Commits](https://github.com/apache/maven-checkstyle-plugin/compare/maven-checkstyle-plugin-3.4.0...maven-checkstyle-plugin-3.5.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-checkstyle-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d990db367c..35ae7d1a20 100644 --- a/pom.xml +++ b/pom.xml @@ -95,7 +95,7 @@ maven-checkstyle-plugin - 3.4.0 + 3.5.0 com.puppycrawl.tools From 3199f95e00f2d6bff53077679512733852100693 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 29 Aug 2024 21:03:41 +0000 Subject: [PATCH 033/131] Bump net.bytebuddy:byte-buddy from 1.14.19 to 1.15.1 Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.14.19 to 1.15.1. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.14.19...byte-buddy-1.15.1) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 48fb245b4e..0361eac0ef 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -192,7 +192,7 @@ net.bytebuddy byte-buddy - 1.14.19 + 1.15.1 test From e21751e5690919a8ae3f189fb7194e721651e873 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 30 Aug 2024 21:05:43 +0000 Subject: [PATCH 034/131] Bump com.puppycrawl.tools:checkstyle from 10.17.0 to 10.18.1 Bumps [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) from 10.17.0 to 10.18.1. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-10.17.0...checkstyle-10.18.1) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 35ae7d1a20..812d538fde 100644 --- a/pom.xml +++ b/pom.xml @@ -100,7 +100,7 @@ com.puppycrawl.tools checkstyle - 10.17.0 + 10.18.1 From e078a491abd8eb5b45b7d1ad70abe50cad4898b1 Mon Sep 17 00:00:00 2001 From: Joel Uckelman Date: Sat, 24 Aug 2024 12:09:38 +0100 Subject: [PATCH 035/131] logback conversionRule conversionClass is deprecated in favor of class. --- vassal-app/src/main/resources/logback.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/src/main/resources/logback.xml b/vassal-app/src/main/resources/logback.xml index 6bf48182b5..fe98723978 100644 --- a/vassal-app/src/main/resources/logback.xml +++ b/vassal-app/src/main/resources/logback.xml @@ -26,7 +26,7 @@ + class="VASSAL.tools.logging.ProcessIDConverter" /> ${CONF_DIR}/${LOG_FILE} From 3496f5ee8dc603b246a89de3849d4e0bba02af8a Mon Sep 17 00:00:00 2001 From: Joel Uckelman Date: Fri, 30 Aug 2024 23:52:27 +0100 Subject: [PATCH 036/131] Updated change log. --- CHANGES | 2 ++ dist/notes/data.json | 1 + 2 files changed, 3 insertions(+) diff --git a/CHANGES b/CHANGES index 8128dcb70c..8d1e370a64 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,7 @@ 3.7.15 - ??? +* 13558: Update logback configuration to prevent messages to console + 3.7.14 - 18 August 2024 * 13530: Add saved games to Open Recent list on save diff --git a/dist/notes/data.json b/dist/notes/data.json index 261ca0ae35..37feef15d0 100644 --- a/dist/notes/data.json +++ b/dist/notes/data.json @@ -23,6 +23,7 @@ "bug_fixes": [ ], "other_improvements": [ + { "num": 13558, "desc": "Update logback configuration to prevent messages to console" } ] }, { From 2b43b9ee18d21a474ebed7cdd4d8062e6ec739eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 21:07:59 +0000 Subject: [PATCH 037/131] Bump org.apache.maven.plugins:maven-surefire-plugin from 3.4.0 to 3.5.0 Bumps [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) from 3.4.0 to 3.5.0. - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.4.0...surefire-3.5.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-surefire-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 554bbab379..63577069cd 100644 --- a/pom.xml +++ b/pom.xml @@ -75,7 +75,7 @@ maven-surefire-plugin - 3.4.0 + 3.5.0 maven-resources-plugin From da3238b8c02c057090c734dcd580c5c6495ba6b9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 21:08:12 +0000 Subject: [PATCH 038/131] Bump com.miglayout:miglayout-swing from 11.4 to 11.4.2 Bumps [com.miglayout:miglayout-swing](https://github.com/mikaelgrev/miglayout) from 11.4 to 11.4.2. - [Release notes](https://github.com/mikaelgrev/miglayout/releases) - [Changelog](https://github.com/mikaelgrev/miglayout/blob/master/release.txt) - [Commits](https://github.com/mikaelgrev/miglayout/compare/v11.4...v11.4.2) --- updated-dependencies: - dependency-name: com.miglayout:miglayout-swing dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 38382f9e9b..f8b96b1259 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -42,7 +42,7 @@ com.miglayout miglayout-swing - 11.4 + 11.4.2 javazoom From 94cb5801979ee1d75355a03a352aaa04df0ab869 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 21:08:17 +0000 Subject: [PATCH 039/131] Bump org.apache.commons:commons-lang3 from 3.16.0 to 3.17.0 Bumps org.apache.commons:commons-lang3 from 3.16.0 to 3.17.0. --- updated-dependencies: - dependency-name: org.apache.commons:commons-lang3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 38382f9e9b..7d6fc5e0c1 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -67,7 +67,7 @@ org.apache.commons commons-lang3 - 3.16.0 + 3.17.0 org.apache.httpcomponents.client5 From ef5b8b42184bb79116e31641bdbd62efd03910af Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 21:08:21 +0000 Subject: [PATCH 040/131] Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.8.0 to 3.10.0 Bumps [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 3.8.0 to 3.10.0. - [Release notes](https://github.com/apache/maven-javadoc-plugin/releases) - [Commits](https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-3.8.0...maven-javadoc-plugin-3.10.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-javadoc-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 554bbab379..4183b985a4 100644 --- a/pom.xml +++ b/pom.xml @@ -118,7 +118,7 @@ maven-javadoc-plugin - 3.8.0 + 3.10.0 com.github.spotbugs From e18aaa0df8ccab83a8023c4c2e9df029b2439039 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 21:07:59 +0000 Subject: [PATCH 041/131] Bump org.apache.maven.plugins:maven-surefire-plugin from 3.4.0 to 3.5.0 Bumps [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) from 3.4.0 to 3.5.0. - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.4.0...surefire-3.5.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-surefire-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 812d538fde..a00afda4cc 100644 --- a/pom.xml +++ b/pom.xml @@ -75,7 +75,7 @@ maven-surefire-plugin - 3.4.0 + 3.5.0 maven-resources-plugin From ca156dea9a21f1f6ebfc2aa888231b455af74f37 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 21:08:12 +0000 Subject: [PATCH 042/131] Bump com.miglayout:miglayout-swing from 11.4 to 11.4.2 Bumps [com.miglayout:miglayout-swing](https://github.com/mikaelgrev/miglayout) from 11.4 to 11.4.2. - [Release notes](https://github.com/mikaelgrev/miglayout/releases) - [Changelog](https://github.com/mikaelgrev/miglayout/blob/master/release.txt) - [Commits](https://github.com/mikaelgrev/miglayout/compare/v11.4...v11.4.2) --- updated-dependencies: - dependency-name: com.miglayout:miglayout-swing dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 0361eac0ef..ab54c0af85 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -42,7 +42,7 @@ com.miglayout miglayout-swing - 11.4 + 11.4.2 javazoom From 70fd654ef4177903c4261b632d731482bc301777 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 21:08:17 +0000 Subject: [PATCH 043/131] Bump org.apache.commons:commons-lang3 from 3.16.0 to 3.17.0 Bumps org.apache.commons:commons-lang3 from 3.16.0 to 3.17.0. --- updated-dependencies: - dependency-name: org.apache.commons:commons-lang3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index ab54c0af85..5c20b40f6c 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -67,7 +67,7 @@ org.apache.commons commons-lang3 - 3.16.0 + 3.17.0 org.apache.httpcomponents.client5 From ea2f8b4a050d3c396dc371d62ce8303dd752b07e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Sep 2024 21:08:21 +0000 Subject: [PATCH 044/131] Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.8.0 to 3.10.0 Bumps [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 3.8.0 to 3.10.0. - [Release notes](https://github.com/apache/maven-javadoc-plugin/releases) - [Commits](https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-3.8.0...maven-javadoc-plugin-3.10.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-javadoc-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a00afda4cc..90cc61120a 100644 --- a/pom.xml +++ b/pom.xml @@ -118,7 +118,7 @@ maven-javadoc-plugin - 3.8.0 + 3.10.0 com.github.spotbugs From 9ae9cd63e4c8a0ed7cb1c1c44d14111af75a6cb9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 21:54:06 +0000 Subject: [PATCH 045/131] Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.2 to 4.8.6.3 Bumps [com.github.spotbugs:spotbugs-maven-plugin](https://github.com/spotbugs/spotbugs-maven-plugin) from 4.8.6.2 to 4.8.6.3. - [Release notes](https://github.com/spotbugs/spotbugs-maven-plugin/releases) - [Commits](https://github.com/spotbugs/spotbugs-maven-plugin/compare/spotbugs-maven-plugin-4.8.6.2...spotbugs-maven-plugin-4.8.6.3) --- updated-dependencies: - dependency-name: com.github.spotbugs:spotbugs-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 86d86a921d..54b6e06695 100644 --- a/pom.xml +++ b/pom.xml @@ -123,7 +123,7 @@ com.github.spotbugs spotbugs-maven-plugin - 4.8.6.2 + 4.8.6.3 org.asciidoctor From abf5157e2df9221a023a8887802496a306635977 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 21:54:10 +0000 Subject: [PATCH 046/131] Bump ch.qos.logback:logback-classic from 1.5.7 to 1.5.8 Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from 1.5.7 to 1.5.8. - [Commits](https://github.com/qos-ch/logback/compare/v_1.5.7...v_1.5.8) --- updated-dependencies: - dependency-name: ch.qos.logback:logback-classic dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 5297d198e5..be3827b3f0 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -37,7 +37,7 @@ ch.qos.logback logback-classic - 1.5.7 + 1.5.8 com.miglayout From 43ea3a0597da457883f572f77edfd780d58bff80 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 21:54:06 +0000 Subject: [PATCH 047/131] Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.2 to 4.8.6.3 Bumps [com.github.spotbugs:spotbugs-maven-plugin](https://github.com/spotbugs/spotbugs-maven-plugin) from 4.8.6.2 to 4.8.6.3. - [Release notes](https://github.com/spotbugs/spotbugs-maven-plugin/releases) - [Commits](https://github.com/spotbugs/spotbugs-maven-plugin/compare/spotbugs-maven-plugin-4.8.6.2...spotbugs-maven-plugin-4.8.6.3) --- updated-dependencies: - dependency-name: com.github.spotbugs:spotbugs-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 90cc61120a..ec7ff57938 100644 --- a/pom.xml +++ b/pom.xml @@ -123,7 +123,7 @@ com.github.spotbugs spotbugs-maven-plugin - 4.8.6.2 + 4.8.6.3 org.asciidoctor From e7f8a48b756a72a681e8689e62bfec19f7a05200 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 9 Sep 2024 21:54:10 +0000 Subject: [PATCH 048/131] Bump ch.qos.logback:logback-classic from 1.5.7 to 1.5.8 Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from 1.5.7 to 1.5.8. - [Commits](https://github.com/qos-ch/logback/compare/v_1.5.7...v_1.5.8) --- updated-dependencies: - dependency-name: ch.qos.logback:logback-classic dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 5c20b40f6c..fc8a66624f 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -37,7 +37,7 @@ ch.qos.logback logback-classic - 1.5.7 + 1.5.8 com.miglayout From 97b94bbe3291eb44aeda965fb7945319c9831763 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Sep 2024 21:04:05 +0000 Subject: [PATCH 049/131] Bump org.apache.httpcomponents.client5:httpclient5 from 5.3.1 to 5.4 Bumps [org.apache.httpcomponents.client5:httpclient5](https://github.com/apache/httpcomponents-client) from 5.3.1 to 5.4. - [Changelog](https://github.com/apache/httpcomponents-client/blob/master/RELEASE_NOTES.txt) - [Commits](https://github.com/apache/httpcomponents-client/compare/rel/v5.3.1...rel/v5.4) --- updated-dependencies: - dependency-name: org.apache.httpcomponents.client5:httpclient5 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index be3827b3f0..d0e10a0f56 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -72,7 +72,7 @@ org.apache.httpcomponents.client5 httpclient5 - 5.3.1 + 5.4 org.apache.xmlgraphics From 5dfdfc0932b1eb78d086a7f11da33ed8e4f3b140 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Sep 2024 21:04:24 +0000 Subject: [PATCH 050/131] Bump commons-io:commons-io from 2.16.1 to 2.17.0 Bumps commons-io:commons-io from 2.16.1 to 2.17.0. --- updated-dependencies: - dependency-name: commons-io:commons-io dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index be3827b3f0..15d9673cdc 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -57,7 +57,7 @@ commons-io commons-io - 2.16.1 + 2.17.0 gnu.getopt From 99622024d1734a24513dffe223423b23231e4e24 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Sep 2024 21:31:33 +0000 Subject: [PATCH 051/131] Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.3 to 4.8.6.4 Bumps [com.github.spotbugs:spotbugs-maven-plugin](https://github.com/spotbugs/spotbugs-maven-plugin) from 4.8.6.3 to 4.8.6.4. - [Release notes](https://github.com/spotbugs/spotbugs-maven-plugin/releases) - [Commits](https://github.com/spotbugs/spotbugs-maven-plugin/compare/spotbugs-maven-plugin-4.8.6.3...spotbugs-maven-plugin-4.8.6.4) --- updated-dependencies: - dependency-name: com.github.spotbugs:spotbugs-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 54b6e06695..acd64add6a 100644 --- a/pom.xml +++ b/pom.xml @@ -123,7 +123,7 @@ com.github.spotbugs spotbugs-maven-plugin - 4.8.6.3 + 4.8.6.4 org.asciidoctor From b90b8c28aae0e2f47e2496677f41aea61e43dd97 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Sep 2024 21:17:21 +0000 Subject: [PATCH 052/131] Bump org.junit:junit-bom from 5.11.0 to 5.11.1 Bumps [org.junit:junit-bom](https://github.com/junit-team/junit5) from 5.11.0 to 5.11.1. - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.0...r5.11.1) --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index be3827b3f0..0482de422e 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -26,7 +26,7 @@ org.junit junit-bom - 5.11.0 + 5.11.1 pom import From 7d8b61043ad5bb5a38d199fda236fd3975261873 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Sep 2024 21:04:05 +0000 Subject: [PATCH 053/131] Bump org.apache.httpcomponents.client5:httpclient5 from 5.3.1 to 5.4 Bumps [org.apache.httpcomponents.client5:httpclient5](https://github.com/apache/httpcomponents-client) from 5.3.1 to 5.4. - [Changelog](https://github.com/apache/httpcomponents-client/blob/master/RELEASE_NOTES.txt) - [Commits](https://github.com/apache/httpcomponents-client/compare/rel/v5.3.1...rel/v5.4) --- updated-dependencies: - dependency-name: org.apache.httpcomponents.client5:httpclient5 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index fc8a66624f..9023fd1af1 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -72,7 +72,7 @@ org.apache.httpcomponents.client5 httpclient5 - 5.3.1 + 5.4 org.apache.xmlgraphics From 3347856f084a126ad532688cd7f80e7b5935d572 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Sep 2024 21:04:24 +0000 Subject: [PATCH 054/131] Bump commons-io:commons-io from 2.16.1 to 2.17.0 Bumps commons-io:commons-io from 2.16.1 to 2.17.0. --- updated-dependencies: - dependency-name: commons-io:commons-io dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 9023fd1af1..c8aa04f9c3 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -57,7 +57,7 @@ commons-io commons-io - 2.16.1 + 2.17.0 gnu.getopt From 1073194e763a100cd0a7deeb25c0b68ac2f153ec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 23 Sep 2024 21:31:33 +0000 Subject: [PATCH 055/131] Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.3 to 4.8.6.4 Bumps [com.github.spotbugs:spotbugs-maven-plugin](https://github.com/spotbugs/spotbugs-maven-plugin) from 4.8.6.3 to 4.8.6.4. - [Release notes](https://github.com/spotbugs/spotbugs-maven-plugin/releases) - [Commits](https://github.com/spotbugs/spotbugs-maven-plugin/compare/spotbugs-maven-plugin-4.8.6.3...spotbugs-maven-plugin-4.8.6.4) --- updated-dependencies: - dependency-name: com.github.spotbugs:spotbugs-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ec7ff57938..0c3aebefa0 100644 --- a/pom.xml +++ b/pom.xml @@ -123,7 +123,7 @@ com.github.spotbugs spotbugs-maven-plugin - 4.8.6.3 + 4.8.6.4 org.asciidoctor From a2c5eaa0df1e3570186e027d0a8e8dab834b8503 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Sep 2024 21:17:21 +0000 Subject: [PATCH 056/131] Bump org.junit:junit-bom from 5.11.0 to 5.11.1 Bumps [org.junit:junit-bom](https://github.com/junit-team/junit5) from 5.11.0 to 5.11.1. - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.0...r5.11.1) --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index c8aa04f9c3..ed67333f53 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -26,7 +26,7 @@ org.junit junit-bom - 5.11.0 + 5.11.1 pom import From be506060deee38db793ddbcd0cd7d82882bec26c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Sep 2024 22:14:00 +0000 Subject: [PATCH 057/131] Bump net.bytebuddy:byte-buddy from 1.15.1 to 1.15.2 Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.15.1 to 1.15.2. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.15.1...byte-buddy-1.15.2) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index c750170876..6187404bf4 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -192,7 +192,7 @@ net.bytebuddy byte-buddy - 1.15.1 + 1.15.2 test From b687ca5868a376c971ff1296da560069e47de3cb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 25 Sep 2024 22:14:00 +0000 Subject: [PATCH 058/131] Bump net.bytebuddy:byte-buddy from 1.15.1 to 1.15.2 Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.15.1 to 1.15.2. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.15.1...byte-buddy-1.15.2) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index ed67333f53..3a14d51ded 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -192,7 +192,7 @@ net.bytebuddy byte-buddy - 1.15.1 + 1.15.2 test From e04a7bfcdcf3bb7a90c8e3a5a94416f7d96d6faf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Sep 2024 21:25:47 +0000 Subject: [PATCH 059/131] Bump net.bytebuddy:byte-buddy from 1.15.2 to 1.15.3 Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.15.2 to 1.15.3. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.15.2...byte-buddy-1.15.3) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 6187404bf4..f907a68ace 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -192,7 +192,7 @@ net.bytebuddy byte-buddy - 1.15.2 + 1.15.3 test From e518549f962fd446a5aa602f1e25a6011ce4097e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Sep 2024 21:04:47 +0000 Subject: [PATCH 060/131] Bump com.puppycrawl.tools:checkstyle from 10.18.1 to 10.18.2 Bumps [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) from 10.18.1 to 10.18.2. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-10.18.1...checkstyle-10.18.2) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index acd64add6a..56deb68fe1 100644 --- a/pom.xml +++ b/pom.xml @@ -100,7 +100,7 @@ com.puppycrawl.tools checkstyle - 10.18.1 + 10.18.2 From 8d7178ef03541b1238b240566715b9aeb26ad238 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 30 Sep 2024 21:04:47 +0000 Subject: [PATCH 061/131] Bump com.puppycrawl.tools:checkstyle from 10.18.1 to 10.18.2 Bumps [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) from 10.18.1 to 10.18.2. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-10.18.1...checkstyle-10.18.2) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0c3aebefa0..9e03051628 100644 --- a/pom.xml +++ b/pom.xml @@ -100,7 +100,7 @@ com.puppycrawl.tools checkstyle - 10.18.1 + 10.18.2 From 4e13332504978eb0f60d5a01d8bca3563e23f9b2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Oct 2024 21:23:52 +0000 Subject: [PATCH 062/131] Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.10.0 to 3.10.1 Bumps [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 3.10.0 to 3.10.1. - [Release notes](https://github.com/apache/maven-javadoc-plugin/releases) - [Commits](https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-3.10.0...maven-javadoc-plugin-3.10.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-javadoc-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 56deb68fe1..aa5b8e82c8 100644 --- a/pom.xml +++ b/pom.xml @@ -118,7 +118,7 @@ maven-javadoc-plugin - 3.10.0 + 3.10.1 com.github.spotbugs From 84bc0ff37f3c21df0959fb2b76e7fc378ec70990 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 27 Sep 2024 21:25:47 +0000 Subject: [PATCH 063/131] Bump net.bytebuddy:byte-buddy from 1.15.2 to 1.15.3 Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.15.2 to 1.15.3. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.15.2...byte-buddy-1.15.3) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 3a14d51ded..469302d469 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -192,7 +192,7 @@ net.bytebuddy byte-buddy - 1.15.2 + 1.15.3 test From 605c469a9c5c4f7816123d3e530112c5b4a3c11e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Oct 2024 21:23:52 +0000 Subject: [PATCH 064/131] Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.10.0 to 3.10.1 Bumps [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 3.10.0 to 3.10.1. - [Release notes](https://github.com/apache/maven-javadoc-plugin/releases) - [Commits](https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-3.10.0...maven-javadoc-plugin-3.10.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-javadoc-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 9e03051628..d564c71709 100644 --- a/pom.xml +++ b/pom.xml @@ -118,7 +118,7 @@ maven-javadoc-plugin - 3.10.0 + 3.10.1 com.github.spotbugs From 9cf095cd636dad877b3a31427a2678cf3c77de93 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 4 Oct 2024 21:38:32 +0000 Subject: [PATCH 065/131] Bump org.junit:junit-bom from 5.11.1 to 5.11.2 Bumps [org.junit:junit-bom](https://github.com/junit-team/junit5) from 5.11.1 to 5.11.2. - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.1...r5.11.2) --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index f907a68ace..c096578538 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -26,7 +26,7 @@ org.junit junit-bom - 5.11.1 + 5.11.2 pom import From 8340c0e914f1735b2bfee8c3bfb208b30731337c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 4 Oct 2024 21:38:32 +0000 Subject: [PATCH 066/131] Bump org.junit:junit-bom from 5.11.1 to 5.11.2 Bumps [org.junit:junit-bom](https://github.com/junit-team/junit5) from 5.11.1 to 5.11.2. - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.1...r5.11.2) --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 469302d469..546e1510c6 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -26,7 +26,7 @@ org.junit junit-bom - 5.11.1 + 5.11.2 pom import From 3ed9e146a786646eeecbb9055508c042fe195f15 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 21:32:21 +0000 Subject: [PATCH 067/131] Bump org.ow2.asm:asm from 9.7 to 9.7.1 Bumps org.ow2.asm:asm from 9.7 to 9.7.1. --- updated-dependencies: - dependency-name: org.ow2.asm:asm dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index c096578538..ff44a139cc 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -137,7 +137,7 @@ org.ow2.asm asm - 9.7 + 9.7.1 ${project.groupId} @@ -319,7 +319,7 @@ org.ow2.asm asm - 9.7 + 9.7.1 From b3e4fc8c9414d56c0198c3979fb096cffc598450 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 21:32:27 +0000 Subject: [PATCH 068/131] Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.0 to 3.5.1 Bumps [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) from 3.5.0 to 3.5.1. - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.5.0...surefire-3.5.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-surefire-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index aa5b8e82c8..d59d8cbd6e 100644 --- a/pom.xml +++ b/pom.xml @@ -75,7 +75,7 @@ maven-surefire-plugin - 3.5.0 + 3.5.1 maven-resources-plugin From 4234b34491d47f9191187c02ea0358338ffd4303 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 21:26:07 +0000 Subject: [PATCH 069/131] Bump ch.qos.logback:logback-classic from 1.5.8 to 1.5.9 Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from 1.5.8 to 1.5.9. - [Commits](https://github.com/qos-ch/logback/compare/v_1.5.8...v_1.5.9) --- updated-dependencies: - dependency-name: ch.qos.logback:logback-classic dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index c096578538..42bf86067d 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -37,7 +37,7 @@ ch.qos.logback logback-classic - 1.5.8 + 1.5.9 com.miglayout From 75ac0cad4ccf722d374fbda64b6c7d0a6c5e8382 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 9 Oct 2024 21:49:53 +0000 Subject: [PATCH 070/131] Bump version.batik from 1.17 to 1.18 Bumps `version.batik` from 1.17 to 1.18. Updates `org.apache.xmlgraphics:batik-codec` from 1.17 to 1.18 Updates `org.apache.xmlgraphics:batik-dom` from 1.17 to 1.18 Updates `org.apache.xmlgraphics:batik-extension` from 1.17 to 1.18 Updates `org.apache.xmlgraphics:batik-swing` from 1.17 to 1.18 --- updated-dependencies: - dependency-name: org.apache.xmlgraphics:batik-codec dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.xmlgraphics:batik-dom dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.xmlgraphics:batik-extension dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.xmlgraphics:batik-swing dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index c096578538..13bf2b453f 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -17,7 +17,7 @@ ${project.basedir}${file.separator}.. ${project.build.sourceEncoding} - 1.17 + 1.18 3.7.0 From a9a8711f988c3b8d493b778750507b8cb71683fa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 21:32:21 +0000 Subject: [PATCH 071/131] Bump org.ow2.asm:asm from 9.7 to 9.7.1 Bumps org.ow2.asm:asm from 9.7 to 9.7.1. --- updated-dependencies: - dependency-name: org.ow2.asm:asm dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 546e1510c6..3e535e1ece 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -137,7 +137,7 @@ org.ow2.asm asm - 9.7 + 9.7.1 ${project.groupId} @@ -319,7 +319,7 @@ org.ow2.asm asm - 9.7 + 9.7.1 From ed538a889f890668696a00950f41017130664dd6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Oct 2024 21:32:27 +0000 Subject: [PATCH 072/131] Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.0 to 3.5.1 Bumps [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) from 3.5.0 to 3.5.1. - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.5.0...surefire-3.5.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-surefire-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d564c71709..462b633557 100644 --- a/pom.xml +++ b/pom.xml @@ -75,7 +75,7 @@ maven-surefire-plugin - 3.5.0 + 3.5.1 maven-resources-plugin From 0504fd7a9eb93c652418b1eaafde4ad5457bbad2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 8 Oct 2024 21:26:07 +0000 Subject: [PATCH 073/131] Bump ch.qos.logback:logback-classic from 1.5.8 to 1.5.9 Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from 1.5.8 to 1.5.9. - [Commits](https://github.com/qos-ch/logback/compare/v_1.5.8...v_1.5.9) --- updated-dependencies: - dependency-name: ch.qos.logback:logback-classic dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 3e535e1ece..912e637985 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -37,7 +37,7 @@ ch.qos.logback logback-classic - 1.5.8 + 1.5.9 com.miglayout From e5d967d1800c4cea37aafb11e6ebb21a3f3b7ee0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 9 Oct 2024 21:49:53 +0000 Subject: [PATCH 074/131] Bump version.batik from 1.17 to 1.18 Bumps `version.batik` from 1.17 to 1.18. Updates `org.apache.xmlgraphics:batik-codec` from 1.17 to 1.18 Updates `org.apache.xmlgraphics:batik-dom` from 1.17 to 1.18 Updates `org.apache.xmlgraphics:batik-extension` from 1.17 to 1.18 Updates `org.apache.xmlgraphics:batik-swing` from 1.17 to 1.18 --- updated-dependencies: - dependency-name: org.apache.xmlgraphics:batik-codec dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.xmlgraphics:batik-dom dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.xmlgraphics:batik-extension dependency-type: direct:production update-type: version-update:semver-minor - dependency-name: org.apache.xmlgraphics:batik-swing dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 912e637985..1ef0952dc2 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -17,7 +17,7 @@ ${project.basedir}${file.separator}.. ${project.build.sourceEncoding} - 1.17 + 1.18 3.7.0 From d93873444259244a924f4a6829ceabc8a56975eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 10 Oct 2024 21:28:28 +0000 Subject: [PATCH 075/131] Bump net.bytebuddy:byte-buddy from 1.15.3 to 1.15.4 Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.15.3 to 1.15.4. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.15.3...byte-buddy-1.15.4) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 0b173e1ef9..e2af1b6581 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -192,7 +192,7 @@ net.bytebuddy byte-buddy - 1.15.3 + 1.15.4 test From 1667ad995a63e181d9040cc3d7660efdac900430 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 10 Oct 2024 21:28:28 +0000 Subject: [PATCH 076/131] Bump net.bytebuddy:byte-buddy from 1.15.3 to 1.15.4 Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.15.3 to 1.15.4. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.15.3...byte-buddy-1.15.4) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 1ef0952dc2..a8f95b3c74 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -192,7 +192,7 @@ net.bytebuddy byte-buddy - 1.15.3 + 1.15.4 test From 30ba57e4271023a89132919905ba06fc60e29ab7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Oct 2024 21:52:39 +0000 Subject: [PATCH 077/131] Bump ch.qos.logback:logback-classic from 1.5.9 to 1.5.11 Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from 1.5.9 to 1.5.11. - [Commits](https://github.com/qos-ch/logback/compare/v_1.5.9...v_1.5.11) --- updated-dependencies: - dependency-name: ch.qos.logback:logback-classic dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index e2af1b6581..5ea9503e08 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -37,7 +37,7 @@ ch.qos.logback logback-classic - 1.5.9 + 1.5.11 com.miglayout From ef4e2975f5a1aa6bc3b1c80e5111ea0862c6a24e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 17 Oct 2024 21:38:12 +0000 Subject: [PATCH 078/131] Bump net.bytebuddy:byte-buddy from 1.15.4 to 1.15.5 Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.15.4 to 1.15.5. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.15.4...byte-buddy-1.15.5) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index e2af1b6581..12d8d00e96 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -192,7 +192,7 @@ net.bytebuddy byte-buddy - 1.15.4 + 1.15.5 test From 136fa4c8a78979fd90aa916db14a9cd564d3ce59 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 15 Oct 2024 21:52:39 +0000 Subject: [PATCH 079/131] Bump ch.qos.logback:logback-classic from 1.5.9 to 1.5.11 Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from 1.5.9 to 1.5.11. - [Commits](https://github.com/qos-ch/logback/compare/v_1.5.9...v_1.5.11) --- updated-dependencies: - dependency-name: ch.qos.logback:logback-classic dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index a8f95b3c74..2e53b2acab 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -37,7 +37,7 @@ ch.qos.logback logback-classic - 1.5.9 + 1.5.11 com.miglayout From 573d7779b4d85919c37ac33b9ed8327ccab04331 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 17 Oct 2024 21:38:12 +0000 Subject: [PATCH 080/131] Bump net.bytebuddy:byte-buddy from 1.15.4 to 1.15.5 Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.15.4 to 1.15.5. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.15.4...byte-buddy-1.15.5) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 2e53b2acab..7a41fd9595 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -192,7 +192,7 @@ net.bytebuddy byte-buddy - 1.15.4 + 1.15.5 test From f46976c9d7f43c51b8954b0cad5d1c5c8d4fa98c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 21:53:44 +0000 Subject: [PATCH 081/131] Bump org.asciidoctor:asciidoctorj-pdf from 2.3.18 to 2.3.19 Bumps [org.asciidoctor:asciidoctorj-pdf](https://github.com/asciidoctor/asciidoctorj-pdf) from 2.3.18 to 2.3.19. - [Release notes](https://github.com/asciidoctor/asciidoctorj-pdf/releases) - [Changelog](https://github.com/asciidoctor/asciidoctorj-pdf/blob/main/CHANGELOG.adoc) - [Commits](https://github.com/asciidoctor/asciidoctorj-pdf/compare/v2.3.18...v2.3.19) --- updated-dependencies: - dependency-name: org.asciidoctor:asciidoctorj-pdf dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-doc/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-doc/pom.xml b/vassal-doc/pom.xml index 640706c3d6..7f52896807 100644 --- a/vassal-doc/pom.xml +++ b/vassal-doc/pom.xml @@ -22,7 +22,7 @@ org.asciidoctor asciidoctorj-pdf - 2.3.18 + 2.3.19 From 19d094b3577f46bd7e77b3d94b65cfb16e483fff Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 21:53:54 +0000 Subject: [PATCH 082/131] Bump org.junit:junit-bom from 5.11.2 to 5.11.3 Bumps [org.junit:junit-bom](https://github.com/junit-team/junit5) from 5.11.2 to 5.11.3. - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.2...r5.11.3) --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 4cb267fd68..d8fd80a6ea 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -26,7 +26,7 @@ org.junit junit-bom - 5.11.2 + 5.11.3 pom import From ca729e9536f1fe0b59ec775454418a058f2cbd53 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 21:53:44 +0000 Subject: [PATCH 083/131] Bump org.asciidoctor:asciidoctorj-pdf from 2.3.18 to 2.3.19 Bumps [org.asciidoctor:asciidoctorj-pdf](https://github.com/asciidoctor/asciidoctorj-pdf) from 2.3.18 to 2.3.19. - [Release notes](https://github.com/asciidoctor/asciidoctorj-pdf/releases) - [Changelog](https://github.com/asciidoctor/asciidoctorj-pdf/blob/main/CHANGELOG.adoc) - [Commits](https://github.com/asciidoctor/asciidoctorj-pdf/compare/v2.3.18...v2.3.19) --- updated-dependencies: - dependency-name: org.asciidoctor:asciidoctorj-pdf dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-doc/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-doc/pom.xml b/vassal-doc/pom.xml index 3ef5b43fab..4391859c2b 100644 --- a/vassal-doc/pom.xml +++ b/vassal-doc/pom.xml @@ -22,7 +22,7 @@ org.asciidoctor asciidoctorj-pdf - 2.3.18 + 2.3.19 From 38f06e09f23347fddaa94b9b60015deb98150ea0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 21:53:54 +0000 Subject: [PATCH 084/131] Bump org.junit:junit-bom from 5.11.2 to 5.11.3 Bumps [org.junit:junit-bom](https://github.com/junit-team/junit5) from 5.11.2 to 5.11.3. - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.2...r5.11.3) --- updated-dependencies: - dependency-name: org.junit:junit-bom dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 7a41fd9595..41f10085cb 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -26,7 +26,7 @@ org.junit junit-bom - 5.11.2 + 5.11.3 pom import From c80e1929a2a4c9a9e9bb63bc243f80a1e20b0f27 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 21:24:35 +0000 Subject: [PATCH 085/131] Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.4 to 4.8.6.5 Bumps [com.github.spotbugs:spotbugs-maven-plugin](https://github.com/spotbugs/spotbugs-maven-plugin) from 4.8.6.4 to 4.8.6.5. - [Release notes](https://github.com/spotbugs/spotbugs-maven-plugin/releases) - [Commits](https://github.com/spotbugs/spotbugs-maven-plugin/compare/spotbugs-maven-plugin-4.8.6.4...spotbugs-maven-plugin-4.8.6.5) --- updated-dependencies: - dependency-name: com.github.spotbugs:spotbugs-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d59d8cbd6e..4918fdc3a2 100644 --- a/pom.xml +++ b/pom.xml @@ -123,7 +123,7 @@ com.github.spotbugs spotbugs-maven-plugin - 4.8.6.4 + 4.8.6.5 org.asciidoctor From cc9521d3c040223c95aacf5854f3bbbd71351c12 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 21:24:45 +0000 Subject: [PATCH 086/131] Bump org.codehaus.mojo:exec-maven-plugin from 3.4.1 to 3.5.0 Bumps [org.codehaus.mojo:exec-maven-plugin](https://github.com/mojohaus/exec-maven-plugin) from 3.4.1 to 3.5.0. - [Release notes](https://github.com/mojohaus/exec-maven-plugin/releases) - [Commits](https://github.com/mojohaus/exec-maven-plugin/compare/3.4.1...3.5.0) --- updated-dependencies: - dependency-name: org.codehaus.mojo:exec-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d59d8cbd6e..92388ca98c 100644 --- a/pom.xml +++ b/pom.xml @@ -138,7 +138,7 @@ org.codehaus.mojo exec-maven-plugin - 3.4.1 + 3.5.0 org.codehaus.mojo From 3b1465f94f697e722f7edb6c8c7e8ea1edcb8082 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 21:24:48 +0000 Subject: [PATCH 087/131] Bump org.apache.maven.plugins:maven-site-plugin from 3.20.0 to 3.21.0 Bumps [org.apache.maven.plugins:maven-site-plugin](https://github.com/apache/maven-site-plugin) from 3.20.0 to 3.21.0. - [Release notes](https://github.com/apache/maven-site-plugin/releases) - [Commits](https://github.com/apache/maven-site-plugin/compare/maven-site-plugin-3.20.0...maven-site-plugin-3.21.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-site-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index d59d8cbd6e..da99c1f1b2 100644 --- a/pom.xml +++ b/pom.xml @@ -87,7 +87,7 @@ maven-site-plugin - 3.20.0 + 3.21.0 maven-deploy-plugin From 42dd3033a644dd358042b8cefc8e09c2d6bfaa90 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 21:24:35 +0000 Subject: [PATCH 088/131] Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.4 to 4.8.6.5 Bumps [com.github.spotbugs:spotbugs-maven-plugin](https://github.com/spotbugs/spotbugs-maven-plugin) from 4.8.6.4 to 4.8.6.5. - [Release notes](https://github.com/spotbugs/spotbugs-maven-plugin/releases) - [Commits](https://github.com/spotbugs/spotbugs-maven-plugin/compare/spotbugs-maven-plugin-4.8.6.4...spotbugs-maven-plugin-4.8.6.5) --- updated-dependencies: - dependency-name: com.github.spotbugs:spotbugs-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 462b633557..dfcfd55881 100644 --- a/pom.xml +++ b/pom.xml @@ -123,7 +123,7 @@ com.github.spotbugs spotbugs-maven-plugin - 4.8.6.4 + 4.8.6.5 org.asciidoctor From 390c3fa05c7c41fbb95f8730d7265ebeee6fdf25 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 21:24:45 +0000 Subject: [PATCH 089/131] Bump org.codehaus.mojo:exec-maven-plugin from 3.4.1 to 3.5.0 Bumps [org.codehaus.mojo:exec-maven-plugin](https://github.com/mojohaus/exec-maven-plugin) from 3.4.1 to 3.5.0. - [Release notes](https://github.com/mojohaus/exec-maven-plugin/releases) - [Commits](https://github.com/mojohaus/exec-maven-plugin/compare/3.4.1...3.5.0) --- updated-dependencies: - dependency-name: org.codehaus.mojo:exec-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index dfcfd55881..f1a48fc311 100644 --- a/pom.xml +++ b/pom.xml @@ -138,7 +138,7 @@ org.codehaus.mojo exec-maven-plugin - 3.4.1 + 3.5.0 org.codehaus.mojo From bee674abdf9c446f7044b9e5394120f0fcf2de6a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Oct 2024 21:24:48 +0000 Subject: [PATCH 090/131] Bump org.apache.maven.plugins:maven-site-plugin from 3.20.0 to 3.21.0 Bumps [org.apache.maven.plugins:maven-site-plugin](https://github.com/apache/maven-site-plugin) from 3.20.0 to 3.21.0. - [Release notes](https://github.com/apache/maven-site-plugin/releases) - [Commits](https://github.com/apache/maven-site-plugin/compare/maven-site-plugin-3.20.0...maven-site-plugin-3.21.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-site-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index f1a48fc311..8b50e8d0d3 100644 --- a/pom.xml +++ b/pom.xml @@ -87,7 +87,7 @@ maven-site-plugin - 3.20.0 + 3.21.0 maven-deploy-plugin From 6cd43c4d64821b7019948cc4523c4ee1f64f3150 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 23 Oct 2024 21:25:24 +0000 Subject: [PATCH 091/131] Bump net.bytebuddy:byte-buddy from 1.15.5 to 1.15.7 Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.15.5 to 1.15.7. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.15.5...byte-buddy-1.15.7) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index d8fd80a6ea..16c8212f88 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -192,7 +192,7 @@ net.bytebuddy byte-buddy - 1.15.5 + 1.15.7 test From 269910761a6ba71c108ac664b13995d1fb2a2609 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 23 Oct 2024 21:25:24 +0000 Subject: [PATCH 092/131] Bump net.bytebuddy:byte-buddy from 1.15.5 to 1.15.7 Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.15.5 to 1.15.7. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.15.5...byte-buddy-1.15.7) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 41f10085cb..344ed3577e 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -192,7 +192,7 @@ net.bytebuddy byte-buddy - 1.15.5 + 1.15.7 test From 846263306da6dcb913878475c33a4dec90273c6b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 21:48:03 +0000 Subject: [PATCH 093/131] Bump ch.qos.logback:logback-classic from 1.5.11 to 1.5.12 Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from 1.5.11 to 1.5.12. - [Commits](https://github.com/qos-ch/logback/compare/v_1.5.11...v_1.5.12) --- updated-dependencies: - dependency-name: ch.qos.logback:logback-classic dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 16c8212f88..8fef60539b 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -37,7 +37,7 @@ ch.qos.logback logback-classic - 1.5.11 + 1.5.12 com.miglayout From 87ad1c9cb29c6dd3ef20bed0a9a22d586e48cd88 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 21:48:09 +0000 Subject: [PATCH 094/131] Bump org.apache.maven.plugins:maven-checkstyle-plugin Bumps [org.apache.maven.plugins:maven-checkstyle-plugin](https://github.com/apache/maven-checkstyle-plugin) from 3.5.0 to 3.6.0. - [Commits](https://github.com/apache/maven-checkstyle-plugin/compare/maven-checkstyle-plugin-3.5.0...maven-checkstyle-plugin-3.6.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-checkstyle-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ea8f6131e9..cb0d05ec13 100644 --- a/pom.xml +++ b/pom.xml @@ -95,7 +95,7 @@ maven-checkstyle-plugin - 3.5.0 + 3.6.0 com.puppycrawl.tools From 24e6622eaaef8621b2863514092df728619850ee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 21:48:25 +0000 Subject: [PATCH 095/131] Bump org.apache.maven.plugins:maven-dependency-plugin Bumps [org.apache.maven.plugins:maven-dependency-plugin](https://github.com/apache/maven-dependency-plugin) from 3.8.0 to 3.8.1. - [Release notes](https://github.com/apache/maven-dependency-plugin/releases) - [Commits](https://github.com/apache/maven-dependency-plugin/compare/maven-dependency-plugin-3.8.0...maven-dependency-plugin-3.8.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-dependency-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ea8f6131e9..5696906b4e 100644 --- a/pom.xml +++ b/pom.xml @@ -106,7 +106,7 @@ maven-dependency-plugin - 3.8.0 + 3.8.1 maven-jar-plugin From 5cc80a5b1e17332621e2c1591aba0e92c0b64e9b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 21:48:46 +0000 Subject: [PATCH 096/131] Bump org.apache.httpcomponents.client5:httpclient5 from 5.4 to 5.4.1 Bumps [org.apache.httpcomponents.client5:httpclient5](https://github.com/apache/httpcomponents-client) from 5.4 to 5.4.1. - [Changelog](https://github.com/apache/httpcomponents-client/blob/rel/v5.4.1/RELEASE_NOTES.txt) - [Commits](https://github.com/apache/httpcomponents-client/compare/rel/v5.4...rel/v5.4.1) --- updated-dependencies: - dependency-name: org.apache.httpcomponents.client5:httpclient5 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 16c8212f88..b5b862493f 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -72,7 +72,7 @@ org.apache.httpcomponents.client5 httpclient5 - 5.4 + 5.4.1 org.apache.xmlgraphics From 4b87775f9de234534b30ed98890d70080bff9718 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 21:48:03 +0000 Subject: [PATCH 097/131] Bump ch.qos.logback:logback-classic from 1.5.11 to 1.5.12 Bumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from 1.5.11 to 1.5.12. - [Commits](https://github.com/qos-ch/logback/compare/v_1.5.11...v_1.5.12) --- updated-dependencies: - dependency-name: ch.qos.logback:logback-classic dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 344ed3577e..9ae5b25617 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -37,7 +37,7 @@ ch.qos.logback logback-classic - 1.5.11 + 1.5.12 com.miglayout From 03778e2e8ca2bf92a1fee16371893282590bd6bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 21:48:09 +0000 Subject: [PATCH 098/131] Bump org.apache.maven.plugins:maven-checkstyle-plugin Bumps [org.apache.maven.plugins:maven-checkstyle-plugin](https://github.com/apache/maven-checkstyle-plugin) from 3.5.0 to 3.6.0. - [Commits](https://github.com/apache/maven-checkstyle-plugin/compare/maven-checkstyle-plugin-3.5.0...maven-checkstyle-plugin-3.6.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-checkstyle-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 8b50e8d0d3..01e4b6277d 100644 --- a/pom.xml +++ b/pom.xml @@ -95,7 +95,7 @@ maven-checkstyle-plugin - 3.5.0 + 3.6.0 com.puppycrawl.tools From d2b92582455bcf5873adf45b96c33271aab78f94 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 25 Oct 2024 21:48:25 +0000 Subject: [PATCH 099/131] Bump org.apache.maven.plugins:maven-dependency-plugin Bumps [org.apache.maven.plugins:maven-dependency-plugin](https://github.com/apache/maven-dependency-plugin) from 3.8.0 to 3.8.1. - [Release notes](https://github.com/apache/maven-dependency-plugin/releases) - [Commits](https://github.com/apache/maven-dependency-plugin/compare/maven-dependency-plugin-3.8.0...maven-dependency-plugin-3.8.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-dependency-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 01e4b6277d..99dd1a78c9 100644 --- a/pom.xml +++ b/pom.xml @@ -106,7 +106,7 @@ maven-dependency-plugin - 3.8.0 + 3.8.1 maven-jar-plugin From e48746499dceab81820f3bf8034ec5f944340420 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 28 Oct 2024 21:48:46 +0000 Subject: [PATCH 100/131] Bump org.apache.httpcomponents.client5:httpclient5 from 5.4 to 5.4.1 Bumps [org.apache.httpcomponents.client5:httpclient5](https://github.com/apache/httpcomponents-client) from 5.4 to 5.4.1. - [Changelog](https://github.com/apache/httpcomponents-client/blob/rel/v5.4.1/RELEASE_NOTES.txt) - [Commits](https://github.com/apache/httpcomponents-client/compare/rel/v5.4...rel/v5.4.1) --- updated-dependencies: - dependency-name: org.apache.httpcomponents.client5:httpclient5 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 9ae5b25617..eed27676b1 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -72,7 +72,7 @@ org.apache.httpcomponents.client5 httpclient5 - 5.4 + 5.4.1 org.apache.xmlgraphics From aa5ae56bce0716836f7f0dc528d5d2d148889528 Mon Sep 17 00:00:00 2001 From: Joel Uckelman Date: Tue, 29 Oct 2024 21:19:39 +0000 Subject: [PATCH 101/131] PMD: Variables can be final. --- .../src/main/java/VASSAL/script/ExpressionInterpreter.java | 4 ++-- vassal-app/src/main/java/VASSAL/tools/DataArchive.java | 2 +- vassal-app/src/main/java/VASSAL/tools/PropertiesEncoder.java | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/vassal-app/src/main/java/VASSAL/script/ExpressionInterpreter.java b/vassal-app/src/main/java/VASSAL/script/ExpressionInterpreter.java index 9b351554b3..ad66708783 100644 --- a/vassal-app/src/main/java/VASSAL/script/ExpressionInterpreter.java +++ b/vassal-app/src/main/java/VASSAL/script/ExpressionInterpreter.java @@ -1116,7 +1116,7 @@ public Object countMapLocation(Object locationName, Object mapName, Object prope final PieceFilter filter = createFilter(expression, ps); final Map targetMap = findVassalMap(mapName.toString()); - String propValue; + final String propValue; if (property == null || property.toString().isEmpty()) { propValue = null; } @@ -1251,7 +1251,7 @@ public Object countZone(Object zoneName, Object mapName, Object property, Object final PieceFilter filter = createFilter(expression, ps); final Map targetMap = findVassalMap(mapName.toString()); - String propValue; + final String propValue; if (property == null || property.toString().isEmpty()) { propValue = null; } diff --git a/vassal-app/src/main/java/VASSAL/tools/DataArchive.java b/vassal-app/src/main/java/VASSAL/tools/DataArchive.java index 855068b7c6..dec709ab28 100644 --- a/vassal-app/src/main/java/VASSAL/tools/DataArchive.java +++ b/vassal-app/src/main/java/VASSAL/tools/DataArchive.java @@ -322,7 +322,7 @@ protected SortedSet getLocalImageNames() { /* Localized directories always take the form images_XX with XX being a i18n code */ protected void buildLocalizedDirectoryList(List list) { - List files; + final List files; try { files = archive.getFiles(""); } diff --git a/vassal-app/src/main/java/VASSAL/tools/PropertiesEncoder.java b/vassal-app/src/main/java/VASSAL/tools/PropertiesEncoder.java index ddbae0e58c..155112ce36 100644 --- a/vassal-app/src/main/java/VASSAL/tools/PropertiesEncoder.java +++ b/vassal-app/src/main/java/VASSAL/tools/PropertiesEncoder.java @@ -42,7 +42,7 @@ public PropertiesEncoder(String stringValue) throws IOException { } private String encode(Properties p) { - String s; + final String s; try { final ByteArrayOutputStream out = new ByteArrayOutputStream(); p.store(out, null); From c20ee309cef630bc27411138421d0831ab3240dd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 29 Oct 2024 21:43:42 +0000 Subject: [PATCH 102/131] Bump com.puppycrawl.tools:checkstyle from 10.18.2 to 10.19.0 Bumps [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) from 10.18.2 to 10.19.0. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-10.18.2...checkstyle-10.19.0) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index e9cfe630a7..efe6669150 100644 --- a/pom.xml +++ b/pom.xml @@ -100,7 +100,7 @@ com.puppycrawl.tools checkstyle - 10.18.2 + 10.19.0 From b75aa4ba6d663edf9672eefd85c3a9a6e0527e9b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 29 Oct 2024 21:43:42 +0000 Subject: [PATCH 103/131] Bump com.puppycrawl.tools:checkstyle from 10.18.2 to 10.19.0 Bumps [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) from 10.18.2 to 10.19.0. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-10.18.2...checkstyle-10.19.0) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 99dd1a78c9..ffdc6502b6 100644 --- a/pom.xml +++ b/pom.xml @@ -100,7 +100,7 @@ com.puppycrawl.tools checkstyle - 10.18.2 + 10.19.0 From a677bf5b391caff5e066500f8865b802bc6b5cbb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 29 Oct 2024 21:59:04 +0000 Subject: [PATCH 104/131] Bump org.apache.maven.plugins:maven-pmd-plugin from 3.23.0 to 3.26.0 Bumps [org.apache.maven.plugins:maven-pmd-plugin](https://github.com/apache/maven-pmd-plugin) from 3.23.0 to 3.26.0. - [Release notes](https://github.com/apache/maven-pmd-plugin/releases) - [Commits](https://github.com/apache/maven-pmd-plugin/compare/maven-pmd-plugin-3.23.0...maven-pmd-plugin-3.26.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-pmd-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index efe6669150..921b51689a 100644 --- a/pom.xml +++ b/pom.xml @@ -148,7 +148,7 @@ org.apache.maven.plugins maven-pmd-plugin - 3.23.0 + 3.26.0 From 2d66d5217ac10ab1f95b0c41b2cda70f3a70df4a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 29 Oct 2024 21:59:04 +0000 Subject: [PATCH 105/131] Bump org.apache.maven.plugins:maven-pmd-plugin from 3.23.0 to 3.26.0 Bumps [org.apache.maven.plugins:maven-pmd-plugin](https://github.com/apache/maven-pmd-plugin) from 3.23.0 to 3.26.0. - [Release notes](https://github.com/apache/maven-pmd-plugin/releases) - [Commits](https://github.com/apache/maven-pmd-plugin/compare/maven-pmd-plugin-3.23.0...maven-pmd-plugin-3.26.0) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-pmd-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ffdc6502b6..b5e79e6ac2 100644 --- a/pom.xml +++ b/pom.xml @@ -148,7 +148,7 @@ org.apache.maven.plugins maven-pmd-plugin - 3.23.0 + 3.26.0 From b472c0de6dffeb9f4684d24a8ea060d538641e56 Mon Sep 17 00:00:00 2001 From: Joel Uckelman Date: Wed, 30 Oct 2024 14:49:56 +0000 Subject: [PATCH 106/131] Updated to current Java release. --- .github/workflows/package.yml | 2 +- bootstrap.sh | 24 ++++++++++++------------ 2 files changed, 13 insertions(+), 13 deletions(-) diff --git a/.github/workflows/package.yml b/.github/workflows/package.yml index 16c4c7499d..bca4e443de 100644 --- a/.github/workflows/package.yml +++ b/.github/workflows/package.yml @@ -37,7 +37,7 @@ jobs: uses: actions/setup-java@v4 with: distribution: 'temurin' - java-version: 22 + java-version: 23 java-package: jdk - name: Cache Maven packages diff --git a/bootstrap.sh b/bootstrap.sh index e40f6b5762..5a389db39c 100755 --- a/bootstrap.sh +++ b/bootstrap.sh @@ -21,17 +21,17 @@ pushd "$JDKDIR" ZULU_URL='https://cdn.azul.com/zulu/bin' -TEMURIN_URL='https://github.com/adoptium/temurin22-binaries/releases/download' -TEMURIN_VERSION=jdk-22.0.2+9 -TEMURIN_FILENAME_VERSION=22.0.2_9 +TEMURIN_URL='https://github.com/adoptium/temurin23-binaries/releases/download' +TEMURIN_VERSION=jdk-23.0.1+11 +TEMURIN_FILENAME_VERSION=23.0.1_11 -BELLSOFT_URL='https://download.bell-sw.com/java/22.0.2%2B11' -BELLSOFT_VERSION=22.0.2+11 -BELLSOFT_DIR=jdk-22.0.2 +BELLSOFT_URL='https://download.bell-sw.com/java/23.0.1%2B13' +BELLSOFT_VERSION=23.0.1+13 +BELLSOFT_DIR=jdk-23.0.1 -BELLSOFT_WIN32_URL='https://download.bell-sw.com/java/21.0.4%2B9' -BELLSOFT_WIN32_VERSION=21.0.4+9 -BELLSOFT_WIN32_DIR=jdk-21.0.4 +BELLSOFT_WIN32_URL='https://download.bell-sw.com/java/21.0.5%2B11' +BELLSOFT_WIN32_VERSION=21.0.5+11 +BELLSOFT_WIN32_DIR=jdk-21.0.5 # Windows x86_32 filename="bellsoft-jdk$BELLSOFT_WIN32_VERSION-windows-i586.zip" @@ -40,7 +40,7 @@ unzip $filename mv $BELLSOFT_WIN32_DIR windows-x86_32 # Windows x86_64 -filename="OpenJDK22U-jdk_x64_windows_hotspot_$TEMURIN_FILENAME_VERSION.zip" +filename="OpenJDK23U-jdk_x64_windows_hotspot_$TEMURIN_FILENAME_VERSION.zip" curl -L -O "$TEMURIN_URL/$TEMURIN_VERSION/$filename" unzip $filename mv $TEMURIN_VERSION windows-x86_64 @@ -52,13 +52,13 @@ unzip $filename mv $BELLSOFT_DIR windows-aarch64 # MacOS x86_64 -filename="OpenJDK22U-jdk_x64_mac_hotspot_$TEMURIN_FILENAME_VERSION.tar.gz" +filename="OpenJDK23U-jdk_x64_mac_hotspot_$TEMURIN_FILENAME_VERSION.tar.gz" curl -L -O "$TEMURIN_URL/$TEMURIN_VERSION/$filename" mkdir macos-x86_64 tar -C macos-x86_64 --strip-components=1 -xvf $filename # MacOS aarch64 -filename="OpenJDK22U-jdk_aarch64_mac_hotspot_$TEMURIN_FILENAME_VERSION.tar.gz" +filename="OpenJDK23U-jdk_aarch64_mac_hotspot_$TEMURIN_FILENAME_VERSION.tar.gz" curl -L -O "$TEMURIN_URL/$TEMURIN_VERSION/$filename" mkdir macos-aarch64 tar -C macos-aarch64 --strip-components=1 -xvf $filename From 5c40ce26b975393d817ae04abbfd5e3970fb5d87 Mon Sep 17 00:00:00 2001 From: Joel Uckelman Date: Wed, 30 Oct 2024 15:15:13 +0000 Subject: [PATCH 107/131] Updated change log. --- CHANGES | 1 + dist/notes/data.json | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index 8d1e370a64..d87e3abb5b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,6 @@ 3.7.15 - ??? +* 13664: Upgraded bundled Java to 21.0.5 (32-bit Windows), 23.0.1 (all others) * 13558: Update logback configuration to prevent messages to console 3.7.14 - 18 August 2024 diff --git a/dist/notes/data.json b/dist/notes/data.json index 37feef15d0..2770674c3c 100644 --- a/dist/notes/data.json +++ b/dist/notes/data.json @@ -23,6 +23,7 @@ "bug_fixes": [ ], "other_improvements": [ + { "num": 13664, "desc": "Upgraded bundled Java to 21.0.5 (32-bit Windows), 23.0.1 (all others)" }, { "num": 13558, "desc": "Update logback configuration to prevent messages to console" } ] }, From bb08c87d559404da0eda5b211cd2040be0f4e051 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 31 Oct 2024 21:17:28 +0000 Subject: [PATCH 108/131] Bump com.puppycrawl.tools:checkstyle from 10.19.0 to 10.20.0 Bumps [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) from 10.19.0 to 10.20.0. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-10.19.0...checkstyle-10.20.0) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 921b51689a..bae1ac2d2d 100644 --- a/pom.xml +++ b/pom.xml @@ -100,7 +100,7 @@ com.puppycrawl.tools checkstyle - 10.19.0 + 10.20.0 From dbe14c4e638a711903aef1b8889555b6183b57f2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 31 Oct 2024 21:17:34 +0000 Subject: [PATCH 109/131] Bump org.asciidoctor:asciidoctor-maven-plugin from 3.0.0 to 3.1.0 Bumps [org.asciidoctor:asciidoctor-maven-plugin](https://github.com/asciidoctor/asciidoctor-maven-plugin) from 3.0.0 to 3.1.0. - [Release notes](https://github.com/asciidoctor/asciidoctor-maven-plugin/releases) - [Changelog](https://github.com/asciidoctor/asciidoctor-maven-plugin/blob/main/CHANGELOG.adoc) - [Commits](https://github.com/asciidoctor/asciidoctor-maven-plugin/compare/asciidoctor-maven-tools-3.0.0...asciidoctor-maven-tools-3.1.0) --- updated-dependencies: - dependency-name: org.asciidoctor:asciidoctor-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 921b51689a..2680fcbc1f 100644 --- a/pom.xml +++ b/pom.xml @@ -128,7 +128,7 @@ org.asciidoctor asciidoctor-maven-plugin - 3.0.0 + 3.1.0 org.codehaus.mojo From 177ef0ac3653dd5ade57f7b99d9e5394e770327d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 31 Oct 2024 21:17:28 +0000 Subject: [PATCH 110/131] Bump com.puppycrawl.tools:checkstyle from 10.19.0 to 10.20.0 Bumps [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) from 10.19.0 to 10.20.0. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-10.19.0...checkstyle-10.20.0) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index b5e79e6ac2..cf16b7ddcd 100644 --- a/pom.xml +++ b/pom.xml @@ -100,7 +100,7 @@ com.puppycrawl.tools checkstyle - 10.19.0 + 10.20.0 From b2d51536583470ecf497e1d72e92a5cfadb75728 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 31 Oct 2024 21:17:34 +0000 Subject: [PATCH 111/131] Bump org.asciidoctor:asciidoctor-maven-plugin from 3.0.0 to 3.1.0 Bumps [org.asciidoctor:asciidoctor-maven-plugin](https://github.com/asciidoctor/asciidoctor-maven-plugin) from 3.0.0 to 3.1.0. - [Release notes](https://github.com/asciidoctor/asciidoctor-maven-plugin/releases) - [Changelog](https://github.com/asciidoctor/asciidoctor-maven-plugin/blob/main/CHANGELOG.adoc) - [Commits](https://github.com/asciidoctor/asciidoctor-maven-plugin/compare/asciidoctor-maven-tools-3.0.0...asciidoctor-maven-tools-3.1.0) --- updated-dependencies: - dependency-name: org.asciidoctor:asciidoctor-maven-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index cf16b7ddcd..8c9dba2cda 100644 --- a/pom.xml +++ b/pom.xml @@ -128,7 +128,7 @@ org.asciidoctor asciidoctor-maven-plugin - 3.0.0 + 3.1.0 org.codehaus.mojo From 154a512a1b031fa436c2dfd9713874ade2e71460 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 21:19:02 +0000 Subject: [PATCH 112/131] Bump net.bytebuddy:byte-buddy from 1.15.7 to 1.15.8 Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.15.7 to 1.15.8. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.15.7...byte-buddy-1.15.8) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 3ed18afb83..a72aa410a6 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -192,7 +192,7 @@ net.bytebuddy byte-buddy - 1.15.7 + 1.15.8 test From e9aa9e2d244dabac89e75102084be39d655491b7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Nov 2024 21:19:02 +0000 Subject: [PATCH 113/131] Bump net.bytebuddy:byte-buddy from 1.15.7 to 1.15.8 Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.15.7 to 1.15.8. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.15.7...byte-buddy-1.15.8) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index eed27676b1..fdfd022671 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -192,7 +192,7 @@ net.bytebuddy byte-buddy - 1.15.7 + 1.15.8 test From 9668e9937aa5b51c86dd0519a3c97624596b674e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 21:22:27 +0000 Subject: [PATCH 114/131] Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.1 to 3.5.2 Bumps [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) from 3.5.1 to 3.5.2. - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.5.1...surefire-3.5.2) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-surefire-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 207e6b2234..7153d819e9 100644 --- a/pom.xml +++ b/pom.xml @@ -75,7 +75,7 @@ maven-surefire-plugin - 3.5.1 + 3.5.2 maven-resources-plugin From 3f3833bde51422ca96cb92bd298ff21905ee459b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 21:22:31 +0000 Subject: [PATCH 115/131] Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.10.1 to 3.11.1 Bumps [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 3.10.1 to 3.11.1. - [Release notes](https://github.com/apache/maven-javadoc-plugin/releases) - [Commits](https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-3.10.1...maven-javadoc-plugin-3.11.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-javadoc-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 207e6b2234..d0931a8d78 100644 --- a/pom.xml +++ b/pom.xml @@ -118,7 +118,7 @@ maven-javadoc-plugin - 3.10.1 + 3.11.1 com.github.spotbugs From 5c9daeaa67f3882899fb139748a189db4b0b6d10 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 21:22:49 +0000 Subject: [PATCH 116/131] Bump net.bytebuddy:byte-buddy from 1.15.8 to 1.15.10 Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.15.8 to 1.15.10. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.15.8...byte-buddy-1.15.10) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index a72aa410a6..806f24ed3c 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -192,7 +192,7 @@ net.bytebuddy byte-buddy - 1.15.8 + 1.15.10 test From c2ad3a50ea174a0a3d3354ae0e90dd746b0dda93 Mon Sep 17 00:00:00 2001 From: Joel Uckelman Date: Thu, 7 Nov 2024 17:48:47 +0000 Subject: [PATCH 117/131] Updated for the 3.7.15 release. --- CHANGES | 2 +- Makefile | 4 ++-- pom.xml | 2 +- release-prepare/pom.xml | 2 +- vassal-app/pom.xml | 2 +- vassal-deprecation/pom.xml | 2 +- vassal-doc/pom.xml | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGES b/CHANGES index d87e3abb5b..c63021e5f8 100644 --- a/CHANGES +++ b/CHANGES @@ -1,4 +1,4 @@ -3.7.15 - ??? +3.7.15 - 7 November 2024 * 13664: Upgraded bundled Java to 21.0.5 (32-bit Windows), 23.0.1 (all others) * 13558: Update logback configuration to prevent messages to console diff --git a/Makefile b/Makefile index 0190c6351f..c1744dcf63 100644 --- a/Makefile +++ b/Makefile @@ -51,9 +51,9 @@ VNUM:=3.7.15 # major-minor part of the version V_MAJ_MIN:=$(shell echo "$(VNUM)" | cut -f1,2 -d'.') -MAVEN_VERSION:=$(VNUM)-SNAPSHOT +#MAVEN_VERSION:=$(VNUM)-SNAPSHOT #MAVEN_VERSION:=$(VNUM)-beta5 -#MAVEN_VERSION:=$(VNUM) +MAVEN_VERSION:=$(VNUM) JARNAME:=vassal-app-$(MAVEN_VERSION) diff --git a/pom.xml b/pom.xml index 8c9dba2cda..4dbf04d1c3 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.vassalengine vassal-parent - 3.7.15-SNAPSHOT + 3.7.15 pom Vassal Engine diff --git a/release-prepare/pom.xml b/release-prepare/pom.xml index 5cec9fb3aa..7604eaf543 100644 --- a/release-prepare/pom.xml +++ b/release-prepare/pom.xml @@ -5,7 +5,7 @@ org.vassalengine vassal-parent - 3.7.15-SNAPSHOT + 3.7.15 release-prepare diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index fdfd022671..30e73ad194 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -6,7 +6,7 @@ org.vassalengine vassal-parent - 3.7.15-SNAPSHOT + 3.7.15 vassal-app diff --git a/vassal-deprecation/pom.xml b/vassal-deprecation/pom.xml index cdc063ae76..03614b4e1b 100644 --- a/vassal-deprecation/pom.xml +++ b/vassal-deprecation/pom.xml @@ -5,7 +5,7 @@ org.vassalengine vassal-parent - 3.7.15-SNAPSHOT + 3.7.15 vassal-deprecation diff --git a/vassal-doc/pom.xml b/vassal-doc/pom.xml index 4391859c2b..ac1bf4b726 100644 --- a/vassal-doc/pom.xml +++ b/vassal-doc/pom.xml @@ -5,7 +5,7 @@ org.vassalengine vassal-parent - 3.7.15-SNAPSHOT + 3.7.15 vassal-doc From 21dc285756b8df8e0b3cac71f61655b9a804c289 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 21:22:27 +0000 Subject: [PATCH 118/131] Bump org.apache.maven.plugins:maven-surefire-plugin from 3.5.1 to 3.5.2 Bumps [org.apache.maven.plugins:maven-surefire-plugin](https://github.com/apache/maven-surefire) from 3.5.1 to 3.5.2. - [Release notes](https://github.com/apache/maven-surefire/releases) - [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.5.1...surefire-3.5.2) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-surefire-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 4dbf04d1c3..daa756979f 100644 --- a/pom.xml +++ b/pom.xml @@ -75,7 +75,7 @@ maven-surefire-plugin - 3.5.1 + 3.5.2 maven-resources-plugin From fed42c34d85dbd0e3da8b3fb95b6fa046eaa3123 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 21:22:31 +0000 Subject: [PATCH 119/131] Bump org.apache.maven.plugins:maven-javadoc-plugin from 3.10.1 to 3.11.1 Bumps [org.apache.maven.plugins:maven-javadoc-plugin](https://github.com/apache/maven-javadoc-plugin) from 3.10.1 to 3.11.1. - [Release notes](https://github.com/apache/maven-javadoc-plugin/releases) - [Commits](https://github.com/apache/maven-javadoc-plugin/compare/maven-javadoc-plugin-3.10.1...maven-javadoc-plugin-3.11.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-javadoc-plugin dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index daa756979f..a9c8ca94ed 100644 --- a/pom.xml +++ b/pom.xml @@ -118,7 +118,7 @@ maven-javadoc-plugin - 3.10.1 + 3.11.1 com.github.spotbugs From d50491fa1104d678c46b5fed30e799ae8b6829a4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 Nov 2024 21:22:49 +0000 Subject: [PATCH 120/131] Bump net.bytebuddy:byte-buddy from 1.15.8 to 1.15.10 Bumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.15.8 to 1.15.10. - [Release notes](https://github.com/raphw/byte-buddy/releases) - [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md) - [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.15.8...byte-buddy-1.15.10) --- updated-dependencies: - dependency-name: net.bytebuddy:byte-buddy dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- vassal-app/pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 30e73ad194..4a4d2d444e 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -192,7 +192,7 @@ net.bytebuddy byte-buddy - 1.15.8 + 1.15.10 test From 1d4eeda4870f52d095fe934deed5e68c3f96c44b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Nov 2024 21:09:31 +0000 Subject: [PATCH 121/131] Bump com.puppycrawl.tools:checkstyle from 10.20.0 to 10.20.1 Bumps [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) from 10.20.0 to 10.20.1. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-10.20.0...checkstyle-10.20.1) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ba8bb26e2d..ae4c309a2b 100644 --- a/pom.xml +++ b/pom.xml @@ -100,7 +100,7 @@ com.puppycrawl.tools checkstyle - 10.20.0 + 10.20.1 From 5892740a9229df67f66b0d9cb361b9a5cc05c44c Mon Sep 17 00:00:00 2001 From: Joel Uckelman Date: Thu, 7 Nov 2024 21:45:41 +0000 Subject: [PATCH 122/131] Updated change log. --- CHANGES | 23 +++++++++++++++++++++++ dist/notes/data.json | 25 ++++++++++++++++++++++++- 2 files changed, 47 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index c63021e5f8..6cb3128090 100644 --- a/CHANGES +++ b/CHANGES @@ -1,7 +1,30 @@ 3.7.15 - 7 November 2024 +* 13678: Upgraded byte-buddy to 1.15.10 +* 13677: Upgraded maven-javadoc-plugin to 3.11.1 +* 13676: Upgraded manen-surfire-plugin to 3.5.2 +* 13669: Upgraded asciidoctor-maven-plugin to 3.1.0 +* 13668: Upgraded checkstyle to 10.20.0 * 13664: Upgraded bundled Java to 21.0.5 (32-bit Windows), 23.0.1 (all others) +* 13660: Upgraded maven-pmd-plugin to 3.26.0 +* 13659: Upgraded httpclient5 to 5.4.1 +* 13655: Upgraded maven-dependency-plugin to 3.8.1 +* 13654: Upgraded maven-checkstyle-plugin to 3.6.0 +* 13653: Upgraded logback-classic to 1.5.12 +* 13647: Upgraded maven-site-plugin to 3.21.0 +* 13646: Upgraded exec-maven-plugin to 3.5.0 +* 13645: Upgraded spotbugs-maven-plugin to 4.8.6.5 +* 13642: Upgraded junit-bom to 5.11.3 +* 13641: Upgraded asciidoctorj-pdf to 2.3.19 +* 13620: Upgraded batik to 1.18 +* 13614: Upgraded asm to 9.7.1 +* 13591: Upgraded commons-io to 2.17.0 +* 13573: Upgraded commons-lang3 to 3.17.0 +* 13572: Upgraded miglayout-swing to 11.4.2 * 13558: Update logback configuration to prevent messages to console +* 13548: Upgraded maven-deploy-plugin to 3.1.3 +* 13542: Upgraded maven-install-plugin to 3.1.3 +* 13540: Upgraded maven-artifact to 3.9.9 3.7.14 - 18 August 2024 diff --git a/dist/notes/data.json b/dist/notes/data.json index 2770674c3c..edd247dcdc 100644 --- a/dist/notes/data.json +++ b/dist/notes/data.json @@ -21,10 +21,33 @@ "new_features": [ ], "bug_fixes": [ + { "num": 13558, "desc": "Update logback configuration to prevent messages to console" } ], "other_improvements": [ + { "num": 13678, "desc": "Upgraded byte-buddy to 1.15.10" }, + { "num": 13677, "desc": "Upgraded maven-javadoc-plugin to 3.11.1" }, + { "num": 13676, "desc": "Upgraded manen-surfire-plugin to 3.5.2" }, + { "num": 13669, "desc": "Upgraded asciidoctor-maven-plugin to 3.1.0" }, + { "num": 13668, "desc": "Upgraded checkstyle to 10.20.0" }, { "num": 13664, "desc": "Upgraded bundled Java to 21.0.5 (32-bit Windows), 23.0.1 (all others)" }, - { "num": 13558, "desc": "Update logback configuration to prevent messages to console" } + { "num": 13660, "desc": "Upgraded maven-pmd-plugin to 3.26.0" }, + { "num": 13659, "desc": "Upgraded httpclient5 to 5.4.1" }, + { "num": 13655, "desc": "Upgraded maven-dependency-plugin to 3.8.1" }, + { "num": 13654, "desc": "Upgraded maven-checkstyle-plugin to 3.6.0" }, + { "num": 13653, "desc": "Upgraded logback-classic to 1.5.12" }, + { "num": 13647, "desc": "Upgraded maven-site-plugin to 3.21.0" }, + { "num": 13646, "desc": "Upgraded exec-maven-plugin to 3.5.0" }, + { "num": 13645, "desc": "Upgraded spotbugs-maven-plugin to 4.8.6.5" }, + { "num": 13642, "desc": "Upgraded junit-bom to 5.11.3" }, + { "num": 13641, "desc": "Upgraded asciidoctorj-pdf to 2.3.19" }, + { "num": 13620, "desc": "Upgraded batik to 1.18" }, + { "num": 13614, "desc": "Upgraded asm to 9.7.1" }, + { "num": 13591, "desc": "Upgraded commons-io to 2.17.0" }, + { "num": 13573, "desc": "Upgraded commons-lang3 to 3.17.0" }, + { "num": 13572, "desc": "Upgraded miglayout-swing to 11.4.2" }, + { "num": 13548, "desc": "Upgraded maven-deploy-plugin to 3.1.3" }, + { "num": 13542, "desc": "Upgraded maven-install-plugin to 3.1.3" }, + { "num": 13540, "desc": "Upgraded maven-artifact to 3.9.9" } ] }, { From 219eecda2328e818486c553b14e3f8ebb48302be Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 7 Nov 2024 21:09:31 +0000 Subject: [PATCH 123/131] Bump com.puppycrawl.tools:checkstyle from 10.20.0 to 10.20.1 Bumps [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) from 10.20.0 to 10.20.1. - [Release notes](https://github.com/checkstyle/checkstyle/releases) - [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-10.20.0...checkstyle-10.20.1) --- updated-dependencies: - dependency-name: com.puppycrawl.tools:checkstyle dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index a9c8ca94ed..b8c8bbfbf0 100644 --- a/pom.xml +++ b/pom.xml @@ -100,7 +100,7 @@ com.puppycrawl.tools checkstyle - 10.20.0 + 10.20.1 From 0f02f1b2aee0ca3e5b26174636d1c4ace42030d4 Mon Sep 17 00:00:00 2001 From: Joel Uckelman Date: Thu, 7 Nov 2024 21:49:58 +0000 Subject: [PATCH 124/131] Updated change log. --- CHANGES | 2 +- dist/notes/data.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 6cb3128090..256d210d4b 100644 --- a/CHANGES +++ b/CHANGES @@ -1,10 +1,10 @@ 3.7.15 - 7 November 2024 +* 13681: Upgraded checkstyle to 10.20.1 * 13678: Upgraded byte-buddy to 1.15.10 * 13677: Upgraded maven-javadoc-plugin to 3.11.1 * 13676: Upgraded manen-surfire-plugin to 3.5.2 * 13669: Upgraded asciidoctor-maven-plugin to 3.1.0 -* 13668: Upgraded checkstyle to 10.20.0 * 13664: Upgraded bundled Java to 21.0.5 (32-bit Windows), 23.0.1 (all others) * 13660: Upgraded maven-pmd-plugin to 3.26.0 * 13659: Upgraded httpclient5 to 5.4.1 diff --git a/dist/notes/data.json b/dist/notes/data.json index edd247dcdc..a04e7309ca 100644 --- a/dist/notes/data.json +++ b/dist/notes/data.json @@ -24,11 +24,11 @@ { "num": 13558, "desc": "Update logback configuration to prevent messages to console" } ], "other_improvements": [ + { "num": 13681, "desc": "Upgraded checkstyle to 10.20.1" }, { "num": 13678, "desc": "Upgraded byte-buddy to 1.15.10" }, { "num": 13677, "desc": "Upgraded maven-javadoc-plugin to 3.11.1" }, { "num": 13676, "desc": "Upgraded manen-surfire-plugin to 3.5.2" }, { "num": 13669, "desc": "Upgraded asciidoctor-maven-plugin to 3.1.0" }, - { "num": 13668, "desc": "Upgraded checkstyle to 10.20.0" }, { "num": 13664, "desc": "Upgraded bundled Java to 21.0.5 (32-bit Windows), 23.0.1 (all others)" }, { "num": 13660, "desc": "Upgraded maven-pmd-plugin to 3.26.0" }, { "num": 13659, "desc": "Upgraded httpclient5 to 5.4.1" }, From a130baa9155891492fb8652bffc849d7be67ce41 Mon Sep 17 00:00:00 2001 From: Joel Uckelman Date: Thu, 7 Nov 2024 23:39:20 +0000 Subject: [PATCH 125/131] Updated for 3.7.16 development. --- CHANGES | 2 ++ dist/notes/data.json | 10 ++++++++++ 2 files changed, 12 insertions(+) diff --git a/CHANGES b/CHANGES index 256d210d4b..ab216afbcb 100644 --- a/CHANGES +++ b/CHANGES @@ -1,3 +1,5 @@ +3.7.16 - ??? + 3.7.15 - 7 November 2024 * 13681: Upgraded checkstyle to 10.20.1 diff --git a/dist/notes/data.json b/dist/notes/data.json index a04e7309ca..8079027d3d 100644 --- a/dist/notes/data.json +++ b/dist/notes/data.json @@ -15,6 +15,16 @@ { "display_name": "Other", "suffix": "other.zip" } ], "changes": [ + { + "in": "3.7.16", + "since": "3.7.15", + "new_features": [ + ], + "bug_fixes": [ + ], + "other_improvements": [ + ] + }, { "in": "3.7.15", "since": "3.7.14", From 09008fa0386b60f9d94aa359c5c1d335f4b4d20d Mon Sep 17 00:00:00 2001 From: Joel Uckelman Date: Fri, 8 Nov 2024 00:04:12 +0000 Subject: [PATCH 126/131] Updated for 3.7.16 development. --- Makefile | 6 ++--- dist/notes/data.json | 47 -------------------------------------- pom.xml | 2 +- release-prepare/pom.xml | 2 +- vassal-app/pom.xml | 2 +- vassal-deprecation/pom.xml | 2 +- vassal-doc/pom.xml | 2 +- 7 files changed, 8 insertions(+), 55 deletions(-) diff --git a/Makefile b/Makefile index c1744dcf63..9681140d21 100644 --- a/Makefile +++ b/Makefile @@ -47,13 +47,13 @@ JDKDIR:=$(DISTDIR)/jdks JDOCDIR:=jdoc # numeric part of the version only -VNUM:=3.7.15 +VNUM:=3.7.16 # major-minor part of the version V_MAJ_MIN:=$(shell echo "$(VNUM)" | cut -f1,2 -d'.') -#MAVEN_VERSION:=$(VNUM)-SNAPSHOT +MAVEN_VERSION:=$(VNUM)-SNAPSHOT #MAVEN_VERSION:=$(VNUM)-beta5 -MAVEN_VERSION:=$(VNUM) +#MAVEN_VERSION:=$(VNUM) JARNAME:=vassal-app-$(MAVEN_VERSION) diff --git a/dist/notes/data.json b/dist/notes/data.json index 8079027d3d..812d9b5df3 100644 --- a/dist/notes/data.json +++ b/dist/notes/data.json @@ -59,53 +59,6 @@ { "num": 13542, "desc": "Upgraded maven-install-plugin to 3.1.3" }, { "num": 13540, "desc": "Upgraded maven-artifact to 3.9.9" } ] - }, - { - "in": "3.7.14", - "since": "3.7.13", - "new_features": [ - ], - "bug_fixes": [ - { "num": 13530, "desc": "Add saved games to Open Recent list on save" }, - { "num": 13509, "desc": "Prevent NoSuchMethod exception when opening Scenario Options in Editor" } - ], - "other_improvements": [ - { "num": 13497, "desc": "Report HTML load errors as Bad Module Data, not Vassal bugs" } - ] - }, - { - "in": "3.7.13", - "since": "3.7.12", - "new_features": [ - ], - "bug_fixes": [ - { "num": 13447, "desc": "Maintain all attachments when refreshing Pre-defined scenarios" }, - { "num": 13429, "desc": "Prevent crash when editing module with name shorter than 3 characters" }, - { "num": 13408, "desc": "Ensure pieces are indexed after Layer Change" }, - { "num": 13405, "desc": "At-Start Stack positioning tool now expands prototypes before displaying piece" }, - { "num": 13400, "desc": "Prevent crashes when refreshing counters with fewer Can Rotate facing" }, - { "num": 13398, "desc": "Ensure a GKC is never applied to same piece twice if it moves" }, - { "num": 13395, "desc": "Fix Invisibility documentation" }, - { "num": 13384, "desc": "Prevent crash in Does Not Stack during Edit Contained Pieces" }, - { "num": 13365, "desc": "Fix NPE When editing Game Piece Images" }, - { "num": 13360, "desc": "Coerce Regular Expression operator arguments to be strings to prevent Bad Data errors" }, - { "num": 13339, "desc": "Prevent NPE during game load" }, - { "num": 13336, "desc": "Auto-attach does not attach to self when piece is added to a stack" }, - { "num": 13324, "desc": "Fixed bad link to GamePiece page in Reference Manual" }, - { "num": 13315, "desc": "Preserve all attachments across save/load" }, - { "num": 11884, "desc": "Ensure OldMat is set when a piece leaves a Mat" } - ], - "other_improvements": [ - { "num": 13496, "desc": "Remove workaround for Windows file dialog bug (12152)" }, - { "num": 13495, "desc": "Upgrade bundled Java to 22.0.2, 21.0.4 (32-bit Windows)" }, - { "num": 13490, "desc": "Suppress error messages from expressions in text Labels during module load, or in Game Piece Palettes" }, - { "num": 13452, "desc": "Scenario option improvements" }, - { "num": 13450, "desc": "Make Locked Scenario Options more legible" }, - { "num": 13440, "desc": "Improve Save and Load times by ignoring empty Stacks" }, - { "num": 13402, "desc": "Add a visual validator for Prototype name in Prototype trait" }, - { "num": 13393, "desc": "Prevent slowdown when editing multiple Prototypes in sequence" }, - { "num": 13359, "desc": "Report I/O Errors during Predefined Setup refresh in Refresher log, not as a Vassal bug" } - ] } ] } diff --git a/pom.xml b/pom.xml index b8c8bbfbf0..119c2d2b9f 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ org.vassalengine vassal-parent - 3.7.15 + 3.7.16-SNAPSHOT pom Vassal Engine diff --git a/release-prepare/pom.xml b/release-prepare/pom.xml index 7604eaf543..5e38c27cdc 100644 --- a/release-prepare/pom.xml +++ b/release-prepare/pom.xml @@ -5,7 +5,7 @@ org.vassalengine vassal-parent - 3.7.15 + 3.7.16-SNAPSHOT release-prepare diff --git a/vassal-app/pom.xml b/vassal-app/pom.xml index 4a4d2d444e..d6fd237e16 100644 --- a/vassal-app/pom.xml +++ b/vassal-app/pom.xml @@ -6,7 +6,7 @@ org.vassalengine vassal-parent - 3.7.15 + 3.7.16-SNAPSHOT vassal-app diff --git a/vassal-deprecation/pom.xml b/vassal-deprecation/pom.xml index 03614b4e1b..6fae24a54b 100644 --- a/vassal-deprecation/pom.xml +++ b/vassal-deprecation/pom.xml @@ -5,7 +5,7 @@ org.vassalengine vassal-parent - 3.7.15 + 3.7.16-SNAPSHOT vassal-deprecation diff --git a/vassal-doc/pom.xml b/vassal-doc/pom.xml index ac1bf4b726..1d72028e1b 100644 --- a/vassal-doc/pom.xml +++ b/vassal-doc/pom.xml @@ -5,7 +5,7 @@ org.vassalengine vassal-parent - 3.7.15 + 3.7.16-SNAPSHOT vassal-doc From 85e0e11e3daa7c83abc32d2f03fa4f19c34425eb Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 21:23:03 +0000 Subject: [PATCH 127/131] Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.5 to 4.8.6.6 Bumps [com.github.spotbugs:spotbugs-maven-plugin](https://github.com/spotbugs/spotbugs-maven-plugin) from 4.8.6.5 to 4.8.6.6. - [Release notes](https://github.com/spotbugs/spotbugs-maven-plugin/releases) - [Commits](https://github.com/spotbugs/spotbugs-maven-plugin/compare/spotbugs-maven-plugin-4.8.6.5...spotbugs-maven-plugin-4.8.6.6) --- updated-dependencies: - dependency-name: com.github.spotbugs:spotbugs-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ae4c309a2b..2af338caf3 100644 --- a/pom.xml +++ b/pom.xml @@ -123,7 +123,7 @@ com.github.spotbugs spotbugs-maven-plugin - 4.8.6.5 + 4.8.6.6 org.asciidoctor From ce6b76dfb9f409c14836ab16b6b143e13ff26fae Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Nov 2024 21:12:10 +0000 Subject: [PATCH 128/131] Bump org.asciidoctor:asciidoctor-maven-plugin from 3.1.0 to 3.1.1 Bumps [org.asciidoctor:asciidoctor-maven-plugin](https://github.com/asciidoctor/asciidoctor-maven-plugin) from 3.1.0 to 3.1.1. - [Release notes](https://github.com/asciidoctor/asciidoctor-maven-plugin/releases) - [Changelog](https://github.com/asciidoctor/asciidoctor-maven-plugin/blob/main/CHANGELOG.adoc) - [Commits](https://github.com/asciidoctor/asciidoctor-maven-plugin/compare/asciidoctor-maven-tools-3.1.0...asciidoctor-maven-tools-3.1.1) --- updated-dependencies: - dependency-name: org.asciidoctor:asciidoctor-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ae4c309a2b..30b3d460ae 100644 --- a/pom.xml +++ b/pom.xml @@ -128,7 +128,7 @@ org.asciidoctor asciidoctor-maven-plugin - 3.1.0 + 3.1.1 org.codehaus.mojo From 4438f6573d02492d4b0d5c86545450b7f14b4e4c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 21:23:03 +0000 Subject: [PATCH 129/131] Bump com.github.spotbugs:spotbugs-maven-plugin from 4.8.6.5 to 4.8.6.6 Bumps [com.github.spotbugs:spotbugs-maven-plugin](https://github.com/spotbugs/spotbugs-maven-plugin) from 4.8.6.5 to 4.8.6.6. - [Release notes](https://github.com/spotbugs/spotbugs-maven-plugin/releases) - [Commits](https://github.com/spotbugs/spotbugs-maven-plugin/compare/spotbugs-maven-plugin-4.8.6.5...spotbugs-maven-plugin-4.8.6.6) --- updated-dependencies: - dependency-name: com.github.spotbugs:spotbugs-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 119c2d2b9f..522a27d8c4 100644 --- a/pom.xml +++ b/pom.xml @@ -123,7 +123,7 @@ com.github.spotbugs spotbugs-maven-plugin - 4.8.6.5 + 4.8.6.6 org.asciidoctor From e6f38dbfe9cedf60822048dc73047893885343fd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 14 Nov 2024 21:12:10 +0000 Subject: [PATCH 130/131] Bump org.asciidoctor:asciidoctor-maven-plugin from 3.1.0 to 3.1.1 Bumps [org.asciidoctor:asciidoctor-maven-plugin](https://github.com/asciidoctor/asciidoctor-maven-plugin) from 3.1.0 to 3.1.1. - [Release notes](https://github.com/asciidoctor/asciidoctor-maven-plugin/releases) - [Changelog](https://github.com/asciidoctor/asciidoctor-maven-plugin/blob/main/CHANGELOG.adoc) - [Commits](https://github.com/asciidoctor/asciidoctor-maven-plugin/compare/asciidoctor-maven-tools-3.1.0...asciidoctor-maven-tools-3.1.1) --- updated-dependencies: - dependency-name: org.asciidoctor:asciidoctor-maven-plugin dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 522a27d8c4..ef020f96c3 100644 --- a/pom.xml +++ b/pom.xml @@ -128,7 +128,7 @@ org.asciidoctor asciidoctor-maven-plugin - 3.1.0 + 3.1.1 org.codehaus.mojo From 7d24265dabb186c614ad2752e1e8e70ce0fa8399 Mon Sep 17 00:00:00 2001 From: Joel Uckelman Date: Thu, 14 Nov 2024 22:31:30 +0000 Subject: [PATCH 131/131] Updated change log. --- CHANGES | 3 +++ dist/notes/data.json | 2 ++ 2 files changed, 5 insertions(+) diff --git a/CHANGES b/CHANGES index ab216afbcb..d836bf58fd 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,8 @@ 3.7.16 - ??? +* 13693: Upgraded asciidoctor-maven-plugin to 3.1.1 +* 13688: Upgraded spotbugs-maven-plugin to 4.8.6.6 + 3.7.15 - 7 November 2024 * 13681: Upgraded checkstyle to 10.20.1 diff --git a/dist/notes/data.json b/dist/notes/data.json index 812d9b5df3..e3fa73c502 100644 --- a/dist/notes/data.json +++ b/dist/notes/data.json @@ -23,6 +23,8 @@ "bug_fixes": [ ], "other_improvements": [ + { "num": 13693, "desc": "Upgraded asciidoctor-maven-plugin to 3.1.1" }, + { "num": 13688, "desc": "Upgraded spotbugs-maven-plugin to 4.8.6.6" } ] }, {