@minecraft-docker/mcctl 2.19.0 → 2.20.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +23 -0
  2. package/README.md +10 -8
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -5,6 +5,29 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [2.20.0] - 2026-04-03
9
+
10
+ ### Added
11
+ - **Java 25 Support** - McVersion.recommendedImageTag and DocsAdapter java25 support (#444)
12
+ - **New Server Types** - Add LEAF, FOLIA, PUFFERFISH server types (#445)
13
+ - **Native AutoPause** - PAUSE_WHEN_EMPTY_SECONDS config support for MC 1.21.2+ (#446)
14
+ - **WebSocket & SSH Console** - WebSocket Console and SSH Console config support (#447)
15
+ - **Config Repository** - Configuration Repository settings (PAPER_CONFIG_REPO etc.) (#448)
16
+
17
+ ### Fixed
18
+ - **DocsAdapter Path** - Fix DocsAdapter file path to include itzg-reference subdirectory (#449)
19
+
20
+ ### Changed
21
+ - **Test Runner Migration** - Migrate shared package test runner from node:test to vitest (#450)
22
+ - **TypeScript Types** - Unify @types/node to ^22.x across all packages (#451)
23
+
24
+ ### Documentation
25
+ - **Java Versions** - GraalVM deprecated, Java 25 tags added (#439)
26
+ - **AutoPause** - Native AutoPause (PAUSE_WHEN_EMPTY_SECONDS) for MC 1.21.2+ (#440)
27
+ - **Server Types** - Leaf, Config Repos, Fabric mirror (#441)
28
+ - **Mods & Plugins** - Auto-removal, VERSION_FROM_MODRINTH, new env vars (#442)
29
+ - **Console Features** - WebSocket Console, SSH Console, Autoscale documentation (#443)
30
+
8
31
  ## [2.19.0] - 2026-03-01
9
32
 
10
33
  ### Added
package/README.md CHANGED
@@ -77,6 +77,16 @@ mcctl logs myserver
77
77
 
78
78
  ## Changelog
79
79
 
80
+ ### v2.20.0 (2026-04-03)
81
+ - **feat(shared)**: Java 25 support - McVersion.recommendedImageTag, DocsAdapter java25 (#444)
82
+ - **feat(shared)**: New server types - LEAF, FOLIA, PUFFERFISH (#445)
83
+ - **feat(api,console)**: Native AutoPause (PAUSE_WHEN_EMPTY_SECONDS) config support (#446)
84
+ - **feat(api,console)**: WebSocket Console and SSH Console config support (#447)
85
+ - **feat(api,console)**: Configuration Repository settings support (#448)
86
+ - **fix(shared)**: DocsAdapter file path bug fix (#449)
87
+ - **chore**: Migrate shared tests to vitest (#450), unify @types/node ^22.x (#451)
88
+ - **docs**: itzg reference updates - Java 25, AutoPause, server types, mods, consoles (#439-#443)
89
+
80
90
  ### v2.19.0 (2026-03-01)
81
91
  - **feat(console)**: Add Q&A and Ideas community links to Footer (#434, #438)
82
92
  - **fix(console)**: Add null guards to `useServerConfigSnapshots` to prevent TypeError (#431, #435)
@@ -94,14 +104,6 @@ mcctl logs myserver
94
104
  - **feat(console)**: Implement Backups tab in Server Detail page (#427, #428)
95
105
  - **fix(console)**: Add missing react-diff-viewer-continued dependency
96
106
 
97
- ### v2.16.0 (2026-02-23)
98
- - **feat**: Config Snapshot system - full-stack server configuration versioning (#397~#406)
99
- - **feat**: Backup retention policy pruning implementation (#396, #426)
100
- - **fix**: Backup git path and shell injection prevention (#423, #425)
101
-
102
- ### v2.15.3 (2026-02-22)
103
- - **docs**: Update README.md with Management Console features and architecture (#412, #413)
104
-
105
107
  [Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
106
108
 
107
109
  ## Community
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minecraft-docker/mcctl",
3
- "version": "2.19.0",
3
+ "version": "2.20.0",
4
4
  "description": "CLI tool for managing Docker Minecraft servers with mc-router",
5
5
  "type": "module",
6
6
  "bin": {
@@ -55,8 +55,8 @@
55
55
  ],
56
56
  "dependencies": {
57
57
  "@clack/prompts": "^0.8.0",
58
- "@minecraft-docker/mod-source-modrinth": "^2.19.0",
59
- "@minecraft-docker/shared": "^2.19.0",
58
+ "@minecraft-docker/mod-source-modrinth": "^2.20.0",
59
+ "@minecraft-docker/shared": "^2.20.0",
60
60
  "better-sqlite3": "^12.6.2",
61
61
  "commander": "^12.0.0",
62
62
  "js-yaml": "^4.1.0",