-
Notifications
You must be signed in to change notification settings - Fork 782
Comparing changes
Open a pull request
base repository: go-git/go-git
base: v5.10.1
head repository: go-git/go-git
compare: v5.11.0
- 17 commits
- 20 files changed
- 6 contributors
Commits on Nov 27, 2023
-
Configuration menu - View commit details
-
Copy full SHA for 861009f - Browse repository at this point
Copy the full SHA 861009fView commit details
Commits on Nov 28, 2023
-
plumbing: object, enable renames in getFileStatsFromFilePatches
Diff has handled renames by default since 2020. This change sets Name for the renamed file in a manner similar to diffstat.
Configuration menu - View commit details
-
Copy full SHA for aebf868 - Browse repository at this point
Copy the full SHA aebf868View commit details -
build: bump golang.org/x/crypto from 0.15.0 to 0.16.0
Bumps [golang.org/x/crypto](https://github.com/golang/crypto) from 0.15.0 to 0.16.0. - [Commits](golang/crypto@v0.15.0...v0.16.0) --- updated-dependencies: - dependency-name: golang.org/x/crypto dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for 93b009c - Browse repository at this point
Copy the full SHA 93b009cView commit details -
Merge pull request #945 from go-git/dependabot/go_modules/golang.org/…
…x/crypto-0.16.0 build: bump golang.org/x/crypto from 0.15.0 to 0.16.0
Configuration menu - View commit details
-
Copy full SHA for 4131552 - Browse repository at this point
Copy the full SHA 4131552View commit details -
build: bump golang.org/x/net from 0.18.0 to 0.19.0
Bumps [golang.org/x/net](https://github.com/golang/net) from 0.18.0 to 0.19.0. - [Commits](golang/net@v0.18.0...v0.19.0) --- updated-dependencies: - dependency-name: golang.org/x/net dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for a240375 - Browse repository at this point
Copy the full SHA a240375View commit details -
Merge pull request #947 from go-git/dependabot/go_modules/golang.org/…
…x/net-0.19.0 build: bump golang.org/x/net from 0.18.0 to 0.19.0
Configuration menu - View commit details
-
Copy full SHA for a3b3d53 - Browse repository at this point
Copy the full SHA a3b3d53View commit details -
build: bump github.com/go-git/go-git/v5 in /cli/go-git
Bumps [github.com/go-git/go-git/v5](https://github.com/go-git/go-git) from 5.10.1-0.20231107163107-e54a6ae399e9 to 5.10.1. - [Release notes](https://github.com/go-git/go-git/releases) - [Commits](https://github.com/go-git/go-git/commits/v5.10.1) --- updated-dependencies: - dependency-name: github.com/go-git/go-git/v5 dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com>
Configuration menu - View commit details
-
Copy full SHA for d85bc99 - Browse repository at this point
Copy the full SHA d85bc99View commit details
Commits on Nov 30, 2023
-
Merge pull request #948 from go-git/dependabot/go_modules/cli/go-git/…
…github.com/go-git/go-git/v5-5.10.1 build: bump github.com/go-git/go-git/v5 from 5.10.1-0.20231107163107-e54a6ae399e9 to 5.10.1 in /cli/go-git
Configuration menu - View commit details
-
Copy full SHA for d87110b - Browse repository at this point
Copy the full SHA d87110bView commit details -
Check reference names format before creating branches/tags/remotes. This should probably be in a lower level somewhere in `plumbing`. Validating the names under `plumbing.NewReference*` is not possible since these functions don't return errors. Fixes: #929
Configuration menu - View commit details
-
Copy full SHA for de1d5a5 - Browse repository at this point
Copy the full SHA de1d5a5View commit details
Commits on Dec 1, 2023
-
Merge pull request #950 from aymanbagabas/validate-ref
git: validate reference names (#929)
Configuration menu - View commit details
-
Copy full SHA for cc1895b - Browse repository at this point
Copy the full SHA cc1895bView commit details -
Merge pull request #939 from dhoizner/fix-pull-after-shallow
git: stop iterating at oldest shallow when pulling. Fixes #305
Configuration menu - View commit details
-
Copy full SHA for ae552ce - Browse repository at this point
Copy the full SHA ae552ceView commit details -
Merge pull request #941 from djmoch/filestats-rename
plumbing: object, enable renames in getFileStatsFromFilePatches
Configuration menu - View commit details
-
Copy full SHA for 4f61489 - Browse repository at this point
Copy the full SHA 4f61489View commit details
Commits on Dec 2, 2023
-
storage: filesystem, Add option to set a specific FS for alternates
Introduces the option to set a FS for alternates, enabling more flexible cross FS sharing of alternates. If none is set, falls back to the current FS used for the object storage. The changes only process a given path once, and if an alternates dir is not valid, exits with error - aligning behaviour with upstream. Signed-off-by: Paulo Gomes <paulo.gomes@suse.com>
Configuration menu - View commit details
-
Copy full SHA for 8b47ceb - Browse repository at this point
Copy the full SHA 8b47cebView commit details
Commits on Dec 3, 2023
-
Merge pull request #953 from pjbgf/alternates
storage: filesystem, Add option to set a specific FS for alternates
Configuration menu - View commit details
-
Copy full SHA for cec7da6 - Browse repository at this point
Copy the full SHA cec7da6View commit details
Commits on Dec 8, 2023
-
git: worktree, Align validation with upstream rules
Some worktree validation rules observed upstream are not checked by go-git, leading to scenarios in which what seems to be a valid repository for go-git is not necessarily the case for the git cli. Signed-off-by: Paulo Gomes <paulo.gomes@suse.com>
Configuration menu - View commit details
-
Copy full SHA for b2c1982 - Browse repository at this point
Copy the full SHA b2c1982View commit details -
build: Ensure checkout is the first operation
The setup-go step can be sped up by caching Go dependencies. The input for that operation is the go.sum file. Previously, the checkout operation was happening after the setup-go, which meant that go.sum was never available which effectively meant the cache was disabled. Signed-off-by: Paulo Gomes <paulo.gomes@suse.com>
Configuration menu - View commit details
-
Copy full SHA for 5bd1d8f - Browse repository at this point
Copy the full SHA 5bd1d8fView commit details -
Merge pull request #958 from pjbgf/workval
Align worktree validation with upstream and remove build warnings
Configuration menu - View commit details
-
Copy full SHA for 5d08d3b - Browse repository at this point
Copy the full SHA 5d08d3bView commit details
This comparison is taking too long to generate.
Unfortunately it looks like we can’t render this comparison for you right now. It might be too big, or there might be something weird with your repository.
You can try running this command locally to see the comparison on your machine:
git diff v5.10.1...v5.11.0