CHANGELOG 4.0 KB

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