From 671644d2989fabeb4d91b65140a7e9395e05fc12 Mon Sep 17 00:00:00 2001 From: Max Base Date: Fri, 4 Apr 2025 12:43:40 +0330 Subject: [PATCH 1/8] Update README.md --- README.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 67d2fcf..aae956e 100644 --- a/README.md +++ b/README.md @@ -18,7 +18,7 @@ Change into the project directory: cd SimpleFastPyAPI ``` -Install the project dependencies: +Build Docker: ```bash docker build -t SimpleFastPyAPI . @@ -30,6 +30,18 @@ Run the application: docker run -p 8000:8000 -v $(pwd)/users.db:/app/users.db SimpleFastPyAPI ``` +Install the project dependencies: + +```bash +pip install -r requirements.txt +``` + +Run the application directly without Docker: + +```bash +uvicorn main:app --reload +``` + The application will start and be available at http://localhost:8000. ## API Endpoints From bef94906e2e41b3a1f40b2c03ca87683aa38d385 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 4 Apr 2025 09:13:45 +0000 Subject: [PATCH 2/8] Bump jinja2 from 3.1.5 to 3.1.6 Bumps [jinja2](https://github.com/pallets/jinja) from 3.1.5 to 3.1.6. - [Release notes](https://github.com/pallets/jinja/releases) - [Changelog](https://github.com/pallets/jinja/blob/main/CHANGES.rst) - [Commits](https://github.com/pallets/jinja/compare/3.1.5...3.1.6) --- updated-dependencies: - dependency-name: jinja2 dependency-version: 3.1.6 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index f2cc1e7..5b97165 100644 --- a/requirements.txt +++ b/requirements.txt @@ -14,7 +14,7 @@ httptools==0.5.0 httpx==0.23.3 idna==3.7 itsdangerous==2.1.2 -Jinja2==3.1.5 +Jinja2==3.1.6 MarkupSafe==2.1.2 orjson==3.9.15 psycopg2-binary==2.9.6 From c43f86b44393ca1b7a524344723cc430b31cabd6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 24 Apr 2025 16:33:17 +0000 Subject: [PATCH 3/8] Bump h11 from 0.14.0 to 0.16.0 Bumps [h11](https://github.com/python-hyper/h11) from 0.14.0 to 0.16.0. - [Commits](https://github.com/python-hyper/h11/compare/v0.14.0...v0.16.0) --- updated-dependencies: - dependency-name: h11 dependency-version: 0.16.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 5b97165..65af4fc 100644 --- a/requirements.txt +++ b/requirements.txt @@ -8,7 +8,7 @@ email-validator==1.3.1 fastapi==0.109.1 fastapi-utils==0.2.1 greenlet==2.0.2 -h11==0.14.0 +h11==0.16.0 httpcore==0.16.3 httptools==0.5.0 httpx==0.23.3 From 94bb5e8774e540d97fd3b81b6e0fd976e39a1bd0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 10 Jun 2025 08:24:14 +0000 Subject: [PATCH 4/8] Bump requests from 2.32.0 to 2.32.4 Bumps [requests](https://github.com/psf/requests) from 2.32.0 to 2.32.4. - [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.32.0...v2.32.4) --- updated-dependencies: - dependency-name: requests dependency-version: 2.32.4 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 65af4fc..1cb931b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -22,7 +22,7 @@ pydantic==1.10.13 python-dotenv==1.0.0 python-multipart==0.0.18 PyYAML==6.0 -requests==2.32.0 +requests==2.32.4 rfc3986==1.5.0 sniffio==1.3.0 SQLAlchemy==1.4.47 From 37bb85142565e1becb8fae345ec0a9dd3fec204a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 18 Jun 2025 22:47:03 +0000 Subject: [PATCH 5/8] Bump urllib3 from 1.26.19 to 2.5.0 Bumps [urllib3](https://github.com/urllib3/urllib3) from 1.26.19 to 2.5.0. - [Release notes](https://github.com/urllib3/urllib3/releases) - [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst) - [Commits](https://github.com/urllib3/urllib3/compare/1.26.19...2.5.0) --- updated-dependencies: - dependency-name: urllib3 dependency-version: 2.5.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 1cb931b..5d2ec90 100644 --- a/requirements.txt +++ b/requirements.txt @@ -30,7 +30,7 @@ starlette==0.35.0 typing==3.7.4.3 typing_extensions==4.8.0 ujson==5.7.0 -urllib3==1.26.19 +urllib3==2.5.0 uvicorn==0.21.1 uvloop==0.17.0 watchfiles==0.19.0 From dd529a8eba8b7c6b10fc2d95731e7c7ee81a61ab Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Jul 2025 23:37:24 +0000 Subject: [PATCH 6/8] Bump starlette from 0.35.0 to 0.47.2 Bumps [starlette](https://github.com/encode/starlette) from 0.35.0 to 0.47.2. - [Release notes](https://github.com/encode/starlette/releases) - [Changelog](https://github.com/encode/starlette/blob/master/docs/release-notes.md) - [Commits](https://github.com/encode/starlette/compare/0.35.0...0.47.2) --- updated-dependencies: - dependency-name: starlette dependency-version: 0.47.2 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 5d2ec90..d06ac4b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -26,7 +26,7 @@ requests==2.32.4 rfc3986==1.5.0 sniffio==1.3.0 SQLAlchemy==1.4.47 -starlette==0.35.0 +starlette==0.47.2 typing==3.7.4.3 typing_extensions==4.8.0 ujson==5.7.0 From 435e7d0416068faa5ad40253453103bce3c9c6be Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 28 Oct 2025 22:34:22 +0000 Subject: [PATCH 7/8] Bump starlette from 0.47.2 to 0.49.1 Bumps [starlette](https://github.com/Kludex/starlette) from 0.47.2 to 0.49.1. - [Release notes](https://github.com/Kludex/starlette/releases) - [Changelog](https://github.com/Kludex/starlette/blob/main/docs/release-notes.md) - [Commits](https://github.com/Kludex/starlette/compare/0.47.2...0.49.1) --- updated-dependencies: - dependency-name: starlette dependency-version: 0.49.1 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index d06ac4b..fd3f3f3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -26,7 +26,7 @@ requests==2.32.4 rfc3986==1.5.0 sniffio==1.3.0 SQLAlchemy==1.4.47 -starlette==0.47.2 +starlette==0.49.1 typing==3.7.4.3 typing_extensions==4.8.0 ujson==5.7.0 From 5395a88645cc51e4b6a59837dedb5351c598870d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 6 Dec 2025 04:47:30 +0000 Subject: [PATCH 8/8] Bump urllib3 from 2.5.0 to 2.6.0 Bumps [urllib3](https://github.com/urllib3/urllib3) from 2.5.0 to 2.6.0. - [Release notes](https://github.com/urllib3/urllib3/releases) - [Changelog](https://github.com/urllib3/urllib3/blob/main/CHANGES.rst) - [Commits](https://github.com/urllib3/urllib3/compare/2.5.0...2.6.0) --- updated-dependencies: - dependency-name: urllib3 dependency-version: 2.6.0 dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index fd3f3f3..db84158 100644 --- a/requirements.txt +++ b/requirements.txt @@ -30,7 +30,7 @@ starlette==0.49.1 typing==3.7.4.3 typing_extensions==4.8.0 ujson==5.7.0 -urllib3==2.5.0 +urllib3==2.6.0 uvicorn==0.21.1 uvloop==0.17.0 watchfiles==0.19.0