Skip to content

Commit

Permalink
Merge pull request #48 from reactioncommerce/release-v3.0.0
Browse files Browse the repository at this point in the history
release v3.0.0
  • Loading branch information
kieckhafer authored Feb 6, 2020
2 parents 67fddac + 0453a7c commit eee6dd1
Show file tree
Hide file tree
Showing 3 changed files with 57 additions and 16 deletions.
21 changes: 12 additions & 9 deletions .env.example
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
# OAUTH2_ACCESS_TOKEN_STRATEGY=opaque
DATABASE_URL=postgres://hydra:changeme@postgres:5432/hydra?sslmode=disable
OAUTH2_CONSENT_URL=http://localhost:3000/consent
OAUTH2_ISSUER_URL=http://localhost:4444
OAUTH2_LOGIN_URL=http://localhost:3000/login
OAUTH2_SHARE_ERROR_DEBUG=1
OIDC_SUBJECT_TYPE_PAIRWISE_SALT=youReallyNeedToChangeThis
OIDC_SUBJECT_TYPES_SUPPORTED=public,pairwise
SYSTEM_SECRET=youReallyNeedToChangeThis
DSN=postgres://hydra:[email protected]:5432/hydra?sslmode=disable
OAUTH2_EXPOSE_INTERNAL_ERRORS=true
OIDC_SUBJECT_IDENTIFIERS_ENABLED=true
OIDC_SUBJECT_IDENTIFIERS_PAIRWISE_SALT=youReallyNeedToChangeThis
SECRETS_SYSTEM=youReallyNeedToChangeThis
SERVE_PUBLIC_CORS_ALLOWED_ORIGINS=http://localhost:4080
SERVE_PUBLIC_CORS_ENABLED=true
URLS_CONSENT=http://localhost:4100/consent
URLS_ERROR=http://localhost:4100/account/oauth-error
URLS_LOGIN=http://localhost:4100/login
URLS_LOGOUT=http://localhost:4100/logout
URLS_SELF_ISSUER=http://localhost:4444
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,35 @@
# v3.0.0

This is the v3.0.0 release of `reaction-hydra`, designed to work with v3.0.0 of the Reaction API.

## Features

- feat: add URL for identity error page [#42](https://github.com/reactioncommerce/reaction-hydra/pull/42)

## Chores

- chore: reconfigure docker-compose networks [#46](https://github.com/reactioncommerce/reaction-hydra/pull/46)

## Notes

*These changes were originally tested and released in our alpha and beta releases*

- [v3.0.0-beta.2](https://github.com/reactioncommerce/reaction-hydra/releases/tag/v3.0.0-beta.2)
- [v3.0.0-beta](https://github.com/reactioncommerce/reaction-hydra/releases/tag/v3.0.0-beta)
- [v3.0.0-alpha.2](https://github.com/reactioncommerce/reaction-hydra/releases/tag/v3.0.0-alpha.2)
- [v3.0.0-alpha](https://github.com/reactioncommerce/reaction-hydra/releases/tag/v3.0.0-alpha)

*The following Reaction projects are being released one time in coordination as v3.0.0*

- [Reaction API](https://github.com/reactioncommerce/reaction)
- [Reaction Hydra](https://github.com/reactioncommerce/reaction-hydra)
- [Reaction Identity](https://github.com/reactioncommerce/reaction-identity)
- [Reaction Admin (beta)](https://github.com/reactioncommerce/reaction-admin)
- [Example Storefront](https://github.com/reactioncommerce/example-storefront)
- [Reaction Development Platform](https://github.com/reactioncommerce/reaction-development-platform)

*After this release, 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.*

# v2.9.1

This is a patch update to keep this project in sync with [reaction v2.9.1](https://github.com/reactioncommerce/reaction), [example-storefront v2.9.1](https://github.com/reactioncommerce/example-storefront) and [reaction-platform v2.9.1](https://github.com/reactioncommerce/reaction-platform).
Expand Down
20 changes: 13 additions & 7 deletions docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,32 @@
version: '3'
version: '3.4'

networks:
auth:
reaction:
external:
name: auth.reaction.localhost
name: reaction.localhost

services:

hydra-migrate:
image: oryd/hydra:v1.0.0-beta.9-alpine
command: migrate sql -e
image: oryd/hydra:v1.0.8
command: migrate sql -e -y
depends_on:
- postgres
networks:
default:
reaction:
env_file: ".env"
restart: on-failure

hydra:
image: oryd/hydra:v1.0.0-beta.9-alpine
image: oryd/hydra:v1.0.8
command: serve all --dangerous-force-http
depends_on:
- hydra-migrate
- postgres
networks:
default:
auth:
reaction:
ports:
# Public port
- "4444:4444"
Expand All @@ -40,6 +43,9 @@ services:
- POSTGRES_USER=hydra
- POSTGRES_PASSWORD=changeme
- POSTGRES_DB=hydra
networks:
default:
reaction:
ports:
- 5432
volumes:
Expand Down

0 comments on commit eee6dd1

Please sign in to comment.