Bump apiflask from 1.0.0 to 1.1.1 in /api #329

Closed
dependabot[bot] wants to merge 1 commits from dependabot/pip/api/apiflask-1.1.1 into main
dependabot[bot] commented 2022-08-04 09:43:50 +00:00 (Migrated from github.com)

Bumps apiflask from 1.0.0 to 1.1.1.

Release notes

Sourced from apiflask's releases.

Version 1.1.1

A bugfix release for Flask 2.2.

  • Improve CI setup and test again Python 3.10 and 3.11 (#331).
  • Fix the typing of APIFlask path parameters (#329). Thanks @​jeamland
  • Update MethodViewType usages for Flask 2.2 (#335). Thanks @​z-t-y

Version 1.1.0

A new feature release!

  • Support more API docs: RapiDoc, Elements, and RapiPDF. Now the docs UI is controlled by the docs_ui parameter (#308):
from apiflask import APIFlask

available docs_ui values: swagger-ui, redoc, elements, rapidoc, rapipdf

app = APIFlask(name, docs_ui='elements')

  • The API docs will be available at /docs by default, and the /redoc path and the redoc_path parameter were deprecated and will be removed in 2.0.
  • Allow the view function to return list as JSON (#322):
@app.route('/')
def index():
    return ['this', 'will', 'become', 'JSON']

P.S. This feature will also be available in Flask 2.2.

See the full changelog for more details: https://apiflask.com/changelog/#version-110

Version 1.0.2

Another bugfix release.

  • Combine custom security schemes (app.security_schemes) with existing values ([issue #293](apiflask/apiflask#293)).
  • Add the missing path (view_args) to the valid request location list ([issue #301](apiflask/apiflask#301))
  • Fix the security scheme values to lowercase.

Version 1.0.1

A bugfix release:

Commits
  • d89caa5 Release 1.1.1
  • 2c85daa Merge pull request #333 from apiflask/dependabot/github_actions/actions/cache...
  • a77259e Use type(MethodView) instead of MethodViewType (#336)
  • 668b907 Bump actions/cache from 3.0.4 to 3.0.5
  • 0a9cb45 Mark various doc paths as optional (#330)
  • 8ce80e6 Merge pull request #331 from apiflask/update-ci
  • e7a0122 Improve CI setup
  • b38ff95 Fix outdated docs and typos
  • 8504991 Merge pull request #326 from justin-jiajia/patch-1
  • 646d11e Update app.py
  • 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)
Bumps [apiflask](https://github.com/apiflask/apiflask) from 1.0.0 to 1.1.1. <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/apiflask/apiflask/releases">apiflask's releases</a>.</em></p> <blockquote> <h2>Version 1.1.1</h2> <p>A bugfix release for Flask 2.2.</p> <ul> <li>Improve CI setup and test again Python 3.10 and 3.11 (<a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/331">#331</a>).</li> <li>Fix the typing of <code>APIFlask</code> path parameters (<a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/329">#329</a>). Thanks <a href="https://github.com/jeamland"><code>@​jeamland</code></a></li> <li>Update <code>MethodViewType</code> usages for Flask 2.2 (<a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/335">#335</a>). Thanks <a href="https://github.com/z-t-y"><code>@​z-t-y</code></a></li> </ul> <h2>Version 1.1.0</h2> <p>A new feature release!</p> <ul> <li>Support more API docs: RapiDoc, Elements, and RapiPDF. Now the docs UI is controlled by the <code>docs_ui</code> parameter (<a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/308">#308</a>):</li> </ul> <pre lang="python"><code>from apiflask import APIFlask <h1>available docs_ui values: swagger-ui, redoc, elements, rapidoc, rapipdf</h1> <p>app = APIFlask(<strong>name</strong>, docs_ui='elements') </code></pre></p> <ul> <li>The API docs will be available at <code>/docs</code> by default, and the <code>/redoc</code> path and the <code>redoc_path</code> parameter were deprecated and will be removed in 2.0.</li> <li>Allow the view function to return <code>list</code> as JSON (<a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/322">#322</a>):</li> </ul> <pre lang="python"><code>@app.route('/') def index(): return ['this', 'will', 'become', 'JSON'] </code></pre> <p>P.S. This feature will also be available in Flask 2.2.</p> <p>See the full changelog for more details: <a href="https://apiflask.com/changelog/#version-110">https://apiflask.com/changelog/#version-110</a></p> <h2>Version 1.0.2</h2> <p>Another bugfix release.</p> <ul> <li>Combine custom security schemes (app.security_schemes) with existing values ([issue <a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/293">#293</a>](<a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/293">apiflask/apiflask#293</a>)).</li> <li>Add the missing <code>path</code> (<code>view_args</code>) to the valid request location list ([issue <a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/301">#301</a>](<a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/301">apiflask/apiflask#301</a>))</li> <li>Fix the security scheme values to lowercase.</li> </ul> <h2>Version 1.0.1</h2> <p>A bugfix release:</p> <ul> <li>Fix the async support for <code>app.auth_required</code>, <code>app.input</code>, and <code>app.doc</code> decorators ([issue <a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/288">#288</a>](<a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/288">apiflask/apiflask#288</a>)). Thanks <a href="https://github.com/jiashuChen"><code>@​jiashuChen</code></a>!</li> <li>Add example applications for <a href="https://github.com/apiflask/apiflask/tree/main/examples/auth">token auth and basic auth</a>. Thanks <a href="https://github.com/z-t-y"><code>@​z-t-y</code></a></li> <li>Fix various bugs in docs. Thanks <a href="https://github.com/Tridagger"><code>@​Tridagger</code></a>, <a href="https://github.com/z-t-y"><code>@​z-t-y</code></a>, <a href="https://github.com/rice0208"><code>@​rice0208</code></a>, <a href="https://github.com/jiashuChen"><code>@​jiashuChen</code></a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/apiflask/apiflask/commit/d89caa526dc9a3fca5c14968cd3ca35a7095599e"><code>d89caa5</code></a> Release 1.1.1</li> <li><a href="https://github.com/apiflask/apiflask/commit/2c85daa531a65b83f601b5287f9506069ec4b8fe"><code>2c85daa</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/333">#333</a> from apiflask/dependabot/github_actions/actions/cache...</li> <li><a href="https://github.com/apiflask/apiflask/commit/a77259e33d6803054cb44a05a633b284a2bdedaf"><code>a77259e</code></a> Use type(MethodView) instead of MethodViewType (<a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/336">#336</a>)</li> <li><a href="https://github.com/apiflask/apiflask/commit/668b90709363801a9a68df9e3dc5fc3a6fc00160"><code>668b907</code></a> Bump actions/cache from 3.0.4 to 3.0.5</li> <li><a href="https://github.com/apiflask/apiflask/commit/0a9cb458013532c1f0c2ca23d8e2452eb9921582"><code>0a9cb45</code></a> Mark various doc paths as optional (<a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/330">#330</a>)</li> <li><a href="https://github.com/apiflask/apiflask/commit/8ce80e65fa4191ff33e29b5e615cae5f8f960365"><code>8ce80e6</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/331">#331</a> from apiflask/update-ci</li> <li><a href="https://github.com/apiflask/apiflask/commit/e7a01223ba289a8f2979a95ff79789cbd44506b4"><code>e7a0122</code></a> Improve CI setup</li> <li><a href="https://github.com/apiflask/apiflask/commit/b38ff954fdccb5f8e091f7c8a286e445462b48ad"><code>b38ff95</code></a> Fix outdated docs and typos</li> <li><a href="https://github.com/apiflask/apiflask/commit/8504991055af9fa4d835a3054dd4c9b007fc556b"><code>8504991</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/326">#326</a> from justin-jiajia/patch-1</li> <li><a href="https://github.com/apiflask/apiflask/commit/646d11e425c8585da16c97b6102b63b82971125c"><code>646d11e</code></a> Update app.py</li> <li>Additional commits viewable in <a href="https://github.com/apiflask/apiflask/compare/1.0.0...1.1.1">compare view</a></li> </ul> </details> <br /> [![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=apiflask&package-manager=pip&previous-version=1.0.0&new-version=1.1.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) 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-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> 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) </details>
dependabot[bot] commented 2022-08-15 09:34:23 +00:00 (Migrated from github.com)

Superseded by #344.

Superseded by #344.

Pull request closed

Sign in to join this conversation.
No description provided.