CHANGELOG 7.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310
  1. == Version 4.12.0
  2. * Added support for the GraphQL API
  3. == Version 4.11.0
  4. * Added `ShopifyAPI::InventoryItem`
  5. * Added `ShopifyAPI::InventoryLevel`
  6. * Added `#inventory_levels` method to `ShopifyAPI::Location`
  7. == Version 4.10.0
  8. * Added `ShopifyAPI::AccessScope`
  9. == Version 4.9.1
  10. * Fix a bug with custom properties for orders
  11. == Version 4.9.0
  12. * Added `ShopifyAPI::PriceRule`
  13. * Added `ShopifyAPI::DiscountCode`
  14. == Version 4.8.0
  15. * Added `add_engagements` to `ShopifyAPI::MarketingEvent`
  16. == Version 4.7.1
  17. * Added support for URL parameter (e.g. limit & page) to ShopifyAPI::Metafields
  18. * Added support for URL parameter (e.g. limit & page) to metafield operator in ShopifyAPI::Shop
  19. == Version 4.7.0
  20. * Removed the mandatory `application_id` parameter from `ShopifyAPI::ProductListing` and `ShopifyAPI::CollectionListing`
  21. * Fixed a bug related to the non-standard primary key for `ShopifyAPI::ProductListing` and `ShopifyAPI::CollectionListing`
  22. == Version 4.6.0
  23. * Added `ShopifyAPI::Report`
  24. == Version 4.5.0
  25. * Added `ShopifyAPI::MarketingEvent`
  26. == Version 4.4.0
  27. * Added `ShopifyAPI::CustomerInvite`
  28. * Support for Customer#send_invite endpoint
  29. == Version 4.3.8
  30. * Added `ShopifyAPI::ResourceFeedback`
  31. == Version 4.3.7
  32. * Added support for `complete` in `ShopifyAPI::DraftOrder`
  33. == Version 4.3.6
  34. * Fixed the `customer_saved_search_id` param in `ShopifyAPI::CustomerSavedSearch#customers`.
  35. == Version 4.3.5
  36. * Added support for online mode access tokens, token expiry, and associated_user information.
  37. * Added `ShopifyAPI::DraftOrder`
  38. * Added `ShopifyAPI::DraftOrderInvoice`
  39. == Version 4.3.4
  40. * Added `ShopifyAPI::ProductListing`
  41. * Added `ShopifyAPI::CollectionListing`
  42. == Version 4.3.3
  43. * Added `ShopifyAPI::StorefrontAccessToken`
  44. == Version 4.3.2
  45. * Relax Ruby version requirement to >= `2.0`
  46. == Version 4.3.1
  47. * Support for ShopifyAPI::ApplicationCredit
  48. == Version 4.3.0
  49. * Require Ruby >= `2.3.0`
  50. * Use inheritance instead of the deprecated Rails `Module#alias_method_chain`
  51. == Version 4.2.2
  52. * Support for AccessToken#delegate endpoint
  53. == Version 4.2.1
  54. * Support for Users and Discounts (Shopify Plus only)
  55. * Adds Customer#account_activation_url method
  56. * Adds ability to open a fulfillment.
  57. == Version 4.2.0
  58. * Threadsafety is now compatible with the latest ActiveResource master
  59. == Version 4.1.1
  60. * Added explicit 90 second timeout to `ShopifyAPI::Base`
  61. == Version 4.0.7
  62. * Added `ShippingAPI::ShippingZone`
  63. == Version 4.0.6
  64. * Replaced `cancelled` with `expired` in `ShopifyAPI::ApplicationCharge`
  65. == Version 4.0.5
  66. * Added `pending`, `cancelled`, `accepted`, `declined` helper methods to `ShopifyAPI::ApplicationCharge`
  67. == Version 4.0.4
  68. * Fixed truthiness for order cancellations. Requests are now sent in the request body and as JSON
  69. == Version 4.0.3
  70. * Fixed hmac signature validation for params with delimiters (`&`, `=` or `%`)
  71. == Version 4.0.2
  72. * Verify that the shop domain is a subdomain of .myshopify.com which creating the session
  73. == Version 4.0.1
  74. * Added `ShopifyAPI::OAuth.revoke` for easy token revocation.
  75. == Version 3.2.6
  76. * Fixed CustomerSavedSearch#customers method to now correctly return only relevant customers
  77. == Version 3.2.5
  78. * More useful error messages for activating nil sessions
  79. * Add tests for commonly deleted objects, and metafield tests, fix naming error in order_risk_test.rb
  80. == Version 3.2.4
  81. * No API changes
  82. == Version 3.2.3
  83. * Added pry to the CLI
  84. == Version 3.2.2
  85. * Temporary fix for the CLI
  86. * Add a specific exception for signature validation failures
  87. == Version 3.2.1
  88. * Added CarrierService resource
  89. * Added optionally using threadsafe ActiveResource (see readme)
  90. * Fixed bug in validate_signature
  91. == Version 3.2.0
  92. * in Session::request_token params is no longer optional, you must pass all the params and the method will now extract the code
  93. * Fixed JSON errors handling (#103)
  94. * Fixed compatibility with Ruby 2.1.x (#83)
  95. * Fixed getting parent ID from nested resources like Variants (#44)
  96. * Cleaned up compatibility with ActiveResource 4.0.x
  97. * Added OrderRisk resource
  98. * Added FulfillmentService resource
  99. * Removed discontinued ProductSearchEngine resource
  100. * Added convenience method Customer#search (#45)
  101. == Version 3.1.8
  102. * Expose `index` and `show` actions of `Location`
  103. * Added create_permission_url and request_token helper methods
  104. * Edited the readme to better describe the getting started procedure
  105. == Version 3.1.7
  106. * Expose `authors` and `tags` action on Article
  107. == Version 3.1.6
  108. * Add LineItem::Property resource
  109. == Version 3.1.5
  110. * Expose `orders` action on Customer
  111. == Version 3.1.3
  112. * Expose `complete` action on Fulfillment
  113. == Version 3.1.2
  114. * Includes port in domain URI (when other than http/80 or https/443)
  115. * Adds access to CustomerSavedSearch
  116. * Adds resources: Order::DefaultAddress, Client::ClientDetails, Announcement
  117. * Allows access to Articles without a blog_id
  118. * Moves encode and as_json overrides to ShopifyAPI::Base scope
  119. * Exposes the `order` action in SmartCollection for general use
  120. == Version 3.0.3
  121. * Add a `customers` helper method to the CustomerGroup resource
  122. == Version 3.0.2
  123. * Brevity in require statements
  124. == Version 3.0.1
  125. * Fix saving nested resources in ActiveResource 3.1+
  126. == Version 3.0.0
  127. * Added support for OAuth Authentication
  128. * Removal of support for Legacy Authentication
  129. * Added Cart resource
  130. == Version 2.3.0
  131. * Fix double root bug with ActiveSupport 3.2.0
  132. * Add metafields methods on Customer resource
  133. * Fix prefix_options on assets returned from Asset.find
  134. == Version 2.2.0
  135. * Fix issues with resources that have both direct and namespaced routes
  136. * Added detailed logger to help with debugging ActiveResource
  137. requests/responses
  138. * Add fulfillment#cancel
  139. == Version 2.1.0
  140. * Fix JSON errors handling
  141. * Remove global limit from ShopifyAPI::Limits
  142. == Version 2.0.0
  143. * Bump to 2.0.0 as this release breaks Rails 2 compatibility; we're now officially only supporting Rails 3. Rails 2 devs can follow the rails2 tag in this repo to know where we broke off
  144. * Refactored resources into their own source files
  145. * Added API limits functionality
  146. * Patched ActiveResource issue with roots in JSON
  147. * Added pending, cancelled, accepted, and declined convenience methods to ShopifyAPI::RecurringApplicationCharge
  148. * ShopifyAPI::Session#temp now available as a convenience method to support temporarily switching to other shops when making calls
  149. * Fixes to `shopify console` CLI tool
  150. == Version 1.2.5
  151. * Fix for Article#comments
  152. == Version 1.2.4
  153. * Added Article#comments
  154. * Added Order#cancel
  155. * Added Comment#restore, #not_spam
  156. == Version 1.2.3
  157. * Added Customer, CustomerGroup support
  158. == Version 1.2.2
  159. * Added ScriptTag support
  160. == Version 1.2.1
  161. * Allow abbreviated names for all commands like rails does, e.g. 'shopify c' instead of 'shopify console'
  162. * Fix Variant to support accessing both nested variants with a product prefix as well as top level variants directly
  163. * Add 'grande' to supported product image size variants
  164. == Version 1.2.0
  165. * Command-line interface
  166. * Allow custom params when fetching a single Asset
  167. == Version 1.1.3 (November 4, 2010)
  168. * Add ProductSearchEngines resource
  169. == Version 1.1.2 (October 20, 2010)
  170. * Fix for users of ActiveResource 3.x
  171. == Version 1.1.1 (October 5, 2010)
  172. * Remove hard coded xml formatting in API calls
  173. * Remove jeweler stuff
  174. * Ruby 1.9 encoding fix
  175. == Version 1.1.0 (September 24, 2010)
  176. * Add new Events API for Shop, Order, Product, CustomCollection, SmartCollection, Page, Blog and Article
  177. * Add new 'compact' product image size variant
  178. * Rails 3 fix: attribute_accessors has to be explicitly included since activesupport 3.0.0
  179. == Version 1.0.6
  180. * Add metafields
  181. * Add latest changes from Shopify including asset support, token validation and a common base class
  182. == Version 1.0.0
  183. * extracting ShopifyAPI from Shopify into Gem