Skip to content

Releases: rustprooflabs/pgdd

0.5.2

24 Nov 18:00
2a2de43
Compare
Choose a tag to compare

PgDD 0.5.2

The main reason to upgrade is to fix the broken partition queries. The other improvements were already live via current documentation and installers on 0.5.1.

  • Fix partition queries #47/#48
  • Add Ubuntu Lunar (23.04) installer (Docker) #43/#44. Thank you @pdgonzalez872 for testing!
  • Improved Documentation #46
  • Fix Postgres 16 build #49

Full Changelog: 0.5.1...0.5.2

0.5.1

17 Sep 14:11
Compare
Choose a tag to compare

PgDD 0.5.1

  • Adds new view dd.index
  • Adds support for Postgres 16
  • Removes support for Postgres 11
  • Bumps PostGIS versions to latest Docker image (16-3.4)

Full Changelog: 0.5.0...0.5.1

0.5.0

11 Jun 14:59
Compare
Choose a tag to compare

PgDD 0.5.0

This release has no functional changes from PgDD 0.4.1. This release keeps up with pgrx releases (formally pgx) and improves the build process via better documentation.


Full Changelog: 0.4.1...0.5.0

0.4.1

16 Dec 00:07
Compare
Choose a tag to compare

PgDD 0.4.1

Finally getting this release out.

  • Now using pgx version 0.6.0 #30, #32, #33, #34
  • Partitions #7
  • Add database view #8
  • Add size_bytes_plus_indexes calculation - #23
  • Now building for Ubuntu Jammy (22.04)

0.4.0

27 Nov 17:19
Compare
Choose a tag to compare

PgDD Version 0.4.0

Highlights

  • Now using pgx
  • Supports Postgres 10 through Postgres 14

Now using Pgx!

This is the first version of PgDD using the pgx framework instead of the raw SQL method. This rewrite sets the stage for improved support across a variety of Postgres versions and functionality.

Blog post: PgDD extension moves to Pgx

Upgrade path

Upgrading from Raw SQL version of PgDD (v0.3) to the pgx version (v0.4.0) is done with DROP EXTENSION pgdd; CREATE EXTENSION pgdd;

If custom attributes were stored in the dd tables you will need to use pg_dump to export the data and reload after recreating the extension with pgx.

SELECT COUNT(*)
    FROM dd.meta_table
    WHERE s_name <> 'dd';
SELECT COUNT(*)
    FROM dd.meta_column
    WHERE s_name <> 'dd';
SELECT COUNT(*)
    FROM dd.meta_schema
    WHERE s_name <> 'dd';

⚠️ Other breaking changes

  • PKs changed from SERIAL to BIGINT via IDENTITY - #21

0.4.0.rc4

15 Oct 01:39
0022759
Compare
Choose a tag to compare
0.4.0.rc4 Pre-release
Pre-release

PgDD Version 0.4.0 RC 4 notes

Highlights

  • Now using pgx
  • Supports Postgres 10 through Postgres 14

Now using Pgx!

This is the first version of PgDD using the pgx framework instead of the raw SQL method. This rewrite sets the stage for improved support across a variety of Postgres versions and functionality.

Blog post: PgDD extension moves to Pgx

Upgrade path

Upgrading from Raw SQL version of PgDD (v0.3) to the pgx version (v0.4.0) is done with DROP EXTENSION pgdd; CREATE EXTENSION pgdd;

If custom attributes were stored in the dd tables you will need to use pg_dump to export the data and reload after recreating the extension with pgx.

SELECT COUNT(*)
    FROM dd.meta_table
    WHERE s_name <> 'dd';
SELECT COUNT(*)
    FROM dd.meta_column
    WHERE s_name <> 'dd';
SELECT COUNT(*)
    FROM dd.meta_schema
    WHERE s_name <> 'dd';

⚠️ Other breaking changes

  • PKs changed from SERIAL to BIGINT via IDENTITY - #21

0.4.0.rc3

03 Oct 14:04
7e602e4
Compare
Choose a tag to compare
0.4.0.rc3 Pre-release
Pre-release

PgDD Version 0.4.0 RC 3 notes

Now using Pgx!

This is the first version of PgDD using the pgx framework instead of the raw SQL method. This rewrite sets the stage for improved support across a variety of Postgres versions and functionality.

Upgrade path

Upgrading from Raw SQL version of PgDD (v0.3) to the pgx version (v0.4.0) is done with DROP EXTENSION pgdd; CREATE EXTENSION pgdd;

If custom attributes were stored in the dd tables you will need to use pg_dump to export the data and reload after recreating the extension with pgx.

SELECT COUNT(*)
    FROM dd.meta_table
    WHERE s_name <> 'dd';
SELECT COUNT(*)
    FROM dd.meta_column
    WHERE s_name <> 'dd';
SELECT COUNT(*)
    FROM dd.meta_schema
    WHERE s_name <> 'dd';

⚠️ Other breaking changes

  • PKs changed from SERIAL to BIGINT via IDENTITY - #21

0.4.0.rc2

01 Oct 23:10
Compare
Choose a tag to compare
0.4.0.rc2 Pre-release
Pre-release

PgDD Version 0.4.0 RC 2 notes

Now using Pgx!

This is the first version of PgDD using the pgx framework instead of the raw SQL method. This rewrite sets the stage for improved support across a variety of Postgres versions and functionality.

Upgrade path

Upgrading from Raw SQL version of PgDD (v0.3) to the pgx version (v0.4.0) is done with DROP EXTENSION pgdd; CREATE EXTENSION pgdd;

If custom attributes were stored in the dd tables you will need to use pg_dump to export the data and reload after recreating the extension with pgx.

SELECT COUNT(*)
    FROM dd.meta_table
    WHERE s_name <> 'dd';
SELECT COUNT(*)
    FROM dd.meta_column
    WHERE s_name <> 'dd';
SELECT COUNT(*)
    FROM dd.meta_schema
    WHERE s_name <> 'dd';

0.4-rc1

21 Sep 01:12
Compare
Choose a tag to compare
0.4-rc1 Pre-release
Pre-release

PgDD Version 0.4 RC 1 Release notes

Now using Pgx!

This is the first version of PgDD using the pgx framework instead of the raw SQL method. This rewrite sets the stage for improved support across a variety of Postgres versions and functionality.

Update: Removed binaries. Packages were broken. :(

Version 0.3

20 Jul 22:35
Compare
Choose a tag to compare
  • Add system_object column to all views
  • Add view and function counts to dd.schemas view
  • Includes Dockerfile
  • Includes standalone SQL scripts for easier non-Extension installs