Releases: batonogov/gron
Releases · batonogov/gron
v0.2.2
What's Changed
- Bump softprops/action-gh-release from 2.1.0 to 2.2.0 by @dependabot in #23
- Bump docker/setup-buildx-action from 3.7.1 to 3.8.0 by @dependabot in #24
- Bump softprops/action-gh-release from 2.2.0 to 2.2.1 by @dependabot in #25
- Bump docker/build-push-action from 6.10.0 to 6.11.0 by @dependabot in #26
- Alpine 3.21.2 by @github-actions in #27
Full Changelog: v0.2.1...v0.2.2
v0.2.1
v0.2.0
What's Changed
- Fix weekday parsing to handle Sunday as both 0 and 7 by @github-actions in #10
New Contributors
- @dependabot made their first contribution in #12
Full Changelog: v0.1.1...v0.2.0
v0.1.1
v0.1.0
Gron v0.1.0 - Initial Release
We're excited to present the first version of Gron - a simple and flexible task scheduler in a Docker container.
Key Features
- Standard cron syntax support
- Simplified interval syntax using
@every
- Script execution from mounted directory
- Easy configuration via environment variables
- Multiple task support
Usage Example
docker run --rm \
-v ./scripts/:/scripts/ \
-e 'TASK_1=*/1 * * * * /scripts/test_script1.sh' \
-e 'TASK_2=@every 10s /scripts/test_script2.sh' \
-e 'TASK_3=@hourly /scripts/test_script3.sh' \
ghcr.io/batonogov/gron:v0.1.0
This is the first stable release that lays the foundation for future improvements. We welcome your feedback and suggestions for making the project better.