Skip to content

Commit

Permalink
Merge pull request #159 from reactioncommerce/release-next-v3.8.0
Browse files Browse the repository at this point in the history
updates for reaction-admin beta-v3.0.0-beta.8
  • Loading branch information
kieckhafer authored Sep 25, 2020
2 parents c2d8d21 + 9a270f5 commit 13aea17
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 4 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v3.8.0

This release is coordinated with the release of [Reaction Admin v3.0.0-beta.8](https://github.com/reactioncommerce/reaction-admin/releases/tag/v3.0.0-beta.8) to keep the `reaction-development-platform` up-to-date with the latest version of all our development platform projects.

# v3.7.0

This release is coordinated with the release of [Reaction v3.8.0](https://github.com/reactioncommerce/reaction/releases/tag/v3.8.0), [Example Storefront v3.1.0](https://github.com/reactioncommerce/example-storefront/releases/tag/v3.1.0) and [Reaction Identity v3.1.0](https://github.com/reactioncommerce/reaction-identity/releases/tag/v3.1.0) to keep the `reaction-development-platform` up-to-date with the latest version of all our development platform projects.
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ These services will be running when the initial `make` command is complete:
|-----------------------------------------------------|-----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
| [OAuth2 Server (Hydra)][12] (http://localhost:4444) | [ORY Hydra][11] OAuth2 token server. |
| [Reaction Identity][17] (http://localhost:4100) | The OAuth2-compatible user interface for Reaction Identity, such as login and registration. |
| [Reaction API][10] (http://localhost:3000) | The Reaction API, which includes [a GraphQL endpoint](http://localhost:3000/graphql-beta). See [GraphQL Playground](https://www.apollographql.com/docs/apollo-server/features/graphql-playground/). |
| [Reaction API][10] (http://localhost:3000) | The Reaction API, which includes [a GraphQL endpoint](http://localhost:3000/graphql). See [GraphQL Playground](https://www.apollographql.com/docs/apollo-server/features/graphql-playground/). |
| [Reaction Admin][19] (http://localhost:4080) | A user interface for administrators and shop managers to configure shops, manage products, and process orders. |
| [Example Storefront][13] (http://localhost:4000) | An example Reaction storefront UI built with [Next.JS](https://github.com/zeit/next.js/). |

Expand Down 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.3.0`](https://github.com/reactioncommerce/reaction-development-platform/tree/v3.3.0) |
| [reaction-development-platform][10] | [`3.8.0`](https://github.com/reactioncommerce/reaction-development-platform/tree/v3.8.0) |
| [reaction][10] | [`3.8.0`](https://github.com/reactioncommerce/reaction/tree/v3.8.0) |
| [reaction-hydra][12] | [`3.0.0`](https://github.com/reactioncommerce/reaction-hydra/tree/v3.0.0) |
| [reaction-identity][17] | [`3.1.0`](https://github.com/reactioncommerce/reaction-identity/tree/v3.1.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.7`](https://github.com/reactioncommerce/reaction-admin/tree/v3.0.0-beta.7) |
| [reaction-admin (beta)][19] | [`3.0.0-beta.8`](https://github.com/reactioncommerce/reaction-admin/tree/v3.0.0-beta.8) |
| [api-migrations][20] | [`3.8.0`](https://github.com/reactioncommerce/api-migrations/tree/v3.8.0) |

### Developer Certificate of Origin
Expand Down
2 changes: 1 addition & 1 deletion config.mk
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ define SUBPROJECT_REPOS
https://github.com/reactioncommerce/reaction-hydra.git,reaction-hydra,v3.0.0 \
https://github.com/reactioncommerce/reaction.git,reaction,v3.8.0 \
https://github.com/reactioncommerce/reaction-identity.git,reaction-identity,v3.1.0 \
https://github.com/reactioncommerce/reaction-admin.git,reaction-admin,v3.0.0-beta.7 \
https://github.com/reactioncommerce/reaction-admin.git,reaction-admin,v3.0.0-beta.8 \
https://github.com/reactioncommerce/example-storefront.git,example-storefront,v3.1.0
endef

Expand Down
34 changes: 34 additions & 0 deletions config/reaction-oss/reaction-v3.8.0.mk
Original file line number Diff line number Diff line change
@@ -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.8.0 \
https://github.com/reactioncommerce/reaction-identity.git,reaction-identity,v3.1.0 \
https://github.com/reactioncommerce/reaction-admin.git,reaction-admin,v3.0.0-beta.8 \
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

0 comments on commit 13aea17

Please sign in to comment.