diff --git a/.changeset/eleven-beds-help.md b/.changeset/eleven-beds-help.md deleted file mode 100644 index 19ae11e15f..0000000000 --- a/.changeset/eleven-beds-help.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"@dataplan/pg": patch -"postgraphile": patch ---- - -In development, `$pgSelect.orderBy(...)` now has some runtime validation rather -than relying solely on types. diff --git a/.changeset/four-cats-notice.md b/.changeset/four-cats-notice.md deleted file mode 100644 index 533b3193f5..0000000000 --- a/.changeset/four-cats-notice.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"graphile-utils": patch -"postgraphile": patch ---- - -Fix bug in `addPgTableOrderBy` that meant that an override for the `nullable` -parameter would be ignored. diff --git a/.changeset/large-mails-allow.md b/.changeset/large-mails-allow.md deleted file mode 100644 index 569bf1dbab..0000000000 --- a/.changeset/large-mails-allow.md +++ /dev/null @@ -1,6 +0,0 @@ ---- -"graphile-build-pg": patch -"postgraphile": patch ---- - -Introduce build.getPgCodecByDatabaseName helper. diff --git a/.changeset/shaky-clowns-laugh.md b/.changeset/shaky-clowns-laugh.md deleted file mode 100644 index 6f2d1db9ee..0000000000 --- a/.changeset/shaky-clowns-laugh.md +++ /dev/null @@ -1,7 +0,0 @@ ---- -"graphile-build-pg": patch -"postgraphile": patch ---- - -Turn getGraphQLTypeByPgCodec situations into a string union with central -registry so it can be autocompleted. diff --git a/.changeset/tired-guests-help.md b/.changeset/tired-guests-help.md deleted file mode 100644 index 1831f37cce..0000000000 --- a/.changeset/tired-guests-help.md +++ /dev/null @@ -1,5 +0,0 @@ ---- -"@dataplan/pg": patch ---- - -Throw an error when you don't pass a resource to pgSelect diff --git a/grafast/dataplan-pg/CHANGELOG.md b/grafast/dataplan-pg/CHANGELOG.md index dd20f31a86..de03c08e44 100644 --- a/grafast/dataplan-pg/CHANGELOG.md +++ b/grafast/dataplan-pg/CHANGELOG.md @@ -1,5 +1,20 @@ # @dataplan/pg +## 1.1.1 + +### Patch Changes + +- [#3107](https://github.com/graphile/crystal/pull/3107) + [`a56df3a`](https://github.com/graphile/crystal/commit/a56df3ae4abe5b79b7f81f641f9a75eda3c288a0) + Thanks [@benjie](https://github.com/benjie)! - In development, + `$pgSelect.orderBy(...)` now has some runtime validation rather than relying + solely on types. + +- [#3107](https://github.com/graphile/crystal/pull/3107) + [`5d0f9bc`](https://github.com/graphile/crystal/commit/5d0f9bc3a0e0dcfb05c5377e29973c5a0d253c7e) + Thanks [@benjie](https://github.com/benjie)! - Throw an error when you don't + pass a resource to pgSelect + ## 1.1.0 ### Minor Changes diff --git a/grafast/dataplan-pg/package.json b/grafast/dataplan-pg/package.json index 3d52a8f3b5..f9d2a232c6 100644 --- a/grafast/dataplan-pg/package.json +++ b/grafast/dataplan-pg/package.json @@ -1,6 +1,6 @@ { "name": "@dataplan/pg", - "version": "1.1.0", + "version": "1.1.1", "description": "PostgreSQL step classes for Grafast", "type": "commonjs", "main": "dist/index.js", diff --git a/grafast/dataplan-pg/src/version.ts b/grafast/dataplan-pg/src/version.ts index 0184d2e08f..d5deb0ef05 100644 --- a/grafast/dataplan-pg/src/version.ts +++ b/grafast/dataplan-pg/src/version.ts @@ -1,2 +1,2 @@ // This file is autogenerated by /scripts/postversion.mjs -export const version = "1.1.0"; +export const version = "1.1.1"; diff --git a/graphile-build/graphile-build-pg/CHANGELOG.md b/graphile-build/graphile-build-pg/CHANGELOG.md index 177cda290e..aceaf8c1d1 100644 --- a/graphile-build/graphile-build-pg/CHANGELOG.md +++ b/graphile-build/graphile-build-pg/CHANGELOG.md @@ -1,5 +1,20 @@ # graphile-build-pg +## 5.1.1 + +### Patch Changes + +- [#3105](https://github.com/graphile/crystal/pull/3105) + [`0b00895`](https://github.com/graphile/crystal/commit/0b00895e7fcbb905e8232235e7883b9cc8c12548) + Thanks [@benjie](https://github.com/benjie)! - Introduce + build.getPgCodecByDatabaseName helper. + +- [#3108](https://github.com/graphile/crystal/pull/3108) + [`c67c6ef`](https://github.com/graphile/crystal/commit/c67c6ef8a5312f6a217322dc0c013dc4b9c0dd30) + Thanks [@benjaie](https://github.com/benjaie)! - Turn getGraphQLTypeByPgCodec + situations into a string union with central registry so it can be + autocompleted. + ## 5.1.0 ### Minor Changes diff --git a/graphile-build/graphile-build-pg/package.json b/graphile-build/graphile-build-pg/package.json index 074bf4482a..ccba7ce265 100644 --- a/graphile-build/graphile-build-pg/package.json +++ b/graphile-build/graphile-build-pg/package.json @@ -1,6 +1,6 @@ { "name": "graphile-build-pg", - "version": "5.1.0", + "version": "5.1.1", "description": "PostgreSQL plugins for Graphile Build - build a supercharged GraphQL schema by reflection over a PostgreSQL database and executed by Grafast.", "type": "commonjs", "main": "./dist/index.js", diff --git a/graphile-build/graphile-build-pg/src/version.ts b/graphile-build/graphile-build-pg/src/version.ts index 9a4f8cb2e2..7f724da978 100644 --- a/graphile-build/graphile-build-pg/src/version.ts +++ b/graphile-build/graphile-build-pg/src/version.ts @@ -1,2 +1,2 @@ // This file is autogenerated by /scripts/postversion.mjs -export const version = "5.1.0"; +export const version = "5.1.1"; diff --git a/graphile-build/graphile-utils/CHANGELOG.md b/graphile-build/graphile-utils/CHANGELOG.md index 7c5c3ec406..aedb81a19f 100644 --- a/graphile-build/graphile-utils/CHANGELOG.md +++ b/graphile-build/graphile-utils/CHANGELOG.md @@ -1,5 +1,14 @@ # graphile-utils +## 5.0.3 + +### Patch Changes + +- [#3107](https://github.com/graphile/crystal/pull/3107) + [`dca7492`](https://github.com/graphile/crystal/commit/dca74929c1813119cb5d729a4cc18912e12cdd26) + Thanks [@benjie](https://github.com/benjie)! - Fix bug in `addPgTableOrderBy` + that meant that an override for the `nullable` parameter would be ignored. + ## 5.0.2 ### Patch Changes diff --git a/graphile-build/graphile-utils/package.json b/graphile-build/graphile-utils/package.json index 3913bf2dc5..75b2a137b0 100644 --- a/graphile-build/graphile-utils/package.json +++ b/graphile-build/graphile-utils/package.json @@ -1,6 +1,6 @@ { "name": "graphile-utils", - "version": "5.0.2", + "version": "5.0.3", "description": "Utilities to help with building graphile-build plugins", "type": "commonjs", "main": "dist/index.js", diff --git a/postgraphile/postgraphile/CHANGELOG.md b/postgraphile/postgraphile/CHANGELOG.md index f499a26e59..ed84f59bc8 100644 --- a/postgraphile/postgraphile/CHANGELOG.md +++ b/postgraphile/postgraphile/CHANGELOG.md @@ -1,5 +1,40 @@ # postgraphile +## 5.1.1 + +### Patch Changes + +- [#3107](https://github.com/graphile/crystal/pull/3107) + [`a56df3a`](https://github.com/graphile/crystal/commit/a56df3ae4abe5b79b7f81f641f9a75eda3c288a0) + Thanks [@benjie](https://github.com/benjie)! - In development, + `$pgSelect.orderBy(...)` now has some runtime validation rather than relying + solely on types. + +- [#3107](https://github.com/graphile/crystal/pull/3107) + [`dca7492`](https://github.com/graphile/crystal/commit/dca74929c1813119cb5d729a4cc18912e12cdd26) + Thanks [@benjie](https://github.com/benjie)! - Fix bug in `addPgTableOrderBy` + that meant that an override for the `nullable` parameter would be ignored. + +- [#3105](https://github.com/graphile/crystal/pull/3105) + [`0b00895`](https://github.com/graphile/crystal/commit/0b00895e7fcbb905e8232235e7883b9cc8c12548) + Thanks [@benjie](https://github.com/benjie)! - Introduce + build.getPgCodecByDatabaseName helper. + +- [#3108](https://github.com/graphile/crystal/pull/3108) + [`c67c6ef`](https://github.com/graphile/crystal/commit/c67c6ef8a5312f6a217322dc0c013dc4b9c0dd30) + Thanks [@benjaie](https://github.com/benjaie)! - Turn getGraphQLTypeByPgCodec + situations into a string union with central registry so it can be + autocompleted. +- Updated dependencies + [[`a56df3a`](https://github.com/graphile/crystal/commit/a56df3ae4abe5b79b7f81f641f9a75eda3c288a0), + [`dca7492`](https://github.com/graphile/crystal/commit/dca74929c1813119cb5d729a4cc18912e12cdd26), + [`0b00895`](https://github.com/graphile/crystal/commit/0b00895e7fcbb905e8232235e7883b9cc8c12548), + [`c67c6ef`](https://github.com/graphile/crystal/commit/c67c6ef8a5312f6a217322dc0c013dc4b9c0dd30), + [`5d0f9bc`](https://github.com/graphile/crystal/commit/5d0f9bc3a0e0dcfb05c5377e29973c5a0d253c7e)]: + - @dataplan/pg@1.1.1 + - graphile-utils@5.0.3 + - graphile-build-pg@5.1.1 + ## 5.1.0 ### Minor Changes diff --git a/postgraphile/postgraphile/package.json b/postgraphile/postgraphile/package.json index 68bf43b436..2829765915 100644 --- a/postgraphile/postgraphile/package.json +++ b/postgraphile/postgraphile/package.json @@ -1,6 +1,6 @@ { "name": "postgraphile", - "version": "5.1.0", + "version": "5.1.1", "description": "Automatic, high performance, and highly customizable GraphQL API for PostgreSQL", "type": "commonjs", "main": "./dist/index.js", diff --git a/postgraphile/postgraphile/src/version.ts b/postgraphile/postgraphile/src/version.ts index 9a4f8cb2e2..7f724da978 100644 --- a/postgraphile/postgraphile/src/version.ts +++ b/postgraphile/postgraphile/src/version.ts @@ -1,2 +1,2 @@ // This file is autogenerated by /scripts/postversion.mjs -export const version = "5.1.0"; +export const version = "5.1.1";