-
Notifications
You must be signed in to change notification settings - Fork 1.9k
chore: Release v1.4.0 #6257
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.4.0 #6257
Conversation
* Restrict unverified user from making free orders. * Check ticket-type rather than payment-mode * No need to revert the old PR * Check if order contains all free tickets. * Required changes
Refactored code to reduce nesting
* add the resend email route * resend emails using ticket route * handle errors with UnprocessableEntry * modify order to user key
Updates the requirements on [sqlalchemy-utils](https://github.com/kvesteri/sqlalchemy-utils) to permit the latest version. - [Release notes](https://github.com/kvesteri/sqlalchemy-utils/releases) - [Changelog](https://github.com/kvesteri/sqlalchemy-utils/blob/master/CHANGES.rst) - [Commits](kvesteri/sqlalchemy-utils@0.34.0...0.34.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
This reverts commit a258111.
* handle padding error * catch specific base64 error
…6217) Updates the requirements on [apscheduler](https://github.com/agronholm/apscheduler) to permit the latest version. - [Release notes](https://github.com/agronholm/apscheduler/releases) - [Changelog](https://github.com/agronholm/apscheduler/blob/master/docs/versionhistory.rst) - [Commits](agronholm/apscheduler@v3.6.0...v3.6.1) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
__sudo: required__ no longer is. The __sudo__ command is now always available in Travis CI and there is no way to turn it off.
> if data['state'] is not 'draft' or not 'pending':
The second half of this if statement is __always__ False because __python -c "print(not 'pending')"__ # --> False
The correct ways to write this line are:
```python
if data['state'] != 'draft' or data['state'] != 'pending':
# or better yet...
if data['state'] not in ('draft', 'pending'):
```
Shifted test to unit dir Added tabs
Updates the requirements on [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) to permit the latest version. - [Release notes](https://github.com/sqlalchemy/sqlalchemy/releases) - [Changelog](https://github.com/sqlalchemy/sqlalchemy/blob/master/CHANGES) - [Commits](https://github.com/sqlalchemy/sqlalchemy/commits) Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
changed the tag from `Yes` to `-` closes #6185
fixes hound issue adds an event field to the function
Correct usage of func Add missing SMTP parameter
| self.assertFalse(represents_int('test')) | ||
|
|
||
|
|
||
| def test_string_empty(self): |
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.
too many blank lines (2)
| EventSubTopicRelationshipRequired, EventSubTopicRelationshipOptional | ||
| from app.api.event_topics import EventTopicList, EventTopicDetail, EventTopicRelationship | ||
| from app.api.event_types import EventTypeList, EventTypeDetail, EventTypeRelationship | ||
| from app.api.events import EventList, EventDetail, EventRelationship, EventCopyResource |
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.
'app.api.events.EventCopyResource' imported but unused
Codecov Report
@@ Coverage Diff @@
## master #6257 +/- ##
==========================================
- Coverage 66.13% 65.84% -0.29%
==========================================
Files 288 286 -2
Lines 14479 14501 +22
==========================================
- Hits 9575 9548 -27
- Misses 4904 4953 +49
Continue to review full report at Codecov.
|
No description provided.