-
Notifications
You must be signed in to change notification settings - Fork 519
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
The API version 2024-05-04 is not supported by Azurite. Please upgrade Azurite to latest version and retry. If you are using Azurite in Visual Studio, please check you have installed latest Visual Studio patch. Azurite command line parameter "--skipApiVersionCheck" or Visual Studio Code configuration "Skip Api Version Check" can skip this error. #4646
Comments
Ran into this today and had to poke around in their sample app to figure out why it worked and my code didn't. If you target |
This work around only works for the previous version of Aspire. The latest (8.0.2) requires Azure.Storage.Blobs >= 12.20.0. Is there another work around for 8.0.2? |
Facing the same issue. |
They released 8.0.2 after my previous comment. I'm sure this will be updated eventually as well but they released a new version of Azurite that supports this API version(3.30.0). The storage.RunAsEmulator(c => c.WithImageTag("3.30.0")); That should download the new azurite container and start it up as usual. |
As @JordanZaerr said, just use Azure.Storage.Blobs version 12.19.1 and it will work. 😊 |
This worked with 8.0.2. Thank you! |
@zbarrier I edited my comment because in the PR I linked I found a cleaner way to do the same thing. |
FYI with the release of 8.1.0 today you need to use an Azurite docker container with the 3.31.0 tag supporting "2024-08-04" api version.
|
Hi Folks, with the new GA version of Azure Storage 2.0.0, it is only compliant with 12.20.0 version of Azure.Storage.Blobs, in this version the mismatch issue is not getting resolved. What should we do here? Added to this, we need to use blob uri of azurite instead of connection string, as part of the new methods introduced in azure storage 2.0.0 |
Yep, issue is back. I "fixed" it by referencing (=not updating) the Aspire.Azure.Storage.Blobs package to 8.2.0. By keeping it at 8.0.2 you can also keep using Azure.Storage.Blobs 12.20.0. |
When using these components:
The error is now
In my opinion it is a new symptom of the issue reported above; if you feel it should be a new issue, please convert this comment into an issue. |
Part of me thinks we should just pass skipVersiobcheck by default |
@sebastienros can you look at this? |
Why not use the 'latest' image tag? Solved the issues for me.
|
Getting the following azurite error. I upgrade Azurite and still the same message:
The API version 2024-05-04 is not supported by Azurite. Please upgrade Azurite to latest version and retry. If you are using Azurite in Visual Studio, please check you have installed latest Visual Studio patch. Azurite command line parameter "--skipApiVersionCheck" or Visual Studio Code configuration "Skip Api Version Check" can skip this error.
The text was updated successfully, but these errors were encountered: