From bb006ec7bdab24192c84f093ce3f92969aeb7279 Mon Sep 17 00:00:00 2001 From: Benjie Gillam Date: Fri, 27 Sep 2024 17:04:42 +0100 Subject: [PATCH] docs(changeset): Fix behavior inheritance especially around functions incorrectly inheriting from their underlying codecs, bugs in unlogged/temp table behavior, and incorrect skipping of generating table types. You may find after this change you have fields appearing in your schema that were not present before, typically these will represent database functions where you `@omit`'d the underlying table - omitting the table should not prevent a function from accessing it. Further, fix behavior of `@omit read` emulation to add `-connection -list -array -single`. --- .changeset/chilly-cups-exercise.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .changeset/chilly-cups-exercise.md diff --git a/.changeset/chilly-cups-exercise.md b/.changeset/chilly-cups-exercise.md new file mode 100644 index 000000000..706734021 --- /dev/null +++ b/.changeset/chilly-cups-exercise.md @@ -0,0 +1,12 @@ +--- +"graphile-build-pg": patch +"postgraphile": patch +--- + +Fix behavior inheritance especially around functions incorrectly inheriting from +their underlying codecs, bugs in unlogged/temp table behavior, and incorrect +skipping of generating table types. You may find after this change you have +fields appearing in your schema that were not present before, typically these +will represent database functions where you `@omit`'d the underlying table - +omitting the table should not prevent a function from accessing it. Further, fix +behavior of `@omit read` emulation to add `-connection -list -array -single`.