CHANGELOG 2.6 KB

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