Skip to content

Releases: pgcentralfoundation/pgrx

v0.1.24

06 Oct 18:56
Compare
Choose a tag to compare

This is pgx v0.1.24. It is a follow-up to the v0.1.23 release which inadvertently broke shared memory support. This release fixes that.

Also note that this will be the last release in the 0.1.x series, as we are finalizing a v0.2.0 release which brings some breaking changes along with PostgreSQL 14 support.

v0.1.23

05 Oct 18:17
Compare
Choose a tag to compare

This is pgx v0.1.23. This is a soundness/safety release that fixes undefined behavior related to functions declared as #[pg_extern]. Primarily, it resolves issue #241.

v0.2.0-beta.1

25 Sep 02:00
d9c1db5
Compare
Choose a tag to compare
v0.2.0-beta.1 Pre-release
Pre-release

Features

  • The pgx SQL generation system has been rewritten! It now uses the proc macro system and has several breaking changes. Please refer to the migration guide below. (#165, #197)
  • The PostgreSQL uuid type is now supported! (#172)
  • cargo pgx test now accepts an optional testname. cargo pgx test specific::path works just like cargo test! (#186)
  • pgx-pg-sys now suggests you install rustfmt if you don't have it. (#193)
  • cargo pgx schema will now emit informational messages if extension Cargo.toml settings are not what is expected. (#209)
  • cargo pgx test now has a --workspace argument matching the equivalent on cargo test. (#169)

Other changes

  • fix: Marked several functions as unsafe as they had undefined behavior when passed invalid pointers. (#210, #216, #217, #223, #224, #226)
  • Type oids don't need to be looked up in functions that don't use them. (#168)
  • Added an aggregate example. (#187)
  • Updated many of our dependencies. (#191)
  • More documentation has been added to several macros and SQL generation related types. (#192, #158, #219)
  • An articles/ directory now exists in the repo and includes links to different articles written about pgx. (#198)
  • Document our MSRV (#157)
  • Fixed an accidental circular dependency in 0.2.0-beta.0 (unpublished).

Migration Guide

  1. Update your cargo-pgx: cargo install --force cargo-pgx --version 0.2.0-beta.0

  2. In your Cargo.toml, set crate-type to include "rlib" and profile.dev.lto to be "thin":

    [lib]
    crate-type = ["cdylib", "rlib"]
    
    [profile.dev]
    lto = "thin"
  3. Tell cargo-pgx to force update your .cargo/ and src/bin files it needs: cargo pgx schema -f

  4. Remove any sql/*.generated.sql files, as well as the load-order.txt.

  5. For each sql/*.sql remaining, insert extension_sql_file!("../sql/that_file.sql"); into your src/lib.rs

  6. If the files depend on entities which already exist, you might need to set a requires attribute:

    extension_sql_file!("../sql/that_file.sql", requires = [ dogs::parts::Floof, some_fn, ]);
  7. For any mod floof { fn boop() { todo!() } } style blocks you were using to infer schema name (making that function floof.boop), decorate the schema with #[pg_schema]:

    #[pg_schema]
    mod floof {
        fn boop() {
            todo!()
        }
    }
  8. For any functions have a custom sql block for (like below), update that to use pgxsql now:

    /// ```sql <-- Change this to `pgxsql`
    /// CREATE OR REPLACE FUNCTION  ....
    /// ```
    #[pg_extern]
    fn dot_dot_dot() { todo!() }
  9. Run cargo pgx schema again!

If you have any trouble, try running cargo pgx schema -v and investigating the output. We made sure to update the cargo doc output of pgx with updated usage for the various macros and derives, they might have some advice, too.

You can ask us questions via issues here or Discord if you get stuck.

Thanks!

Thanks to @JLockerman (from @timescale) & @kpumuk for contributions! Also thanks to our early testers @rustprooflabs and @comdiv.

v0.1.22

29 Aug 19:51
Compare
Choose a tag to compare

This is a minor update to pgx that adds support for FreeBSD (issue #179) and also uses CREATE EXTENSION .. CASCADE during cargo pgx test (issue #177).

v0.1.21

01 May 20:51
e12d8e8
Compare
Choose a tag to compare

pgx v0.1.21 is a minor feature release with the following features:

Changes

  • aarch64 support was added (#127)
  • add Nix flake (#124)
  • cargo-pgx pgx init does initdb (#123)
  • Improve handling of feature flags (#118)
  • Allow overriding function names and returning schema-qualified type (#117)
  • update dependencies (#122).
  • (docs) Add caveat about reconnecting after updating extension (#116)

Other Changes

  • (cargo-pgx) on init, lazy fetch version list (#119)

To upgrade, please run:

$ cargo install cargo-pgx --version 0.1.21

Also, make sure to update your Cargo.toml dependencies.

Thanks!

Thanks to @JLockerman from @timescale for the PRs. And of course special thanks to @Hoverbear for her work on this release!

v0.1.20

18 Mar 17:46
Compare
Choose a tag to compare

This is pgx v0.1.20. It is a minor feature release adding Rust bindings for the Postgres headers related to gin and gist indexes.

To upgrade, please run:

$ cargo install cargo-pgx

Also make sure to update your Cargo.toml dependencies.

Sponsor Our Work

Please consider sponsoring us so we can continue building cool things like pgx! Thank you for your consideration!

v0.1.19

12 Feb 18:02
Compare
Choose a tag to compare

This is pgx v0.1.19. It is a minor feature release which adds a new cargo pgx subcommand called dump-schema, which simply writes the entire generates extension schema.sql file to a specified directory.

To upgrade, please run:

$ cargo install cargo-pgx

Also make sure to update your Cargo.toml dependencies.

Sponsor Our Work

Please consider sponsoring us so we can continue building cool things like pgx! Thank you for your consideration!

v0.1.18

05 Feb 21:25
Compare
Choose a tag to compare

This is pgx v0.1.18. It is a minor feature release where cargo pgx init can now automatically discover all supported versions of Postgres from postgresql.org instead of hardcoding specific version numbers.

Additionally, PR #78 was implemented, which teaches pgx how to use cargo metadata to determine the target directory.

To upgrade, please run:

$ cargo install cargo-pgx

Also make sure to update your Cargo.toml dependencies.

If you'd like to update your pgx-managed Postgres installations to the latest point-releases, simply run cargo pgx init after doing the above.

Thanks!

Thanks for the PRs everyone! Keep 'em coming!

Sponsor Our Work

Please consider sponsoring us so we can continue building cool things like pgx! Thank you for your consideration!

v0.1.17

19 Jan 21:32
Compare
Choose a tag to compare

This is pgx v0.1.17. It fixes cargo pgx init (and its various argument forms) on MacOS.

To upgrade, please run:

$ cargo install cargo-pgx

Also make sure to update your Cargo.toml dependencies.

Sponsor Our Work

Please consider sponsoring us so we can continue building cool things like pgx! Thank you for your consideration!

v0.1.16

19 Jan 19:17
Compare
Choose a tag to compare

This is pgx v0.1.16. It adds a number of new headers to support Foreign Data Wrapper development.

To upgrade, please run:

$ cargo install cargo-pgx

Also make sure to update your Cargo.toml dependencies.

Sponsor Our Work

Please consider sponsoring us so we can continue building cool things like pgx! Thank you for your consideration!