From 03d154f2e8340c1306d1837d8f2726e1aee64e88 Mon Sep 17 00:00:00 2001 From: Erik Kieckhafer Date: Fri, 25 Sep 2020 14:18:46 -0700 Subject: [PATCH 1/2] release 3.10.0 Signed-off-by: Erik Kieckhafer --- CHANGELOG.md | 4 +++ README.md | 10 ++++---- config.mk | 6 ++--- config/reaction-oss/reaction-v3.10.0.mk | 34 +++++++++++++++++++++++++ 4 files changed, 46 insertions(+), 8 deletions(-) create mode 100644 config/reaction-oss/reaction-v3.10.0.mk diff --git a/CHANGELOG.md b/CHANGELOG.md index 67f147a..f1c536c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +# v3.10.0 + +This release is coordinated with the release of [Reaction v3.10.0](https://github.com/reactioncommerce/reaction/releases/tag/v3.10.0), [Reaction Admin v3.0.0-beta.10](https://github.com/reactioncommerce/reaction-admin/releases/tag/v3.0.0-beta.10) and [Reaction Identity v3.3.0](https://github.com/reactioncommerce/reaction-identity/releases/tag/v3.23.0) to keep the `reaction-development-platform` up-to-date with the latest version of all our development platform projects. + # v3.9.0 This release is coordinated with the release of [Reaction v3.9.0](https://github.com/reactioncommerce/reaction/releases/tag/v3.9.0), [Reaction Admin v3.0.0-beta.9](https://github.com/reactioncommerce/reaction-admin/releases/tag/v3.0.0-beta.9) and [Reaction Identity v3.1.0](https://github.com/reactioncommerce/reaction-identity/releases/tag/v3.2.0) to keep the `reaction-development-platform` up-to-date with the latest version of all our development platform projects. diff --git a/README.md b/README.md index 40fa695..7a5601d 100644 --- a/README.md +++ b/README.md @@ -253,13 +253,13 @@ The following table provides the most current version of each project used by th | Project | Latest release / tag | |-------------------------------------|-----------------------------------------------------------------------------------------------------| -| [reaction-development-platform][10] | [`3.9.0`](https://github.com/reactioncommerce/reaction-development-platform/tree/v3.9.0) | -| [reaction][10] | [`3.9.0`](https://github.com/reactioncommerce/reaction/tree/v3.9.0) | +| [reaction-development-platform][10] | [`3.10.0`](https://github.com/reactioncommerce/reaction-development-platform/tree/v3.10.0) | +| [reaction][10] | [`3.10.0`](https://github.com/reactioncommerce/reaction/tree/v3.10.0) | | [reaction-hydra][12] | [`3.0.0`](https://github.com/reactioncommerce/reaction-hydra/tree/v3.0.0) | -| [reaction-identity][17] | [`3.2.0`](https://github.com/reactioncommerce/reaction-identity/tree/v3.2.0) | +| [reaction-identity][17] | [`3.3.0`](https://github.com/reactioncommerce/reaction-identity/tree/v3.3.0) | | [example-storefront][13] | [`3.1.0`](https://github.com/reactioncommerce/example-storefront/tree/v3.1.0) | -| [reaction-admin (beta)][19] | [`3.0.0-beta.9`](https://github.com/reactioncommerce/reaction-admin/tree/v3.0.0-beta.9) | -| [api-migrations][20] | [`3.9.0`](https://github.com/reactioncommerce/api-migrations/tree/v3.9.0) | +| [reaction-admin (beta)][19] | [`3.0.0-beta.10`](https://github.com/reactioncommerce/reaction-admin/tree/v3.0.0-beta.10) | +| [api-migrations][20] | [`3.10.0`](https://github.com/reactioncommerce/api-migrations/tree/v3.10.0) | ### Developer Certificate of Origin We use the [Developer Certificate of Origin (DCO)](https://developercertificate.org/) in lieu of a Contributor License Agreement for all contributions to Reaction Commerce open source projects. We request that contributors agree to the terms of the DCO and indicate that agreement by signing-off all commits made to Reaction Commerce projects by adding a line with your name and email address to every Git commit message contributed: diff --git a/config.mk b/config.mk index 4588080..0d0d18c 100644 --- a/config.mk +++ b/config.mk @@ -28,9 +28,9 @@ endef # Projects will be started in this order define SUBPROJECT_REPOS https://github.com/reactioncommerce/reaction-hydra.git,reaction-hydra,v3.0.0 \ -https://github.com/reactioncommerce/reaction.git,reaction,v3.9.0 \ -https://github.com/reactioncommerce/reaction-identity.git,reaction-identity,v3.2.0 \ -https://github.com/reactioncommerce/reaction-admin.git,reaction-admin,v3.0.0-beta.9 \ +https://github.com/reactioncommerce/reaction.git,reaction,v3.10.0 \ +https://github.com/reactioncommerce/reaction-identity.git,reaction-identity,v3.3.0 \ +https://github.com/reactioncommerce/reaction-admin.git,reaction-admin,v3.0.0-beta.10 \ https://github.com/reactioncommerce/example-storefront.git,example-storefront,v3.1.0 endef diff --git a/config/reaction-oss/reaction-v3.10.0.mk b/config/reaction-oss/reaction-v3.10.0.mk new file mode 100644 index 0000000..41e3139 --- /dev/null +++ b/config/reaction-oss/reaction-v3.10.0.mk @@ -0,0 +1,34 @@ +############################################################################### +### Reaction OSS v3.7.0 +### +### See: `/config.mk` for documentation. +############################################################################### + +# List of tools that must be installed. +# A simple check to determine the tool is available. No version check, etc. +define REQUIRED_SOFTWARE +docker \ +docker-compose \ +git \ +node \ +yarn +endef + +# Defined here are the subprojects in a comma-separated format +# GIT_REPO_URL,SUBDIR_NAME,TAG +# GIT_REPO_URL is the URL of the git repository +# SUBDIR_NAME is just the directory name itself +# TAG is the git tag or branch to checkout +# Projects will be started in this order +define SUBPROJECT_REPOS +https://github.com/reactioncommerce/reaction-hydra.git,reaction-hydra,v3.0.0 \ +https://github.com/reactioncommerce/reaction.git,reaction,v3.10.0 \ +https://github.com/reactioncommerce/reaction-identity.git,reaction-identity,v3.3.0 \ +https://github.com/reactioncommerce/reaction-admin.git,reaction-admin,v3.0.0-beta.10 \ +https://github.com/reactioncommerce/example-storefront.git,example-storefront,v3.1.0 +endef + +# List of user defined networks that should be created. +define DOCKER_NETWORKS +reaction.localhost +endef From 33477b68b09e7daffe3d9896358c6ea64e7d5097 Mon Sep 17 00:00:00 2001 From: Erik Kieckhafer Date: Mon, 5 Oct 2020 13:36:05 -0700 Subject: [PATCH 2/2] add example storefront to release Signed-off-by: Erik Kieckhafer --- CHANGELOG.md | 2 +- README.md | 2 +- config.mk | 2 +- config/reaction-oss/reaction-v3.10.0.mk | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1c536c..e95eb90 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ # v3.10.0 -This release is coordinated with the release of [Reaction v3.10.0](https://github.com/reactioncommerce/reaction/releases/tag/v3.10.0), [Reaction Admin v3.0.0-beta.10](https://github.com/reactioncommerce/reaction-admin/releases/tag/v3.0.0-beta.10) and [Reaction Identity v3.3.0](https://github.com/reactioncommerce/reaction-identity/releases/tag/v3.23.0) to keep the `reaction-development-platform` up-to-date with the latest version of all our development platform projects. +This release is coordinated with the release of [Reaction v3.10.0](https://github.com/reactioncommerce/reaction/releases/tag/v3.10.0), [Reaction Admin v3.0.0-beta.10](https://github.com/reactioncommerce/reaction-admin/releases/tag/v3.0.0-beta.10), [Reaction Identity v3.3.0](https://github.com/reactioncommerce/reaction-identity/releases/tag/v3.23.0) and [Example Storefront v4.0.0](https://github.com/reactioncommerce/example-storefront/releases/tag/v4.0.0) to keep the `reaction-development-platform` up-to-date with the latest version of all our development platform projects. # v3.9.0 diff --git a/README.md b/README.md index 7a5601d..3eff404 100644 --- a/README.md +++ b/README.md @@ -257,7 +257,7 @@ The following table provides the most current version of each project used by th | [reaction][10] | [`3.10.0`](https://github.com/reactioncommerce/reaction/tree/v3.10.0) | | [reaction-hydra][12] | [`3.0.0`](https://github.com/reactioncommerce/reaction-hydra/tree/v3.0.0) | | [reaction-identity][17] | [`3.3.0`](https://github.com/reactioncommerce/reaction-identity/tree/v3.3.0) | -| [example-storefront][13] | [`3.1.0`](https://github.com/reactioncommerce/example-storefront/tree/v3.1.0) | +| [example-storefront][13] | [`4.0.0`](https://github.com/reactioncommerce/example-storefront/tree/v4.0.0) | | [reaction-admin (beta)][19] | [`3.0.0-beta.10`](https://github.com/reactioncommerce/reaction-admin/tree/v3.0.0-beta.10) | | [api-migrations][20] | [`3.10.0`](https://github.com/reactioncommerce/api-migrations/tree/v3.10.0) | diff --git a/config.mk b/config.mk index 0d0d18c..6a7c6c8 100644 --- a/config.mk +++ b/config.mk @@ -31,7 +31,7 @@ https://github.com/reactioncommerce/reaction-hydra.git,reaction-hydra,v3.0.0 \ https://github.com/reactioncommerce/reaction.git,reaction,v3.10.0 \ https://github.com/reactioncommerce/reaction-identity.git,reaction-identity,v3.3.0 \ https://github.com/reactioncommerce/reaction-admin.git,reaction-admin,v3.0.0-beta.10 \ -https://github.com/reactioncommerce/example-storefront.git,example-storefront,v3.1.0 +https://github.com/reactioncommerce/example-storefront.git,example-storefront,v4.0.0 endef # These are all the plugins that `make clone-api-plugins` will clone. diff --git a/config/reaction-oss/reaction-v3.10.0.mk b/config/reaction-oss/reaction-v3.10.0.mk index 41e3139..0089ffe 100644 --- a/config/reaction-oss/reaction-v3.10.0.mk +++ b/config/reaction-oss/reaction-v3.10.0.mk @@ -25,7 +25,7 @@ https://github.com/reactioncommerce/reaction-hydra.git,reaction-hydra,v3.0.0 \ https://github.com/reactioncommerce/reaction.git,reaction,v3.10.0 \ https://github.com/reactioncommerce/reaction-identity.git,reaction-identity,v3.3.0 \ https://github.com/reactioncommerce/reaction-admin.git,reaction-admin,v3.0.0-beta.10 \ -https://github.com/reactioncommerce/example-storefront.git,example-storefront,v3.1.0 +https://github.com/reactioncommerce/example-storefront.git,example-storefront,v4.0.0 endef # List of user defined networks that should be created.