-
Notifications
You must be signed in to change notification settings - Fork 1.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: Release v1.13.0 #6853
chore: Release v1.13.0 #6853
Conversation
chore: Release v1.12.0
…6817) Updates the requirements on [pycryptodome](https://github.com/Legrandin/pycryptodome) to permit the latest version. - [Release notes](https://github.com/Legrandin/pycryptodome/releases) - [Changelog](https://github.com/Legrandin/pycryptodome/blob/master/Changelog.rst) - [Commits](Legrandin/pycryptodome@v3.9.4...v3.9.6) Signed-off-by: dependabot-preview[bot] <[email protected]>
Updates the requirements on [sentry-sdk[flask]](https://github.com/getsentry/sentry-python) to permit the latest version. - [Release notes](https://github.com/getsentry/sentry-python/releases) - [Changelog](https://github.com/getsentry/sentry-python/blob/master/CHANGES.md) - [Commits](getsentry/sentry-python@0.13.0...0.14.1) Signed-off-by: dependabot-preview[bot] <[email protected]>
Since we are directly depending on werkzeug, it should be tracked in requirements file so that transitive upgrade does not break the project
Updates the requirements on [python-dotenv](https://github.com/theskumar/python-dotenv) to permit the latest version. - [Release notes](https://github.com/theskumar/python-dotenv/releases) - [Changelog](https://github.com/theskumar/python-dotenv/blob/master/CHANGELOG.md) - [Commits](theskumar/python-dotenv@v0.10.5...v0.11.0) Signed-off-by: dependabot-preview[bot] <[email protected]>
Updates the requirements on [humanize](https://github.com/jmoiron/humanize) to permit the latest version. - [Release notes](https://github.com/jmoiron/humanize/releases) - [Commits](jmoiron/humanize@0.5.1...1.0.0) Signed-off-by: dependabot-preview[bot] <[email protected]>
Updates the requirements on [flask-login](https://github.com/maxcountryman/flask-login) to permit the latest version. - [Release notes](https://github.com/maxcountryman/flask-login/releases) - [Changelog](https://github.com/maxcountryman/flask-login/blob/master/CHANGES) - [Commits](maxcountryman/flask-login@0.4.0...0.5.0) Signed-off-by: dependabot-preview[bot] <[email protected]>
Updates the requirements on [werkzeug](https://github.com/pallets/werkzeug) to permit the latest version. - [Release notes](https://github.com/pallets/werkzeug/releases) - [Changelog](https://github.com/pallets/werkzeug/blob/master/CHANGES.rst) - [Commits](pallets/werkzeug@0.16.1...1.0.0) Signed-off-by: dependabot-preview[bot] <[email protected]>
Updates the requirements on [pre-commit](https://github.com/pre-commit/pre-commit) to permit the latest version. - [Release notes](https://github.com/pre-commit/pre-commit/releases) - [Changelog](https://github.com/pre-commit/pre-commit/blob/master/CHANGELOG.md) - [Commits](pre-commit/pre-commit@v2.0.1...v2.1.0) Signed-off-by: dependabot-preview[bot] <[email protected]>
….23 (#6852) Updates the requirements on [requests[security]](https://github.com/psf/requests) to permit the latest version. - [Release notes](https://github.com/psf/requests/releases) - [Changelog](https://github.com/psf/requests/blob/master/HISTORY.md) - [Commits](psf/requests@v2.22.0...v2.23.0) Signed-off-by: dependabot-preview[bot] <[email protected]>
with self.app.test_request_context(): | ||
TicketFeesFactory(service_fee=10.23, maximum_fee=11) | ||
|
||
test_event = EventFactoryBasic(state='published') |
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.
Black would make changes.
@@ -33,7 +33,9 @@ def match_discount_quantity(discount_code, tickets=None, ticket_holders=None): | |||
qty = 0 | |||
ticket_ids = [ticket.id for ticket in discount_code.tickets] | |||
old_holders = get_count( | |||
TicketHolder.query.filter(TicketHolder.ticket_id.in_(ticket_ids)) | |||
TicketHolder.query.filter( | |||
TicketHolder.ticket_id.in_(ticket_ids) # pytype: disable=attribute-error |
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.
Black would make changes.
+ u"<br/> <a href='{pdf_url}'>Click here</a> to view/download your ticket." | ||
+ u"<br/> Your tickets & invoice have been enclosed." | ||
u"<br><br>You can also download your tickets in <b>My Tickets</b> section." | ||
u"<br/>Login to manage the orders at <a href='{mytickets_url}' target='_blank'>{mytickets_url}</a> </em>" |
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.
line too long (117 > 90 characters)
Issues
======
+ Solved 4
- Added 1
Complexity increasing per file
==============================
- app/api/helpers/utilities.py 1
- app/api/helpers/permission_manager.py 1
Complexity decreasing per file
==============================
+ app/models/helpers/versioning.py -23
+ app/settings/__init__.py -6
See the complete overview on Codacy |
@@ -384,7 +385,7 @@ def import_event_json(task_handle, zip_path, creator_id): | |||
except IOError: | |||
db.session.delete(new_event) | |||
db.session.commit() | |||
raise NotFoundError('File %s missing in event zip' % item[0]) | |||
raise NotFoundError('file', 'File %s missing in event zip' % item[0]) |
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.
Codecov Report
@@ Coverage Diff @@
## master #6853 +/- ##
=========================================
+ Coverage 65.5% 66.21% +0.7%
=========================================
Files 306 307 +1
Lines 15346 15298 -48
=========================================
+ Hits 10052 10129 +77
+ Misses 5294 5169 -125
Continue to review full report at Codecov.
|
@@ -1,6 +1,6 @@ | |||
from flask import Blueprint, jsonify | |||
|
|||
SERVER_VERSION = '1.12.0' | |||
SERVER_VERSION = '1.13.0' |
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.
Black would make changes.
No description provided.