Skip to content

Commit

Permalink
REL: 2.7.0
Browse files Browse the repository at this point in the history
New Features (ENH):
-  Add `outline_count` property (#1129)

Bug Fixes (BUG):
-  Make reader.get_fields also return dropdowns with options (#1114)
-  Add deprecated EncodedStreamObject functions back until PyPDF2==3.0.0 (#1139)

Robustness (ROB):
-  Cope with missing /W entry (#1136)
-  Cope with invalid parent xref (#1133)

Documentation (DOC):
-  Contributors file (#1132)
-  Fix type in signature of PdfWriter.add_uri (#1131)

Developer Experience (DEV):
-  Add .git-blame-ignore-revs (#1141)

Code Style (STY):
-  Fixing typos (#1137)
-  Re-use code via get_outlines_property in tests (#1130)

Full Changelog: 2.6.0...2.7.0
  • Loading branch information
MartinThoma committed Jul 21, 2022
1 parent 0f52052 commit 6899c74
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,31 @@
# CHANGELOG

## Version 2.7.0, 2022-07-21

### New Features (ENH)
- Add `outline_count` property (#1129)

### Bug Fixes (BUG)
- Make reader.get_fields also return dropdowns with options (#1114)
- Add deprecated EncodedStreamObject functions back until PyPDF2==3.0.0 (#1139)

### Robustness (ROB)
- Cope with missing /W entry (#1136)
- Cope with invalid parent xref (#1133)

### Documentation (DOC)
- Contributors file (#1132)
- Fix type in signature of PdfWriter.add_uri (#1131)

### Developer Experience (DEV)
- Add .git-blame-ignore-revs (#1141)

### Code Style (STY)
- Fixing typos (#1137)
- Re-use code via get_outlines_property in tests (#1130)

Full Changelog: https://github.com/py-pdf/PyPDF2/compare/2.6.0...2.7.0

## Version 2.6.0, 2022-07-17

### New Features (ENH)
Expand Down
2 changes: 1 addition & 1 deletion PyPDF2/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "2.6.0"
__version__ = "2.7.0"

1 comment on commit 6899c74

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'Python Benchmark with pytest-benchmark'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 2.

Benchmark suite Current: 6899c74 Previous: 0f52052 Ratio
tests/bench.py::test_merge 4.173459058231012 iter/sec (stddev: 0.0023414165503309018) 10.865024098974253 iter/sec (stddev: 0.007481799107634444) 2.60
tests/bench.py::test_text_extraction 0.09085221938711806 iter/sec (stddev: 0.08896515118510831) 0.2399999405376148 iter/sec (stddev: 0.08863718826884263) 2.64

This comment was automatically generated by workflow using github-action-benchmark.

CC: @MartinThoma

Please sign in to comment.