Skip to content

Commit

Permalink
Update for Postgres 17 (#20)
Browse files Browse the repository at this point in the history
Upgrade supabase-wrappers to v0.1.20 in order to support Postgres 17.
Update other dependencies while we're at it.
  • Loading branch information
theory committed Dec 20, 2024
1 parent 71672f6 commit 75c0539
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 39 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/extension_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
name: Run linters
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
- name: Install Rust minimal nightly with clippy and rustfmt
uses: actions-rs/toolchain@v1
with:
Expand Down Expand Up @@ -83,7 +83,7 @@ jobs:
runs-on: ubuntu-22.04
strategy:
matrix:
pg: [ 14, 15, 16 ]
pg: [ 14, 15, 16, 17 ]
steps:
- uses: actions/checkout@v4
- name: Install Rust stable toolchain
Expand Down
60 changes: 30 additions & 30 deletions Cargo.lock

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

11 changes: 6 additions & 5 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "orb_fdw"
version = "0.13.2"
version = "0.13.3"
edition = "2021"
publish = false

Expand All @@ -12,20 +12,21 @@ name = "pgrx_embed_orb_fdw"
path = "./src/bin/pgrx_embed.rs"

[features]
default = ["pg16"]
default = ["pg17"]
pg14 = ["pgrx/pg14", "pgrx-tests/pg14", "supabase-wrappers/pg14"]
pg15 = ["pgrx/pg15", "pgrx-tests/pg15", "supabase-wrappers/pg15"]
pg16 = ["pgrx/pg16", "pgrx-tests/pg16", "supabase-wrappers/pg16"]
pg17 = ["pgrx/pg17", "pgrx-tests/pg17", "supabase-wrappers/pg17"]
pg_test = []

[dependencies]
pgrx = "=0.12.6"
orb-billing = "0.11.0"
supabase-wrappers = { version = "0.1.18", default-features = false }
supabase-wrappers = { version = "0.1.20", default-features = false }
tokio = { version = "1", features = ["full"] }
serde_json = "1.0"
thiserror = "1.0.48"
futures = "0.3.28"
thiserror = "1.0.69"
futures = "0.3.31"

[dev-dependencies]
pgrx-tests = "=0.12.6"
Expand Down
4 changes: 2 additions & 2 deletions Trunk.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ description = "Postgres Foreign Data Wrapper for withorb.com Backend API"
homepage = "https://github.com/tembo-io/orb_fdw"
documentation = "https://github.com/tembo-io/orb_fdw"
categories = ["connectors"]
version = "0.13.2"
version = "0.13.3"

[build]
postgres_version = "15"
postgres_version = "17"
platform = "linux/amd64"
Empty file added sql/orb_fdw--0.13.2--0.13.3.sql
Empty file.

0 comments on commit 75c0539

Please sign in to comment.