From 52280a3b8b69e69f1fdbc6b8ff09a4959509ff3e Mon Sep 17 00:00:00 2001 From: Akarshit Wal Date: Tue, 3 Aug 2021 10:53:00 -0600 Subject: [PATCH] ci: v3.14.0 Signed-off-by: Akarshit Wal --- CHANGELOG.md | 2 ++ README.md | 8 +++--- config.mk | 6 ++--- config/reaction-oss/reaction-v3.14.0.mk | 34 +++++++++++++++++++++++++ 4 files changed, 43 insertions(+), 7 deletions(-) create mode 100644 config/reaction-oss/reaction-v3.14.0.mk diff --git a/CHANGELOG.md b/CHANGELOG.md index f3b344e..75c343f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,5 @@ +# v3.14.0 +This release is coordinated with the release of [reaction-admin v3.0.0-beta.18](https://github.com/reactioncommerce/reaction-admin/releases/tag/v3.0.0-beta.18), [reaction v3.13.1](https://github.com/reactioncommerce/reaction/releases/tag/v3.13.1), [example-storefront v4.1.0](https://github.com/reactioncommerce/example-storefront/releases/tag/v4.1.0) to keep the `reaction-development-platform` up-to-date with the latest version of all our development platform projects. # v3.13.0 This release is coordinated with the release of [reaction-admin v3.0.0-beta.15](https://github.com/reactioncommerce/reaction-admin/releases/tag/v3.0.0-beta.15), [reaction v3.13.0](https://github.com/reactioncommerce/reaction/releases/tag/v3.13.0), [example-storefront v4.0.2](https://github.com/reactioncommerce/example-storefront/releases/tag/v4.0.2) to keep the `reaction-development-platform` up-to-date with the latest version of all our development platform projects. # v3.12.0 diff --git a/README.md b/README.md index 3bc31e8..659b962 100644 --- a/README.md +++ b/README.md @@ -253,12 +253,12 @@ The following table provides the most current version of each project used by th | Project | Latest release / tag | | ----------------------------------- | ------------------------------------------------------------------------------------------ | -| [reaction-development-platform][10] | [`3.13.0`](https://github.com/reactioncommerce/reaction-development-platform/tree/v3.13.0) | -| [reaction][10] | [`3.13.0`](https://github.com/reactioncommerce/reaction/tree/v3.13.0) | +| [reaction-development-platform][10] | [`3.14.0`](https://github.com/reactioncommerce/reaction-development-platform/tree/v3.14.0) | +| [reaction][10] | [`3.13.1`](https://github.com/reactioncommerce/reaction/tree/v3.13.1) | | [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] | [`4.0.2`](https://github.com/reactioncommerce/example-storefront/tree/v4.0.2) | -| [reaction-admin (beta)][19] | [`3.0.0-beta.15`](https://github.com/reactioncommerce/reaction-admin/tree/v3.0.0-beta.15) | +| [example-storefront][13] | [`4.1.0`](https://github.com/reactioncommerce/example-storefront/tree/v4.1.0) | +| [reaction-admin (beta)][19] | [`3.0.0-beta.18`](https://github.com/reactioncommerce/reaction-admin/tree/v3.0.0-beta.18) | | [api-migrations][20] | [`3.11.0`](https://github.com/reactioncommerce/api-migrations/tree/v3.11.0) | ### Developer Certificate of Origin diff --git a/config.mk b/config.mk index ee1a47b..d5b9169 100644 --- a/config.mk +++ b/config.mk @@ -28,10 +28,10 @@ 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.13.0 \ -https://github.com/reactioncommerce/reaction-admin.git,reaction-admin,v3.0.0-beta.15 \ +https://github.com/reactioncommerce/reaction.git,reaction,v3.13.1 \ +https://github.com/reactioncommerce/reaction-admin.git,reaction-admin,v3.0.0-beta.18 \ https://github.com/reactioncommerce/reaction-identity.git,reaction-identity,v3.3.0 \ -https://github.com/reactioncommerce/example-storefront.git,example-storefront,v4.0.2 +https://github.com/reactioncommerce/example-storefront.git,example-storefront,v4.1.0 endef # These are all the plugins that `make clone-api-plugins` will clone. diff --git a/config/reaction-oss/reaction-v3.14.0.mk b/config/reaction-oss/reaction-v3.14.0.mk new file mode 100644 index 0000000..b0217f2 --- /dev/null +++ b/config/reaction-oss/reaction-v3.14.0.mk @@ -0,0 +1,34 @@ +############################################################################### +### Reaction OSS v3.11.1 +### +### 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.13.1 \ +https://github.com/reactioncommerce/reaction-identity.git,reaction-identity,v3.3.1 \ +https://github.com/reactioncommerce/reaction-admin.git,reaction-admin,v3.0.0-beta.18 \ +https://github.com/reactioncommerce/example-storefront.git,example-storefront,v4.1.0 +endef + +# List of user defined networks that should be created. +define DOCKER_NETWORKS +reaction.localhost +endef