From bbaa2a1e8161481a50de57163ef88e9ced2ec7ab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Sep 2024 15:38:37 -0500 Subject: [PATCH 1/3] Bump celery[redis] from 5.3.6 to 5.4.0 (#2550) Bumps [celery[redis]](https://github.com/celery/celery) from 5.3.6 to 5.4.0. - [Release notes](https://github.com/celery/celery/releases) - [Changelog](https://github.com/celery/celery/blob/main/Changelog.rst) - [Commits](https://github.com/celery/celery/compare/v5.3.6...v5.4.0) --- updated-dependencies: - dependency-name: celery[redis] dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- base-requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base-requirements.txt b/base-requirements.txt index d8b1295c9..fc018561c 100644 --- a/base-requirements.txt +++ b/base-requirements.txt @@ -19,7 +19,7 @@ feedparser==6.0.11 beautifulsoup4==4.12.3 icalendar==4.0.7 chardet==4.0.0 -celery[redis]==5.3.6 +celery[redis]==5.4.0 django-celery-beat==2.5.0 # TODO: We may drop 'django-imagekit' completely. django-imagekit==5.0 # 5.0 is first version that supports Django 4.2 From 7e414b5e0a7b10d8db7f7ee1b9e57c3db9939d03 Mon Sep 17 00:00:00 2001 From: Jacob Coffee Date: Wed, 18 Sep 2024 15:40:31 -0500 Subject: [PATCH 2/3] feat: add new download feed to base head (#2587) --- templates/base.html | 2 ++ 1 file changed, 2 insertions(+) diff --git a/templates/base.html b/templates/base.html index 578dc1204..a1cfba788 100644 --- a/templates/base.html +++ b/templates/base.html @@ -96,6 +96,8 @@ href="https://feeds.feedburner.com/PythonSoftwareFoundationNews"> + {% comment %} No support for these yet... From dc57cd2963c43e6c007c7ce5be9f68b67d6a05bb Mon Sep 17 00:00:00 2001 From: Jacob Coffee Date: Wed, 18 Sep 2024 15:50:00 -0500 Subject: [PATCH 3/3] fix: guid must be a full URL, use item link url (#2588) --- downloads/views.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/downloads/views.py b/downloads/views.py index 92e851545..6a7f9d95e 100644 --- a/downloads/views.py +++ b/downloads/views.py @@ -192,7 +192,3 @@ def item_pubdate(self, item: Release) -> datetime | None: return timezone.make_aware(item.release_date) return item.release_date return None - - def item_guid(self, item: Release) -> str: - """Return a unique ID for the item based on DB record.""" - return str(item.pk)