CHANGELOG 4.4 KB

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