15
0

Accepting request 1082836 from home:jayvdb:branches:devel:languages:python

- Update to v3.12.0

OBS-URL: https://build.opensuse.org/request/show/1082836
OBS-URL: https://build.opensuse.org/package/show/devel:languages:python/python-filelock?expand=0&rev=24
This commit is contained in:
2023-04-27 21:50:09 +00:00
committed by Git OBS Bridge
parent 947b633a00
commit 000b45a580
4 changed files with 34 additions and 5 deletions

View File

@@ -1,3 +1,31 @@
-------------------------------------------------------------------
Tue Apr 25 23:29:13 UTC 2023 - John Vandenberg <jayvdb@gmail.com>
- Update to v3.12.0
* Make the thread local behaviour something the caller can
enable/disable via a flag during the lock creation. on by default.
* Better error handling on Windows.
- from v3.11.0
* Make the lock thread local.
- from v3.10.7
* Use fchmod instead of chmod to work around bug in PyPy via Anaconda.
- from v3.10.6
* Enhance the robustness of the try/catch block in _soft.py.
- from v3.10.5
* Add explicit error check as certain UNIX filesystems do not support
flock.
- from v3.10.4
* Update os.open to preserve mode= for certain edge cases.
- from v3.10.3
* Fix permission issue
- from v3.10.2
* Bug fix for using filelock with threaded programs causing undesired
file permissions
- from v3.10.1
* Handle pickle for :class:`filelock.Timeout`
- from v3.10.0
* Add support for explicit file modes for lockfiles
-------------------------------------------------------------------
Fri Apr 21 12:25:04 UTC 2023 - Dirk Müller <dmueller@suse.com>