-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChangeLog
353 lines (247 loc) · 8.02 KB
/
ChangeLog
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
v5.6.0
======
* #244: Add type declarations in ABCs.
v5.5.0
======
* Require Python 3.7 or later.
* #243: Fix error when no ``__pycache__`` directories exist
when testing ``update-zips``.
v5.4.0
======
* #80: Test suite now relies entirely on the traversable
API.
v5.3.0
======
* #80: Now raise a ``DeprecationWarning`` for all legacy
functions. Instead, users should rely on the ``files()``
API introduced in importlib_resources 1.3. See
`Migrating from Legacy <https://importlib-resources.readthedocs.io/en/latest/using.html#migrating-from-legacy>`_
for guidance on avoiding the deprecated functions.
v5.2.3
======
* Updated readme to reflect current behavior and show
which versions correspond to which behavior in CPython.
v5.0.7
======
* bpo-45419: Correct ``DegenerateFiles.Path`` ``.name``
and ``.open()`` interfaces to match ``Traversable``.
v5.2.2
======
* #234: Fix refleak in ``as_file`` caught by CPython tests.
v5.2.1
======
* bpo-38291: Avoid DeprecationWarning on ``typing.io``.
v5.2.0
======
* #80 via #221: Legacy API (``path``, ``contents``, ...)
is now supported entirely by the ``.files()`` API with
a compatibility shim supplied for resource loaders without
that functionality.
v5.0.6
======
* bpo-38693: Prefer f-strings to ``.format`` calls.
v5.1.4
======
* #225: Require
`zipp 3.1.0 <https://zipp.readthedocs.io/en/latest/history.html#v3-1-0>`_
or later on Python prior to 3.10 to incorporate those fixes.
v5.0.5
======
* #216: Make MultiplexedPath.name a property per the
spec.
v5.1.3
======
* Refresh packaging and improve tests.
* #216: Make MultiplexedPath.name a property per the
spec.
v5.1.2
======
* Re-release with changes from 5.0.4.
v5.0.4
======
* Fixed non-hermetic test in test_reader, revealed by
GH-24670.
v5.1.1
======
* Re-release with changes from 5.0.3.
v5.0.3
======
* Simplified DegenerateFiles.Path.
v5.0.2
======
* #214: Added ``_adapters`` module to ensure that degenerate
``files`` behavior can be made available for legacy loaders
whose resource readers don't implement it. Fixes issue where
backport compatibility module was masking this fallback
behavior only to discover the defect when applying changes to
CPython.
v5.1.0
======
* Added ``simple`` module implementing adapters from
a low-level resource reader interface to a
``TraversableResources`` interface. Closes #90.
v5.0.1
======
* Remove pyinstaller hook for hidden 'trees' module.
v5.0.0
======
* Removed ``importlib_resources.trees``, deprecated since 1.3.0.
v4.1.1
======
* Fixed badges in README.
v4.1.0
======
* #209: Adopt
`jaraco/skeleton <https://github.com/jaraco/skeleton>`_.
* Cleaned up some straggling Python 2 compatibility code.
* Refreshed test zip files without .pyc and .pyo files.
v4.0.0
======
* #108: Drop support for Python 2.7. Now requires Python 3.6+.
v3.3.1
======
* Minor cleanup.
v3.3.0
======
* #107: Drop support for Python 3.5. Now requires Python 2.7 or 3.6+.
v3.2.1
======
* #200: Minor fixes and improved tests for namespace package support.
v3.2.0
======
* #68: Resources in PEP 420 Namespace packages are now supported.
v3.1.1
======
* bpo-41490: ``contents`` is now also more aggressive about
consuming any iterator from the ``Reader``.
v3.1.0
======
* #110 and bpo-41490: ``path`` method is more aggressive about
releasing handles to zipfile objects early, enabling use-cases
like ``certifi`` to leave the context open but delete the underlying
zip file.
v3.0.0
======
* Package no longer exposes ``importlib_resources.__version__``.
Users that wish to inspect the version of ``importlib_resources``
should instead invoke ``.version('importlib_resources')`` from
``importlib-metadata`` (
`stdlib <https://docs.python.org/3/library/importlib.metadata.html>`_
or `backport <https://pypi.org/project/importlib-metadata>`_)
directly. This change eliminates the dependency on
``importlib_metadata``. Closes #100.
* Package now always includes its data. Closes #93.
* Declare hidden imports for PyInstaller. Closes #101.
v2.0.1
======
* Select pathlib and contextlib imports based on Python version
and avoid pulling in deprecated
[pathlib](https://pypi.org/project/pathlib). Closes #97.
v2.0.0
======
* Loaders are no longer expected to implement the
``abc.TraversableResources`` interface, but are instead
expected to return ``TraversableResources`` from their
``get_resource_reader`` method.
v1.5.0
======
* Traversable is now a Protocol instead of an Abstract Base
Class (Python 2.7 and Python 3.8+).
* Traversable objects now require a ``.name`` property.
v1.4.0
======
* #79: Temporary files created will now reflect the filename of
their origin.
v1.3.1
======
* For improved compatibility, ``importlib_resources.trees`` is
now imported implicitly. Closes #88.
v1.3.0
======
* Add extensibility support for non-standard loaders to supply
``Traversable`` resources. Introduces a new abstract base
class ``abc.TraversableResources`` that supersedes (but
implements for compatibility) ``abc.ResourceReader``. Any
loader that implements (implicitly or explicitly) the
``TraversableResources.files`` method will be capable of
supplying resources with subdirectory support. Closes #77.
* Preferred way to access ``as_file`` is now from top-level module.
``importlib_resources.trees.as_file`` is deprecated and discouraged.
Closes #86.
* Moved ``Traversable`` abc to ``abc`` module. Closes #87.
v1.2.0
======
* Traversable now requires an ``open`` method. Closes #81.
* Fixed error on ``Python 3.5.{0,3}``. Closes #83.
* Updated packaging to resolve version from package metadata.
Closes #82.
v1.1.0
======
* Add support for retrieving resources from subdirectories of packages
through the new ``files()`` function, which returns a ``Traversable``
object with ``joinpath`` and ``read_*`` interfaces matching those
of ``pathlib.Path`` objects. This new function supersedes all of the
previous functionality as it provides a more general-purpose access
to a package's resources.
With this function, subdirectories are supported (Closes #58).
The
documentation has been updated to reflect that this function is now
the preferred interface for loading package resources. It does not,
however, support resources from arbitrary loaders. It currently only
supports resources from file system path and zipfile packages (a
consequence of the ResourceReader interface only operating on
Python packages).
1.0.2
=====
* Fix ``setup_requires`` and ``install_requires`` metadata in ``setup.cfg``.
Given by Anthony Sottile.
1.0.1
=====
* Update Trove classifiers. Closes #63
1.0
===
* Backport fix for test isolation from Python 3.8/3.7. Closes #61
0.8
===
* Strip ``importlib_resources.__version__``. Closes #56
* Fix a metadata problem with older setuptools. Closes #57
* Add an ``__all__`` to ``importlib_resources``. Closes #59
0.7
===
* Fix ``setup.cfg`` metadata bug. Closes #55
0.6
===
* Move everything from ``pyproject.toml`` to ``setup.cfg``, with the added
benefit of fixing the PyPI metadata. Closes #54
* Turn off mypy's ``strict_optional`` setting for now.
0.5
===
* Resynchronize with Python 3.7; changes the return type of ``contents()`` to
be an ``Iterable``. Closes #52
0.4
===
* Correctly find resources in subpackages inside a zip file. Closes #51
0.3
===
* The API, implementation, and documentation is synchronized with the Python
3.7 standard library. Closes #47
* When run under Python 3.7 this API shadows the stdlib versions. Closes #50
0.2
===
* **Backward incompatible change**. Split the ``open()`` and ``read()`` calls
into separate binary and text versions, i.e. ``open_binary()``,
``open_text()``, ``read_binary()``, and ``read_text()``. Closes #41
* Fix a bug where unrelated resources could be returned from ``contents()``.
Closes #44
* Correctly prevent namespace packages from containing resources. Closes #20
0.1
===
* Initial release.
..
Local Variables:
mode: change-log-mode
indent-tabs-mode: nil
sentence-end-double-space: t
fill-column: 78
coding: utf-8
End: