Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Security update for version 1.1.0 #12

Merged
merged 1 commit into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 8 additions & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,8 @@ currently being supported with security updates.

| Version | Supported |
| ------- | ------------------ |
| 1.0.x | :white_check_mark: |
| 1.1.0 | :x: |
| 1.1.1 | :white_check_mark: |
<!--| 5.0.x | :x: |
| 4.0.x | :white_check_mark: |
| < 4.0 | :x: |-->
Expand All @@ -19,3 +20,9 @@ Use this section to tell people how to report a vulnerability.
Tell them where to go, how often they can expect to get an update on a
reported vulnerability, what to expect if the vulnerability is accepted or
declined, etc.

## fastapi

Original Report

This was originally reported to FastAPI as an email to security@tiangolo.com, sent via https://huntr.com/, the original reporter is Marcello, https://github.com/byt3bl33d3r
2 changes: 1 addition & 1 deletion app/.env
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ DATABASE_URL=sqlite:///./dev-challenge.db
TEST_DATABASE_URL=sqlite:///./dev-challenge-test.db
WORKERS_PER_CORE=1 # config for uvicorn
MAX_WORKERS=1 # config for uvicorn
VERSION=1.0.0
VERSION=1.1.1
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
fastapi[all]~=0.103.2
fastapi[all]>=0.109.1
uvicorn
passlib~=1.7.4
python-jose
Expand Down
2 changes: 1 addition & 1 deletion requirements_for_dev.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
fastapi[all]~=0.103.2
fastapi[all]>=0.109.1
uvicorn
passlib~=1.7.4
python-jose
Expand Down
Loading