Changelog
*Sourced from [webargs's changelog](https://github.com/marshmallow-code/webargs/blob/dev/CHANGELOG.rst).*
> 4.3.1 (2018-12-31)
> ******************
>
> * Add ``force_all`` param to ``PyramidParser.use_args``.
> * Add warning about missing arguments to ``AsyncParser``.
>
> 4.3.0 (2018-12-30)
> ******************
>
> * *Deprecation*: Add warning about missing arguments getting added
> to parsed arguments dictionary (:issue:`342`). This behavior will be
> removed in version 5.0.0.
>
> 4.2.0 (2018-12-27)
> ******************
>
> Features:
>
> * Add ``force_all`` argument to ``use_args`` and ``use_kwargs``
> (:issue:`252`, :issue:`307`). Thanks :user:`piroux` for reporting.
> * *Deprecation*: The ``status_code`` and ``headers`` arguments to ``ValidationError``
> are deprecated. Pass ``error_status_code`` and ``error_headers`` to
> `Parser.parse`, `Parser.use_args`, and `Parser.use_kwargs` instead.
> (:issue:`327`, :issue:`336`).
> * Custom error handlers receive ``error_status_code`` and ``error_headers`` arguments.
> (:issue:`327`).
>
> .. code-block:: python
>
> # <4.2.0
> [**parser**](https://github.com/parser).error_handler
> def handle_error(error, req, schema):
> raise CustomError(error.messages)
>
>
> class MyParser(FlaskParser):
> def handle_error(self, error, req, schema):
> # ...
> raise CustomError(error.messages)
>
>
> # >=4.2.0
> [**parser**](https://github.com/parser).error_handler
> def handle_error(error, req, schema, status_code, headers):
> raise CustomError(error.messages)
>
>
> # OR
>
>
> ... (truncated)
Commits
- [`26d2a2b`](https://github.com/marshmallow-code/webargs/commit/26d2a2b678f1ee12b614900ac37f86fe92d3a929) Bump version and update changelog
- [`9594a19`](https://github.com/marshmallow-code/webargs/commit/9594a19149b3031be24679cfc8459f38c3a3fd07) Update changelog
- [`e69f3a6`](https://github.com/marshmallow-code/webargs/commit/e69f3a6031eaf2c4fa61bb84d0b8b52637dfde44) Add warning about force_all to AsyncParser
- [`996bdf5`](https://github.com/marshmallow-code/webargs/commit/996bdf5659bda2960a0c84da1d21c1a7a66bde01) Add force_all param to PyramidParser.use_args
- [`b31876d`](https://github.com/marshmallow-code/webargs/commit/b31876d1c0eafaa5685ea9865cadbde2bd0dae7e) Bump version and update changelog
- [`a2def29`](https://github.com/marshmallow-code/webargs/commit/a2def2963c659183c851360f753a50ad70ee868e) Merge pull request [#347](https://github-redirect.dependabot.com/marshmallow-code/webargs/issues/347) from marshmallow-code/deprecate-fill-missing
- [`e21cf65`](https://github.com/marshmallow-code/webargs/commit/e21cf6599031e34dc266286133e3e0b91c4369df) Merge pull request [#348](https://github-redirect.dependabot.com/marshmallow-code/webargs/issues/348) from marshmallow-code/tidelift-opencollective
- [`f3a9b75`](https://github.com/marshmallow-code/webargs/commit/f3a9b750c998aaa117952d0ace76c454c1f27d24) Add Open Collective and Tidelift links to docs and README
- [`50afc73`](https://github.com/marshmallow-code/webargs/commit/50afc73e9386fc9efd34a76d95a286dcfbcac646) Deprecate fill_missing behavior
- [`3292c6c`](https://github.com/marshmallow-code/webargs/commit/3292c6c6d6b03db23fc5732d7b16a7273ea8801b) Add docs badge
- Additional commits viewable in [compare view](https://github.com/marshmallow-code/webargs/compare/4.1.2...4.3.1)
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
If all status checks pass Dependabot will automatically merge this pull request.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
- `@dependabot rebase` will rebase this PR
- `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it
- `@dependabot merge` will merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
- `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language
- `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language
- `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language
- `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language
- `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme
Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com):
- Update frequency (including time of day and day of week)
- Automerge options (never/patch/minor, and dev/runtime dependencies)
- Pull request limits (per update run and/or open at any time)
- Out-of-range updates (receive only lockfile updates, if desired)
- Security updates (receive only security updates, if desired)
Finally, you can contact us by mentioning @dependabot.
Bumps webargs from 4.1.2 to 4.3.1.
Changelog
*Sourced from [webargs's changelog](https://github.com/marshmallow-code/webargs/blob/dev/CHANGELOG.rst).* > 4.3.1 (2018-12-31) > ****************** > > * Add ``force_all`` param to ``PyramidParser.use_args``. > * Add warning about missing arguments to ``AsyncParser``. > > 4.3.0 (2018-12-30) > ****************** > > * *Deprecation*: Add warning about missing arguments getting added > to parsed arguments dictionary (:issue:`342`). This behavior will be > removed in version 5.0.0. > > 4.2.0 (2018-12-27) > ****************** > > Features: > > * Add ``force_all`` argument to ``use_args`` and ``use_kwargs`` > (:issue:`252`, :issue:`307`). Thanks :user:`piroux` for reporting. > * *Deprecation*: The ``status_code`` and ``headers`` arguments to ``ValidationError`` > are deprecated. Pass ``error_status_code`` and ``error_headers`` to > `Parser.parse`, `Parser.use_args`, and `Parser.use_kwargs` instead. > (:issue:`327`, :issue:`336`). > * Custom error handlers receive ``error_status_code`` and ``error_headers`` arguments. > (:issue:`327`). > > .. code-block:: python > > # <4.2.0 > [**parser**](https://github.com/parser).error_handler > def handle_error(error, req, schema): > raise CustomError(error.messages) > > > class MyParser(FlaskParser): > def handle_error(self, error, req, schema): > # ... > raise CustomError(error.messages) > > > # >=4.2.0 > [**parser**](https://github.com/parser).error_handler > def handle_error(error, req, schema, status_code, headers): > raise CustomError(error.messages) > > > # OR > > > ... (truncated)Commits
- [`26d2a2b`](https://github.com/marshmallow-code/webargs/commit/26d2a2b678f1ee12b614900ac37f86fe92d3a929) Bump version and update changelog - [`9594a19`](https://github.com/marshmallow-code/webargs/commit/9594a19149b3031be24679cfc8459f38c3a3fd07) Update changelog - [`e69f3a6`](https://github.com/marshmallow-code/webargs/commit/e69f3a6031eaf2c4fa61bb84d0b8b52637dfde44) Add warning about force_all to AsyncParser - [`996bdf5`](https://github.com/marshmallow-code/webargs/commit/996bdf5659bda2960a0c84da1d21c1a7a66bde01) Add force_all param to PyramidParser.use_args - [`b31876d`](https://github.com/marshmallow-code/webargs/commit/b31876d1c0eafaa5685ea9865cadbde2bd0dae7e) Bump version and update changelog - [`a2def29`](https://github.com/marshmallow-code/webargs/commit/a2def2963c659183c851360f753a50ad70ee868e) Merge pull request [#347](https://github-redirect.dependabot.com/marshmallow-code/webargs/issues/347) from marshmallow-code/deprecate-fill-missing - [`e21cf65`](https://github.com/marshmallow-code/webargs/commit/e21cf6599031e34dc266286133e3e0b91c4369df) Merge pull request [#348](https://github-redirect.dependabot.com/marshmallow-code/webargs/issues/348) from marshmallow-code/tidelift-opencollective - [`f3a9b75`](https://github.com/marshmallow-code/webargs/commit/f3a9b750c998aaa117952d0ace76c454c1f27d24) Add Open Collective and Tidelift links to docs and README - [`50afc73`](https://github.com/marshmallow-code/webargs/commit/50afc73e9386fc9efd34a76d95a286dcfbcac646) Deprecate fill_missing behavior - [`3292c6c`](https://github.com/marshmallow-code/webargs/commit/3292c6c6d6b03db23fc5732d7b16a7273ea8801b) Add docs badge - Additional commits viewable in [compare view](https://github.com/marshmallow-code/webargs/compare/4.1.2...4.3.1)Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting
@dependabot rebase
.If all status checks pass Dependabot will automatically merge this pull request.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot ignore this [patch|minor|major] version` will close this PR and stop Dependabot creating any more for this minor/major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) - `@dependabot use these labels` will set the current labels as the default for future PRs for this repo and language - `@dependabot use these reviewers` will set the current reviewers as the default for future PRs for this repo and language - `@dependabot use these assignees` will set the current assignees as the default for future PRs for this repo and language - `@dependabot use this milestone` will set the current milestone as the default for future PRs for this repo and language - `@dependabot badge me` will comment on this PR with code to add a "Dependabot enabled" badge to your readme Additionally, you can set the following in your Dependabot [dashboard](https://app.dependabot.com): - Update frequency (including time of day and day of week) - Automerge options (never/patch/minor, and dev/runtime dependencies) - Pull request limits (per update run and/or open at any time) - Out-of-range updates (receive only lockfile updates, if desired) - Security updates (receive only security updates, if desired) Finally, you can contact us by mentioning @dependabot.