Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependency world.bentobox:bentobox to v2.7.0 - autoclosed #87

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 9, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
world.bentobox:bentobox 2.3.0-SNAPSHOT -> 2.7.0 age adoption passing confidence

Release Notes

BentoBoxWorld/BentoBox (world.bentobox:bentobox)

v2.7.0

Compare Source

Summary of changes

  • Support for 1.21.3
  • Fixes the use of hex color codes in chat, which were broken in the last release, e.g., "&#ff00ff magenta!"
  • Improves the admin Purge command operation (see below)
  • Changes the homes command to show a clickable GUI of the player's island homes instead of just a text list.
  • Improves the Island cache so that islands do not have to be loaded from the database if not required - especially important for larger servers (> 10,000 islands)
  • Improved the customizable Panel API
Improvements to Admin Purge command

Purge is an admin command that will delete islands that have owners/teams that have not logged in for a while. You specify the number of days, and the purge command will let you know how many islands are older than without a login. You can then confirm and they will be deleted. The default purge command will delete one island at a time, so if you have a lot of them, it will take a while.

The old Purge command relied on Bukkit's API to find out when the player last logged in, however, this data can often be lost on the server, due to upgrades, backups, etc., and so was unreliable. This version of BentoBox will use that data if it is available, but also store the player's last login time in BentoBox's database. To get the ball rolling you must run the Purge command at least once - you do not have to actually purge anything because that will set the player data as much as possible.

If you have a lot of islands, like you haven't purged in a while, and your world files are large, then it may be better to use a plugin like Regionerator which when set up correctly, will actually delete unused regions, thus reducing disk space. BentoBox is compatible with this plugin. To find out more read our docs on Regionerator.

Compatibility

✔️ Minecraft 1.21.3, 1.20.6, earlier versions maybe.
✔️ Java 17, but recommend to run on Java 21
✔️ Addons may need to be updated to their latest version to work with this version of BentoBox
❌ Note that Multiverse is not compatible with the Boxed game mode addon

Downloading

It's a good idea to use our download site where you can pick and choose add-ons: https://download.bentobox.world.

Upgrading

  1. As always, take backups just in case. (Make a copy of everything!)
  2. Stop the server
  3. Replace the BentoBox jar with this one
  4. Download the latest versions of all your addons and put them in the Addons folder
  5. Restart the server
  6. You should be good to go!

Legend

  • 🔡 locale files may need to be regenerated or updated.
  • ⚙️ config options have been removed, renamed or added.
  • 🔺 special attention needed.

What's Changed

Full Changelog: BentoBoxWorld/BentoBox@2.6.0...2.7.0

v2.6.0

Compare Source

Summary of changes

  • New admin command - resethome - this will reset a player's default home to the overworld default, or close to it. Useful if a player mistakenly sets their home in the nether or end, even after all the warnings!
  • New admin command - setmaxhomes which sets the maximum number of homes for the island.
  • Enabled Ops to access Oraxen items, like sitting on chairs, etc. Previously, only island members or owners could do this.
  • Minor improvements to teleporting, such as better notifications.
  • Option to add clickable text and hover text to locale output. See below.
Clickable text and hover text

You can now make any chat text sent to the user clickable or provide hover text. To use it you add commands to the text in the locale file. Recognized commands are:

  • [run_command: <command>] - Runs the specified command when the message is clicked.
  • [suggest_command: <command>] - Suggests the specified command in the chat input.
  • [copy_to_clipboard: <text>] - Copies the specified text to the player's clipboard.
  • [open_url: <url>] - Opens the specified URL when the message is clicked.
  • [hover: <text>] - Shows the specified text when the message is hovered over.

The commands can be placed anywhere in the message and will apply to the entire message component. If multiple commands of the same type are provided, only the first one encountered will be applied. Unrecognized or invalid commands enclosed in square brackets will be preserved in the output text.

Example usage:
message: "Hello [run_command: /help] World! [hover: This is a hover text!]"

The above message will display:

Hello World!
  • Clicking: Runs the /help command when clicked.
  • Hover: Shows "This is a hover text!" when hovered.

Clicking and hovering only applies to text shown in chat.

Compatibility

✔️ Minecraft 1.21, 1.20.6, earlier versions maybe.
✔️ Java 17, but recommend to run on Java 21
✔️ Addons may need to be updated to their latest version to work with this version of BentoBox
❌ Note that Multiverse is not compatible with the Boxed game mode addon

Downloading

It's a good idea to use our download site where you can pick and choose add-ons: https://download.bentobox.world.

