pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/www/py-flask-limiter
Module Name: pkgsrc
Committed By: wiz
Date: Sun Nov 5 20:20:54 UTC 2023
Modified Files:
pkgsrc/www/py-flask-limiter: Makefile PLIST distinfo
Log Message:
py-Flask-Limiter: update to 3.5.0.
v3.5.0
------
Release Date: 2023-08-30
* Feature
* Add `meta_limits` to allow for creating upper limits for
requesting clients to breach application rate limits.
* Bug fix
* Ensure on breach callbacks can be configured using flask config
v3.4.1
------
Release Date: 2023-08-26
* Bug fix
- Ensure _version.py has stable content when generated
using `git archive` from a tag regardless of when it is
run.
v3.4.0
------
Release Date: 2023-08-22
* Feature
* Add extended configuration for application limits
* `application_limits_exempt_when`
* `application_limits_deduct_when`
* `application_limits_per_method`
* Bug fix
* Ensure blueprint static routes are exempt
v3.3.1
------
Release Date: 2023-05-03
* Chores
* Improve default limits documentation
* Update documentation dependencies
* Fix typing compatibility errors in headers
v3.3.0
------
Release Date: 2023-02-26
* Bug Fix
* Ensure per route limits are preferred (over application limits)
when populating rate limiting headers in the case where no rate limit has been
breached in the request.
v3.2.0
------
Release Date: 2023-02-15
* Feature
* Allow configuring request identity
* Chores
* Improve linting with ruff
* Update development dependencies
v3.1.0
------
Release Date: 2022-12-29
* Feature
* Skip logging an error if a decorated limit uses a callable
to return the "current" rate limit and returns an empty string.
Treat this is a signal that the rate limit should be skipped for
this request.
v3.0.0
------
Release Date: 2022-12-28
* Breaking changes
* Change order of extension constructor arguments to only require
``key_func`` as the first positional argument and all other arguments
as keyword arguments.
* Separate positional/keyword arguments in limit/shared_limit decorators
* Remove deprecated config variable RATELIMIT_STORAGE_URL
* Remove legacy backward compatibility path for flask < 2
* Features
* Allow scoping regular limit decorators / context managers
v3.0.0b2
--------
Release Date: 2022-12-28
* Breaking changes
* Remove deprecated config variable RATELIMIT_STORAGE_URL
* Remove legacy backward compatibility path for flask < 2
* Enforce key_func as a required argument
* Chores
* Simplify registration of decorated function & blueprint limits
v3.0.0b1
--------
Release Date: 2022-12-26
* Breaking changes
* Change order of extension constructor arguments to only require
``key_func`` as the first positional argument and all other arguments
as keyword arguments.
* Separate positional/keyword arguments in limit/shared_limit decorators
* Features
* Allow scoping regular limit decorators / context managers
v2.9.2
------
Release Date: 2022-12-26
* Feature
* Extend customization by http method to shared_limit decorator
v2.9.1
------
Release Date: 2022-12-26
* Chores
* Update documentation quick start
* Refresh documentation for class based views
v2.9.0
------
Release Date: 2022-12-24
* Features
* Allow using `limit` & `shared_limit` decorators on pure
functions that are not decorated as routes. The functions
when called from within a request context will get rate limited.
* Allow using `limit` as a context manager to rate limit a code block
explicitly within a request
* Chores
* Updated development dependencies
* Fix error running tests depending on docker locally
* Update internals to use dataclasses
v2.8.1
------
Release Date: 2022-11-15
* Chores
* Add sponsorship banner to rtd
* Update documentation dependencies
v2.8.0
------
Release Date: 2022-11-13
* Breaking changes
* Any exception raised when calling an ``on_breach`` callback will
be re-raised instead of being absorbed unless ``swallow_errors`` is set.
In the case of ``swallow_errors`` the exception will now be logged
at ``ERROR`` level instead of ``WARN``
* Reduce log level of rate limit exceeded log messages to ``INFO``
v2.7.0
------
Release Date: 2022-10-25
* Bug Fix
* Add default value for RateLimitExceeded optional parameter
* Fix suppression of errors when using conditional deduction (`Issue 363 <https://github.com/alisaifee/flask-limiter/issues/363>`_)
v2.6.3
------
Release Date: 2022-09-22
* Compatibility
* Ensure typing_extensions dependency has a minimum version
* Chores
* Documentation tweaks
* Update CI to use 3.11 rc2
v2.6.2
------
Release Date: 2022-08-24
* Chores
* Improve quick start documentation
v2.6.1
------
Release Date: 2022-08-23
* Usability
* Emit warning when in memory storage is used as a default
when no storage uri is provided
v2.6.0
------
Release Date: 2022-08-11
* Feature
* Expand use of ``on_breach`` callback to return a ``Response``
object that will be used as the error response on rate limits
being exceeded
v2.5.1
------
Release Date: 2022-08-05
* Compatibility
* Migrate use of `flask._request_ctx_stack` to `flask.globals.request_ctx`
to support Flask 2.2+
* Chores
* Expand CI matrix to test against Flask 2.0,2.1 & 2.2
* Make tests compatible with Flask 2.2.+
v2.5.0
------
Release Date: 2022-07-07
* Features
* Ensure multiple extension instances registered
on a single application exercise before/after request
hooks
* Chores
* Improve documentation
v2.4.6
------
Release Date: 2022-06-06
* Chore
* Add python 3.11 to CI matrix
v2.4.5.1
--------
Release Date: 2022-04-22
* Chore
* Automate github releases
v2.4.5
------
Release Date: 2022-04-21
* Chore
* Automate github releases
v2.4.4
------
Release Date: 2022-04-21
* Chore
* Automate github releases
v2.4.3
------
Release Date: 2022-04-21
* Chore
* Second attempt to generate release notes
v2.4.2
------
Release Date: 2022-04-21
* Chore
* Test for automating github release notes
v2.4.1
------
Release Date: 2022-04-21
* Chore
* Automate github releases
v2.4.0
------
Release Date: 2022-04-20
* Feature
* Add CLI for inspecting & clearing rate limits
* Bug Fix
* Ensure exempt decorator can be used with flags for view functions
* Chores
* Refactor rate limit resolution to limit manager
v2.3.3
------
Release Date: 2022-04-20
* Bug Fix
* Ensure `request.blueprint` is actually registered on the current app before
using it for blueprint limits or exemptions. (`Issue 336 <https://github.com/alisaifee/flask-limiter/issues/336>`_)
v2.3.2
------
Release Date: 2022-04-17
* Feature
* Extend cost parameter to default & application limits
* Chore
* Improve type strictness / checking
* Improve documentation on landing page
v2.3.1
------
Release Date: 2022-04-14
* Bug Fixes
* Add missing extras requirements for installation
* Add py.typed for PEP 561 compliance
v2.3.0
------
Release Date: 2022-04-11
* Features
* Expose option to register a callback for rate limit breaches
of default limits via the :paramref:`~flask_limiter.Limiter.on_breach`
constructor parameter
* Replace use of `flask.g` with request context for keeping track of
extension state (:issue:`327`)
* Rework implementation of :meth:`~flask_limiter.Limiter.exempt` to accomodate
nested blueprints. (:issue:`326`)
* Chores
* Add python 3.11 to CI
* Extract management and filtering of limits to LimitManager
* Improve correctness of resolving inherited limits & extensions
when working with Blueprints (especially nested ones)
v2.2.0
------
Release Date: 2022-03-05
* Feature
* Allow a function to be used for the ``cost`` parameter
to limiter decorators.
v2.1.3
------
Release Date: 2022-01-30
* Chore
* Update documentation theme
v2.1
----
Release Date: 2022-01-15
* Feature
* Add ``current_limit`` attribute to extension to
allow clients to fetch the relevant current limit
that was evaluated.
* Update extension constructor parameters to match
flask config for header control
* Add ``on_breach`` callback for ``limit`` and ``shared_limit``
decorators to be used as hooks for when a limit is breached
* Add ``cost`` argument to ``limit`` and ``shared_limit`` to control
how much is deducted when a hit occurs.
* Chore
* Improve documentation around configuration
* Deprecation
* Remove hacks for managing incorrectly ordered
limit/route decorators
v2.0.4
------
Release Date: 2021-12-22
* Chore
* Documentation theme upgrades
* Integrate pytest-docker plugin
* Mass linting
* Deprecation
* Removed deprecated RATELIMIT_GLOBAL config
* Added deprecation doc for RATELIMIT_STORAGE_URL config
v2.0.3
------
Release Date: 2021-12-15
Documentation & test tweaks
v2.0.2
------
Release Date: 2021-11-28
* Features
* Pin Flask, limits to >= 2
* Add type hints
v2.0.1
------
Release Date: 2021-11-28
* Deprecations
* Remove deprecated get_ipaddr method
* Remove use of six
* Remove backward compatibility hacks for RateLimit exceptions
v2.0.0
------
Release Date: 2021-11-27
Drop support for python < 3.7 & Flask < 2.0
v1.5
----
Release Date: 2021-11-27
Final Release for python < 3.7
* Features
* Prepend ``key_prefix`` to extension variables attached to ``g``
* Expose ``g.view_limits``
v1.4
----
Release Date: 2020-08-25
* Bug Fix
* Always set headers for conditional limits
* Skip init_app sequence when the rate limiter is disabled
v1.3.1
------
Release Date: 2020-05-21
* Bug Fix
* Ensure headers provided explictely by setting `_header_mapping`
take precedence over configuration values.
v1.3
----
Release Date: 2020-05-20
* Features
* Add new ``deduct_when`` argument that accepts a function to decorated limits
to conditionally perform depletion of a rate limit (`Pull Request 248 <https://github.com/alisaifee/flask-limiter/pull/248>`_)
* Add new ``default_limits_deduct_when`` argument to Limiter constructor to
conditionally perform depletion of default rate limits
* Add ``default_limits_exempt_when`` argument that accepts a function to
allow skipping the default limits in the ``before_request`` phase
* Bug Fix
* Fix handling of storage failures during ``after_request`` phase.
* Code Quality
* Use github-actions instead of travis for CI
* Use pytest instaad of nosetests
* Add docker configuration for test dependencies
* Increase code coverage to 100%
* Ensure pyflake8 compliance
v1.2.1
------
Release Date: 2020-02-26
* Bug fix
* Syntax error in version 1.2.0 when application limits are provided through
configuration file (`Issue 241 <https://github.com/alisaifee/flask-limiter/issues/241>`_)
v1.2.0
------
Release Date: 2020-02-25
* Add `override_defaults` argument to decorated limits to allow combinined defaults with decorated limits.
* Add configuration parameter RATELIMIT_DEFAULTS_PER_METHOD to control whether defaults are applied per method.
* Add support for in memory fallback without override (`Pull Request 236 <https://github.com/alisaifee/flask-limiter/pull/236>`_)
* Bug fix
* Ensure defaults are enforced when decorated limits are skipped (`Issue 238 <https://github.com/alisaifee/flask-limiter/issues/238>`_)
v1.1.0
------
Release Date: 2019-10-02
* Provide Rate limit information with Exception (`Pull Request 202 <https://github.com/alisaifee/flask-limiter/pull/202>`_)
* Respect existing Retry-After header values (`Pull Request 143 <https://github.com/alisaifee/flask-limiter/pull/143>`_)
* Documentation improvements
To generate a diff of this commit:
cvs rdiff -u -r1.8 -r1.9 pkgsrc/www/py-flask-limiter/Makefile
cvs rdiff -u -r1.4 -r1.5 pkgsrc/www/py-flask-limiter/PLIST
cvs rdiff -u -r1.6 -r1.7 pkgsrc/www/py-flask-limiter/distinfo
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: pkgsrc/www/py-flask-limiter/Makefile
diff -u pkgsrc/www/py-flask-limiter/Makefile:1.8 pkgsrc/www/py-flask-limiter/Makefile:1.9
--- pkgsrc/www/py-flask-limiter/Makefile:1.8 Fri Apr 29 11:56:45 2022
+++ pkgsrc/www/py-flask-limiter/Makefile Sun Nov 5 20:20:54 2023
@@ -1,8 +1,7 @@
-# $NetBSD: Makefile,v 1.8 2022/04/29 11:56:45 wiz Exp $
+# $NetBSD: Makefile,v 1.9 2023/11/05 20:20:54 wiz Exp $
-DISTNAME= Flask-Limiter-1.0.1
+DISTNAME= Flask-Limiter-3.5.0
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
-PKGREVISION= 1
CATEGORIES= www python
MASTER_SITES= ${MASTER_SITE_PYPI:=F/Flask-Limiter/}
@@ -11,15 +10,18 @@ HOMEPAGE= https://flask-limiter.readthed
COMMENT= Rate limiting for flask applications
LICENSE= mit
-DEPENDS+= ${PYPKGPREFIX}-flask>=0.8:../../www/py-flask
-DEPENDS+= ${PYPKGPREFIX}-limits-[0-9]*:../../devel/py-limits
-DEPENDS+= ${PYPKGPREFIX}-six>=1.4.1:../../lang/py-six
+TOOL_DEPENDS+= ${PYPKGPREFIX}-wheel>=0:../../devel/py-wheel
+DEPENDS+= ${PYPKGPREFIX}-flask>=2:../../www/py-flask
+DEPENDS+= ${PYPKGPREFIX}-ordered-set>=4:../../devel/py-ordered-set
+DEPENDS+= ${PYPKGPREFIX}-rich>=12:../../comms/py-rich
+DEPENDS+= ${PYPKGPREFIX}-typing-extensions>=4:../../devel/py-typing-extensions
+DEPENDS+= ${PYPKGPREFIX}-limits>=2.8:../../devel/py-limits
+TEST_DEPENDS+= ${PYPKGPREFIX}-flask-restful>=0:../../www/py-flask-restful
+# also needs unpackaged 'hiro' for testing
USE_LANGUAGES= # none
PYTHON_VERSIONS_INCOMPATIBLE= 27
-EGG_NAME= ${DISTNAME:S/-/_/1}
-
-.include "../../lang/python/egg.mk"
+.include "../../lang/python/wheel.mk"
.include "../../mk/bsd.pkg.mk"
Index: pkgsrc/www/py-flask-limiter/PLIST
diff -u pkgsrc/www/py-flask-limiter/PLIST:1.4 pkgsrc/www/py-flask-limiter/PLIST:1.5
--- pkgsrc/www/py-flask-limiter/PLIST:1.4 Wed Jan 3 07:46:56 2018
+++ pkgsrc/www/py-flask-limiter/PLIST Sun Nov 5 20:20:54 2023
@@ -1,22 +1,44 @@
-@comment $NetBSD: PLIST,v 1.4 2018/01/03 07:46:56 adam Exp $
-${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
-${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
-${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
-${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
-${PYSITELIB}/${EGG_INFODIR}/requires.txt
-${PYSITELIB}/${EGG_INFODIR}/top_level.txt
+@comment $NetBSD: PLIST,v 1.5 2023/11/05 20:20:54 wiz Exp $
+${PYSITELIB}/${WHEEL_INFODIR}/LICENSE.txt
+${PYSITELIB}/${WHEEL_INFODIR}/METADATA
+${PYSITELIB}/${WHEEL_INFODIR}/RECORD
+${PYSITELIB}/${WHEEL_INFODIR}/WHEEL
+${PYSITELIB}/${WHEEL_INFODIR}/entry_points.txt
+${PYSITELIB}/${WHEEL_INFODIR}/top_level.txt
${PYSITELIB}/flask_limiter/__init__.py
${PYSITELIB}/flask_limiter/__init__.pyc
${PYSITELIB}/flask_limiter/__init__.pyo
+${PYSITELIB}/flask_limiter/_compat.py
+${PYSITELIB}/flask_limiter/_compat.pyc
+${PYSITELIB}/flask_limiter/_compat.pyo
${PYSITELIB}/flask_limiter/_version.py
${PYSITELIB}/flask_limiter/_version.pyc
${PYSITELIB}/flask_limiter/_version.pyo
+${PYSITELIB}/flask_limiter/commands.py
+${PYSITELIB}/flask_limiter/commands.pyc
+${PYSITELIB}/flask_limiter/commands.pyo
+${PYSITELIB}/flask_limiter/constants.py
+${PYSITELIB}/flask_limiter/constants.pyc
+${PYSITELIB}/flask_limiter/constants.pyo
+${PYSITELIB}/flask_limiter/contrib/__init__.py
+${PYSITELIB}/flask_limiter/contrib/__init__.pyc
+${PYSITELIB}/flask_limiter/contrib/__init__.pyo
+${PYSITELIB}/flask_limiter/contrib/util.py
+${PYSITELIB}/flask_limiter/contrib/util.pyc
+${PYSITELIB}/flask_limiter/contrib/util.pyo
${PYSITELIB}/flask_limiter/errors.py
${PYSITELIB}/flask_limiter/errors.pyc
${PYSITELIB}/flask_limiter/errors.pyo
${PYSITELIB}/flask_limiter/extension.py
${PYSITELIB}/flask_limiter/extension.pyc
${PYSITELIB}/flask_limiter/extension.pyo
+${PYSITELIB}/flask_limiter/manager.py
+${PYSITELIB}/flask_limiter/manager.pyc
+${PYSITELIB}/flask_limiter/manager.pyo
+${PYSITELIB}/flask_limiter/py.typed
+${PYSITELIB}/flask_limiter/typing.py
+${PYSITELIB}/flask_limiter/typing.pyc
+${PYSITELIB}/flask_limiter/typing.pyo
${PYSITELIB}/flask_limiter/util.py
${PYSITELIB}/flask_limiter/util.pyc
${PYSITELIB}/flask_limiter/util.pyo
Index: pkgsrc/www/py-flask-limiter/distinfo
diff -u pkgsrc/www/py-flask-limiter/distinfo:1.6 pkgsrc/www/py-flask-limiter/distinfo:1.7
--- pkgsrc/www/py-flask-limiter/distinfo:1.6 Tue Oct 26 11:30:38 2021
+++ pkgsrc/www/py-flask-limiter/distinfo Sun Nov 5 20:20:54 2023
@@ -1,5 +1,5 @@
-$NetBSD: distinfo,v 1.6 2021/10/26 11:30:38 nia Exp $
+$NetBSD: distinfo,v 1.7 2023/11/05 20:20:54 wiz Exp $
-BLAKE2s (Flask-Limiter-1.0.1.tar.gz) = 787a607f8d5e73cfbc2cc9727e41df6ad30848bca3c2fa54573e242b3083d327
-SHA512 (Flask-Limiter-1.0.1.tar.gz) = f50af269d47ddd5627cbeab60cecbf5ba64dd90ab2b0aade90d0081f5024e6b190f875dc143547e65b41e05dd3619c733004f96234e025cdc4e4323507f8b476
-Size (Flask-Limiter-1.0.1.tar.gz) = 89366 bytes
+BLAKE2s (Flask-Limiter-3.5.0.tar.gz) = 2f48988a23e69c4cdbdd6523a638dbc22f0380768a9748e2a76cbfc921c0eb25
+SHA512 (Flask-Limiter-3.5.0.tar.gz) = ceb1700e580a25ae841a4890e34bd2869efe8ad832d964490178679a2f6e4f52233305381decdf7a94b173ee7156ede7667fe460bc741fc4b7dce4b35c6fcd1c
+Size (Flask-Limiter-3.5.0.tar.gz) = 301919 bytes
Home |
Main Index |
Thread Index |
Old Index