Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 14, 2024

This PR contains the following updates:

Package Change Age Confidence
pygit2 (changelog) ==1.16.0 -> ==1.18.2 age confidence
pygit2 (changelog) ==1.15.0 -> ==1.18.2 age confidence

Release Notes

libgit2/pygit2 (pygit2)

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(...)

v1.17.0

Compare Source

  • Upgrade to libgit2 1.9

  • Add certificate_check callback to Remote.ls_remotes(...)
    #​1326

  • Fix build with GCC 14
    #​1324

  • Release wheels for PyPy
    #​1336
    #​1339

  • CI: update tests for macOS to use OpenSSL 3
    #​1335

  • Documentation: fix typo in Repository.status(...) docstring
    #​1327


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 these updates 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 force-pushed the renovate/pygit2-1.x branch from 0ab7a80 to 1bd51c8 Compare January 8, 2025 15:31
@renovate renovate bot changed the title fix(deps): update dependency pygit2 to v1.16.0 fix(deps): update dependency pygit2 to v1.17.0 Jan 8, 2025
@renovate renovate bot force-pushed the renovate/pygit2-1.x branch from 1bd51c8 to aaa4448 Compare April 24, 2025 19:54
@renovate renovate bot changed the title fix(deps): update dependency pygit2 to v1.17.0 fix(deps): update dependency pygit2 to v1.18.0 Apr 24, 2025
@renovate renovate bot changed the title fix(deps): update dependency pygit2 to v1.18.0 Update dependency pygit2 to v1.18.0 May 14, 2025
@renovate renovate bot changed the title Update dependency pygit2 to v1.18.0 fix(deps): update dependency pygit2 to v1.18.0 May 21, 2025
@renovate renovate bot changed the title fix(deps): update dependency pygit2 to v1.18.0 Update dependency pygit2 to v1.18.0 Jul 7, 2025
@renovate renovate bot force-pushed the renovate/pygit2-1.x branch from aaa4448 to 91ac1d3 Compare July 8, 2025 17:11
@renovate renovate bot changed the title Update dependency pygit2 to v1.18.0 fix(deps): update dependency pygit2 to v1.18.0 Jul 18, 2025
@renovate renovate bot force-pushed the renovate/pygit2-1.x branch 2 times, most recently from 0da3e92 to 4541aa0 Compare July 26, 2025 13:03
@renovate renovate bot changed the title fix(deps): update dependency pygit2 to v1.18.0 fix(deps): update dependency pygit2 to v1.18.1 Jul 26, 2025
@renovate renovate bot force-pushed the renovate/pygit2-1.x branch from 4541aa0 to 7eb04fe Compare August 10, 2025 14:58
@renovate renovate bot force-pushed the renovate/pygit2-1.x branch from 7eb04fe to 40a6035 Compare August 16, 2025 16:52
@renovate renovate bot changed the title fix(deps): update dependency pygit2 to v1.18.1 fix(deps): update dependency pygit2 to v1.18.2 Aug 16, 2025
@renovate renovate bot changed the title fix(deps): update dependency pygit2 to v1.18.2 chore(deps): update dependency pygit2 to v1.18.2 Aug 19, 2025
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.

0 participants