diff --git a/advisories/cookies_addons/DSA-CONTRIB-2025-087.json b/advisories/cookies_addons/DSA-CONTRIB-2025-087.json index 28207040..e6def7fd 100644 --- a/advisories/cookies_addons/DSA-CONTRIB-2025-087.json +++ b/advisories/cookies_addons/DSA-CONTRIB-2025-087.json @@ -19,22 +19,20 @@ "type": "ECOSYSTEM", "events": [ { - "introduced": "1.0.1" + "introduced": "1.0.0" }, { "fixed": "1.2.4" } ], "database_specific": { - "constraint": ">1.0.0 < 1.2.4", - "warnings": [ - "the > operator should be avoided as it does not provide a concrete version" - ] + "constraint": ">=1.0.0 <1.2.4" } } ], "database_specific": { - "affected_versions": ">1.0.0 < 1.2.4" + "affected_versions": ">=1.0.0 <1.2.4", + "patched": true } } ], diff --git a/advisories/mail_login/DSA-CONTRIB-2025-088.json b/advisories/mail_login/DSA-CONTRIB-2025-088.json index b053256e..eaefe7f5 100644 --- a/advisories/mail_login/DSA-CONTRIB-2025-088.json +++ b/advisories/mail_login/DSA-CONTRIB-2025-088.json @@ -19,17 +19,14 @@ "type": "ECOSYSTEM", "events": [ { - "introduced": "3.0.1" + "introduced": "3.0.0" }, { "fixed": "3.2.0" } ], "database_specific": { - "constraint": ">3.0.0 <3.2.0", - "warnings": [ - "the > operator should be avoided as it does not provide a concrete version" - ] + "constraint": ">=3.0.0 <3.2.0" } }, { @@ -48,7 +45,8 @@ } ], "database_specific": { - "affected_versions": ">3.0.0 <3.2.0 || >=4.0.0 <4.2.0" + "affected_versions": ">=3.0.0 <3.2.0 || >=4.0.0 <4.2.0", + "patched": true } } ], diff --git a/patches.toml b/patches.toml index f842e881..4c5f99a8 100644 --- a/patches.toml +++ b/patches.toml @@ -76,3 +76,15 @@ field_affected_versions = [ '^1 <= 1.0.0', '>=1.0.0 <1.1.0' ] + +[SA-CONTRIB-2025-087] +field_affected_versions = [ + '>1.0.0 < 1.2.4', + '>=1.0.0 <1.2.4' +] + +[SA-CONTRIB-2025-088] +field_affected_versions = [ + '>3.0.0 <3.2.0 || >=4.0.0 <4.2.0', + '>=3.0.0 <3.2.0 || >=4.0.0 <4.2.0' +]