Skip to content

Commit

Permalink
update pg_search to 0.13.0 (#1060)
Browse files Browse the repository at this point in the history
  • Loading branch information
nhudson authored Dec 2, 2024
1 parent 5b154ff commit 764dce5
Show file tree
Hide file tree
Showing 3 changed files with 22 additions and 19 deletions.
6 changes: 3 additions & 3 deletions tembo-stacks/Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

11 changes: 7 additions & 4 deletions tembo-stacks/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "tembo-stacks"
description = "Tembo Stacks for Postgres"
version = "0.19.0"
version = "0.20.0"
authors = ["tembo.io"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -18,15 +18,18 @@ path = "src/main.rs"
anyhow = "1.0.71"
clap = { version = "4.5.4", features = ["derive"] }
futures = "0.3.28"
k8s-openapi = { version = "0.18.0", features = ["v1_25", "schemars"], default-features = false } # This version has to be in line with the same version we use in the controller
k8s-openapi = { version = "0.18.0", features = [
"v1_25",
"schemars",
], default-features = false } # This version has to be in line with the same version we use in the controller
lazy_static = "1.4.0"
schemars = {version = "0.8.12", features = ["chrono"]}
schemars = { version = "0.8.12", features = ["chrono"] }
serde = "1.0.152"
serde_json = "1.0.114"
serde_yaml = "0.9.21"
strum = "0.26.2"
strum_macros = "0.26.2"
tembo-controller = { package = "controller", version = "0.51.0" }
tembo-controller = { package = "controller", version = "0.52.0" }
tracing = "0.1"
utoipa = { version = "3", features = ["actix_extras", "chrono"] }

Expand Down
24 changes: 12 additions & 12 deletions tembo-stacks/src/stacks/specs/paradedb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ postgres_config:
- name: shared_preload_libraries
value: pg_stat_statements,pg_search,pg_analytics,pg_cron
- name: track_io_timing
value: 'on'
value: "on"
- name: wal_level
value: logical
trunk_installs:
Expand All @@ -33,7 +33,7 @@ trunk_installs:
- name: pg_analytics
version: 0.2.1
- name: pg_search
version: 0.11.1
version: 0.13.0
- name: pg_cron
version: 1.6.2
- name: pgvector
Expand All @@ -50,25 +50,25 @@ extensions:
locations:
- database: postgres
enabled: true
version: 0.11.1
version: 0.13.0
- name: vector
locations:
- database: postgres
enabled: true
version: 0.7.4
- name: pg_cron
locations:
- database: postgres
enabled: true
version: 1.6.2
- database: postgres
enabled: true
version: 1.6.2
- name: pg_analytics
description: pg_analytics
locations:
- database: postgres
enabled: true
version: 0.2.1
- database: postgres
enabled: true
version: 0.2.1
- name: pg_ivm
locations:
- database: postgres
enabled: true
version: 1.9
- database: postgres
enabled: true
version: 1.9

0 comments on commit 764dce5

Please sign in to comment.