From b6dc6c56aa06dc4c9fb01625ec09a0727b9a0ed0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 12 Jun 2024 15:57:53 +0000 Subject: [PATCH 1/7] Bump requests from 2.31.0 to 2.32.2 Bumps [requests](https://github.com/psf/requests) from 2.31.0 to 2.32.2. - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/main/HISTORY.md) - [Commits](https://github.com/psf/requests/compare/v2.31.0...v2.32.2) --- updated-dependencies: - dependency-name: requests dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c1527b7..0547704 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -27,7 +27,7 @@ dependencies = [ "Django >= 3.1, < 4.0", "django-dynamicsettings==0.0.3", "django-environ==0.10.0", - "requests==2.31.0", + "requests==2.32.2", "tqdm==4.65.0", "packageurl-python==0.15.0", ] From 191fdf77f9aaae471149789e048d5dcda9db911d Mon Sep 17 00:00:00 2001 From: Diogo Lemos Date: Fri, 14 Jun 2024 11:38:26 +0100 Subject: [PATCH 2/7] Update resync_vulnerabilities handle Signed-off-by: Diogo Lemos --- sbomrepo/management/commands/resync_vulnerabilities.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sbomrepo/management/commands/resync_vulnerabilities.py b/sbomrepo/management/commands/resync_vulnerabilities.py index 5ac0246..1ee74d4 100644 --- a/sbomrepo/management/commands/resync_vulnerabilities.py +++ b/sbomrepo/management/commands/resync_vulnerabilities.py @@ -12,7 +12,7 @@ class Command(BaseCommand): - def handle(self): + def handle(self, *args: Any, **options: Any): session = requests.Session() ecosystems = get_osv_ecosystems() From b467361c84845bde43b419f370963e989e6a9adf Mon Sep 17 00:00:00 2001 From: Diogo Lemos Date: Fri, 14 Jun 2024 11:46:06 +0100 Subject: [PATCH 3/7] Update release version (#10) Co-authored-by: Diogo Lemos --- sbomrepo/__init__.py | 2 +- sbomrepo/apps.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/sbomrepo/__init__.py b/sbomrepo/__init__.py index 1b3a8a1..5155f05 100644 --- a/sbomrepo/__init__.py +++ b/sbomrepo/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.3" +__version__ = "0.0.4" import os import sys diff --git a/sbomrepo/apps.py b/sbomrepo/apps.py index 93d3373..53f5864 100644 --- a/sbomrepo/apps.py +++ b/sbomrepo/apps.py @@ -2,7 +2,7 @@ from django.conf import settings APP_SETTINGS = dict( - VERSION='0.0.3', + VERSION='0.0.4', ) class SbomRepoConfig(AppConfig): From 757826e79091caa97ed898a3e436ce44d45f6250 Mon Sep 17 00:00:00 2001 From: Diogo Lemos Date: Thu, 27 Jun 2024 15:12:03 +0100 Subject: [PATCH 4/7] Update purl version --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index c1527b7..090c9a3 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,7 +29,7 @@ dependencies = [ "django-environ==0.10.0", "requests==2.31.0", "tqdm==4.65.0", - "packageurl-python==0.15.0", + "packageurl-python==0.15.1", ] [project.optional-dependencies] From e4829472e2f053c666a0be0853c6715ebcaf45a7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 27 Jun 2024 14:31:52 +0000 Subject: [PATCH 5/7] Bump tqdm from 4.65.0 to 4.66.3 Bumps [tqdm](https://github.com/tqdm/tqdm) from 4.65.0 to 4.66.3. - [Release notes](https://github.com/tqdm/tqdm/releases) - [Commits](https://github.com/tqdm/tqdm/compare/v4.65.0...v4.66.3) --- updated-dependencies: - dependency-name: tqdm dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 090c9a3..7141f92 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -28,7 +28,7 @@ dependencies = [ "django-dynamicsettings==0.0.3", "django-environ==0.10.0", "requests==2.31.0", - "tqdm==4.65.0", + "tqdm==4.66.3", "packageurl-python==0.15.1", ] From db16dbc6fbb76cf9ce115bb7b2b1d4b320a64ef9 Mon Sep 17 00:00:00 2001 From: Gustavo Silva Date: Fri, 28 Jun 2024 13:26:25 +0100 Subject: [PATCH 6/7] chore: app will support django <5 not <4 --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 7141f92..cfdd4f6 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -24,7 +24,7 @@ classifiers = [ "Topic :: Software Development", ] dependencies = [ - "Django >= 3.1, < 4.0", + "Django >= 3.1, < 5.0", "django-dynamicsettings==0.0.3", "django-environ==0.10.0", "requests==2.31.0", @@ -99,4 +99,4 @@ select = [ 'W', "I001", ] -src = ['sbomrepo'] \ No newline at end of file +src = ['sbomrepo'] From 30dc9dff24fb544996b54a116c5e708bda2ea224 Mon Sep 17 00:00:00 2001 From: Gustavo Silva Date: Fri, 28 Jun 2024 13:31:06 +0100 Subject: [PATCH 7/7] chore: bump app version for release --- sbomrepo/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sbomrepo/__init__.py b/sbomrepo/__init__.py index 5155f05..c0f5017 100644 --- a/sbomrepo/__init__.py +++ b/sbomrepo/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.0.4" +__version__ = "0.0.5" import os import sys @@ -6,4 +6,4 @@ def django_manage(): os.environ.setdefault("DJANGO_SETTINGS_MODULE", "myproject.settings") from django.core.management import execute_from_command_line - execute_from_command_line(sys.argv) \ No newline at end of file + execute_from_command_line(sys.argv)