Skip to content

Commit

Permalink
Merge pull request #1146 from tcdi/prepare-v0.8.4
Browse files Browse the repository at this point in the history
Prepare v0.8.4
  • Loading branch information
eeeebbbbrrrr authored May 24, 2023
2 parents 92750b4 + 9b4c465 commit 0660850
Show file tree
Hide file tree
Showing 31 changed files with 546 additions and 339 deletions.
216 changes: 108 additions & 108 deletions Cargo.lock

Large diffs are not rendered by default.

18 changes: 9 additions & 9 deletions cargo-pgrx/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "cargo-pgrx"
version = "0.8.3"
version = "0.8.4"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Cargo subcommand for 'pgrx' to make Postgres extension development easy"
Expand All @@ -17,23 +17,23 @@ edition = "2021"
atty = "0.2.14"
cargo_metadata = "0.15.4"
cargo_toml = "0.15.2"
clap = { version = "4.2.5", features = [ "env", "suggestions", "cargo", "derive", "wrap_help" ] }
clap = { version = "4.3.0", features = [ "env", "suggestions", "cargo", "derive", "wrap_help" ] }
clap-cargo = { version = "0.10.0", features = [ "cargo_metadata" ] }
semver = "1.0.17"
owo-colors = { version = "3.5.0", features = [ "supports-colors" ] }
env_proxy = "0.4.1"
num_cpus = "1.15.0"
pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.8.3" }
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.8.3" }
pgrx-pg-config = { path = "../pgrx-pg-config", version = "=0.8.4" }
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.8.4" }
prettyplease = "0.1.25"
proc-macro2 = { version = "1.0.56", features = [ "span-locations" ] }
quote = "1.0.26"
proc-macro2 = { version = "1.0.58", features = [ "span-locations" ] }
quote = "1.0.27"
rayon = "1.7.0"
regex = "1.8.1"
regex = "1.8.2"
ureq = "2.6.2"
url = "2.3.1"
serde = { version = "1.0.160", features = [ "derive" ] }
serde_derive = "1.0.160"
serde = { version = "1.0.163", features = [ "derive" ] }
serde_derive = "1.0.163"
serde-xml-rs = "0.6.0"
syn = { version = "1.0.109", features = [ "extra-traits", "full", "fold", "parsing" ] }
unescape = "0.1.0"
Expand Down
4 changes: 2 additions & 2 deletions cargo-pgrx/src/templates/cargo_toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ pg15 = ["pgrx/pg15", "pgrx-tests/pg15" ]
pg_test = []

[dependencies]
pgrx = "=0.8.3"
pgrx = "=0.8.4"

[dev-dependencies]
pgrx-tests = "=0.8.3"
pgrx-tests = "=0.8.4"

[profile.dev]
panic = "unwind"
Expand Down
4 changes: 2 additions & 2 deletions nix/templates/default/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ pg15 = ["pgrx/pg15", "pgrx-tests/pg15" ]
pg_test = []

[dependencies]
pgrx = "=0.8.3"
pgrx = "=0.8.4"

[dev-dependencies]
pgrx-tests = "=0.8.3"
pgrx-tests = "=0.8.4"
tempfile = "3.2.0"
once_cell = "1.7.2"

Expand Down
2 changes: 1 addition & 1 deletion pgrx-examples/aggregate/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ bob = []

[dependencies]
pgrx = { path = "../../pgrx", default-features = false }
serde = "1.0.160"
serde = "1.0.163"

