feat: add Nix, MSI, and DMG packaging support - #30
Merged
Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## master #30 +/- ##
==========================================
+ Coverage 91.12% 91.15% +0.02%
==========================================
Files 31 45 +14
Lines 2873 3820 +947
==========================================
+ Hits 2618 3482 +864
- Misses 255 338 +83 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
Major changes:
Filter-Functions Architecture:
- Add unified filter_functions module supporting both function and filter syntax
- Migrate 50+ functions to new architecture (hash, encoding, math, string,
array, datetime, path, URL, object, Kubernetes, serialization)
- Example: {{ sha256(string="hello") }} AND {{ "hello" | sha256 }}
New Functions:
- get_interfaces() - list network interfaces with IP addresses
- now() - returns Unix timestamp, optional format parameter
- get_hour(), get_minute(), get_second() - datetime component extraction
Packaging:
- Add Nix flake support (flake.nix)
- Add Windows MSI installer (WiX)
- Add macOS DMG packaging (create-dmg.sh)
CI/CD Improvements:
- Extract build logic into reusable workflows
- Run integration tests on built binaries
- Enable QEMU testing for ARM64 binaries
- Add pre-commit hook for cargo make qa
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
bordeux
force-pushed
the
feature/new-packages-build
branch
from
January 3, 2026 19:41
35e1b0a to
db27729
Compare
…DE.md Add comprehensive "Big Picture - What This Tool Does" section including: - Purpose and typical use cases for DevOps/SRE workflows - Function categories table (22 categories, 100+ functions) - Key design decisions - CLI and template quick references Update Future Enhancements section to reflect implemented features. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Add MiniJinja "is" test syntax support for all 9 is_* functions,
allowing both function and "is" syntax:
- Function: `{{ is_email(string="foo@bar.com") }}`
- "Is" test: `{% if "foo@bar.com" is email %}`
New is_functions module with:
- IsFunction trait for stateless functions (validation, datetime, network)
- ContextIsFunction trait for context-aware functions (filesystem)
- Validation: email, url, ip, uuid
- DateTime: leap_year
- Network: port_available
- Filesystem: file, dir, symlink
Changes:
- Add src/is_functions/ module with traits and implementations
- Update README.md with "Is Syntax" documentation section
- Update CLAUDE.md with is_functions architecture
- Add comprehensive unit tests (tests/test_is_*.rs)
- Add integration tests (tests/integration/tests/2[5-8]_is_*.sh)
- Clean up old implementations from src/functions/
- Remove redundant tests from old test files
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
github-actions Bot
pushed a commit
that referenced
this pull request
Jan 3, 2026
## 1.3.0 (2026-01-03) * Merge pull request #30 from bordeux/feature/new-packages-build ([ba1808b](ba1808b)), closes [#30](#30) * feat: add dual syntax support for all is-functions ([2d71887](2d71887)) * feat: unified filter-functions architecture and packaging improvements ([db27729](db27729)) * docs: add big picture overview and update future enhancements in CLAUDE.md ([8b63c98](8b63c98))
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
🤖 Generated with Claude Code