Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: go-git/go-git
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v5.10.1
Choose a base ref
...
head repository: go-git/go-git
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v5.11.0
Choose a head ref
  • 17 commits
  • 20 files changed
  • 6 contributors

Commits on Nov 27, 2023

  1. Configuration menu
    Copy the full SHA
    861009f View commit details
    Browse the repository at this point in the history

Commits on Nov 28, 2023

  1. 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.
    djmoch committed Nov 28, 2023
    Configuration menu
    Copy the full SHA
    aebf868 View commit details
    Browse the repository at this point in the history
  2. 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>
    dependabot[bot] authored Nov 28, 2023
    Configuration menu
    Copy the full SHA
    93b009c View commit details
    Browse the repository at this point in the history
  3. 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
    pjbgf authored Nov 28, 2023
    Configuration menu
    Copy the full SHA
    4131552 View commit details
    Browse the repository at this point in the history
  4. 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>
    dependabot[bot] authored Nov 28, 2023
    Configuration menu
    Copy the full SHA
    a240375 View commit details
    Browse the repository at this point in the history
  5. 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
    pjbgf authored Nov 28, 2023
    Configuration menu
    Copy the full SHA
    a3b3d53 View commit details
    Browse the repository at this point in the history
  6. 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>
    dependabot[bot] authored Nov 28, 2023
    Configuration menu
    Copy the full SHA
    d85bc99 View commit details
    Browse the repository at this point in the history

Commits on Nov 30, 2023

  1. 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
    pjbgf authored Nov 30, 2023
    Configuration menu
    Copy the full SHA
    d87110b View commit details
    Browse the repository at this point in the history
  2. git: validate reference names

    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
    aymanbagabas committed Nov 30, 2023
    Configuration menu
    Copy the full SHA
    de1d5a5 View commit details
    Browse the repository at this point in the history

Commits on Dec 1, 2023

  1. Merge pull request #950 from aymanbagabas/validate-ref

    git: validate reference names (#929)
    pjbgf authored Dec 1, 2023
    Configuration menu
    Copy the full SHA
    cc1895b View commit details
    Browse the repository at this point in the history
  2. Merge pull request #939 from dhoizner/fix-pull-after-shallow

    git: stop iterating at oldest shallow when pulling. Fixes #305
    pjbgf authored Dec 1, 2023
    Configuration menu
    Copy the full SHA
    ae552ce View commit details
    Browse the repository at this point in the history
  3. Merge pull request #941 from djmoch/filestats-rename

    plumbing: object, enable renames in getFileStatsFromFilePatches
    pjbgf authored Dec 1, 2023
    Configuration menu
    Copy the full SHA
    4f61489 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2023

  1. 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>
    pjbgf committed Dec 2, 2023
    Configuration menu
    Copy the full SHA
    8b47ceb View commit details
    Browse the repository at this point in the history

Commits on Dec 3, 2023

  1. Merge pull request #953 from pjbgf/alternates

    storage: filesystem, Add option to set a specific FS for alternates
    pjbgf authored Dec 3, 2023
    Configuration menu
    Copy the full SHA
    cec7da6 View commit details
    Browse the repository at this point in the history

Commits on Dec 8, 2023

  1. 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>
    pjbgf committed Dec 8, 2023
    Configuration menu
    Copy the full SHA
    b2c1982 View commit details
    Browse the repository at this point in the history
  2. 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>
    pjbgf committed Dec 8, 2023
    Configuration menu
    Copy the full SHA
    5bd1d8f View commit details
    Browse the repository at this point in the history
  3. Merge pull request #958 from pjbgf/workval

    Align worktree validation with upstream and remove build warnings
    pjbgf authored Dec 8, 2023
    Configuration menu
    Copy the full SHA
    5d08d3b View commit details
    Browse the repository at this point in the history
Loading