Skip to content

Releases: libfuse/python-fuse

v1.0.9

18 Nov 06:59
Compare
Choose a tag to compare

What's Changed

  • Update AUTHORS by @jepler in #78
  • Demonstrate basic possibility to test with pytest by @jepler in #80
  • When getting string size, count UTF8 bytes by @jepler in #79
  • CI: add python 3.13 by @sdelafond in #81
  • pull PyCapsule_New() into the PYLOCK() section in poll_func() by @brgl in #83

New Contributors

Full Changelog: v1.0.8...v1.0.9

v1.0.8

13 Jun 09:11
Compare
Choose a tag to compare

What's Changed

  • Add README.cups.md by @glensc in #56
  • Do not unilaterally import distutils in setup.py by @s-t-e-v-e-n-k in #58
  • Add support for objects that support buffer protocol for "read" calls by @ericpruitt in #62
  • Remove trailing space on files by @glensc in #65
  • CI: Add workflow to build Python wheels by @glensc in #66
  • Fix setup.py uninitialized variables issue by @glensc in #68
  • Build sdist in CI by @glensc in #69
  • Add cp310 wheel to CI by @glensc in #72
  • CI: Add workaround for broken py 3.5 in GitHub Actions. by @glensc in #73

New Contributors

Full Changelog: v1.0.7...v1.0.8

v1.0.7

04 Dec 08:52
Compare
Choose a tag to compare

What's Changed

  • Suppress SyntaxWarnings in python3.12
  • Doc: Minor spelling fixes by @glensc in #53

v1.0.6

12 Nov 14:07
Compare
Choose a tag to compare

Python 3.12 compatibility.

v1.0.5

25 Apr 06:31
Compare
Choose a tag to compare

Fix issue with python 3.10 (thanks to Colin Watson cjwatson@debian.org for the patch).

v1.0.4

02 May 06:54
Compare
Choose a tag to compare
  • fix object leak in open_func()
  • fix temporary objects leak

v1.0.3

19 Feb 07:27
Compare
Choose a tag to compare
  • unbreak xmp.py for python2

v1.0.2

18 Feb 07:22
Compare
Choose a tag to compare
  • fix race in xmp.py (Carl Drougge)
  • fix surrogateescape handling in fsyncdir/readdir/write (Carl Drougge)

v1.0.1

18 Jan 09:37
Compare
Choose a tag to compare

Improve path handling for Python >= 3.6 (thanks to seahawk1986 for the patch)

v1.0.0

19 Jul 04:32
Compare
Choose a tag to compare

IOCTL definitions to fix compilation on FreeBSD (patch from Mikhail Zakharov zmey20000@yahoo.com)

Add poll support (patch from David Lechner david@lechnology.com)

Use bytes objects for read and write data: please note that while this has no effect on Python 2,it is a breaking change in Python 3; it's worth it however since it fixes a serious usability bug that arbitrarily limited file content to valid UTF-8 data (patch from David Lechner david@lechnology.com)