fix(deps): update dependency dulwich to v1 - autoclosed - #880
Closed
renovate[bot] wants to merge 1 commit into
Closed
fix(deps): update dependency dulwich to v1 - autoclosed#880renovate[bot] wants to merge 1 commit into
renovate[bot] wants to merge 1 commit into
Conversation
❌ Deploy Preview for conda-lock failed.
|
renovate
Bot
force-pushed
the
renovate/dulwich-1.x
branch
from
February 2, 2026 18:59
219e359 to
05cc7b5
Compare
renovate
Bot
force-pushed
the
renovate/dulwich-1.x
branch
from
February 18, 2026 02:34
05cc7b5 to
5f006f1
Compare
renovate
Bot
force-pushed
the
renovate/dulwich-1.x
branch
from
April 21, 2026 20:10
5f006f1 to
46f2c4e
Compare
❌ Deploy Preview for conda-lock failed.
|
renovate
Bot
force-pushed
the
renovate/dulwich-1.x
branch
from
April 29, 2026 21:44
46f2c4e to
7c3fb53
Compare
renovate
Bot
force-pushed
the
renovate/dulwich-1.x
branch
from
May 20, 2026 22:29
7c3fb53 to
5772d35
Compare
renovate
Bot
force-pushed
the
renovate/dulwich-1.x
branch
from
May 21, 2026 20:27
5772d35 to
4614ac2
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
>=0.22.6,<0.25→>=1.2.4,<1.3Release Notes
dulwich/dulwich (dulwich)
v1.2.4Compare Source
Tolerate ref names with empty path components (e.g. `refs/tags//v1.0`) for now, emitting a `DeprecationWarning` rather than raising a `RefFormatError`. Such names are constructed by older Poetry releases (fixed in Poetry 2.4.0) and were silently accepted before Dulwich 1.2.3. `local_branch_name`, `local_tag_name` and `local_replace_name` likewise warn about, and strip, a leading slash instead of raising `ValueError`. Both will become errors again in a future release. (Jelmer Vernooij, #2192)
v1.2.3Compare Source
v1.2.2Compare Source
v1.2.1Compare Source
Changes since 1.2.0
Derive the LFS endpoint as the remote's on-disk LFS store
(
<remote>/.git/lfsfor worktrees,<remote>/lfsfor bare repos)when
remote.origin.urlpoints at a local filesystem path orfile://URL, matching git-lfs behaviour. Previously the built-insmudge filter constructed an HTTP-style
<remote>.git/info/lfspaththat did not exist on disk, leaving LFS-tracked files as pointers
when cloning from a local repo.
Deduplicate objects when writing a multi-pack-index. Objects present
in multiple packs (e.g. after
git gccreates a cruft pack) wouldotherwise produce an OIDL chunk with repeated SHAs, causing
git multi-pack-index verifyto fail with "oid lookup out of order".(#2152)
Extend ignorecase and precomposeunicode support to index lookups.
(#1807)
v1.2.0: 1.2.0Compare Source
Notable changes since 1.1.0
New features
amcommand andporcelain.am()for applying mailbox-style email patches (git am), with state persistence for--continue,--skip,--abort, and--quitrecovery (#1692).applycommand andporcelain.apply_patch()for applying unified diffs, including rename/copy detection, binary patches with Git's base85 encoding, and--3waymerge fallback (#1784).logcommand options:--oneline,--abbrev-commit,--author,--committer,--grep,--since/--after,--until/--before,-n/--max-count,--no-merges,--merges,--stat,-p/--patch,--name-only, and--follow(#1779).-o/--push-option) inpush, enabling AGit flow and other server-side push option workflows.--all,--tags,--delete,--dry-run,--prune,--set-upstream,--follow-tags, and--mirror(#1844).--atomic): either all ref updates succeed or none are applied (#1781).extensions.relativeworktreesrepository extension, allowing worktrees to use relative paths (#2112).Configuration support
gc.pruneExpire— grace period before unreachable objects are pruned (#1859).core.precomposeunicode— normalize NFD Unicode paths from macOS filesystems to NFC (#1804).core.gitProxy— proxy command forgit://protocol connections (#1850).core.maxStat— limit stat operations when checking for unstaged changes (#1853).core.packedGitLimit— cap memory used for mmapped pack files, closing LRU packs when exceeded (#1848).core.deltaBaseCacheLimit— cap memory used for caching delta base objects; defaults to 96 MiB (#1849).http.userAgent— customize the User-Agent header (global and URL-specific); default isgit/dulwich/{version}.Fixes
BadSignaturefor all GPG errors, not justBadSignatures; also detect when GPG returns no signatures.unbornargument in Git protocol v2ls-refsrequests to servers that don't advertisels-refs=unborn, preventing clones from older servers like Gerrit 3.12.2 (#2104).read_info_refs()to show the actual line content when parsing fails (#2103)..gitignoreparent re-include handling so a later!dir/re-include allows a subsequent file-level negation to take effect (#2141, N0zoM1z0).contrib/paramiko_vendor.pyby loading known hosts and rejecting unknown SSH host keys by default (#2123, quart27219).Packaging
contrib/as part of the distribution. Thecontrib/directory has always been documented as unsupported and is now excluded from the installed package (#2122).v1.1.0: 1.1.0Compare Source
What's Changed
New Contributors
Full Changelog: jelmer/dulwich@dulwich-1.0.0...dulwich-1.1.0
v1.0.0: 1.0.0Compare Source
What's Changed
Full Changelog: jelmer/dulwich@dulwich-0.25.2...dulwich-1.0.0
v0.25.2: dulwich-0.25.1Compare Source
What's Changed
Full Changelog: jelmer/dulwich@dulwich-0.25.1...dulwich-0.25.2
v0.25.1Compare Source
Full Changelog: jelmer/dulwich@dulwich-0.25.0...dulwich-0.25.1
v0.25.0: v0.25.0Compare Source
What's Changed
porcelain.addcheck explicit forNoneby @ejfine in jelmer#2027New Contributors
Full Changelog: jelmer/dulwich@dulwich-0.24.10...dulwich-0.25.0
Configuration
📅 Schedule: (UTC)
🚦 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.
This PR was generated by Mend Renovate. View the repository job log.