|
1 | 1 | # CHANGELOG
|
2 | 2 |
|
| 3 | +## Version 3.16.0, 2023-09-10 |
| 4 | + |
| 5 | +### Security (SEC) |
| 6 | +- Infinite recursion caused by IndirectObject clone (#2156) |
| 7 | + |
| 8 | +### New Features (ENH) |
| 9 | +- Ease access to ViewerPreferences (#2144) |
| 10 | + |
| 11 | +### Bug Fixes (BUG) |
| 12 | +- Catch the case where w[0] is an IndirectObject instead of an int (#2154) |
| 13 | +- Cope with indirect objects in filters and remove deprecated code (#2177) |
| 14 | +- Accept tabs in cmaps (#2174) / cope with extra space (#2151) |
| 15 | +- Merge pages without resources (#2150) |
| 16 | +- getcontents() shall return None if contents is NullObject (#2161) |
| 17 | +- Fix conversion from 1 to LA (#2175) |
| 18 | + |
| 19 | +### Robustness (ROB) |
| 20 | +- Accept XYZ with no arguments (#2178) |
| 21 | + |
| 22 | +[Full Changelog](https://github.com/py-pdf/pypdf/compare/3.15.5...3.16.0) |
| 23 | + |
| 24 | +## Version 3.15.5, 2023-09-03 |
| 25 | + |
| 26 | +### Bug Fixes (BUG) |
| 27 | +- Cope with missing /I in articles (#2134) |
| 28 | +- Fix image look-up table in EncodedStreamObject (#2128) |
| 29 | +- remove_images not operating in sub level forms (#2133) |
| 30 | + |
| 31 | +### Robustness (ROB) |
| 32 | +- Cope with damaged PDF (#2129) |
| 33 | + |
| 34 | +[Full Changelog](https://github.com/py-pdf/pypdf/compare/3.15.4...3.15.5) |
| 35 | + |
| 36 | +## Version 3.15.4, 2023-08-27 |
| 37 | + |
| 38 | +### Performance Improvements (PI) |
| 39 | +- Making pypdf as fast as pdfrw (#2086) |
| 40 | + |
| 41 | +### Maintenance (MAINT) |
| 42 | +- Relax typing_extensions version (#2104) |
| 43 | + |
| 44 | +[Full Changelog](https://github.com/py-pdf/pypdf/compare/3.15.3...3.15.4) |
| 45 | + |
| 46 | +## Version 3.15.3, 2023-08-26 |
| 47 | + |
| 48 | +### Bug Fixes (BUG) |
| 49 | +- Check version of crypt provider (#2115) |
| 50 | +- TypeError: can't concat str to bytes (#2114) |
| 51 | +- Require flit_core >= 3.9 (#2091) |
| 52 | + |
| 53 | +[Full Changelog](https://github.com/py-pdf/pypdf/compare/3.15.2...3.15.3) |
| 54 | + |
| 55 | +## Version 3.15.2, 2023-08-20 |
| 56 | + |
| 57 | +### Security (SEC) |
| 58 | +- Avoid endless recursion of reading damaged PDF file (#2093) |
| 59 | + |
| 60 | +### Performance Improvements (PI) |
| 61 | +- Re-use content stream (#2101) |
| 62 | + |
| 63 | +### Maintenance (MAINT) |
| 64 | +- Make ParseError inherit from PyPdfError (#2097) |
| 65 | + |
| 66 | +[Full Changelog](https://github.com/py-pdf/pypdf/compare/3.15.1...3.15.2) |
| 67 | + |
| 68 | +## Version 3.15.1, 2023-08-13 |
| 69 | + |
| 70 | +### Performance Improvements (PI) |
| 71 | +- optimize _decode_png_prediction (#2068) |
| 72 | + |
| 73 | +### Bug Fixes (BUG) |
| 74 | +- Fix incorrect tm_matrix in call to visitor_text (#2060) |
| 75 | +- Writing German characters into form fields (#2047) |
| 76 | +- Prevent stall when accessing image in corrupted pdf (#2081) |
| 77 | +- append() fails when articles do not have /T (#2080) |
| 78 | + |
| 79 | +### Robustness (ROB) |
| 80 | +- Cope with xref not followed by separator (#2083) |
| 81 | + |
| 82 | +[Full Changelog](https://github.com/py-pdf/pypdf/compare/3.15.0...3.15.1) |
| 83 | + |
| 84 | +## Version 3.15.0, 2023-08-06 |
| 85 | + |
| 86 | +### New Features (ENH) |
| 87 | +- Add `level` parameter to compress_content_streams (#2044) |
| 88 | +- Process /uniHHHH for text_extract (#2043) |
| 89 | + |
| 90 | +### Bug Fixes (BUG) |
| 91 | +- Fix AnnotationBuilder.link (#2066) |
| 92 | +- JPX image without ColorSpace (#2062) |
| 93 | +- Added check for field /Info when cloning reader document (#2055) |
| 94 | +- Fix indexed/CMYK images (#2039) |
| 95 | + |
| 96 | +### Maintenance (MAINT) |
| 97 | +- Cryptography as primary dependency (#2053) |
| 98 | + |
| 99 | +[Full Changelog](https://github.com/py-pdf/pypdf/compare/3.14.0...3.15.0) |
| 100 | + |
| 101 | +## Version 3.14.0, 2023-07-29 |
| 102 | + |
| 103 | +### New Features (ENH) |
| 104 | +- Accelerate image list keys generation (#2014) |
| 105 | +- Use `cryptography` for encryption/decryption as a fallback for PyCryptodome (#2000) |
| 106 | +- Extract LaTeX characters (#2016) |
| 107 | +- ASCIIHexDecode.decode now returns bytes instead of str (#1994) |
| 108 | + |
| 109 | +### Bug Fixes (BUG) |
| 110 | +- Add RunLengthDecode filter (#2012) |
| 111 | +- Process /Separation ColorSpace (#2007) |
| 112 | +- Handle single element ColorSpace list (#2026) |
| 113 | +- Process lookup decoded as TextStringObjects (#2008) |
| 114 | + |
| 115 | +### Robustness (ROB) |
| 116 | +- Cope with garbage collector during cloning (#1841) |
| 117 | + |
| 118 | +### Maintenance (MAINT) |
| 119 | +- Cleanup of annotations (#1745) |
| 120 | + |
| 121 | +[Full Changelog](https://github.com/py-pdf/pypdf/compare/3.13.0...3.14.0) |
| 122 | + |
| 123 | +## Version 3.13.0, 2023-07-23 |
| 124 | + |
| 125 | +### New Features (ENH) |
| 126 | +- Add is_open in outlines in PdfReader and PdfWriter (#1960) |
| 127 | + |
| 128 | +### Bug Fixes (BUG) |
| 129 | +- Search /DA in hierarchy fields (#2002) |
| 130 | +- Cope with different ISO date length (#1999) |
| 131 | +- Decode Black only/CMYK deviceN images (#1984) |
| 132 | +- Process CMYK in deflate images (#1977) |
| 133 | + |
| 134 | +### Developer Experience (DEV) |
| 135 | +- Add mypy to pre-commit (#2001) |
| 136 | +- Release automation (#1991, #1985) |
| 137 | + |
| 138 | +[Full Changelog](https://github.com/py-pdf/pypdf/compare/3.12.2...3.13.0) |
| 139 | + |
3 | 140 | ## Version 3.12.2, 2023-07-16
|
4 | 141 |
|
5 | 142 | ### Bug Fixes (BUG)
|
|
0 commit comments