Skip to content

Commit 9480000

Browse files
Update module github.com/go-git/go-git/v6 to v6.0.0-alpha.5 [SECURITY] (#267)
This PR contains the following updates: | Package | Change | [Age](https://docs.renovatebot.com/merge-confidence/) | [Confidence](https://docs.renovatebot.com/merge-confidence/) | |---|---|---|---| | [github.com/go-git/go-git/v6](https://redirect.github.com/go-git/go-git) | `v6.0.0-alpha.4` → `v6.0.0-alpha.5` | ![age](https://developer.mend.io/api/mc/badges/age/go/github.com%2fgo-git%2fgo-git%2fv6/v6.0.0-alpha.5?slim=true) | ![confidence](https://developer.mend.io/api/mc/badges/confidence/go/github.com%2fgo-git%2fgo-git%2fv6/v6.0.0-alpha.4/v6.0.0-alpha.5?slim=true) | --- ### go-git: Worktree operations may follow symlinks [CVE-2026-71556](https://nvd.nist.gov/vuln/detail/CVE-2026-71556) / [GHSA-hc8v-wwc9-vgxm](https://redirect.github.com/advisories/GHSA-hc8v-wwc9-vgxm) <details> <summary>More information</summary> #### Details ##### Impact A symlink traversal issue in `go-git` could allow worktree operations to modify files outside the intended worktree path. The `worktreeFilesystem` wrapper rejected dangerous path strings, including paths containing `.git`, parent-directory components, or control characters. However, it did not prevent filesystem operations from following symbolic links that were already present in the worktree. As a result, a path that is safe when evaluated as a string could still resolve into the repository's Git metadata directory. For example, if `s` is a symbolic link to `.git`, writing to `s/config` would modify `.git/config`. A symbolic link at the final path component could also be followed. For example, if `s` points directly to `.git/config`, opening `s` for writing with truncation could overwrite the repository configuration. Exploitation requires an attacker to be able to introduce or control a symbolic link in the worktree and cause the application to perform a write through that path. Applications using `storage/memory` for their Storer, or `go-billy/memfs` for their `Worktree`, are not affected by this vulnerability. ##### Patches The issue has been addressed by making the worktree filesystem wrapper a symlink-safe boundary. Worktree operations now reject paths where an existing symbolic link in any path component could cause the operation to escape the intended worktree location, including symbolic links at the final component. Users of filesystem-backed worktrees should upgrade to a patched version. ##### Credits Thanks to @&#8203;kodareef5 for reporting this issue and working with the go-git security team toward its resolution. 🥇 We would also like to thank @&#8203;HughLewis20, who independently reported the same issue while a fix was already in progress. #### Severity - CVSS Score: 7.1 / 10 (High) - Vector String: `CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:H/A:L` #### References - [https://github.com/go-git/go-git/security/advisories/GHSA-hc8v-wwc9-vgxm](https://redirect.github.com/go-git/go-git/security/advisories/GHSA-hc8v-wwc9-vgxm) - [https://github.com/go-git/go-git/commit/008a78f2dd86f52544ddff8b8e8ddeecdf3f7aab](https://redirect.github.com/go-git/go-git/commit/008a78f2dd86f52544ddff8b8e8ddeecdf3f7aab) - [https://github.com/go-git/go-git/commit/661d1c7f101d34e002a3cfcf8dbea5b7421d07ac](https://redirect.github.com/go-git/go-git/commit/661d1c7f101d34e002a3cfcf8dbea5b7421d07ac) - [https://github.com/go-git/go-git/releases/tag/v5.19.2](https://redirect.github.com/go-git/go-git/releases/tag/v5.19.2) - [https://github.com/go-git/go-git/releases/tag/v6.0.0-alpha.5](https://redirect.github.com/go-git/go-git/releases/tag/v6.0.0-alpha.5) - [https://github.com/advisories/GHSA-hc8v-wwc9-vgxm](https://redirect.github.com/advisories/GHSA-hc8v-wwc9-vgxm) This data is provided by the [GitHub Advisory Database](https://redirect.github.com/advisories/GHSA-hc8v-wwc9-vgxm) ([CC-BY 4.0](https://redirect.github.com/github/advisory-database/blob/main/LICENSE.md)). </details> --- ### go-git: Malicious reference names may modify files outside the reference storage [CVE-2026-71557](https://nvd.nist.gov/vuln/detail/CVE-2026-71557) / [GHSA-qgq7-7hm3-q39j](https://redirect.github.com/advisories/GHSA-qgq7-7hm3-q39j) <details> <summary>More information</summary> #### Details ##### Impact A path traversal issue in `go-git` could allow malicious reference names to access files outside the repository's intended reference storage. Loose references are stored under `.git/<reference-name>`. The reference name was previously used as a path without verifying that the resolved path remained within the reference storage. A name such as `refs/heads/../../config` could therefore resolve to unrelated repository metadata such as `.git/config` or `.git/HEAD`. A malicious Git server could advertise such a reference name. The name may also survive refspec mapping; for example, it could be mapped to `refs/remotes/origin/../../config` during a clone or fetch operation. This vulnerability affects filesystem-backed repositories using the `storage/filesystem` package and its `dotgit` reference storage. Users relying exclusively on the in-memory storage implementation, `storage/memory`, are not affected, because reference names are not resolved as filesystem paths. Exploitation requires an application using `go-git` with filesystem-backed storage to interact with a malicious Git server or otherwise process attacker-controlled reference names. ##### Patches The issue has been addressed by validating reference names at the `dotgit` storage entry points and rejecting names whose resolved paths could escape the reference storage. Users of filesystem-backed storage should upgrade to a patched version. ##### Workarounds Applications that exclusively use `storage/memory` are not affected and do not require a workaround for this vulnerability. For applications using filesystem-backed storage, avoid cloning from or fetching from untrusted Git servers until an upgrade is possible. Applications that directly construct or process reference names may also validate them before passing them to filesystem-backed `go-git` storage. Application-level validation should only be considered a temporary mitigation and does not replace upgrading to a patched version. ##### References - Fixes: - [https://github.com/go-git/go-git/pull/2247](https://redirect.github.com/go-git/go-git/pull/2247) - [https://github.com/go-git/go-git/pull/2254](https://redirect.github.com/go-git/go-git/pull/2254) ##### Credits Thanks to @&#8203;Saku0512 for reporting this issue and @&#8203;Sahana2524 for proposing the initial fix. 🙇 #### Severity - CVSS Score: 6.3 / 10 (Medium) - Vector String: `CVSS:3.1/AV:N/AC:L/PR:L/UI:R/S:U/C:N/I:H/A:L` #### References - [https://github.com/go-git/go-git/security/advisories/GHSA-qgq7-7hm3-q39j](https://redirect.github.com/go-git/go-git/security/advisories/GHSA-qgq7-7hm3-q39j) - [https://github.com/go-git/go-git/pull/2247](https://redirect.github.com/go-git/go-git/pull/2247) - [https://github.com/go-git/go-git/pull/2254](https://redirect.github.com/go-git/go-git/pull/2254) - [https://github.com/go-git/go-git/commit/4a0e66d555de5f9a30c31e2df64f445f42bd01e7](https://redirect.github.com/go-git/go-git/commit/4a0e66d555de5f9a30c31e2df64f445f42bd01e7) - [https://github.com/go-git/go-git/commit/da9f7d8a0e98b475600177348d6ece384a370f36](https://redirect.github.com/go-git/go-git/commit/da9f7d8a0e98b475600177348d6ece384a370f36) - [https://github.com/go-git/go-git/releases/tag/v5.19.2](https://redirect.github.com/go-git/go-git/releases/tag/v5.19.2) - [https://github.com/go-git/go-git/releases/tag/v6.0.0-alpha.5](https://redirect.github.com/go-git/go-git/releases/tag/v6.0.0-alpha.5) - [https://github.com/advisories/GHSA-qgq7-7hm3-q39j](https://redirect.github.com/advisories/GHSA-qgq7-7hm3-q39j) This data is provided by the [GitHub Advisory Database](https://redirect.github.com/advisories/GHSA-qgq7-7hm3-q39j) ([CC-BY 4.0](https://redirect.github.com/github/advisory-database/blob/main/LICENSE.md)). </details> --- ### Release Notes <details> <summary>go-git/go-git (github.com/go-git/go-git/v6)</summary> ### [`v6.0.0-alpha.5`](https://redirect.github.com/go-git/go-git/releases/tag/v6.0.0-alpha.5) [Compare Source](https://redirect.github.com/go-git/go-git/compare/v6.0.0-alpha.4...v6.0.0-alpha.5) #### What's Changed - plumbing: format/packfile, allow injecting a custom ObjectSelector by [@&#8203;Soph](https://redirect.github.com/Soph) in [#&#8203;2142](https://redirect.github.com/go-git/go-git/pull/2142) - storage: pool .pack file descriptors via internal/packhandle by [@&#8203;hiddeco](https://redirect.github.com/hiddeco) in [#&#8203;2132](https://redirect.github.com/go-git/go-git/pull/2132) - build: Update module golang.org/x/crypto to v0.52.0 \[SECURITY] (main) by [@&#8203;go-git-renovate](https://redirect.github.com/go-git-renovate)\[bot] in [#&#8203;2148](https://redirect.github.com/go-git/go-git/pull/2148) - build: Update module golang.org/x/net to v0.55.0 \[SECURITY] (main) by [@&#8203;go-git-renovate](https://redirect.github.com/go-git-renovate)\[bot] in [#&#8203;2151](https://redirect.github.com/go-git/go-git/pull/2151) - plumbing, storage: add CloseIdleDescriptors soft-close primitive by [@&#8203;hiddeco](https://redirect.github.com/hiddeco) in [#&#8203;2133](https://redirect.github.com/go-git/go-git/pull/2133) - \*: harden format parsers against unbounded loops by [@&#8203;hiddeco](https://redirect.github.com/hiddeco) in [#&#8203;2162](https://redirect.github.com/go-git/go-git/pull/2162) - storage: pack read optimisations and storage-wide LRU FD pool by [@&#8203;hiddeco](https://redirect.github.com/hiddeco) in [#&#8203;2134](https://redirect.github.com/go-git/go-git/pull/2134) - plumbing: format/packfile, fix delta-base parsing bugs by [@&#8203;hiddeco](https://redirect.github.com/hiddeco) in [#&#8203;2163](https://redirect.github.com/go-git/go-git/pull/2163) - git: worktree, hoist Config() calls out of per-file loops by [@&#8203;cedric-appdirect](https://redirect.github.com/cedric-appdirect) in [#&#8203;1990](https://redirect.github.com/go-git/go-git/pull/1990) - storage: filesystem, pool FSObject reads via PackHandle by [@&#8203;hiddeco](https://redirect.github.com/hiddeco) in [#&#8203;2154](https://redirect.github.com/go-git/go-git/pull/2154) - plumbing: format/index, accept empty trailing checksum on decode by [@&#8203;pjbgf](https://redirect.github.com/pjbgf) in [#&#8203;2181](https://redirect.github.com/go-git/go-git/pull/2181) - build: Update golang (main) by [@&#8203;go-git-renovate](https://redirect.github.com/go-git-renovate)\[bot] in [#&#8203;2182](https://redirect.github.com/go-git/go-git/pull/2182) - build: Update module golang.org/x/net to v0.56.0 (main) by [@&#8203;go-git-renovate](https://redirect.github.com/go-git-renovate)\[bot] in [#&#8203;2191](https://redirect.github.com/go-git/go-git/pull/2191) - \*: speed up multi-pack reads via Index fanout probes by [@&#8203;hiddeco](https://redirect.github.com/hiddeco) in [#&#8203;2147](https://redirect.github.com/go-git/go-git/pull/2147) - Fix URL insteadOf to use longest match when multiple values exist by [@&#8203;AriehSchneier](https://redirect.github.com/AriehSchneier) in [#&#8203;2189](https://redirect.github.com/go-git/go-git/pull/2189) - transport/http, backend, utils/ioutil: fix HTTP data races on the fetch and serve paths by [@&#8203;georg](https://redirect.github.com/georg) in [#&#8203;2128](https://redirect.github.com/go-git/go-git/pull/2128) - plumbing: protocol/packp, handle shallow-only no-op push in UpdateRequests.Decode by [@&#8203;yuzhuo](https://redirect.github.com/yuzhuo) in [#&#8203;2172](https://redirect.github.com/go-git/go-git/pull/2172) - git: signer, add context.Context to Sign by [@&#8203;pjbgf](https://redirect.github.com/pjbgf) in [#&#8203;2202](https://redirect.github.com/go-git/go-git/pull/2202) - plumbing: transport/http, Expose typed auth error for Azure DevOps /\_signin redirects by [@&#8203;jfjrh2014](https://redirect.github.com/jfjrh2014) in [#&#8203;2201](https://redirect.github.com/go-git/go-git/pull/2201) - plumbing: format, faster diff patch generation by [@&#8203;pjbgf](https://redirect.github.com/pjbgf) in [#&#8203;2186](https://redirect.github.com/go-git/go-git/pull/2186) - plumbing: transport, Protocol v2 for upload-pack by [@&#8203;blmayer](https://redirect.github.com/blmayer) in [#&#8203;2188](https://redirect.github.com/go-git/go-git/pull/2188) - plumbing: pktline, use Scanner for decoding by [@&#8203;aymanbagabas](https://redirect.github.com/aymanbagabas) in [#&#8203;2038](https://redirect.github.com/go-git/go-git/pull/2038) - internal: server/git, Fix TestGitServer\_Timeout flakiness on Windows CI by [@&#8203;aymanbagabas](https://redirect.github.com/aymanbagabas) in [#&#8203;2129](https://redirect.github.com/go-git/go-git/pull/2129) - plumbing: packp, validate push options to prevent invalid characters by [@&#8203;aymanbagabas](https://redirect.github.com/aymanbagabas) in [#&#8203;2057](https://redirect.github.com/go-git/go-git/pull/2057) - plumbing: packp/capability, Zero-value-safe types and capability cleanup (1/11) by [@&#8203;aymanbagabas](https://redirect.github.com/aymanbagabas) in [#&#8203;2206](https://redirect.github.com/go-git/go-git/pull/2206) - plumbing: object, skip path validation in tree diff walk by [@&#8203;pjbgf](https://redirect.github.com/pjbgf) in [#&#8203;2222](https://redirect.github.com/go-git/go-git/pull/2222) - plumbing: packp/transport, Slice-based AdvRefs and v1 handling (2/11) by [@&#8203;aymanbagabas](https://redirect.github.com/aymanbagabas) in [#&#8203;2225](https://redirect.github.com/go-git/go-git/pull/2225) - plumbing: transport, Add options and result struct to GetRemoteRefs (3/11) by [@&#8203;aymanbagabas](https://redirect.github.com/aymanbagabas) in [#&#8203;2226](https://redirect.github.com/go-git/go-git/pull/2226) - git: Expose AlternatesFS on PlainOpenOptions by [@&#8203;andrew](https://redirect.github.com/andrew) in [#&#8203;2101](https://redirect.github.com/go-git/go-git/pull/2101) - plumbing: packp, Protocol v2 wire types with caller-owned packfile streaming (4/11) by [@&#8203;aymanbagabas](https://redirect.github.com/aymanbagabas) in [#&#8203;2227](https://redirect.github.com/go-git/go-git/pull/2227) - plumbing/transport: receive\_pack, add ReceivePackHooks with PreReceive/PostReceive by [@&#8203;andrew](https://redirect.github.com/andrew) in [#&#8203;2236](https://redirect.github.com/go-git/go-git/pull/2236) - plumbing: transport, Protocol v2 session handshake and Command (5/11) by [@&#8203;aymanbagabas](https://redirect.github.com/aymanbagabas) in [#&#8203;2228](https://redirect.github.com/go-git/go-git/pull/2228) - plumbing: transport, ls-refs over Protocol v2 for GetRemoteRefs (6/11) by [@&#8203;aymanbagabas](https://redirect.github.com/aymanbagabas) in [#&#8203;2229](https://redirect.github.com/go-git/go-git/pull/2229) - plumbing: transport, fetch over Protocol v2 with caller-owned packfile (7/11) by [@&#8203;aymanbagabas](https://redirect.github.com/aymanbagabas) in [#&#8203;2230](https://redirect.github.com/go-git/go-git/pull/2230) - plumbing: transport, Wire Protocol v2 across HTTP and share the client core (8/11) by [@&#8203;aymanbagabas](https://redirect.github.com/aymanbagabas) in [#&#8203;2231](https://redirect.github.com/go-git/go-git/pull/2231) - plumbing: transport, Refactor server-side Protocol v2 onto packp types (9/11) by [@&#8203;aymanbagabas](https://redirect.github.com/aymanbagabas) in [#&#8203;2232](https://redirect.github.com/go-git/go-git/pull/2232) - plumbing: transport, git archive over HTTP (10/11) by [@&#8203;aymanbagabas](https://redirect.github.com/aymanbagabas) in [#&#8203;2233](https://redirect.github.com/go-git/go-git/pull/2233) - plumbing: transport, Run the upload-pack suite across v0/v1/v2 (11/11) by [@&#8203;aymanbagabas](https://redirect.github.com/aymanbagabas) in [#&#8203;2234](https://redirect.github.com/go-git/go-git/pull/2234) - plumbing: optimize Tree.Decode with ReadSlice and io.ReadFull by [@&#8203;Bluebugs](https://redirect.github.com/Bluebugs) in [#&#8203;1736](https://redirect.github.com/go-git/go-git/pull/1736) - plumbing: object, Isolate tests from host git config. by [@&#8203;cedric-appdirect](https://redirect.github.com/cedric-appdirect) in [#&#8203;2122](https://redirect.github.com/go-git/go-git/pull/2122) - plumbing: default to wire protocol v2 and close client/server conformance gaps by [@&#8203;pjbgf](https://redirect.github.com/pjbgf) in [#&#8203;2237](https://redirect.github.com/go-git/go-git/pull/2237) - build: Update module golang.org/x/text to v0.39.0 (main) by [@&#8203;go-git-renovate](https://redirect.github.com/go-git-renovate)\[bot] in [#&#8203;2241](https://redirect.github.com/go-git/go-git/pull/2241) - build: Update golang (main) by [@&#8203;go-git-renovate](https://redirect.github.com/go-git-renovate)\[bot] in [#&#8203;2246](https://redirect.github.com/go-git/go-git/pull/2246) - plumbing: object, include submodules in patches by [@&#8203;upuddu](https://redirect.github.com/upuddu) in [#&#8203;2243](https://redirect.github.com/go-git/go-git/pull/2243) - storage: dotgit, reject path traversal in reference names by [@&#8203;Sahana2524](https://redirect.github.com/Sahana2524) in [#&#8203;2247](https://redirect.github.com/go-git/go-git/pull/2247) - plumbing: transport/http, redact credentials in error messages by [@&#8203;Sahana2524](https://redirect.github.com/Sahana2524) in [#&#8203;2252](https://redirect.github.com/go-git/go-git/pull/2252) - git: worktree, checkout reuse a single os.Root per reset. by [@&#8203;cedric-appdirect](https://redirect.github.com/cedric-appdirect) in [#&#8203;2259](https://redirect.github.com/go-git/go-git/pull/2259) - git: Worktree: Add stores index entires with backslashes on Windows by [@&#8203;joshblum](https://redirect.github.com/joshblum) in [#&#8203;2253](https://redirect.github.com/go-git/go-git/pull/2253) - storage: dotgit, align reference-name safety with refname\_is\_safe by [@&#8203;pjbgf](https://redirect.github.com/pjbgf) in [#&#8203;2257](https://redirect.github.com/go-git/go-git/pull/2257) - git: fetch, refuse to clobber existing tags by [@&#8203;Sahana2524](https://redirect.github.com/Sahana2524) in [#&#8203;2250](https://redirect.github.com/go-git/go-git/pull/2250) - internal: v2, skip closeReader on a cancelled context by [@&#8203;georg](https://redirect.github.com/georg) in [#&#8203;2269](https://redirect.github.com/go-git/go-git/pull/2269) - git: include shallow references in object walker by [@&#8203;erka](https://redirect.github.com/erka) in [#&#8203;1792](https://redirect.github.com/go-git/go-git/pull/1792) - plumbing: protocol/packp, reject control bytes in daemon request by [@&#8203;Sahana2524](https://redirect.github.com/Sahana2524) in [#&#8203;2263](https://redirect.github.com/go-git/go-git/pull/2263) - plumbing: protocol/packp, compare zero object ids by value in Action by [@&#8203;Sahana2524](https://redirect.github.com/Sahana2524) in [#&#8203;2264](https://redirect.github.com/go-git/go-git/pull/2264) - plumbing: gitignore, Clarify pattern and matcher parameters by [@&#8203;ahmojo](https://redirect.github.com/ahmojo) in [#&#8203;2248](https://redirect.github.com/go-git/go-git/pull/2248) - storage: filesystem, Make ObjectStorage a pointer field by [@&#8203;AriehSchneier](https://redirect.github.com/AriehSchneier) in [#&#8203;2118](https://redirect.github.com/go-git/go-git/pull/2118) - plumbing: format/index, sort entries by Name and Stage by [@&#8203;wacky6](https://redirect.github.com/wacky6) in [#&#8203;2158](https://redirect.github.com/go-git/go-git/pull/2158) - Fix CodeQL warnings by [@&#8203;AriehSchneier](https://redirect.github.com/AriehSchneier) in [#&#8203;2126](https://redirect.github.com/go-git/go-git/pull/2126) - git: worktree, fix RemoveGlob on root-level files by [@&#8203;NoahStarkenburg](https://redirect.github.com/NoahStarkenburg) in [#&#8203;2219](https://redirect.github.com/go-git/go-git/pull/2219) - internal: revision, fix resolution for tags containing @&#8203; and / by [@&#8203;tmchow](https://redirect.github.com/tmchow) in [#&#8203;1957](https://redirect.github.com/go-git/go-git/pull/1957) - git: submodule, skip .gitmodules entries missing from the index by [@&#8203;gecube](https://redirect.github.com/gecube) in [#&#8203;2256](https://redirect.github.com/go-git/go-git/pull/2256) - build: Update module github.com/go-git/go-billy/v6 to v6.0.0-alpha.2 (main) by [@&#8203;go-git-renovate](https://redirect.github.com/go-git-renovate)\[bot] in [#&#8203;2270](https://redirect.github.com/go-git/go-git/pull/2270) - build: re-enable go-billy renovate updates on `v5.x` by [@&#8203;pjbgf](https://redirect.github.com/pjbgf) in [#&#8203;2272](https://redirect.github.com/go-git/go-git/pull/2272) - build: Update github-actions (main) by [@&#8203;go-git-renovate](https://redirect.github.com/go-git-renovate)\[bot] in [#&#8203;2273](https://redirect.github.com/go-git/go-git/pull/2273) - build: Update github-actions to v7 (main) (major) by [@&#8203;go-git-renovate](https://redirect.github.com/go-git-renovate)\[bot] in [#&#8203;2274](https://redirect.github.com/go-git/go-git/pull/2274) - plumbing: format/gitignore, fix trailing \*\* matching unrelated paths by [@&#8203;glitch-ux](https://redirect.github.com/glitch-ux) in [#&#8203;2279](https://redirect.github.com/go-git/go-git/pull/2279) - build: Update github-actions (main) by [@&#8203;go-git-renovate](https://redirect.github.com/go-git-renovate)\[bot] in [#&#8203;2280](https://redirect.github.com/go-git/go-git/pull/2280) - git: worktree, make the filesystem wrapper a symlink-safe boundary by [@&#8203;pjbgf](https://redirect.github.com/pjbgf) in [#&#8203;2276](https://redirect.github.com/go-git/go-git/pull/2276) #### New Contributors - [@&#8203;jfjrh2014](https://redirect.github.com/jfjrh2014) made their first contribution in [#&#8203;2201](https://redirect.github.com/go-git/go-git/pull/2201) - [@&#8203;upuddu](https://redirect.github.com/upuddu) made their first contribution in [#&#8203;2243](https://redirect.github.com/go-git/go-git/pull/2243) - [@&#8203;Sahana2524](https://redirect.github.com/Sahana2524) made their first contribution in [#&#8203;2247](https://redirect.github.com/go-git/go-git/pull/2247) - [@&#8203;erka](https://redirect.github.com/erka) made their first contribution in [#&#8203;1792](https://redirect.github.com/go-git/go-git/pull/1792) - [@&#8203;ahmojo](https://redirect.github.com/ahmojo) made their first contribution in [#&#8203;2248](https://redirect.github.com/go-git/go-git/pull/2248) - [@&#8203;wacky6](https://redirect.github.com/wacky6) made their first contribution in [#&#8203;2158](https://redirect.github.com/go-git/go-git/pull/2158) - [@&#8203;NoahStarkenburg](https://redirect.github.com/NoahStarkenburg) made their first contribution in [#&#8203;2219](https://redirect.github.com/go-git/go-git/pull/2219) - [@&#8203;gecube](https://redirect.github.com/gecube) made their first contribution in [#&#8203;2256](https://redirect.github.com/go-git/go-git/pull/2256) - [@&#8203;glitch-ux](https://redirect.github.com/glitch-ux) made their first contribution in [#&#8203;2279](https://redirect.github.com/go-git/go-git/pull/2279) **Full Changelog**: <go-git/go-git@v6.0.0-alpha.4...v6.0.0-alpha.5> </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - Monday through Friday (`* * * * 1-5`) 🚦 **Automerge**: Enabled. ♻ **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. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Mend Renovate](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNTkuMiIsInVwZGF0ZWRJblZlciI6IjQzLjI1OS4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiLCJpbXBhY3Qvbm8tY2hhbmdlbG9nLXJlcXVpcmVkIl19--> Co-authored-by: pulumi-renovate[bot] <189166143+pulumi-renovate[bot]@users.noreply.github.com>
1 parent 2d91411 commit 9480000

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

go.mod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -102,8 +102,8 @@ require (
102102
github.com/felixge/httpsnoop v1.1.0 // indirect
103103
github.com/fsnotify/fsnotify v1.10.1 // indirect
104104
github.com/go-git/gcfg/v2 v2.0.2 // indirect
105-
github.com/go-git/go-billy/v6 v6.0.0-alpha.1 // indirect
106-
github.com/go-git/go-git/v6 v6.0.0-alpha.4 // indirect
105+
github.com/go-git/go-billy/v6 v6.0.0-alpha.2 // indirect
106+
github.com/go-git/go-git/v6 v6.0.0-alpha.5 // indirect
107107
github.com/go-jose/go-jose/v4 v4.1.4 // indirect
108108
github.com/go-logr/logr v1.4.3 // indirect
109109
github.com/go-logr/stdr v1.2.2 // indirect
@@ -251,7 +251,7 @@ require (
251251
golang.org/x/time v0.15.0 // indirect
252252
golang.org/x/tools v0.48.0 // indirect
253253
google.golang.org/api v0.290.0 // indirect
254-
google.golang.org/appengine/v2 v2.0.6 // indirect
254+
google.golang.org/appengine v1.6.8 // indirect
255255
google.golang.org/genproto v0.0.0-20260519071638-aa98bba5eb94 // indirect
256256
google.golang.org/genproto/googleapis/api v0.0.0-20260713224248-f5fc221cf8c4 // indirect
257257
google.golang.org/genproto/googleapis/rpc v0.0.0-20260713224248-f5fc221cf8c4 // indirect

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3097,16 +3097,16 @@ github.com/go-git/go-billy/v5 v5.4.1/go.mod h1:vjbugF6Fz7JIflbVpl1hJsGjSHNltrSw4
30973097
github.com/go-git/go-billy/v5 v5.6.2/go.mod h1:rcFC2rAsp/erv7CMz9GczHcuD0D32fWzH+MJAU+jaUU=
30983098
github.com/go-git/go-billy/v5 v5.9.0 h1:jItGXszUDRtR/AlferWPTMN4j38BQ88XnXKbilmmBPA=
30993099
github.com/go-git/go-billy/v5 v5.9.0/go.mod h1:jCnQMLj9eUgGU7+ludSTYoZL/GGmii14RxKFj7ROgHw=
3100-
github.com/go-git/go-billy/v6 v6.0.0-alpha.1 h1:xVjAR4oUvrKy7/Xuw/lLlV3gkxR3KO2H8W+MamuVVsQ=
3101-
github.com/go-git/go-billy/v6 v6.0.0-alpha.1/go.mod h1:eaCUpHbedW7//EwcYmUDfJe2N6sJC9O12AT0OTqJR1E=
3100+
github.com/go-git/go-billy/v6 v6.0.0-alpha.2 h1:1Sv5WemXL8CxKrAx1gioJ+uHNb2bZJhiQLfwSZ4Et8c=
3101+
github.com/go-git/go-billy/v6 v6.0.0-alpha.2/go.mod h1:r/bsv9i/iDyyEU8/Z6mjC+YraOVwie1ddfUqBCElKXQ=
31023102
github.com/go-git/go-git-fixtures/v4 v4.3.2-0.20231010084843-55a94097c399/go.mod h1:1OCfN199q1Jm3HZlxleg+Dw/mwps2Wbk9frAWm+4FII=
31033103
github.com/go-git/go-git-fixtures/v6 v6.0.0-alpha.1 h1:gmqi2jvsreu0s8JMLylYDFq4sbjHwwlhktMw0DUg3mA=
31043104
github.com/go-git/go-git-fixtures/v6 v6.0.0-alpha.1/go.mod h1:ECf1MqJlBdYpKggBrOXjo/0EnvRZx6D++I86UYjPgAQ=
31053105
github.com/go-git/go-git/v5 v5.16.5/go.mod h1:QOMLpNf1qxuSY4StA/ArOdfFR2TrKEjJiye2kel2m+M=
31063106
github.com/go-git/go-git/v5 v5.19.1 h1:nX27AnaU43/K5bKktKwgBmR9lawoYVe1Ckg0rgzzN00=
31073107
github.com/go-git/go-git/v5 v5.19.1/go.mod h1:Pb1v0c7/g8aGQJwx9Us09W85yGoyvSwuhEGMH7zjDKQ=
3108-
github.com/go-git/go-git/v6 v6.0.0-alpha.4 h1:aDTc2UGanmaE7FkGLSlBEB9nohMnQ+RKXcfq/D+esDQ=
3109-
github.com/go-git/go-git/v6 v6.0.0-alpha.4/go.mod h1:4ODa/G7hPWrh4Y+7lmt59Ij3zW38IEfvRoAZxLYYBhc=
3108+
github.com/go-git/go-git/v6 v6.0.0-alpha.5 h1:sE+OlkHgYWNMVmN1s9sR7uyFgsWLtxcNWse/vBYKxRE=
3109+
github.com/go-git/go-git/v6 v6.0.0-alpha.5/go.mod h1:3IjhiZnM+uBmUrOGSeqrJpsmi4Vd0H2NZO/uK2a7d0s=
31103110
github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1/go.mod h1:vR7hzQXu2zJy9AVAgeJqvqgH9Q5CA+iKCZ2gyEVpxRU=
31113111
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20191125211704-12ad95a8df72/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=
31123112
github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4/go.mod h1:tQ2UAYgL5IevRw8kRxooKSPJfGvJ9fJQFa0TUsXzTg8=

0 commit comments

Comments
 (0)