Compare commits

..

1 Commits

Author SHA1 Message Date
dependabot[bot] 7dabbce4df [UPDATE] Update redis requirement from <8.0.0,>=3.3.1 to >=8.0.0,<9.0.0
Updates the requirements on [redis](https://github.com/redis/redis-py) to permit the latest version.
- [Release notes](https://github.com/redis/redis-py/releases)
- [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES)
- [Commits](https://github.com/redis/redis-py/compare/3.3.1...v8.0.0)

---
updated-dependencies:
- dependency-name: redis
  dependency-version: 8.0.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
2026-06-02 01:40:18 +00:00
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -170,7 +170,7 @@ class NewsUpdateView(PermissionOrAuthorRequiredMixin, UpdateView):
form_class = NewsForm form_class = NewsForm
template_name = "com/news_edit.jinja" template_name = "com/news_edit.jinja"
pk_url_kwarg = "news_id" pk_url_kwarg = "news_id"
permission_required = ["com.edit_news", "com.moderate_news"] permission_required = "com.edit_news"
def form_valid(self, form): def form_valid(self, form):
response = super().form_valid(form) # Does the saving part response = super().form_valid(form) # Does the saving part
+1 -1
View File
@@ -44,7 +44,7 @@ dependencies = [
"django-honeypot>=1.3.0,<2", "django-honeypot>=1.3.0,<2",
"pydantic-extra-types>=2.11.1,<3.0.0", "pydantic-extra-types>=2.11.1,<3.0.0",
"ical>=12.0.0,<14.0.0", "ical>=12.0.0,<14.0.0",
"redis[hiredis]>=3.3.1,<8.0.0", "redis[hiredis]>=8.0.0,<9.0.0",
"environs[django]>=15.0.1,<16", "environs[django]>=15.0.1,<16",
"requests>=2.34.2,<3.0.0", "requests>=2.34.2,<3.0.0",
"honcho>=2.0.0", "honcho>=2.0.0",