-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Permalink
Choose a base ref
{{ refName }}
default
Choose a head ref
{{ refName }}
default
Comparing changes
Choose two branches to see what’s changed or to start a new pull request.
If you need to, you can also or
learn more about diff comparisons.
Open a pull request
Create a new pull request by comparing changes across two branches. If you need to, you can also .
Learn more about diff comparisons here.
base repository: py-pdf/pypdf
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.17.1
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
...
head repository: py-pdf/pypdf
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 3.17.2
Could not load branches
Nothing to show
Loading
Could not load tags
Nothing to show
{{ refName }}
default
Loading
- 17 commits
- 33 files changed
- 8 contributors
Commits on Nov 14, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 22eee75 - Browse repository at this point
Copy the full SHA 22eee75View commit details
Commits on Nov 24, 2023
-
Configuration menu - View commit details
-
Copy full SHA for e1dfee6 - Browse repository at this point
Copy the full SHA e1dfee6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 0d0d81b - Browse repository at this point
Copy the full SHA 0d0d81bView commit details
Commits on Nov 26, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 13a640d - Browse repository at this point
Copy the full SHA 13a640dView commit details
Commits on Nov 28, 2023
-
BUG: Handle indirect objects as parameters for CCITTFaxDecode (#2307)
The following error is resolved: ``` [...] if CCITT.COLUMNS in parameters: TypeError: argument of type 'IndirectObject' is not iterable ```Configuration menu - View commit details
-
Copy full SHA for 441bb59 - Browse repository at this point
Copy the full SHA 441bb59View commit details
Commits on Dec 2, 2023
-
Configuration menu - View commit details
-
Copy full SHA for a3742ae - Browse repository at this point
Copy the full SHA a3742aeView commit details -
Configuration menu - View commit details
-
Copy full SHA for 40e25ec - Browse repository at this point
Copy the full SHA 40e25ecView commit details
Commits on Dec 4, 2023
-
Since b"" is not mutable it causes python to allocate and deallocate memory repeatedly in the for loop which cause hang/long runtime when handle very large string. For example when using add_js(javascript) to to add a very big `javascript` bytestring.
Configuration menu - View commit details
-
Copy full SHA for 6cb5343 - Browse repository at this point
Copy the full SHA 6cb5343View commit details
Commits on Dec 6, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 98e476a - Browse repository at this point
Copy the full SHA 98e476aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 250b2f9 - Browse repository at this point
Copy the full SHA 250b2f9View commit details
Commits on Dec 9, 2023
-
Bump actions/setup-python from 4 to 5 (#2329)
Bumps [actions/setup-python](https://github.com/actions/setup-python) from 4 to 5. - [Release notes](https://github.com/actions/setup-python/releases) - [Commits](actions/setup-python@v4...v5) --- updated-dependencies: - dependency-name: actions/setup-python dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Configuration menu - View commit details
-
Copy full SHA for 8d3f879 - Browse repository at this point
Copy the full SHA 8d3f879View commit details -
TST: Centralize file downloads (#2324)
This PR introduces a new `tests/example_files.yaml` in which we have the local filename as well as the URL from which we download the document. The idea is that we move all download URLs to that CSV document. Then we just reference the local file names. The advantage of this approach are: * **Detection of name clashes**: If we use the same `name` for different URLs we could have flaky tests as well. That is currently super hard to detect and would be rather easy to prevent in future * **No tests needs network**: The network is a source for flaky tests. That's hard to notice. If the download fails, it's easier to see. * **Efficiency**: We can heavily parallelize downloads. That might lead to speed-ups. * **De-duplication**: We might have the same file with different file-names in the code base. Having all URLs in one place makes it easier to ensure we download everything just once * **Shorter Python code**: That's a tiny stylistic argument. I prefer if we don't have super long lines / need to make weird line breaks as the URL is just so long. * **Cross-project use**: Other projects might be interested in that CSV and use it for their tests. * **Internal re-use**: It's easier to loop over the existing files we have like this. That way, we can potentially use one PDF for multiple types of tests.
Configuration menu - View commit details
-
Copy full SHA for 4aae547 - Browse repository at this point
Copy the full SHA 4aae547View commit details -
Configuration menu - View commit details
-
Copy full SHA for 303219d - Browse repository at this point
Copy the full SHA 303219dView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5e59160 - Browse repository at this point
Copy the full SHA 5e59160View commit details
Commits on Dec 10, 2023
-
ROB: Relax flate decoding for too many lookup values (#2331)
When handling flate objects with a lookup table and the image mode `1`, we would previously raise a generic `AssertionError` if the number of lookup values did not match. Cases where too many values are specified are now considered a warning only. Additionally, this PR adds a more meaningful error message.
Configuration menu - View commit details
-
Copy full SHA for 6dad92a - Browse repository at this point
Copy the full SHA 6dad92aView commit details -
Configuration menu - View commit details
-
Copy full SHA for 0bc45c6 - Browse repository at this point
Copy the full SHA 0bc45c6View commit details -
## What's new ### Bug Fixes (BUG) - Cope with deflated images with CMYK Black Only (#2322) by @pubpub-zz - Handle indirect objects as parameters for CCITTFaxDecode (#2307) by @stefan6419846 - check words length in _cmap type1_alternative function (#2310) by @Takher ### Robustness (ROB) - Relax flate decoding for too many lookup values (#2331) by @stefan6419846 - Let _build_destination skip in case of missing /D key (#2018) by @nickryand ### Documentation (DOC) - Note in reading form data (#2338) by @MartinThoma - Pull Request prefixes and size by @MartinThoma - Add https://github.com/zuypt for #2325 as a contributor by @MartinThoma - Fix docstring for RunLengthDecode.decode (#2302) by @stefan6419846 ### Maintenance (MAINT) - Enable `disallow_any_generics` and add missing generics (#2278) by @nilehmann ### Testing (TST) - Centralize file downloads (#2324) by @MartinThoma ### Code Style (STY) - Fix typo "steam" \xe2\x86\x92 "stream" (#2327) by @stefan6419846 - Run black by @MartinThoma - Make Traceback in bug report template uppercase (#2304) by @stefan6419846 [Full Changelog](3.17.1...3.17.2)
Configuration menu - View commit details
-
Copy full SHA for 38795f5 - Browse repository at this point
Copy the full SHA 38795f5View commit details
Loading
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff 3.17.1...3.17.2