Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade/vectorize #568

Merged
merged 2 commits into from
Feb 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion conductor/Cargo.lock

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

2 changes: 1 addition & 1 deletion tembo-operator/Cargo.lock

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

2 changes: 1 addition & 1 deletion tembo-operator/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "controller"
description = "Tembo Operator for Postgres"
version = "0.35.4"
version = "0.35.5"
edition = "2021"
default-run = "controller"
license = "Apache-2.0"
Expand Down
4 changes: 2 additions & 2 deletions tembo-operator/src/stacks/templates/machine_learning.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ trunk_installs:
- name: pgmq
version: 1.1.1
- name: vectorize
version: 0.10.0
version: 0.10.1
- name: pg_later
version: 0.1.0
- name: plpython3u
Expand Down Expand Up @@ -88,7 +88,7 @@ extensions:
locations:
- database: postgres
enabled: true
version: 0.10.0
version: 0.10.1
- name: pg_later
locations:
- database: postgres
Expand Down
4 changes: 2 additions & 2 deletions tembo-operator/src/stacks/templates/vectordb.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ trunk_installs:
- name: pgmq
version: 1.1.1
- name: vectorize
version: 0.10.0
version: 0.10.1
- name: pgvector
version: 0.6.0
- name: pg_stat_statements
Expand All @@ -78,7 +78,7 @@ extensions:
locations:
- database: postgres
enabled: true
version: 0.10.0
version: 0.10.1
- name: pg_stat_statements
locations:
- database: postgres
Expand Down
4 changes: 2 additions & 2 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.3.4"
version = "0.3.5"
authors = ["tembo.io"]
edition = "2021"
license = "Apache-2.0"
Expand All @@ -16,6 +16,6 @@ schemars = {version = "0.8.12", features = ["chrono"]}
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
serde = "1.0.152"
serde_yaml = "0.9.21"
tembo-controller = { package = "controller", version = "0.35.2" }
tembo-controller = { package = "controller", version = "0.35.4" }
tracing = "0.1"
utoipa = { version = "3", features = ["actix_extras", "chrono"] }
4 changes: 2 additions & 2 deletions tembo-stacks/src/apps/embeddings.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ trunk_installs:
- name: pgvector
version: 0.6.0
- name: vectorize
version: 0.10.0
version: 0.10.1
extensions:
- name: pg_cron
locations:
Expand All @@ -68,7 +68,7 @@ extensions:
locations:
- database: postgres
enabled: true
version: 0.10.0
version: 0.10.1
postgres_config:
- name: cron.host
value: /controller/run
Expand Down
Loading