CHANGELOG 2.8 KB

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