@minecraft-docker/mcctl 1.15.0 → 1.15.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.
- package/CHANGELOG.md +9 -0
- package/README.md +4 -6
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,15 @@ 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.15.1] - 2026-02-08
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- **Console Auth BaseURL** - Change Better Auth client baseURL default from `http://localhost:5000` to empty string for production deployment
|
|
12
|
+
- Browser previously sent auth requests to `localhost:5000` instead of the deployed host
|
|
13
|
+
- Now uses relative URLs that correctly match the deployed server address
|
|
14
|
+
- **Console Trusted Origins** - Add `NEXT_PUBLIC_APP_URL` environment variable support to trustedOrigins
|
|
15
|
+
- Enables flexible production origin configuration for cross-origin auth requests
|
|
16
|
+
|
|
8
17
|
## [1.15.0] - 2026-02-08
|
|
9
18
|
|
|
10
19
|
### Added
|
package/README.md
CHANGED
|
@@ -77,6 +77,10 @@ mcctl logs myserver
|
|
|
77
77
|
|
|
78
78
|
## Changelog
|
|
79
79
|
|
|
80
|
+
### v1.15.1 (2026-02-08)
|
|
81
|
+
- **fix(console)**: Change auth client baseURL from `localhost:5000` to empty string for production deployment
|
|
82
|
+
- **fix(console)**: Add `NEXT_PUBLIC_APP_URL` env var support to trustedOrigins
|
|
83
|
+
|
|
80
84
|
### v1.15.0 (2026-02-08)
|
|
81
85
|
- **feat(cli)**: Auto-install mcctl-console package in `console init`
|
|
82
86
|
- **fix(cli)**: Resolve service script paths independently for each service
|
|
@@ -92,7 +96,6 @@ mcctl logs myserver
|
|
|
92
96
|
- **feat(shared,cli)**: Unified PrerequisiteChecker for `mcctl init` and `mcctl console init`
|
|
93
97
|
- **feat(console)**: `@minecraft-docker/mcctl-console` npm package publishing
|
|
94
98
|
- **feat(cli)**: `mcctl console service stop/restart --force` option (#238)
|
|
95
|
-
- **feat(console)**: Settings renamed to Routing with Avahi mDNS monitoring (#240)
|
|
96
99
|
- **fix(console)**: Add force-dynamic to all API routes for Next.js build
|
|
97
100
|
|
|
98
101
|
### v1.12.1 (2026-02-07)
|
|
@@ -103,11 +106,6 @@ mcctl logs myserver
|
|
|
103
106
|
- **feat(console)**: Server detail delete menu with confirmation dialog
|
|
104
107
|
- **feat(api)**: Audit logging for server create, delete, start, stop, restart actions
|
|
105
108
|
|
|
106
|
-
### v1.11.0 (2026-02-06)
|
|
107
|
-
- **feat(console)**: World management UI - list, reset, server assignment (#175)
|
|
108
|
-
- **feat(console)**: Server options tab with config management (#229)
|
|
109
|
-
- **feat(console)**: SSE real-time server status replaces polling (#223)
|
|
110
|
-
|
|
111
109
|
[Full Changelog](https://github.com/smallmiro/minecraft-server-manager/releases)
|
|
112
110
|
|
|
113
111
|
## AI Assistant
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@minecraft-docker/mcctl",
|
|
3
|
-
"version": "1.15.
|
|
3
|
+
"version": "1.15.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": "^1.15.
|
|
59
|
-
"@minecraft-docker/shared": "^1.15.
|
|
58
|
+
"@minecraft-docker/mod-source-modrinth": "^1.15.1",
|
|
59
|
+
"@minecraft-docker/shared": "^1.15.1",
|
|
60
60
|
"better-sqlite3": "^12.6.2",
|
|
61
61
|
"commander": "^12.0.0",
|
|
62
62
|
"js-yaml": "^4.1.0",
|