CHANGELOG 3.8 KB

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