| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-07-15 | 1.2 kB | |
| v2.0.1 source code.tar.gz | 2026-07-15 | 44.6 MB | |
| v2.0.1 source code.zip | 2026-07-15 | 44.7 MB | |
| Totals: 3 Items | 89.3 MB | 1 | |
v2.0.1
This release is available on GitHub for build-from-source consumption now; Maven Central publication will follow.
What's Changed
- Fix
Machine.deleteRuleisolation for rules sharing byte-identical wildcard sub-patterns by @sanchezdale in [#256] (fixes [#255]). Deleting a rule that shared a wildcard clause with a sibling could previously either silently no-op (the deleted rule kept matching) or strand the sibling (it stopped matching), nondeterministically. The fix is confined to the delete path;addRuleand the matching path are untouched. Verified with 200-iteration repro tests for both failure modes plus boundary and delete/re-add recovery tests; benchmarks show no regression across JDK 8/11/17/21. findPatternnow delegates tofindAllPatterns(single pattern-type switch) by @fym-rgb
Building
:::bash
git clone --branch v2.0.1 https://github.com/aws/event-ruler.git
cd event-ruler
mvn package -DskipTests
# jar at target/event-ruler-2.0.1.jar
New Contributors
- @sanchezdale made their first contribution in [#256]
Full Changelog: https://github.com/aws/event-ruler/compare/v2.0.0...v2.0.1