From bc0495a68ff9f84affcc601756899d951bbaffb6 Mon Sep 17 00:00:00 2001 From: Ryan Date: Sat, 5 Feb 2022 23:32:19 +0000 Subject: [PATCH 01/17] Update SECURITY.md Fixes to update the documentation based on actively supported versions. --- SECURITY.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/SECURITY.md b/SECURITY.md index a18bd56e..469e95d3 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -18,7 +18,6 @@ These versions are no longer under active development, however we will look to r | Version | Supported | Support End: | | ------------------- | ------------------ | ------------ | -| 2021.06 | :white_check_mark: | October 2021 | ### No Longer Supported @@ -26,8 +25,9 @@ These versions are no longer supported at all. It is strongly advised to update | Version | Supported | Support Ended: | | ------------------- | ------------------ | ------------------- | -| 2021.05 | :white_check_mark: | September 2021 | -| 2021.04 | :white_check_mark: | July 2021 | +| 2021.06 | :x: | October 2021 | +| 2021.05 | :x: | September 2021 | +| 2021.04 | :x: | July 2021 | | 2021.02 | :x: | 6 June 2021 | | 2020.11 | :x: | 3 May 2021 | | 6.0.x (Pre-Release) | :x: | December 2020 | From 76ce98621af2207f0c06fd57706ffa651ca40e9e Mon Sep 17 00:00:00 2001 From: Ryan Date: Sun, 6 Mar 2022 14:42:45 +0000 Subject: [PATCH 02/17] Corrected now that we're targeting the 2022.02 relase. --- SECURITY.md | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/SECURITY.md b/SECURITY.md index 469e95d3..65277440 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -9,15 +9,16 @@ In terms of plugin releases, our support matrix is as follows: ### Actively Supported These versions are currently actively supported by our team, and you should expect security patches where appropriate for these versions. -| Version | Supported | Support End: | -| ------------------- | ------------------ | ------------------------------ | -| 2021.09 | :white_check_mark: | No Earlier than December 2021 | +| Version | Supported | Support End: | +| ------------------- | ---------- | ------------------------------ | +| 2022.02 | ✅ | No Earlier than May 2022 | ### Legacy Supported These versions are no longer under active development, however we will look to release critical secuirty patches where appropriate. -| Version | Supported | Support End: | -| ------------------- | ------------------ | ------------ | +| Version | Supported | Support End: | +| ------------------- | ---------- | ------------ | +| 2021.09 | ⚠️ | April 2022 | ### No Longer Supported From 733f002a87e50c11ea9c420a7e46a70f81bb652c Mon Sep 17 00:00:00 2001 From: Wild1145 Date: Sun, 27 Mar 2022 19:49:16 +0100 Subject: [PATCH 03/17] Bump to RC02 and fix Netbeans compile issue. --- nb-configuration.xml | 2 +- pom.xml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/nb-configuration.xml b/nb-configuration.xml index 65f12570..08e4e03c 100644 --- a/nb-configuration.xml +++ b/nb-configuration.xml @@ -13,7 +13,7 @@ You can copy and paste the single properties, into the pom.xml file and the IDE That way multiple projects can share the same settings (useful for formatting rules for example). Any value defined here will override the pom.xml file value but is only applicable to the current project. --> - JDK_11 + JDK_17 true diff --git a/pom.xml b/pom.xml index f8c74766..6e5afc68 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ me.totalfreedom TotalFreedomMod - 2022.02-RC01 + 2022.02-RC02 jar From e6a20e17572a9d1104f5fce8f62633f4d68661ff Mon Sep 17 00:00:00 2001 From: ayunami2000 Date: Sun, 17 Apr 2022 14:58:58 -0700 Subject: [PATCH 04/17] fix httpd log spam fix httpd log spam with invalid url encoded strings (lol) --- .../java/me/totalfreedom/totalfreedommod/httpd/NanoHTTPD.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/me/totalfreedom/totalfreedommod/httpd/NanoHTTPD.java b/src/main/java/me/totalfreedom/totalfreedommod/httpd/NanoHTTPD.java index c0566cc1..bd045b95 100644 --- a/src/main/java/me/totalfreedom/totalfreedommod/httpd/NanoHTTPD.java +++ b/src/main/java/me/totalfreedom/totalfreedommod/httpd/NanoHTTPD.java @@ -337,12 +337,12 @@ public abstract class NanoHTTPD */ protected String decodePercent(String str) { - String decoded = null; + String decoded = str; try { decoded = URLDecoder.decode(str, "UTF8"); } - catch (UnsupportedEncodingException ignored) + catch (UnsupportedEncodingException | IllegalArgumentException ignored) { } return decoded; From adbe125283eb16528f6341c82eb2cb7f10e5ffb3 Mon Sep 17 00:00:00 2001 From: Video Date: Wed, 20 Apr 2022 17:03:13 -0600 Subject: [PATCH 05/17] increments version --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 6e5afc68..78d69ac6 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ me.totalfreedom TotalFreedomMod - 2022.02-RC02 + 2022.02-RC03 jar From 951f3c91d9f4f4614172d27d665e2f0b63912091 Mon Sep 17 00:00:00 2001 From: Paldiu Date: Sun, 1 May 2022 09:31:20 -0500 Subject: [PATCH 06/17] 2022.02-RELEASE Versioning - Changed the version to 2022.02-RELEASE - Changed the API version to 1.17 --- pom.xml | 2 +- src/main/resources/plugin.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 78d69ac6..7dc798b3 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ me.totalfreedom TotalFreedomMod - 2022.02-RC03 + 2022.02-RELEASE jar diff --git a/src/main/resources/plugin.yml b/src/main/resources/plugin.yml index d5bd702c..308beb03 100644 --- a/src/main/resources/plugin.yml +++ b/src/main/resources/plugin.yml @@ -14,4 +14,4 @@ softdepend: - JDA - Votifier authors: [Madgeek1450, Prozza] -api-version: "1.16" \ No newline at end of file +api-version: "1.17" \ No newline at end of file From c913b7ae746aa8e44fe981c026d32fea65a1d041 Mon Sep 17 00:00:00 2001 From: Paldiu Date: Sun, 1 May 2022 09:41:53 -0500 Subject: [PATCH 07/17] Set Maven Shade version to 3.3.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 7dc798b3..ed2534c7 100644 --- a/pom.xml +++ b/pom.xml @@ -408,7 +408,7 @@ org.apache.maven.plugins maven-shade-plugin - 3.3.1-SNAPSHOT + 3.3.0 package From 7ec053c867b4c705317a7b46db7dcb3fe5517cb2 Mon Sep 17 00:00:00 2001 From: Paldiu Date: Sun, 1 May 2022 09:55:47 -0500 Subject: [PATCH 08/17] Adjusted version Removed "-RELEASE" --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index ed2534c7..58c6cee0 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ me.totalfreedom TotalFreedomMod - 2022.02-RELEASE + 2022.02 jar From ecc92589e9201ac15df5b26edca707553f0a4c8a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 3 Jun 2022 15:04:13 +0100 Subject: [PATCH 09/17] Bump codacy/codacy-analysis-cli-action from 4.0.0 to 4.0.2 (#209) Bumps [codacy/codacy-analysis-cli-action](https://github.com/codacy/codacy-analysis-cli-action) from 4.0.0 to 4.0.2. - [Release notes](https://github.com/codacy/codacy-analysis-cli-action/releases) - [Commits](https://github.com/codacy/codacy-analysis-cli-action/compare/4.0.0...4.0.2) --- updated-dependencies: - dependency-name: codacy/codacy-analysis-cli-action dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/codacy-analysis.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/codacy-analysis.yml b/.github/workflows/codacy-analysis.yml index e5aa4641..94ddf3a1 100644 --- a/.github/workflows/codacy-analysis.yml +++ b/.github/workflows/codacy-analysis.yml @@ -25,7 +25,7 @@ jobs: # Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis - name: Run Codacy Analysis CLI - uses: codacy/codacy-analysis-cli-action@4.0.0 + uses: codacy/codacy-analysis-cli-action@4.0.2 with: # Check https://github.com/codacy/codacy-analysis-cli#project-token to get your project token from your Codacy repository # You can also omit the token and run the tools that support default configurations From 68bcabe5c245a2d8e9219ab469c44445e190c928 Mon Sep 17 00:00:00 2001 From: ayunami2000 Date: Fri, 3 Jun 2022 13:27:37 -0400 Subject: [PATCH 10/17] fix httpd log spam (#223) fix httpd log spam with invalid url encoded strings (lol) Co-authored-by: Paldiu Co-authored-by: Ryan --- .../java/me/totalfreedom/totalfreedommod/httpd/NanoHTTPD.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/me/totalfreedom/totalfreedommod/httpd/NanoHTTPD.java b/src/main/java/me/totalfreedom/totalfreedommod/httpd/NanoHTTPD.java index c0566cc1..bd045b95 100644 --- a/src/main/java/me/totalfreedom/totalfreedommod/httpd/NanoHTTPD.java +++ b/src/main/java/me/totalfreedom/totalfreedommod/httpd/NanoHTTPD.java @@ -337,12 +337,12 @@ public abstract class NanoHTTPD */ protected String decodePercent(String str) { - String decoded = null; + String decoded = str; try { decoded = URLDecoder.decode(str, "UTF8"); } - catch (UnsupportedEncodingException ignored) + catch (UnsupportedEncodingException | IllegalArgumentException ignored) { } return decoded; From 73eb3226ee8a74d2e4061073bcfb58eb31752b7d Mon Sep 17 00:00:00 2001 From: ayunami2000 Date: Sat, 4 Jun 2022 09:59:35 -0400 Subject: [PATCH 11/17] allow spawn eggs to do SOMETHING (#219) * allow spawn eggs to do SOMETHING they now spawn a mob despite the mob having zero nbt from the spawn egg. "it's better than nothing" as one might say. * mushroom cow moment * formatting/style + remove extra change * :skull: :skull: * :skull: :skull: :skull: :skull: :skull: :skull: :skull: :skull: Co-authored-by: Paldiu Co-authored-by: Ryan --- .../blocking/InteractBlocker.java | 30 +++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/src/main/java/me/totalfreedom/totalfreedommod/blocking/InteractBlocker.java b/src/main/java/me/totalfreedom/totalfreedommod/blocking/InteractBlocker.java index 2e53f9de..17f6c5fe 100644 --- a/src/main/java/me/totalfreedom/totalfreedommod/blocking/InteractBlocker.java +++ b/src/main/java/me/totalfreedom/totalfreedommod/blocking/InteractBlocker.java @@ -5,6 +5,8 @@ import me.totalfreedom.totalfreedommod.config.ConfigEntry; import me.totalfreedom.totalfreedommod.util.Groups; import org.bukkit.ChatColor; import org.bukkit.Material; +import org.bukkit.block.Block; +import org.bukkit.entity.EntityType; import org.bukkit.entity.Player; import org.bukkit.event.EventHandler; import org.bukkit.event.EventPriority; @@ -79,9 +81,33 @@ public class InteractBlocker extends FreedomService if (Groups.SPAWN_EGGS.contains(event.getMaterial())) { - player.getInventory().clear(player.getInventory().getHeldItemSlot()); - player.sendMessage(ChatColor.GRAY + "Spawn eggs are currently disabled."); event.setCancelled(true); + Block clickedBlock = event.getClickedBlock(); + if (clickedBlock == null) + { + return; + } + EntityType eggType = null; + try + { + Material mat = event.getMaterial(); + if (mat == Material.MOOSHROOM_SPAWN_EGG) + { + eggType = EntityType.MUSHROOM_COW; + } + else + { + eggType = EntityType.valueOf(mat.name().substring(0, mat.name().length() - 10)); + } + } + catch (IllegalArgumentException ignored) + { + // + } + if (eggType != null) + { + clickedBlock.getWorld().spawnEntity(clickedBlock.getLocation().add(event.getBlockFace().getDirection()).add(0.5, 0.5, 0.5), eggType); + } return; } From 52a39aa9925c2e7e12413e1d61069ed830bed4bf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 5 Jun 2022 00:15:42 +0100 Subject: [PATCH 12/17] Bump github/codeql-action from 1 to 2 (#225) Bumps [github/codeql-action](https://github.com/github/codeql-action) from 1 to 2. - [Release notes](https://github.com/github/codeql-action/releases) - [Changelog](https://github.com/github/codeql-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/github/codeql-action/compare/v1...v2) --- updated-dependencies: - dependency-name: github/codeql-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/codacy-analysis.yml | 2 +- .github/workflows/codeql-analysis.yml | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codacy-analysis.yml b/.github/workflows/codacy-analysis.yml index 94ddf3a1..09116bb6 100644 --- a/.github/workflows/codacy-analysis.yml +++ b/.github/workflows/codacy-analysis.yml @@ -41,6 +41,6 @@ jobs: # Upload the SARIF file generated in the previous step - name: Upload SARIF results file - uses: github/codeql-action/upload-sarif@v1 + uses: github/codeql-action/upload-sarif@v2 with: sarif_file: results.sarif diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index eaf30927..6fe213ab 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -46,7 +46,7 @@ jobs: # Initializes the CodeQL tools for scanning. - name: Initialize CodeQL - uses: github/codeql-action/init@v1 + uses: github/codeql-action/init@v2 with: languages: ${{ matrix.language }} # If you wish to specify custom queries, you can do so here or in a config file. @@ -57,7 +57,7 @@ jobs: # Autobuild attempts to build any compiled languages (C/C++, C#, or Java). # If this step fails, then you should remove it and run the build manually (see below) - name: Autobuild - uses: github/codeql-action/autobuild@v1 + uses: github/codeql-action/autobuild@v2 # ℹ️ Command-line programs to run using the OS shell. # 📚 https://git.io/JvXDl @@ -71,4 +71,4 @@ jobs: # make release - name: Perform CodeQL Analysis - uses: github/codeql-action/analyze@v1 + uses: github/codeql-action/analyze@v2 From dcdaecf9b04f12b9affafd15a1c82021a8e9f235 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 5 Jun 2022 13:15:26 +0100 Subject: [PATCH 13/17] Bump aormsby/Fork-Sync-With-Upstream-action from 2.1 to 3.3 (#230) Bumps [aormsby/Fork-Sync-With-Upstream-action](https://github.com/aormsby/Fork-Sync-With-Upstream-action) from 2.1 to 3.3. - [Release notes](https://github.com/aormsby/Fork-Sync-With-Upstream-action/releases) - [Commits](https://github.com/aormsby/Fork-Sync-With-Upstream-action/compare/v2.1...v3.3) --- updated-dependencies: - dependency-name: aormsby/Fork-Sync-With-Upstream-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/downstream.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/downstream.yml b/.github/workflows/downstream.yml index b5e72dcc..af5ce2fb 100644 --- a/.github/workflows/downstream.yml +++ b/.github/workflows/downstream.yml @@ -26,7 +26,7 @@ jobs: # Step 2: run this sync action - specify the upstream repo, upstream branch to sync with, and target sync branch - name: Pull (Fast-Forward) upstream changes id: sync - uses: aormsby/Fork-Sync-With-Upstream-action@v2.1 + uses: aormsby/Fork-Sync-With-Upstream-action@v3.3 with: upstream_repository: AtlasMediaGroup/TotalFreedomMod upstream_branch: main From 0f2d596b7afe4bfbe741235f3140147fd93a085c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 5 Jun 2022 13:43:26 +0100 Subject: [PATCH 14/17] Bump actions/setup-java from 2.3.0 to 3.3.0 (#228) Bumps [actions/setup-java](https://github.com/actions/setup-java) from 2.3.0 to 3.3.0. - [Release notes](https://github.com/actions/setup-java/releases) - [Commits](https://github.com/actions/setup-java/compare/v2.3.0...v3.3.0) --- updated-dependencies: - dependency-name: actions/setup-java dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/java17-maven.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 6fe213ab..1a1a5b83 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -38,7 +38,7 @@ jobs: uses: actions/checkout@v2 - name: Setup Java JDK - uses: actions/setup-java@v2.3.0 + uses: actions/setup-java@v3.3.0 with: # The Java version to make available on the path. Takes a whole or semver Java version, or 1.x syntax (e.g. 1.8 => Java 8.x). Early access versions can be specified in the form of e.g. 14-ea, 14.0.0-ea, or 14.0.0-ea.28 java-version: 17 diff --git a/.github/workflows/java17-maven.yml b/.github/workflows/java17-maven.yml index 43d090ab..4a1b3682 100644 --- a/.github/workflows/java17-maven.yml +++ b/.github/workflows/java17-maven.yml @@ -13,7 +13,7 @@ jobs: # Java 16 Builds - name: Set up JDK 17 - uses: actions/setup-java@v2.3.0 + uses: actions/setup-java@v3.3.0 with: java-version: 17 distribution: 'adopt' From 3c4b4140ce9ada2d8467e6a68f285850231b7ec6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 5 Jun 2022 16:29:29 +0100 Subject: [PATCH 15/17] Bump actions/checkout from 2 to 3 (#202) Bumps [actions/checkout](https://github.com/actions/checkout) from 2 to 3. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/checkout dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- .github/workflows/codacy-analysis.yml | 2 +- .github/workflows/codeql-analysis.yml | 2 +- .github/workflows/downstream.yml | 2 +- .github/workflows/java17-maven.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/codacy-analysis.yml b/.github/workflows/codacy-analysis.yml index 09116bb6..d4f05a9e 100644 --- a/.github/workflows/codacy-analysis.yml +++ b/.github/workflows/codacy-analysis.yml @@ -21,7 +21,7 @@ jobs: steps: # Checkout the repository to the GitHub Actions runner - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 # Execute Codacy Analysis CLI and generate a SARIF output with the security issues identified during the analysis - name: Run Codacy Analysis CLI diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml index 1a1a5b83..972ab7f7 100644 --- a/.github/workflows/codeql-analysis.yml +++ b/.github/workflows/codeql-analysis.yml @@ -35,7 +35,7 @@ jobs: steps: - name: Checkout repository - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup Java JDK uses: actions/setup-java@v3.3.0 diff --git a/.github/workflows/downstream.yml b/.github/workflows/downstream.yml index af5ce2fb..ea613917 100644 --- a/.github/workflows/downstream.yml +++ b/.github/workflows/downstream.yml @@ -18,7 +18,7 @@ jobs: steps: # Step 1: run a standard checkout action, provided by github - name: Checkout main - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: main # submodules: 'recursive' ### may be needed in your situation diff --git a/.github/workflows/java17-maven.yml b/.github/workflows/java17-maven.yml index 4a1b3682..6f55c804 100644 --- a/.github/workflows/java17-maven.yml +++ b/.github/workflows/java17-maven.yml @@ -9,7 +9,7 @@ jobs: steps: # Checkout the code - - uses: actions/checkout@v1 + - uses: actions/checkout@v3 # Java 16 Builds - name: Set up JDK 17 From 9d2555cd034ad57d85070fc3d6635a3990322700 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 5 Jun 2022 15:31:57 +0000 Subject: [PATCH 16/17] Bump maven-compiler-plugin from 3.8.1 to 3.10.1 Bumps [maven-compiler-plugin](https://github.com/apache/maven-compiler-plugin) from 3.8.1 to 3.10.1. - [Release notes](https://github.com/apache/maven-compiler-plugin/releases) - [Commits](https://github.com/apache/maven-compiler-plugin/compare/maven-compiler-plugin-3.8.1...maven-compiler-plugin-3.10.1) --- updated-dependencies: - dependency-name: org.apache.maven.plugins:maven-compiler-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 c18a91f9..f5efaa2f 100644 --- a/pom.xml +++ b/pom.xml @@ -267,7 +267,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.8.1 + 3.10.1 TotalFreedomMod.jar 17 From d7261627ff32aa2e4239d9776865c43117cf5ddf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 5 Jun 2022 18:39:30 +0000 Subject: [PATCH 17/17] Bump worldedit-bukkit from 7.2.8 to 7.2.10 Bumps worldedit-bukkit from 7.2.8 to 7.2.10. --- updated-dependencies: - dependency-name: com.sk89q.worldedit:worldedit-bukkit 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 f5efaa2f..7134f378 100644 --- a/pom.xml +++ b/pom.xml @@ -151,7 +151,7 @@ com.sk89q.worldedit worldedit-bukkit - 7.2.8 + 7.2.10 provided