Skip to content

Commit d3ef5e5

Browse files
REL: 4.3.0
## What's new ### New Features (ENH) - Accept ETen-B5 and UniCNS-UTF16 encodings (#2721) by @pubpub-zz - Add decode_as_image() to ContentStreams (#2615) by @pubpub-zz - context manager for PdfReader (#2666) by @tibor-reiss - Add capability to set font and size in fields (#2636) by @pubpub-zz - Allow to pass input file without named argument (#2576) by @pubpub-zz ### Bug Fixes (BUG) - Fix deprecation for Ressources when using old constants (#2705) by @stefan6419846 - Fix images issue 4 bits encoding and LUT starting with UTF16_BOM (#2675) by @pubpub-zz - Reading large compressed images takes huge time to process (#2644) by @snanda85 - Highlighted Text Cannot Be Printed (#2604) by @Nifury - Fix UnboundLocalError on malformed pdf (#2619) by @farjasju ### Documentation (DOC) - Various improvements on docstrings and examples by @j-t-1 ### Robustness (ROB) - Cope with missing Standard 14 fonts in fields (#2677) by @pubpub-zz - Improve inline image extraction (#2622) by @pubpub-zz - Cope with loops in Fields tree (#2656) by @pubpub-zz - Discard /I in choice fields for compatibility with Acrobat (#2614) by @pubpub-zz - Cope with some issues in pillow (#2595) by @pubpub-zz - Cope with some image extraction issues (#2591) by @pubpub-zz ### Maintenance (MAINT) - Deprecate interiour_color with replacement interior_color (#2706) by @j-t-1 - Add deprecate_with_replacement to PdfWriter.find_bookmark (#2674) by @j-t-1 ### Code Style (STY) - Change Link to be a non-markup annotation (#2714) by @j-t-1 [Full Changelog](4.2.0...4.3.0)
1 parent 81f35f9 commit d3ef5e5

File tree

2 files changed

+37
-1
lines changed

2 files changed

+37
-1
lines changed

CHANGELOG.md

+36
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,41 @@
11
# CHANGELOG
22

3+
## Version 4.3.0, 2024-06-23
4+
5+
### New Features (ENH)
6+
- Accept ETen-B5 and UniCNS-UTF16 encodings (#2721)
7+
- Add decode_as_image() to ContentStreams (#2615)
8+
- context manager for PdfReader (#2666)
9+
- Add capability to set font and size in fields (#2636)
10+
- Allow to pass input file without named argument (#2576)
11+
12+
### Bug Fixes (BUG)
13+
- Fix deprecation for Ressources when using old constants (#2705)
14+
- Fix images issue 4 bits encoding and LUT starting with UTF16_BOM (#2675)
15+
- Reading large compressed images takes huge time to process (#2644)
16+
- Highlighted Text Cannot Be Printed (#2604)
17+
- Fix UnboundLocalError on malformed pdf (#2619)
18+
19+
### Robustness (ROB)
20+
- Cope with missing Standard 14 fonts in fields (#2677)
21+
- Improve inline image extraction (#2622)
22+
- Cope with loops in Fields tree (#2656)
23+
- Discard /I in choice fields for compatibility with Acrobat (#2614)
24+
- Cope with some issues in pillow (#2595)
25+
- Cope with some image extraction issues (#2591)
26+
27+
### Documentation (DOC)
28+
- Various improvements on docstrings and examples
29+
30+
### Maintenance (MAINT)
31+
- Deprecate interiour_color with replacement interior_color (#2706)
32+
- Add deprecate_with_replacement to PdfWriter.find_bookmark (#2674)
33+
34+
### Code Style (STY)
35+
- Change Link to be a non-markup annotation (#2714)
36+
37+
[Full Changelog](https://github.com/py-pdf/pypdf/compare/4.2.0...4.3.0)
38+
339
## Version 4.2.0, 2024-04-07
440

541
### New Features (ENH)

pypdf/_version.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "4.2.0"
1+
__version__ = "4.3.0"

0 commit comments

Comments
 (0)