Skip to content

Commit

Permalink
Pin webargs version to < 5.0
Browse files Browse the repository at this point in the history
webargs 5.0.0 makes a behavior change to its @use_args / @use_kwargs
decorators that makes it so that optional/missing arguments are no
longer filled: marshmallow-code/webargs#342

This breaks how I'm currently doing some views with missing arguments
(such as views.topic.get_group_topics), so to be able to upgrade to 5.0
we will need to either update the views or the schemas.
  • Loading branch information
Deimos committed Jan 8, 2019
1 parent e89b075 commit 664c6f6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tildes/requirements-to-freeze.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ SQLAlchemy-Utils
stripe
testing.redis
titlecase
webargs
webargs<5.0 # 5.0.0 breaks many views, will require significant updates
webtest
wrapt
zope.sqlalchemy

0 comments on commit 664c6f6

Please sign in to comment.