CHANGELOG 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194
  1. == Version 4.0.5
  2. * Added `pending`, `cancelled`, `accepted`, `declined` helper methods to `ShopifyAPI::ApplicationCharge`
  3. == Version 4.0.4
  4. * Fixed truthiness for order cancellations. Requests are now sent in the request body and as JSON
  5. == Version 4.0.3
  6. * Fixed hmac signature validation for params with delimiters (`&`, `=` or `%`)
  7. == Version 4.0.2
  8. * Verify that the shop domain is a subdomain of .myshopify.com which creating the session
  9. == Version 4.0.1
  10. * Added `ShopifyAPI::OAuth.revoke` for easy token revocation.
  11. == Version 3.2.6
  12. * Fixed CustomerSavedSearch#customers method to now correctly return only relevant customers
  13. == Version 3.2.5
  14. * More useful error messages for activating nil sessions
  15. * Add tests for commonly deleted objects, and metafield tests, fix naming error in order_risk_test.rb
  16. == Version 3.2.4
  17. * No API changes
  18. == Version 3.2.3
  19. * Added pry to the CLI
  20. == Version 3.2.2
  21. * Temporary fix for the CLI
  22. * Add a specific exception for signature validation failures
  23. == Version 3.2.1
  24. * Added CarrierService resource
  25. * Added optionally using threadsafe ActiveResource (see readme)
  26. * Fixed bug in validate_signature
  27. == Version 3.2.0
  28. * in Session::request_token params is no longer optional, you must pass all the params and the method will now extract the code
  29. * Fixed JSON errors handling (#103)
  30. * Fixed compatibility with Ruby 2.1.x (#83)
  31. * Fixed getting parent ID from nested resources like Variants (#44)
  32. * Cleaned up compatibility with ActiveResource 4.0.x
  33. * Added OrderRisk resource
  34. * Added FulfillmentService resource
  35. * Removed discontinued ProductSearchEngine resource
  36. * Added convenience method Customer#search (#45)
  37. == Version 3.1.8
  38. * Expose `index` and `show` actions of `Location`
  39. * Added create_permission_url and request_token helper methods
  40. * Edited the readme to better describe the getting started procedure
  41. == Version 3.1.7
  42. * Expose `authors` and `tags` action on Article
  43. == Version 3.1.6
  44. * Add LineItem::Property resource
  45. == Version 3.1.5
  46. * Expose `orders` action on Customer
  47. == Version 3.1.3
  48. * Expose `complete` action on Fulfillment
  49. == Version 3.1.2
  50. * Includes port in domain URI (when other than http/80 or https/443)
  51. * Adds access to CustomerSavedSearch
  52. * Adds resources: Order::DefaultAddress, Client::ClientDetails, Announcement
  53. * Allows access to Articles without a blog_id
  54. * Moves encode and as_json overrides to ShopifyAPI::Base scope
  55. * Exposes the `order` action in SmartCollection for general use
  56. == Version 3.0.3
  57. * Add a `customers` helper method to the CustomerGroup resource
  58. == Version 3.0.2
  59. * Brevity in require statements
  60. == Version 3.0.1
  61. * Fix saving nested resources in ActiveResource 3.1+
  62. == Version 3.0.0
  63. * Added support for OAuth Authentication
  64. * Removal of support for Legacy Authentication
  65. * Added Cart resource
  66. == Version 2.3.0
  67. * Fix double root bug with ActiveSupport 3.2.0
  68. * Add metafields methods on Customer resource
  69. * Fix prefix_options on assets returned from Asset.find
  70. == Version 2.2.0
  71. * Fix issues with resources that have both direct and namespaced routes
  72. * Added detailed logger to help with debugging ActiveResource
  73. requests/responses
  74. * Add fulfillment#cancel
  75. == Version 2.1.0
  76. * Fix JSON errors handling
  77. * Remove global limit from ShopifyAPI::Limits
  78. == Version 2.0.0
  79. * 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
  80. * Refactored resources into their own source files
  81. * Added API limits functionality
  82. * Patched ActiveResource issue with roots in JSON
  83. * Added pending, cancelled, accepted, and declined convenience methods to ShopifyAPI::RecurringApplicationCharge
  84. * ShopifyAPI::Session#temp now available as a convenience method to support temporarily switching to other shops when making calls
  85. * Fixes to `shopify console` CLI tool
  86. == Version 1.2.5
  87. * Fix for Article#comments
  88. == Version 1.2.4
  89. * Added Article#comments
  90. * Added Order#cancel
  91. * Added Comment#restore, #not_spam
  92. == Version 1.2.3
  93. * Added Customer, CustomerGroup support
  94. == Version 1.2.2
  95. * Added ScriptTag support
  96. == Version 1.2.1
  97. * Allow abbreviated names for all commands like rails does, e.g. 'shopify c' instead of 'shopify console'
  98. * Fix Variant to support accessing both nested variants with a product prefix as well as top level variants directly
  99. * Add 'grande' to supported product image size variants
  100. == Version 1.2.0
  101. * Command-line interface
  102. * Allow custom params when fetching a single Asset
  103. == Version 1.1.3 (November 4, 2010)
  104. * Add ProductSearchEngines resource
  105. == Version 1.1.2 (October 20, 2010)
  106. * Fix for users of ActiveResource 3.x
  107. == Version 1.1.1 (October 5, 2010)
  108. * Remove hard coded xml formatting in API calls
  109. * Remove jeweler stuff
  110. * Ruby 1.9 encoding fix
  111. == Version 1.1.0 (September 24, 2010)
  112. * Add new Events API for Shop, Order, Product, CustomCollection, SmartCollection, Page, Blog and Article
  113. * Add new 'compact' product image size variant
  114. * Rails 3 fix: attribute_accessors has to be explicitly included since activesupport 3.0.0
  115. == Version 1.0.6
  116. * Add metafields
  117. * Add latest changes from Shopify including asset support, token validation and a common base class
  118. == Version 1.0.0
  119. * extracting ShopifyAPI from Shopify into Gem