-
-
Notifications
You must be signed in to change notification settings - Fork 255
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1146 from tcdi/prepare-v0.8.4
Prepare v0.8.4
- Loading branch information
Showing
31 changed files
with
546 additions
and
339 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
|
@@ -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" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'" | ||
|
@@ -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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'" | ||
|
@@ -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" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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'" | ||
|
@@ -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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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; | ||
|
@@ -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; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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; | ||
|
@@ -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; | ||
|
@@ -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; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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; | ||
|
@@ -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; | ||
|
@@ -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; | ||
|
@@ -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; | ||
|
Oops, something went wrong.