Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package python-hypothesis for openSUSE:Factory checked in at 2024-01-07 21:38:50 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/python-hypothesis (Old) and /work/SRC/openSUSE:Factory/.python-hypothesis.new.28375 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "python-hypothesis" Sun Jan 7 21:38:50 2024 rev:71 rq:1137295 version:6.92.2 Changes: -------- --- /work/SRC/openSUSE:Factory/python-hypothesis/python-hypothesis.changes 2023-12-28 22:54:45.055724554 +0100 +++ /work/SRC/openSUSE:Factory/.python-hypothesis.new.28375/python-hypothesis.changes 2024-01-07 21:38:51.496867479 +0100 @@ -1,0 +2,6 @@ +Sat Jan 6 20:28:21 UTC 2024 - Dirk Müller <dmuel...@suse.com> + +- update to 6.92.2: + * updates vendored list of top-level domains + +------------------------------------------------------------------- Old: ---- hypothesis-python-6.92.1.tar.gz New: ---- hypothesis-python-6.92.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ python-hypothesis.spec ++++++ --- /var/tmp/diff_new_pack.Hr8xdi/_old 2024-01-07 21:38:52.616908221 +0100 +++ /var/tmp/diff_new_pack.Hr8xdi/_new 2024-01-07 21:38:52.616908221 +0100 @@ -1,7 +1,7 @@ # # spec file # -# 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 @@ -37,7 +37,7 @@ %endif %{?sle15_python_module_pythons} Name: python-hypothesis%{psuffix} -Version: 6.92.1 +Version: 6.92.2 Release: 0 Summary: A library for property based testing License: MPL-2.0 ++++++ _service ++++++ --- /var/tmp/diff_new_pack.Hr8xdi/_old 2024-01-07 21:38:52.652909531 +0100 +++ /var/tmp/diff_new_pack.Hr8xdi/_new 2024-01-07 21:38:52.656909676 +0100 @@ -2,7 +2,7 @@ <service name="tar_scm" mode="manual"> <param name="url">https://github.com/HypothesisWorks/hypothesis.git</param> <param name="scm">git</param> - <param name="revision">hypothesis-python-6.92.1</param> + <param name="revision">hypothesis-python-6.92.2</param> <param name="versionformat">@PARENT_TAG@</param> <param name="versionrewrite-pattern">hypothesis-python-(.*)</param> <param name="subdir">hypothesis-python</param> ++++++ hypothesis-python-6.92.1.tar.gz -> hypothesis-python-6.92.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hypothesis-python-6.92.1/docs/changes.rst new/hypothesis-python-6.92.2/docs/changes.rst --- old/hypothesis-python-6.92.1/docs/changes.rst 2023-12-16 06:36:55.000000000 +0100 +++ new/hypothesis-python-6.92.2/docs/changes.rst 2023-12-27 02:25:09.000000000 +0100 @@ -18,13 +18,27 @@ .. include:: ../RELEASE.rst +.. _v6.92.2: + +------------------- +6.92.2 - 2023-12-27 +------------------- + +This patch updates our vendored `list of top-level domains <https://www.iana.org/domains/root/db>`__, +which is used by the provisional :func:`~hypothesis.provisional.domains` strategy. + .. _v6.92.1: ------------------- 6.92.1 - 2023-12-16 ------------------- -This patch fixes a bug introduced in :ref:`version 6.92.0 <v6.92.0>`, where using :func:`~python:dataclasses.dataclass` with a :class:`~python:collections.defaultdict` field as a strategy argument would error. +This patch fixes a bug introduced in :ref:`version 6.92.0 <v6.92.0>`, +where using the :func:`~hypothesis.strategies.data` strategy would fail +to draw a :func:`~python:dataclasses.dataclass` with a +:class:`~python:collections.defaultdict` field. This was due to a bug +in the standard library which `was fixed in 3.12 +<https://github.com/python/cpython/pull/32056>`__, so we've vendored the fix. .. _v6.92.0: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hypothesis-python-6.92.1/src/hypothesis/vendor/tlds-alpha-by-domain.txt new/hypothesis-python-6.92.2/src/hypothesis/vendor/tlds-alpha-by-domain.txt --- old/hypothesis-python-6.92.1/src/hypothesis/vendor/tlds-alpha-by-domain.txt 2023-12-16 06:36:55.000000000 +0100 +++ new/hypothesis-python-6.92.2/src/hypothesis/vendor/tlds-alpha-by-domain.txt 2023-12-27 02:25:09.000000000 +0100 @@ -1,4 +1,4 @@ -# Version 2023112500, Last Updated Sat Nov 25 07:07:01 2023 UTC +# Version 2023122300, Last Updated Sat Dec 23 07:07:01 2023 UTC AAA AARP ABB @@ -1016,7 +1016,6 @@ SBI SBS SC -SCA SCB SCHAEFFLER SCHMIDT diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/hypothesis-python-6.92.1/src/hypothesis/version.py new/hypothesis-python-6.92.2/src/hypothesis/version.py --- old/hypothesis-python-6.92.1/src/hypothesis/version.py 2023-12-16 06:36:55.000000000 +0100 +++ new/hypothesis-python-6.92.2/src/hypothesis/version.py 2023-12-27 02:25:09.000000000 +0100 @@ -8,5 +8,5 @@ # v. 2.0. If a copy of the MPL was not distributed with this file, You can # obtain one at https://mozilla.org/MPL/2.0/. -__version_info__ = (6, 92, 1) +__version_info__ = (6, 92, 2) __version__ = ".".join(map(str, __version_info__))