Skip to content

Commit dcc125c

Browse files
committed
Revert "fix: patch beginning constraints (#104)"
This reverts commit 0d33a93.
1 parent 9989ec7 commit dcc125c

3 files changed

Lines changed: 12 additions & 20 deletions

File tree

advisories/cookies_addons/DSA-CONTRIB-2025-087.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,20 +19,22 @@
1919
"type": "ECOSYSTEM",
2020
"events": [
2121
{
22-
"introduced": "1.0.0"
22+
"introduced": "1.0.1"
2323
},
2424
{
2525
"fixed": "1.2.4"
2626
}
2727
],
2828
"database_specific": {
29-
"constraint": ">=1.0.0 <1.2.4"
29+
"constraint": ">1.0.0 < 1.2.4",
30+
"warnings": [
31+
"the > operator should be avoided as it does not provide a concrete version"
32+
]
3033
}
3134
}
3235
],
3336
"database_specific": {
34-
"affected_versions": ">=1.0.0 <1.2.4",
35-
"patched": true
37+
"affected_versions": ">1.0.0 < 1.2.4"
3638
}
3739
}
3840
],

advisories/mail_login/DSA-CONTRIB-2025-088.json

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,17 @@
1919
"type": "ECOSYSTEM",
2020
"events": [
2121
{
22-
"introduced": "3.0.0"
22+
"introduced": "3.0.1"
2323
},
2424
{
2525
"fixed": "3.2.0"
2626
}
2727
],
2828
"database_specific": {
29-
"constraint": ">=3.0.0 <3.2.0"
29+
"constraint": ">3.0.0 <3.2.0",
30+
"warnings": [
31+
"the > operator should be avoided as it does not provide a concrete version"
32+
]
3033
}
3134
},
3235
{
@@ -45,8 +48,7 @@
4548
}
4649
],
4750
"database_specific": {
48-
"affected_versions": ">=3.0.0 <3.2.0 || >=4.0.0 <4.2.0",
49-
"patched": true
51+
"affected_versions": ">3.0.0 <3.2.0 || >=4.0.0 <4.2.0"
5052
}
5153
}
5254
],

patches.toml

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -76,15 +76,3 @@ field_affected_versions = [
7676
'^1 <= 1.0.0',
7777
'>=1.0.0 <1.1.0'
7878
]
79-
80-
[SA-CONTRIB-2025-087]
81-
field_affected_versions = [
82-
'>1.0.0 < 1.2.4',
83-
'>=1.0.0 <1.2.4'
84-
]
85-
86-
[SA-CONTRIB-2025-088]
87-
field_affected_versions = [
88-
'>3.0.0 <3.2.0 || >=4.0.0 <4.2.0',
89-
'>=3.0.0 <3.2.0 || >=4.0.0 <4.2.0'
90-
]

0 commit comments

Comments
 (0)