From cecb1f4ab9afa85661ff6b182b95b25339acc1a0 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 3 Jul 2023 01:41:33 +0000 Subject: [PATCH 1/7] Bump flask-cors from 3.0.10 to 4.0.0 Bumps [flask-cors](https://github.com/corydolphin/flask-cors) from 3.0.10 to 4.0.0. - [Release notes](https://github.com/corydolphin/flask-cors/releases) - [Changelog](https://github.com/corydolphin/flask-cors/blob/main/CHANGELOG.md) - [Commits](https://github.com/corydolphin/flask-cors/compare/3.0.10...v4.0.0) --- updated-dependencies: - dependency-name: flask-cors dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 0e00753..cb98ffe 100644 --- a/requirements.txt +++ b/requirements.txt @@ -3,6 +3,6 @@ boto3==1.26.155 requests==2.31.0 Pillow==9.5.0 Flask==2.2.3 -Flask-Cors==3.0.10 +Flask-Cors==4.0.0 yt-dlp==2022.7.18 twitter==1.19.6 \ No newline at end of file From 2632583036b4f31fc529da28b2a9e9bd54248718 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Jul 2023 18:19:01 +0000 Subject: [PATCH 2/7] Bump pillow from 9.5.0 to 10.0.0 Bumps [pillow](https://github.com/python-pillow/Pillow) from 9.5.0 to 10.0.0. - [Release notes](https://github.com/python-pillow/Pillow/releases) - [Changelog](https://github.com/python-pillow/Pillow/blob/main/CHANGES.rst) - [Commits](https://github.com/python-pillow/Pillow/compare/9.5.0...10.0.0) --- updated-dependencies: - dependency-name: pillow dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index cb98ffe..0c903d9 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ pymongo==4.3.3 boto3==1.26.155 requests==2.31.0 -Pillow==9.5.0 +Pillow==10.0.0 Flask==2.2.3 Flask-Cors==4.0.0 yt-dlp==2022.7.18 From 3754c2ec68914fc47583db8c84c24ba5ab3c7b6a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Jul 2023 18:19:06 +0000 Subject: [PATCH 3/7] Bump boto3 from 1.26.155 to 1.27.0 Bumps [boto3](https://github.com/boto/boto3) from 1.26.155 to 1.27.0. - [Release notes](https://github.com/boto/boto3/releases) - [Changelog](https://github.com/boto/boto3/blob/develop/CHANGELOG.rst) - [Commits](https://github.com/boto/boto3/compare/1.26.155...1.27.0) --- updated-dependencies: - dependency-name: boto3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index cb98ffe..b3e1918 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ pymongo==4.3.3 -boto3==1.26.155 +boto3==1.27.0 requests==2.31.0 Pillow==9.5.0 Flask==2.2.3 From fd0d9ed409f4fa2c9ffd2eb78167358775f5d68b Mon Sep 17 00:00:00 2001 From: Dylan Date: Wed, 5 Jul 2023 19:24:58 +0100 Subject: [PATCH 4/7] Fix 500 on tweet not found --- twitfix.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/twitfix.py b/twitfix.py index 4b95766..d85ac39 100644 --- a/twitfix.py +++ b/twitfix.py @@ -228,7 +228,7 @@ def vnfFromCacheOrDL(video_link): elif 'suspended' in exErr.msg: exErr.msg=msgs.tweetSuspended else: - exErr.msg=None + exErr.msg=msgs.tweetNotFound log.error("VNF Get failed: " + video_link + " " + str(exErr)) return None,exErr.msg except TwitterHTTPError as twErr: From 564238d04f80b5e632cd2feca0d761e8d1a456fa Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 5 Jul 2023 18:44:27 +0000 Subject: [PATCH 5/7] Bump pymongo from 4.3.3 to 4.4.0 Bumps [pymongo](https://github.com/mongodb/mongo-python-driver) from 4.3.3 to 4.4.0. - [Release notes](https://github.com/mongodb/mongo-python-driver/releases) - [Changelog](https://github.com/mongodb/mongo-python-driver/blob/master/doc/changelog.rst) - [Commits](https://github.com/mongodb/mongo-python-driver/compare/4.3.3...4.4.0) --- updated-dependencies: - dependency-name: pymongo dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 4a6b09a..b1ed720 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -pymongo==4.3.3 +pymongo==4.4.0 boto3==1.27.0 requests==2.31.0 Pillow==10.0.0 From 736e2690cc5c3c2fb1317e82140f805a5f4fb686 Mon Sep 17 00:00:00 2001 From: Dylan Date: Wed, 5 Jul 2023 19:46:52 +0100 Subject: [PATCH 6/7] Remove Python 3.7 Support --- .github/workflows/python-tests.yml | 2 +- readme.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/python-tests.yml b/.github/workflows/python-tests.yml index cabb65f..abe3a8d 100644 --- a/.github/workflows/python-tests.yml +++ b/.github/workflows/python-tests.yml @@ -8,7 +8,7 @@ jobs: environment: test strategy: matrix: - python-version: ["3.7", "3.8", "3.9", "3.10"] + python-version: ["3.8", "3.9", "3.10"] steps: - uses: actions/checkout@v3 diff --git a/readme.md b/readme.md index b989def..3b33b08 100644 --- a/readme.md +++ b/readme.md @@ -32,7 +32,7 @@ Edit config.json to fit your setup First, get everything updated by running `sudo apt-get update` -Verify Python is installed by running `python3 --version` or `python --version`. Versions 3.7, 3.8, 3.9, and 3.10 are supported (This includes versions like 3.10.7) +Verify Python is installed by running `python3 --version` or `python --version`. Versions 3.8, 3.9, and 3.10 are supported (This includes versions like 3.10.7) Run the following command: `git clone https://github.com/dylanpdx/BetterTwitFix` This will download all the code for vxTwitter. Once that is done, you can run `cd BetterTwitFix` to enter the newly downloaded folder. From a9418c8823fdb54244812d59293e32443101ebd8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Jul 2023 01:49:19 +0000 Subject: [PATCH 7/7] Bump boto3 from 1.27.0 to 1.28.1 Bumps [boto3](https://github.com/boto/boto3) from 1.27.0 to 1.28.1. - [Release notes](https://github.com/boto/boto3/releases) - [Changelog](https://github.com/boto/boto3/blob/develop/CHANGELOG.rst) - [Commits](https://github.com/boto/boto3/compare/1.27.0...1.28.1) --- updated-dependencies: - dependency-name: boto3 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index b1ed720..42198a5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ pymongo==4.4.0 -boto3==1.27.0 +boto3==1.28.1 requests==2.31.0 Pillow==10.0.0 Flask==2.2.3