1
0

12 Commits

Author SHA256 Message Date
1f4890adc5 Accepting request 1225087 from devel:languages:python
- update to 2.2.0:
  * Drop support for Python 3.7. :pr:`372`
  * Use modern packaging metadata with pyproject.toml instead of
    setup.cfg. :pr:`326`
  * Use flit_core instead of setuptools as build backend.
  * Deprecate the __version__ attribute. Use feature detection,
    or importlib.metadata.version("itsdangerous"), instead.
    :issue:`371`
  * Serializer and the return type of dumps is generic for type
    checking. By default it is Serializer[str] and dumps returns
    a str. If a different serializer argument is given, it will
    try to infer the return type of its dumps method.
    :issue:`347`
  * 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:`375`

OBS-URL: https://build.opensuse.org/request/show/1225087
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-itsdangerous?expand=0&rev=13
2024-11-20 15:59:17 +00:00
ba4fc3a39b - update to 2.2.0:
* Drop support for Python 3.7. :pr:`372`
  * Use modern packaging metadata with pyproject.toml instead of
    setup.cfg. :pr:`326`
  * Use flit_core instead of setuptools as build backend.
  * Deprecate the __version__ attribute. Use feature detection,
    or importlib.metadata.version("itsdangerous"), instead.
    :issue:`371`
  * Serializer and the return type of dumps is generic for type
    checking. By default it is Serializer[str] and dumps returns
    a str. If a different serializer argument is given, it will
    try to infer the return type of its dumps method.
    :issue:`347`
  * 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:`375`

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-itsdangerous?expand=0&rev=28
2024-11-19 12:24:35 +00:00
39ee8787f3 Accepting request 1111823 from devel:languages:python
- Switch to pyproject macros.
- Stop using greedy globs in %files.

OBS-URL: https://build.opensuse.org/request/show/1111823
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-itsdangerous?expand=0&rev=12
2023-09-22 19:46:43 +00:00
ad97195ca5 Accepting request 1081877 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/1081877
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-itsdangerous?expand=0&rev=11
2023-04-22 20:00:17 +00:00
7cd8943a70 Accepting request 972291 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/972291
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-itsdangerous?expand=0&rev=10
2022-04-26 18:14:48 +00:00
a0194fd817 Accepting request 964646 from devel:languages:python
- add 32bit-handle-overflow.patch 

- update to 2.1.1:
  * Handle date overflow in timed unsign. :pr:`296`
  * Drop support for Python 3.6. :pr:`272`
  * Remove previously deprecated code. :pr:`273`
    * JWS functionality: Use a dedicated library such as Authlib
      instead.
    * ``import itsdangerous.json``: Import ``json`` from the standard
      library instead.

OBS-URL: https://build.opensuse.org/request/show/964646
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-itsdangerous?expand=0&rev=9
2022-03-28 14:58:30 +00:00
9cda86d396 Accepting request 901105 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/901105
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-itsdangerous?expand=0&rev=8
2021-07-10 20:53:42 +00:00
c66dfc7cda Accepting request 709086 from devel:languages:python
OBS-URL: https://build.opensuse.org/request/show/709086
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-itsdangerous?expand=0&rev=7
2019-06-24 19:48:22 +00:00
fc08194d88 Accepting request 655849 from devel:languages:python
- Remove superfluous devel dependency for noarch package, but
  keep testsuite passing.

OBS-URL: https://build.opensuse.org/request/show/655849
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-itsdangerous?expand=0&rev=6
2018-12-14 19:46:49 +00:00
e4da464424 Accepting request 487846 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/487846
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-itsdangerous?expand=0&rev=5
2017-04-24 07:47:59 +00:00
97d9ef3652 Accepting request 441853 from devel:languages:python
Automatic submission by obs-autosubmit

OBS-URL: https://build.opensuse.org/request/show/441853
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-itsdangerous?expand=0&rev=4
2016-11-28 14:06:30 +00:00
Stephan Kulow
3859e23e23 Accepting request 241529 from devel:languages:python
1

OBS-URL: https://build.opensuse.org/request/show/241529
OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/python-itsdangerous?expand=0&rev=2
2014-07-19 06:16:30 +00:00
4 changed files with 28 additions and 8 deletions

BIN
itsdangerous-2.1.2.tar.gz (Stored with Git LFS)

Binary file not shown.

BIN
itsdangerous-2.2.0.tar.gz (Stored with Git LFS) Normal file

Binary file not shown.

View File

@@ -1,3 +1,23 @@
-------------------------------------------------------------------
Tue Nov 19 12:24:24 UTC 2024 - Dirk Müller <dmueller@suse.com>
- update to 2.2.0:
* Drop support for Python 3.7. :pr:`372`
* Use modern packaging metadata with pyproject.toml instead of
setup.cfg. :pr:`326`
* Use flit_core instead of setuptools as build backend.
* Deprecate the __version__ attribute. Use feature detection,
or importlib.metadata.version("itsdangerous"), instead.
:issue:`371`
* Serializer and the return type of dumps is generic for type
checking. By default it is Serializer[str] and dumps returns
a str. If a different serializer argument is given, it will
try to infer the return type of its dumps method.
:issue:`347`
* 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:`375`
-------------------------------------------------------------------
Mon Sep 18 04:40:32 UTC 2023 - Steve Kowalik <steven.kowalik@suse.com>

View File

@@ -1,7 +1,7 @@
#
# spec file for package python-itsdangerous
#
# Copyright (c) 2023 SUSE LLC
# Copyright (c) 2024 SUSE LLC
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
@@ -18,16 +18,16 @@
%{?sle15_python_module_pythons}
Name: python-itsdangerous
Version: 2.1.2
Version: 2.2.0
Release: 0
Summary: Various helpers to pass trusted data to untrusted environments and back
License: BSD-3-Clause
URL: https://itsdangerous.palletsprojects.com
Source: https://files.pythonhosted.org/packages/source/i/itsdangerous/itsdangerous-%{version}.tar.gz
BuildRequires: %{python_module flit-core}
BuildRequires: %{python_module freezegun}
BuildRequires: %{python_module pip}
BuildRequires: %{python_module pytest}
BuildRequires: %{python_module setuptools}
BuildRequires: %{python_module wheel}
BuildRequires: fdupes
BuildRequires: python-rpm-macros
@@ -61,8 +61,8 @@ Also I plan to add some extra things. Work in progress.
%pytest tests
%files %{python_files}
%license LICENSE.rst
%doc CHANGES.rst README.rst
%license LICENSE.txt
%doc CHANGES.rst README.md
%{python_sitelib}/itsdangerous
%{python_sitelib}/itsdangerous-%{version}.dist-info