Skip to content

Commit bd759ea

Browse files
authored
Merge branch 'internetstandards:main' into main
2 parents 05629bb + 1fa9fb7 commit bd759ea

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

Changelog.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@ _Compared to the latest 1.10 release._
2424

2525
- Fixed handling for [CAA with non-ascii characters](https://github.com/internetstandards/Internet.nl/pull/1788).
2626
- Fixed possible exception in [mail test prechecks](https://github.com/internetstandards/Internet.nl/pull/1787).
27+
- Fixed an [issue with rate limiting](https://github.com/internetstandards/Internet.nl/pull/1792).
28+
- Update [Django to 4.2.22](https://github.com/internetstandards/Internet.nl/pull/1795) to fix
29+
[CVE-2025-48432](https://www.djangoproject.com/weblog/2025/jun/04/security-releases/).
2730

2831
## 1.10.0
2932

checks/tasks/update.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ def _populate_HOF(hof, model, entry_creation):
7676
previousscore = 0
7777
previoustimestamp = None
7878
previousreportid = None
79-
for report in model.objects.all().order_by("domain", "timestamp"):
79+
for report in model.objects.only("id", "domain", "timestamp", "score").order_by("domain", "timestamp").iterator():
8080
if previousname != report.domain and previousname is not None:
8181
if previousscore >= 100:
8282
entry_creation(hof, previousname, previousreportid, previoustimestamp)

requirements.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ cryptography==38.0.4
6060
# via
6161
# -r requirements.in
6262
# pgpy-dtc
63-
django==4.2.21
63+
django==4.2.22
6464
# via
6565
# -r requirements.in
6666
# django-bleach

0 commit comments

Comments
 (0)