@minecraft-docker/mcctl 2.18.0 → 2.19.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +10 -23
  3. package/package.json +3 -3
package/CHANGELOG.md CHANGED
@@ -5,6 +5,18 @@ 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.19.0] - 2026-03-01
9
+
10
+ ### Added
11
+ - **Console Community Links** - Add Q&A and Ideas community links to Footer component (#434, #438)
12
+
13
+ ### Fixed
14
+ - **Console Snapshot Null Guard** - Add null guards to `getNextPageParam` and `flatMap` in `useServerConfigSnapshots` to prevent TypeError (#431, #435)
15
+ - **Console View History Button** - Disable View History button when less than 2 snapshots available (#432, #437)
16
+
17
+ ### Documentation
18
+ - **npm README** - Add Q&A and Ideas discussion links to README for community engagement (#433, #436)
19
+
8
20
  ## [2.18.0] - 2026-02-24
9
21
 
10
22
  ### Changed
package/README.md CHANGED
@@ -77,11 +77,14 @@ mcctl logs myserver
77
77
 
78
78
  ## Changelog
79
79
 
80
+ ### v2.19.0 (2026-03-01)
81
+ - **feat(console)**: Add Q&A and Ideas community links to Footer (#434, #438)
82
+ - **fix(console)**: Add null guards to `useServerConfigSnapshots` to prevent TypeError (#431, #435)
83
+ - **fix(console)**: Disable View History button when less than 2 snapshots (#432, #437)
84
+ - **docs(npm)**: Add Q&A and Ideas discussion links to README (#433, #436)
85
+
80
86
  ### v2.18.0 (2026-02-24)
81
87
  - **refactor**: Relocate backup storage paths to `<MCCTL_ROOT>/backups/` (#429, #430)
82
- - World backup cache: `$HOME/.minecraft-backup` -> `<MCCTL_ROOT>/backups/worlds/`
83
- - Backup schedule DB: `data/` -> `backups/meta/`
84
- - Config snapshot DB/storage: `data/` -> `backups/meta/`
85
88
  - **docs**: Simplify CLAUDE.md Project Structure (35% reduction)
86
89
 
87
90
  ### v2.17.1 (2026-02-24)
@@ -89,38 +92,22 @@ mcctl logs myserver
89
92
 
90
93
  ### v2.17.0 (2026-02-24)
91
94
  - **feat(console)**: Implement Backups tab in Server Detail page (#427, #428)
92
- - World Backups sub-tab with server-scoped backup components
93
- - Config Snapshots sub-tab with server-filtered schedule management
94
95
  - **fix(console)**: Add missing react-diff-viewer-continued dependency
95
- - **fix(deps)**: Sync pnpm-lock.yaml with react-diff-viewer-continued
96
96
 
97
97
  ### v2.16.0 (2026-02-23)
98
98
  - **feat**: Config Snapshot system - full-stack server configuration versioning (#397~#406)
99
- - Domain layer, infrastructure, API, CLI, Console UI, and E2E tests
100
- - Automated snapshot scheduling with node-cron
101
- - Config diff viewer and restore functionality
102
99
  - **feat**: Backup retention policy pruning implementation (#396, #426)
103
100
  - **fix**: Backup git path and shell injection prevention (#423, #425)
104
101
 
105
102
  ### v2.15.3 (2026-02-22)
106
103
  - **docs**: Update README.md with Management Console features and architecture (#412, #413)
107
104
 
108
- ### v2.15.2 (2026-02-22)
109
- - **docs**: Server Overview/Mods tab screenshots with detailed descriptions (#409)
110
- - **docs**: Integrated setup guide for mcctl init to console init flow (#410)
111
-
112
- ### v2.15.1 (2026-02-22)
113
- - **docs**: Comprehensive web console documentation update with screenshots (#407, #408)
114
- - **fix**: Sync pnpm-lock.yaml with mcctl-api package.json (node-cron)
105
+ [Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
115
106
 
116
- ### v2.15.0 (2026-02-22)
117
- - **feat**: Automated backup scheduling with cron-based scheduler (#394, #395)
118
- - CLI `mcctl backup schedule` with list/add/remove/enable/disable operations
119
- - REST API endpoints for schedule CRUD with node-cron integration
120
- - Web Console UI with schedule management dialog and toggle
121
- - Shell injection prevention, 54+ tests across all layers
107
+ ## Community
122
108
 
123
- [Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
109
+ - **[Q&A / Support](https://github.com/smallmiro/minecraft-server-manager/discussions/categories/q-a)** - Ask questions and get help from the community
110
+ - **[Ideas / Feature Requests](https://github.com/smallmiro/minecraft-server-manager/discussions/categories/ideas)** - Share your ideas and vote on feature requests
124
111
 
125
112
  ## AI Assistant
126
113
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minecraft-docker/mcctl",
3
- "version": "2.18.0",
3
+ "version": "2.19.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.18.0",
59
- "@minecraft-docker/shared": "^2.18.0",
58
+ "@minecraft-docker/mod-source-modrinth": "^2.19.0",
59
+ "@minecraft-docker/shared": "^2.19.0",
60
60
  "better-sqlite3": "^12.6.2",
61
61
  "commander": "^12.0.0",
62
62
  "js-yaml": "^4.1.0",