Skip to content

Commit 13e7cb3

Browse files
committed
REL: 1.27.6
Deprecations (DEP): - Remove support for Python 2.6 and older (#776) New Features (ENH): - Extract document permissions (#320) Bug Fixes (BUG): - Clip by trimBox when merging pages, which would otherwise be ignored (#240) - Add overwriteWarnings parameter PdfFileMerger (#243) - IndexError for getPage() of decryped file (#359) - Handle cases where decodeParms is an ArrayObject (#405) - Updated PDF fields don't show up when page is written (#412) - Set Linked Form Value (#414) - Fix zlib -5 error for corrupt files (#603) - Fix reading more than last1K for EOF (#642) - Acciental import Robustness (ROB): - Allow extra whitespace before "obj" in readObjectHeader (#567) Documentation (DOC): - Link to pdftoc in Sample_Code (#628) - Working with annotations (#764) - Structure history Developer Experience (DEV): - Add issue templates (#765) - Add tool to generate changelog Maintenance (MAINT): - Use grouped constants instead of string literals (#745) - Add error module (#768) - Use decorators for @staticmethod (#775) - Split long functions (#777) Testing (TST): - Run tests in CI once with -OO Flags (#770) - Filling out forms (#771) - Add tests for Writer (#772) - Error cases (#773) - Check Error messages (#769) - Regression test for issue #88 - Regression test for issue #327 Code Style (STY): - Make variable naming more consistent in tests All changes: 1.27.5...1.27.6
1 parent 2e3eb1b commit 13e7cb3

2 files changed

Lines changed: 54 additions & 1 deletion

File tree

CHANGELOG

Lines changed: 53 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,56 @@
1+
Version 1.27.6, 2022-04-18
2+
--------------------------
3+
4+
Deprecations (DEP):
5+
- Remove support for Python 2.6 and older (#776)
6+
7+
New Features (ENH):
8+
- Extract document permissions (#320)
9+
10+
Bug Fixes (BUG):
11+
- Clip by trimBox when merging pages, which would otherwise be ignored (#240)
12+
- Add overwriteWarnings parameter PdfFileMerger (#243)
13+
- IndexError for getPage() of decryped file (#359)
14+
- Handle cases where decodeParms is an ArrayObject (#405)
15+
- Updated PDF fields don't show up when page is written (#412)
16+
- Set Linked Form Value (#414)
17+
- Fix zlib -5 error for corrupt files (#603)
18+
- Fix reading more than last1K for EOF (#642)
19+
- Acciental import
20+
21+
Robustness (ROB):
22+
- Allow extra whitespace before "obj" in readObjectHeader (#567)
23+
24+
Documentation (DOC):
25+
- Link to pdftoc in Sample_Code (#628)
26+
- Working with annotations (#764)
27+
- Structure history
28+
29+
Developer Experience (DEV):
30+
- Add issue templates (#765)
31+
- Add tool to generate changelog
32+
33+
Maintenance (MAINT):
34+
- Use grouped constants instead of string literals (#745)
35+
- Add error module (#768)
36+
- Use decorators for @staticmethod (#775)
37+
- Split long functions (#777)
38+
39+
Testing (TST):
40+
- Run tests in CI once with -OO Flags (#770)
41+
- Filling out forms (#771)
42+
- Add tests for Writer (#772)
43+
- Error cases (#773)
44+
- Check Error messages (#769)
45+
- Regression test for issue #88
46+
- Regression test for issue #327
47+
48+
Code Style (STY):
49+
- Make variable naming more consistent in tests
50+
51+
52+
All changes: https://github.com/py-pdf/PyPDF2/compare/1.27.5...1.27.6
53+
154
Version 1.27.5, 2022-04-15
255
--------------------------
356

PyPDF2/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "1.27.5"
1+
__version__ = "1.27.6"

0 commit comments

Comments
 (0)