Shopify API versioning

Hello,

I have a Shopify public app and I am running on API version 2024-07. I am using both rest flow through shopify_python_api, and graphQL flow directly from the app, and I have been running on this API version since september.

Now on /api_health page I am seeing a warning Update to version 2024-04 or later. UPDATE DEADLINE: APR 1, 2025. Api change:As of 2024-04, the REST Admin API **/products** and **/variants** endpoints have been marked as deprecated across all versions…

I am working with products and variants through shopify_python_api’s (I am guessing REST) webhooks products/create, products/update and products/delete. I am also calling shopify_python_api’s

Product.find() and Variant.find() methods (I think this is also rest). When creating shopify.Session I am setting the API version to 2024-07.

Does this mean my current implementation won’t be able to work with products and variants from April 1st, and that I have to switch to using GraphQL products and variants before April 1st ?