Misc. Issue fixes (#93)

* Bump pillow from 9.4.0 to 9.5.0

Bumps [pillow](https://github.com/python-pillow/Pillow) from 9.4.0 to 9.5.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.4.0...9.5.0)

---
updated-dependencies:
- dependency-name: pillow
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Update deploy workflow

* Fix NSFW video embeds

* Fix small embed sizes

* Update gitignore

* Fix/workarounds for failing tests

* Revert "Add info message for #74"

This reverts commit 39490a49b98ba6e56a109958dab4cb953ede4fe8.

* Fixed tweet not found error

* Fix tweet not found test

* Bump boto3 from 1.26.104 to 1.26.127

Bumps [boto3](https://github.com/boto/boto3) from 1.26.104 to 1.26.127.
- [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.104...1.26.127)

---
updated-dependencies:
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump simple-git from 3.7.1 to 3.18.0

Bumps [simple-git](https://github.com/steveukx/git-js/tree/HEAD/simple-git) from 3.7.1 to 3.18.0.
- [Release notes](https://github.com/steveukx/git-js/releases)
- [Changelog](https://github.com/steveukx/git-js/blob/main/simple-git/CHANGELOG.md)
- [Commits](https://github.com/steveukx/git-js/commits/simple-git@3.18.0/simple-git)

---
updated-dependencies:
- dependency-name: simple-git
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>

* Bump requests from 2.28.2 to 2.30.0

Bumps [requests](https://github.com/psf/requests) from 2.28.2 to 2.30.0.
- [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.28.2...v2.30.0)

---
updated-dependencies:
- dependency-name: requests
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix text trimming w/ old limits

* Revert "Fix text trimming w/ old limits"

This reverts commit 9d9c32b79728aece09fd1fa44625f23ee2b8cb92.

* Fix text trimming with images and text posts

* Bump boto3 from 1.26.127 to 1.26.129 (#90)

Bumps [boto3](https://github.com/boto/boto3) from 1.26.127 to 1.26.129.
- [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.127...1.26.129)

---
updated-dependencies:
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

* Increased timeout to 15

* Fixed QRTs sometimes failing to embed

* Bump boto3 from 1.26.129 to 1.26.133 (#92)

Bumps [boto3](https://github.com/boto/boto3) from 1.26.129 to 1.26.133.
- [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.129...1.26.133)

---
updated-dependencies:
- dependency-name: boto3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
This commit is contained in:
Dylan 2023-05-16 15:45:26 +01:00 committed by GitHub
parent a710867f3b
commit 1986b52ea6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -23,7 +23,7 @@ def genPollDisplay(poll):
def formatEmbedDesc(type,body,qrt,pollDisplay,likesDisplay):
# Trim the embed description to 248 characters, prioritizing poll and likes
limit = videoDescLimit if type=="" or type=="Video" else tweetDescLimit
limit = videoDescLimit if type=="" or type=="Video" or (qrt!=None and (qrt["type"]=="" or qrt["type"]=="Video")) else tweetDescLimit
output = ""
if pollDisplay==None:

View File

@ -1,5 +1,5 @@
pymongo==4.3.3
boto3==1.26.127
boto3==1.26.133
requests==2.30.0
Pillow==9.5.0
Flask==2.2.3

View File

@ -47,7 +47,7 @@ functions:
vxTwitterApp:
handler: wsgi_handler.handler
url: true
timeout: 5
timeout: 15
memorySize: 150
layers:
- Ref: PythonRequirementsLambdaLayer