@minecraft-docker/mcctl 1.7.5 → 1.7.6
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 +7 -0
- package/README.md +4 -5
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,13 @@ 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.7.6] - 2026-01-31
|
|
9
|
+
|
|
10
|
+
### Added
|
|
11
|
+
- **mcctl-api npm publishing support** - First npm release of REST API package
|
|
12
|
+
- Add @minecraft-docker/mcctl-api package to npm registry
|
|
13
|
+
- Update release workflow to include mcctl-api in npm publish step
|
|
14
|
+
|
|
8
15
|
## [1.7.5] - 2026-01-31
|
|
9
16
|
|
|
10
17
|
### Fixed
|
package/README.md
CHANGED
|
@@ -73,6 +73,10 @@ mcctl logs myserver
|
|
|
73
73
|
|
|
74
74
|
## Changelog
|
|
75
75
|
|
|
76
|
+
### v1.7.6 (2026-01-31)
|
|
77
|
+
- **feat(mcctl-api)**: First npm release of REST API package
|
|
78
|
+
- Add @minecraft-docker/mcctl-api to npm registry
|
|
79
|
+
|
|
76
80
|
### v1.7.5 (2026-01-31)
|
|
77
81
|
- **fix**: Resolve Edge runtime error in mcctl-console middleware (#201)
|
|
78
82
|
|
|
@@ -88,11 +92,6 @@ mcctl logs myserver
|
|
|
88
92
|
### v1.7.1 (2026-01-31)
|
|
89
93
|
- **fix**: Fix "Script not found: create-server.sh" error when mcctl installed via npm (#195)
|
|
90
94
|
|
|
91
|
-
### v1.7.0 (2026-01-31)
|
|
92
|
-
- **feat(api)**: Router Status API, Server Create/Delete API, Player Management API, Backup API
|
|
93
|
-
- **feat(cli)**: Add `mcctl init --reconfigure` command
|
|
94
|
-
- **test**: Comprehensive E2E tests for API and CLI commands
|
|
95
|
-
|
|
96
95
|
[Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
|
|
97
96
|
|
|
98
97
|
## AI Assistant
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@minecraft-docker/mcctl",
|
|
3
|
-
"version": "1.7.
|
|
3
|
+
"version": "1.7.6",
|
|
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.
|
|
59
|
-
"@minecraft-docker/shared": "^1.7.
|
|
58
|
+
"@minecraft-docker/mod-source-modrinth": "^1.7.6",
|
|
59
|
+
"@minecraft-docker/shared": "^1.7.6",
|
|
60
60
|
"commander": "^12.0.0",
|
|
61
61
|
"js-yaml": "^4.1.0",
|
|
62
62
|
"picocolors": "^1.1.0",
|