Skip to content

Commit

Permalink
Merge pull request #32 from temporalio/rc.2-release
Browse files Browse the repository at this point in the history
release(RC.2): RC.2 Release
  • Loading branch information
rustatian authored Feb 17, 2021
2 parents d179b9c + ec0416c commit 553667a
Show file tree
Hide file tree
Showing 4 changed files with 41 additions and 19 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,11 @@
CHANGELOG
=========

v1.0.0-RC.2 (17.02.2021)
-------------------
- Update `docker-compose.yaml`, use `postgres` instead of `cassandra`.
- Endure update to v1.0.0-RC.2
- Roadrunner core update to v2.0.0-RC.3 (ref: [release](https://github.com/spiral/roadrunner/releases/tag/v2.0.0-RC.3))

v1.0.0-RC.1 (11.02.2021)
-------------------
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ require (
github.com/pborman/uuid v1.2.1
github.com/spiral/endure v1.0.0-beta.23
github.com/spiral/errors v1.0.9
github.com/spiral/roadrunner/v2 v2.0.0-RC.1
github.com/spiral/roadrunner/v2 v2.0.0-RC.3
github.com/stretchr/testify v1.7.0
go.temporal.io/api v1.4.0
go.temporal.io/sdk v1.4.1
Expand Down
3 changes: 3 additions & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -403,6 +403,7 @@ github.com/spf13/pflag v1.0.3 h1:zPAT6CGy6wXeQ7NtTnaTerfKOsV6V6F8agHXFiazDkg=
github.com/spf13/pflag v1.0.3/go.mod h1:DYY7MBk1bdzusC3SYhjObp+wFpr4gzcvqqNjLnInEg4=
github.com/spf13/viper v1.7.1 h1:pM5oEahlgWv/WnHXpgbKz7iLIxRf65tye2Ci+XFK5sk=
github.com/spf13/viper v1.7.1/go.mod h1:8WkrPz2fc9jxqZNCJI/76HCieCp4Q8HaLFoCha5qpdg=
github.com/spiral/endure v1.0.0-RC.2/go.mod h1:+gB0/jI9tXdHgv0x4P9vXLER8fLgwt9a7aPi0QZeJHE=
github.com/spiral/endure v1.0.0-beta.23 h1:iIK+lrOTaWUyJpENxvjNjlhBA0QIrhks1uxcza3bmUQ=
github.com/spiral/endure v1.0.0-beta.23/go.mod h1:+gB0/jI9tXdHgv0x4P9vXLER8fLgwt9a7aPi0QZeJHE=
github.com/spiral/errors v1.0.5/go.mod h1:SwMSZVdZkkJVgXNNafccqOaxWg0XPzVU/dEdUEInE0o=
Expand All @@ -412,6 +413,8 @@ github.com/spiral/goridge/v3 v3.0.1 h1:mWo6hVEDJV3nRwsszx9y262CtrLQNojbONF4ikvKC
github.com/spiral/goridge/v3 v3.0.1/go.mod h1:rYfsBwigGneLgYJTIh5urotnH63I5O+p6ZcVq7xc1lY=
github.com/spiral/roadrunner/v2 v2.0.0-RC.1 h1:1KI7Hy2wUzNVAjI5F3wEJCwWhCzvayFX2S8xstWnsmw=
github.com/spiral/roadrunner/v2 v2.0.0-RC.1/go.mod h1:gTWXqCJkwd2OAaLk2RmEck0YAFslQvE9UV9AqdUlXMY=
github.com/spiral/roadrunner/v2 v2.0.0-RC.3 h1:bHXo65MA3reVQ4G/Pr5tCCm2roOZpLqFGQWMGcIsBmU=
github.com/spiral/roadrunner/v2 v2.0.0-RC.3/go.mod h1:gTWXqCJkwd2OAaLk2RmEck0YAFslQvE9UV9AqdUlXMY=
github.com/streadway/amqp v0.0.0-20190404075320-75d898a42a94/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw=
github.com/streadway/amqp v0.0.0-20190827072141-edfb9018d271/go.mod h1:AZpEONHx3DKn8O/DFsRAY58/XVQiIPMTMB1SddzLXVw=
github.com/streadway/handy v0.0.0-20190108123426-d5acb3125c2a/go.mod h1:qNTQ5P5JnDBl6z3cMAg/SywNDC5ABu5ApDIw6lUbRmI=
Expand Down
50 changes: 32 additions & 18 deletions tests/docker-compose.yaml
Original file line number Diff line number Diff line change
@@ -1,32 +1,46 @@
version: '3.5'
version: '3.7'

services:
cassandra:
image: cassandra:3.11
postgresql:
container_name: temporal-postgresql
image: postgres:13.1
environment:
POSTGRES_PASSWORD: temporal
POSTGRES_USER: temporal
ports:
- "9042:9042"
- 5432:5432

temporal:
container_name: temporal
image: temporalio/auto-setup:1.6.3
ports:
- "7233:7233"
environment:
- "CASSANDRA_SEEDS=cassandra"
depends_on:
- cassandra
- postgresql
environment:
- DB=postgresql
- DB_PORT=5432
- POSTGRES_USER=temporal
- POSTGRES_PWD=temporal
- POSTGRES_SEEDS=postgresql
ports:
- 7233:7233

temporal-admin-tools:
container_name: temporal-admin-tools
image: temporalio/admin-tools:1.6.3
depends_on:
- temporal
environment:
- TEMPORAL_CLI_ADDRESS=temporal:7233
stdin_open: true
tty: true
environment:
- "TEMPORAL_CLI_ADDRESS=temporal:7233"

temporal-web:
container_name: temporal-web
image: temporalio/web:1.6.2
depends_on:
- temporal
temporal-web:
image: temporalio/web:1.6.1
environment:
- "TEMPORAL_GRPC_ENDPOINT=temporal:7233"
- "TEMPORAL_PERMIT_WRITE_API=true"
- TEMPORAL_GRPC_ENDPOINT=temporal:7233
- TEMPORAL_PERMIT_WRITE_API=true
ports:
- "8088:8088"
depends_on:
- temporal
- 8088:8088

0 comments on commit 553667a

Please sign in to comment.