CHANGELOG 3.8 KB

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