Upgrading

  1. As always, take backups just in case. (Make a copy of everything!)
  2. Stop the server
  3. Replace the BentoBox jar with this one
  4. Download the latest versions of all your addons and put them in the Addons folder
  5. Restart the server
  6. You should be good to go!

Legend

  • 🔡 locale files may need to be regenerated or updated.
  • ⚙️ config options have been removed, renamed or added.
  • 🔺 special attention needed.

What's Changed

Full Changelog: BentoBoxWorld/BentoBox@2.5.4...2.6.0

v2.5.4

Compare Source

Summary of fixes

  • Blueprints and mobs saving
  • Purging improvements
  • Performance improvements when users log out
  • The Command Rank GUI in settings now have locale text that can be customized for each command in the list.
  • Creeper damage flag - previously this flag prevented all block damage and damage to the user. Now creepers can still hurt users but will not remove blocks if this flag is on. Note, Creeper Griefing (where a visitor causes a Creeper to explode) still causes no damage.
  • Add a BentoBox config option to allow the plugin to run even if island distances are different to the config settings. Previously this would disable BentoBox to avoid weirdness, but it can be overridden. Do not use it unless you know what you are doing.
  • Other minor bug fixes

Compatibility

✔️ Minecraft 1.21, 1.20.6, earlier versions maybe.
✔️ Java 17, but recommend to run on Java 21
✔️ Addons may need to be updated to their latest version to work with this version of BentoBox
❌ Note that Multiverse is not compatible with the Boxed game mode addon

Downloading

It's a good idea to use our download site where you can pick and choose add-ons: https://download.bentobox.world.

Upgrading

  1. As always, take backups just in case. (Make a copy of everything!)
  2. Stop the server
  3. Replace the BentoBox jar with this one
  4. Download the latest versions of all your addons and put them in the Addons folder
  5. Restart the server
  6. You should be good to go!

Legend

  • 🔡 locale files may need to be regenerated or updated.
  • ⚙️ config options have been removed, renamed or added.
  • 🔺 special attention needed.

What's Changed

Full Changelog: BentoBoxWorld/BentoBox@2.5.3...2.5.4

v2.5.3

Compare Source

This release includes a number of bug fixes and optimizations.

  • A Major Bug was fixed where the island spawn (made by running the admin command setspawn) was not surviving a server restart.
  • [friendly_name] and [gamemode] were not being substituted in locale text as expected. The friendly name is the name of the Game Mode.
  • Since the wandering trader arrived on the scene a few years ago, he has been treated as any other villager, but after requests from admins, the wandering trader is now freely available for anyone to trade with on any island
  • Players could be invited by accident if a player ran the team invite command with no name. The last invited player would be invited. Other changes were made to clean up invites and make them work better.
  • A memory leak bug was fixed with the caching done in the Head Getter, which would be run any time a panel was requested with heads in it.

Compatibility

✔️ Minecraft 1.21, 1.20.6, earlier versions maybe.
✔️ Java 17, but recommend to run on Java 21
✔️ Addons may need to be updated to their latest version to work with this version of BentoBox
❌ Note that Multiverse is not compatible with the Boxed game mode addon

Downloading

It's a good idea to use our download site where you can pick and choose add-ons: https://download.bentobox.world.

Upgrading

  1. As always, take backups just in case. (Make a copy of everything!)
  2. Stop the server
  3. Replace the BentoBox jar with this one
  4. Download the latest versions of all your addons and put them in the Addons folder
  5. Restart the server
  6. You should be good to go!

What's Changed

Full Changelog: BentoBoxWorld/BentoBox@2.5.2...2.5.3

v2.5.2

Compare Source

Bug fix release. See the below for changes. (Same as 2.5.1 but with a console debug removed)

Compatibility

✔️ Minecraft 1.21, 1.20.6, earlier versions maybe.
✔️ Java 17, but recommend to run on Java 21
✔️ Addons may need to be updated to their latest version to work with this version of BentoBox
❌ Note that Multiverse is not compatible with the Boxed game mode addon

Downloading

It's a good idea to use our download site where you can pick and choose add-ons: https://download.bentobox.world.

Upgrading

  1. As always, take backups just in case. (Make a copy of everything!)
  2. Stop the server
  3. Replace the BentoBox jar with this one
  4. Download the latest versions of all your addons and put them in the Addons folder
  5. Restart the server
  6. You should be good to go!

What's Changed

New Contributors

