@minecraft-docker/mcctl 2.16.0 → 2.17.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/README.md +10 -3
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -5,6 +5,24 @@ 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.17.1] - 2026-02-24
9
+
10
+ ### Changed
11
+ - **Console Backup Sub-tabs** - Reorder server backup sub-tabs to show Config Snapshots first, World Backups second
12
+
13
+ ## [2.17.0] - 2026-02-24
14
+
15
+ ### Added
16
+ - **Server Detail Backups Tab** - Implement Backups tab in Server Detail page (#427, #428)
17
+ - **World Backups sub-tab**: Reuses existing backup components (BackupStatus, BackupHistory, BackupPushButton, BackupScheduleList) scoped to the selected server
18
+ - **Config Snapshots sub-tab**: Server-scoped config snapshot management with schedule filtering
19
+ - Fix ConfigSnapshotSchedulePanel to filter schedules by server when `filterServerName` prop is provided
20
+ - Fix onViewHistory condition to require >= 2 snapshots for diff dialog
21
+
22
+ ### Fixed
23
+ - **Console Dependencies** - Add missing `react-diff-viewer-continued` dependency (#4c453f5)
24
+ - **Lock file sync** - Sync pnpm-lock.yaml with react-diff-viewer-continued dependency (#75515f2)
25
+
8
26
  ## [2.16.0] - 2026-02-23
9
27
 
10
28
  ### Added
package/README.md CHANGED
@@ -77,6 +77,16 @@ mcctl logs myserver
77
77
 
78
78
  ## Changelog
79
79
 
80
+ ### v2.17.1 (2026-02-24)
81
+ - **fix(console)**: Reorder server backup sub-tabs to show Config Snapshots first, World Backups second
82
+
83
+ ### v2.17.0 (2026-02-24)
84
+ - **feat(console)**: Implement Backups tab in Server Detail page (#427, #428)
85
+ - World Backups sub-tab with server-scoped backup components
86
+ - Config Snapshots sub-tab with server-filtered schedule management
87
+ - **fix(console)**: Add missing react-diff-viewer-continued dependency
88
+ - **fix(deps)**: Sync pnpm-lock.yaml with react-diff-viewer-continued
89
+
80
90
  ### v2.16.0 (2026-02-23)
81
91
  - **feat**: Config Snapshot system - full-stack server configuration versioning (#397~#406)
82
92
  - Domain layer, infrastructure, API, CLI, Console UI, and E2E tests
@@ -103,9 +113,6 @@ mcctl logs myserver
103
113
  - Web Console UI with schedule management dialog and toggle
104
114
  - Shell injection prevention, 54+ tests across all layers
105
115
 
106
- ### v2.14.0 (2026-02-21)
107
- - **feat(console)**: Enhanced installed mods display with rich card UI and batch API
108
-
109
116
  [Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
110
117
 
111
118
  ## AI Assistant
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minecraft-docker/mcctl",
3
- "version": "2.16.0",
3
+ "version": "2.17.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.16.0",
59
- "@minecraft-docker/shared": "^2.16.0",
58
+ "@minecraft-docker/mod-source-modrinth": "^2.17.1",
59
+ "@minecraft-docker/shared": "^2.17.1",
60
60
  "better-sqlite3": "^12.6.2",
61
61
  "commander": "^12.0.0",
62
62
  "js-yaml": "^4.1.0",