-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release 2.0.0 rc.9 #4922
Release 2.0.0 rc.9 #4922
Conversation
for "products/updateProductField" method
Resolves reaction-feature-requests/issues/53
permission check
Meteor method
Ensure we can only toggle the package for the shop for which the user has permission
Now ensures that the modified tags cannot belong to a different shop from that which you have permission for.
…tellon-accounts-createdat-optional Revert "fix: make Accounts.createdAt optional in schema"
…contentForLanguage-nav-item-resolver fix: add contentForLanguage resolver for nav item content
Record plugin versions in DB and show in Shop panel
…rrencyNANissue fix: add replace to remove comma from formatting
…outer-and-idp feat: Add flag to enable only IDP routes
Signed-off-by: Seun Martins <[email protected]>
Signed-off-by: Seun Martins <[email protected]>
Signed-off-by: Seun Martins <[email protected]>
Signed-off-by: Seun Martins <[email protected]>
…meouts test: Fix sitemaps test timeouts
…setpass-404 Fix Password reset page not found
Signed-off-by: Spencer Norman <[email protected]>
Signed-off-by: Spencer Norman <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Review WIP
Issues Found
Classic UI Checkout issues do not warrant a release block due to migration.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Only issue and relating issues thereof involve the Classic UI Checkout which is being deprecated soon.
v2.0.0-rc.9
This is our ninth release candidate for v2.0.0 of Reaction. Please check it out and let us know what works and what doesn't for you.
This release is being coordinated with
reaction-platform
and is designed to work with the same versions ofreaction-next-starterkit
andreaction-hydra
Inventory improvements
We've made some updates to the way inventory is tracked, introducing a new inventory field:
inventoryAvailableToSell
. This field tracks inventory that has been ordered, but has not yet been processed and so is still counted in-stock. This number is what is displayed to customers and determines whether a product is considered "sold out" or not. The old inventory numberinventoryQty
has been renamed toinventoryInStock
and continues to represent the inventory available in stock.Breaking changes
Inventory
inventoryAvailableToSell
to all products / variants, to correctly calculate the numbers on parent products / variants, and to publish this data to already published Catalog items.currentQuantity
has been marked withdepreciated
in the cart. This isn't a breaking change at the moment, but lays the path to remove this field and replace withinventoryAvailableToSell
andinventoryInStock
in the future.Catalog.getVariantQuantity
andReactionProduct.getVariantQuantity
have been removed. Custom plugins using these methods will need to be updated. The same data returned by these methods is now on the object that was being passed into these methods as the fieldinventoryQuantity
orinventoryAvailableToSell
isBackorder
,isLowQuantity
, andisSoldOut
functions from thecatalog
plugin to the newinventory
plugin. Custom plugins using these methods will need to update their import path.Features
inactive
andactive
#4848): Return only isVisible Tags, unless admin (feat(#4848) - Return only isVisible Tags, unless admin #4879)Bugfixes
Tests
Refactors