Skip to content
Permalink

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: 6.1.1
Choose a base ref
...
head repository: py-pdf/pypdf
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6.1.2
Choose a head ref
  • 6 commits
  • 10 files changed
  • 2 contributors

Commits on Sep 29, 2025

  1. ROB: Improve handling for malformed cross-reference tables (#3483)

    Closes #3482.
    
    Additionally, I had to replace a dead test file link.
    stefan6419846 authored Sep 29, 2025
    Configuration menu
    Copy the full SHA
    2b2eca2 View commit details
    Browse the repository at this point in the history

Commits on Oct 6, 2025

  1. DEV: Use Mapping instead of dict in type hint of update_page_form_fie…

    …ld_values (#3490)
    
    Having the parameter typed as a dictionary does not allow for stricter
    type hints on the user side, like `dict[str, str]`, as a dictionary is
    considered mutable. Typing our method as `Mapping` indicates that we
    do not change the corresponding values inside it and does allow for
    stricter typing in user code.
    
    Closes #3453.
    stefan6419846 authored Oct 6, 2025
    Configuration menu
    Copy the full SHA
    9fad9ff View commit details
    Browse the repository at this point in the history

Commits on Oct 12, 2025

  1. DEV: Use released Python 3.14

    Python 3.14 has officially been released a few days ago.
    stefan6419846 authored Oct 12, 2025
    Configuration menu
    Copy the full SHA
    54c0dd7 View commit details
    Browse the repository at this point in the history

Commits on Oct 16, 2025

  1. Configuration menu
    Copy the full SHA
    16c4c44 View commit details
    Browse the repository at this point in the history
  2. BUG: Fix handling of zero-length StreamObject (#3485)

    Closes #3052.
    
    ---------
    
    Co-authored-by: stefan6419846 <96178532+stefan6419846@users.noreply.github.com>
    Likend and stefan6419846 authored Oct 16, 2025
    Configuration menu
    Copy the full SHA
    623a700 View commit details
    Browse the repository at this point in the history

Commits on Oct 19, 2025

  1. REL: 6.1.2

    ## What's new
    
    ### Bug Fixes (BUG)
    - Fix handling of zero-length StreamObject (#3485) by @Likend
    
    ### Robustness (ROB)
    - Deal with wrong size for incremental PDF files (#3495) by @stefan6419846
    - Improve handling for malformed cross-reference tables (#3483) by @stefan6419846
    
    ### Developer Experience (DEV)
    - Use released Python 3.14 by @stefan6419846
    - Use Mapping instead of dict in type hint of update_page_form_field_values (#3490) by @stefan6419846
    
    [Full Changelog](6.1.1...6.1.2)
    stefan6419846 committed Oct 19, 2025
    Configuration menu
    Copy the full SHA
    0859b35 View commit details
    Browse the repository at this point in the history
Loading