@minecraft-docker/mcctl 1.7.12 → 1.8.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.
- package/CHANGELOG.md +10 -0
- package/README.md +7 -8
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,16 @@ 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
|
+
## [1.8.0] - 2026-02-05
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Web Console sudo password support** - Pass sudo password from CreateServerDialog to server creation API for mDNS hostname registration (#230)
|
|
12
|
+
- **Dashboard ChangelogFeed** - Replace placeholder ActivityFeed with real ChangelogFeed component that fetches CHANGELOG.md from GitHub
|
|
13
|
+
|
|
14
|
+
### Changed
|
|
15
|
+
- **CreateServerRequest schema** - Add optional `sudoPassword` field (writeOnly) to server creation API
|
|
16
|
+
- **Dashboard layout** - Replace ActivityFeed with ChangelogFeed showing recent project updates
|
|
17
|
+
|
|
8
18
|
## [1.7.12] - 2026-02-05
|
|
9
19
|
|
|
10
20
|
### Fixed
|
package/README.md
CHANGED
|
@@ -73,31 +73,30 @@ mcctl logs myserver
|
|
|
73
73
|
|
|
74
74
|
## Changelog
|
|
75
75
|
|
|
76
|
+
### v1.8.0 (2026-02-05)
|
|
77
|
+
- **feat(api,console)**: Pass sudo password from web console to server creation API (#230)
|
|
78
|
+
- **feat(console)**: Replace ActivityFeed with ChangelogFeed on dashboard
|
|
79
|
+
- **change(api)**: Add optional `sudoPassword` field to CreateServerRequest schema
|
|
80
|
+
|
|
76
81
|
### v1.7.12 (2026-02-05)
|
|
77
82
|
- **fix(scripts)**: Correct TEMPLATE_DIR path duplication in create-server.sh (#230)
|
|
78
83
|
- **fix(api)**: Improve error reporting for server creation script failures (#230)
|
|
79
84
|
|
|
80
85
|
### v1.7.11 (2026-02-04)
|
|
81
86
|
- **fix(shared)**: Check LEVEL config before WORLD_NAME for world size calculation
|
|
82
|
-
- Fixes servers using LEVEL config showing "0 B" for world size
|
|
83
87
|
|
|
84
88
|
### v1.7.10 (2026-02-04)
|
|
85
89
|
- **feat(console)**: Add ANSI color support for console logs
|
|
86
|
-
- **feat(console)**: Add loading indicator with nprogress
|
|
87
90
|
- **feat(api,console)**: Add SSE streaming for server creation (#227, #228)
|
|
88
|
-
- **fix**: Fix MCCTL_ROOT path
|
|
89
|
-
- **fix**: Fix player list parsing by removing ANSI escape codes from RCON
|
|
91
|
+
- **fix**: Fix MCCTL_ROOT path and player list parsing
|
|
90
92
|
|
|
91
93
|
### v1.7.9 (2026-02-03)
|
|
92
94
|
- **fix(ci)**: Fix YAML syntax error in E2E workflow configuration
|
|
93
95
|
|
|
94
96
|
### v1.7.8 (2026-01-31)
|
|
95
|
-
- **feat(cli)**: Add selective console service support
|
|
97
|
+
- **feat(cli)**: Add selective console service support (#203)
|
|
96
98
|
- **fix(cli)**: Correct environment variable names for mcctl-api auth (#203)
|
|
97
99
|
|
|
98
|
-
### v1.7.7 (2026-01-31)
|
|
99
|
-
- **feat(cli)**: Auto-install mcctl-api on console init
|
|
100
|
-
|
|
101
100
|
[Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
|
|
102
101
|
|
|
103
102
|
## AI Assistant
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@minecraft-docker/mcctl",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.8.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": "^1.
|
|
59
|
-
"@minecraft-docker/shared": "^1.
|
|
58
|
+
"@minecraft-docker/mod-source-modrinth": "^1.8.0",
|
|
59
|
+
"@minecraft-docker/shared": "^1.8.0",
|
|
60
60
|
"commander": "^12.0.0",
|
|
61
61
|
"js-yaml": "^4.1.0",
|
|
62
62
|
"picocolors": "^1.1.0",
|