Full Changelog: BentoBoxWorld/BentoBox@2.5.0...2.5.1

v2.5.1

Compare Source

Bug fix release. See the below for changes.

Compatibility

✔️ Minecraft 1.21, 1.20.6, earlier versions maybe.
✔️ Java 17, but recommend to run on Java 21
✔️ Addons may need to be updated to their latest version to work with this version of BentoBox
❌ Note that Multiverse is not compatible with the Boxed game mode addon

Downloading

It's a good idea to use our download site where you can pick and choose add-ons: https://download.bentobox.world.

Upgrading

  1. As always, take backups just in case. (Make a copy of everything!)
  2. Stop the server
  3. Replace the BentoBox jar with this one
  4. Download the latest versions of all your addons and put them in the Addons folder
  5. Restart the server
  6. You should be good to go!

What's Changed

New Contributors

Full Changelog: BentoBoxWorld/BentoBox@2.5.0...2.5.1

v2.5.0

Compare Source

This release adds support for 1.21.1.

Compatibility

✔️ Minecraft 1.21, 1.20.6, earlier versions maybe.
✔️ Java 17, but recommend to run on Java 21
✔️ Addons may need to be updated to their latest version to work with this version of BentoBox
❌ Note that Multiverse is not compatible with the Boxed game mode addon

Downloading

It's a good idea to use our download site where you can pick and choose add-ons: https://download.bentobox.world.

Upgrading

  1. As always, take backups just in case. (Make a copy of everything!)
  2. Stop the server
  3. Replace the BentoBox jar with this one
  4. Download the latest versions of all your addons and put them in the Addons folder
  5. Restart the server
  6. You should be good to go!

What's Changed

Full Changelog: BentoBoxWorld/BentoBox@2.4.2...2.5.0

v2.4.2

Compare Source

