Spree 1.2.2 is the latest Spree release in the 1.2.x branch. This release contains minor improvements and bug fixes. Compatibility with extensions is mostly guaranteed, however there may be edge cases. If you find one of these, please file an issue.
Major changes
Migrations
This new version of Spree contains new migrations. Please install them and run them with this command:
bundle exec rake railties:install:migrations bundle exec rake db:migrate
API changes
We have changed some aspects of the API component in Spree. For a detailed list of these changes, please refer to the Changes page on our API site
Other changes
- Switched from using the
acts_as_nested_set
gem to usingawesome_nested_set_gem
, which is an optimized version of the same gem. #1927 - Renamed InventoryUnit.backorder to InventoryUnit.backordered commit
- Fix issue with installer when running on
i386-mingw32
platform PCs. #1903 - All adjustments, not just optional ones, are locked on an order completion. commit
- Fix issue where currently selected currency wasn’t displayed correctly on the “General Settings” page. commit
- Added
:currency_symbol_position
configuration option, to configure if currency symbol goes before or after amount. commit #1911 - Allow for calling
save_permalink
manually to recalculate a permalink. #1920 - Disable double-clicking delete links on line items. #1934
- Add
per_page
parameter for API orders. #1949 - Fixed payment banner not being dismissed when asked. #1952
- Prevent double-submit on checkout confirm step. commit
- Allow an order with no shipments to be canceled. #1989
- Added
Product#available?
#2002 - Allow case-insensitive coupon codes #2009 and #2012
- Fix problem with currencies whose sub-units are not in hundreds. #2030
- Payments are no longer processed if
Order#payment_required?
returns false. #2028 - Expired promotions are now excluded from
Product#possible_promotions
#2058 - Load
Spree::AuthenticationHelpers
during ato_prepare
hook #2076 - Updating a line item’s quantity and then clicking the checkout button will now persist the update. #2086
with_option_value
andtaxons_name_eq
scopes onProduct
will now returnProduct
objects, rather than IDs. #2082- Searcher class instances in
HomeController
,ProductsController
andTaxonsController
will now have access to the current user object. #2089 spree_products.count_on_hand
andspree_variants.count_on_hand
columns can now be set toNULL
to indicate an infinite supply. #2096- Orders are marked “returned” if all return authorizations are received #1714 #2099
- Unique products are returned from
Product.in_taxon
scope #1917 #1974 #1962 Product.on_hand
scope no longer sums deleted variants. #2112Payment#capture
now does nothing for payments marked as “completed” #2119- I18nify “Order Adjustments” text #2123
- EXIF data is now stripped from JPEGs #2142 #2145
- Only eligible promotions are now included in
promo_total
onOrder
objects. commit - Promotion usage count is now visible on a promotion’s edit page. #2193
- The user picker for the promotions backend is now functional again, after being broken accidentally in the previous release. #1890