-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dependabot does not update to latest preview version #1928
Comments
I just stumbled over this issue as part of my fix I am preparing in #4749 It seems the NuGet API does not include any prereleases if you just set Like in my case this search URL does NOT include prereleases: But if I also specify semVerLevel it delivers all prereleases: (Search endpoint taken from https://api.nuget.org/v3/index.json). As NuGet nowadays is quite heavily dependent on SemVer 2 I wonder if it would be OK to only activate it for SemVer 2.0.0 by adding the parameter here:
SemVer 1.0.0 did only allow https://docs.microsoft.com/en-us/nuget/api/search-query-service-resource Related PR to fix it: #4255 |
Hi @jongio, The two PRs that @Danielku15 mentioned are merged and this should be fixed. We have another known issue with build version extensions (#4845) that we are addressing, but the preview semver v2 extensions should behave as expected. |
Looks like Dependabot isn't updating to latest preview version. According to comments in #1842 it should work.
I have
1.2.0-preview.1
in my csprojhttps://github.com/jongio/azidext/blob/master/net/JonGallant.Azure.Identity.Extensions/JonGallant.Azure.Identity.Extensions.csproj#L15
<PackageReference Include="Azure.Identity" Version="1.2.0-preview.1" />
The latest published version is
1.2.0-preview.4
:https://www.nuget.org/packages/Azure.Identity/1.2.0-preview.4
I have dependabot.yml here:
https://github.com/jongio/azidext/blob/master/.github/dependabot.yml
I try to manually bump the version via Insights -> Dependency Graph -> Dependabot
![image](https://user-images.githubusercontent.com/2163001/85207464-c3294600-b2dd-11ea-95d0-d17ad31d3146.png)
I click "check now".
The version is not updated and this is in config.
As you can see it thinks 1.1.1 is the latest version, but 1.2.0-preview.4 is the latest version.
Thanks
Jon
Related: #1926
azsdke2e
The text was updated successfully, but these errors were encountered: