17
0

- update to 3.2.0:

* Add `reserved_name_handler` argument to `sanitize_filename`
    function and `sanitize_filepath` function
  * Add `NullValueHandler` class and `ReservedNameHandler` class
  * Add `fs_encoding` property and `byte_count` property to
    `ValidationError` class
  * Add `additional_reserved_names` argument to validate/sanitize
    functions to allow custom reserved names
  * Modify the return value format of `ValidationError.__str__`
    method
  * Improve type annotations
- update to 3.1.0:
  * Fix validation error messages to show the `target-platform`
    properly: #34 (Thanks to @matanster)
  * Fix README: out of date with the actual error generated by
    `validate_filename` #35 (Thanks to @hXtreme)
  * Add `description` property to `ErrorReason` class
  * Add `as_slog` method to `ValidationError` class
  * Add `docs` extras
  * Change the type of the return value of
    `ValidationError.reason` from `Optional[ErrorReason]` to
    `ErrorReason`
  * Update `[build-system]`
  * Drop support for Python 3.6

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-pathvalidate?expand=0&rev=15
This commit is contained in:
2023-12-09 10:07:13 +00:00
committed by Git OBS Bridge
parent 7cec2cd0a0
commit 9a38603d75
4 changed files with 33 additions and 5 deletions

View File

@@ -1,3 +0,0 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5ff57d0fabe5ecb7a4f1e4957bfeb5ad8ab5ab4c0fa71f79c6bbc24bd9b7d14d
size 26715

View File

@@ -0,0 +1,3 @@
version https://git-lfs.github.com/spec/v1
oid sha256:5e8378cf6712bff67fbe7a8307d99fa8c1a0cb28aa477056f8fc374f0dff24ad
size 31246

View File

@@ -1,3 +1,31 @@
-------------------------------------------------------------------
Sat Dec 9 10:06:13 UTC 2023 - Dirk Müller <dmueller@suse.com>
- update to 3.2.0:
* Add `reserved_name_handler` argument to `sanitize_filename`
function and `sanitize_filepath` function
* Add `NullValueHandler` class and `ReservedNameHandler` class
* Add `fs_encoding` property and `byte_count` property to
`ValidationError` class
* Add `additional_reserved_names` argument to validate/sanitize
functions to allow custom reserved names
* Modify the return value format of `ValidationError.__str__`
method
* Improve type annotations
- update to 3.1.0:
* Fix validation error messages to show the `target-platform`
properly: #34 (Thanks to @matanster)
* Fix README: out of date with the actual error generated by
`validate_filename` #35 (Thanks to @hXtreme)
* Add `description` property to `ErrorReason` class
* Add `as_slog` method to `ValidationError` class
* Add `docs` extras
* Change the type of the return value of
`ValidationError.reason` from `Optional[ErrorReason]` to
`ErrorReason`
* Update `[build-system]`
* Drop support for Python 3.6
-------------------------------------------------------------------
Fri Feb 24 12:52:28 UTC 2023 - Daniel Garcia <daniel.garcia@suse.com>

View File

@@ -16,9 +16,9 @@
#
%define skip_python2 1
%{?sle15_python_module_pythons}
Name: python-pathvalidate
Version: 2.5.2
Version: 3.2.0
Release: 0
Summary: Python library to sanitize/validate a string such as filenames
License: MIT