Bump apiflask from 1.0.0 to 1.1.3 in /api #390

Closed
dependabot[bot] wants to merge 1 commits from dependabot/pip/api/apiflask-1.1.3 into main
dependabot[bot] commented 2022-09-05 15:11:43 +00:00 (Migrated from github.com)

Bumps apiflask from 1.0.0 to 1.1.3.

Release notes

Sourced from apiflask's releases.

Version 1.1.3

One more bugfix release.

  • Fix some tests and import statements for Flask 2.2 (#343). Thanks @​hjlarry
  • Pin Flask < 2.2 as a temp fix for the breaking changes of class-based view support (#341).

We still need to make a real fix for #341, any help will be appreciated.

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.

... (truncated)

Commits
  • 0e16f50 Release 1.1.3
  • 0a0f148 Merge pull request #356 from apiflask/prefer-add-url-rule
  • 6f9f4c1 Prefer to use add_url_rule for view classes
  • 946b27f Merge pull request #355 from apiflask/temp-fix-cbv
  • c67ca0b Pin Flask < 2.2 as a temp fix for CBV support
  • 72589c7 Merge pull request #348 from hjlarry/fix-test
  • 106ba0e Merge pull request #354 from apiflask/dependabot/github_actions/actions/cache...
  • a494135 Bump actions/cache from 3.0.5 to 3.0.8
  • 33b39e0 fix test base_response data key
  • fb70d84 Merge pull request #343 from hjlarry/patch-flask2.2
  • 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.3. <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.3</h2> <p>One more bugfix release.</p> <ul> <li>Fix some tests and import statements for Flask 2.2 (<a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/343">#343</a>). Thanks <a href="https://github.com/hjlarry"><code>@​hjlarry</code></a></li> <li>Pin Flask &lt; 2.2 as a temp fix for the breaking changes of class-based view support (<a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/341">#341</a>).</li> </ul> <p>We still need to make a real fix for <a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/341">#341</a>, any help will be appreciated.</p> <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> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/apiflask/apiflask/commit/0e16f50515b748952b4422fc2aa9ba49ca4666bb"><code>0e16f50</code></a> Release 1.1.3</li> <li><a href="https://github.com/apiflask/apiflask/commit/0a0f148534ee3c2dc6ea341c9df74e50b35898be"><code>0a0f148</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/356">#356</a> from apiflask/prefer-add-url-rule</li> <li><a href="https://github.com/apiflask/apiflask/commit/6f9f4c159166e4f99bb2432fa79a4f5871ddd22d"><code>6f9f4c1</code></a> Prefer to use add_url_rule for view classes</li> <li><a href="https://github.com/apiflask/apiflask/commit/946b27f5407b6c9dc64d8c971cbdcfe4d3310ed1"><code>946b27f</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/355">#355</a> from apiflask/temp-fix-cbv</li> <li><a href="https://github.com/apiflask/apiflask/commit/c67ca0bf5c80d34ad970bfcb2b037c880ca0abb2"><code>c67ca0b</code></a> Pin Flask &lt; 2.2 as a temp fix for CBV support</li> <li><a href="https://github.com/apiflask/apiflask/commit/72589c73a5f5897705d4ca538cfd9310643cc31e"><code>72589c7</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/348">#348</a> from hjlarry/fix-test</li> <li><a href="https://github.com/apiflask/apiflask/commit/106ba0ea45b60f7b7b0e51b86aa59372e4f75216"><code>106ba0e</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/354">#354</a> from apiflask/dependabot/github_actions/actions/cache...</li> <li><a href="https://github.com/apiflask/apiflask/commit/a4941352798d24ad8f37f07d879d82de00607673"><code>a494135</code></a> Bump actions/cache from 3.0.5 to 3.0.8</li> <li><a href="https://github.com/apiflask/apiflask/commit/33b39e0ee1a955d56df488a188c86fe3bc2ea8ed"><code>33b39e0</code></a> fix test base_response data key</li> <li><a href="https://github.com/apiflask/apiflask/commit/fb70d84ecdd8a1870f8e61263d23ef7f5d45d94a"><code>fb70d84</code></a> Merge pull request <a href="https://github-redirect.dependabot.com/apiflask/apiflask/issues/343">#343</a> from hjlarry/patch-flask2.2</li> <li>Additional commits viewable in <a href="https://github.com/apiflask/apiflask/compare/1.0.0...1.1.3">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.3)](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>
administrator closed this pull request 2022-09-17 22:44:45 +00:00

Pull request closed

Sign in to join this conversation.
No description provided.