From 5a74aa9c4a89d7dee35e76605b8d9e593a711107 Mon Sep 17 00:00:00 2001 From: Erik Kieckhafer Date: Thu, 19 Dec 2019 20:50:58 -0800 Subject: [PATCH 1/3] chore: update CHANGELOG and package.json for v3.0.0-alpha.2 Signed-off-by: Erik Kieckhafer --- CHANGELOG.md | 55 ++++++++++++++++++++++++++++++++++++++++++++++++++++ package.json | 2 +- 2 files changed, 56 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 4bdab83a5d1..444bea927be 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,58 @@ +# v3.0.0-alpha.2 + +Reaction v3.0.0-alpha.2 is the second alpha release of our new Reaction project. + +*Reaction releases will no longer be coordinated across all projects. This means version numbers will no longer be in sync. The newest versions of each project will work together.* + +## Notable changes + +### Integration tests + +The primary focus for this release is the addition of integration tests for many mutations and queries + +## Features + +- feat: return fulfillment quotes without a shipping address [#5934](https://github.com/reactioncommerce/reaction/pull/5934) +- feat: add updateProductVariantPrices mutation to API [#5910](https://github.com/reactioncommerce/reaction/pull/5910) +- feat: add graphql equivalent of create group [#5850](https://github.com/reactioncommerce/reaction/pull/5850) + + +## Refactor + +- refactor: eliminate factory mocks for catalogItemProduct [#5892](https://github.com/reactioncommerce/reaction/pull/5892) +- refactor: consolidate translation plugins [#5920](https://github.com/reactioncommerce/reaction/pull/5920) +- refactor: clean up ENV/envalid code [#5922](https://github.com/reactioncommerce/reaction/pull/5922) +- refactor: mo more Packages collection, implement AddressValidationRules GQL, 5888other 3.0 stuff [#](https://github.com/reactioncommerce/reaction5888/pull/) + +## Tests + +- tests: add integration test for setAccountProfileCurrency mutation [#5958](https://github.com/reactioncommerce/reaction/pull/5958) +- tests: add integration test for setAccountProfileLanguage mutation [#5960](https://github.com/reactioncommerce/reaction/pull/5960) +- tests: add integration test for updateAccountAddressBookEntry [#5962](https://github.com/reactioncommerce/reaction/pull/5962) +- tests: add integration test for removeAccountEmailRecord mutation [#5965](https://github.com/reactioncommerce/reaction/pull/5965) +- tests: add integration test for removeAccountAddressBookEntry [#5961](https://github.com/reactioncommerce/reaction/pull/5961) +- tests: add integration test for create, update & delete FlatRateFulfillmentMethod [#5964](https://github.com/reactioncommerce/reaction/pull/5964) +- tests: add integration test for publishNavigationChanges mutation [#5969](https://github.com/reactioncommerce/reaction/pull/5969) +- tests: Add integration tests for surcharge [#5938](https://github.com/reactioncommerce/reaction/pull/5938) +- tests: add integration test for echo [#5942](https://github.com/reactioncommerce/reaction/pull/5942) +- tests: add integration test for enablePaymentMethodForShop [#5944](https://github.com/reactioncommerce/reaction/pull/5944) +- tests: adds integration test for taxServices query [#5912](https://github.com/reactioncommerce/reaction/pull/5912) +- tests: adds systemInformation query integration test [#5907](https://github.com/reactioncommerce/reaction/pull/5907) +- tests: split query and mutation integration tests in CI config [#5919](https://github.com/reactioncommerce/reaction/pull/5919) +- tests: fix out-of-memory issues in tests [#5918](https://github.com/reactioncommerce/reaction/pull/5918) +- tests: adds addressValidation query integration test [#5917](https://github.com/reactioncommerce/reaction/pull/5917) +- tests: delete unused documents in afterAll [#5903](https://github.com/reactioncommerce/reaction/pull/5903) +- tests: add create/update/delete navigation item integration tests [#5890](https://github.com/reactioncommerce/reaction/pull/5890) +- tests: adds integration test sitemap [#5889](https://github.com/reactioncommerce/reaction/pull/5889) +- tests: adds integration test subrchargeById query [#5896](https://github.com/reactioncommerce/reaction/pull/5896) +- tests: adds integration test surcharges [#5902](https://github.com/reactioncommerce/reaction/pull/5902) + +## Chores + +- chore: integration test for update navigation tree [#5914](https://github.com/reactioncommerce/reaction/pull/5914) +- chore: add integration test for addressValidationServices query [#5930](https://github.com/reactioncommerce/reaction/pull/5930) +- chore: add integration test for taxCodes query [#5911](https://github.com/reactioncommerce/reaction/pull/5911) + # v3.0.0-alpha Reaction v3.0.0-alpha is our alpha release of the new Reaction project. diff --git a/package.json b/package.json index a874959a182..953c6367e8c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "reaction-api", - "version": "3.0.0-alpha", + "version": "3.0.0-alpha.2", "description": "Reaction is a modern reactive, real-time event driven ecommerce platform.", "main": "./src/index.js", "type": "module", From 75e3207fb2e1774726648cc9433a7ab53a36d661 Mon Sep 17 00:00:00 2001 From: Erik Kieckhafer Date: Thu, 19 Dec 2019 20:53:11 -0800 Subject: [PATCH 2/3] refactor: move "chores" into tests column where they belong Signed-off-by: Erik Kieckhafer --- CHANGELOG.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 444bea927be..9a60190dab9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -46,12 +46,9 @@ The primary focus for this release is the addition of integration tests for many - tests: adds integration test sitemap [#5889](https://github.com/reactioncommerce/reaction/pull/5889) - tests: adds integration test subrchargeById query [#5896](https://github.com/reactioncommerce/reaction/pull/5896) - tests: adds integration test surcharges [#5902](https://github.com/reactioncommerce/reaction/pull/5902) - -## Chores - -- chore: integration test for update navigation tree [#5914](https://github.com/reactioncommerce/reaction/pull/5914) -- chore: add integration test for addressValidationServices query [#5930](https://github.com/reactioncommerce/reaction/pull/5930) -- chore: add integration test for taxCodes query [#5911](https://github.com/reactioncommerce/reaction/pull/5911) +- tests: integration test for update navigation tree [#5914](https://github.com/reactioncommerce/reaction/pull/5914) +- tests: add integration test for addressValidationServices query [#5930](https://github.com/reactioncommerce/reaction/pull/5930) +- tests: add integration test for taxCodes query [#5911](https://github.com/reactioncommerce/reaction/pull/5911) # v3.0.0-alpha From e08474741793beaa36b3f9d83f743ff730179ea4 Mon Sep 17 00:00:00 2001 From: Erik Kieckhafer Date: Thu, 19 Dec 2019 20:54:33 -0800 Subject: [PATCH 3/3] chore: language updates Signed-off-by: Erik Kieckhafer --- CHANGELOG.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9a60190dab9..406659c0d83 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ Reaction v3.0.0-alpha.2 is the second alpha release of our new Reaction project. -*Reaction releases will no longer be coordinated across all projects. This means version numbers will no longer be in sync. The newest versions of each project will work together.* +*Reaction releases will no longer be coordinated across all projects - we'll release each project, independently, as needed. This means version numbers will no longer be in sync. The newest versions of each project will work together.* ## Notable changes @@ -22,7 +22,7 @@ The primary focus for this release is the addition of integration tests for many - refactor: eliminate factory mocks for catalogItemProduct [#5892](https://github.com/reactioncommerce/reaction/pull/5892) - refactor: consolidate translation plugins [#5920](https://github.com/reactioncommerce/reaction/pull/5920) - refactor: clean up ENV/envalid code [#5922](https://github.com/reactioncommerce/reaction/pull/5922) -- refactor: mo more Packages collection, implement AddressValidationRules GQL, 5888other 3.0 stuff [#](https://github.com/reactioncommerce/reaction5888/pull/) +- refactor: mo more Packages collection, implement AddressValidationRules GQL, other 3.0 stuff [#5888](https://github.com/reactioncommerce/reaction5888/pull/5888) ## Tests