Skip to content

Commit cc82663

Browse files
committed
Change warning
1 parent 4b8c2a7 commit cc82663

2 files changed

Lines changed: 26 additions & 1 deletion

File tree

cmd/mxcli/changelog.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,31 @@ All notable changes to mxcli will be documented in this file.
44

55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/).
66

7+
## [0.2.0] - 2026-03-15
8+
9+
### Added
10+
11+
- **CI/CD** — GitHub Actions workflow for build, test, and lint on push; release workflow for tagged versions
12+
- **Makefile Lint Targets**`make lint`, `make lint-go` (fmt + vet), `make lint-ts` (tsc --noEmit)
13+
- **Playwright Testing** — Browser name config support, port-offset fixes, project directory CWD for session discovery
14+
- **VS Code Extension** — Project tree auto-refresh via file watchers, association cardinality label fix
15+
16+
### Fixed
17+
18+
- Enum truncation, DROP+CREATE cache invalidation, duplicate variable detection, subfolder enum resolution
19+
- IMPORT FK column NULL fallback and entity attribute validation
20+
- Docker exec using host port instead of container-internal port
21+
- AGGREGATE syntax in skills docs
22+
- Association cardinality labels in domain model diagrams
23+
- 3 MDL bugs and standardized enum DEFAULT syntax
24+
25+
### Changed
26+
27+
- Default to always-quoted identifiers in MDL to prevent reserved keyword conflicts
28+
- Communication Style section in generated CLAUDE.md for human-readable change descriptions
29+
- Shortened mxcli startup warning to single line
30+
- Chromium system dependencies added to devcontainer Dockerfile
31+
732
## [0.1.0] - 2026-03-13
833

934
First public release.

cmd/mxcli/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ var (
2121
BuildTime = ""
2222
)
2323

24-
const warningBanner = "WARNING: This is a vibe-coded PoC, alpha quality, not fit for production use.\n"
24+
const warningBanner = "WARNING: This is a vibe-coded PoC, alpha quality, use with caution.\n"
2525

2626
func main() {
2727
// Show warning banner unless --quiet, -q, --help, -h, or --version is passed

0 commit comments

Comments
 (0)