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

chore: release supabase-wrappers v0.1.17 on crates.io #231

Merged
merged 1 commit into from
Jan 23, 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
25 changes: 12 additions & 13 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions supabase-wrappers/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "supabase-wrappers"
version = "0.1.16"
version = "0.1.17"
edition = "2021"
authors = ["Supabase Inc. https://supabase.com/"]
license = "Apache-2.0"
Expand All @@ -21,7 +21,7 @@ pg_test = []
[dependencies]
pgrx = { version = "=0.11.2", default-features = false }
thiserror = "1.0.48"
tokio = { version = "1.24", features = ["rt"] }
tokio = { version = "1.35", features = ["rt", "net"] }
uuid = { version = "1.2.2" }
supabase-wrappers-macros = { version = "0.1", path = "../supabase-wrappers-macros" }

Expand Down
5 changes: 4 additions & 1 deletion supabase-wrappers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,9 @@
- [Airtable](https://github.com/supabase/wrappers/tree/main/wrappers/src/fdw/airtable_fdw): A FDW for [Airtable](https://airtable.com/) API which supports data read only.
- [S3](https://github.com/supabase/wrappers/tree/main/wrappers/src/fdw/s3_fdw): A FDW for [AWS S3](https://aws.amazon.com/s3/) which supports data read only.
- [Logflare](https://github.com/supabase/wrappers/tree/main/wrappers/src/fdw/logflare_fdw): A FDW for [Logflare](https://logflare.app/) which supports data read only.
- [Auth0](https://github.com/supabase/wrappers/tree/main/wrappers/src/fdw/auth0_fdw): A FDW for [Auth0](https://auth0.com/).
- [SQL Server](https://github.com/supabase/wrappers/tree/main/wrappers/src/fdw/mssql_fdw): A FDW for [Microsoft SQL Server](https://www.microsoft.com/en-au/sql-server/) which supports data read only.
- [Redis](https://github.com/supabase/wrappers/tree/main/wrappers/src/fdw/redis_fdw): A FDW for [Redis](https://redis.io/) which supports data read only.

## Features

Expand Down Expand Up @@ -130,7 +133,7 @@ wrappers=# select * from hello;
## Limitations

- Windows is not supported, that limitation inherits from [pgrx](https://github.com/tcdi/pgrx).
- Currently only supports PostgreSQL v14 and v15.
- Currently only supports PostgreSQL v14, v15 and v16.
- Generated column is not supported.

## Contribution
Expand Down
2 changes: 1 addition & 1 deletion supabase-wrappers/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
//! ...
//!
//! [dependencies]
//! pgrx = "=0.10.2"
//! pgrx = "=0.11.2"
//! supabase-wrappers = "0.1"
//! ```
//!
Expand Down
Loading