CHANGELOG 4.1 KB

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