diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d912349..c6d81aa 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -40,7 +40,7 @@ jobs: package_name: - pg-jsonschema pgrx_version: - - 0.12.5 + - 0.12.6 postgres: [14, 15, 16, 17] box: - { runner: ubuntu-20.04, arch: amd64 } diff --git a/Cargo.lock b/Cargo.lock index aaa8bdd..84d8716 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ # This file is automatically @generated by Cargo. # It is not intended for manual editing. -version = 3 +version = 4 [[package]] name = "addr2line" @@ -1076,7 +1076,7 @@ dependencies = [ [[package]] name = "pg_jsonschema" -version = "0.3.2" +version = "0.3.3" dependencies = [ "jsonschema", "pgrx", @@ -1087,9 +1087,9 @@ dependencies = [ [[package]] name = "pgrx" -version = "0.12.5" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "39464992d5b3cdda6b390efe51c27e849d2e93c1811e7610cf88f82d5b6a1a23" +checksum = "29fd8bef6f9f963a224b6d92033aa75581ecf01c8a815eb6dea0ad7260ac4541" dependencies = [ "atomic-traits", "bitflags 2.5.0", @@ -1111,9 +1111,9 @@ dependencies = [ [[package]] name = "pgrx-bindgen" -version = "0.12.5" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "84b03b74332a89c852486c0a53c33e049fb56d7911e251ddd05b7820b2963592" +checksum = "bb9cd617058bad2d78e31c55b58d2b003dcf039cba125b8e018c0f72562fb951" dependencies = [ "bindgen", "cc", @@ -1129,9 +1129,9 @@ dependencies = [ [[package]] name = "pgrx-macros" -version = "0.12.5" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "822e16af0dfc820dbd407b19538fde0def27c7d1913dea47a42c040c8bcf8b56" +checksum = "cbf074a98b59d1811b29c97e58d7ec5cab00445c7a5d7ed4153d746eb8572d55" dependencies = [ "pgrx-sql-entity-graph", "proc-macro2", @@ -1141,9 +1141,9 @@ dependencies = [ [[package]] name = "pgrx-pg-config" -version = "0.12.5" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "31061cc1a9f860d1302ba952ccf3b3d0eec59be94f0a32bcc8ba858fdd44a824" +checksum = "a82140784390a8f7f8a4f36acc6c04d177f59666012fa419eb03ab90201945ef" dependencies = [ "cargo_toml", "eyre", @@ -1159,9 +1159,9 @@ dependencies = [ [[package]] name = "pgrx-pg-sys" -version = "0.12.5" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "0225f2eeacf00702a705cbeb50252f4279169cd08501f73889b479d23a4250e1" +checksum = "6a0b49de7e28fdf7eb9ace7b736c2527330441efd35e55768fa26c637366d1c3" dependencies = [ "cee-scape", "libc", @@ -1174,9 +1174,9 @@ dependencies = [ [[package]] name = "pgrx-sql-entity-graph" -version = "0.12.5" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "f9c9dfdc4b31b381405b9735b7d674680b42584ea2ef89f3668a21be57a39310" +checksum = "dbf0cb2b4c8204678cf3dfc71bd0febe11dd4a6636b1971c3ee595d58d2db5f6" dependencies = [ "convert_case", "eyre", @@ -1190,9 +1190,9 @@ dependencies = [ [[package]] name = "pgrx-tests" -version = "0.12.5" +version = "0.12.6" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "992bb74e9cd178a55eab23f7a4b890a5427a411bbaf9588c86d435a3664eb4d2" +checksum = "207fa953e4634371ff00e20584e80b1faf0c381fb7bec14648ce9076494582de" dependencies = [ "clap-cargo", "eyre", diff --git a/Cargo.toml b/Cargo.toml index 8d38fb1..adc2be9 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pg_jsonschema" -version = "0.3.2" +version = "0.3.3" edition = "2021" [lib] @@ -21,13 +21,13 @@ pg17 = ["pgrx/pg17", "pgrx-tests/pg17" ] pg_test = [] [dependencies] -pgrx = "0.12.5" +pgrx = "0.12.6" serde = "1.0" serde_json = "1.0" jsonschema = {version = "0.17.1", default-features = false, features = []} [dev-dependencies] -pgrx-tests = "0.12.5" +pgrx-tests = "0.12.6" [profile.dev] panic = "unwind" diff --git a/dockerfiles/db/Dockerfile b/dockerfiles/db/Dockerfile index ae411e1..be6c579 100644 --- a/dockerfiles/db/Dockerfile +++ b/dockerfiles/db/Dockerfile @@ -27,7 +27,7 @@ RUN \ cargo --version # PGX -RUN cargo install cargo-pgrx --version 0.12.5 --locked +RUN cargo install cargo-pgrx --version 0.12.6 --locked RUN cargo pgrx init --pg16 $(which pg_config)