Docker
docker pull ghcr.io/TheDuffman85/crowdsec-web-ui:2026.4.10What's Changed
- chore(deps): combine Dependabot version bumps by @TheDuffman85 in #221
- Refine CrowdSec alert origin filters and refresh README by @TheDuffman85 in #224
Full Changelog: 2026.4.9...2026.4.10
Alert filter changes
If you did not use these env vars before, nothing needs to be done. If you did use the old ones, nothing breaks immediately, but migrating to the new vars is recommended.
New env vars:
CROWDSEC_ALERT_INCLUDE_ORIGINS=
CROWDSEC_ALERT_EXCLUDE_ORIGINS=
CROWDSEC_ALERT_INCLUDE_CAPI=false
CROWDSEC_ALERT_INCLUDE_ORIGIN_EMPTY=false
CROWDSEC_ALERT_EXCLUDE_ORIGIN_EMPTY=falseDeprecated env vars:
CROWDSEC_ALERT_ORIGINS
CROWDSEC_ALERT_EXTRA_SCENARIOSThey still work for now, but now log a deprecation warning on startup.
Migration examples:
# old
CROWDSEC_ALERT_ORIGINS=none,CAPI
# new
CROWDSEC_ALERT_INCLUDE_CAPI=true# old
CROWDSEC_ALERT_ORIGINS=crowdsec,cscli
# new
CROWDSEC_ALERT_INCLUDE_ORIGINS=crowdsec,cscli# old
CROWDSEC_ALERT_ORIGINS=none
# new
# nothing needed, this is now the defaultCROWDSEC_ALERT_EXTRA_SCENARIOS has no new replacement and remains compatibility-only.