Skip to content

Commit e05c1b4

Browse files
akoclaude
andcommitted
Update changelog to HEAD and add release workflow
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 0c445f8 commit e05c1b4

2 files changed

Lines changed: 52 additions & 0 deletions

File tree

.github/workflows/release.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Release
2+
3+
on:
4+
push:
5+
tags:
6+
- 'v*'
7+
8+
permissions:
9+
contents: write
10+
11+
jobs:
12+
release:
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v4
16+
with:
17+
fetch-depth: 0
18+
- uses: actions/setup-go@v4
19+
with:
20+
go-version: '1.26'
21+
- name: Build release binaries
22+
run: make release
23+
- name: Create GitHub Release
24+
uses: softprops/action-gh-release@v2
25+
with:
26+
generate_release_notes: true
27+
files: bin/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+
## [Unreleased]
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.

0 commit comments

Comments
 (0)