Changelog
*Sourced from [marshmallow's changelog](https://github.com/marshmallow-code/marshmallow/blob/dev/CHANGELOG.rst).*
> 2.19.1 (2019-03-16)
> ===================
>
> Bug fixes:
>
> - Fix bug where `Nested(many=True)` would skip first element when serializing a generator (1163). Thanks khvn26 for the catch and patch.
>
> 2.19.0 (2019-03-07)
> ===================
>
> Deprecation/Removal:
>
> - A RemovedInMarshmallow3 warning is raised when using fields.FormattedString. Use fields.Method or fields.Function instead (1141).
>
> 2.18.1 (2019-02-15)
> ===================
>
> Bug fixes:
>
> - A `ChangedInMarshmallow3Warning` is no longer raised when `strict=False` (1108). Thanks Aegdesil for reporting.
>
> 2.18.0 (2019-01-13)
> ===================
>
> Features:
>
> - Add warnings for functions in `marshmallow.utils` that are removed in marshmallow 3.
>
> Bug fixes:
>
> - Copying `missing` with `copy.copy` or `copy.deepcopy` will not duplicate it (1099).
>
> 2.17.0 (2018-12-26)
> ===================
>
> Features:
>
> - Add `marshmallow.__version_info__` (1074).
> - Add warnings for API that is deprecated or changed to help users prepare for marshmallow 3 (1075).
Commits
- [`0aea8b4`](https://github.com/marshmallow-code/marshmallow/commit/0aea8b4258d93233efbfbad08dd319027f3f568d) Bump version and update changelog
- [`97db0e1`](https://github.com/marshmallow-code/marshmallow/commit/97db0e10ebf4242cb3fa545967fb5af64402f899) Merge pull request [#1164](https://github-redirect.dependabot.com/marshmallow-code/marshmallow/issues/1164) from khvn26/fix-nested-many-generator-dump
- [`1d6049e`](https://github.com/marshmallow-code/marshmallow/commit/1d6049e62cef88059cc9f94bbca92e5265e6fbac) Remove dead code and document the argument type
- [`efe2ce4`](https://github.com/marshmallow-code/marshmallow/commit/efe2ce4e45b56c7197e0ae21798642db64d7cee3) Bump version and update changelog
- [`e15a141`](https://github.com/marshmallow-code/marshmallow/commit/e15a14122f825d7d8945464b048fe5c37c8585c5) Fix donate link
- [`761a651`](https://github.com/marshmallow-code/marshmallow/commit/761a651795646c07004bd879f80d95341fd5332a) Fix a Nested(many=True).dump swallowing a first element from a generator
- [`1e26d14`](https://github.com/marshmallow-code/marshmallow/commit/1e26d14facab213df5009300b997481aa43df80a) Address pytest an flake8 issues
- [`af4f65e`](https://github.com/marshmallow-code/marshmallow/commit/af4f65e7722e60dd7686172ee51044b0cf72ae9b) Raise a warning for FormattedString
- [`b1f3201`](https://github.com/marshmallow-code/marshmallow/commit/b1f3201457117ddd86f47ca2b294bc04cf6fbe67) Bump version and update changelog
- [`8869788`](https://github.com/marshmallow-code/marshmallow/commit/88697881d65e9dc1ac31fbdbca13e3a40c1bb7c2) Merge pull request [#1136](https://github-redirect.dependabot.com/marshmallow-code/marshmallow/issues/1136) from marshmallow-code/2.x-warnings
- Additional commits viewable in [compare view](https://github.com/marshmallow-code/marshmallow/compare/2.16.3...2.19.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.
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 squash and merge` will squash and merge this PR after your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge and block automerging
- `@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 marshmallow from 2.16.3 to 2.19.1.
Changelog
*Sourced from [marshmallow's changelog](https://github.com/marshmallow-code/marshmallow/blob/dev/CHANGELOG.rst).* > 2.19.1 (2019-03-16) > =================== > > Bug fixes: > > - Fix bug where `Nested(many=True)` would skip first element when serializing a generator (1163). Thanks khvn26 for the catch and patch. > > 2.19.0 (2019-03-07) > =================== > > Deprecation/Removal: > > - A RemovedInMarshmallow3 warning is raised when using fields.FormattedString. Use fields.Method or fields.Function instead (1141). > > 2.18.1 (2019-02-15) > =================== > > Bug fixes: > > - A `ChangedInMarshmallow3Warning` is no longer raised when `strict=False` (1108). Thanks Aegdesil for reporting. > > 2.18.0 (2019-01-13) > =================== > > Features: > > - Add warnings for functions in `marshmallow.utils` that are removed in marshmallow 3. > > Bug fixes: > > - Copying `missing` with `copy.copy` or `copy.deepcopy` will not duplicate it (1099). > > 2.17.0 (2018-12-26) > =================== > > Features: > > - Add `marshmallow.__version_info__` (1074). > - Add warnings for API that is deprecated or changed to help users prepare for marshmallow 3 (1075).Commits
- [`0aea8b4`](https://github.com/marshmallow-code/marshmallow/commit/0aea8b4258d93233efbfbad08dd319027f3f568d) Bump version and update changelog - [`97db0e1`](https://github.com/marshmallow-code/marshmallow/commit/97db0e10ebf4242cb3fa545967fb5af64402f899) Merge pull request [#1164](https://github-redirect.dependabot.com/marshmallow-code/marshmallow/issues/1164) from khvn26/fix-nested-many-generator-dump - [`1d6049e`](https://github.com/marshmallow-code/marshmallow/commit/1d6049e62cef88059cc9f94bbca92e5265e6fbac) Remove dead code and document the argument type - [`efe2ce4`](https://github.com/marshmallow-code/marshmallow/commit/efe2ce4e45b56c7197e0ae21798642db64d7cee3) Bump version and update changelog - [`e15a141`](https://github.com/marshmallow-code/marshmallow/commit/e15a14122f825d7d8945464b048fe5c37c8585c5) Fix donate link - [`761a651`](https://github.com/marshmallow-code/marshmallow/commit/761a651795646c07004bd879f80d95341fd5332a) Fix a Nested(many=True).dump swallowing a first element from a generator - [`1e26d14`](https://github.com/marshmallow-code/marshmallow/commit/1e26d14facab213df5009300b997481aa43df80a) Address pytest an flake8 issues - [`af4f65e`](https://github.com/marshmallow-code/marshmallow/commit/af4f65e7722e60dd7686172ee51044b0cf72ae9b) Raise a warning for FormattedString - [`b1f3201`](https://github.com/marshmallow-code/marshmallow/commit/b1f3201457117ddd86f47ca2b294bc04cf6fbe67) Bump version and update changelog - [`8869788`](https://github.com/marshmallow-code/marshmallow/commit/88697881d65e9dc1ac31fbdbca13e3a40c1bb7c2) Merge pull request [#1136](https://github-redirect.dependabot.com/marshmallow-code/marshmallow/issues/1136) from marshmallow-code/2.x-warnings - Additional commits viewable in [compare view](https://github.com/marshmallow-code/marshmallow/compare/2.16.3...2.19.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
.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 squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@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.