@minecraft-docker/mcctl 2.3.1 → 2.3.3

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 CHANGED
@@ -5,6 +5,22 @@ 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.3.3] - 2026-02-12
9
+
10
+ ### Fixed
11
+ - **Playit.gg Docker Compose CWD** - Pass `cwd` to docker compose commands in playit start/stop (#339, #340)
12
+ - Previously, `docker compose --profile playit start/stop` commands did not receive the correct working directory
13
+ - Now passes `cwd` parameter to ensure docker compose runs in the platform root directory
14
+ - Fixes playit-agent start/stop failures when CLI is invoked from a different directory
15
+
16
+ ## [2.3.2] - 2026-02-12
17
+
18
+ ### Fixed
19
+ - **Playit.gg Status Detection** - Check `.mcctl.json` for playit enabled state instead of container existence (#337, #338)
20
+ - Previously relied on Docker container inspection to determine playit status
21
+ - Now reads `playit.enabled` flag from `.mcctl.json` configuration file
22
+ - More reliable detection that works even when containers are not running
23
+
8
24
  ## [2.3.1] - 2026-02-12
9
25
 
10
26
  ### Fixed
package/README.md CHANGED
@@ -77,6 +77,12 @@ mcctl logs myserver
77
77
 
78
78
  ## Changelog
79
79
 
80
+ ### v2.3.3 (2026-02-12)
81
+ - **fix(shared)**: Pass `cwd` to docker compose in playit start/stop (#339, #340)
82
+
83
+ ### v2.3.2 (2026-02-12)
84
+ - **fix(shared)**: Check `.mcctl.json` for playit enabled state instead of container existence (#337, #338)
85
+
80
86
  ### v2.3.1 (2026-02-12)
81
87
  - **fix(api)**: Resolve TypeScript build error in audit-logs purge catch block
82
88
  - **fix(cli)**: Handle missing `.mcctl.json` in `mcctl init --reconfigure` (#335, #336)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@minecraft-docker/mcctl",
3
- "version": "2.3.1",
3
+ "version": "2.3.3",
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.3.1",
59
- "@minecraft-docker/shared": "^2.3.1",
58
+ "@minecraft-docker/mod-source-modrinth": "^2.3.3",
59
+ "@minecraft-docker/shared": "^2.3.3",
60
60
  "better-sqlite3": "^12.6.2",
61
61
  "commander": "^12.0.0",
62
62
  "js-yaml": "^4.1.0",