Bump apiflask from 1.0.0 to 1.1.0 in /api #280

Closed
dependabot[bot] wants to merge 1 commits from dependabot/pip/api/apiflask-1.1.0 into main
dependabot[bot] commented 2022-07-04 10:28:58 +00:00 (Migrated from github.com)

Bumps apiflask from 1.0.0 to 1.1.0.

Release notes

Sourced from apiflask's releases.

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
  • f977d02 Release 1.1.0
  • c19834a Merge pull request #322 from apiflask/list-return-value
  • 288287d Automatic serialize list return value to JSON
  • aeef5b3 Merge pull request #323 from apiflask/update-docs
  • 75100d3 Update API docs and base response example
  • 96b1c24 Merge pull request #320 from apiflask/fix-cli
  • 32138a8 Fix CLI entry point setup
  • 92b0690 Merge pull request #308 from apiflask/docs-ui
  • 7fb6708 Update docs and changelog
  • 2d53838 Add tests for the new docs UI support
  • 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.0. <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.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/f977d02b656f71d0abfece1283ce8840c634ad89"><code>f977d02</code></a> Release 1.1.0</li> <li><a href="https://github.com/apiflask/apiflask/commit/c19834acbc692c339208a6e0cf660df52fa34152"><code>c19834a</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/322">#322</a> from apiflask/list-return-value</li> <li><a href="https://github.com/apiflask/apiflask/commit/288287d79905e70d732ef6707e295769a6a002fe"><code>288287d</code></a> Automatic serialize list return value to JSON</li> <li><a href="https://github.com/apiflask/apiflask/commit/aeef5b397f2fd0cbda831480ab16812b2fde5043"><code>aeef5b3</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/323">#323</a> from apiflask/update-docs</li> <li><a href="https://github.com/apiflask/apiflask/commit/75100d37197ff6ca597a3bb09dd7752e4d57d07b"><code>75100d3</code></a> Update API docs and base response example</li> <li><a href="https://github.com/apiflask/apiflask/commit/96b1c24855b8a678acfd3b0601f7c5b3c82a150b"><code>96b1c24</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/320">#320</a> from apiflask/fix-cli</li> <li><a href="https://github.com/apiflask/apiflask/commit/32138a8e52d43bcf863d127a325df5d8dca8108c"><code>32138a8</code></a> Fix CLI entry point setup</li> <li><a href="https://github.com/apiflask/apiflask/commit/92b0690163976f73cb5c8d8ccd9f87deb2a66151"><code>92b0690</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/308">#308</a> from apiflask/docs-ui</li> <li><a href="https://github.com/apiflask/apiflask/commit/7fb6708447c895030970d4f21f6ee886b8893f74"><code>7fb6708</code></a> Update docs and changelog</li> <li><a href="https://github.com/apiflask/apiflask/commit/2d53838d5e456b12861e7b29699796dc15bfea45"><code>2d53838</code></a> Add tests for the new docs UI support</li> <li>Additional commits viewable in <a href="https://github.com/apiflask/apiflask/compare/1.0.0...1.1.0">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.0)](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-04 09:43:52 +00:00 (Migrated from github.com)

Superseded by #329.

Superseded by #329.

Pull request closed

Sign in to join this conversation.
No description provided.