This version fixes bugs and features:

  • Improved performance when playing games like Boxed (seed world chunk generation should be truly async).
  • New placeholders to show lists of trusted and coop players on islands (see https://docs.bentobox.world/en/latest/BentoBox/Placeholders/) for list.
  • Added protection against Wind Charge damage or effect on doors, trapdoor, buttons, etc. Note; decorative pots do not appear to be protectable yet from wind charge damage.
  • Added CANDLES and BELL_RINGING protection flags.
  • Fixed issue with villagers in 1.21 blueprints.
  • Adjusted code to be more compatible with StackableItems plugin.

Compatibility

✔️ Minecraft 1.21, 1.20.6, earlier versions maybe.
✔️ Java 17, but recommend to run on Java 21
✔️ Addons may need to be updated to their latest version to work with this version of BentoBox
❌ Note that Multiverse is not compatible with the Boxed game mode addon

Downloading

It's a good idea to use our download site where you can pick and choose add-ons: https://download.bentobox.world.

Upgrading

  1. As always, take backups just in case. (Make a copy of everything!)
  2. Stop the server
  3. Replace the BentoBox jar with this one
  4. Download the latest versions of all your addons and put them in the Addons folder
  5. Restart the server
  6. You should be good to go!

What's Changed

New Contributors

Full Changelog: BentoBoxWorld/BentoBox@2.4.1...2.4.2

v2.4.1

Compare Source

Bug fix release for 2.4.0 - see that release for the main release notes. If you receive errors in the console on server shutdown with Addons then you should update to the latest release of the Addon, e.g., Level, or AOneBlock.

Compatibility

✔️ Minecraft 1.21, 1.20.6, earlier versions maybe.
✔️ Java 17, but recommend to run on Java 21
✔️ Addons may need to be updated to their latest version to work with this version of BentoBox
❌ Note that Multiverse is not compatible with the Boxed game mode addon

Downloading

It's a good idea to use our download site where you can pick and choose add-ons: https://download.bentobox.world.

Upgrading

  1. As always, take backups just in case. (Make a copy of everything!)
  2. Stop the server
  3. Replace the BentoBox jar with this one
  4. Download the latest versions of all your addons and put them in the Addons folder
  5. (Optional) Move or delete the BentoBox/locales folder to have the plugin save updated language files.
  6. Restart the server
  7. You should be good to go!

What's Changed

Full Changelog: BentoBoxWorld/BentoBox@2.4.0...2.4.1

v2.4.0

Compare Source

This release is for the latest versions of Minecraft, and also brings in experimental support for Multipaper, a fork of Paper that enables multiple servers to run the same worlds. If you plan on using Multipaper, join our Discord server and let us know because addons will also need to be adjusted and it'll be good to know which ones to do.

Other new features:

  • BentoBox no longer loads all islands into RAM so for servers with a lot of islands, the memory footprint should be lower. As players join, their islands will be cached until the next server reboot, so plan to do that every so often.
  • Purging of islands now includes team islands - it didn't before.
  • NPC's can now hit players and won't be prevented by PVP rules.
  • Updates to Chinese language files.
  • Added %[gamemode]_visited_island_rank% placeholder.
  • New flag - handle tamed animals by @​TreemanKing

Compatibility

✔️ Minecraft 1.21, 1.20.6, earlier versions maybe.
✔️ Java 17, but recommend to run on Java 21
✔️ Addons may need to be updated to their latest version to work with this version of BentoBox
❌ Note that Multiverse is not compatible with the Boxed game mode addon

Downloading

It's a good idea to use our download site where you can pick and choose add-ons: https://download.bentobox.world.

Upgrading

  1. As always, take backups just in case. (Make a copy of everything!)
  2. Stop the server
  3. Replace the BentoBox jar with this one
  4. Download the latest versions of all your addons and put them in the Addons folder
  5. (Optional) Move or delete the BentoBox/locales folder to have the plugin save updated language files.
  6. Restart the server
  7. You should be good to go!

What's Changed

New Contributors

Full Changelog: BentoBoxWorld/BentoBox@2.3.0...2.4.0

v2.3.0

This release fixes a major bug where mobs were not being pasted from blueprints (MythicMobs were, but hey, not normal mobs!) and also adds some new features:

  • Team members can now have multiple islands too - it's a setting in BentoBox config.yml if you wish to enable it.
  • Blueprints can now be given a max-usage setting. This is only enabled when players are allowed to make multiple island. So, for example, it's possible to limit players to only one of each type of island. There is also an option to hide any island blueprints if they have been used up. Don't forget that permissions can also be used to hide or show island blueprint options.

Compatibility

✔️ Minecraft 1.20.x
✔️ Java 17
✔️ Addons may need to be updated to their latest version to work with this version of BentoBox

Downloading

It's a good idea to use our download site where you can pick and choose add-ons: https://download.bentobox.world.

Upgrading

  1. As always, take backups just in case. (Make a copy of everything!)
  2. Stop the server
  3. Replace the BentoBox jar with this one
  4. Download the latest versions of all your addons and put them in the Addons folder
  5. (Optional) Move or delete the BentoBox/locales folder to have the plugin save updated language files.
  6. Restart the server
  7. You should be good to go!

What's Changed

Full Changelog: BentoBoxWorld/BentoBox@2.2.0...2.3.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies label Oct 9, 2024
@renovate renovate bot requested a review from rainbowdashlabs October 9, 2024 11:28
@rainbowdashlabs rainbowdashlabs enabled auto-merge (squash) October 9, 2024 11:29
@renovate renovate bot force-pushed the deps/world.bentobox-bentobox-2.x branch from 8611da8 to befd57c Compare October 9, 2024 11:37
@renovate renovate bot force-pushed the deps/world.bentobox-bentobox-2.x branch from befd57c to c4f9cc3 Compare October 27, 2024 04:28
@renovate renovate bot changed the title Update dependency world.bentobox:bentobox to v2.6.0 Update dependency world.bentobox:bentobox to v2.7.0 Oct 27, 2024
@renovate renovate bot changed the title Update dependency world.bentobox:bentobox to v2.7.0 Update dependency world.bentobox:bentobox to v2.7.0 - autoclosed Nov 3, 2024
@renovate renovate bot closed this Nov 3, 2024
auto-merge was automatically disabled November 3, 2024 01:04

Pull request was closed

@renovate renovate bot deleted the deps/world.bentobox-bentobox-2.x branch November 3, 2024 01:04
@renovate renovate bot restored the deps/world.bentobox-bentobox-2.x branch November 3, 2024 03:16
@renovate renovate bot changed the title Update dependency world.bentobox:bentobox to v2.7.0 - autoclosed Update dependency world.bentobox:bentobox to v2.7.0 Nov 3, 2024
@renovate renovate bot reopened this Nov 3, 2024
@renovate renovate bot changed the title Update dependency world.bentobox:bentobox to v2.7.0 Update dependency world.bentobox:bentobox to v2.7.0 - autoclosed Nov 9, 2024
@renovate renovate bot closed this Nov 9, 2024
@renovate renovate bot deleted the deps/world.bentobox-bentobox-2.x branch November 9, 2024 01:05
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants