From 1cb52979a3a1f86e127bcf07b3f77a5beffa840a Mon Sep 17 00:00:00 2001 From: Arthur Hanson Date: Fri, 25 Oct 2024 08:56:40 -0700 Subject: [PATCH] v7.4.1 upgrade requests and urllib3 libraries for security vulnerabilities --- .github/ISSUE_TEMPLATE/bug_report.yaml | 2 +- README.md | 2 +- pynetbox/__init__.py | 2 +- requirements.txt | 3 ++- 4 files changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/ISSUE_TEMPLATE/bug_report.yaml b/.github/ISSUE_TEMPLATE/bug_report.yaml index acab216..283b68d 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.yaml +++ b/.github/ISSUE_TEMPLATE/bug_report.yaml @@ -11,7 +11,7 @@ body: attributes: label: pynetbox version description: What version of pynetbox are you currently running? - placeholder: v7.4.0 + placeholder: v7.4.1 validations: required: true - type: input diff --git a/README.md b/README.md index 0e3d9ff..c87edf0 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Each pyNetBox Version listed below has been tested with its corresponding NetBox | NetBox Version | Plugin Version | |:--------------:|:--------------:| -| 4.0.6 | 7.4.0 | +| 4.0.6 | 7.4.1 | | 4.0.0 | 7.3.4 | | 3.7 | 7.3.0 | | 3.6 | 7.2.0 | diff --git a/pynetbox/__init__.py b/pynetbox/__init__.py index 00e30d8..ee38c65 100644 --- a/pynetbox/__init__.py +++ b/pynetbox/__init__.py @@ -1,4 +1,4 @@ from pynetbox.core.api import Api as api from pynetbox.core.query import AllocationError, ContentError, RequestError -__version__ = "7.4.0" +__version__ = "7.4.1" diff --git a/requirements.txt b/requirements.txt index 92e2fce..c8f5d0f 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,2 +1,3 @@ -requests>=2.20.0,<3.0 +requests>=2.32.3,<3.0 +urllib3>=2.2.3,<3 packaging