From 2afc82cf01466e79f602fae79ada5e5134ec4903 Mon Sep 17 00:00:00 2001 From: Kostiantyn Kuleshov Date: Fri, 21 Apr 2023 10:03:10 +0300 Subject: [PATCH 01/10] Add '.re' --- .re | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .re diff --git a/.re b/.re new file mode 100644 index 0000000..c416352 --- /dev/null +++ b/.re @@ -0,0 +1,20 @@ +{ + "$schema": "https://docs.renovatebot.com/renovate-schema.json", + "extends": [ + "config:base" + ], + "baseBranches": [ + "dev" + ], + "packageRules": [ + { + "matchUpdateTypes": [ + "minor", + "patch", + "pin", + "digest" + ], + "automerge": true + } + ] +} \ No newline at end of file -- 2.39.2 From 6feed4359a345d571a4f54c88ff7477a6f4593a0 Mon Sep 17 00:00:00 2001 From: Kostiantyn Kuleshov Date: Fri, 21 Apr 2023 10:03:26 +0300 Subject: [PATCH 02/10] Update '.renovaterc' --- .re => .renovaterc | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename .re => .renovaterc (100%) diff --git a/.re b/.renovaterc similarity index 100% rename from .re rename to .renovaterc -- 2.39.2 From 4ce42645805da9679b2097300da89310f4cdecd1 Mon Sep 17 00:00:00 2001 From: Renovate Date: Fri, 21 Apr 2023 10:11:31 +0300 Subject: [PATCH 03/10] Update dependency fastapi to v0.95.1 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index fd6ebe6..10737ea 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -fastapi[all]==0.95.0 +fastapi[all]==0.95.1 pymongo==4.3.3 ujson~=5.7.0 scipy~=1.10.1 -- 2.39.2 From 4060aae0385a278287707a1e0ae03ce77f50fd86 Mon Sep 17 00:00:00 2001 From: Renovate Date: Tue, 16 May 2023 16:48:51 +0300 Subject: [PATCH 04/10] Update dependency fastapi to v0.95.2 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 10737ea..0240af3 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -fastapi[all]==0.95.1 +fastapi[all]==0.95.2 pymongo==4.3.3 ujson~=5.7.0 scipy~=1.10.1 -- 2.39.2 From 4d24696d3dccd28759a7e2e0ddffe27206c1a4ba Mon Sep 17 00:00:00 2001 From: Renovate Date: Sat, 3 Jun 2023 17:45:29 +0300 Subject: [PATCH 05/10] Update dependency fastapi to v0.96.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 0240af3..871e281 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -fastapi[all]==0.95.2 +fastapi[all]==0.96.0 pymongo==4.3.3 ujson~=5.7.0 scipy~=1.10.1 -- 2.39.2 From f512df408f542e5e347926a7b23d2bb58926e026 Mon Sep 17 00:00:00 2001 From: Renovate Date: Sun, 11 Jun 2023 01:55:54 +0300 Subject: [PATCH 06/10] Update dependency fastapi to v0.96.1 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 871e281..9aeb921 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -fastapi[all]==0.96.0 +fastapi[all]==0.96.1 pymongo==4.3.3 ujson~=5.7.0 scipy~=1.10.1 -- 2.39.2 From 1e6afc6b0c0d9fc54290eab77443324306823491 Mon Sep 17 00:00:00 2001 From: Renovate Date: Sun, 11 Jun 2023 12:18:53 +0300 Subject: [PATCH 07/10] Update dependency ujson to ~=5.8.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 9aeb921..308fee7 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ fastapi[all]==0.96.1 pymongo==4.3.3 -ujson~=5.7.0 +ujson~=5.8.0 scipy~=1.10.1 python-magic~=0.4.27 opencv-python~=4.7.0.72 -- 2.39.2 From 36169b0e7708f3d5509341b8ac721d6263c45d8c Mon Sep 17 00:00:00 2001 From: Kostiantyn Kuleshov Date: Sun, 11 Jun 2023 12:28:32 +0300 Subject: [PATCH 08/10] Python min version is now 3.8 Due to a bump of ujson to 5.8.0, version of Python supported is risen to 3.8 --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d0e5f1a..e8c785d 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Small and simple API server for saving photos and videos. ## Dependencies -* [Python 3.7+](https://www.python.org) (3.9+ recommended) +* [Python 3.8+](https://www.python.org) (3.9+ recommended) * [MongoDB](https://www.mongodb.com) * [exiftool](https://exiftool.org) * [jpegoptim](https://github.com/tjko/jpegoptim) -- 2.39.2 From e1e42fdb6067833cc31a5690b610833cc5308e55 Mon Sep 17 00:00:00 2001 From: Renovate Date: Wed, 14 Jun 2023 11:41:39 +0300 Subject: [PATCH 09/10] Update dependency fastapi to v0.97.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 308fee7..6a3f166 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -fastapi[all]==0.96.1 +fastapi[all]==0.97.0 pymongo==4.3.3 ujson~=5.8.0 scipy~=1.10.1 -- 2.39.2 From d085a0e6394d83bcaf75810a0e423f0d8f548cd2 Mon Sep 17 00:00:00 2001 From: Renovate Date: Wed, 21 Jun 2023 20:58:06 +0300 Subject: [PATCH 10/10] Update dependency pymongo to v4.4.0 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 6a3f166..8019647 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ fastapi[all]==0.97.0 -pymongo==4.3.3 +pymongo==4.4.0 ujson~=5.8.0 scipy~=1.10.1 python-magic~=0.4.27 -- 2.39.2