From 39f2f796e513650391bef0bfb7550e9de84cb37d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 Jul 2026 22:02:20 +0000 Subject: [PATCH] Update regex requirement from >=2024.5.15 to >=2026.7.19 in /coordinator Updates the requirements on [regex](https://github.com/mrabarnett/mrab-regex) to permit the latest version. - [Changelog](https://github.com/mrabarnett/mrab-regex/blob/hg/changelog.txt) - [Commits](https://github.com/mrabarnett/mrab-regex/compare/2024.5.15...2026.7.19) --- updated-dependencies: - dependency-name: regex dependency-version: 2026.7.19 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- coordinator/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coordinator/requirements.txt b/coordinator/requirements.txt index 4484c1a..6207a42 100644 --- a/coordinator/requirements.txt +++ b/coordinator/requirements.txt @@ -44,7 +44,7 @@ webauthn>=2.5.0 # FIDO2/WebAuthn passkeys (passwordless + biometric 2FA) — se prometheus-fastapi-instrumentator>=7.0.0 # /metrics for Prometheus scraping prometheus-client>=0.20.0 # explicit (dep of the instrumentator; pin so a stale build installs it) unidecode>=1.3.8 # correct non-ASCII transliteration for slug_service (graceful NFKD fallback if absent) -regex>=2024.5.15 # ReDoS hard-timeout guarantee: regex.search/findall(..., timeout=) releases the GIL (the stdlib `re` cannot be timed out). Used by security.validation safe_regex_* + validate_regex probe. +regex>=2026.7.19 # ReDoS hard-timeout guarantee: regex.search/findall(..., timeout=) releases the GIL (the stdlib `re` cannot be timed out). Used by security.validation safe_regex_* + validate_regex probe. apscheduler>=3.10 # in-process monitor/workflow/housekeeping scheduling (replaces the cloud Redis-backed scheduler; wired up in a later self-host stage) cachetools>=5.3 # in-process TTL caches (replaces some Redis usages in the self-host carve)