Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
Unreleased
----------

23.0.0 (December 11, 2025)
- ⚠️ [Breaking] Bumps minimum supported Rails version to 7.1 & Ruby version to 3.2; moves jobs from `lib` to `app` to fix loading issues with modern rails versions. [#2020](https://github.com/Shopify/shopify_app/pull/2020)
- ActiveJob classes moved from `lib/shopify_app/jobs/` to `app/jobs/shopify_app/` to follow Rails conventions and fix timing issues with ActiveJob initialization
- Jobs are now autoloaded by Rails instead of explicitly required during gem initialization
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
shopify_app (22.6.0)
shopify_app (23.0.0)
addressable (~> 2.7)
rails (>= 7.1, < 9)
redirect_safely (~> 1.0)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ module ShopSessionStorageWithScopes
"ShopSessionStorageWithScopes is deprecated and will be removed in v24.0.0. " \
"Use ShopSessionStorage instead, which now handles access_scopes, expires_at, " \
"refresh_token, and refresh_token_expires_at automatically.",
"23.0.0",
"24.0.0",
)
validates :shopify_domain, presence: true, uniqueness: { case_sensitive: false }
end
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ module UserSessionStorageWithScopes
ShopifyApp::Logger.deprecated(
"UserSessionStorageWithScopes is deprecated and will be removed in v24.0.0. " \
"Use UserSessionStorage instead, which now handles access_scopes and expires_at automatically.",
"23.0.0",
"24.0.0",
)

validates :shopify_domain, presence: true
Expand Down
2 changes: 1 addition & 1 deletion lib/shopify_app/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

module ShopifyApp
VERSION = "22.6.0"
VERSION = "23.0.0"
end
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "shopify_app",
"version": "22.5.2",
"version": "23.0.0",
"repository": "git@github.com:Shopify/shopify_app.git",
"author": "Shopify",
"license": "MIT",
Expand Down