Skip to content

fix(deps): update dependency pygit2 to >=1.19.1,<1.20#209

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/pygit2-1.x
Open

fix(deps): update dependency pygit2 to >=1.19.1,<1.20#209
renovate[bot] wants to merge 1 commit intomainfrom
renovate/pygit2-1.x

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jul 26, 2025

This PR contains the following updates:

Package Change Age Confidence
pygit2 (changelog) >=1.12.0,<1.18>=1.19.1,<1.20 age confidence

Release Notes

libgit2/pygit2 (pygit2)

v1.19.1

Compare Source

  • Update wheels to libgit2 1.9.2 and OpenSSL 3.5

  • Fix: now diff's getitem/iter returns None for unchanged or binary files
    #​1412

  • CI (macOS): arm, intel and pypy wheels (instead of universal)
    #​1441

  • CI (pypy): fix tests
    #​1437

v1.19.0

Compare Source

  • Add support for Python 3.14 and drop 3.10

  • Support threaded builds (experimental)
    #​1430
    #​1435

  • Add Linux musl wheels for AArch64

  • Add Windows wheels for AArch64;
    CI: build Windows wheels with cibuildwheel on GitHub
    #​1423

  • New Repository.transaction() context manager, returns new ReferenceTransaction
    #​1420

  • CI: add GitHub releases and other improvements
    #​1433
    #​1432
    #​1425
    #​1431

  • Documentation improvements and other changes
    #​1426
    #​1424

Breaking changes:

  • Remove deprecated IndexEntry.hex, use str(entry.id) instead of entry.hex

Deprecations:

  • Deprecate IndexEntry.oid, use entry.id instead of entry.oid

v1.18.2

Compare Source

Deprecations:

  • Remote.ls_remotes(...) is deprecated, use Remote.list_heads(...):

Before

  for head in remote.ls_remotes():
      head['name']
      head['oid']
      head['loid']  # None when local is False
      head['local']
      head['symref_target']

Now

  for head in remote.list_heads():
      head.name
      head.oid
      head.loid  # The zero oid when local is False
      head.local
      head.symref_target

v1.18.1

Compare Source

Deprecations:

  • Update your code:

Before

  contents = Repository.merge_file_from_index(...)

Now

  result = Repository.merge_file_from_index(..., use_deprecated=False)
  contents = result.contents

At some point in the future use_deprecated=False will be the default.

v1.18.0

Compare Source

  • Upgrade Linux Glibc wheels to manylinux_2_28

  • Add RemoteCallbacks.push_transfer_progress(...) callback
    #​1345

  • New bool(oid)
    #​1347

  • Now Repository.merge(...) accepts a commit or reference object
    #​1348

  • New threads optional argument in Remote.push(...)
    #​1352

  • New proxy optional argument in clone_repository(...)
    #​1354

  • New optional arguments context_lines and interhunk_lines in Blob.diff(...) ; and
    now Repository.diff(...) honors these two arguments when the objects diffed are blobs.
    #​1360

  • Now Tree.diff_to_workdir(...) accepts keyword arguments, not just positional.

  • Fix when a reference name has non UTF-8 chars
    #​1329

  • Fix condition check in Repository.remotes.rename(...)
    #​1342

  • Add codespell workflow, fix a number of typos
    #​1344

  • Documentation and typing
    #​1343
    #​1347
    #​1356

  • CI: Use ARM runner for tests and wheels
    #​1346

  • Build and CI updates
    #​1363
    #​1365

Deprecations:

  • Passing str to Repository.merge(...) is deprecated,
    instead pass an oid object (or a commit, or a reference)
    #​1349

Breaking changes:

  • Keyword argument flag has been renamed to flags in Blob.diff(...) and
    Blob.diff_to_buffer(...)

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot requested review from HonakerM and gabe-l-hart as code owners July 26, 2025 13:38
@gabe-l-hart
Copy link
Collaborator

@HonakerM It looks like we've hit a compatibility wall with pygit2. I'm sure this is super low on your TODO list, but if you get a chance, it would be great for you to take a look at what doesn't work in the newer versions.

@renovate renovate bot force-pushed the renovate/pygit2-1.x branch 3 times, most recently from 7f6bbba to cf26fd2 Compare August 16, 2025 13:40
@renovate renovate bot changed the title fix(deps): update dependency pygit2 to >=1.18.1,<1.19 fix(deps): update dependency pygit2 to >=1.18.2,<1.19 Aug 16, 2025
@renovate renovate bot changed the title fix(deps): update dependency pygit2 to >=1.18.2,<1.19 chore(deps): update dependency pygit2 to >=1.18.2,<1.19 Aug 19, 2025
@renovate renovate bot changed the title chore(deps): update dependency pygit2 to >=1.18.2,<1.19 chore(deps): update dependency pygit2 to >=1.19,<1.20 Oct 23, 2025
@renovate renovate bot force-pushed the renovate/pygit2-1.x branch from cf26fd2 to d31d8d2 Compare October 23, 2025 16:55
@renovate renovate bot force-pushed the renovate/pygit2-1.x branch from d31d8d2 to 4e425b7 Compare November 19, 2025 00:42
@renovate renovate bot force-pushed the renovate/pygit2-1.x branch from 4e425b7 to ef03591 Compare December 29, 2025 13:02
@renovate renovate bot changed the title chore(deps): update dependency pygit2 to >=1.19,<1.20 chore(deps): update dependency pygit2 to >=1.19.1,<1.20 Dec 29, 2025
@renovate renovate bot force-pushed the renovate/pygit2-1.x branch from ef03591 to a91305a Compare February 2, 2026 20:53
@renovate renovate bot changed the title chore(deps): update dependency pygit2 to >=1.19.1,<1.20 fix(deps): update dependency pygit2 to >=1.19.1,<1.20 Feb 12, 2026
@renovate renovate bot force-pushed the renovate/pygit2-1.x branch from a91305a to c98a017 Compare February 12, 2026 16:02
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant