@minecraft-docker/mcctl 2.7.0 → 2.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 +17 -0
- package/README.md +7 -6
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,23 @@ 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.8.0] - 2026-02-18
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **Console HostnameDisplay Common Component** - Reusable hostname display with popover for multiple hostnames (#369, #370)
|
|
12
|
+
- Shows primary hostname with (+N) Chip for servers with multiple hostnames
|
|
13
|
+
- Clicking Chip opens Popover with all hostnames and copy buttons
|
|
14
|
+
- Applied to 5 locations: ServerCard, ServerOverview, ServerDetailPage header, ServerDetail InfoRow, ConnectionInfoCard LAN Address
|
|
15
|
+
- Extracted `parseHostnames` and `getPrimaryHostname` utilities into `src/utils/hostname.ts`
|
|
16
|
+
- Extracted `CopyButton` into shared common component with configurable icon size
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
- **Console DOM Nesting Warning** - Change InfoRow value wrapper to `component="div"` to prevent invalid DOM nesting with HostnameDisplay
|
|
20
|
+
- **Console InfoRow Null Behavior** - Preserve undefined hostname handling for hidden InfoRow display
|
|
21
|
+
|
|
22
|
+
### Tests
|
|
23
|
+
- **HostnameDisplay Component Tests** - Cover all render paths, Popover interaction, copy-to-clipboard, port suffix formatting, and event propagation prevention
|
|
24
|
+
|
|
8
25
|
## [2.7.0] - 2026-02-18
|
|
9
26
|
|
|
10
27
|
### Changed
|
package/README.md
CHANGED
|
@@ -77,6 +77,13 @@ mcctl logs myserver
|
|
|
77
77
|
|
|
78
78
|
## Changelog
|
|
79
79
|
|
|
80
|
+
### v2.8.0 (2026-02-18)
|
|
81
|
+
- **feat(console)**: HostnameDisplay common component with popover for multiple hostnames (#369, #370)
|
|
82
|
+
- Applied to ServerCard, ServerOverview, ServerDetailPage, InfoRow, ConnectionInfoCard
|
|
83
|
+
- Extracted CopyButton and hostname utilities as shared components
|
|
84
|
+
- **fix(console)**: Resolve DOM nesting warning and preserve InfoRow null behavior
|
|
85
|
+
- **test(console)**: Add HostnameDisplay component tests
|
|
86
|
+
|
|
80
87
|
### v2.7.0 (2026-02-18)
|
|
81
88
|
- **feat(console)**: Replace Ubuntu font with Roboto Mono across all console components
|
|
82
89
|
- Unified typography: layout, MUI theme, and 11 components updated
|
|
@@ -98,12 +105,6 @@ mcctl logs myserver
|
|
|
98
105
|
### v2.4.1 (2026-02-14)
|
|
99
106
|
- **fix(ci)**: Fix mcctl-api npm publish missing workspace replacement for mod-source-modrinth
|
|
100
107
|
|
|
101
|
-
### v2.4.0 (2026-02-14)
|
|
102
|
-
- **feat(cli)**: Add `mcctl upgrade` command for upgrading mcctl and all services (#326, #355)
|
|
103
|
-
- **feat(cli)**: Add creeper ASCII banner with version check on `mcctl init` (#353, #354)
|
|
104
|
-
- **feat(console)**: Implement Mods tab functionality (#351, #352)
|
|
105
|
-
- **feat(cli)**: Add `mcctl playit domain` subcommand (#347, #348)
|
|
106
|
-
|
|
107
108
|
[Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
|
|
108
109
|
|
|
109
110
|
## AI Assistant
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@minecraft-docker/mcctl",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.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": "^2.
|
|
59
|
-
"@minecraft-docker/shared": "^2.
|
|
58
|
+
"@minecraft-docker/mod-source-modrinth": "^2.8.0",
|
|
59
|
+
"@minecraft-docker/shared": "^2.8.0",
|
|
60
60
|
"better-sqlite3": "^12.6.2",
|
|
61
61
|
"commander": "^12.0.0",
|
|
62
62
|
"js-yaml": "^4.1.0",
|