Skip to content

Commit 9f767e4

Browse files
committed
Drops support for Ruby version 3.0
Ruby 3.0 is EOL We need to drop support of ruby 3 to resolve depnendencies
1 parent 49e2fb5 commit 9f767e4

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
name: Ruby ${{ matrix.version }}
1313
strategy:
1414
matrix:
15-
version: ['3.0', '3.1', '3.2', '3.3']
15+
version: ['3.1', '3.2', '3.3']
1616

1717
steps:
1818
- uses: actions/checkout@v3

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
Unreleased
22
----------
3+
* ⚠️ [Breaking] Bumps minimum supported Ruby version to 3.1 [#1959](https://github.com/Shopify/shopify_app/pull/1959)
34

45
22.5.2 (March 14, 2025)
56
----------

docs/Upgrading.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,9 @@ If you do run into issues, we recommend looking at our [debugging tips.](https:/
4444

4545
## Unreleased
4646

47+
#### (v23.0.0) Drops support for Ruby 3.0
48+
The minimum ruby version is now 3.1
49+
4750
#### (v23.0.0) - Deprecated methods in CallbackController
4851
The following methods from `ShopifyApp::CallbackController` have been deprecated in `v23.0.0`
4952
- `perform_after_authenticate_job`

shopify_app.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Gem::Specification.new do |s|
1010
s.author = "Shopify"
1111
s.summary = "This gem is used to get quickly started with the Shopify API"
1212

13-
s.required_ruby_version = ">= 3.0"
13+
s.required_ruby_version = ">= 3.1"
1414

1515
s.metadata["allowed_push_host"] = "https://rubygems.org"
1616

0 commit comments

Comments
 (0)