Bump flask from 2.0.0 to 2.0.1 #20

Merged
Xefir merged 1 commits from dependabot/pip/flask-2.0.1 into master 2021-05-26 06:23:35 +00:00
Owner

Bumps flask from 2.0.0 to 2.0.1.

Release notes

Sourced from flask's releases.

2.0.1

Changelog

Sourced from flask's changelog.

Version 2.0.1

Released 2021-05-21

  • Re-add the filename parameter in send_from_directory. The
    filename parameter has been renamed to path, the old name
    is deprecated. :pr:4019
  • Mark top-level names as exported so type checking understands
    imports in user projects. :issue:4024
  • Fix type annotation for g and inform mypy that it is a namespace
    object that has arbitrary attributes. :issue:4020
  • Fix some types that weren't available in Python 3.6.0. :issue:4040
  • Improve typing for send_file, send_from_directory, and
    get_send_file_max_age. :issue:4044, :pr:4026
  • Show an error when a blueprint name contains a dot. The . has
    special meaning, it is used to separate (nested) blueprint names and
    the endpoint name. :issue:4041
  • Combine URL prefixes when nesting blueprints that were created with
    a url_prefix value. :issue:4037
  • Roll back a change to the order that URL matching was done. The
    URL is again matched after the session is loaded, so the session is
    available in custom URL converters. :issue:4053
  • Re-add deprecated Config.from_json, which was accidentally
    removed early. :issue:4078
  • Improve typing for some functions using Callable in their type
    signatures, focusing on decorator factories. :issue:4060
  • Nested blueprints are registered with their dotted name. This allows
    different blueprints with the same name to be nested at different
    locations. :issue:4069
  • register_blueprint takes a name option to change the
    (pre-dotted) name the blueprint is registered with. This allows the
    same blueprint to be registered multiple times with unique names for
    url_for. Registering the same blueprint with the same name
    multiple times is deprecated. :issue:1091
  • Improve typing for stream_with_context. :issue:4052
Commits
  • bc90801 Merge pull request #4091 from pallets/release-2.0.1
  • fe2d744 release version 2.0.1
  • 9f606a8 Merge pull request #4090 from pallets/stream-type
  • 7ab934f improve typing for stream_with_context
  • 6b1c4e9 Merge pull request #4087 from greyli/gitignore
  • 255461d Merge pull request #4074 from pgjones/bp
  • 3257b75 Fix blueprint renaming
  • 714b0a4 Fix blueprint self registration
  • 9409be6 warn when registering same blueprint with same name
  • 63b3067 changelog for blueprint registered name
  • Additional commits viewable in compare view

Bumps [flask](https://github.com/pallets/flask) from 2.0.0 to 2.0.1. <details> <summary>Release notes</summary> *Sourced from [flask's releases](https://github.com/pallets/flask/releases).* > ## 2.0.1 > * Changes: https://flask.palletsprojects.com/en/2.0.x/changes/#version-2-0-1 </details> <details> <summary>Changelog</summary> *Sourced from [flask's changelog](https://github.com/pallets/flask/blob/main/CHANGES.rst).* > Version 2.0.1 > ------------- > > Released 2021-05-21 > > - Re-add the ``filename`` parameter in ``send_from_directory``. The > ``filename`` parameter has been renamed to ``path``, the old name > is deprecated. :pr:`4019` > - Mark top-level names as exported so type checking understands > imports in user projects. :issue:`4024` > - Fix type annotation for ``g`` and inform mypy that it is a namespace > object that has arbitrary attributes. :issue:`4020` > - Fix some types that weren't available in Python 3.6.0. :issue:`4040` > - Improve typing for ``send_file``, ``send_from_directory``, and > ``get_send_file_max_age``. :issue:`4044`, :pr:`4026` > - Show an error when a blueprint name contains a dot. The ``.`` has > special meaning, it is used to separate (nested) blueprint names and > the endpoint name. :issue:`4041` > - Combine URL prefixes when nesting blueprints that were created with > a ``url_prefix`` value. :issue:`4037` > - Roll back a change to the order that URL matching was done. The > URL is again matched after the session is loaded, so the session is > available in custom URL converters. :issue:`4053` > - Re-add deprecated ``Config.from_json``, which was accidentally > removed early. :issue:`4078` > - Improve typing for some functions using ``Callable`` in their type > signatures, focusing on decorator factories. :issue:`4060` > - Nested blueprints are registered with their dotted name. This allows > different blueprints with the same name to be nested at different > locations. :issue:`4069` > - ``register_blueprint`` takes a ``name`` option to change the > (pre-dotted) name the blueprint is registered with. This allows the > same blueprint to be registered multiple times with unique names for > ``url_for``. Registering the same blueprint with the same name > multiple times is deprecated. :issue:`1091` > - Improve typing for ``stream_with_context``. :issue:`4052` </details> <details> <summary>Commits</summary> - [`bc90801`](https://github.com/pallets/flask/commit/bc90801c2ada42d3cf112a3b5701bfdbb8b6211c) Merge pull request [#4091](https://github.com/pallets/flask/issues/4091) from pallets/release-2.0.1 - [`fe2d744`](https://github.com/pallets/flask/commit/fe2d744b530283094dd0a2ffa4a9d86f1029b2cd) release version 2.0.1 - [`9f606a8`](https://github.com/pallets/flask/commit/9f606a8cbb8755eaa4664ce7a4f892204f140410) Merge pull request [#4090](https://github.com/pallets/flask/issues/4090) from pallets/stream-type - [`7ab934f`](https://github.com/pallets/flask/commit/7ab934f6bc2380a322c77d92c0b6cfd10b7de991) improve typing for `stream_with_context` - [`6b1c4e9`](https://github.com/pallets/flask/commit/6b1c4e9769cbe72d6f5665a8081a98e5a671a8d8) Merge pull request [#4087](https://github.com/pallets/flask/issues/4087) from greyli/gitignore - [`255461d`](https://github.com/pallets/flask/commit/255461d8950fab51a44c84f33cfba1e4fb239a7d) Merge pull request [#4074](https://github.com/pallets/flask/issues/4074) from pgjones/bp - [`3257b75`](https://github.com/pallets/flask/commit/3257b7574e7f010686a617197e0fb4596986f7f7) Fix blueprint renaming - [`714b0a4`](https://github.com/pallets/flask/commit/714b0a467acab54091d8aeb73403d808abfbcf5b) Fix blueprint self registration - [`9409be6`](https://github.com/pallets/flask/commit/9409be6e34e153bfdb0aac2c9eb7f60110109172) warn when registering same blueprint with same name - [`63b3067`](https://github.com/pallets/flask/commit/63b306743fccdd52079034e82cbbeee182a4361d) changelog for blueprint registered name - Additional commits viewable in [compare view](https://github.com/pallets/flask/compare/2.0.0...2.0.1) </details> <br />
Xefir added 1 commit 2021-05-26 00:09:42 +00:00
Bump flask from 2.0.0 to 2.0.1
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone/pr Build is passing
a2a5466f96
Bumps [flask](https://github.com/pallets/flask) from 2.0.0 to 2.0.1.
- [Release notes](https://github.com/pallets/flask/releases)
- [Changelog](https://github.com/pallets/flask/blob/main/CHANGES.rst)
- [Commits](https://github.com/pallets/flask/compare/2.0.0...2.0.1)
Xefir merged commit 6c6bba4016 into master 2021-05-26 06:23:35 +00:00
Xefir deleted branch dependabot/pip/flask-2.0.1 2021-05-26 06:33:43 +00:00
This repo is archived. You cannot comment on pull requests.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: Xefir/PyNyaaTa#20
No description provided.