CHANGELOG 3.4 KB

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