Назад в магазин
AstraTemplate
Modrinth Plugin

AstraTemplate

Template plugin for Paper/Fabric/Valocity with pure and powerful functionality

Информация о Minecraft-продукте

Важное о товаре

Совместимость, версии Minecraft, загрузчики и данные внешнего источника.

Тип

Plugin

Доступ

Бесплатно

Последняя версия

8.0.0-alpha01

Загрузки

2 976

Загрузчики / Платформы

bukkit fabric forge paper purpur spigot velocity

Minecraft версии

1.15.2 – 1.21.3

Категории

library storage utility

Описание

Подробная информация

[![paper](https://img.shields.io/badge/platform-paper-4e9a38?style=flat-square)](https://papermc.io) [![forge](https://img.shields.io/badge/platform-forge-c6934a?style=flat-square)](https://files.minecraftforge.net) [![neoforge](https://img.shields.io/badge/platform-neoforge-c6934a?style=flat-square)](https://neoforged.net) # AstraTemplate A production-grade Minecraft plugin/mod template written in Kotlin. Provides a modular, lifecycle-driven architecture that runs across Paper, Forge, and NeoForge from a single shared codebase. --- ## Plugins built on this template <p> <a href="https://github.com/Astra-Interactive/AstraAuctions"><img src="https://img.shields.io/badge/github-AstraAuctions-1B76CA"/></a> <a href="https://github.com/Astra-Interactive/AstraRating"><img src="https://img.shields.io/badge/github-AstraRating-1B76CA"/></a> <a href="https://github.com/Astra-Interactive/AspeKt"><img src="https://img.shields.io/badge/github-AspeKt-1B76CA"/></a> <a href="https://github.com/Astra-Interactive/AstraShop"><img src="https://img.shields.io/badge/github-AstraShop-1B76CA"/></a> <a href="https://github.com/Astra-Interactive/SoulKeeper"><img src="https://img.shields.io/badge/github-SoulKeeper-1B76CA"/></a> </p> --- ## Project structure ``` AstraTemplate/ ├── instances/ │ ├── bukkit/ ← Paper entry point + platform wiring │ ├── forge/ ← Forge entry point + platform wiring │ └── neoforge/ ← NeoForge entry point + platform wiring └── modules/ ├── api/ │ ├── local/ ← Database (Exposed ORM, platform-agnostic) │ └── remote/ ← REST client (Ktor, platform-agnostic) ├── core/ ← Config, translations, coroutine scopes ├── build-konfig/ ← Compile-time constants (id, version, etc.) ├── feature-command/ ← All commands (platform-agnostic!) ├── feature-gui/ │ ├── api/ ← GUI interfaces (Router, GuiModule) │ └── bukkit/ ← Bukkit chest-GUI implementation └── feature-event/ ├── bukkit/ ← Bukkit event listeners ├── forge/ ← Forge event listeners └── neoforge/ ← NeoForge event listeners ``` Each `instances/<platform>` builds a fat jar via ShadowJar and is the only place that knows about a specific platform. Everything in `modules/` is either fully platform-agnostic or has a clearly named platform variant. ## Modules <details> <summary><b>modules/core</b> — config, translations, coroutine scopes</summary> The foundation every other module depends on. Provides: - **Config** — `PluginConfiguration` is a `@Serializable` data class written to `config.yml`. Reloaded on `/atempreload` via `StateFlowKrate`. - **Translations** — `PluginTranslation` works the same way with `translation.yml`. Every string has a default value so the plugin works out of the box with no files present. - **Coroutine scopes** — `ioScope`, `mainScope`, and `unconfinedScope` backed by `KotlinDispatchers` (platform-provided abstraction over `Dispatchers.IO` / main thread / etc.). All scopes are cancelled in `onDisable`. </details> <details> <summary><b>modules/api/local</b> — local database via Exposed ORM</summary> Local database access via [Jetbrains Exposed](https://github.com/JetBrains/Exposed) ORM. The `LocalDao` interface exposes suspend functions for CRUD operations on `UserTable` and `UserRatingTable`. The underlying database connection is derived reactively from the config flow, so switching from H2 to MySQL is a one-line config change and a reload. Supported drivers (configured in `libs.versions.toml`): **H2**, **SQLite**, **MySQL**, **MariaDB**. </details> <details> <summary><b>modules/api/remote</b> — REST API client via Ktor</summary> REST API client built with [Ktor](https://ktor.io). Demonstrates fetching data from an external HTTP endpoint (the Rick & Morty API). The `RickMortyApi` interface returns `Result<T>` — errors are never thrown, always returned explicitly. </details> <details> <summary><b>modules/build-konfig</b> — compile-time constants</summary> Generates compile-time constants (`id`, `version`, etc.) via the BuildConfig Gradle plugin. Import from any module that needs to reference the plugin's identity at runtime without hardcoding strings. </details> <details> <summary><b>modules/feature-command</b> — cross-platform commands (no platform imports)</summary> All commands in one place, with **no platform imports**. Uses the Brigadier DSL from AstraLibs to define commands that compile and run identically on Paper, Forge, and NeoForge. The platform-specific `MultiplatformCommand` adapter is injected at the `RootModule` level. </details> <details> <summary><b>modules/feature-gui</b> — chest GUI (Bukkit, with stub for other platforms)</summary> Split into `api` (the `Router` interface + `GuiModule`) and `bukkit` (the implementation). The Bukkit implementation provides a paginated chest inventory driven by `StateFlow` — the GUI re-renders automatically whenever the underlying data changes. On Forge/NeoForge a `StubGuiModule` satisfies the interface so the shared command module compiles without pulling in Bukkit. </details> <details> <summary><b>modules/feature-event</b> — platform-specific event listeners</summary> Platform-specific event listeners, one submodule per platform. The Bukkit variant listens to `BlockPlaceEvent`; Forge and NeoForge variants listen to the server tick. Each submodule exposes a `Lifecycle` so `RootModule` can register and unregister listeners cleanly. </details> --- ## Architecture ### Lifecycle tree Every module exposes a `Lifecycle` with three callbacks: `onEnable`, `onDisable`, `onReload`. The plugin entry point creates a `RootModule`, chains all child lifecycles, and delegates to them: ```kotlin // instances/bukkit — AstraTemplate.kt class AstraTemplate : LifecyclePlugin() { private val rootModule = RootModule(this) override fun onEnable() = rootModule.lifecycle.onEnable() override fun onDisable() = rootModule.lifecycle.onDisable() override fun onReload() = rootModule.lifecycle.onReload() } ``` ```kotlin // instances/bukkit — RootModule.kt class RootModule(plugin: AstraTemplate) { val coreModule = CoreModule(plugin.dataFolder, DefaultBukkitDispatchers(plugin)) val apiLocalModule = ApiLocalModule(coreModule.configKrate.cachedStateFlow, coreModule.ioScope) val apiRemoteModule = ApiRemoteModule() val eventModule = EventModule(coreModule, plugin) val guiModule = BukkitGuiModule(coreModule, apiLocalModule) val commandModule = CommandModule(coreModule, apiRemoteModule, guiModule, ...) val lifecycle = Lifecycle.Lambda( onEnable = { listOf(coreModule, eventModule, apiLocalModule, commandModule).forEach(Lifecycle::onEnable) }, onDisable = { /* same list, reversed */ }, onReload = { /* same list */ } ) } ``` This makes the plugin **reloadable at runtime** — `/atempreload` walks the same chain in reverse and re-enables it, picking up any config or translation changes on the fly. ```mermaid graph TD Plugin --> RootModule RootModule --> CoreModule RootModule --> ApiLocalModule RootModule --> ApiRemoteModule RootModule --> EventModule RootModule --> CommandModule EventModule --> TemplateEvent EventModule --> BetterAnotherEvent ``` ### Dependency injection There is no DI framework. Each module is a plain class whose constructor receives other module interfaces it depends on. `RootModule` is the composition root and instantiates everything in the right order, using `lazy {}` where initialization must be deferred. ```kotlin // Pass the whole module interface, not individual services extracted from it val commandModule = CommandModule( coreModule = coreModule, guiModule = guiModule, apiRemoteModule = apiRemoteModule, ... ) ``` This keeps coupling explicit and avoids hidden runtime failures from missing bindings. --- ## Cross-platform commands Commands live in `modules/feature-command` — a plain Kotlin module with **zero platform dependencies**. They use the Brigadier DSL from AstraLibs, which abstracts over Paper's and Forge's native Brigadier adapters. ```kotlin // Works on Paper, Forge, and NeoForge without any changes command("rickandmorty") { literal("random") { runs { ctx -> scope.launch(dispatchers.IO) { rmApi.getRandomCharacter(Random.nextInt(0, 100)) .onSuccess { ctx.getSender().sendMessage(...) } .onFailure { ctx.getSender().sendMessage(...) } } } } literal("specific") { argument("number", IntegerArgumentType.integer()) { numberArg -> runs { ctx -> send(ctx.getSender(), ctx.requireArgument(numberArg)) } } } } ``` On each platform the `RootModule` provides a `MultiplatformCommand` backed by the right adapter (`PaperMultiplatformCommands`, `MinecraftMultiplatformCommands`). The shared command code never needs to change. ### Available commands | Command | Description | |-------------------------------------|------------------------------------------------------| | `/add <player> <material> [amount]` | Add item to a player's inventory | | `/translation` | Show current translation value (useful after reload) | | `/adamage <player> <amount>` | Deal damage to a player | | `/atempgui` | Open the sample paginated GUI | | `/rickandmorty random` | Fetch a random Rick & Morty character via REST | | `/rickandmorty specific <id>` | Fetch a specific character by id | | `/atempreload` | Reload config, translations, and database connection | --- ## Configuration Config and translations are plain `@Serializable` data classes serialized to YAML via [kaml](https://github.com/charleskorn/kaml). Inline doc-comments render directly in the generated YAML file: ```kotlin @Serializable data class PluginConfiguration( @YamlComment("First line description for config1", "Second line description for config2") @SerialName("config_1") val config1: String = "NONE", @SerialName("database") val database: DatabaseConfiguration = DatabaseConfiguration.H2("db") ) ``` Both config and translations are stored as `StateFlowKrate` / `CachedKrate`. Any module that reads them always sees the latest value after a reload — no manual propagation needed. --- ## Local database `modules/api/local` uses [Jetbrains Exposed](https://github.com/JetBrains/Exposed) as the ORM. The database connection is derived reactively from the config flow — when the config is reloaded with a new database URL, the connection is replaced automatically: ```kotlin private val databaseFlow = configFlow .map { it.database } .distinctUntilChanged() .flatMapLatest { configuration -> configuration.connectAsFlow() } .onEach { db -> transaction(db) { SchemaUtils.create(UserRatingTable, UserTable) } } .shareIn(ioScope, SharingStarted.Eagerly, 1) ``` Supported drivers (swap in `libs.versions.toml`): **H2**, **SQLite**, **MySQL**, **MariaDB**. --- ## Remote API `modules/api/remote` shows how to call an external REST endpoint using Ktor. The interface is minimal: ```kotlin interface RickMortyApi { suspend fun getRandomCharacter(id: Int): Result<RMResponse> } ``` Errors are returned as `Result<T>` — never thrown — so callers handle failures explicitly. --- ## GUI (Bukkit) The GUI layer sits behind a `Router` interface defined in `modules/feature-gui/api`. The Bukkit implementation provides a paginated chest inventory with reactive state via Kotlin `StateFlow`: - `SampleGuiComponent` owns state (`Loading` / `Items` / `Users`) - `SampleGUI` observes state and re-renders on every emission - Navigation (next/prev page, change mode, add user, back/close) is handled by dedicated button objects On Forge/NeoForge a `StubGuiModule` satisfies the `GuiModule` interface so the shared `CommandModule` compiles without a Bukkit dependency. --- ## Building ```bash # Paper plugin ./gradlew :instances:bukkit:shadowJar # Forge mod ./gradlew :instances:forge:shadowJar # NeoForge mod ./gradlew :instances:neoforge:shadowJar # Run all tests ./gradlew allTests ``` Output jars land in each instance's `build/libs/` directory and are optionally copied to a remote server by the FTP Gradle plugin (configure the destination in `libs.versions.toml`). --- ## Test server (Docker) `docker-compose.yml` at the project root starts a local test server using [itzg/minecraft-server](https://github.com/itzg/docker-minecraft-server). Before running, **manually edit `docker-compose.yml`** to uncomment the block for your target platform (Forge, NeoForge, or Paper) and comment out the others. Each block sets the `TYPE`, `VERSION`, and platform-specific version variables, and the matching `volumes` entry below it. ```bash docker compose up ```

Разработчик

makeevrserg

Профиль и данные получены с Modrinth

Открыть на Modrinth

Галерея продукта

Изображения проекта

Скриншоты и изображения из оригинальной страницы Modrinth.

Список изменений

Версии проекта

Опубликованные версии и оригинальные файлы Modrinth.

8.0.0-alpha01 Актуальная Alpha 07.11.2025

AstraTemplate-fabric

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
fabric
Показать изменения
fix modules gradle\nupdate library code\ndetekt\nMerge pull request #85 from Astra-Interactive/improvements ## Summary - Updated commands api - Updated shadow - Updated modules structure
Войти

0.03 MB

8.0.0-alpha01 Alpha 07.11.2025

AstraTemplate-velocity

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
velocity
Показать изменения
fix modules gradle\nupdate library code\ndetekt\nMerge pull request #85 from Astra-Interactive/improvements ## Summary - Updated commands api - Updated shadow - Updated modules structure
Войти

20.63 MB

8.0.0-alpha01 Alpha 07.11.2025

AstraTemplate-forge

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
forge
Показать изменения
fix modules gradle\nupdate library code\ndetekt\nMerge pull request #85 from Astra-Interactive/improvements ## Summary - Updated commands api - Updated shadow - Updated modules structure
Войти

0.03 MB

8.0.0-alpha01 Alpha 07.11.2025

AstraTemplate-bukkit

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
bukkit
Показать изменения
fix modules gradle\nupdate library code\ndetekt\nMerge pull request #85 from Astra-Interactive/improvements ## Summary - Updated commands api - Updated shadow - Updated modules structure
Войти

21.14 MB

7.8.0 Release 20.08.2025

AstraTemplate-fabric

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
fabric
Показать изменения
Update - Gettin ready for 8.0.0 (#76)
Войти

14.04 MB

7.8.0 Release 20.08.2025

AstraTemplate-velocity

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
velocity
Показать изменения
Update - Gettin ready for 8.0.0 (#76)
7.8.0 Release 20.08.2025

AstraTemplate-bukkit

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
bukkit
Показать изменения
Update - Gettin ready for 8.0.0 (#76)
Войти

9.22 MB

7.8.0 Release 20.08.2025

AstraTemplate-forge

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
forge
Показать изменения
Update - Gettin ready for 8.0.0 (#76)
Войти

11.27 MB

7.7.9 Release 05.04.2025

AstraTemplate-bukkit

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
bukkit
Показать изменения
build(deps): bump actions/download-artifact from d0ce8fd1167ed839810201de977912a090ab10a7 to 95815c38cf2ff2164869cbab79da8d1f422bc89e (#69) * build(deps): bump actions/download-artifact Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from d0ce8fd1167ed839810201de977912a090ab10a7 to 95815c38cf2ff2164869cbab79da8d1f422bc89e. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/d0ce8fd1167ed839810201de977912a090ab10a7...95815c38cf2ff2164869cbab79da8d1f422bc89e) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Update gradle.properties --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roman Makeev <57789105+makeevrserg@users.noreply.github.com>
Войти

9.12 MB

7.7.9 Release 05.04.2025

AstraTemplate-velocity

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
velocity
Показать изменения
build(deps): bump actions/download-artifact from d0ce8fd1167ed839810201de977912a090ab10a7 to 95815c38cf2ff2164869cbab79da8d1f422bc89e (#69) * build(deps): bump actions/download-artifact Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from d0ce8fd1167ed839810201de977912a090ab10a7 to 95815c38cf2ff2164869cbab79da8d1f422bc89e. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/d0ce8fd1167ed839810201de977912a090ab10a7...95815c38cf2ff2164869cbab79da8d1f422bc89e) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Update gradle.properties --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roman Makeev <57789105+makeevrserg@users.noreply.github.com>
7.7.9 Release 05.04.2025

AstraTemplate-fabric

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
fabric
Показать изменения
build(deps): bump actions/download-artifact from d0ce8fd1167ed839810201de977912a090ab10a7 to 95815c38cf2ff2164869cbab79da8d1f422bc89e (#69) * build(deps): bump actions/download-artifact Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from d0ce8fd1167ed839810201de977912a090ab10a7 to 95815c38cf2ff2164869cbab79da8d1f422bc89e. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/d0ce8fd1167ed839810201de977912a090ab10a7...95815c38cf2ff2164869cbab79da8d1f422bc89e) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Update gradle.properties --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roman Makeev <57789105+makeevrserg@users.noreply.github.com>
Войти

13.97 MB

7.7.9 Release 05.04.2025

AstraTemplate-forge

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
forge
Показать изменения
build(deps): bump actions/download-artifact from d0ce8fd1167ed839810201de977912a090ab10a7 to 95815c38cf2ff2164869cbab79da8d1f422bc89e (#69) * build(deps): bump actions/download-artifact Bumps [actions/download-artifact](https://github.com/actions/download-artifact) from d0ce8fd1167ed839810201de977912a090ab10a7 to 95815c38cf2ff2164869cbab79da8d1f422bc89e. - [Release notes](https://github.com/actions/download-artifact/releases) - [Commits](https://github.com/actions/download-artifact/compare/d0ce8fd1167ed839810201de977912a090ab10a7...95815c38cf2ff2164869cbab79da8d1f422bc89e) --- updated-dependencies: - dependency-name: actions/download-artifact dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> * Update gradle.properties --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roman Makeev <57789105+makeevrserg@users.noreply.github.com>
Войти

11.32 MB

7.7.8 Release 24.02.2025

AstraTemplate-fabric

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
fabric
Показать изменения
update docker, fix reload command
Войти

13.97 MB

7.7.8 Release 24.02.2025

AstraTemplate-forge

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
forge
Показать изменения
update docker, fix reload command
Войти

11.32 MB

7.7.8 Release 24.02.2025

AstraTemplate-bukkit

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
bukkit
Показать изменения
update docker, fix reload command
Войти

9.12 MB

7.7.8 Release 24.02.2025

AstraTemplate-velocity

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
velocity
Показать изменения
update docker, fix reload command
7.7.7 Release 18.02.2025

AstraTemplate-fabric

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
fabric
Показать изменения
build(deps): bump the versions group with 6 updates (#58) * build(deps): bump the versions group with 6 updates Bumps the versions group with 6 updates: | Package | From | To | | --- | --- | --- | | [com.charleskorn.kaml:kaml](https://github.com/charleskorn/kaml) | `0.71.0` | `0.72.0` | | [org.testng:testng](https://github.com/testng-team/testng) | `7.10.2` | `7.11.0` | | com.velocitypowered:velocity-api | `3.4.0-SNAPSHOT` | `4.0.0-SNAPSHOT` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `4.32.0` | `4.33.2` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.116.0+` | `0.117.0+1.21.5` | | fabric-loom | `1.9.2` | `1.10.1` | Updates `com.charleskorn.kaml:kaml` from 0.71.0 to 0.72.0 - [Release notes](https://github.com/charleskorn/kaml/releases) - [Changelog](https://github.com/charleskorn/kaml/blob/main/.releaserc.yml) - [Commits](https://github.com/charleskorn/kaml/compare/0.71.0...0.72.0) Updates `org.testng:testng` from 7.10.2 to 7.11.0 - [Release notes](https://github.com/testng-team/testng/releases) - [Changelog](https://github.com/testng-team/testng/blob/master/CHANGES.txt) - [Commits](https://github.com/testng-team/testng/compare/7.10.2...7.11.0) Updates `com.velocitypowered:velocity-api` from 3.4.0-SNAPSHOT to 4.0.0-SNAPSHOT Updates `com.github.MockBukkit:MockBukkit` from 4.32.0 to 4.33.2 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v4.32.0...v4.33.2) Updates `net.fabricmc.fabric-api:fabric-api` from 0.116.0+ to 0.117.0+1.21.5 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `fabric-loom` from 1.9.2 to 1.10.1 --- updated-dependencies: - dependency-name: com.charleskorn.kaml:kaml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.testng:testng dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.velocitypowered:velocity-api dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: fabric-loom dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com> * Update gradle.properties * Update libs.versions.toml * fix gradle version * revert fabric api version --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roman Makeev <57789105+makeevrserg@users.noreply.github.com> Co-authored-by: Roman Makeev <makeevrserg@gmail.com>
Войти

13.97 MB

7.7.7 Release 18.02.2025

AstraTemplate-forge

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
forge
Показать изменения
build(deps): bump the versions group with 6 updates (#58) * build(deps): bump the versions group with 6 updates Bumps the versions group with 6 updates: | Package | From | To | | --- | --- | --- | | [com.charleskorn.kaml:kaml](https://github.com/charleskorn/kaml) | `0.71.0` | `0.72.0` | | [org.testng:testng](https://github.com/testng-team/testng) | `7.10.2` | `7.11.0` | | com.velocitypowered:velocity-api | `3.4.0-SNAPSHOT` | `4.0.0-SNAPSHOT` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `4.32.0` | `4.33.2` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.116.0+` | `0.117.0+1.21.5` | | fabric-loom | `1.9.2` | `1.10.1` | Updates `com.charleskorn.kaml:kaml` from 0.71.0 to 0.72.0 - [Release notes](https://github.com/charleskorn/kaml/releases) - [Changelog](https://github.com/charleskorn/kaml/blob/main/.releaserc.yml) - [Commits](https://github.com/charleskorn/kaml/compare/0.71.0...0.72.0) Updates `org.testng:testng` from 7.10.2 to 7.11.0 - [Release notes](https://github.com/testng-team/testng/releases) - [Changelog](https://github.com/testng-team/testng/blob/master/CHANGES.txt) - [Commits](https://github.com/testng-team/testng/compare/7.10.2...7.11.0) Updates `com.velocitypowered:velocity-api` from 3.4.0-SNAPSHOT to 4.0.0-SNAPSHOT Updates `com.github.MockBukkit:MockBukkit` from 4.32.0 to 4.33.2 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v4.32.0...v4.33.2) Updates `net.fabricmc.fabric-api:fabric-api` from 0.116.0+ to 0.117.0+1.21.5 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `fabric-loom` from 1.9.2 to 1.10.1 --- updated-dependencies: - dependency-name: com.charleskorn.kaml:kaml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.testng:testng dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.velocitypowered:velocity-api dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: fabric-loom dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com> * Update gradle.properties * Update libs.versions.toml * fix gradle version * revert fabric api version --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roman Makeev <57789105+makeevrserg@users.noreply.github.com> Co-authored-by: Roman Makeev <makeevrserg@gmail.com>
Войти

11.32 MB

7.7.7 Release 18.02.2025

AstraTemplate-bukkit

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
bukkit
Показать изменения
build(deps): bump the versions group with 6 updates (#58) * build(deps): bump the versions group with 6 updates Bumps the versions group with 6 updates: | Package | From | To | | --- | --- | --- | | [com.charleskorn.kaml:kaml](https://github.com/charleskorn/kaml) | `0.71.0` | `0.72.0` | | [org.testng:testng](https://github.com/testng-team/testng) | `7.10.2` | `7.11.0` | | com.velocitypowered:velocity-api | `3.4.0-SNAPSHOT` | `4.0.0-SNAPSHOT` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `4.32.0` | `4.33.2` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.116.0+` | `0.117.0+1.21.5` | | fabric-loom | `1.9.2` | `1.10.1` | Updates `com.charleskorn.kaml:kaml` from 0.71.0 to 0.72.0 - [Release notes](https://github.com/charleskorn/kaml/releases) - [Changelog](https://github.com/charleskorn/kaml/blob/main/.releaserc.yml) - [Commits](https://github.com/charleskorn/kaml/compare/0.71.0...0.72.0) Updates `org.testng:testng` from 7.10.2 to 7.11.0 - [Release notes](https://github.com/testng-team/testng/releases) - [Changelog](https://github.com/testng-team/testng/blob/master/CHANGES.txt) - [Commits](https://github.com/testng-team/testng/compare/7.10.2...7.11.0) Updates `com.velocitypowered:velocity-api` from 3.4.0-SNAPSHOT to 4.0.0-SNAPSHOT Updates `com.github.MockBukkit:MockBukkit` from 4.32.0 to 4.33.2 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v4.32.0...v4.33.2) Updates `net.fabricmc.fabric-api:fabric-api` from 0.116.0+ to 0.117.0+1.21.5 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `fabric-loom` from 1.9.2 to 1.10.1 --- updated-dependencies: - dependency-name: com.charleskorn.kaml:kaml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.testng:testng dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.velocitypowered:velocity-api dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: fabric-loom dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com> * Update gradle.properties * Update libs.versions.toml * fix gradle version * revert fabric api version --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roman Makeev <57789105+makeevrserg@users.noreply.github.com> Co-authored-by: Roman Makeev <makeevrserg@gmail.com>
Войти

9.12 MB

7.7.7 Release 18.02.2025

AstraTemplate-velocity

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
velocity
Показать изменения
build(deps): bump the versions group with 6 updates (#58) * build(deps): bump the versions group with 6 updates Bumps the versions group with 6 updates: | Package | From | To | | --- | --- | --- | | [com.charleskorn.kaml:kaml](https://github.com/charleskorn/kaml) | `0.71.0` | `0.72.0` | | [org.testng:testng](https://github.com/testng-team/testng) | `7.10.2` | `7.11.0` | | com.velocitypowered:velocity-api | `3.4.0-SNAPSHOT` | `4.0.0-SNAPSHOT` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `4.32.0` | `4.33.2` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.116.0+` | `0.117.0+1.21.5` | | fabric-loom | `1.9.2` | `1.10.1` | Updates `com.charleskorn.kaml:kaml` from 0.71.0 to 0.72.0 - [Release notes](https://github.com/charleskorn/kaml/releases) - [Changelog](https://github.com/charleskorn/kaml/blob/main/.releaserc.yml) - [Commits](https://github.com/charleskorn/kaml/compare/0.71.0...0.72.0) Updates `org.testng:testng` from 7.10.2 to 7.11.0 - [Release notes](https://github.com/testng-team/testng/releases) - [Changelog](https://github.com/testng-team/testng/blob/master/CHANGES.txt) - [Commits](https://github.com/testng-team/testng/compare/7.10.2...7.11.0) Updates `com.velocitypowered:velocity-api` from 3.4.0-SNAPSHOT to 4.0.0-SNAPSHOT Updates `com.github.MockBukkit:MockBukkit` from 4.32.0 to 4.33.2 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v4.32.0...v4.33.2) Updates `net.fabricmc.fabric-api:fabric-api` from 0.116.0+ to 0.117.0+1.21.5 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `fabric-loom` from 1.9.2 to 1.10.1 --- updated-dependencies: - dependency-name: com.charleskorn.kaml:kaml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.testng:testng dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.velocitypowered:velocity-api dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: fabric-loom dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com> * Update gradle.properties * Update libs.versions.toml * fix gradle version * revert fabric api version --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roman Makeev <57789105+makeevrserg@users.noreply.github.com> Co-authored-by: Roman Makeev <makeevrserg@gmail.com>
7.7.6 Release 12.02.2025

AstraTemplate-bukkit

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
bukkit
Показать изменения
build(deps): bump the versions group across 1 directory with 12 updates (#57) * build(deps): bump the versions group across 1 directory with 12 updates Bumps the versions group with 12 updates in the / directory: | Package | From | To | | --- | --- | --- | | [com.charleskorn.kaml:kaml](https://github.com/charleskorn/kaml) | `0.67.0` | `0.71.0` | | [org.xerial:sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) | `3.48.0.0` | `3.49.0.0` | | [org.jetbrains.exposed:exposed-java-time](https://github.com/JetBrains/Exposed) | `0.58.0` | `0.59.0` | | [org.jetbrains.exposed:exposed-jdbc](https://github.com/JetBrains/Exposed) | `0.58.0` | `0.59.0` | | [org.jetbrains.exposed:exposed-dao](https://github.com/JetBrains/Exposed) | `0.58.0` | `0.59.0` | | [org.jetbrains.exposed:exposed-core](https://github.com/JetBrains/Exposed) | `0.58.0` | `0.59.0` | | com.velocitypowered:velocity-api | `3.4.0-SNAPSHOT` | `4.0.0-SNAPSHOT` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `4.28.3` | `4.32.0` | | net.fabricmc:fabric-language-kotlin | `1.13.0+` | `1.13.1+kotlin.2.1.10` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.115.1+` | `0.116.0+1.21.5` | | [ru.astrainteractive.klibs:mikro-core](https://github.com/makeevrserg/klibs.mikro) | `1.8.14` | `1.8.15` | | [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `3.2.4` | `3.2.6` | Updates `com.charleskorn.kaml:kaml` from 0.67.0 to 0.71.0 - [Release notes](https://github.com/charleskorn/kaml/releases) - [Changelog](https://github.com/charleskorn/kaml/blob/main/.releaserc.yml) - [Commits](https://github.com/charleskorn/kaml/compare/0.67.0...0.71.0) Updates `org.xerial:sqlite-jdbc` from 3.48.0.0 to 3.49.0.0 - [Release notes](https://github.com/xerial/sqlite-jdbc/releases) - [Changelog](https://github.com/xerial/sqlite-jdbc/blob/master/CHANGELOG) - [Commits](https://github.com/xerial/sqlite-jdbc/compare/3.48.0.0...3.49.0.0) Updates `org.jetbrains.exposed:exposed-java-time` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-core` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-core` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `com.velocitypowered:velocity-api` from 3.4.0-SNAPSHOT to 4.0.0-SNAPSHOT Updates `com.github.MockBukkit:MockBukkit` from 4.28.3 to 4.32.0 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v4.28.3...v4.32.0) Updates `net.fabricmc:fabric-language-kotlin` from 1.13.0+ to 1.13.1+kotlin.2.1.10 Updates `net.fabricmc.fabric-api:fabric-api` from 0.115.1+ to 0.116.0+1.21.5 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `ru.astrainteractive.klibs:mikro-core` from 1.8.14 to 1.8.15 - [Release notes](https://github.com/makeevrserg/klibs.mikro/releases) - [Commits](https://github.com/makeevrserg/klibs.mikro/compare/1.8.14...1.8.15) Updates `ru.astrainteractive.klibs:kstorage` from 3.2.4 to 3.2.6 - [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases) - [Commits](https://github.com/makeevrserg/klibs.kstorage/compare/3.2.4...3.2.6) --- updated-dependencies: - dependency-name: com.charleskorn.kaml:kaml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.xerial:sqlite-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-java-time dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.velocitypowered:velocity-api dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc:fabric-language-kotlin dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.klibs:mikro-core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.klibs:kstorage dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com> * Update gradle.properties * fix velocity version --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roman Makeev <57789105+makeevrserg@users.noreply.github.com> Co-authored-by: Roman Makeev <makeevrserg@gmail.com>
Войти

9.12 MB

7.7.6 Release 12.02.2025

AstraTemplate-fabric

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
fabric
Показать изменения
build(deps): bump the versions group across 1 directory with 12 updates (#57) * build(deps): bump the versions group across 1 directory with 12 updates Bumps the versions group with 12 updates in the / directory: | Package | From | To | | --- | --- | --- | | [com.charleskorn.kaml:kaml](https://github.com/charleskorn/kaml) | `0.67.0` | `0.71.0` | | [org.xerial:sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) | `3.48.0.0` | `3.49.0.0` | | [org.jetbrains.exposed:exposed-java-time](https://github.com/JetBrains/Exposed) | `0.58.0` | `0.59.0` | | [org.jetbrains.exposed:exposed-jdbc](https://github.com/JetBrains/Exposed) | `0.58.0` | `0.59.0` | | [org.jetbrains.exposed:exposed-dao](https://github.com/JetBrains/Exposed) | `0.58.0` | `0.59.0` | | [org.jetbrains.exposed:exposed-core](https://github.com/JetBrains/Exposed) | `0.58.0` | `0.59.0` | | com.velocitypowered:velocity-api | `3.4.0-SNAPSHOT` | `4.0.0-SNAPSHOT` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `4.28.3` | `4.32.0` | | net.fabricmc:fabric-language-kotlin | `1.13.0+` | `1.13.1+kotlin.2.1.10` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.115.1+` | `0.116.0+1.21.5` | | [ru.astrainteractive.klibs:mikro-core](https://github.com/makeevrserg/klibs.mikro) | `1.8.14` | `1.8.15` | | [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `3.2.4` | `3.2.6` | Updates `com.charleskorn.kaml:kaml` from 0.67.0 to 0.71.0 - [Release notes](https://github.com/charleskorn/kaml/releases) - [Changelog](https://github.com/charleskorn/kaml/blob/main/.releaserc.yml) - [Commits](https://github.com/charleskorn/kaml/compare/0.67.0...0.71.0) Updates `org.xerial:sqlite-jdbc` from 3.48.0.0 to 3.49.0.0 - [Release notes](https://github.com/xerial/sqlite-jdbc/releases) - [Changelog](https://github.com/xerial/sqlite-jdbc/blob/master/CHANGELOG) - [Commits](https://github.com/xerial/sqlite-jdbc/compare/3.48.0.0...3.49.0.0) Updates `org.jetbrains.exposed:exposed-java-time` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-core` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-core` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `com.velocitypowered:velocity-api` from 3.4.0-SNAPSHOT to 4.0.0-SNAPSHOT Updates `com.github.MockBukkit:MockBukkit` from 4.28.3 to 4.32.0 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v4.28.3...v4.32.0) Updates `net.fabricmc:fabric-language-kotlin` from 1.13.0+ to 1.13.1+kotlin.2.1.10 Updates `net.fabricmc.fabric-api:fabric-api` from 0.115.1+ to 0.116.0+1.21.5 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `ru.astrainteractive.klibs:mikro-core` from 1.8.14 to 1.8.15 - [Release notes](https://github.com/makeevrserg/klibs.mikro/releases) - [Commits](https://github.com/makeevrserg/klibs.mikro/compare/1.8.14...1.8.15) Updates `ru.astrainteractive.klibs:kstorage` from 3.2.4 to 3.2.6 - [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases) - [Commits](https://github.com/makeevrserg/klibs.kstorage/compare/3.2.4...3.2.6) --- updated-dependencies: - dependency-name: com.charleskorn.kaml:kaml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.xerial:sqlite-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-java-time dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.velocitypowered:velocity-api dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc:fabric-language-kotlin dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.klibs:mikro-core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.klibs:kstorage dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com> * Update gradle.properties * fix velocity version --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roman Makeev <57789105+makeevrserg@users.noreply.github.com> Co-authored-by: Roman Makeev <makeevrserg@gmail.com>
Войти

13.97 MB

7.7.6 Release 12.02.2025

AstraTemplate-forge

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
forge
Показать изменения
build(deps): bump the versions group across 1 directory with 12 updates (#57) * build(deps): bump the versions group across 1 directory with 12 updates Bumps the versions group with 12 updates in the / directory: | Package | From | To | | --- | --- | --- | | [com.charleskorn.kaml:kaml](https://github.com/charleskorn/kaml) | `0.67.0` | `0.71.0` | | [org.xerial:sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) | `3.48.0.0` | `3.49.0.0` | | [org.jetbrains.exposed:exposed-java-time](https://github.com/JetBrains/Exposed) | `0.58.0` | `0.59.0` | | [org.jetbrains.exposed:exposed-jdbc](https://github.com/JetBrains/Exposed) | `0.58.0` | `0.59.0` | | [org.jetbrains.exposed:exposed-dao](https://github.com/JetBrains/Exposed) | `0.58.0` | `0.59.0` | | [org.jetbrains.exposed:exposed-core](https://github.com/JetBrains/Exposed) | `0.58.0` | `0.59.0` | | com.velocitypowered:velocity-api | `3.4.0-SNAPSHOT` | `4.0.0-SNAPSHOT` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `4.28.3` | `4.32.0` | | net.fabricmc:fabric-language-kotlin | `1.13.0+` | `1.13.1+kotlin.2.1.10` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.115.1+` | `0.116.0+1.21.5` | | [ru.astrainteractive.klibs:mikro-core](https://github.com/makeevrserg/klibs.mikro) | `1.8.14` | `1.8.15` | | [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `3.2.4` | `3.2.6` | Updates `com.charleskorn.kaml:kaml` from 0.67.0 to 0.71.0 - [Release notes](https://github.com/charleskorn/kaml/releases) - [Changelog](https://github.com/charleskorn/kaml/blob/main/.releaserc.yml) - [Commits](https://github.com/charleskorn/kaml/compare/0.67.0...0.71.0) Updates `org.xerial:sqlite-jdbc` from 3.48.0.0 to 3.49.0.0 - [Release notes](https://github.com/xerial/sqlite-jdbc/releases) - [Changelog](https://github.com/xerial/sqlite-jdbc/blob/master/CHANGELOG) - [Commits](https://github.com/xerial/sqlite-jdbc/compare/3.48.0.0...3.49.0.0) Updates `org.jetbrains.exposed:exposed-java-time` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-core` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-core` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `com.velocitypowered:velocity-api` from 3.4.0-SNAPSHOT to 4.0.0-SNAPSHOT Updates `com.github.MockBukkit:MockBukkit` from 4.28.3 to 4.32.0 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v4.28.3...v4.32.0) Updates `net.fabricmc:fabric-language-kotlin` from 1.13.0+ to 1.13.1+kotlin.2.1.10 Updates `net.fabricmc.fabric-api:fabric-api` from 0.115.1+ to 0.116.0+1.21.5 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `ru.astrainteractive.klibs:mikro-core` from 1.8.14 to 1.8.15 - [Release notes](https://github.com/makeevrserg/klibs.mikro/releases) - [Commits](https://github.com/makeevrserg/klibs.mikro/compare/1.8.14...1.8.15) Updates `ru.astrainteractive.klibs:kstorage` from 3.2.4 to 3.2.6 - [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases) - [Commits](https://github.com/makeevrserg/klibs.kstorage/compare/3.2.4...3.2.6) --- updated-dependencies: - dependency-name: com.charleskorn.kaml:kaml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.xerial:sqlite-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-java-time dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.velocitypowered:velocity-api dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc:fabric-language-kotlin dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.klibs:mikro-core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.klibs:kstorage dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com> * Update gradle.properties * fix velocity version --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roman Makeev <57789105+makeevrserg@users.noreply.github.com> Co-authored-by: Roman Makeev <makeevrserg@gmail.com>
Войти

11.31 MB

7.7.6 Release 12.02.2025

AstraTemplate-velocity

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
velocity
Показать изменения
build(deps): bump the versions group across 1 directory with 12 updates (#57) * build(deps): bump the versions group across 1 directory with 12 updates Bumps the versions group with 12 updates in the / directory: | Package | From | To | | --- | --- | --- | | [com.charleskorn.kaml:kaml](https://github.com/charleskorn/kaml) | `0.67.0` | `0.71.0` | | [org.xerial:sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) | `3.48.0.0` | `3.49.0.0` | | [org.jetbrains.exposed:exposed-java-time](https://github.com/JetBrains/Exposed) | `0.58.0` | `0.59.0` | | [org.jetbrains.exposed:exposed-jdbc](https://github.com/JetBrains/Exposed) | `0.58.0` | `0.59.0` | | [org.jetbrains.exposed:exposed-dao](https://github.com/JetBrains/Exposed) | `0.58.0` | `0.59.0` | | [org.jetbrains.exposed:exposed-core](https://github.com/JetBrains/Exposed) | `0.58.0` | `0.59.0` | | com.velocitypowered:velocity-api | `3.4.0-SNAPSHOT` | `4.0.0-SNAPSHOT` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `4.28.3` | `4.32.0` | | net.fabricmc:fabric-language-kotlin | `1.13.0+` | `1.13.1+kotlin.2.1.10` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.115.1+` | `0.116.0+1.21.5` | | [ru.astrainteractive.klibs:mikro-core](https://github.com/makeevrserg/klibs.mikro) | `1.8.14` | `1.8.15` | | [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `3.2.4` | `3.2.6` | Updates `com.charleskorn.kaml:kaml` from 0.67.0 to 0.71.0 - [Release notes](https://github.com/charleskorn/kaml/releases) - [Changelog](https://github.com/charleskorn/kaml/blob/main/.releaserc.yml) - [Commits](https://github.com/charleskorn/kaml/compare/0.67.0...0.71.0) Updates `org.xerial:sqlite-jdbc` from 3.48.0.0 to 3.49.0.0 - [Release notes](https://github.com/xerial/sqlite-jdbc/releases) - [Changelog](https://github.com/xerial/sqlite-jdbc/blob/master/CHANGELOG) - [Commits](https://github.com/xerial/sqlite-jdbc/compare/3.48.0.0...3.49.0.0) Updates `org.jetbrains.exposed:exposed-java-time` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-core` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `org.jetbrains.exposed:exposed-core` from 0.58.0 to 0.59.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.58.0...0.59.0) Updates `com.velocitypowered:velocity-api` from 3.4.0-SNAPSHOT to 4.0.0-SNAPSHOT Updates `com.github.MockBukkit:MockBukkit` from 4.28.3 to 4.32.0 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v4.28.3...v4.32.0) Updates `net.fabricmc:fabric-language-kotlin` from 1.13.0+ to 1.13.1+kotlin.2.1.10 Updates `net.fabricmc.fabric-api:fabric-api` from 0.115.1+ to 0.116.0+1.21.5 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `ru.astrainteractive.klibs:mikro-core` from 1.8.14 to 1.8.15 - [Release notes](https://github.com/makeevrserg/klibs.mikro/releases) - [Commits](https://github.com/makeevrserg/klibs.mikro/compare/1.8.14...1.8.15) Updates `ru.astrainteractive.klibs:kstorage` from 3.2.4 to 3.2.6 - [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases) - [Commits](https://github.com/makeevrserg/klibs.kstorage/compare/3.2.4...3.2.6) --- updated-dependencies: - dependency-name: com.charleskorn.kaml:kaml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.xerial:sqlite-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-java-time dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.velocitypowered:velocity-api dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc:fabric-language-kotlin dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.klibs:mikro-core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.klibs:kstorage dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com> * Update gradle.properties * fix velocity version --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roman Makeev <57789105+makeevrserg@users.noreply.github.com> Co-authored-by: Roman Makeev <makeevrserg@gmail.com>
7.7.5 Release 27.01.2025

AstraTemplate-bukkit

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
bukkit
Показать изменения
build(deps): bump the versions group with 11 updates (#54) * build(deps): bump the versions group with 11 updates Bumps the versions group with 11 updates: | Package | From | To | | --- | --- | --- | | com.velocitypowered:velocity-api | `3.4.0-SNAPSHOT` | `4.0.0-SNAPSHOT` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `4.27.0` | `4.28.3` | | [ru.astrainteractive.astralibs:exposed](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [ru.astrainteractive.astralibs:core](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [ru.astrainteractive.astralibs:menu-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [ru.astrainteractive.astralibs:core-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [ru.astrainteractive.astralibs:command](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [ru.astrainteractive.astralibs:command-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.114.4+` | `0.115.1+1.21.5` | | [ru.astrainteractive.klibs:mikro-core](https://github.com/makeevrserg/klibs.mikro) | `1.8.13` | `1.8.14` | | [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `3.2.3` | `3.2.4` | Updates `com.velocitypowered:velocity-api` from 3.4.0-SNAPSHOT to 4.0.0-SNAPSHOT Updates `com.github.MockBukkit:MockBukkit` from 4.27.0 to 4.28.3 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v4.27.0...v4.28.3) Updates `ru.astrainteractive.astralibs:exposed` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:core` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:command` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:core` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:command` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `net.fabricmc.fabric-api:fabric-api` from 0.114.4+ to 0.115.1+1.21.5 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `ru.astrainteractive.klibs:mikro-core` from 1.8.13 to 1.8.14 - [Release notes](https://github.com/makeevrserg/klibs.mikro/releases) - [Commits](https://github.com/makeevrserg/klibs.mikro/compare/1.8.13...1.8.14) Updates `ru.astrainteractive.klibs:kstorage` from 3.2.3 to 3.2.4 - [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases) - [Commits](https://github.com/makeevrserg/klibs.kstorage/compare/3.2.3...3.2.4) --- updated-dependencies: - dependency-name: com.velocitypowered:velocity-api dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:exposed dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.klibs:mikro-core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.klibs:kstorage dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com> * Update gradle.properties * fix build --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roman Makeev <57789105+makeevrserg@users.noreply.github.com> Co-authored-by: Roman Makeev <makeevrserg@gmail.com>
Войти

9.11 MB

7.7.5 Release 27.01.2025

AstraTemplate-forge

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
forge
Показать изменения
build(deps): bump the versions group with 11 updates (#54) * build(deps): bump the versions group with 11 updates Bumps the versions group with 11 updates: | Package | From | To | | --- | --- | --- | | com.velocitypowered:velocity-api | `3.4.0-SNAPSHOT` | `4.0.0-SNAPSHOT` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `4.27.0` | `4.28.3` | | [ru.astrainteractive.astralibs:exposed](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [ru.astrainteractive.astralibs:core](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [ru.astrainteractive.astralibs:menu-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [ru.astrainteractive.astralibs:core-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [ru.astrainteractive.astralibs:command](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [ru.astrainteractive.astralibs:command-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.114.4+` | `0.115.1+1.21.5` | | [ru.astrainteractive.klibs:mikro-core](https://github.com/makeevrserg/klibs.mikro) | `1.8.13` | `1.8.14` | | [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `3.2.3` | `3.2.4` | Updates `com.velocitypowered:velocity-api` from 3.4.0-SNAPSHOT to 4.0.0-SNAPSHOT Updates `com.github.MockBukkit:MockBukkit` from 4.27.0 to 4.28.3 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v4.27.0...v4.28.3) Updates `ru.astrainteractive.astralibs:exposed` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:core` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:command` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:core` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:command` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `net.fabricmc.fabric-api:fabric-api` from 0.114.4+ to 0.115.1+1.21.5 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `ru.astrainteractive.klibs:mikro-core` from 1.8.13 to 1.8.14 - [Release notes](https://github.com/makeevrserg/klibs.mikro/releases) - [Commits](https://github.com/makeevrserg/klibs.mikro/compare/1.8.13...1.8.14) Updates `ru.astrainteractive.klibs:kstorage` from 3.2.3 to 3.2.4 - [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases) - [Commits](https://github.com/makeevrserg/klibs.kstorage/compare/3.2.3...3.2.4) --- updated-dependencies: - dependency-name: com.velocitypowered:velocity-api dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:exposed dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.klibs:mikro-core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.klibs:kstorage dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com> * Update gradle.properties * fix build --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roman Makeev <57789105+makeevrserg@users.noreply.github.com> Co-authored-by: Roman Makeev <makeevrserg@gmail.com>
Войти

11.31 MB

7.7.5 Release 27.01.2025

AstraTemplate-velocity

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
velocity
Показать изменения
build(deps): bump the versions group with 11 updates (#54) * build(deps): bump the versions group with 11 updates Bumps the versions group with 11 updates: | Package | From | To | | --- | --- | --- | | com.velocitypowered:velocity-api | `3.4.0-SNAPSHOT` | `4.0.0-SNAPSHOT` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `4.27.0` | `4.28.3` | | [ru.astrainteractive.astralibs:exposed](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [ru.astrainteractive.astralibs:core](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [ru.astrainteractive.astralibs:menu-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [ru.astrainteractive.astralibs:core-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [ru.astrainteractive.astralibs:command](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [ru.astrainteractive.astralibs:command-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.114.4+` | `0.115.1+1.21.5` | | [ru.astrainteractive.klibs:mikro-core](https://github.com/makeevrserg/klibs.mikro) | `1.8.13` | `1.8.14` | | [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `3.2.3` | `3.2.4` | Updates `com.velocitypowered:velocity-api` from 3.4.0-SNAPSHOT to 4.0.0-SNAPSHOT Updates `com.github.MockBukkit:MockBukkit` from 4.27.0 to 4.28.3 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v4.27.0...v4.28.3) Updates `ru.astrainteractive.astralibs:exposed` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:core` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:command` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:core` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:command` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `net.fabricmc.fabric-api:fabric-api` from 0.114.4+ to 0.115.1+1.21.5 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `ru.astrainteractive.klibs:mikro-core` from 1.8.13 to 1.8.14 - [Release notes](https://github.com/makeevrserg/klibs.mikro/releases) - [Commits](https://github.com/makeevrserg/klibs.mikro/compare/1.8.13...1.8.14) Updates `ru.astrainteractive.klibs:kstorage` from 3.2.3 to 3.2.4 - [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases) - [Commits](https://github.com/makeevrserg/klibs.kstorage/compare/3.2.3...3.2.4) --- updated-dependencies: - dependency-name: com.velocitypowered:velocity-api dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:exposed dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.klibs:mikro-core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.klibs:kstorage dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com> * Update gradle.properties * fix build --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roman Makeev <57789105+makeevrserg@users.noreply.github.com> Co-authored-by: Roman Makeev <makeevrserg@gmail.com>
Войти

4.11 MB

7.7.5 Release 27.01.2025

AstraTemplate-fabric

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
fabric
Показать изменения
build(deps): bump the versions group with 11 updates (#54) * build(deps): bump the versions group with 11 updates Bumps the versions group with 11 updates: | Package | From | To | | --- | --- | --- | | com.velocitypowered:velocity-api | `3.4.0-SNAPSHOT` | `4.0.0-SNAPSHOT` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `4.27.0` | `4.28.3` | | [ru.astrainteractive.astralibs:exposed](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [ru.astrainteractive.astralibs:core](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [ru.astrainteractive.astralibs:menu-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [ru.astrainteractive.astralibs:core-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [ru.astrainteractive.astralibs:command](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [ru.astrainteractive.astralibs:command-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.19.2` | `3.19.3` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.114.4+` | `0.115.1+1.21.5` | | [ru.astrainteractive.klibs:mikro-core](https://github.com/makeevrserg/klibs.mikro) | `1.8.13` | `1.8.14` | | [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `3.2.3` | `3.2.4` | Updates `com.velocitypowered:velocity-api` from 3.4.0-SNAPSHOT to 4.0.0-SNAPSHOT Updates `com.github.MockBukkit:MockBukkit` from 4.27.0 to 4.28.3 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v4.27.0...v4.28.3) Updates `ru.astrainteractive.astralibs:exposed` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:core` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:command` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:core` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:command` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.19.2 to 3.19.3 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.19.2...3.19.3) Updates `net.fabricmc.fabric-api:fabric-api` from 0.114.4+ to 0.115.1+1.21.5 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `ru.astrainteractive.klibs:mikro-core` from 1.8.13 to 1.8.14 - [Release notes](https://github.com/makeevrserg/klibs.mikro/releases) - [Commits](https://github.com/makeevrserg/klibs.mikro/compare/1.8.13...1.8.14) Updates `ru.astrainteractive.klibs:kstorage` from 3.2.3 to 3.2.4 - [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases) - [Commits](https://github.com/makeevrserg/klibs.kstorage/compare/3.2.3...3.2.4) --- updated-dependencies: - dependency-name: com.velocitypowered:velocity-api dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:exposed dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.klibs:mikro-core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.klibs:kstorage dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com> * Update gradle.properties * fix build --------- Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Roman Makeev <57789105+makeevrserg@users.noreply.github.com> Co-authored-by: Roman Makeev <makeevrserg@gmail.com>
Войти

13.95 MB

7.7.4 Release 25.01.2025

AstraTemplate-velocity

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
velocity
Показать изменения
build(deps): bump the versions group with 23 updates Bumps the versions group with 23 updates: | Package | From | To | | --- | --- | --- | | [net.minecraftforge:forge](https://github.com/MinecraftForge/MinecraftForge) | `1.21.3-53.0.25` | `1.21.4-54.0.17` | | [org.jetbrains.kotlinx:kotlinx-coroutines-core](https://github.com/Kotlin/kotlinx.coroutines) | `1.9.0` | `1.10.1` | | [org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm](https://github.com/Kotlin/kotlinx.coroutines) | `1.9.0` | `1.10.1` | | [org.jetbrains.kotlinx:kotlinx-serialization-json](https://github.com/Kotlin/kotlinx.serialization) | `1.7.3` | `1.8.0` | | [com.charleskorn.kaml:kaml](https://github.com/charleskorn/kaml) | `0.66.0` | `0.67.0` | | [org.xerial:sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) | `3.47.1.0` | `3.48.0.0` | | [org.junit:junit-bom](https://github.com/junit-team/junit5) | `5.11.3` | `5.11.4` | | [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit5) | `5.11.3` | `5.11.4` | | [org.jetbrains.exposed:exposed-java-time](https://github.com/JetBrains/Exposed) | `0.57.0` | `0.58.0` | | [org.jetbrains.exposed:exposed-jdbc](https://github.com/JetBrains/Exposed) | `0.57.0` | `0.58.0` | | [org.jetbrains.exposed:exposed-dao](https://github.com/JetBrains/Exposed) | `0.57.0` | `0.58.0` | | [org.jetbrains.exposed:exposed-core](https://github.com/JetBrains/Exposed) | `0.57.0` | `0.58.0` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `4.12.0` | `4.27.0` | | [ru.astrainteractive.astralibs:exposed](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | [ru.astrainteractive.astralibs:core](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | [ru.astrainteractive.astralibs:menu-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | [ru.astrainteractive.astralibs:core-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | [ru.astrainteractive.astralibs:command](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | [ru.astrainteractive.astralibs:command-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | net.fabricmc:fabric-loader | `0.16.9` | `0.16.10` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.111.0+` | `0.114.4+1.21.5` | | [ru.astrainteractive.klibs:mikro-core](https://github.com/makeevrserg/klibs.mikro) | `1.8.11` | `1.8.13` | | [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `3.2.1` | `3.2.3` | Updates `net.minecraftforge:forge` from 1.21.3-53.0.25 to 1.21.4-54.0.17 - [Commits](https://github.com/MinecraftForge/MinecraftForge/commits) Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core` from 1.9.0 to 1.10.1 - [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases) - [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md) - [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.9.0...1.10.1) Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm` from 1.9.0 to 1.10.1 - [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases) - [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md) - [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.9.0...1.10.1) Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm` from 1.9.0 to 1.10.1 - [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases) - [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md) - [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.9.0...1.10.1) Updates `org.jetbrains.kotlinx:kotlinx-serialization-json` from 1.7.3 to 1.8.0 - [Release notes](https://github.com/Kotlin/kotlinx.serialization/releases) - [Changelog](https://github.com/Kotlin/kotlinx.serialization/blob/master/CHANGELOG.md) - [Commits](https://github.com/Kotlin/kotlinx.serialization/compare/v1.7.3...v1.8.0) Updates `com.charleskorn.kaml:kaml` from 0.66.0 to 0.67.0 - [Release notes](https://github.com/charleskorn/kaml/releases) - [Changelog](https://github.com/charleskorn/kaml/blob/main/.releaserc.yml) - [Commits](https://github.com/charleskorn/kaml/compare/0.66.0...0.67.0) Updates `org.xerial:sqlite-jdbc` from 3.47.1.0 to 3.48.0.0 - [Release notes](https://github.com/xerial/sqlite-jdbc/releases) - [Changelog](https://github.com/xerial/sqlite-jdbc/blob/master/CHANGELOG) - [Commits](https://github.com/xerial/sqlite-jdbc/compare/3.47.1.0...3.48.0.0) Updates `org.junit:junit-bom` from 5.11.3 to 5.11.4 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.3...r5.11.4) Updates `org.junit.jupiter:junit-jupiter-api` from 5.11.3 to 5.11.4 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.3...r5.11.4) Updates `org.jetbrains.exposed:exposed-java-time` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-core` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-core` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `com.github.MockBukkit:MockBukkit` from 4.12.0 to 4.27.0 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v4.12.0...v4.27.0) Updates `ru.astrainteractive.astralibs:exposed` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:core` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:command` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:core` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:command` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `net.fabricmc:fabric-loader` from 0.16.9 to 0.16.10 Updates `net.fabricmc.fabric-api:fabric-api` from 0.111.0+ to 0.114.4+1.21.5 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `ru.astrainteractive.klibs:mikro-core` from 1.8.11 to 1.8.13 - [Release notes](https://github.com/makeevrserg/klibs.mikro/releases) - [Commits](https://github.com/makeevrserg/klibs.mikro/commits/1.8.13) Updates `ru.astrainteractive.klibs:kstorage` from 3.2.1 to 3.2.3 - [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases) - [Commits](https://github.com/makeevrserg/klibs.kstorage/commits/3.2.3) --- updated-dependencies: - dependency-name: net.minecraftforge:forge dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.kotlinx:kotlinx-serialization-json dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.charleskorn.kaml:kaml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.xerial:sqlite-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.junit:junit-bom dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.junit.jupiter:junit-jupiter-api dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-java-time dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:exposed dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc:fabric-loader dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.klibs:mikro-core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.klibs:kstorage dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com>\nUpdate gradle.properties\nfix build\nremove papermc maven\nfix paper repo\nMerge pull request #52 from Astra-Interactive/dependabot/gradle/versions-6ca88bba75 build(deps): bump the versions group with 23 updates
Войти

4.11 MB

7.7.4 Release 25.01.2025

AstraTemplate-bukkit

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
bukkit
Показать изменения
build(deps): bump the versions group with 23 updates Bumps the versions group with 23 updates: | Package | From | To | | --- | --- | --- | | [net.minecraftforge:forge](https://github.com/MinecraftForge/MinecraftForge) | `1.21.3-53.0.25` | `1.21.4-54.0.17` | | [org.jetbrains.kotlinx:kotlinx-coroutines-core](https://github.com/Kotlin/kotlinx.coroutines) | `1.9.0` | `1.10.1` | | [org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm](https://github.com/Kotlin/kotlinx.coroutines) | `1.9.0` | `1.10.1` | | [org.jetbrains.kotlinx:kotlinx-serialization-json](https://github.com/Kotlin/kotlinx.serialization) | `1.7.3` | `1.8.0` | | [com.charleskorn.kaml:kaml](https://github.com/charleskorn/kaml) | `0.66.0` | `0.67.0` | | [org.xerial:sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) | `3.47.1.0` | `3.48.0.0` | | [org.junit:junit-bom](https://github.com/junit-team/junit5) | `5.11.3` | `5.11.4` | | [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit5) | `5.11.3` | `5.11.4` | | [org.jetbrains.exposed:exposed-java-time](https://github.com/JetBrains/Exposed) | `0.57.0` | `0.58.0` | | [org.jetbrains.exposed:exposed-jdbc](https://github.com/JetBrains/Exposed) | `0.57.0` | `0.58.0` | | [org.jetbrains.exposed:exposed-dao](https://github.com/JetBrains/Exposed) | `0.57.0` | `0.58.0` | | [org.jetbrains.exposed:exposed-core](https://github.com/JetBrains/Exposed) | `0.57.0` | `0.58.0` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `4.12.0` | `4.27.0` | | [ru.astrainteractive.astralibs:exposed](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | [ru.astrainteractive.astralibs:core](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | [ru.astrainteractive.astralibs:menu-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | [ru.astrainteractive.astralibs:core-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | [ru.astrainteractive.astralibs:command](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | [ru.astrainteractive.astralibs:command-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | net.fabricmc:fabric-loader | `0.16.9` | `0.16.10` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.111.0+` | `0.114.4+1.21.5` | | [ru.astrainteractive.klibs:mikro-core](https://github.com/makeevrserg/klibs.mikro) | `1.8.11` | `1.8.13` | | [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `3.2.1` | `3.2.3` | Updates `net.minecraftforge:forge` from 1.21.3-53.0.25 to 1.21.4-54.0.17 - [Commits](https://github.com/MinecraftForge/MinecraftForge/commits) Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core` from 1.9.0 to 1.10.1 - [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases) - [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md) - [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.9.0...1.10.1) Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm` from 1.9.0 to 1.10.1 - [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases) - [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md) - [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.9.0...1.10.1) Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm` from 1.9.0 to 1.10.1 - [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases) - [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md) - [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.9.0...1.10.1) Updates `org.jetbrains.kotlinx:kotlinx-serialization-json` from 1.7.3 to 1.8.0 - [Release notes](https://github.com/Kotlin/kotlinx.serialization/releases) - [Changelog](https://github.com/Kotlin/kotlinx.serialization/blob/master/CHANGELOG.md) - [Commits](https://github.com/Kotlin/kotlinx.serialization/compare/v1.7.3...v1.8.0) Updates `com.charleskorn.kaml:kaml` from 0.66.0 to 0.67.0 - [Release notes](https://github.com/charleskorn/kaml/releases) - [Changelog](https://github.com/charleskorn/kaml/blob/main/.releaserc.yml) - [Commits](https://github.com/charleskorn/kaml/compare/0.66.0...0.67.0) Updates `org.xerial:sqlite-jdbc` from 3.47.1.0 to 3.48.0.0 - [Release notes](https://github.com/xerial/sqlite-jdbc/releases) - [Changelog](https://github.com/xerial/sqlite-jdbc/blob/master/CHANGELOG) - [Commits](https://github.com/xerial/sqlite-jdbc/compare/3.47.1.0...3.48.0.0) Updates `org.junit:junit-bom` from 5.11.3 to 5.11.4 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.3...r5.11.4) Updates `org.junit.jupiter:junit-jupiter-api` from 5.11.3 to 5.11.4 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.3...r5.11.4) Updates `org.jetbrains.exposed:exposed-java-time` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-core` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-core` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `com.github.MockBukkit:MockBukkit` from 4.12.0 to 4.27.0 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v4.12.0...v4.27.0) Updates `ru.astrainteractive.astralibs:exposed` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:core` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:command` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:core` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:command` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `net.fabricmc:fabric-loader` from 0.16.9 to 0.16.10 Updates `net.fabricmc.fabric-api:fabric-api` from 0.111.0+ to 0.114.4+1.21.5 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `ru.astrainteractive.klibs:mikro-core` from 1.8.11 to 1.8.13 - [Release notes](https://github.com/makeevrserg/klibs.mikro/releases) - [Commits](https://github.com/makeevrserg/klibs.mikro/commits/1.8.13) Updates `ru.astrainteractive.klibs:kstorage` from 3.2.1 to 3.2.3 - [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases) - [Commits](https://github.com/makeevrserg/klibs.kstorage/commits/3.2.3) --- updated-dependencies: - dependency-name: net.minecraftforge:forge dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.kotlinx:kotlinx-serialization-json dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.charleskorn.kaml:kaml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.xerial:sqlite-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.junit:junit-bom dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.junit.jupiter:junit-jupiter-api dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-java-time dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:exposed dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc:fabric-loader dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.klibs:mikro-core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.klibs:kstorage dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com>\nUpdate gradle.properties\nfix build\nremove papermc maven\nfix paper repo\nMerge pull request #52 from Astra-Interactive/dependabot/gradle/versions-6ca88bba75 build(deps): bump the versions group with 23 updates
Войти

9.11 MB

7.7.4 Release 25.01.2025

AstraTemplate-fabric

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
fabric
Показать изменения
build(deps): bump the versions group with 23 updates Bumps the versions group with 23 updates: | Package | From | To | | --- | --- | --- | | [net.minecraftforge:forge](https://github.com/MinecraftForge/MinecraftForge) | `1.21.3-53.0.25` | `1.21.4-54.0.17` | | [org.jetbrains.kotlinx:kotlinx-coroutines-core](https://github.com/Kotlin/kotlinx.coroutines) | `1.9.0` | `1.10.1` | | [org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm](https://github.com/Kotlin/kotlinx.coroutines) | `1.9.0` | `1.10.1` | | [org.jetbrains.kotlinx:kotlinx-serialization-json](https://github.com/Kotlin/kotlinx.serialization) | `1.7.3` | `1.8.0` | | [com.charleskorn.kaml:kaml](https://github.com/charleskorn/kaml) | `0.66.0` | `0.67.0` | | [org.xerial:sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) | `3.47.1.0` | `3.48.0.0` | | [org.junit:junit-bom](https://github.com/junit-team/junit5) | `5.11.3` | `5.11.4` | | [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit5) | `5.11.3` | `5.11.4` | | [org.jetbrains.exposed:exposed-java-time](https://github.com/JetBrains/Exposed) | `0.57.0` | `0.58.0` | | [org.jetbrains.exposed:exposed-jdbc](https://github.com/JetBrains/Exposed) | `0.57.0` | `0.58.0` | | [org.jetbrains.exposed:exposed-dao](https://github.com/JetBrains/Exposed) | `0.57.0` | `0.58.0` | | [org.jetbrains.exposed:exposed-core](https://github.com/JetBrains/Exposed) | `0.57.0` | `0.58.0` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `4.12.0` | `4.27.0` | | [ru.astrainteractive.astralibs:exposed](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | [ru.astrainteractive.astralibs:core](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | [ru.astrainteractive.astralibs:menu-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | [ru.astrainteractive.astralibs:core-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | [ru.astrainteractive.astralibs:command](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | [ru.astrainteractive.astralibs:command-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | net.fabricmc:fabric-loader | `0.16.9` | `0.16.10` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.111.0+` | `0.114.4+1.21.5` | | [ru.astrainteractive.klibs:mikro-core](https://github.com/makeevrserg/klibs.mikro) | `1.8.11` | `1.8.13` | | [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `3.2.1` | `3.2.3` | Updates `net.minecraftforge:forge` from 1.21.3-53.0.25 to 1.21.4-54.0.17 - [Commits](https://github.com/MinecraftForge/MinecraftForge/commits) Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core` from 1.9.0 to 1.10.1 - [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases) - [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md) - [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.9.0...1.10.1) Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm` from 1.9.0 to 1.10.1 - [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases) - [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md) - [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.9.0...1.10.1) Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm` from 1.9.0 to 1.10.1 - [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases) - [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md) - [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.9.0...1.10.1) Updates `org.jetbrains.kotlinx:kotlinx-serialization-json` from 1.7.3 to 1.8.0 - [Release notes](https://github.com/Kotlin/kotlinx.serialization/releases) - [Changelog](https://github.com/Kotlin/kotlinx.serialization/blob/master/CHANGELOG.md) - [Commits](https://github.com/Kotlin/kotlinx.serialization/compare/v1.7.3...v1.8.0) Updates `com.charleskorn.kaml:kaml` from 0.66.0 to 0.67.0 - [Release notes](https://github.com/charleskorn/kaml/releases) - [Changelog](https://github.com/charleskorn/kaml/blob/main/.releaserc.yml) - [Commits](https://github.com/charleskorn/kaml/compare/0.66.0...0.67.0) Updates `org.xerial:sqlite-jdbc` from 3.47.1.0 to 3.48.0.0 - [Release notes](https://github.com/xerial/sqlite-jdbc/releases) - [Changelog](https://github.com/xerial/sqlite-jdbc/blob/master/CHANGELOG) - [Commits](https://github.com/xerial/sqlite-jdbc/compare/3.47.1.0...3.48.0.0) Updates `org.junit:junit-bom` from 5.11.3 to 5.11.4 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.3...r5.11.4) Updates `org.junit.jupiter:junit-jupiter-api` from 5.11.3 to 5.11.4 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.3...r5.11.4) Updates `org.jetbrains.exposed:exposed-java-time` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-core` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-core` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `com.github.MockBukkit:MockBukkit` from 4.12.0 to 4.27.0 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v4.12.0...v4.27.0) Updates `ru.astrainteractive.astralibs:exposed` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:core` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:command` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:core` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:command` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `net.fabricmc:fabric-loader` from 0.16.9 to 0.16.10 Updates `net.fabricmc.fabric-api:fabric-api` from 0.111.0+ to 0.114.4+1.21.5 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `ru.astrainteractive.klibs:mikro-core` from 1.8.11 to 1.8.13 - [Release notes](https://github.com/makeevrserg/klibs.mikro/releases) - [Commits](https://github.com/makeevrserg/klibs.mikro/commits/1.8.13) Updates `ru.astrainteractive.klibs:kstorage` from 3.2.1 to 3.2.3 - [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases) - [Commits](https://github.com/makeevrserg/klibs.kstorage/commits/3.2.3) --- updated-dependencies: - dependency-name: net.minecraftforge:forge dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.kotlinx:kotlinx-serialization-json dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.charleskorn.kaml:kaml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.xerial:sqlite-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.junit:junit-bom dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.junit.jupiter:junit-jupiter-api dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-java-time dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:exposed dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc:fabric-loader dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.klibs:mikro-core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.klibs:kstorage dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com>\nUpdate gradle.properties\nfix build\nremove papermc maven\nfix paper repo\nMerge pull request #52 from Astra-Interactive/dependabot/gradle/versions-6ca88bba75 build(deps): bump the versions group with 23 updates
Войти

13.95 MB

7.7.4 Release 25.01.2025

AstraTemplate-forge

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
forge
Показать изменения
build(deps): bump the versions group with 23 updates Bumps the versions group with 23 updates: | Package | From | To | | --- | --- | --- | | [net.minecraftforge:forge](https://github.com/MinecraftForge/MinecraftForge) | `1.21.3-53.0.25` | `1.21.4-54.0.17` | | [org.jetbrains.kotlinx:kotlinx-coroutines-core](https://github.com/Kotlin/kotlinx.coroutines) | `1.9.0` | `1.10.1` | | [org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm](https://github.com/Kotlin/kotlinx.coroutines) | `1.9.0` | `1.10.1` | | [org.jetbrains.kotlinx:kotlinx-serialization-json](https://github.com/Kotlin/kotlinx.serialization) | `1.7.3` | `1.8.0` | | [com.charleskorn.kaml:kaml](https://github.com/charleskorn/kaml) | `0.66.0` | `0.67.0` | | [org.xerial:sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) | `3.47.1.0` | `3.48.0.0` | | [org.junit:junit-bom](https://github.com/junit-team/junit5) | `5.11.3` | `5.11.4` | | [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit5) | `5.11.3` | `5.11.4` | | [org.jetbrains.exposed:exposed-java-time](https://github.com/JetBrains/Exposed) | `0.57.0` | `0.58.0` | | [org.jetbrains.exposed:exposed-jdbc](https://github.com/JetBrains/Exposed) | `0.57.0` | `0.58.0` | | [org.jetbrains.exposed:exposed-dao](https://github.com/JetBrains/Exposed) | `0.57.0` | `0.58.0` | | [org.jetbrains.exposed:exposed-core](https://github.com/JetBrains/Exposed) | `0.57.0` | `0.58.0` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `4.12.0` | `4.27.0` | | [ru.astrainteractive.astralibs:exposed](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | [ru.astrainteractive.astralibs:core](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | [ru.astrainteractive.astralibs:menu-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | [ru.astrainteractive.astralibs:core-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | [ru.astrainteractive.astralibs:command](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | [ru.astrainteractive.astralibs:command-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.17.0` | `3.19.2` | | net.fabricmc:fabric-loader | `0.16.9` | `0.16.10` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.111.0+` | `0.114.4+1.21.5` | | [ru.astrainteractive.klibs:mikro-core](https://github.com/makeevrserg/klibs.mikro) | `1.8.11` | `1.8.13` | | [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `3.2.1` | `3.2.3` | Updates `net.minecraftforge:forge` from 1.21.3-53.0.25 to 1.21.4-54.0.17 - [Commits](https://github.com/MinecraftForge/MinecraftForge/commits) Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core` from 1.9.0 to 1.10.1 - [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases) - [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md) - [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.9.0...1.10.1) Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm` from 1.9.0 to 1.10.1 - [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases) - [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md) - [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.9.0...1.10.1) Updates `org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm` from 1.9.0 to 1.10.1 - [Release notes](https://github.com/Kotlin/kotlinx.coroutines/releases) - [Changelog](https://github.com/Kotlin/kotlinx.coroutines/blob/master/CHANGES.md) - [Commits](https://github.com/Kotlin/kotlinx.coroutines/compare/1.9.0...1.10.1) Updates `org.jetbrains.kotlinx:kotlinx-serialization-json` from 1.7.3 to 1.8.0 - [Release notes](https://github.com/Kotlin/kotlinx.serialization/releases) - [Changelog](https://github.com/Kotlin/kotlinx.serialization/blob/master/CHANGELOG.md) - [Commits](https://github.com/Kotlin/kotlinx.serialization/compare/v1.7.3...v1.8.0) Updates `com.charleskorn.kaml:kaml` from 0.66.0 to 0.67.0 - [Release notes](https://github.com/charleskorn/kaml/releases) - [Changelog](https://github.com/charleskorn/kaml/blob/main/.releaserc.yml) - [Commits](https://github.com/charleskorn/kaml/compare/0.66.0...0.67.0) Updates `org.xerial:sqlite-jdbc` from 3.47.1.0 to 3.48.0.0 - [Release notes](https://github.com/xerial/sqlite-jdbc/releases) - [Changelog](https://github.com/xerial/sqlite-jdbc/blob/master/CHANGELOG) - [Commits](https://github.com/xerial/sqlite-jdbc/compare/3.47.1.0...3.48.0.0) Updates `org.junit:junit-bom` from 5.11.3 to 5.11.4 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.3...r5.11.4) Updates `org.junit.jupiter:junit-jupiter-api` from 5.11.3 to 5.11.4 - [Release notes](https://github.com/junit-team/junit5/releases) - [Commits](https://github.com/junit-team/junit5/compare/r5.11.3...r5.11.4) Updates `org.jetbrains.exposed:exposed-java-time` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-core` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `org.jetbrains.exposed:exposed-core` from 0.57.0 to 0.58.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.57.0...0.58.0) Updates `com.github.MockBukkit:MockBukkit` from 4.12.0 to 4.27.0 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v4.12.0...v4.27.0) Updates `ru.astrainteractive.astralibs:exposed` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:core` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:command` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:core` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:command` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.17.0 to 3.19.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.17.0...3.19.2) Updates `net.fabricmc:fabric-loader` from 0.16.9 to 0.16.10 Updates `net.fabricmc.fabric-api:fabric-api` from 0.111.0+ to 0.114.4+1.21.5 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `ru.astrainteractive.klibs:mikro-core` from 1.8.11 to 1.8.13 - [Release notes](https://github.com/makeevrserg/klibs.mikro/releases) - [Commits](https://github.com/makeevrserg/klibs.mikro/commits/1.8.13) Updates `ru.astrainteractive.klibs:kstorage` from 3.2.1 to 3.2.3 - [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases) - [Commits](https://github.com/makeevrserg/klibs.kstorage/commits/3.2.3) --- updated-dependencies: - dependency-name: net.minecraftforge:forge dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.kotlinx:kotlinx-coroutines-core-jvm dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.kotlinx:kotlinx-serialization-json dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.charleskorn.kaml:kaml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.xerial:sqlite-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.junit:junit-bom dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.junit.jupiter:junit-jupiter-api dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-java-time dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:exposed dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc:fabric-loader dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.klibs:mikro-core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.klibs:kstorage dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com>\nUpdate gradle.properties\nfix build\nremove papermc maven\nfix paper repo\nMerge pull request #52 from Astra-Interactive/dependabot/gradle/versions-6ca88bba75 build(deps): bump the versions group with 23 updates
Войти

11.31 MB

7.7.3 Release 13.12.2024

AstraTemplate-fabric

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
fabric
Показать изменения
build(deps): bump the versions group with 11 updates Bumps the versions group with 11 updates: | Package | From | To | | --- | --- | --- | | [net.minecraftforge:forge](https://github.com/MinecraftForge/MinecraftForge) | `1.21.3-53.0.25` | `1.21.4-54.0.6` | | [org.jetbrains.exposed:exposed-java-time](https://github.com/JetBrains/Exposed) | `0.56.0` | `0.57.0` | | [org.jetbrains.exposed:exposed-jdbc](https://github.com/JetBrains/Exposed) | `0.56.0` | `0.57.0` | | [org.jetbrains.exposed:exposed-dao](https://github.com/JetBrains/Exposed) | `0.56.0` | `0.57.0` | | [org.jetbrains.exposed:exposed-core](https://github.com/JetBrains/Exposed) | `0.56.0` | `0.57.0` | | com.velocitypowered:velocity-api | `3.3.0-SNAPSHOT` | `4.0.0-SNAPSHOT` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `4.9.0` | `4.12.0` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.110.3+` | `0.111.0+1.21.4` | | [ru.astrainteractive.klibs:mikro-core](https://github.com/makeevrserg/klibs.mikro) | `1.8.8` | `1.8.11` | | [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `3.2.0` | `3.2.1` | | fabric-loom | `1.9.1` | `1.9.2` | Updates `net.minecraftforge:forge` from 1.21.3-53.0.25 to 1.21.4-54.0.6 - [Commits](https://github.com/MinecraftForge/MinecraftForge/commits) Updates `org.jetbrains.exposed:exposed-java-time` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-core` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-core` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `com.velocitypowered:velocity-api` from 3.3.0-SNAPSHOT to 4.0.0-SNAPSHOT Updates `com.github.MockBukkit:MockBukkit` from 4.9.0 to 4.12.0 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v4.9.0...v4.12.0) Updates `net.fabricmc.fabric-api:fabric-api` from 0.110.3+ to 0.111.0+1.21.4 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `ru.astrainteractive.klibs:mikro-core` from 1.8.8 to 1.8.11 - [Release notes](https://github.com/makeevrserg/klibs.mikro/releases) - [Commits](https://github.com/makeevrserg/klibs.mikro/commits) Updates `ru.astrainteractive.klibs:kstorage` from 3.2.0 to 3.2.1 - [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases) - [Commits](https://github.com/makeevrserg/klibs.kstorage/commits) Updates `fabric-loom` from 1.9.1 to 1.9.2 --- updated-dependencies: - dependency-name: net.minecraftforge:forge dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-java-time dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.velocitypowered:velocity-api dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.klibs:mikro-core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.klibs:kstorage dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: fabric-loom dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com>\nUpdate gradle.properties\nfix velocity version\nfix forge\nMerge pull request #46 from Astra-Interactive/dependabot/gradle/versions-091ee0d0dc build(deps): bump the versions group with 11 updates
Войти

13.92 MB

7.7.3 Release 13.12.2024

AstraTemplate-forge

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
forge
Показать изменения
build(deps): bump the versions group with 11 updates Bumps the versions group with 11 updates: | Package | From | To | | --- | --- | --- | | [net.minecraftforge:forge](https://github.com/MinecraftForge/MinecraftForge) | `1.21.3-53.0.25` | `1.21.4-54.0.6` | | [org.jetbrains.exposed:exposed-java-time](https://github.com/JetBrains/Exposed) | `0.56.0` | `0.57.0` | | [org.jetbrains.exposed:exposed-jdbc](https://github.com/JetBrains/Exposed) | `0.56.0` | `0.57.0` | | [org.jetbrains.exposed:exposed-dao](https://github.com/JetBrains/Exposed) | `0.56.0` | `0.57.0` | | [org.jetbrains.exposed:exposed-core](https://github.com/JetBrains/Exposed) | `0.56.0` | `0.57.0` | | com.velocitypowered:velocity-api | `3.3.0-SNAPSHOT` | `4.0.0-SNAPSHOT` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `4.9.0` | `4.12.0` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.110.3+` | `0.111.0+1.21.4` | | [ru.astrainteractive.klibs:mikro-core](https://github.com/makeevrserg/klibs.mikro) | `1.8.8` | `1.8.11` | | [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `3.2.0` | `3.2.1` | | fabric-loom | `1.9.1` | `1.9.2` | Updates `net.minecraftforge:forge` from 1.21.3-53.0.25 to 1.21.4-54.0.6 - [Commits](https://github.com/MinecraftForge/MinecraftForge/commits) Updates `org.jetbrains.exposed:exposed-java-time` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-core` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-core` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `com.velocitypowered:velocity-api` from 3.3.0-SNAPSHOT to 4.0.0-SNAPSHOT Updates `com.github.MockBukkit:MockBukkit` from 4.9.0 to 4.12.0 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v4.9.0...v4.12.0) Updates `net.fabricmc.fabric-api:fabric-api` from 0.110.3+ to 0.111.0+1.21.4 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `ru.astrainteractive.klibs:mikro-core` from 1.8.8 to 1.8.11 - [Release notes](https://github.com/makeevrserg/klibs.mikro/releases) - [Commits](https://github.com/makeevrserg/klibs.mikro/commits) Updates `ru.astrainteractive.klibs:kstorage` from 3.2.0 to 3.2.1 - [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases) - [Commits](https://github.com/makeevrserg/klibs.kstorage/commits) Updates `fabric-loom` from 1.9.1 to 1.9.2 --- updated-dependencies: - dependency-name: net.minecraftforge:forge dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-java-time dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.velocitypowered:velocity-api dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.klibs:mikro-core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.klibs:kstorage dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: fabric-loom dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com>\nUpdate gradle.properties\nfix velocity version\nfix forge\nMerge pull request #46 from Astra-Interactive/dependabot/gradle/versions-091ee0d0dc build(deps): bump the versions group with 11 updates
Войти

11.25 MB

7.7.3 Release 13.12.2024

AstraTemplate-bukkit

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
bukkit
Показать изменения
build(deps): bump the versions group with 11 updates Bumps the versions group with 11 updates: | Package | From | To | | --- | --- | --- | | [net.minecraftforge:forge](https://github.com/MinecraftForge/MinecraftForge) | `1.21.3-53.0.25` | `1.21.4-54.0.6` | | [org.jetbrains.exposed:exposed-java-time](https://github.com/JetBrains/Exposed) | `0.56.0` | `0.57.0` | | [org.jetbrains.exposed:exposed-jdbc](https://github.com/JetBrains/Exposed) | `0.56.0` | `0.57.0` | | [org.jetbrains.exposed:exposed-dao](https://github.com/JetBrains/Exposed) | `0.56.0` | `0.57.0` | | [org.jetbrains.exposed:exposed-core](https://github.com/JetBrains/Exposed) | `0.56.0` | `0.57.0` | | com.velocitypowered:velocity-api | `3.3.0-SNAPSHOT` | `4.0.0-SNAPSHOT` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `4.9.0` | `4.12.0` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.110.3+` | `0.111.0+1.21.4` | | [ru.astrainteractive.klibs:mikro-core](https://github.com/makeevrserg/klibs.mikro) | `1.8.8` | `1.8.11` | | [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `3.2.0` | `3.2.1` | | fabric-loom | `1.9.1` | `1.9.2` | Updates `net.minecraftforge:forge` from 1.21.3-53.0.25 to 1.21.4-54.0.6 - [Commits](https://github.com/MinecraftForge/MinecraftForge/commits) Updates `org.jetbrains.exposed:exposed-java-time` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-core` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-core` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `com.velocitypowered:velocity-api` from 3.3.0-SNAPSHOT to 4.0.0-SNAPSHOT Updates `com.github.MockBukkit:MockBukkit` from 4.9.0 to 4.12.0 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v4.9.0...v4.12.0) Updates `net.fabricmc.fabric-api:fabric-api` from 0.110.3+ to 0.111.0+1.21.4 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `ru.astrainteractive.klibs:mikro-core` from 1.8.8 to 1.8.11 - [Release notes](https://github.com/makeevrserg/klibs.mikro/releases) - [Commits](https://github.com/makeevrserg/klibs.mikro/commits) Updates `ru.astrainteractive.klibs:kstorage` from 3.2.0 to 3.2.1 - [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases) - [Commits](https://github.com/makeevrserg/klibs.kstorage/commits) Updates `fabric-loom` from 1.9.1 to 1.9.2 --- updated-dependencies: - dependency-name: net.minecraftforge:forge dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-java-time dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.velocitypowered:velocity-api dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.klibs:mikro-core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.klibs:kstorage dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: fabric-loom dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com>\nUpdate gradle.properties\nfix velocity version\nfix forge\nMerge pull request #46 from Astra-Interactive/dependabot/gradle/versions-091ee0d0dc build(deps): bump the versions group with 11 updates
Войти

9.07 MB

7.7.3 Release 13.12.2024

AstraTemplate-velocity

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
velocity
Показать изменения
build(deps): bump the versions group with 11 updates Bumps the versions group with 11 updates: | Package | From | To | | --- | --- | --- | | [net.minecraftforge:forge](https://github.com/MinecraftForge/MinecraftForge) | `1.21.3-53.0.25` | `1.21.4-54.0.6` | | [org.jetbrains.exposed:exposed-java-time](https://github.com/JetBrains/Exposed) | `0.56.0` | `0.57.0` | | [org.jetbrains.exposed:exposed-jdbc](https://github.com/JetBrains/Exposed) | `0.56.0` | `0.57.0` | | [org.jetbrains.exposed:exposed-dao](https://github.com/JetBrains/Exposed) | `0.56.0` | `0.57.0` | | [org.jetbrains.exposed:exposed-core](https://github.com/JetBrains/Exposed) | `0.56.0` | `0.57.0` | | com.velocitypowered:velocity-api | `3.3.0-SNAPSHOT` | `4.0.0-SNAPSHOT` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `4.9.0` | `4.12.0` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.110.3+` | `0.111.0+1.21.4` | | [ru.astrainteractive.klibs:mikro-core](https://github.com/makeevrserg/klibs.mikro) | `1.8.8` | `1.8.11` | | [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `3.2.0` | `3.2.1` | | fabric-loom | `1.9.1` | `1.9.2` | Updates `net.minecraftforge:forge` from 1.21.3-53.0.25 to 1.21.4-54.0.6 - [Commits](https://github.com/MinecraftForge/MinecraftForge/commits) Updates `org.jetbrains.exposed:exposed-java-time` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-core` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `org.jetbrains.exposed:exposed-core` from 0.56.0 to 0.57.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.56.0...0.57.0) Updates `com.velocitypowered:velocity-api` from 3.3.0-SNAPSHOT to 4.0.0-SNAPSHOT Updates `com.github.MockBukkit:MockBukkit` from 4.9.0 to 4.12.0 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v4.9.0...v4.12.0) Updates `net.fabricmc.fabric-api:fabric-api` from 0.110.3+ to 0.111.0+1.21.4 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `ru.astrainteractive.klibs:mikro-core` from 1.8.8 to 1.8.11 - [Release notes](https://github.com/makeevrserg/klibs.mikro/releases) - [Commits](https://github.com/makeevrserg/klibs.mikro/commits) Updates `ru.astrainteractive.klibs:kstorage` from 3.2.0 to 3.2.1 - [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases) - [Commits](https://github.com/makeevrserg/klibs.kstorage/commits) Updates `fabric-loom` from 1.9.1 to 1.9.2 --- updated-dependencies: - dependency-name: net.minecraftforge:forge dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-java-time dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.velocitypowered:velocity-api dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.klibs:mikro-core dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: ru.astrainteractive.klibs:kstorage dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: fabric-loom dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com>\nUpdate gradle.properties\nfix velocity version\nfix forge\nMerge pull request #46 from Astra-Interactive/dependabot/gradle/versions-091ee0d0dc build(deps): bump the versions group with 11 updates
Войти

4.06 MB

7.7.2 Release 04.12.2024

AstraTemplate-bukkit

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
bukkit
Показать изменения
build(deps): bump the versions group with 24 updates Bumps the versions group with 24 updates: | Package | From | To | | --- | --- | --- | | [net.minecraftforge:forge](https://github.com/MinecraftForge/MinecraftForge) | `1.20.1-47.2.20` | `1.21.3-53.0.25` | | [com.charleskorn.kaml:kaml](https://github.com/charleskorn/kaml) | `0.61.0` | `0.66.0` | | [org.xerial:sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) | `3.46.1.3` | `3.47.1.0` | | [org.junit:junit-bom](https://github.com/junit-team/junit5) | `5.11.2` | `5.11.3` | | [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit5) | `5.11.2` | `5.11.3` | | [org.jetbrains.exposed:exposed-java-time](https://github.com/JetBrains/Exposed) | `0.55.0` | `0.56.0` | | [org.jetbrains.exposed:exposed-jdbc](https://github.com/JetBrains/Exposed) | `0.55.0` | `0.56.0` | | [org.jetbrains.exposed:exposed-dao](https://github.com/JetBrains/Exposed) | `0.55.0` | `0.56.0` | | [org.jetbrains.exposed:exposed-core](https://github.com/JetBrains/Exposed) | `0.55.0` | `0.56.0` | | com.velocitypowered:velocity-api | `3.3.0-SNAPSHOT` | `4.0.0-SNAPSHOT` | | com.comphenix.protocol:ProtocolLib | `5.1.0` | `5.3.0` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `3.133.0` | `4.9.0` | | [ru.astrainteractive.astralibs:exposed](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | [ru.astrainteractive.astralibs:core](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | [ru.astrainteractive.astralibs:menu-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | [ru.astrainteractive.astralibs:core-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | [ru.astrainteractive.astralibs:command](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | [ru.astrainteractive.astralibs:command-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | net.fabricmc:fabric-language-kotlin | `1.12.3+` | `1.13.0+kotlin.2.1.0` | | net.fabricmc:fabric-loader | `0.16.7` | `0.16.9` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.105.4+` | `0.110.3+1.21.4` | | [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `3.1.3` | `3.2.0` | | fabric-loom | `1.8.9` | `1.9.1` | | com.github.gmazzo.buildconfig | `5.5.0` | `5.5.1` | Updates `net.minecraftforge:forge` from 1.20.1-47.2.20 to 1.21.3-53.0.25 - [Commits](https://github.com/MinecraftForge/MinecraftForge/commits) Updates `com.charleskorn.kaml:kaml` from 0.61.0 to 0.66.0 - [Release notes](https://github.com/charleskorn/kaml/releases) - [Changelog](https://github.com/charleskorn/kaml/blob/main/.releaserc.yml) - [Commits](https://github.com/charleskorn/kaml/compare/0.61.0...0.66.0) Updates `org.xerial:sqlite-jdbc` from 3.46.1.3 to 3.47.1.0 - [Release notes](https://github.com/xerial/sqlite-jdbc/releases) - [Changelog](https://github.com/xerial/sqlite-jdbc/blob/master/CHANGELOG) - [Commits](https://github.com/xerial/sqlite-jdbc/compare/3.46.1.3...3.47.1.0) Updates `org.junit:junit-bom` 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) Updates `org.junit.jupiter:junit-jupiter-api` 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) Updates `org.jetbrains.exposed:exposed-java-time` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-core` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-core` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `com.velocitypowered:velocity-api` from 3.3.0-SNAPSHOT to 4.0.0-SNAPSHOT Updates `com.comphenix.protocol:ProtocolLib` from 5.1.0 to 5.3.0 Updates `com.github.MockBukkit:MockBukkit` from 3.133.0 to 4.9.0 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v3.133.0...v4.9.0) Updates `ru.astrainteractive.astralibs:exposed` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:core` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:command` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:core` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:command` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `net.fabricmc:fabric-language-kotlin` from 1.12.3+ to 1.13.0+kotlin.2.1.0 Updates `net.fabricmc:fabric-loader` from 0.16.7 to 0.16.9 Updates `net.fabricmc.fabric-api:fabric-api` from 0.105.4+ to 0.110.3+1.21.4 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `ru.astrainteractive.klibs:kstorage` from 3.1.3 to 3.2.0 - [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases) - [Commits](https://github.com/makeevrserg/klibs.kstorage/compare/3.1.3...3.2.0) Updates `fabric-loom` from 1.8.9 to 1.9.1 Updates `com.github.gmazzo.buildconfig` from 5.5.0 to 5.5.1 --- updated-dependencies: - dependency-name: net.minecraftforge:forge dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.charleskorn.kaml:kaml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.xerial:sqlite-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.junit:junit-bom dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.junit.jupiter:junit-jupiter-api dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-java-time dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.velocitypowered:velocity-api dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: com.comphenix.protocol:ProtocolLib dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:exposed dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc:fabric-language-kotlin dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc:fabric-loader dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.klibs:kstorage dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: fabric-loom dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.github.gmazzo.buildconfig dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com>\nfix build\nfix build\nMerge pull request #44 from Astra-Interactive/dependabot/gradle/versions-900a671353 build(deps): bump the versions group with 24 updates
Войти

9.06 MB

7.7.2 Release 04.12.2024

AstraTemplate-fabric

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
fabric
Показать изменения
build(deps): bump the versions group with 24 updates Bumps the versions group with 24 updates: | Package | From | To | | --- | --- | --- | | [net.minecraftforge:forge](https://github.com/MinecraftForge/MinecraftForge) | `1.20.1-47.2.20` | `1.21.3-53.0.25` | | [com.charleskorn.kaml:kaml](https://github.com/charleskorn/kaml) | `0.61.0` | `0.66.0` | | [org.xerial:sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) | `3.46.1.3` | `3.47.1.0` | | [org.junit:junit-bom](https://github.com/junit-team/junit5) | `5.11.2` | `5.11.3` | | [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit5) | `5.11.2` | `5.11.3` | | [org.jetbrains.exposed:exposed-java-time](https://github.com/JetBrains/Exposed) | `0.55.0` | `0.56.0` | | [org.jetbrains.exposed:exposed-jdbc](https://github.com/JetBrains/Exposed) | `0.55.0` | `0.56.0` | | [org.jetbrains.exposed:exposed-dao](https://github.com/JetBrains/Exposed) | `0.55.0` | `0.56.0` | | [org.jetbrains.exposed:exposed-core](https://github.com/JetBrains/Exposed) | `0.55.0` | `0.56.0` | | com.velocitypowered:velocity-api | `3.3.0-SNAPSHOT` | `4.0.0-SNAPSHOT` | | com.comphenix.protocol:ProtocolLib | `5.1.0` | `5.3.0` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `3.133.0` | `4.9.0` | | [ru.astrainteractive.astralibs:exposed](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | [ru.astrainteractive.astralibs:core](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | [ru.astrainteractive.astralibs:menu-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | [ru.astrainteractive.astralibs:core-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | [ru.astrainteractive.astralibs:command](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | [ru.astrainteractive.astralibs:command-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | net.fabricmc:fabric-language-kotlin | `1.12.3+` | `1.13.0+kotlin.2.1.0` | | net.fabricmc:fabric-loader | `0.16.7` | `0.16.9` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.105.4+` | `0.110.3+1.21.4` | | [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `3.1.3` | `3.2.0` | | fabric-loom | `1.8.9` | `1.9.1` | | com.github.gmazzo.buildconfig | `5.5.0` | `5.5.1` | Updates `net.minecraftforge:forge` from 1.20.1-47.2.20 to 1.21.3-53.0.25 - [Commits](https://github.com/MinecraftForge/MinecraftForge/commits) Updates `com.charleskorn.kaml:kaml` from 0.61.0 to 0.66.0 - [Release notes](https://github.com/charleskorn/kaml/releases) - [Changelog](https://github.com/charleskorn/kaml/blob/main/.releaserc.yml) - [Commits](https://github.com/charleskorn/kaml/compare/0.61.0...0.66.0) Updates `org.xerial:sqlite-jdbc` from 3.46.1.3 to 3.47.1.0 - [Release notes](https://github.com/xerial/sqlite-jdbc/releases) - [Changelog](https://github.com/xerial/sqlite-jdbc/blob/master/CHANGELOG) - [Commits](https://github.com/xerial/sqlite-jdbc/compare/3.46.1.3...3.47.1.0) Updates `org.junit:junit-bom` 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) Updates `org.junit.jupiter:junit-jupiter-api` 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) Updates `org.jetbrains.exposed:exposed-java-time` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-core` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-core` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `com.velocitypowered:velocity-api` from 3.3.0-SNAPSHOT to 4.0.0-SNAPSHOT Updates `com.comphenix.protocol:ProtocolLib` from 5.1.0 to 5.3.0 Updates `com.github.MockBukkit:MockBukkit` from 3.133.0 to 4.9.0 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v3.133.0...v4.9.0) Updates `ru.astrainteractive.astralibs:exposed` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:core` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:command` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:core` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:command` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `net.fabricmc:fabric-language-kotlin` from 1.12.3+ to 1.13.0+kotlin.2.1.0 Updates `net.fabricmc:fabric-loader` from 0.16.7 to 0.16.9 Updates `net.fabricmc.fabric-api:fabric-api` from 0.105.4+ to 0.110.3+1.21.4 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `ru.astrainteractive.klibs:kstorage` from 3.1.3 to 3.2.0 - [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases) - [Commits](https://github.com/makeevrserg/klibs.kstorage/compare/3.1.3...3.2.0) Updates `fabric-loom` from 1.8.9 to 1.9.1 Updates `com.github.gmazzo.buildconfig` from 5.5.0 to 5.5.1 --- updated-dependencies: - dependency-name: net.minecraftforge:forge dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.charleskorn.kaml:kaml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.xerial:sqlite-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.junit:junit-bom dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.junit.jupiter:junit-jupiter-api dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-java-time dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.velocitypowered:velocity-api dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: com.comphenix.protocol:ProtocolLib dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:exposed dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc:fabric-language-kotlin dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc:fabric-loader dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.klibs:kstorage dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: fabric-loom dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.github.gmazzo.buildconfig dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com>\nfix build\nfix build\nMerge pull request #44 from Astra-Interactive/dependabot/gradle/versions-900a671353 build(deps): bump the versions group with 24 updates
Войти

13.92 MB

7.7.2 Release 04.12.2024

AstraTemplate-velocity

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
velocity
Показать изменения
build(deps): bump the versions group with 24 updates Bumps the versions group with 24 updates: | Package | From | To | | --- | --- | --- | | [net.minecraftforge:forge](https://github.com/MinecraftForge/MinecraftForge) | `1.20.1-47.2.20` | `1.21.3-53.0.25` | | [com.charleskorn.kaml:kaml](https://github.com/charleskorn/kaml) | `0.61.0` | `0.66.0` | | [org.xerial:sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) | `3.46.1.3` | `3.47.1.0` | | [org.junit:junit-bom](https://github.com/junit-team/junit5) | `5.11.2` | `5.11.3` | | [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit5) | `5.11.2` | `5.11.3` | | [org.jetbrains.exposed:exposed-java-time](https://github.com/JetBrains/Exposed) | `0.55.0` | `0.56.0` | | [org.jetbrains.exposed:exposed-jdbc](https://github.com/JetBrains/Exposed) | `0.55.0` | `0.56.0` | | [org.jetbrains.exposed:exposed-dao](https://github.com/JetBrains/Exposed) | `0.55.0` | `0.56.0` | | [org.jetbrains.exposed:exposed-core](https://github.com/JetBrains/Exposed) | `0.55.0` | `0.56.0` | | com.velocitypowered:velocity-api | `3.3.0-SNAPSHOT` | `4.0.0-SNAPSHOT` | | com.comphenix.protocol:ProtocolLib | `5.1.0` | `5.3.0` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `3.133.0` | `4.9.0` | | [ru.astrainteractive.astralibs:exposed](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | [ru.astrainteractive.astralibs:core](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | [ru.astrainteractive.astralibs:menu-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | [ru.astrainteractive.astralibs:core-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | [ru.astrainteractive.astralibs:command](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | [ru.astrainteractive.astralibs:command-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | net.fabricmc:fabric-language-kotlin | `1.12.3+` | `1.13.0+kotlin.2.1.0` | | net.fabricmc:fabric-loader | `0.16.7` | `0.16.9` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.105.4+` | `0.110.3+1.21.4` | | [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `3.1.3` | `3.2.0` | | fabric-loom | `1.8.9` | `1.9.1` | | com.github.gmazzo.buildconfig | `5.5.0` | `5.5.1` | Updates `net.minecraftforge:forge` from 1.20.1-47.2.20 to 1.21.3-53.0.25 - [Commits](https://github.com/MinecraftForge/MinecraftForge/commits) Updates `com.charleskorn.kaml:kaml` from 0.61.0 to 0.66.0 - [Release notes](https://github.com/charleskorn/kaml/releases) - [Changelog](https://github.com/charleskorn/kaml/blob/main/.releaserc.yml) - [Commits](https://github.com/charleskorn/kaml/compare/0.61.0...0.66.0) Updates `org.xerial:sqlite-jdbc` from 3.46.1.3 to 3.47.1.0 - [Release notes](https://github.com/xerial/sqlite-jdbc/releases) - [Changelog](https://github.com/xerial/sqlite-jdbc/blob/master/CHANGELOG) - [Commits](https://github.com/xerial/sqlite-jdbc/compare/3.46.1.3...3.47.1.0) Updates `org.junit:junit-bom` 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) Updates `org.junit.jupiter:junit-jupiter-api` 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) Updates `org.jetbrains.exposed:exposed-java-time` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-core` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-core` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `com.velocitypowered:velocity-api` from 3.3.0-SNAPSHOT to 4.0.0-SNAPSHOT Updates `com.comphenix.protocol:ProtocolLib` from 5.1.0 to 5.3.0 Updates `com.github.MockBukkit:MockBukkit` from 3.133.0 to 4.9.0 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v3.133.0...v4.9.0) Updates `ru.astrainteractive.astralibs:exposed` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:core` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:command` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:core` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:command` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `net.fabricmc:fabric-language-kotlin` from 1.12.3+ to 1.13.0+kotlin.2.1.0 Updates `net.fabricmc:fabric-loader` from 0.16.7 to 0.16.9 Updates `net.fabricmc.fabric-api:fabric-api` from 0.105.4+ to 0.110.3+1.21.4 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `ru.astrainteractive.klibs:kstorage` from 3.1.3 to 3.2.0 - [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases) - [Commits](https://github.com/makeevrserg/klibs.kstorage/compare/3.1.3...3.2.0) Updates `fabric-loom` from 1.8.9 to 1.9.1 Updates `com.github.gmazzo.buildconfig` from 5.5.0 to 5.5.1 --- updated-dependencies: - dependency-name: net.minecraftforge:forge dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.charleskorn.kaml:kaml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.xerial:sqlite-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.junit:junit-bom dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.junit.jupiter:junit-jupiter-api dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-java-time dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.velocitypowered:velocity-api dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: com.comphenix.protocol:ProtocolLib dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:exposed dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc:fabric-language-kotlin dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc:fabric-loader dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.klibs:kstorage dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: fabric-loom dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.github.gmazzo.buildconfig dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com>\nfix build\nfix build\nMerge pull request #44 from Astra-Interactive/dependabot/gradle/versions-900a671353 build(deps): bump the versions group with 24 updates
Войти

4.06 MB

7.7.2 Release 04.12.2024

AstraTemplate-forge

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
forge
Показать изменения
build(deps): bump the versions group with 24 updates Bumps the versions group with 24 updates: | Package | From | To | | --- | --- | --- | | [net.minecraftforge:forge](https://github.com/MinecraftForge/MinecraftForge) | `1.20.1-47.2.20` | `1.21.3-53.0.25` | | [com.charleskorn.kaml:kaml](https://github.com/charleskorn/kaml) | `0.61.0` | `0.66.0` | | [org.xerial:sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) | `3.46.1.3` | `3.47.1.0` | | [org.junit:junit-bom](https://github.com/junit-team/junit5) | `5.11.2` | `5.11.3` | | [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit5) | `5.11.2` | `5.11.3` | | [org.jetbrains.exposed:exposed-java-time](https://github.com/JetBrains/Exposed) | `0.55.0` | `0.56.0` | | [org.jetbrains.exposed:exposed-jdbc](https://github.com/JetBrains/Exposed) | `0.55.0` | `0.56.0` | | [org.jetbrains.exposed:exposed-dao](https://github.com/JetBrains/Exposed) | `0.55.0` | `0.56.0` | | [org.jetbrains.exposed:exposed-core](https://github.com/JetBrains/Exposed) | `0.55.0` | `0.56.0` | | com.velocitypowered:velocity-api | `3.3.0-SNAPSHOT` | `4.0.0-SNAPSHOT` | | com.comphenix.protocol:ProtocolLib | `5.1.0` | `5.3.0` | | [com.github.MockBukkit:MockBukkit](https://github.com/MockBukkit/MockBukkit) | `3.133.0` | `4.9.0` | | [ru.astrainteractive.astralibs:exposed](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | [ru.astrainteractive.astralibs:core](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | [ru.astrainteractive.astralibs:menu-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | [ru.astrainteractive.astralibs:core-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | [ru.astrainteractive.astralibs:command](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | [ru.astrainteractive.astralibs:command-bukkit](https://github.com/Astra-Interactive/AstraLibs) | `3.15.0` | `3.16.2` | | net.fabricmc:fabric-language-kotlin | `1.12.3+` | `1.13.0+kotlin.2.1.0` | | net.fabricmc:fabric-loader | `0.16.7` | `0.16.9` | | [net.fabricmc.fabric-api:fabric-api](https://github.com/FabricMC/fabric) | `0.105.4+` | `0.110.3+1.21.4` | | [ru.astrainteractive.klibs:kstorage](https://github.com/makeevrserg/klibs.kstorage) | `3.1.3` | `3.2.0` | | fabric-loom | `1.8.9` | `1.9.1` | | com.github.gmazzo.buildconfig | `5.5.0` | `5.5.1` | Updates `net.minecraftforge:forge` from 1.20.1-47.2.20 to 1.21.3-53.0.25 - [Commits](https://github.com/MinecraftForge/MinecraftForge/commits) Updates `com.charleskorn.kaml:kaml` from 0.61.0 to 0.66.0 - [Release notes](https://github.com/charleskorn/kaml/releases) - [Changelog](https://github.com/charleskorn/kaml/blob/main/.releaserc.yml) - [Commits](https://github.com/charleskorn/kaml/compare/0.61.0...0.66.0) Updates `org.xerial:sqlite-jdbc` from 3.46.1.3 to 3.47.1.0 - [Release notes](https://github.com/xerial/sqlite-jdbc/releases) - [Changelog](https://github.com/xerial/sqlite-jdbc/blob/master/CHANGELOG) - [Commits](https://github.com/xerial/sqlite-jdbc/compare/3.46.1.3...3.47.1.0) Updates `org.junit:junit-bom` 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) Updates `org.junit.jupiter:junit-jupiter-api` 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) Updates `org.jetbrains.exposed:exposed-java-time` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-core` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-jdbc` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-dao` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `org.jetbrains.exposed:exposed-core` from 0.55.0 to 0.56.0 - [Release notes](https://github.com/JetBrains/Exposed/releases) - [Changelog](https://github.com/JetBrains/Exposed/blob/main/CHANGELOG.md) - [Commits](https://github.com/JetBrains/Exposed/compare/0.55.0...0.56.0) Updates `com.velocitypowered:velocity-api` from 3.3.0-SNAPSHOT to 4.0.0-SNAPSHOT Updates `com.comphenix.protocol:ProtocolLib` from 5.1.0 to 5.3.0 Updates `com.github.MockBukkit:MockBukkit` from 3.133.0 to 4.9.0 - [Commits](https://github.com/MockBukkit/MockBukkit/compare/v3.133.0...v4.9.0) Updates `ru.astrainteractive.astralibs:exposed` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:core` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:command` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:core` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:menu-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:core-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:command` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `ru.astrainteractive.astralibs:command-bukkit` from 3.15.0 to 3.16.2 - [Release notes](https://github.com/Astra-Interactive/AstraLibs/releases) - [Commits](https://github.com/Astra-Interactive/AstraLibs/compare/3.15.0...3.16.2) Updates `net.fabricmc:fabric-language-kotlin` from 1.12.3+ to 1.13.0+kotlin.2.1.0 Updates `net.fabricmc:fabric-loader` from 0.16.7 to 0.16.9 Updates `net.fabricmc.fabric-api:fabric-api` from 0.105.4+ to 0.110.3+1.21.4 - [Release notes](https://github.com/FabricMC/fabric/releases) - [Commits](https://github.com/FabricMC/fabric/commits) Updates `ru.astrainteractive.klibs:kstorage` from 3.1.3 to 3.2.0 - [Release notes](https://github.com/makeevrserg/klibs.kstorage/releases) - [Commits](https://github.com/makeevrserg/klibs.kstorage/compare/3.1.3...3.2.0) Updates `fabric-loom` from 1.8.9 to 1.9.1 Updates `com.github.gmazzo.buildconfig` from 5.5.0 to 5.5.1 --- updated-dependencies: - dependency-name: net.minecraftforge:forge dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.charleskorn.kaml:kaml dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.xerial:sqlite-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.junit:junit-bom dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.junit.jupiter:junit-jupiter-api dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-java-time dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-jdbc dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-dao dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: org.jetbrains.exposed:exposed-core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.velocitypowered:velocity-api dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: com.comphenix.protocol:ProtocolLib dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.github.MockBukkit:MockBukkit dependency-type: direct:production update-type: version-update:semver-major dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:exposed dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:menu-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:core-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.astralibs:command-bukkit dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc:fabric-language-kotlin dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: net.fabricmc:fabric-loader dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions - dependency-name: net.fabricmc.fabric-api:fabric-api dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: ru.astrainteractive.klibs:kstorage dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: fabric-loom dependency-type: direct:production update-type: version-update:semver-minor dependency-group: versions - dependency-name: com.github.gmazzo.buildconfig dependency-type: direct:production update-type: version-update:semver-patch dependency-group: versions ... Signed-off-by: dependabot[bot] <support@github.com>\nfix build\nfix build\nMerge pull request #44 from Astra-Interactive/dependabot/gradle/versions-900a671353 build(deps): bump the versions group with 24 updates
Войти

11.25 MB

7.7.2 Release 09.11.2024

AstraTemplate-fabric

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
fabric
Показать изменения
try fix modrinth upload
Войти

13.78 MB

7.7.2 Release 09.11.2024

AstraTemplate-bukkit

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
bukkit
Показать изменения
try fix modrinth upload
Войти

9.08 MB

7.7.2 Release 09.11.2024

AstraTemplate-forge

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
forge
Показать изменения
try fix modrinth upload
Войти

11.27 MB

7.7.2 Release 09.11.2024

AstraTemplate-velocity

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21
Загрузчики / Платформы
velocity
Показать изменения
try fix modrinth upload
Войти

4.09 MB

7.7.1 Release 09.11.2024

AstraTemplate 7.7.1

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4 1.20.5 1.20.6 1.21 1.21.1 1.21.2 1.21.3
Загрузчики / Платформы
bukkit fabric forge velocity
Показать изменения
- Improve architecture - Add docker-compose to create test server - Upgrade CI to auto-upload modrinth - Better forge build
Войти

9.08 MB

7.7.0 Release 09.11.2024

AstraTemplate

Поддерживаемые версии Minecraft
1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20
Загрузчики / Платформы
velocity
Показать изменения
another publish
Войти

4.09 MB

7.7.0 Release 25.10.2024

AstraTemplate 7.7.0

Поддерживаемые версии Minecraft
1.18 1.18.1 1.18.2
Загрузчики / Платформы
bukkit fabric forge velocity
Показать изменения
[https://github.com/Astra-Interactive/AstraTemplate/releases/tag/7.7.0](https://github.com/Astra-Interactive/AstraTemplate/releases/tag/7.7.0)
Войти

9.08 MB

7.1.0 Release 14.02.2024

AstraTemplate 7.2.0

Поддерживаемые версии Minecraft
1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4 1.20 1.20.1 1.20.2 1.20.3 1.20.4
Загрузчики / Платформы
bukkit fabric
Показать изменения
- Add fabric
7.0.0 Release 30.12.2023

AstraTemplate 7.0.0

Поддерживаемые версии Minecraft
1.18 1.18.1 1.18.2
Загрузчики / Платформы
bukkit paper purpur spigot
Показать изменения
- New DI architecture - New lifecycle architecture - Improved readme
Войти

5.88 MB

5.2.0 Release 30.04.2023

AstraTemplate 5.2.0

Поддерживаемые версии Minecraft
1.18 1.18.1 1.18.2
Загрузчики / Платформы
bukkit paper purpur spigot
Показать изменения
- Improved DI - Updated gradle scripts - now plugin.yml really improved
Войти

6.62 MB

5.1.0 Release 21.04.2023

AstraTemplate 5.1.0

Поддерживаемые версии Minecraft
1.15.2 1.16 1.16.1 1.16.2 1.16.3 1.16.4 1.16.5 1.17 1.17.1 1.18 1.18.1 1.18.2 1.19 1.19.1 1.19.2 1.19.3 1.19.4
Загрузчики / Платформы
bukkit paper purpur spigot velocity
Показать изменения
- Added FileManager not depending on fraemwork
Войти

6.33 MB