From b4872cd2a64156c7441e7bd2cc75d4df3fc29ab9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Mar 2022 05:40:07 +0000 Subject: [PATCH 1/5] Bump djangorestframework-simplejwt from 5.0.0 to 5.1.0 in /backend Bumps [djangorestframework-simplejwt](https://github.com/jazzband/djangorestframework-simplejwt) from 5.0.0 to 5.1.0. - [Release notes](https://github.com/jazzband/djangorestframework-simplejwt/releases) - [Changelog](https://github.com/jazzband/djangorestframework-simplejwt/blob/master/CHANGELOG.md) - [Commits](https://github.com/jazzband/djangorestframework-simplejwt/compare/v5.0.0...v5.1.0) --- updated-dependencies: - dependency-name: djangorestframework-simplejwt dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- backend/requirements.txt | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) diff --git a/backend/requirements.txt b/backend/requirements.txt index a4607ac..94492b6 100644 --- a/backend/requirements.txt +++ b/backend/requirements.txt @@ -4,17 +4,10 @@ # # pip-compile requirements.in # ---trusted-host pypi.org - apscheduler==3.8.1 # via django-apscheduler asgiref==3.4.1 # via django -backports.zoneinfo==0.2.1 - # via - # django - # pytz-deprecation-shim - # tzlocal beautifulsoup4==4.10.0 # via -r requirements.in dj-database-url==0.5.0 @@ -37,14 +30,12 @@ djangorestframework==3.13.1 # via # -r requirements.in # djangorestframework-simplejwt -djangorestframework-simplejwt==5.0.0 +djangorestframework-simplejwt==5.1.0 # via -r requirements.in drf-writable-nested==0.6.3 # via -r requirements.in gunicorn==20.1.0 # via -r requirements.in -importlib-metadata==4.9.0 - # via markdown markdown==3.3.6 # via -r requirements.in psycopg2-binary==2.9.3 @@ -75,8 +66,6 @@ urllib3==1.26.8 # via -r requirements.in whitenoise==6.0.0 # via -r requirements.in -zipp==3.6.0 - # via importlib-metadata # The following packages are considered to be unsafe in a requirements file: # setuptools From a1bfad759280c8667b7994071a6dad0dd96cc839 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 2 Mar 2022 09:43:28 +0000 Subject: [PATCH 2/5] Bump django from 4.0.2 to 4.0.3 in /backend Bumps [django](https://github.com/django/django) from 4.0.2 to 4.0.3. - [Release notes](https://github.com/django/django/releases) - [Commits](https://github.com/django/django/compare/4.0.2...4.0.3) --- updated-dependencies: - dependency-name: django dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- backend/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/requirements.txt b/backend/requirements.txt index 94492b6..bfff16a 100644 --- a/backend/requirements.txt +++ b/backend/requirements.txt @@ -12,7 +12,7 @@ beautifulsoup4==4.10.0 # via -r requirements.in dj-database-url==0.5.0 # via -r requirements.in -django==4.0.2 +django==4.0.3 # via # -r requirements.in # django-apscheduler From bbd8f4d996244d9bbee93f556d9d23f44abda743 Mon Sep 17 00:00:00 2001 From: Shubham Hibare Date: Sun, 6 Mar 2022 15:21:21 +0530 Subject: [PATCH 3/5] Exclude disabled jobs from status --- backend/jobs/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/jobs/views.py b/backend/jobs/views.py index 7203767..63cbe0e 100644 --- a/backend/jobs/views.py +++ b/backend/jobs/views.py @@ -33,7 +33,7 @@ def status(self, request, **kwargs): """ if self.queryset.exists(): - health = [job.healthy for job in self.queryset.all()] + health = [job.healthy for job in self.queryset.filter(state=True)] if health.count(False): return Response({"status": False, "jobs": health.count(False)}, status=status.HTTP_200_OK) From 06e687735f2345acae49e43b61e9e9d5b6ccad5c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Mar 2022 05:29:32 +0000 Subject: [PATCH 4/5] Bump django-apscheduler from 0.6.0 to 0.6.2 in /backend Bumps [django-apscheduler](https://github.com/jcass77/django-apscheduler) from 0.6.0 to 0.6.2. - [Release notes](https://github.com/jcass77/django-apscheduler/releases) - [Changelog](https://github.com/jcass77/django-apscheduler/blob/develop/docs/changelog.md) - [Commits](https://github.com/jcass77/django-apscheduler/compare/v0.6.0...v0.6.2) --- updated-dependencies: - dependency-name: django-apscheduler dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- backend/requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/requirements.txt b/backend/requirements.txt index bfff16a..915fca0 100644 --- a/backend/requirements.txt +++ b/backend/requirements.txt @@ -20,7 +20,7 @@ django==4.0.3 # django-model-utils # djangorestframework # djangorestframework-simplejwt -django-apscheduler==0.6.0 +django-apscheduler==0.6.2 # via -r requirements.in django-filter==21.1 # via -r requirements.in From 96d43035be2a7469b4e1cde4f99357a42092a520 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 7 Mar 2022 09:36:51 +0000 Subject: [PATCH 5/5] Bump python from 3.9-slim to 3.10.2-slim Bumps python from 3.9-slim to 3.10.2-slim. --- updated-dependencies: - dependency-name: python dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index e77082c..9d1c1d3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM python:3.9-slim as base +FROM python:3.10.2-slim as base LABEL Github="hibare"