Releases: politics-rewired/Spoke
Version 1.8.4
Version 1.8.3
Version 1.8.2
Version 1.8.1
Docker image: gcr.io/spoke-rewired/spoke:1.8.1
This release includes no user-facing changes, just fixes for building TypeScript.
Version 1.8.0
Version 1.7.1
Docker image: gcr.io/spoke-rewired/spoke:1.7.1
This release includes no user-facing changes, just a fix for the Dockerfile.
Version 1.7.0
Docker image: gcr.io/spoke-rewired/spoke:1.7.0
(note: the v
prefix has been dropped from the image tag)
Migrations
graphile-worker
These version introduces the graphile-worker
Node.js/PostgreSQL job queue which requires an initial setup migration. This migration is managed outside of knex
and creates a separate graphile_worker
schema in the database:
yarn migrate:worker
enforce_one_role_per_org
Each (user, organization) pair should only ever have one entry in user_organization
. This migration adds that as a database constraint. Before running the migration you will need to remove any duplicate entries. You can get a report of such duplicates using the following:
select user_id, organization_id from user_organization group by 1, 2 having count(*) > 1;
Features
- add promote-on-assign button (#611) (9cb2943)
- default texter approval status (#614) (b12a35f)
- expose texter auto-approval status (#610) (f0a7e1c)