You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/source/release-history.rst
+11-14Lines changed: 11 additions & 14 deletions
Original file line number
Diff line number
Diff line change
@@ -2,35 +2,32 @@
2
2
Release History
3
3
===============
4
4
5
-
In Development
6
-
--------------
7
-
8
-
Breaking Changes
9
-
^^^^^^^^^^^^^^^^
5
+
v0.4.3 (2023-09-26)
6
+
-------------------
10
7
11
-
N/A
8
+
This is mainly a compatibility releae: it adds support for urllib3 v2.x and the next upcoming major release of Python, v3.12.0. It also adds support for multiple filters in :meth:`wayback.WaybackClient.search`. There are no breaking changes.
12
9
13
10
14
11
Features
15
12
^^^^^^^^
16
13
17
-
- You can now apply multiple filters to a search by using a list or tuple for the ``filter_field`` parameter of :meth:`wayback.WaybackClient.search`. (:issue:`119`)
14
+
You can now apply multiple filters to a search by using a list or tuple for the ``filter_field`` parameter of :meth:`wayback.WaybackClient.search`. (:issue:`119`)
18
15
19
-
For example, to search for all captures at ``nasa.gov`` with a 404 status and “feature” somewhere in the URL:
16
+
For example, to search for all captures at ``nasa.gov`` with a 404 status and “feature” somewhere in the URL:
20
17
21
-
.. code-block:: python
18
+
.. code-block:: python
22
19
23
-
client.search('nasa.gov/',
24
-
match_type='prefix',
25
-
filter_field=['statuscode:404',
26
-
'urlkey:.*feature.*'])
20
+
client.search('nasa.gov/',
21
+
match_type='prefix',
22
+
filter_field=['statuscode:404',
23
+
'urlkey:.*feature.*'])
27
24
28
25
29
26
Fixes & Maintenance
30
27
^^^^^^^^^^^^^^^^^^^
31
28
32
29
- Add support for Python 3.12.0. (:issue:`123`)
33
-
- Add support for urllib3 v2.x. (:issue:`116`)
30
+
- Add support for urllib3 v2.x (urllib3 v1.20+ also still works). (:issue:`116`)
0 commit comments