shopify_app 23.0.0 → 23.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2f830906ca35bcc5ca2d10b8b514f5523513a5e4220a30e3f771a6cfe0f724d4
4
- data.tar.gz: f2643993a150c2e471a4c78bb2851c2652ac074185d7980bc11c767d846882db
3
+ metadata.gz: '0920e459ec555ff0ce3db9150d66a2cb6be5245adb327465ac5529e583662b18'
4
+ data.tar.gz: f8cdea7bf8b1379bbe8dcc9d6c8023115b4992e2c5f39d32c76f85cd21815cf0
5
5
  SHA512:
6
- metadata.gz: 119986dfffc2b5df6577cc113f0bdd11514609fca6e2b6278d68567d0c39217ed60b137c971783db6acb6788b14bb85cef47ae1d1c5b9281bb3b5f7db692fbf4
7
- data.tar.gz: 787670d5a3870ac188cc4417350f40e13624f7d70705ea0cb0a74c5401cacc64e15f612261c5d8f0d2b42987d8b35b17b02e4114a1b664a5a200fa3a7ba5bce1
6
+ metadata.gz: 9c59d200bca1c6ca40c83b48c6a8cd3e6de8007828d7711187eae5c2cae66a7ee24b64c17982bde1dc59e6c00be0dc17483e6cb4a94fc453e277eece5ca126ca
7
+ data.tar.gz: 76d2a317c4b17a96b3098be3b2e6802f1dba1657741ba80af01647bc33ea8ab2d128f1b31c870bf441e81534be1302fff93ba26140c39690c505d332a4c96ad1
data/CHANGELOG.md CHANGED
@@ -1,7 +1,12 @@
1
1
  Unreleased
2
2
  ----------
3
3
 
4
+ 23.0.1 (December 22, 2025)
5
+ - Fix engine initialization [#2040](https://github.com/Shopify/shopify_app/pull/2040)
6
+ - Fix deprecation warnings for Rails 7.1+ [#2041](https://github.com/Shopify/shopify_app/pull/2041)
7
+
4
8
  23.0.0 (December 11, 2025)
9
+ ----------
5
10
  - ⚠️ [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)
6
11
  - ActiveJob classes moved from `lib/shopify_app/jobs/` to `app/jobs/shopify_app/` to follow Rails conventions and fix timing issues with ActiveJob initialization
7
12
  - Jobs are now autoloaded by Rails instead of explicitly required during gem initialization
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- shopify_app (23.0.0)
4
+ shopify_app (23.0.1)
5
5
  addressable (~> 2.7)
6
6
  rails (>= 7.1, < 9)
7
7
  redirect_safely (~> 1.0)
@@ -22,8 +22,8 @@ module ShopifyApp
22
22
  ]
23
23
  end
24
24
 
25
- initializer "shopify_app.redact_job_params" do
26
- ActiveSupport.on_load(:active_job) do
25
+ initializer "shopify_app.redact_job_params" do |app|
26
+ app.config.after_initialize do
27
27
  if ActiveJob::Base.respond_to?(:log_arguments?)
28
28
  WebhooksManagerJob.log_arguments = false
29
29
  ScriptTagsManagerJob.log_arguments = false
@@ -8,11 +8,15 @@ module ShopifyApp
8
8
 
9
9
  raise ShopifyAPI::Errors::FeatureDeprecatedError unless valid_version(version)
10
10
 
11
- ActiveSupport::Deprecation.warn("[#{version}] #{context(:warn)} #{message}")
11
+ deprecator.warn("[#{version}] #{context(:warn)} #{message}")
12
12
  end
13
13
 
14
14
  private
15
15
 
16
+ def deprecator
17
+ @deprecator ||= ActiveSupport::Deprecation.new(ShopifyApp::VERSION, "ShopifyApp")
18
+ end
19
+
16
20
  def context(log_level)
17
21
  current_shop = ShopifyAPI::Context.active_session&.shop || "Shop Not Found"
18
22
  "[ ShopifyApp | #{log_level.to_s.upcase} | #{current_shop} ]"
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module ShopifyApp
4
- VERSION = "23.0.0"
4
+ VERSION = "23.0.1"
5
5
  end
data/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "shopify_app",
3
- "version": "23.0.0",
3
+ "version": "23.0.1",
4
4
  "repository": "git@github.com:Shopify/shopify_app.git",
5
5
  "author": "Shopify",
6
6
  "license": "MIT",
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: shopify_app
3
3
  version: !ruby/object:Gem::Version
4
- version: 23.0.0
4
+ version: 23.0.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Shopify