Support for Shopify API Version 2025-07
Shopify is currently on version 2025-04 of their API and they are soon to release 2025-07. Please add support for both version of the Shopify API.
Hey @matnun-br! I'm planning on updating ShopifySharp to 2025-07 as soon as I merge #1190, which is nearly complete. In the meantime you can override the version ShopifySharp uses by inheriting from whichever service you want to use:
public class MyOrderService : ShopifySharp.OrderService
{
public override string APIVersion => "2025-07";
}
var orderService = new MyOrderService("example.myshopify.com", "some-access-token");
@nozzlegear thank you. That sounds good.
Any update on this?
Yes, nearly finished with what I'm working on! I'm about to regenerate types for 2025-07, aiming to get it merged this weekend.--Joshua HarmsOn Aug 1, 2025, at 00:58, davidkdb @.***> wrote:davidkdb left a comment (nozzlegear/ShopifySharp#1198) Any update on this?
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you were mentioned.Message ID: @.***>
Any updates?
When will the new version be available?
@TBarthels Hey! I've got it ready right now, I'll merge my changes in this afternoon and release it this evening.
Super, thank you very much.
Just waiting on some flaky automated tests to pass right now.
ShopifySharp 6.25.0 is now available on Nuget targeting Shopify API version 2025-07! I'll publish release notes tomorrow but the biggest changes are just the regenerated GraphQL types. If you're using the GraphQL API and a GraphQL plugin in your IDE, make sure you grab the updated schema file right here.