Skip to content
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 v3.12.0 #172

Merged
merged 1 commit into from
Mar 5, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
# v3.12.0
This release is coordinated with the release of [reaction-admin v3.0.0-beta.13(https://github.com/reactioncommerce/reaction-admin/releases/tag/v3.0.0-beta.13)], [example-storefront v4.0.2(https://github.com/reactioncommerce/example-storefront/releases/tag/v4.0.2)], [reaction-identity v3.3.1(https://github.com/reactioncommerce/reaction-identity/releases/tag/v3.3.1)] to keep the `reaction-development-platform` up-to-date with the latest version of all our development platform projects.
# v3.11.1

This release is coordinated with the release of [Reaction v3.11.1](https://github.com/reactioncommerce/reaction/releases/tag/v3.11.1) and [Reaction Admin v3.0.0-beta.12](https://github.com/reactioncommerce/reaction-admin/releases/tag/v3.0.0-beta.12) to keep the `reaction-development-platform` up-to-date with the latest version of all our development platform projects.
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.11.1`](https://github.com/reactioncommerce/reaction-development-platform/tree/v3.11.1) |
| [reaction-development-platform][10] | [`3.12.0`](https://github.com/reactioncommerce/reaction-development-platform/tree/v3.12.0) |
| [reaction][10] | [`3.11.1`](https://github.com/reactioncommerce/reaction/tree/v3.11.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.0`](https://github.com/reactioncommerce/example-storefront/tree/v4.0.0) |
| [reaction-admin (beta)][19] | [`3.0.0-beta.12`](https://github.com/reactioncommerce/reaction-admin/tree/v3.0.0-beta.12) |
| [reaction-identity][17] | [`3.3.1`](https://github.com/reactioncommerce/reaction-identity/tree/v3.3.1) |
| [example-storefront][13] | [`4.0.2`](https://github.com/reactioncommerce/example-storefront/tree/v4.0.2) |
| [reaction-admin (beta)][19] | [`3.0.0-beta.13`](https://github.com/reactioncommerce/reaction-admin/tree/v3.0.0-beta.13) |
| [api-migrations][20] | [`3.11.0`](https://github.com/reactioncommerce/api-migrations/tree/v3.11.0) |

### Developer Certificate of Origin
Expand Down
6 changes: 3 additions & 3 deletions config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ endef
define SUBPROJECT_REPOS
https://github.com/reactioncommerce/reaction-hydra.git,reaction-hydra,v3.0.0 \
https://github.com/reactioncommerce/reaction.git,reaction,v3.11.1 \
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.12 \
https://github.com/reactioncommerce/example-storefront.git,example-storefront,v4.0.0
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.13 \
https://github.com/reactioncommerce/example-storefront.git,example-storefront,v4.0.2
endef

# These are all the plugins that `make clone-api-plugins` will clone.
Expand Down
34 changes: 34 additions & 0 deletions config/reaction-oss/reaction-v3.12.0
Original file line number Diff line number Diff line change
@@ -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.11.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.13 \
https://github.com/reactioncommerce/example-storefront.git,example-storefront,v4.0.2
endef

# List of user defined networks that should be created.
define DOCKER_NETWORKS
reaction.localhost
endef