From da83fd898e45f3fac2dfa73be1562b19c5e33db3 Mon Sep 17 00:00:00 2001 From: Zoey Lan Date: Wed, 27 Mar 2024 13:47:42 -0600 Subject: [PATCH] Add upgrade note for unreleased version --- docs/Upgrading.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/Upgrading.md b/docs/Upgrading.md index 68c63c803..300cd6a2a 100644 --- a/docs/Upgrading.md +++ b/docs/Upgrading.md @@ -40,6 +40,17 @@ We also recommend the use of a staging site which matches your production enviro If you do run into issues, we recommend looking at our [debugging tips.](https://github.com/Shopify/shopify_app/blob/main/docs/Troubleshooting.md#debugging-tips) +## Unreleased +#### (v23.0.0) - Deprecated methods in CallbackController +The following methods from `ShopifyApp::CallbackController` have been deprecated in `v23.0.0` +- `perform_after_authenticate_job` +- `install_webhooks` +- `perform_post_authenticate_jobs` + +If you have overwritten these methods in your callback controller to modify the behavior of the inherited `CallbackController`, you will need to +update your app to use configurable option `config.custom_post_authenticate_tasks` instead. See [post authenticate tasks](https://github.com/Shopify/shopify_app/blob/main/docs/shopify_app/authentication.md#post-authenticate-tasks) +for more information. + ## Upgrading to `v22.0.0` #### Dropped support for Ruby 2.x Support for Ruby 2.x has been dropped as it is no longer supported. You'll need to upgrade to 3.x.x