4.0.0-RC16 - Blizzard
Pre-release
Pre-release
Update 4.0.0-RC16 - Blizzard
We are happy to announce another release candidate for CloudNet 4.0. This release contains support for the latest minecraft versions. We urge all users to install the update, as we will no longer provide support for RC15. Users who want to switch from 3.4.X to 4.0 can find instructions in the release information for RC1.
Please also see the changelog for RC6, this contains the detailed information about the switch to Dependency Injection in the API.
Cheers!
(Please remember, CloudNet is provided as-is - we are not responsible for data loss or corruption. You are encouraged to back up your files before any updates!)
Changelog
Features
- Support minecraft 1.21.11 (#1823)
- Smart configs are not connected to the task config anymore. They are now stored in
modules/CloudNet-Smart(#1808)
Improvements
- The cloudnet luckperms plugin now sets the servers name in the context if not configured otherwise (#1802)
- Templify - a new third party module was added which allows replacing placeholders inside templates (#1824)
Fixes
- Avoid OOMs caused by different malloc(0) implementations (#1822)
- Advanced translations patterns were not properly translated (#1817)
Caution
- Recent minestom changes require users to update the implementation of their minestom servers. See this example implementation on how to obtain an
ExtensionBootstrapinstance. - Furthermore, the CloudNet-Bridge does not enable any proxy authentication anymore. This must be done by the Minestom server implementation now. See these hints on how to enable authentication.
Dependencies
| artifact id | usage |
|---|---|
| driver-api | When developing plugins or modules, available on all platforms. |
| node-api | When developing a module which needs more specific access to node functions than the driver can offer. |
| wrapper-jvm-api | When developing plugins which need some more specific access to the service api than the driver can offer. |
| bridge-api | When trying to catch player events and/or interacting with players regardless where they are on the network. |
| bom | When you want to import all dependencies with the same version based on the imported bill of materials. |
To add the CloudNet dependency using gradle:
repositories {
// ensure maven central is added
mavenCentral()
}
dependencies {
// optional - you can also specify versions directly
implementation platform('eu.cloudnetservice.cloudnet:bom:4.0.0-RC16')
compileOnly 'eu.cloudnetservice.cloudnet:driver-api'
// without bom
compileOnly 'eu.cloudnetservice.cloudnet:driver-api:4.0.0-RC16'
}To add the CloudNet dependency using maven:
<!-- optional - you can also specify versions directly -->
<dependencyManagement>
<dependencies>
<dependency>
<groupId>eu.cloudnetservice.cloudnet</groupId>
<artifactId>bom</artifactId>
<version>4.0.0-RC16</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies>
<dependency>
<groupId>eu.cloudnetservice.cloudnet</groupId>
<artifactId>driver-api</artifactId>
<version>4.0.0-RC16</version> <!-- only needed when bom is not used -->
<scope>provided</scope>
</dependency>
</dependencies>🔗 Links
- Support Discord: https://discord.cloudnetservice.eu/
- Javadocs: https://cloudnetservice.eu/cloudnet/docs/4.0.0-RC16/
- Maven Dependencies: https://central.sonatype.com/search?q=eu.cloudnetservice.cloudnet
- If you found any issue, please report it on our issue tracker: https://github.com/CloudNetService/CloudNet/issues