|
1 | 1 | # Notable Changes in OpenSlide Python
|
2 | 2 |
|
| 3 | +## Version 1.4.0, 2024-10-29 |
| 4 | + |
| 5 | +### New features |
| 6 | + |
| 7 | +* Support OpenSlide [installed from PyPI][] with `pip install openslide-bin` |
| 8 | +* Add type hints for Python ≥ 3.10 |
| 9 | +* Add wheels for Linux aarch64, Linux x86_64, and macOS arm64 + x86_64 |
| 10 | +* Build version-independent wheels on Python ≥ 3.11 |
| 11 | +* examples: Default `deepzoom_tile.py` job count to available CPUs when known |
| 12 | + |
| 13 | +### Changes |
| 14 | + |
| 15 | +* Drop wheel for 32-bit Windows |
| 16 | +* Require `AbstractSlide` subclasses to implement all abstract methods |
| 17 | +* Provide default `AbstractSlide.set_cache()` implementation |
| 18 | +* Switch to [PEP 621][] project metadata |
| 19 | +* docs: Document existence of `AbstractSlide` |
| 20 | +* examples: Update OpenSeadragon to 5.0.0 |
| 21 | + |
| 22 | +### Bug fixes |
| 23 | + |
| 24 | +* If OpenSlide cannot be loaded, report errors from all attempts |
| 25 | +* Fix `OpenSlide` support for `bytes` filename arguments (1.2.0 regression) |
| 26 | +* Disallow arbitrary types as `OpenSlide` filename arguments (1.2.0 regression) |
| 27 | +* Encode `OpenSlide` filename arguments using [Python filesystem encoding][] |
| 28 | +* Add error check to `OpenSlide.set_cache()` |
| 29 | +* docs: Fix types of properties that return tuples of items |
| 30 | + |
| 31 | +[installed from PyPI]: https://pypi.org/project/openslide-bin/ |
| 32 | +[PEP 621]: https://peps.python.org/pep-0621/ |
| 33 | +[Python filesystem encoding]: https://docs.python.org/3/glossary.html#term-filesystem-encoding-and-error-handler |
| 34 | + |
| 35 | + |
3 | 36 | ## Version 1.3.1, 2023-10-08
|
4 | 37 |
|
5 | 38 | * docs: Document using ICC profile's default intent, not absolute colorimetric
|
6 | 39 | * examples: Default to ICC profile's default intent, not absolute colorimetric
|
7 | 40 | * tests: Correctly require pytest ≥ 7.0
|
8 | 41 |
|
| 42 | + |
9 | 43 | ## Version 1.3.0, 2023-07-22
|
10 | 44 |
|
11 | 45 | * Support new soname in OpenSlide ≥ 4.0.0
|
|
21 | 55 | * examples: Correctly import `openslide` on Windows if `OPENSLIDE_PATH` not set
|
22 | 56 | * tests: Fix `pytest` of installed package from source directory
|
23 | 57 |
|
| 58 | + |
24 | 59 | ## Version 1.2.0, 2022-06-17
|
25 | 60 |
|
26 | 61 | * Drop support for Python \< 3.7
|
|
37 | 72 | * examples: Read OpenSlide DLL path from `OPENSLIDE_PATH` env var on Windows
|
38 | 73 | * examples: Update OpenSeadragon to 3.0.0
|
39 | 74 |
|
| 75 | + |
40 | 76 | ## Version 1.1.2, 2020-09-13
|
41 | 77 |
|
42 | 78 | * Fix install with setuptools ≥ 46
|
43 | 79 | * Fix `ImportError` with Python 3.9
|
44 | 80 | * Fix docs build with Sphinx 2.x
|
45 | 81 | * Remove `--without-performance` install option
|
46 | 82 |
|
| 83 | + |
47 | 84 | ## Version 1.1.1, 2016-06-11
|
48 | 85 |
|
49 | 86 | * Change default Deep Zoom tile size to 254 pixels
|
|
54 | 91 | * Add test suite
|
55 | 92 | * examples: Drop support for Internet Explorer \< 9
|
56 | 93 |
|
| 94 | + |
57 | 95 | ## Version 1.1.0, 2015-04-20
|
58 | 96 |
|
59 | 97 | * Improve pixel read performance using optional extension module
|
|
63 | 101 | * examples: Verify at server startup that file was specified
|
64 | 102 | * examples: Disable pinch zoom outside of viewer
|
65 | 103 |
|
| 104 | + |
66 | 105 | ## Version 1.0.1, 2014-03-09
|
67 | 106 |
|
68 | 107 | * Fix documentation build breakage
|
69 | 108 |
|
| 109 | + |
70 | 110 | ## Version 1.0.0, 2014-03-09
|
71 | 111 |
|
72 | 112 | * Add documentation
|
73 | 113 | * Switch from distutils to setuptools
|
74 | 114 | * Declare Pillow dependency in `setup.py` (but still support PIL)
|
75 | 115 |
|
| 116 | + |
76 | 117 | ## Version 0.5.1, 2014-01-26
|
77 | 118 |
|
78 | 119 | * Fix breakage on Python 2.6
|
79 | 120 | * examples: Fix tile server breakage on classic PIL
|
80 | 121 |
|
| 122 | + |
81 | 123 | ## Version 0.5.0, 2014-01-25
|
82 | 124 |
|
83 | 125 | * Require OpenSlide 3.4.0
|
|
93 | 135 | * examples: Avoid loading smallest Deep Zoom levels
|
94 | 136 | * examples: Update OpenSeadragon to 1.0.0
|
95 | 137 |
|
| 138 | + |
96 | 139 | ## Version 0.4.0, 2012-09-08
|
97 | 140 |
|
98 | 141 | * Require OpenSlide 3.3.0
|
|
101 | 144 | * Properly report `openslide_open()` errors on OpenSlide 3.3.0
|
102 | 145 | * Fix library loading on Mac OS X
|
103 | 146 |
|
| 147 | + |
104 | 148 | ## Version 0.3.0, 2011-12-16
|
105 | 149 |
|
106 | 150 | * Fix segfault if properties/associated images accessed after `OpenSlide`
|
|
110 | 154 | * Fix for large JPEG tiles in example Deep Zoom tilers
|
111 | 155 | * Make example static tiler output self-contained
|
112 | 156 |
|
| 157 | + |
113 | 158 | ## Version 0.2.0, 2011-09-02
|
114 | 159 |
|
115 | 160 | * Initial library release
|
|
0 commit comments