libgit2sharp icon indicating copy to clipboard operation
libgit2sharp copied to clipboard

CloneOptions does not contains a definition of CredentialsProvider,,,

Open sgagnier-hearst opened this issue 1 year ago • 16 comments

Reproduction steps

var cloneOptions = new CloneOptions(); cloneOptions.CredentialsProvider = (_url, _user, _cred) => new UsernamePasswordCredentials { Username = credentials.Username, Password = credentials.Password }; Repository.Clone(repository, repofolder, CloneOptions);

Expected behavior

Private repository to get cloned to local hard drive.

Actual behavior

Error message CS1061 'CloneOptions' does not contain a definition for 'CredentialsProvider' and no accessible extension method 'CredentialsProvider' accepting a first argument of type 'CloneOptions' could be found (are you missing a using directive or an assembly reference?)

Version of LibGit2Sharp (release number or SHA1)

0.29.0

Operating system(s) tested; .NET runtime tested

Windows 11, .Net Framework 4.8

sgagnier-hearst avatar Jan 22 '24 18:01 sgagnier-hearst

As mentioned in the change log, there were some breaking changes to CloneOptions as part of adding proxy support.

CredentialsProvider can now be found on the FetchOptions property on CloneOptions.

bording avatar Jan 22 '24 22:01 bording

As mentioned in the change log, there were some breaking changes to CloneOptions as part of adding proxy support.

CredentialsProvider can now be found on the FetchOptions property on CloneOptions.

from this explanation, it is not clear at all what changes should be made. If you look at FetchOptions now, you won't see anything similar to CredentialsProvider there. Documentation, for example git-clone , immediately became useless.. Great, everything is very clear.... (no)

kazakevich-alexei avatar Jan 29 '24 12:01 kazakevich-alexei

As mentioned in the change log, there were some breaking changes to CloneOptions as part of adding proxy support.

CredentialsProvider can now be found on the FetchOptions property on CloneOptions.

The breaking change makes sense to me, but what was the rationale behind making the FetchOptions property on CloneOptions read only? I have a specific way of newing up FetchOptions in my app and not being able to assign means I'd have to change that logic to operate on an existing instance.

Do you have any opposition to exposing that either via setter or ctor? I'd be happy to submit a PR.

mburtka avatar Jan 29 '24 15:01 mburtka

I too am utterly confused by this change. Previously, I was creating a CloneOptions and setting CredentialsProvider in there. I can create a FetchOptions instead and set the credentials, but can't find any way to pass this into CloneOptions.

Please can someone share a fix? I'm passing in the credentials because the call failed without them.

gwsutcliffe avatar Feb 20 '24 17:02 gwsutcliffe

@gwsutcliffe Does this work?

Repository.Clone("https://github.com/libgit2/TestGitRepository", "/tmp/testgitrepository",
    new CloneOptions {
        FetchOptions = {
            CredentialsProvider = ...
        }
    });

ethomson avatar Feb 21 '24 11:02 ethomson

FetchOptions is read only (see the comment by mburtka above). This is the problem - your solution would be fine if FetchOptions could be set (and I wouldn't be posting here).

I've rolled back to v0.28 for now so as not to break my application's functionality.

gwsutcliffe avatar Feb 21 '24 11:02 gwsutcliffe

Ah, yes, I see, it was changed in November. In that case:

var cloneOptions = new CloneOptions();
cloneOptions.FetchOptions.CredentialsProvider = ...

should work, no?

(It looks like @mburtka was complaining about not being able to new up a FetchOptions - but I don't have any insight into the API design here.)

ethomson avatar Feb 21 '24 12:02 ethomson

Ah, yes, I see, it was changed in November. In that case:

var cloneOptions = new CloneOptions();
cloneOptions.FetchOptions.CredentialsProvider = ...

should work, no?

That does work, but I had a factory method to new up my customized `FetchOptions' using credentialing defined at startup. To upgrade I have to update that to operate on an existing instance:

var cloneOptions = new CloneOptions();
_fetchOptionsManager.Populate(cloneOptions.FetchOptions);

Instead of just newing up the FetchOptions with the CloneOptions. While it does work, it's ugly and is counter to all the other get/set behavior of the API.

mburtka avatar Feb 21 '24 15:02 mburtka

Instead of just newing up the FetchOptions with the CloneOptions. While it does work, it's ugly and is counter to all the other get/set behavior of the API.

Right, like I said, I don't have any insight into the rationale here. I don't know if @bording would be willing to review a PR here to change this back to have a setter, or if there's a philosophical or architectural reason to keep it readonly?

ethomson avatar Feb 21 '24 15:02 ethomson

Right, like I said, I don't have any insight into the rationale here. I don't know if @bording would be willing to review a PR here to change this back to have a setter, or if there's a philosophical or architectural reason to keep it readonly?

This was an intentional change on my part, primarily around the fact that I wanted to guard against the FetchOptions property from ever being null. I don't like APIs that have you create a type (CloneOptions in this case) that require you to create a new instance of a object, but then also require you to create instances of other nested types to actually make the original object valid.

That was why when I moved FetchOptions into a property of CloneOptions instead of how it was previously combining the various properties together, I decided to ensure the creation of the CloneOptions would also create the FetchOptions for it. And since an instance has been created for you, you would then set the individual options from the property as @ethomson demonstrated in https://github.com/libgit2/libgit2sharp/issues/2075#issuecomment-1956521379.

bording avatar Feb 22 '24 01:02 bording

@bording would you be amenable to having a constructor with either a null guard using the Ensure class used elsewhere or a coalesce-assign?

I new up my FetchOptions using a factory injected at startup (with credentialing, prune settings, etc..) and would prefer to keep that logic in the factory. But if you don't want to go that route I understand.

mburtka avatar Mar 03 '24 18:03 mburtka

Just creating links for the other issues by people facing the same issue. https://github.com/libgit2/libgit2sharp/issues/2087 https://github.com/libgit2/libgit2sharp/issues/2088

To set the credentials correctly, see: https://github.com/libgit2/libgit2sharp/issues/2075#issuecomment-1956884829

davidsr2r avatar Apr 15 '24 02:04 davidsr2r

Why do we have breaking change here? Breaking changes shall be introduce only in major versions. Or did I learn it wrong?

No1e avatar May 24 '24 14:05 No1e

Why do we have breaking change here? Breaking changes shall be introduce only in major versions. Or did I learn it wrong?

In semver 0.28 to 0.29 is considered a major version change and allows for breaking changes.

audunrunhn avatar Jun 11 '24 10:06 audunrunhn

In semver 0.28 to 0.29 is considered a major version change and allows for breaking changes.

I think you have to re-read this part of semver: https://semver.org/

  1. MINOR version when you add functionality in a backward compatible manner

PulsarFX avatar Jun 20 '24 13:06 PulsarFX

In semver 0.28 to 0.29 is considered a major version change and allows for breaking changes.

I think you have to re-read this part of semver: https://semver.org/

  1. MINOR version when you add functionality in a backward compatible manner

Yes, absolutely once you hit v1, but the version of this package starts with 0 so breaking something in 0.29 is fine.

audunrunhn avatar Jun 20 '24 14:06 audunrunhn