CHANGELOG 4.5 KB

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