Hello everyone,
I hope that we can get a speedy resolution on this issue, clearly its an issue on your side abp.io because we had successful builds the entire time without any issues.
We have deployments that need to be executed and this is causing a delay within our sprints.
Please see the urgency in this issue.
The Azure pipeline uses the NuGet.config file provided in our project, which only includes api.nuget.org and nuget.abp.io. This issue starts to occur after midday. On my local development machine, when I try to list nuget.abp.io packages, the IDE asks for a username and password.
@abodur, the same happened on our side, it randomly occurred, and we cannot be the only people experiencing this issue though, there must be more, because the 403 Forbidden error only occurs on the @Volo packages
I have a longer list but just adding one here for context:
C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.TextTemplating.Scriban' from remote source 'https://nuget.abp.io/***/v3/package/volo.abp.texttemplating.scriban/index.json'. [C:\a\1\s\xxx\xxx.sln]
So I am seeing three sources.
@EngincanV
I tested locally, and I have a successful build but the issue still persists on the build pipeline, I can concur with @abodur as well.
This issue occurred from today, we had successful builds the entire time.
Hi, the package you are mentioned is an open-source package, which can be seen at https://www.nuget.org/packages/Volo.Abp.DistributedLocking.Abstractions.
So, it's normal that this package can't be found in the nuget.abp.io. If you got this error when you build/restore your solution, your NuGet.Config file might be wrong. Can you share it please?
Hi @EngincanV
Thank you for your response,
This is my Nuget.Config:
<?xml version="1.0" encoding="utf-8"?>
<configuration>
<packageSources>
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
<add key="nuget.abp.io" value="https://nuget.abp.io/xxx/v3/index.json" />
</packageSources>
<packageSourceMapping>
<packageSource key="nuget.org">
<package pattern="" />
<package pattern="Microsoft." />
<package pattern="Volo." />
</packageSource>
<packageSource key="nuget.abp.io">
<package pattern="Volo." />
</packageSource>
</packageSourceMapping>
</configuration>We added packageSourceMapping to the NuGet.config for faster restoring Volo.* packages, however, it seems it might created an issue in your case. So, can you please update this file as follows:
<?xml version="1.0" encoding="utf-8"?> <configuration> <packageSources> <add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> <add key="ABP Commercial NuGet Source" value="https://nuget.abp.io/xxx/v3/index.json" /> </packageSources> </configuration>
Then, retry to restore/build your project. Please, don't forget to replace the xxx part with your api-key and let me know if it works.
Thank you very much, I am busy testing, I should give feedback shortly
Do I need to add each package per class library and web project individually?
Because there are a lot more errors on packages that I received
2025-01-08T14:07:57.2990725Z (Restore target) ->
2025-01-08T14:07:57.2992228Z C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.Users.Abstractions' from remote source 'https://nuget.abp.io/***/v3/package/volo.abp.users.abstractions/index.json'. [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.2993230Z C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301: Response status code does not indicate success: 403 (Forbidden). [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.2994754Z C:\a\1\s\xxx\src\xxx.Domain\xxx.Domain.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.Users.Abstractions' from remote source 'https://nuget.abp.io/***/v3/package/volo.abp.users.abstractions/index.json'. [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.2995723Z C:\a\1\s\xxx\src\xxx.Domain\xxx.Domain.csproj : error NU1301: Response status code does not indicate success: 403 (Forbidden). [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.2997245Z C:\a\1\s\xxx\src\xxx.Domain\xxx.Domain.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.Users.Abstractions' from remote source 'https://nuget.abp.io/***/v3/package/volo.abp.users.abstractions/index.json'. [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.2998182Z C:\a\1\s\xxx\src\xxx.Domain\xxx.Domain.csproj : error NU1301: Response status code does not indicate success: 403 (Forbidden). [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.2999600Z C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.Users.Abstractions' from remote source 'https://nuget.abp.io/***/v3/package/volo.abp.users.abstractions/index.json'. [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3000854Z C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301: Response status code does not indicate success: 403 (Forbidden). [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3002199Z C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.AspNetCore.Abstractions' from remote source 'https://nuget.abp.io/***/v3/package/volo.abp.aspnetcore.abstractions/index.json'. [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3003187Z C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301: Response status code does not indicate success: 403 (Forbidden). [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3004731Z C:\a\1\s\xxx\src\xxx.Domain\xxx.Domain.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.AspNetCore.Abstractions' from remote source 'https://nuget.abp.io/***/v3/package/volo.abp.aspnetcore.abstractions/index.json'. [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3005714Z C:\a\1\s\xxx\src\xxx.Domain\xxx.Domain.csproj : error NU1301: Response status code does not indicate success: 403 (Forbidden). [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3007005Z C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.AspNetCore.Abstractions' from remote source 'https://nuget.abp.io/***/v3/package/volo.abp.aspnetcore.abstractions/index.json'. [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3007947Z C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301: Response status code does not indicate success: 403 (Forbidden). [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3009410Z C:\a\1\s\xxx\src\xxx.Domain\xxx.Domain.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.AspNetCore.Abstractions' from remote source 'https://nuget.abp.io/***/v3/package/volo.abp.aspnetcore.abstractions/index.json'. [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3010378Z C:\a\1\s\xxx\src\xxx.Domain\xxx.Domain.csproj : error NU1301: Response status code does not indicate success: 403 (Forbidden). [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3011732Z C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.TextTemplating.Scriban' from remote source 'https://nuget.abp.io/***/v3/package/volo.abp.texttemplating.scriban/index.json'. [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3012683Z C:\a\1\s\xxx\src\xxx.HttpApi\xxx.HttpApi.csproj : error NU1301: Response status code does not indicate success: 403 (Forbidden). [C:\a\1\s\xxx\xxx.sln]
2025-01-08T14:07:57.3014161Z C:\a\1\s\xxx\src\xxx.Domain\xxx.Domain.csproj : error NU1301: Failed to retrieve information about 'Volo.Abp.TextTemplating.Scriban' from remote source
Hi, the package you are mentioned is an open-source package, which can be seen at https://www.nuget.org/packages/Volo.Abp.DistributedLocking.Abstractions.
So, it's normal that this package can't be found in the nuget.abp.io. If you got this error when you build/restore your solution, your NuGet.Config file might be wrong. Can you share it please?
Hi @EngincanV
Thank you for your response,
This is my Nuget.Config:
<?xml version="1.0" encoding="utf-8"?> <configuration> <packageSources> <add key="nuget.org" value="https://api.nuget.org/v3/index.json" /> <add key="nuget.abp.io" value="https://nuget.abp.io/xxx/v3/index.json" /> </packageSources> <packageSourceMapping> <packageSource key="nuget.org"> <package pattern="" /> <package pattern="Microsoft." /> <package pattern="Volo." /> </packageSource> <packageSource key="nuget.abp.io"> <package pattern="Volo." /> </packageSource> </packageSourceMapping> </configuration>
Hello,
Are there any issues/bugs with nuget.abp.io? As I have seen in previous logged tickets that this seems to be a common occurrence, is there anything we can do on our end to prevent this from happening? As we have now lost almost a full day of our deployments and this is extremely concerning!
We are unable to deploy via Azure CI/CD Build Pipelines as the nuget restore keeps giving a 403 Forbidden error the same is happening locally, below are the list of packages it keeps complaining about:
Retrying 'FindPackagesByIdAsync' for source 'https://nuget.abp.io/xxx/v3/package/volo.abp.aspnetcore.abstractions/index.json'. Response status code does not indicate success: 403 (Forbidden).
Hello,
Are you experiencing any issues/bugs with nuget.abp.io?
We are unable to deploy via Azure CI/CD Build Pipelines as the nuget restore keeps giving a 403 Forbidden error, below are the list of packages it keeps complaining about:
Retrying 'FindPackagesByIdAsync' for source 'https://nuget.abp.io/xxx/v3/package/volo.abp.aspnetcore.abstractions/index.json'. Response status code does not indicate success: 403 (Forbidden).
Hello ,
It was an issue about an attack yesterday on abp.io. at leas Our DevOps team increased the security level, and this problem has been fixed.
We are aware that it's been a serious problem and affected you.
We will take extra action so as not to face this problem again.
You can send an email to support@abp.io when you need help.
I appreciate your understanding 🙏Thank you.
yes i can send email. but for any live customer facing app there should be some 24/7 support available. it can be call, email or any form to respond to customer.
I have to agree with @smansuri on this - abp.io needs a much better support strategy, as we pay a lot for the licensing and we entrust abp.io to have a higher uptime with a speedy resolution time as well