CHANGELOG 4.7 KB

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