From f105e22258e6ca22a94b7523c0f349c78cd41fbd Mon Sep 17 00:00:00 2001 From: Utkarash Singh Date: Thu, 7 May 2026 12:14:55 +0100 Subject: [PATCH] chore: bump version to 1.6.1 --- Cargo.lock | 2 +- Cargo.toml | 2 +- docs/changelog.md | 4 ++++ 3 files changed, 6 insertions(+), 2 deletions(-) diff --git a/Cargo.lock b/Cargo.lock index 891b1f37..b9eaaa5d 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1133,7 +1133,7 @@ dependencies = [ [[package]] name = "pg_graphql" -version = "1.6.0" +version = "1.6.1" dependencies = [ "base64 0.13.1", "bimap", diff --git a/Cargo.toml b/Cargo.toml index b61a175b..1cb06b41 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "pg_graphql" -version = "1.6.0" +version = "1.6.1" edition = "2024" [lib] diff --git a/docs/changelog.md b/docs/changelog.md index d6227ffd..8258d74a 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -131,4 +131,8 @@ - feature: Add support for single record queries by primary key - **breaking**: GraphQL introspection is now disabled by default. Opt in per schema with `comment on schema is e'@graphql({"introspection": true})'`. After upgrading to this version, tools that rely on introspection (GraphiQL, codegen, Apollo DevTools, Relay compiler) will see either `Unknown field "__schema" on type Query` errors or types will be filtered out on disabled schemas. Non-introspection queries and mutations are unaffected. See [Introspection](configuration.md#introspection) for details. +## 1.6.1 + +- bugfix: Remove double NON_NULL wrapping on byPk argument types + ## master