CHANGELOG 2.6 KB

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