Skip to content

Commit

Permalink
Merge pull request #401 from supabase/or/1.3.0
Browse files Browse the repository at this point in the history
v1.3.0 + bump pgrx version
  • Loading branch information
olirice authored Aug 1, 2023
2 parents ec3f7d5 + 0664c73 commit 4ac0ca1
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
package_name:
- pg-graphql
pgrx_version:
- 0.9.7
- 0.9.8
postgres: [14, 15]
box:
- { runner: ubuntu-20.04, arch: amd64 }
Expand Down
27 changes: 14 additions & 13 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pg_graphql"
version = "1.2.3"
version = "1.3.0"
edition = "2021"

[lib]
Expand All @@ -13,7 +13,7 @@ pg15 = ["pgrx/pg15", "pgrx-tests/pg15"]
pg_test = []

[dependencies]
pgrx = "=0.9.7"
pgrx = "=0.9.8"
graphql-parser = "0.4"
serde = { version = "1.0", features = ["rc"] }
serde_json = "1.0"
Expand All @@ -27,7 +27,7 @@ lazy_static = "1"
bimap = { version = "0.6.3", features = ["serde"] }

[dev-dependencies]
pgrx-tests = "=0.9.7"
pgrx-tests = "=0.9.8"

[profile.dev]
panic = "unwind"
Expand Down
2 changes: 1 addition & 1 deletion dockerfiles/db/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ RUN \
cargo --version

# PGRX
RUN cargo install cargo-pgrx --version 0.9.7 --locked
RUN cargo install cargo-pgrx --version 0.9.8 --locked

RUN cargo pgrx init --pg${PG_MAJOR} $(which pg_config)

Expand Down
4 changes: 3 additions & 1 deletion docs/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,10 @@
- bugfix: remove duplicate Enum registration
- bugfix: foreign keys on non-null columns produce non-null GraphQL relationships

## master
## 1.3.0
- rename enum variants with comment directive `@graphql({"mappings": "sql-value": "graphql_value""})`
- bugfix: query with more than 50 fields fails
- bugfix: @skip and @include directives missing from introspection schema
- feature: Support for `and`, `or` and `not` operators in filters

## master

0 comments on commit 4ac0ca1

Please sign in to comment.