CHANGELOG 5.1 KB

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