[dev-dependencies]
pgrx-tests = { path = "../../pgrx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgrx-examples/arrays/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pg_test = []

[dependencies]
pgrx = { path = "../../pgrx", default-features = false }
serde = "1.0.160"
serde = "1.0.163"

[dev-dependencies]
pgrx-tests = { path = "../../pgrx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgrx-examples/bytea/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pg_test = []

[dependencies]
pgrx = { path = "../../pgrx", default-features = false }
libflate = "1.3.0"
libflate = "1.4.0"

[dev-dependencies]
pgrx-tests = { path = "../../pgrx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgrx-examples/composite_type/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pg_test = []

[dependencies]
pgrx = { path = "../../pgrx", default-features = false }
serde = "1.0.160"
serde = "1.0.163"

[dev-dependencies]
pgrx-tests = { path = "../../pgrx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgrx-examples/custom_sql/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pg_test = []

[dependencies]
pgrx = { path = "../../pgrx", default-features = false }
serde = "1.0.160"
serde = "1.0.163"

[dev-dependencies]
pgrx-tests = { path = "../../pgrx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgrx-examples/custom_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ no-schema-generation = [ "pgrx/no-schema-generation", "pgrx-tests/no-schema-gene
[dependencies]
pgrx = { path = "../../pgrx", default-features = false }
maplit = "1.0.2"
serde = "1.0.160"
serde = "1.0.163"

[dev-dependencies]
pgrx-tests = { path = "../../pgrx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgrx-examples/nostd/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pg_test = []

[dependencies]
pgrx = { path = "../../pgrx", default-features = false }
serde = "1.0.160"
serde = "1.0.163"

[dev-dependencies]
pgrx-tests = { path = "../../pgrx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgrx-examples/operators/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pg_test = []

[dependencies]
pgrx = { path = "../../pgrx", default-features = false }
serde = "1.0.160"
serde = "1.0.163"

[dev-dependencies]
pgrx-tests = { path = "../../pgrx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgrx-examples/schemas/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ pg_test = []

[dependencies]
pgrx = { path = "../../pgrx", default-features = false }
serde = "1.0.160"
serde = "1.0.163"

[dev-dependencies]
pgrx-tests = { path = "../../pgrx-tests" }
Expand Down
2 changes: 1 addition & 1 deletion pgrx-examples/shmem/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pg_test = []
[dependencies]
heapless = "0.7.16"
pgrx = { path = "../../pgrx", default-features = false }
serde = { version = "1.0.160", features = [ "derive" ] }
serde = { version = "1.0.163", features = [ "derive" ] }

[dev-dependencies]
pgrx-tests = { path = "../../pgrx-tests" }
Expand Down
10 changes: 5 additions & 5 deletions pgrx-macros/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgrx-macros"
version = "0.8.3"
version = "0.8.4"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Proc Macros for 'pgrx'"
Expand All @@ -21,10 +21,10 @@ rustc-args = ["--cfg", "docsrs"]
no-schema-generation = ["pgrx-sql-entity-graph/no-schema-generation"]

[dependencies]
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.8.3" }
proc-macro2 = "1.0.56"
quote = "1.0.26"
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph", version = "=0.8.4" }
proc-macro2 = "1.0.58"
quote = "1.0.27"
syn = { version = "1.0.109", features = [ "extra-traits", "full", "fold", "parsing" ] }

[dev-dependencies]
serde = { version = "1.0.160", features = ["derive"] } # for Documentation examples
serde = { version = "1.0.163", features = ["derive"] } # for Documentation examples
8 changes: 4 additions & 4 deletions pgrx-pg-config/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgrx-pg-config"
version = "0.8.3"
version = "0.8.4"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "A Postgres pg_config wrapper for 'pgrx'"
Expand All @@ -17,9 +17,9 @@ dirs = "4.0.0"
eyre = "0.6.8"
pathsearch = "0.2.0"
owo-colors = "3.5.0"
serde = { version = "1.0.160", features = [ "derive" ] }
serde_derive = "1.0.160"
serde = { version = "1.0.163", features = [ "derive" ] }
serde_derive = "1.0.163"
serde_json = "1.0.96"
toml = "0.7.3"
toml = "0.7.4"
url = "2.3.1"
cargo_toml = "0.15.2"
14 changes: 7 additions & 7 deletions pgrx-pg-sys/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pgrx-pg-sys"
version = "0.8.3"
version = "0.8.4"
authors = ["ZomboDB, LLC <[email protected]>"]
license = "MIT"
description = "Generated Rust bindings for Postgres internals, for use with 'pgrx'"
Expand Down Expand Up @@ -29,18 +29,18 @@ rustdoc-args = ["--cfg", "docsrs"]

[dependencies]
memoffset = "0.8.0"
pgrx-macros = { path = "../pgrx-macros/", version = "=0.8.3" }
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph/", version = "=0.8.3" }
serde = { version = "1.0.160", features = [ "derive" ] } # impls on pub types
pgrx-macros = { path = "../pgrx-macros/", version = "=0.8.4" }
pgrx-sql-entity-graph = { path = "../pgrx-sql-entity-graph/", version = "=0.8.4" }
serde = { version = "1.0.163", features = [ "derive" ] } # impls on pub types
# polyfill until #![feature(strict_provenance)] stabilizes
sptr = "0.3"
libc = "0.2"

[build-dependencies]
bindgen = { version = "0.60.1", default-features = false, features = ["runtime"] }
pgrx-pg-config= { path = "../pgrx-pg-config/", version = "=0.8.3" }
proc-macro2 = "1.0.56"
quote = "1.0.26"
pgrx-pg-config= { path = "../pgrx-pg-config/", version = "=0.8.4" }
proc-macro2 = "1.0.58"
quote = "1.0.27"
syn = { version = "1.0.109", features = [ "extra-traits", "full", "fold", "parsing" ] }
eyre = "0.6.8"
shlex = "1.1.0" # shell lexing, also used by many of our deps
Expand Down
12 changes: 6 additions & 6 deletions pgrx-pg-sys/src/pg11.rs
Original file line number Diff line number Diff line change
Expand Up @@ -305,15 +305,15 @@ pub const MAXIMUM_ALIGNOF: u32 = 8;
pub const MEMSET_LOOP_LIMIT: u32 = 1024;
pub const PACKAGE_BUGREPORT: &[u8; 26usize] = b"[email protected]\0";
pub const PACKAGE_NAME: &[u8; 11usize] = b"PostgreSQL\0";
pub const PACKAGE_STRING: &[u8; 17usize] = b"PostgreSQL 11.19\0";
pub const PACKAGE_STRING: &[u8; 17usize] = b"PostgreSQL 11.20\0";
pub const PACKAGE_TARNAME: &[u8; 11usize] = b"postgresql\0";
pub const PACKAGE_URL: &[u8; 1usize] = b"\0";
pub const PACKAGE_VERSION: &[u8; 6usize] = b"11.19\0";
pub const PACKAGE_VERSION: &[u8; 6usize] = b"11.20\0";
pub const PG_KRB_SRVNAM: &[u8; 9usize] = b"postgres\0";
pub const PG_MAJORVERSION: &[u8; 3usize] = b"11\0";
pub const PG_VERSION: &[u8; 6usize] = b"11.19\0";
pub const PG_VERSION_NUM: u32 = 110019;
pub const PG_VERSION_STR : & [u8 ; 103usize] = b"PostgreSQL 11.19 on x86_64-pc-linux-gnu, compiled by gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0, 64-bit\0" ;
pub const PG_VERSION: &[u8; 6usize] = b"11.20\0";
pub const PG_VERSION_NUM: u32 = 110020;
pub const PG_VERSION_STR : & [u8 ; 103usize] = b"PostgreSQL 11.20 on x86_64-pc-linux-gnu, compiled by gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0, 64-bit\0" ;
pub const RELSEG_SIZE: u32 = 131072;
pub const SIZEOF_BOOL: u32 = 1;
pub const SIZEOF_LONG: u32 = 8;
Expand Down Expand Up @@ -1165,7 +1165,7 @@ pub const NI_DGRAM: u32 = 16;
pub const _PWD_H: u32 = 1;
pub const NSS_BUFLEN_PASSWD: u32 = 1024;
pub const PGINVALID_SOCKET: i32 = -1;
pub const PG_BACKEND_VERSIONSTR: &[u8; 29usize] = b"postgres (PostgreSQL) 11.19\n\0";
pub const PG_BACKEND_VERSIONSTR: &[u8; 29usize] = b"postgres (PostgreSQL) 11.20\n\0";
pub const EXE: &[u8; 1usize] = b"\0";
pub const DEVNULL: &[u8; 10usize] = b"/dev/null\0";
pub const PG_IOLBF: u32 = 1;
Expand Down
13 changes: 7 additions & 6 deletions pgrx-pg-sys/src/pg12.rs
Original file line number Diff line number Diff line change
Expand Up @@ -269,6 +269,7 @@ pub const HAVE_SYNC_FILE_RANGE: u32 = 1;
pub const HAVE_SYSLOG: u32 = 1;
pub const HAVE_SYS_EPOLL_H: u32 = 1;
pub const HAVE_SYS_IPC_H: u32 = 1;
pub const HAVE_SYS_PERSONALITY_H: u32 = 1;
pub const HAVE_SYS_PRCTL_H: u32 = 1;
pub const HAVE_SYS_RESOURCE_H: u32 = 1;
pub const HAVE_SYS_SELECT_H: u32 = 1;
Expand Down Expand Up @@ -312,15 +313,15 @@ pub const MAXIMUM_ALIGNOF: u32 = 8;
pub const MEMSET_LOOP_LIMIT: u32 = 1024;
pub const PACKAGE_BUGREPORT: &[u8; 32usize] = b"[email protected]\0";
pub const PACKAGE_NAME: &[u8; 11usize] = b"PostgreSQL\0";
pub const PACKAGE_STRING: &[u8; 17usize] = b"PostgreSQL 12.14\0";
pub const PACKAGE_STRING: &[u8; 17usize] = b"PostgreSQL 12.15\0";
pub const PACKAGE_TARNAME: &[u8; 11usize] = b"postgresql\0";
pub const PACKAGE_URL: &[u8; 1usize] = b"\0";
pub const PACKAGE_VERSION: &[u8; 6usize] = b"12.14\0";
pub const PACKAGE_VERSION: &[u8; 6usize] = b"12.15\0";
pub const PG_KRB_SRVNAM: &[u8; 9usize] = b"postgres\0";
pub const PG_MAJORVERSION: &[u8; 3usize] = b"12\0";
pub const PG_VERSION: &[u8; 6usize] = b"12.14\0";
pub const PG_VERSION_NUM: u32 = 120014;
pub const PG_VERSION_STR : & [u8 ; 103usize] = b"PostgreSQL 12.14 on x86_64-pc-linux-gnu, compiled by gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0, 64-bit\0" ;
pub const PG_VERSION: &[u8; 6usize] = b"12.15\0";
pub const PG_VERSION_NUM: u32 = 120015;
pub const PG_VERSION_STR : & [u8 ; 103usize] = b"PostgreSQL 12.15 on x86_64-pc-linux-gnu, compiled by gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0, 64-bit\0" ;
pub const RELSEG_SIZE: u32 = 131072;
pub const SIZEOF_BOOL: u32 = 1;
pub const SIZEOF_LONG: u32 = 8;
Expand Down Expand Up @@ -1172,7 +1173,7 @@ pub const NI_DGRAM: u32 = 16;
pub const _PWD_H: u32 = 1;
pub const NSS_BUFLEN_PASSWD: u32 = 1024;
pub const PGINVALID_SOCKET: i32 = -1;
pub const PG_BACKEND_VERSIONSTR: &[u8; 29usize] = b"postgres (PostgreSQL) 12.14\n\0";
pub const PG_BACKEND_VERSIONSTR: &[u8; 29usize] = b"postgres (PostgreSQL) 12.15\n\0";
pub const EXE: &[u8; 1usize] = b"\0";
pub const DEVNULL: &[u8; 10usize] = b"/dev/null\0";
pub const USE_REPL_SNPRINTF: u32 = 1;
Expand Down
17 changes: 9 additions & 8 deletions pgrx-pg-sys/src/pg13.rs
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ pub const ALIGNOF_LONG: u32 = 8;
pub const ALIGNOF_PG_INT128_TYPE: u32 = 16;
pub const ALIGNOF_SHORT: u32 = 2;
pub const BLCKSZ: u32 = 8192;
pub const CONFIGURE_ARGS : & [u8 ; 109usize] = b" '--prefix=/home/zombodb/.pgrx/13.10/pgrx-install' '--with-pgport=28813' '--enable-debug' '--enable-cassert'\0" ;
pub const CONFIGURE_ARGS : & [u8 ; 109usize] = b" '--prefix=/home/zombodb/.pgrx/13.11/pgrx-install' '--with-pgport=28813' '--enable-debug' '--enable-cassert'\0" ;
pub const DEF_PGPORT: u32 = 28813;
pub const DEF_PGPORT_STR: &[u8; 6usize] = b"28813\0";
pub const ENABLE_THREAD_SAFETY: u32 = 1;
Expand Down Expand Up @@ -270,6 +270,7 @@ pub const HAVE_SYNC_FILE_RANGE: u32 = 1;
pub const HAVE_SYSLOG: u32 = 1;
pub const HAVE_SYS_EPOLL_H: u32 = 1;
pub const HAVE_SYS_IPC_H: u32 = 1;
pub const HAVE_SYS_PERSONALITY_H: u32 = 1;
pub const HAVE_SYS_PRCTL_H: u32 = 1;
pub const HAVE_SYS_RESOURCE_H: u32 = 1;
pub const HAVE_SYS_SELECT_H: u32 = 1;
Expand Down Expand Up @@ -304,18 +305,18 @@ pub const MAXIMUM_ALIGNOF: u32 = 8;
pub const MEMSET_LOOP_LIMIT: u32 = 1024;
pub const PACKAGE_BUGREPORT: &[u8; 32usize] = b"[email protected]\0";
pub const PACKAGE_NAME: &[u8; 11usize] = b"PostgreSQL\0";
pub const PACKAGE_STRING: &[u8; 17usize] = b"PostgreSQL 13.10\0";
pub const PACKAGE_STRING: &[u8; 17usize] = b"PostgreSQL 13.11\0";
pub const PACKAGE_TARNAME: &[u8; 11usize] = b"postgresql\0";
pub const PACKAGE_URL: &[u8; 28usize] = b"https://www.postgresql.org/\0";
pub const PACKAGE_VERSION: &[u8; 6usize] = b"13.10\0";
pub const PACKAGE_VERSION: &[u8; 6usize] = b"13.11\0";
pub const PG_KRB_SRVNAM: &[u8; 9usize] = b"postgres\0";
pub const PG_MAJORVERSION: &[u8; 3usize] = b"13\0";
pub const PG_MAJORVERSION_NUM: u32 = 13;
pub const PG_MINORVERSION_NUM: u32 = 10;
pub const PG_MINORVERSION_NUM: u32 = 11;
pub const PG_USE_STDBOOL: u32 = 1;
pub const PG_VERSION: &[u8; 6usize] = b"13.10\0";
pub const PG_VERSION_NUM: u32 = 130010;
pub const PG_VERSION_STR : & [u8 ; 103usize] = b"PostgreSQL 13.10 on x86_64-pc-linux-gnu, compiled by gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0, 64-bit\0" ;
pub const PG_VERSION: &[u8; 6usize] = b"13.11\0";
pub const PG_VERSION_NUM: u32 = 130011;
pub const PG_VERSION_STR : & [u8 ; 103usize] = b"PostgreSQL 13.11 on x86_64-pc-linux-gnu, compiled by gcc (Ubuntu 11.3.0-1ubuntu1~22.04) 11.3.0, 64-bit\0" ;
pub const RELSEG_SIZE: u32 = 131072;
pub const SIZEOF_BOOL: u32 = 1;
pub const SIZEOF_LONG: u32 = 8;
Expand Down Expand Up @@ -1166,7 +1167,7 @@ pub const NI_DGRAM: u32 = 16;
pub const _PWD_H: u32 = 1;
pub const NSS_BUFLEN_PASSWD: u32 = 1024;
pub const PGINVALID_SOCKET: i32 = -1;
pub const PG_BACKEND_VERSIONSTR: &[u8; 29usize] = b"postgres (PostgreSQL) 13.10\n\0";
pub const PG_BACKEND_VERSIONSTR: &[u8; 29usize] = b"postgres (PostgreSQL) 13.11\n\0";
pub const EXE: &[u8; 1usize] = b"\0";
pub const DEVNULL: &[u8; 10usize] = b"/dev/null\0";
pub const USE_REPL_SNPRINTF: u32 = 1;
Expand Down
Loading

0 comments on commit 0660850

Please sign in to comment.