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
## Version 5.0.0, 2024-09-15
This version drops support for Python 3.7 (not maintained since July 2023), PdfMerger (use PdfWriter instead) and AnnotationBuilder (use annotations instead).
### Deprecations (DEP)
- Remove the deprecated PfdMerger and AnnotationBuilder classes and other deprecations cleanup (#2813)
- Drop Python 3.7 support (#2793)
### New Features (ENH)
- Add capability to remove /Info from PDF (#2820)
- Add incremental capability to PdfWriter (#2811)
- Add UniGB-UTF16 encodings (#2819)
- Accept utf strings for metadata (#2802)
- Report PdfReadError instead of RecursionError (#2800)
- Compress PDF files merging identical objects (#2795)
### Bug Fixes (BUG)
- Fix sheared image (#2801)
### Robustness (ROB)
- Robustify .set_data() (#2821)
- Raise PdfReadError when missing /Root in trailer (#2808)
- Fix extract_text() issues on damaged PDFs (#2760)
- Handle images with empty data when processing an image from bytes (#2786)
### Developer Experience (DEV)
- Fix coverage uploads (#2832)
- Test against Python 3.13 (#2776)
[Full Changelog](4.3.1...5.0.0)
Copy file name to clipboardexpand all lines: CHANGELOG.md
+33
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,38 @@
1
1
# CHANGELOG
2
2
3
+
## Version 5.0.0, 2024-09-15
4
+
5
+
This version drops support for Python 3.7 (not maintained since July 2023), PdfMerger (use PdfWriter instead) and AnnotationBuilder (use annotations instead).
6
+
7
+
8
+
### Deprecations (DEP)
9
+
- Remove the deprecated PfdMerger and AnnotationBuilder classes and other deprecations cleanup (#2813)
10
+
- Drop Python 3.7 support (#2793)
11
+
12
+
### New Features (ENH)
13
+
- Add capability to remove /Info from PDF (#2820)
14
+
- Add incremental capability to PdfWriter (#2811)
15
+
- Add UniGB-UTF16 encodings (#2819)
16
+
- Accept utf strings for metadata (#2802)
17
+
- Report PdfReadError instead of RecursionError (#2800)
18
+
- Compress PDF files merging identical objects (#2795)
19
+
20
+
### Bug Fixes (BUG)
21
+
- Fix sheared image (#2801)
22
+
23
+
### Robustness (ROB)
24
+
- Robustify .set_data() (#2821)
25
+
- Raise PdfReadError when missing /Root in trailer (#2808)
26
+
- Fix extract_text() issues on damaged PDFs (#2760)
27
+
- Handle images with empty data when processing an image from bytes (#2786)
0 commit comments