From b867f43512754f3dad51ee6b89cd5c7c613a2fdb Mon Sep 17 00:00:00 2001 From: shhnwz Date: Thu, 5 Sep 2024 19:56:56 +0530 Subject: [PATCH 1/3] Fix pg_search version to v0.7.6 --- contrib/pg_search/Trunk.toml | 2 +- .../migrations/20240807190128_add-missing-shared-libraries.sql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/contrib/pg_search/Trunk.toml b/contrib/pg_search/Trunk.toml index 537768f0..07ee8f42 100644 --- a/contrib/pg_search/Trunk.toml +++ b/contrib/pg_search/Trunk.toml @@ -1,6 +1,6 @@ [extension] name = "pg_search" -version = "0.7.3" +version = "0.7.6" repository = "https://github.com/paradedb/paradedb/tree/dev/pg_search" license = "AGPL-3.0" description = "Full text search over heap tables using the BM25 algorithm." diff --git a/registry/migrations/20240807190128_add-missing-shared-libraries.sql b/registry/migrations/20240807190128_add-missing-shared-libraries.sql index e191a7f4..9497ea94 100644 --- a/registry/migrations/20240807190128_add-missing-shared-libraries.sql +++ b/registry/migrations/20240807190128_add-missing-shared-libraries.sql @@ -3,7 +3,7 @@ WITH trunk_project_cte AS ( SELECT id FROM v1.trunk_project_versions WHERE trunk_project_name = 'pg_search' - AND version = '0.7.3' + AND version = '0.7.6' ), extension_version_cte AS ( SELECT ev.id From eb9b1a2d1653600c2b9e595ef27ef164cd6c1658 Mon Sep 17 00:00:00 2001 From: shhnwz Date: Thu, 5 Sep 2024 21:58:56 +0530 Subject: [PATCH 2/3] rust version change to 1.80 --- contrib/pg_search/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contrib/pg_search/Dockerfile b/contrib/pg_search/Dockerfile index c7057476..177bd576 100644 --- a/contrib/pg_search/Dockerfile +++ b/contrib/pg_search/Dockerfile @@ -12,7 +12,7 @@ RUN apt-get update && apt-get install -y \ RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh -s -- -y # Set default Rust version -RUN /root/.cargo/bin/rustup default 1.75.0-x86_64-unknown-linux-gnu +RUN /root/.cargo/bin/rustup default 1.80.0-x86_64-unknown-linux-gnu ARG PG_VERSION=15 From 0d8972593b15a791cf7c0ce6a8be7969ea00e6a0 Mon Sep 17 00:00:00 2001 From: shhnwz Date: Thu, 5 Sep 2024 22:47:43 +0530 Subject: [PATCH 3/3] undo pg_search version bump --- .../migrations/20240807190128_add-missing-shared-libraries.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/registry/migrations/20240807190128_add-missing-shared-libraries.sql b/registry/migrations/20240807190128_add-missing-shared-libraries.sql index 9497ea94..e191a7f4 100644 --- a/registry/migrations/20240807190128_add-missing-shared-libraries.sql +++ b/registry/migrations/20240807190128_add-missing-shared-libraries.sql @@ -3,7 +3,7 @@ WITH trunk_project_cte AS ( SELECT id FROM v1.trunk_project_versions WHERE trunk_project_name = 'pg_search' - AND version = '0.7.6' + AND version = '0.7.3' ), extension_version_cte AS ( SELECT ev.id