Skip to content

Releases: robertpallas/pgdeploy

0.8.0

18 Oct 14:21
Compare
Choose a tag to compare
  • public schema sql changes will go first on releases in every version

0.7.4

18 Oct 11:33
Compare
Choose a tag to compare
minor: bump version

0.7.1

31 May 13:26
Compare
Choose a tag to compare
  • fix deploy with env name sent as cli param

0.7.0

28 May 12:25
Compare
Choose a tag to compare
  • send deploy credentials as CLI args
  • --force for deploy to skip asking confirmation and skipping protected versions security checks
  • fix saving credentials on "Ask credentials"

0.6.0

28 May 11:31
Compare
Choose a tag to compare
  • ask credentials option on deploy if env is not specified by args
  • save asked credentials to pgdeploy.json

0.5.2

20 Feb 16:19
Compare
Choose a tag to compare

Export fix

0.5.1

20 Feb 15:21
Compare
Choose a tag to compare

import-export error handling: async.js "Callback already called" fixed

0.5.0

06 Feb 16:05
Compare
Choose a tag to compare

To be able to successfully import data with foreign key references:

  1. get foreign key constraints out from database before data import (generate ALTER TABLE ... ADD CONSTRAINT queries)
  2. drop all foreign key constraints
  3. COPY (pgSql command) all import data from csv
  4. run alter queries from step one to add back FK constraints

For this we have added 2 util functions.

0.4.2

05 Jan 17:18
Compare
Choose a tag to compare

Bugfixes

0.4.1

05 Jan 14:05
Compare
Choose a tag to compare
  • call reset sequences after imports