-
Notifications
You must be signed in to change notification settings - Fork 13.9k
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
chore: bump celery and Flask #19168
Merged
Merged
chore: bump celery and Flask #19168
Changes from 6 commits
Commits
Show all changes
21 commits
Select commit
Hold shift + click to select a range
417c738
chore: bump celery, Flask, flask-jwt-extended, pyJWT
dpgaspar 59f78af
fix pyJWT breaking change
dpgaspar a5dc103
fix pyJWT breaking change 2
dpgaspar 59036e0
test
dpgaspar 57183e2
fixed test
dpgaspar a6c6aa9
fixed test
dpgaspar 95194ac
fixed test
dpgaspar 7a1459c
revert since mypy won't pick the correct signature
dpgaspar d63e737
lint 1
dpgaspar 445cc5c
fix test
dpgaspar a2a46ef
fix test
dpgaspar 6d02e88
docs and celery config migration
dpgaspar 1288403
bump FAB to 4.0.0rc3, remove AUTH_STRICT_RESPONSE_CODES
dpgaspar 1fd4040
update docs for new celery config keys
dpgaspar bac916f
downgrade celery to 5.2.2
dpgaspar d8cbcf2
Merge branch 'master' into chore/celery-5
dpgaspar 5babab1
Merge branch 'master' into chore/celery-5
dpgaspar b9807ca
ref FAB to final 4.0.0 release
dpgaspar 28c6f4c
Merge branch 'master' into chore/celery-5
dpgaspar 181eb41
Merge branch 'master' into chore/celery-5
dpgaspar add9a2b
remove conflict left over
dpgaspar File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,4 +18,4 @@ pip-compile-multi!=1.5.9 | |
pre-commit | ||
tox | ||
py>=1.10.0 | ||
click==7.1.2 | ||
click |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -752,12 +752,11 @@ def export(self, **kwargs: Any) -> Response: | |
except DashboardNotFoundError: | ||
return self.response_404() | ||
buf.seek(0) | ||
|
||
response = send_file( | ||
buf, | ||
mimetype="application/zip", | ||
as_attachment=True, | ||
attachment_filename=filename, | ||
download_name=filename, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. https://flask.palletsprojects.com/en/2.0.x/api/#flask.send_file |
||
) | ||
if token: | ||
response.set_cookie(token, "done", max_age=600) | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Per the changelog the only breaking change which may impact us is pallets/flask#3555.