CHANGELOG 3.4 KB

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