@minecraft-docker/mcctl 1.7.11 → 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 CHANGED
@@ -5,6 +5,22 @@ 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
+
18
+ ## [1.7.12] - 2026-02-05
19
+
20
+ ### Fixed
21
+ - **TEMPLATE_DIR path duplication** - Correct TEMPLATE_DIR path in create-server.sh that caused duplicate directory segments (#230)
22
+ - **API error reporting** - Improve error reporting for server creation script failures with stderr capture (#230)
23
+
8
24
  ## [1.7.11] - 2026-02-04
9
25
 
10
26
  ### Fixed
package/README.md CHANGED
@@ -73,30 +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
+
81
+ ### v1.7.12 (2026-02-05)
82
+ - **fix(scripts)**: Correct TEMPLATE_DIR path duplication in create-server.sh (#230)
83
+ - **fix(api)**: Improve error reporting for server creation script failures (#230)
84
+
76
85
  ### v1.7.11 (2026-02-04)
77
86
  - **fix(shared)**: Check LEVEL config before WORLD_NAME for world size calculation
78
- - Fixes servers using LEVEL config showing "0 B" for world size
79
87
 
80
88
  ### v1.7.10 (2026-02-04)
81
89
  - **feat(console)**: Add ANSI color support for console logs
82
- - **feat(console)**: Add loading indicator with nprogress
83
90
  - **feat(api,console)**: Add SSE streaming for server creation (#227, #228)
84
- - **fix**: Fix MCCTL_ROOT path resolution (relative to absolute)
85
- - **fix**: Fix player list parsing by removing ANSI escape codes from RCON
91
+ - **fix**: Fix MCCTL_ROOT path and player list parsing
86
92
 
87
93
  ### v1.7.9 (2026-02-03)
88
94
  - **fix(ci)**: Fix YAML syntax error in E2E workflow configuration
89
95
 
90
96
  ### v1.7.8 (2026-01-31)
91
- - **feat(cli)**: Add selective console service support - choose api/console/all (#203)
97
+ - **feat(cli)**: Add selective console service support (#203)
92
98
  - **fix(cli)**: Correct environment variable names for mcctl-api auth (#203)
93
99
 
94
- ### v1.7.7 (2026-01-31)
95
- - **feat(cli)**: Auto-install mcctl-api on console init
96
-
97
- ### v1.7.6 (2026-01-31)
98
- - **feat(mcctl-api)**: First npm release of REST API package
99
-
100
100
  [Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
101
101
 
102
102
  ## AI Assistant
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minecraft-docker/mcctl",
3
- "version": "1.7.11",
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.7.11",
59
- "@minecraft-docker/shared": "^1.7.11",
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",
@@ -47,7 +47,7 @@ if [[ -n "${MCCTL_ROOT:-}" ]]; then
47
47
  # Running via npm package
48
48
  PLATFORM_DIR="$MCCTL_ROOT"
49
49
  SCRIPT_DIR="${MCCTL_SCRIPTS:-$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)}"
50
- TEMPLATE_DIR="${MCCTL_TEMPLATES:-$PLATFORM_DIR/servers/_template}/servers/_template"
50
+ TEMPLATE_DIR="${MCCTL_TEMPLATES:-$PLATFORM_DIR/servers/_template}"
51
51
  else
52
52
  # Running directly (development mode)
53
53
  SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"