Skip to content

Commit 359d9ba

Browse files
committed
Require specific active support lib
1 parent 51bf780 commit 359d9ba

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ Note: For changes to the API, see https://shopify.dev/changelog?filter=api
55
## Unreleased
66

77
- [#1327](https://github.com/Shopify/shopify-api-ruby/pull/1327) Support `?debug=true` parameter in GraphQL client requests
8+
- [#1308](https://github.com/Shopify/shopify-api-ruby/pull/1308) Support hash_with_indifferent_access when creating REST objects from Shopify responses. Closes #1296
89

910
## 14.4.0
1011

lib/shopify_api/rest/base.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# frozen_string_literal: true
33

44
require "active_support/inflector"
5-
require 'active_support/all'
5+
require "active_support/core_ext/hash/indifferent_access"
66

77
module ShopifyAPI
88
module Rest

0 commit comments

Comments
 (0)