69 Commits

Author SHA256 Message Date
007d632bc1 Accepting request 1335000 from devel:languages:python:flask
OBS-URL: https://build.opensuse.org/request/show/1335000
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=44
2026-02-26 17:49:43 +00:00
27a4cf18a3 - Update to 3.1.3 (CVE-2026-27205, bsc#1258700)
* The session is marked as accessed for operations that only
    access the keys but not the values, such as in and len.
    GHSA-68rp-wp8r-4726
- Update to 3.1.2
  * stream_with_context does not fail inside async views. #5774
  * When using follow_redirects in the test client, the final state
    of session is correct. #5786
  * Relax type hint for passing bytes IO to send_file. #5776

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=54
2026-02-25 08:53:21 +00:00
d65a51862a Accepting request 1277662 from devel:languages:python:flask
- Update to 3.1.1 (CVE-2025-47278, bsc#1243163):
  * Fix signing key selection order when key rotation is enabled via
    SECRET_KEY_FALLBACKS. GHSA-4grg-w6v8-c28g
  * Fix type hint for cli_runner.invoke. #5645
  * flask --help loads the app and plugins first to make sure all
    commands are shown. #5673
  * Mark sans-io base class as being able to handle views that return
    AsyncIterable. This is not accurate for Flask, but makes typing
    easier for Quart. #5659
- Update to 3.1.1 (CVE-2025-47278, bsc#1243163):
  * Fix signing key selection order when key rotation is enabled via
    SECRET_KEY_FALLBACKS. GHSA-4grg-w6v8-c28g
  * Fix type hint for cli_runner.invoke. #5645
  * flask --help loads the app and plugins first to make sure all
    commands are shown. #5673
  * Mark sans-io base class as being able to handle views that return
    AsyncIterable. This is not accurate for Flask, but makes typing
    easier for Quart. #5659

OBS-URL: https://build.opensuse.org/request/show/1277662
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=43
2025-05-23 12:27:10 +00:00
15bb0a5475 - Update to 3.1.1 (CVE-2025-47278, bsc#1243163):
* Fix signing key selection order when key rotation is enabled via
    SECRET_KEY_FALLBACKS. GHSA-4grg-w6v8-c28g
  * Fix type hint for cli_runner.invoke. #5645
  * flask --help loads the app and plugins first to make sure all
    commands are shown. #5673
  * Mark sans-io base class as being able to handle views that return
    AsyncIterable. This is not accurate for Flask, but makes typing
    easier for Quart. #5659

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=52
2025-05-15 07:20:00 +00:00
98f74bf84a Accepting request 1244038 from devel:languages:python:flask
- Update to 3.1.0:
  * Drop support for Python 3.8.
  * Update minimum dependency versions to latest feature releases.
    Werkzeug >= 3.1, ItsDangerous >= 2.2, Blinker >= 1.9.
  * Provide a configuration option to control automatic option responses.
  * Flask.open_resource/open_instance_resource and Blueprint.open_resource
    take an encoding parameter to use when opening in text mode. It defaults
    to utf-8.
  * Request.max_content_length can be customized per-request instead of only
    through the MAX_CONTENT_LENGTH config.
  * Add support for the Partitioned cookie attribute (CHIPS), with the
    SESSION_COOKIE_PARTITIONED config.
  * -e path takes precedence over default .env and .flaskenv files.
    load_dotenv loads default files in addition to a path unless
    load_defaults=False is passed.
  * Support key rotation with the SECRET_KEY_FALLBACKS config, a list of old
    secret keys that can still be used for unsigning.
  * Fix how setting host_matching=True or subdomain_matching=False interacts
    with SERVER_NAME. Setting SERVER_NAME no longer restricts requests to
    only that domain.
  * Request.trusted_hosts is checked during routing, and can be set through
    the TRUSTED_HOSTS config.

OBS-URL: https://build.opensuse.org/request/show/1244038
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=42
2025-02-09 18:59:00 +00:00
eee3f6f026 - Update to 3.1.0:
* Drop support for Python 3.8.
  * Update minimum dependency versions to latest feature releases.
    Werkzeug >= 3.1, ItsDangerous >= 2.2, Blinker >= 1.9.
  * Provide a configuration option to control automatic option responses.
  * Flask.open_resource/open_instance_resource and Blueprint.open_resource
    take an encoding parameter to use when opening in text mode. It defaults
    to utf-8.
  * Request.max_content_length can be customized per-request instead of only
    through the MAX_CONTENT_LENGTH config.
  * Add support for the Partitioned cookie attribute (CHIPS), with the
    SESSION_COOKIE_PARTITIONED config.
  * -e path takes precedence over default .env and .flaskenv files.
    load_dotenv loads default files in addition to a path unless
    load_defaults=False is passed.
  * Support key rotation with the SECRET_KEY_FALLBACKS config, a list of old
    secret keys that can still be used for unsigning.
  * Fix how setting host_matching=True or subdomain_matching=False interacts
    with SERVER_NAME. Setting SERVER_NAME no longer restricts requests to
    only that domain.
  * Request.trusted_hosts is checked during routing, and can be set through
    the TRUSTED_HOSTS config.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=50
2025-02-07 01:51:18 +00:00
5c126a4e0e Accepting request 1197028 from devel:languages:python:flask
Forwarded request #1194157 from yeey

- update to 3.0.3
    * The default hashlib.sha1 may not be available in FIPS builds.
      Don’t access it at import time so the developer has time to
      change the default. :issue:`5448`
    * Don’t initialize the cli attribute in the sansio scaffold,
      but rather in the Flask concrete class. :issue:`5270`

OBS-URL: https://build.opensuse.org/request/show/1197028
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=41
2024-08-30 11:26:06 +00:00
a6794f567c Accepting request 1194157 from home:yeey:branches:devel:languages:python:flask
- update to 3.0.3
  * The default hashlib.sha1 may not be available in FIPS builds.
    Don’t access it at import time so the developer has time to
    change the default. :issue:`5448`
  * Don’t initialize the cli attribute in the sansio scaffold,
    but rather in the Flask concrete class. :issue:`5270`

OBS-URL: https://build.opensuse.org/request/show/1194157
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=48
2024-08-28 15:41:08 +00:00
3a5e06bb58 Accepting request 1166616 from devel:languages:python:flask
- Remove not needed dependency python-contextvars

OBS-URL: https://build.opensuse.org/request/show/1166616
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=40
2024-04-10 15:48:42 +00:00
2c4ff201e3 - Remove not needed dependency python-contextvars
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=46
2024-04-10 10:15:08 +00:00
9964793fb6 Accepting request 1144168 from devel:languages:python:flask
- update to 3.0.2:
  * Correct type for jinja_loader property. :issue:`5388`
  * Fix error with --extra-files and --exclude-patterns CLI
    options. :issue:`5391`

OBS-URL: https://build.opensuse.org/request/show/1144168
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=39
2024-02-06 15:32:43 +00:00
639b50d27c - update to 3.0.2:
* Correct type for jinja_loader property. :issue:`5388`
  * Fix error with --extra-files and --exclude-patterns CLI
    options. :issue:`5391`

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=44
2024-02-05 10:05:08 +00:00
a56c0d452b Accepting request 1140137 from devel:languages:python:flask
- update to 3.0.1:
  * Correct type for path argument to send_file. :issue:`5230`
  * Fix a typo in an error message for the flask run --key
    option. :pr:`5344`
  * Session data is untagged without relying on the built-in
    json.loads object_hook. This allows other JSON providers that
    don't implement that. :issue:`5381`
  * Address more type findings when using mypy strict mode.
    :pr:`5383`
  * Remove previously deprecated code. :pr:`5223`
  * Deprecate the __version__ attribute. Use feature detection,
    or importlib.metadata.version("flask"), instead.
    :issue:`5230`
  * Restructure the code such that the Flask (app) and Blueprint
    classes have Sans-IO bases. :pr:`5127`
  * Allow self as an argument to url_for. :pr:`5264`
  * Require Werkzeug >= 3.0.0.

  * Add an --exclude-patterns option to the flask run CLI command to
  * Relax typing for errorhandler to allow the user to use more precise
  * From Werkzeug, for redirect responses the Location header URL will
  * Add Config.from_prefixed_env() to load config values from environment
    variables that start with FLASK_ or another prefix. This parses values as
  * Fixed the issue where typing requires template global decorators to
    - Set the default encoding to “UTF-8” when loading .env and .flaskenv
    - flask shell sets up tab and history completion like the default
- add dependency on itsdangerous

OBS-URL: https://build.opensuse.org/request/show/1140137
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=38
2024-01-21 22:07:16 +00:00
c9a02c2d8f - update to 3.0.1:
* Correct type for path argument to send_file. :issue:`5230`
  * Fix a typo in an error message for the flask run --key
    option. :pr:`5344`
  * Session data is untagged without relying on the built-in
    json.loads object_hook. This allows other JSON providers that
    don't implement that. :issue:`5381`
  * Address more type findings when using mypy strict mode.
    :pr:`5383`
  * Remove previously deprecated code. :pr:`5223`
  * Deprecate the __version__ attribute. Use feature detection,
    or importlib.metadata.version("flask"), instead.
    :issue:`5230`
  * Restructure the code such that the Flask (app) and Blueprint
    classes have Sans-IO bases. :pr:`5127`
  * Allow self as an argument to url_for. :pr:`5264`
  * Require Werkzeug >= 3.0.0.
  * Add an --exclude-patterns option to the flask run CLI command to
  * Relax typing for errorhandler to allow the user to use more precise
  * From Werkzeug, for redirect responses the Location header URL will
  * Add Config.from_prefixed_env() to load config values from environment
    variables that start with FLASK_ or another prefix. This parses values as
  * Fixed the issue where typing requires template global decorators to
    - Set the default encoding to “UTF-8” when loading .env and .flaskenv
    - flask shell sets up tab and history completion like the default
- add dependency on itsdangerous

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=42
2024-01-20 14:07:52 +00:00
770f982125 Accepting request 1113337 from devel:languages:python:flask
- Update to 2.3.3:
  * Python 3.12 compatibility.
  * Require Werkzeug >= 2.3.7.
  * Use ``flit_core`` instead of ``setuptools`` as build backend.
  * Refactor how an app's root and instance paths are determined.
- Fiddle with captialisation again, I look forward to this flipping back
  to Flask at some point.

OBS-URL: https://build.opensuse.org/request/show/1113337
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=37
2023-09-26 20:00:43 +00:00
36ecd3535e - Update to 2.3.3:
* Python 3.12 compatibility.
  * Require Werkzeug >= 2.3.7.
  * Use ``flit_core`` instead of ``setuptools`` as build backend.
  * Refactor how an app's root and instance paths are determined.
- Fiddle with captialisation again, I look forward to this flipping back
  to Flask at some point.

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=40
2023-09-25 02:32:52 +00:00
bead461ac4 Accepting request 1109078 from devel:languages:python:flask
- drops CVE-2023-30861-always-vary-cookie.patch in older dists

OBS-URL: https://build.opensuse.org/request/show/1109078
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=36
2023-09-06 16:56:32 +00:00
8651034d5e - drops CVE-2023-30861-always-vary-cookie.patch in older dists
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=38
2023-09-05 15:06:58 +00:00
77644d3ed2 Accepting request 1101890 from devel:languages:python:flask
- Update to 2.3.2:
  * Set ``Vary: Cookie`` header when the session is accessed, modified, or
    refreshed.
  * Update Werkzeug requirement to >=2.3.3 to apply recent bug fixes.
  * Restore deprecated ``from flask import Markup``.
  * Drop support for Python 3.7.
  * Update minimum requirements to the latest versions.
  * Remove previously deprecated code.
  * Importing ``escape`` and ``Markup`` from ``flask`` is deprecated.
  * The ``app.got_first_request`` property is deprecated.
  * The ``locked_cached_property`` decorator is deprecated.
  * Signals are always available. ``blinker>=1.6.2`` is a required dependency.
  * Signals support ``async`` subscriber functions.
  * Remove uses of locks that could cause requests to block each other very
    briefly.
  * Use modern packaging metadata with ``pyproject.toml``.
  * Ensure subdomains are applied with nested blueprints.
  * If a blueprint is created with an empty name it raises a ``ValueError``.
  * ``SESSION_COOKIE_DOMAIN`` does not fall back to ``SERVER_NAME``.
  * The ``routes`` command shows each rule's ``subdomain`` or ``host``
    when domain matching is in use.
  * Use postponed evaluation of annotations.
- Switch to pyproject macros.
- Delete unneeded .gitignore files, update rpmlintrc

OBS-URL: https://build.opensuse.org/request/show/1101890
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=35
2023-08-14 20:34:57 +00:00
3cdb9cb654 - Update to 2.3.2:
* Set ``Vary: Cookie`` header when the session is accessed, modified, or
    refreshed.
  * Update Werkzeug requirement to >=2.3.3 to apply recent bug fixes.
  * Restore deprecated ``from flask import Markup``.
  * Drop support for Python 3.7.
  * Update minimum requirements to the latest versions.
  * Remove previously deprecated code.
  * Importing ``escape`` and ``Markup`` from ``flask`` is deprecated.
  * The ``app.got_first_request`` property is deprecated.
  * The ``locked_cached_property`` decorator is deprecated.
  * Signals are always available. ``blinker>=1.6.2`` is a required dependency.
  * Signals support ``async`` subscriber functions.
  * Remove uses of locks that could cause requests to block each other very
    briefly.
  * Use modern packaging metadata with ``pyproject.toml``.
  * Ensure subdomains are applied with nested blueprints.
  * If a blueprint is created with an empty name it raises a ``ValueError``.
  * ``SESSION_COOKIE_DOMAIN`` does not fall back to ``SERVER_NAME``.
  * The ``routes`` command shows each rule's ``subdomain`` or ``host``
    when domain matching is in use.
  * Use postponed evaluation of annotations.
- Switch to pyproject macros.
- Delete unneeded .gitignore files, update rpmlintrc

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=36
2023-08-02 06:48:59 +00:00
52f81843af Accepting request 1086038 from devel:languages:python:flask
- update to 2.2.5 (bsc#1211246, CVE-2023-30861):
  * Set ``Vary: Cookie`` header when the session is accessed,
    modified, or refreshed.
  * Update for compatibility with Werkzeug 2.3.
  * Autoescape is enabled by default for ``.svg`` template
    files. :issue:`4831`
  * Fix the type of ``template_folder`` to accept
    ``pathlib.Path``. :issue:`4892`
  * Add ``--debug`` option to the ``flask run`` command.
    :issue:`4777`

OBS-URL: https://build.opensuse.org/request/show/1086038
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=34
2023-05-11 10:31:55 +00:00
7a31aba8fc - update to 2.2.5 (bsc#1211246, CVE-2023-30861):
* Set ``Vary: Cookie`` header when the session is accessed,
    modified, or refreshed.
  * Update for compatibility with Werkzeug 2.3.
  * Autoescape is enabled by default for ``.svg`` template
    files. :issue:`4831`
  * Fix the type of ``template_folder`` to accept
    ``pathlib.Path``. :issue:`4892`
  * Add ``--debug`` option to the ``flask run`` command.
    :issue:`4777`

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=34
2023-05-10 09:19:40 +00:00
00c8205996 Accepting request 1083105 from devel:languages:python:flask
- add sle15_python_module_pythons (jsc#PED-68)

OBS-URL: https://build.opensuse.org/request/show/1083105
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=33
2023-04-28 14:22:12 +00:00
858c867b77 - add sle15_python_module_pythons (jsc#PED-68)
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=32
2023-04-26 20:09:25 +00:00
fbd13f6775 Accepting request 1034198 from devel:languages:python:flask
OBS-URL: https://build.opensuse.org/request/show/1034198
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=32
2022-11-24 11:21:58 +00:00
c16b85d626 Accepting request 1034187 from home:stroeder:python
Update to 2.2.2

OBS-URL: https://build.opensuse.org/request/show/1034187
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=30
2022-11-07 13:12:26 +00:00
2c0f77bd9b Accepting request 989104 from devel:languages:python:flask
- Update to 2.1.3
  * Inline some optional imports that are only used for certain
    CLI commands. #4606
  * Relax type annotation for after_request functions. #4600
  * instance_path for namespace packages uses the path closest to
    the imported submodule. #4610
  * Clearer error message when render_template and render_template_string
    are used outside an application context. #4693
- Add python-Flask-rpmlintrc

OBS-URL: https://build.opensuse.org/request/show/989104
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=31
2022-07-18 16:32:51 +00:00
342db74404 - Add python-Flask-rpmlintrc
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=28
2022-07-14 08:21:11 +00:00
9494046d61 Accepting request 989056 from home:stroeder:branches:devel:languages:python:flask
Update to 2.1.3

OBS-URL: https://build.opensuse.org/request/show/989056
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=27
2022-07-14 08:13:33 +00:00
ca70ef0ec3 Accepting request 973776 from devel:languages:python:flask
OBS-URL: https://build.opensuse.org/request/show/973776
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=30
2022-05-01 16:53:24 +00:00
52365356a6 Accepting request 973757 from home:stroeder:python
Update to 2.1.2

OBS-URL: https://build.opensuse.org/request/show/973757
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=25
2022-04-28 21:52:36 +00:00
5e8f299b4c Accepting request 970586 from devel:languages:python:flask
OBS-URL: https://build.opensuse.org/request/show/970586
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=29
2022-04-23 17:45:18 +00:00
6c7827a0f0 Accepting request 970467 from home:bnavigator:branches:devel:languages:python:flask
- Update the build and runtime requirements.

OBS-URL: https://build.opensuse.org/request/show/970467
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=23
2022-04-18 09:28:43 +00:00
242bac7c13 Accepting request 966147 from home:stroeder:python
Update to 2.1.1

OBS-URL: https://build.opensuse.org/request/show/966147
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=22
2022-03-31 12:57:51 +00:00
d56caa1e2f - Fix deduplication.
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=21
2022-03-29 19:39:08 +00:00
0b3109ac11 Accepting request 965486 from home:stroeder:python
- Update to 2.1.0
  * Drop support for Python 3.6. #4335
  * Update Click dependency to >= 8.0. #4008

OBS-URL: https://build.opensuse.org/request/show/965486
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=20
2022-03-29 17:31:02 +00:00
8a0de7be04 Accepting request 954385 from devel:languages:python:flask
- Update to 2.0.3
  * The test client's ``as_tuple`` parameter is deprecated and will be
    removed in Werkzeug 2.1. It is now also deprecated in Flask, to be
    removed in Flask 2.1, while remaining compatible with both in
    2.0.x. Use ``response.request.environ`` instead. PR#4341
  * Fix type annotation for ``errorhandler`` decorator. #4295
  * Revert a change to the CLI that caused it to hide ``ImportError``
    tracebacks when importing the application. #4307
  * ``app.json_encoder`` and ``json_decoder`` are only passed to
    ``dumps`` and ``loads`` if they have custom behavior. This improves
    performance, mainly on PyPy. #4349
  * Clearer error message when ``after_this_request`` is used outside a
    request context. #4333

OBS-URL: https://build.opensuse.org/request/show/954385
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=28
2022-02-15 22:57:07 +00:00
4e4c15bbc0 Accepting request 954378 from home:stroeder:python
Update to 2.0.3

OBS-URL: https://build.opensuse.org/request/show/954378
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=19
2022-02-14 21:14:40 +00:00
5e156d4a14 Accepting request 924644 from devel:languages:python:flask
OBS-URL: https://build.opensuse.org/request/show/924644
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=27
2021-10-25 13:16:57 +00:00
1486eb2e19 Accepting request 924492 from home:stroeder:python
Update to 2.0.2

OBS-URL: https://build.opensuse.org/request/show/924492
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=18
2021-10-11 10:00:46 +00:00
John Vandenberg
17827950be Accepting request 923255 from home:schubi2
- Added BuildRequires:  alts

OBS-URL: https://build.opensuse.org/request/show/923255
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=17
2021-10-05 14:25:50 +00:00
John Vandenberg
84f52d520f Accepting request 922595 from home:schubi2
- Use libalternatives instead of update-alternatives.

OBS-URL: https://build.opensuse.org/request/show/922595
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=16
2021-10-02 04:19:11 +00:00
3a210a1485 Accepting request 901115 from devel:languages:python:flask
OBS-URL: https://build.opensuse.org/request/show/901115
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=26
2021-07-10 20:53:45 +00:00
0a1dd8c740 Accepting request 900944 from home:stroeder:python
Update to 2.0.1 (PY3-only)

OBS-URL: https://build.opensuse.org/request/show/900944
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=15
2021-06-21 09:58:31 +00:00
e29d49b73a Accepting request 809661 from devel:languages:python:flask
OBS-URL: https://build.opensuse.org/request/show/809661
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=25
2020-06-05 17:59:16 +00:00
Petr Cervinka
5587b44c9b Accepting request 809254 from home:pgajdos:python
submit

OBS-URL: https://build.opensuse.org/request/show/809254
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=13
2020-05-27 17:41:16 +00:00
0fbdff1df0 Accepting request 791758 from devel:languages:python:flask
OBS-URL: https://build.opensuse.org/request/show/791758
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=24
2020-04-09 21:14:07 +00:00
f0e7f8cac6 Accepting request 791247 from home:czerw:branches:devel:languages:python:flask
- Update to 1.1.2:
  * Work around an issue when running the flask command with an external
    debugger on Windows. :issue:`3297`
  * The static route will not catch all URLs if the Flask static_folder
    argument ends with a slash. :issue:`3452`
- Remove python38-exception-test.patch

OBS-URL: https://build.opensuse.org/request/show/791247
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=11
2020-04-06 12:01:42 +00:00
f4a1840213 Accepting request 752962 from devel:languages:python:flask
OBS-URL: https://build.opensuse.org/request/show/752962
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-Flask?expand=0&rev=23
2019-12-07 14:12:13 +00:00
Petr Cervinka
3a20773bfe Accepting request 752951 from home:glaubitz:branches:devel:languages:python:flask
- Fix build on SLE-12
  + Add python to BuildRequires for suse_version < 1500

OBS-URL: https://build.opensuse.org/request/show/752951
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:flask/python-Flask?expand=0&rev=9
2019-12-02 15:16:28 +00:00