Skip to content
Open
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
7 changes: 0 additions & 7 deletions .changeset/eleven-beds-help.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/four-cats-notice.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/large-mails-allow.md

This file was deleted.

7 changes: 0 additions & 7 deletions .changeset/shaky-clowns-laugh.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tired-guests-help.md

This file was deleted.

15 changes: 15 additions & 0 deletions grafast/dataplan-pg/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion grafast/dataplan-pg/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion grafast/dataplan-pg/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// This file is autogenerated by /scripts/postversion.mjs
export const version = "1.1.0";
export const version = "1.1.1";
15 changes: 15 additions & 0 deletions graphile-build/graphile-build-pg/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion graphile-build/graphile-build-pg/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion graphile-build/graphile-build-pg/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// This file is autogenerated by /scripts/postversion.mjs
export const version = "5.1.0";
export const version = "5.1.1";
9 changes: 9 additions & 0 deletions graphile-build/graphile-utils/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion graphile-build/graphile-utils/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
35 changes: 35 additions & 0 deletions postgraphile/postgraphile/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion postgraphile/postgraphile/package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
2 changes: 1 addition & 1 deletion postgraphile/postgraphile/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// This file is autogenerated by /scripts/postversion.mjs
export const version = "5.1.0";
export const version = "5.1.1";