Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package Radicale for openSUSE:Factory checked in at 2022-05-02 16:25:37 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/Radicale (Old) and /work/SRC/openSUSE:Factory/.Radicale.new.1538 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "Radicale" Mon May 2 16:25:37 2022 rev:7 rq:974280 version:3.1.7 Changes: -------- --- /work/SRC/openSUSE:Factory/Radicale/Radicale.changes 2022-04-20 16:55:18.286509541 +0200 +++ /work/SRC/openSUSE:Factory/.Radicale.new.1538/Radicale.changes 2022-05-02 16:25:42.604847581 +0200 @@ -1,0 +2,6 @@ +Mon Apr 25 06:20:20 UTC 2022 - ??kos Sz??ts <[email protected]> + +- Update to 3.1.7 + * Fix random href fallback + +------------------------------------------------------------------- Old: ---- Radicale-3.1.6.tar.gz New: ---- Radicale-3.1.7.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ Radicale.spec ++++++ --- /var/tmp/diff_new_pack.QTE3ZI/_old 2022-05-02 16:25:43.176848217 +0200 +++ /var/tmp/diff_new_pack.QTE3ZI/_new 2022-05-02 16:25:43.180848222 +0200 @@ -26,7 +26,7 @@ %define vo_min_ver 0.9.6 %define du_min_ver 2.7.3 Name: Radicale -Version: 3.1.6 +Version: 3.1.7 Release: 0 Summary: A CalDAV calendar and CardDav contact server License: GPL-3.0-or-later ++++++ Radicale-3.1.6.tar.gz -> Radicale-3.1.7.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Radicale-3.1.6/CHANGELOG.md new/Radicale-3.1.7/CHANGELOG.md --- old/Radicale-3.1.6/CHANGELOG.md 2022-04-18 23:10:01.000000000 +0200 +++ new/Radicale-3.1.7/CHANGELOG.md 2022-04-20 17:57:41.000000000 +0200 @@ -1,5 +1,9 @@ # Changelog +## 3.1.7 + +* Fix random href fallback + ## 3.1.6 * Ignore `Not a directory` error for optional config paths diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Radicale-3.1.6/radicale/item/__init__.py new/Radicale-3.1.7/radicale/item/__init__.py --- old/Radicale-3.1.6/radicale/item/__init__.py 2022-04-18 23:10:01.000000000 +0200 +++ new/Radicale-3.1.7/radicale/item/__init__.py 2022-04-20 17:57:41.000000000 +0200 @@ -245,8 +245,8 @@ r[:8], r[8:12], r[12:16], r[16:20], r[20:], suffix) if not exists_fn(name): return name - # something is wrong with the PRNG - raise RuntimeError("No unique random sequence found") + # Something is wrong with the PRNG or `exists_fn` + raise RuntimeError("No available random UID found") def get_etag(text: str) -> str: diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Radicale-3.1.6/radicale/storage/multifilesystem/upload.py new/Radicale-3.1.7/radicale/storage/multifilesystem/upload.py --- old/Radicale-3.1.6/radicale/storage/multifilesystem/upload.py 2022-04-18 23:10:01.000000000 +0200 +++ new/Radicale-3.1.7/radicale/storage/multifilesystem/upload.py 2022-04-20 17:57:41.000000000 +0200 @@ -71,7 +71,8 @@ radicale_item.get_etag(uid).strip('"') + suffix]: if is_safe_free_href(href): yield href - yield radicale_item.find_available_uid(is_safe_free_href, suffix) + yield radicale_item.find_available_uid( + lambda href: not is_safe_free_href(href), suffix) cache_folder = os.path.join(self._filesystem_path, ".Radicale.cache", "item") diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/Radicale-3.1.6/setup.py new/Radicale-3.1.7/setup.py --- old/Radicale-3.1.6/setup.py 2022-04-18 23:10:01.000000000 +0200 +++ new/Radicale-3.1.7/setup.py 2022-04-20 17:57:41.000000000 +0200 @@ -43,7 +43,7 @@ # When the version is updated, a new section in the CHANGELOG.md file must be # added too. -VERSION = "3.1.6" +VERSION = "3.1.7" WEB_FILES = ["web/internal_data/css/icon.png", "web/internal_data/css/main.css", "web/internal_data/fn.js",
