mirror of
https://github.com/Xe138/windmill-git-sync.git
synced 2026-04-01 17:27:23 -04:00
Document all features and changes in initial release including: - Containerized Windmill workspace sync service - Flask webhook server with API-based secret management - GitHub workflow for automated Docker builds - Comprehensive documentation and validation scripts
2.0 KiB
2.0 KiB
Changelog
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog, and this project adheres to Semantic Versioning.
Unreleased
0.1.0 - 2025-11-09
Added
- Containerized service for syncing Windmill workspaces to Git repositories
- Flask webhook server with
/syncand/healthendpoints - wmill CLI integration for pulling workspace content from Windmill
- Automated Git commit and push functionality with PAT authentication
- Docker container with Python 3.11, wmill CLI, Git, and Flask
- Network isolation - service only accessible within Docker network (no host exposure)
- Integration with existing Windmill docker-compose files
- External volume support for persistent workspace data
- Comprehensive documentation (README.md and CLAUDE.md)
- MIT License
- Docker build validation script (
scripts/validate_docker_build.sh) - GitHub workflow for automated Docker image builds on version tags
- GitHub Container Registry (GHCR) publishing support
- Automated draft release creation for stable versions
Changed
- Refactored security model: secrets now passed via JSON API payload instead of environment variables
- Updated sync.py to accept configuration via function parameters rather than env vars
- Enhanced server.py to parse and validate JSON payloads with required fields
- Improved documentation to reflect API-based secret configuration model
- Removed secret values from .env.example and docker-compose.yml
Security
- Secrets (Windmill tokens, Git tokens) no longer stored in environment variables
- All sensitive data managed by Windmill and passed per-request via JSON payload
- Network-isolated design ensures service is only accessible within Docker network
- PAT-based Git authentication using HTTPS (no SSH key management required)