From c35432d89bd22d5f48052cfa723c29ca563f12c9 Mon Sep 17 00:00:00 2001 From: Alex Laird Date: Fri, 14 Aug 2020 15:09:40 -0700 Subject: [PATCH] Bumping pyngrok dependency to 4.1.10, updating security policy. --- SECURITY.md | 5 ++++- requirements.txt | 2 +- setup.py | 2 +- 3 files changed, 6 insertions(+), 3 deletions(-) diff --git a/SECURITY.md b/SECURITY.md index 605c75a..566be14 100644 --- a/SECURITY.md +++ b/SECURITY.md @@ -4,10 +4,13 @@ | Version | Supported | | ------- | ------------------ | -| 1.0.x | :white_check_mark: | +| 0.0.x | :x: | ## Reporting a Vulnerability +While this package is in pre-release alpha, it is not being supported for security concerns. You are still welcome +to raise concerns that should be shored up before a stable release is published. + If you suspect you have found a security vulnerability, send an email to [contact@alexlaird.com](mailto:contact@alexlaird.com). Please include a clear and concise description of what the vulnerability is, where it is exposed in the code, and (if known) what best practices might apply to patching it. diff --git a/requirements.txt b/requirements.txt index 85879f8..edcc2e3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ future==0.18.2 -pyngrok==4.1.9 +pyngrok==4.1.10 python-dotenv==0.14.0 flask==1.1.2 diff --git a/setup.py b/setup.py index acf4c6f..03b9b0c 100644 --- a/setup.py +++ b/setup.py @@ -16,7 +16,7 @@ python_requires=">=2.7, !=3.0.*, !=3.1.*, !=3.2.*, !=3.3.*, !=3.4.*", install_requires=[ "future", - "pyngrok", + "pyngrok>=4.1.10", "python-dotenv", "flask" ],