Skip to content
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

Bump flask-marshmallow from 0.7.0 to 0.14.0 #36

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

dependabot-preview[bot]
Copy link

Bumps flask-marshmallow from 0.7.0 to 0.14.0.

Changelog

Sourced from flask-marshmallow's changelog.

0.14.0 (2020-09-27)

* Add values argument to URLFor and AbsoluteURLFor for passing values to flask.url_for.

: This prevents unrelated parameters from getting passed (52, 67). Thanks AlrasheedA for the PR.

Deprecation:

  • Passing params to flask.url_for via URLFor's and AbsoluteURLFor's constructor params is deprecated. Pass values instead.
# flask-marshmallow<0.14.0

class UserSchema(ma.Schema): _links = ma.Hyperlinks( { "self": ma.URLFor("user_detail", id="<id>"), } )

flask-marshmallow>=0.14.0

class UserSchema(ma.Schema): _links = ma.Hyperlinks( { "self": ma.URLFor("user_detail", values=dict(id="<id>")), } )

0.13.0 (2020-06-07)

Bug fixes:

  • Fix compatibility with marshmallow-sqlalchemy<0.22.0 (189). Thanks PatrickRic for reporting.

Other changes:

  • Remove unused flask_marshmallow.sqla.SchemaOpts.

0.12.0 (2020-04-26)

  • Breaking change: ma.ModelSchema and ma.TableSchema are removed, since these are deprecated upstream.
Commits
  • 0d84ce9 Bump version and update changelog
  • 21057fb Improved Handling of URLFor Parameters (#199)
  • 9ce0f02 Run pre-commit autoupdate
  • 398c52d Bump sphinx from 3.2.0 to 3.2.1
  • 7aaa1d3 Bump sphinx from 3.1.2 to 3.2.0
  • 92d2c20 Bump sphinx from 3.1.1 to 3.1.2
  • d7b9a6b Bump sphinx from 3.1.0 to 3.1.1
  • 2f58da6 Bump sphinx from 3.0.4 to 3.1.0
  • 718a3c6 Bump flake8 from 3.8.2 to 3.8.3
  • b2337d5 Bump version and update changelog
  • Additional commits viewable in compare view

Dependabot compatibility score

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 close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor 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:

  • Update frequency (including time of day and day of week)
  • 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)

@dependabot-preview dependabot-preview bot added the dependencies Pull requests that update a dependency file label Sep 28, 2020
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
0 participants