Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,35 @@ is `0`, minor versions may carry breaking changes — they are called out here.

## [Unreleased]

### Fixed — detect units, from the Varpulis engine (varpulis #277, #279, #281)
- **A sequence with a closure followed by a step** (`A -> all B -> C`) no
longer matches before C. Under the default `.each()` it emitted a complete
match at every B, with or without a C; the brute-force example alerted on
failed logins alone. Matches now come when C arrives, one per closure event.
- **`.stnm()` now keeps an event from opening a second run** when a run
already took it, so `.stnm().longest()` makes one alert of a brute force of
any length.
- **A condition on a field the event does not carry is false** in `.where()`,
as it was in a sequence step: `a == "x" or ends_with(b, "y")` fired only
when `b` was present, and `selection and not filter` dropped events lacking
the filter's field.
- **A program with a lambda (`arr.filter(x => ...)`), `a?.b` or a timestamp
literal no longer aborts the process** with a stack overflow, which took
every unit of the runtime down with it.
- **`vejas-runtime vpl-check` and the MCP tool `vejas_vpl_check` run the
engine's semantic validator**: an unknown function (E050), a misspelled
event type once types are declared (E033), a regular expression that cannot
compile (E052) and an unbounded closure (W003, a warning) are reported with
their line. They checked parse and load only.

### Added — in VPL
- Single-quoted raw strings (`'\AppData\Local\Temp\'`, `''` for a quote),
`regex_match(s, pattern)`, and backticked field names (`` `cs-uri-query` ``)
for web and proxy logs. With them, rules converted from Sigma by
`sigma convert -t varpulis`
([pySigma-backend-varpulis](https://github.com/varpulis/pySigma-backend-varpulis))
run as detect units.

## [0.3.0] — 2026-09-22

### Added
Expand Down
22 changes: 12 additions & 10 deletions core/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion core/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ webpki-roots = "0.26"
# The Varpulis CEP engine, embedded as a library (ADR-0031): compile a VPL
# program, feed it events, publish its emits. No async runtime in its tree —
# its own CI (scripts/check-engine-deps.py) fails if one ever appears.
varpulis-engine = { git = "https://github.com/varpulis/varpulis", rev = "8bbeffc9130ff4f6938420da5afa1bcc580100b2" }
varpulis-engine = { git = "https://github.com/varpulis/varpulis", rev = "9e92c0bfaa748217edbb571b9fb4992d731ea0bf" }

[[bin]]
name = "vejas-runtime"
Expand Down
Loading