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: gitpython-developers/GitPython
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 3.1.59
Choose a base ref
...
head repository: gitpython-developers/GitPython
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 6 commits
  • 7 files changed
  • 2 contributors

Commits on Aug 10, 2026

  1. Merge pull request #2212 from gitpython-developers/next-release

    prepare changelog prior to release
    Byron authored Aug 10, 2026
    Configuration menu
    Copy the full SHA
    52a6cba View commit details
    Browse the repository at this point in the history

Commits on Aug 11, 2026

  1. Preserve Git config value semantics

    <!-- agent -->
    Decode Git-supported quoted value escapes directly instead of routing UTF-8 text
    through Python unicode_escape. This preserves newlines, quotes, backslashes, and
    non-ASCII text when an unrelated config update rewrites existing values.
    
    Quote values containing Git comment delimiters (# and ;) or leading/trailing
    whitespace so Git does not truncate or trim their data. Escape LF, tab,
    backspace, quote, and backslash, while rejecting carriage returns and NULs
    before opening the destination.
    
    Regression coverage round-trips these values through both GitPython and git
    config and verifies unsafe control characters cannot alter the original file.
    Behavior follows Git config.c parse_value() and write_pair().
    
    Assisted-by: GPT 5.6
    Co-authored-by: GPT 5.6 <codex@openai.com>
    Byron and codex committed Aug 11, 2026
    Configuration menu
    Copy the full SHA
    eefa7e4 View commit details
    Browse the repository at this point in the history
  2. fix: decode quoted diff paths in one pass

    <!-- agent -->
    GHSA-v6xg-m7rh-r365 (closed) reports that quoted patch paths can crash or
    silently change when an escaped literal backslash precedes digits.
    
    Add regression coverage distinguishing literal backslashes from real
    octal byte escapes, then decode Git's C-style quoting sequentially so
    one escape cannot be reinterpreted by a later pass. Match Git baseline
    cf5497b14c5a24f10c13f7e0ee85cb95af13ea6a quote.c::unquote_c_style by
    accepting octal bytes only when all three digits are valid and the first
    is 0 through 3.
    
    Assisted-by: GPT 5.6
    Co-authored-by: GPT 5.6 <codex@openai.com>
    Byron and codex committed Aug 11, 2026
    Configuration menu
    Copy the full SHA
    9a92677 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #2213 from gitpython-developers/config-sanitizer-f…

    …ollow-up
    
    Preserve Git config escape semantics
    Byron authored Aug 11, 2026
    Configuration menu
    Copy the full SHA
    4b9afe9 View commit details
    Browse the repository at this point in the history
  4. fix: parse actor identities without regular expressions

    <!-- agent -->
    GHSA-g5vv-9gxw-82hx reports quadratic backtracking when an actor
    identity contains a long unterminated email delimiter.
    
    Add a regression that exercises a 20,000-character malformed identity,
    then replace both actor regexes with direct delimiter scans following
    Git's first-opening, first-closing delimiter behavior. Keep GitPython's
    whole-string fallback when either delimiter is absent.
    
    Reference Git baseline cf5497b14c5a24f10c13f7e0ee85cb95
    ident.c::split_ident_line and its invalid-committer cases in
    t/t9300-fast-import.sh. Also reference gix-actor's signature decoder and
    lenient identity tests.
    
    Assisted-by: GPT 5.6
    Co-authored-by: GPT 5.6 <codex@openai.com>
    Byron and codex committed Aug 11, 2026
    Configuration menu
    Copy the full SHA
    751473a View commit details
    Browse the repository at this point in the history
  5. Merge pull request #2215 from gitpython-developers/various-fixes

    Harden diff path and actor identity parsing
    Byron authored Aug 11, 2026
    Configuration menu
    Copy the full SHA
    f44c1fb View commit details
    Browse the repository at this point in the history
Loading