@minecraft-docker/mcctl 2.1.0 → 2.1.1
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.
- package/CHANGELOG.md +11 -0
- package/README.md +5 -3
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,17 @@ 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.1.1] - 2026-02-09
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **Console GNB Admin Menu Cleanup** - Remove admin menu from GNB, rename UserMenu "Admin Panel" to "Users" (#302, #304)
|
|
12
|
+
- Admin menu in GNB was redundant with UserMenu admin link
|
|
13
|
+
- Simplified navigation by consolidating admin access to UserMenu
|
|
14
|
+
- **API Whitelist/Banned-Players UUID Display** - Return UUID in whitelist and ban API responses (#303, #305)
|
|
15
|
+
- UUID was missing from player list API responses for whitelist and banned-players
|
|
16
|
+
- PlayerFileService now returns full player objects including UUID
|
|
17
|
+
- **API PlayerFileService Test Assertions** - Update test assertions for object return types (#303)
|
|
18
|
+
|
|
8
19
|
## [2.1.0] - 2026-02-09
|
|
9
20
|
|
|
10
21
|
### Added
|
package/README.md
CHANGED
|
@@ -77,6 +77,11 @@ mcctl logs myserver
|
|
|
77
77
|
|
|
78
78
|
## Changelog
|
|
79
79
|
|
|
80
|
+
### v2.1.1 (2026-02-09)
|
|
81
|
+
- **fix(console)**: Remove GNB admin menu, rename UserMenu "Admin Panel" to "Users" (#302, #304)
|
|
82
|
+
- **fix(api)**: Return UUID in whitelist/ban API responses (#303, #305)
|
|
83
|
+
- **fix(api)**: Update PlayerFileService test assertions for object return types
|
|
84
|
+
|
|
80
85
|
### v2.1.0 (2026-02-09) - Console Feature Completion
|
|
81
86
|
- **feat**: Modrinth modpack CLI/API support - search, create, manage modpack servers (#244, #245)
|
|
82
87
|
- **feat**: Admin user management Console UI - list, detail, role management (#189)
|
|
@@ -102,9 +107,6 @@ mcctl logs myserver
|
|
|
102
107
|
- **feat**: Console npm publishing as standalone package
|
|
103
108
|
- **feat**: Console `--force` option for PM2 process termination (#238)
|
|
104
109
|
|
|
105
|
-
### v1.12.0 (2026-02-06)
|
|
106
|
-
- **feat**: All-servers SSE status endpoint, server detail delete menu, API audit logging
|
|
107
|
-
|
|
108
110
|
[Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
|
|
109
111
|
|
|
110
112
|
## AI Assistant
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@minecraft-docker/mcctl",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.1",
|
|
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.1.
|
|
59
|
-
"@minecraft-docker/shared": "^2.1.
|
|
58
|
+
"@minecraft-docker/mod-source-modrinth": "^2.1.1",
|
|
59
|
+
"@minecraft-docker/shared": "^2.1.1",
|
|
60
60
|
"better-sqlite3": "^12.6.2",
|
|
61
61
|
"commander": "^12.0.0",
|
|
62
62
|
"js-yaml": "^4.1.0",
|