CHANGELOG 4.2 KB

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