Bump apiflask from 1.0.0 to 1.1.2 in /api #344

Closed
dependabot[bot] wants to merge 1 commits from dependabot/pip/api/apiflask-1.1.2 into main
dependabot[bot] commented 2022-08-15 09:34:20 +00:00 (Migrated from github.com)

Bumps apiflask from 1.0.0 to 1.1.2.

Release notes

Sourced from apiflask's releases.

Version 1.1.2

A bugfix release.

  • Fix the incorrect Elements router setting. Now the default router option value will be hash. #339

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
  • 267b850 Release 1.1.2
  • 95b360d Merge pull request #340 from apiflask/cdn
  • 24fdc79 Update CDN server of Swagger UI and Redoc
  • 0ee3a91 Merge pull request #339 from apiflask/elements-router
  • 3732526 Set default Elements router to hash
  • 954e372 Only post comment when coverage changes
  • 4877bc4 Merge pull request #337 from apiflask/improve-docs
  • 3b43485 Add credits for Netlify
  • 1cc626b Update docs for Flask --app and --debug options
  • f7e41c1 Add full name for status_code parameters
  • 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.2. <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.2</h2> <p>A bugfix release.</p> <ul> <li>Fix the incorrect Elements <a href="https://github.com/stoplightio/elements/blob/main/docs/getting-started/elements/elements-options.md"><code>router</code> setting</a>. Now the default <code>router</code> option value will be <code>hash</code>. <a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/339">#339</a></li> </ul> <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/267b8508feef1155709047764846f1d762253bf8"><code>267b850</code></a> Release 1.1.2</li> <li><a href="https://github.com/apiflask/apiflask/commit/95b360d92cf0b7f9a32fed3231c8629edb08cdf4"><code>95b360d</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/340">#340</a> from apiflask/cdn</li> <li><a href="https://github.com/apiflask/apiflask/commit/24fdc79356b9c4acf44417e301139a4f790e12d2"><code>24fdc79</code></a> Update CDN server of Swagger UI and Redoc</li> <li><a href="https://github.com/apiflask/apiflask/commit/0ee3a91ca61850f4b5ae85a41c8119e198db3c8d"><code>0ee3a91</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/339">#339</a> from apiflask/elements-router</li> <li><a href="https://github.com/apiflask/apiflask/commit/3732526ea2e5e4f1883ec8c193be958d2745439f"><code>3732526</code></a> Set default Elements router to hash</li> <li><a href="https://github.com/apiflask/apiflask/commit/954e3725c71086139d24d9655d88f8593c037ac7"><code>954e372</code></a> Only post comment when coverage changes</li> <li><a href="https://github.com/apiflask/apiflask/commit/4877bc4ce3491e3d85c13b55b2b7a52781763727"><code>4877bc4</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/337">#337</a> from apiflask/improve-docs</li> <li><a href="https://github.com/apiflask/apiflask/commit/3b434856ff2794195a63024072426be515b4a6d7"><code>3b43485</code></a> Add credits for Netlify</li> <li><a href="https://github.com/apiflask/apiflask/commit/1cc626bf8caeaa7a29b3991dded57c444e74c596"><code>1cc626b</code></a> Update docs for Flask --app and --debug options</li> <li><a href="https://github.com/apiflask/apiflask/commit/f7e41c1575c48c160c80c51b695be9a264df8c83"><code>f7e41c1</code></a> Add full name for status_code parameters</li> <li>Additional commits viewable in <a href="https://github.com/apiflask/apiflask/compare/1.0.0...1.1.2">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.2)](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-09-05 15:11:46 +00:00 (Migrated from github.com)

Superseded by #390.

Superseded by #390.

Pull request closed

Sign in to join this conversation.
No description provided.