diff --git a/pkgs/development/tools/rust/cargo-pgrx/pinned.nix b/pkgs/development/tools/rust/cargo-pgrx/pinned.nix index d8c9b18a3576..a061dc275c1a 100644 --- a/pkgs/development/tools/rust/cargo-pgrx/pinned.nix +++ b/pkgs/development/tools/rust/cargo-pgrx/pinned.nix @@ -17,9 +17,16 @@ hash = "sha256-AjoBr+/sEPdzbD0wLUNVm2syCySkGaFOFQ70TST1U9w="; cargoHash = "sha256-95DHq5GLnAqb3bbKwwaeBeKEmkfRh81ZTRaJ7L59DAg="; }; + cargo-pgrx_0_17_0 = { version = "0.17.0"; hash = "sha256-Ld7m7ggxlf8FufpeiAE9qcu49X0SgX6XXHS6KIewGyA="; cargoHash = "sha256-hNj39YzJna8iZxnlrLz+uLduxaD+uvggQRM7ng3MN1k="; }; + + cargo-pgrx_0_18_0 = { + version = "0.18.0"; + hash = "sha256-sBezVDNnyqFQwvFm/CkhlY1zm7Ii2NQPeTfoUQu55e0="; + cargoHash = "sha256-/miOlhZ87fnKT1f+XVaWK4xAzHje8OGVlYl4iU0Sf34="; + }; } diff --git a/pkgs/servers/sql/postgresql/ext/pg_search.nix b/pkgs/servers/sql/postgresql/ext/pg_search.nix index 838355e67a38..7c4bd1b93378 100644 --- a/pkgs/servers/sql/postgresql/ext/pg_search.nix +++ b/pkgs/servers/sql/postgresql/ext/pg_search.nix @@ -1,6 +1,6 @@ { buildPgrxExtension, - cargo-pgrx_0_17_0, + cargo-pgrx_0_18_0, fetchFromGitHub, fetchurl, lib, @@ -11,16 +11,16 @@ buildPgrxExtension (finalAttrs: { pname = "pg_search"; - version = "0.23.0"; + version = "0.23.4"; src = fetchFromGitHub { owner = "paradedb"; repo = "paradedb"; tag = "v${finalAttrs.version}"; - hash = "sha256-CLzr62ALQIwKfWlYBTDich6xptwHgljybRUaZFNNH6s="; + hash = "sha256-4XvIzeZFLh9uge3oj7l4MXtEZDVprVxHfUpWuXqHeNY="; }; - cargoHash = "sha256-0BodKlduhK1s7Carnt0ZU9+XuLrFNaGlzS1WZNts9MA="; + cargoHash = "sha256-Mcpen2SSPcV9Ltb9TFM9QgVMruimCDEiYlRDaaaNgGU="; inherit postgresql; @@ -74,7 +74,7 @@ buildPgrxExtension (finalAttrs: { # To determinate which version of cargo-pgrx to use, consult the project's main Cargo.toml: # https://github.com/paradedb/paradedb/tree/${version}/Cargo.toml # In that file, check the version of pgrx and pgrx-tests under workspace.dependencies - cargo-pgrx = cargo-pgrx_0_17_0; + cargo-pgrx = cargo-pgrx_0_18_0; cargoPgrxFlags = [ "--package" diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix index f467d1b215a3..426b41d2a2fa 100644 --- a/pkgs/top-level/all-packages.nix +++ b/pkgs/top-level/all-packages.nix @@ -4466,6 +4466,7 @@ with pkgs; cargo-pgrx_0_16_0 cargo-pgrx_0_16_1 cargo-pgrx_0_17_0 + cargo-pgrx_0_18_0 cargo-pgrx ;