| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| postgraphile@5.1.5 source code.tar.gz | 2026-09-04 | 17.5 MB | |
| postgraphile@5.1.5 source code.zip | 2026-09-04 | 19.5 MB | |
| README.md | 2026-09-04 | 3.5 kB | |
| Totals: 3 Items | 36.9 MB | 10 | |
Patch Changes
-
#3145
f026f03Thanks @benjie! - Fix bug inloadOneWithPgClientandloadManyWithPgClientwhere the PG client might be released early if the loader returns a list of promises (or promise to the same). Solution is simple: wrap the list withPromise.all(...). -
#3143
321ea65Thanks @nick-kang! - ApplypgSettingsForIntrospectionwhen reading enum table values. -
#3137
637408cThanks @benjie! - Fixes a planning bug where adding a non-unary dependency A to a unary step B correctly converts B to be non-unary... but didn't cascade that change to unary steps that depend on B. The result was runtime (rather than plantime) exceptions:GrafastInternalError<58bc38e2-8722-4c19-ba38-fd01a020654b>: unary step SomeStep[17] cannot be made dependent on non-unary step SomeOtherStep[29]!This is now resolved by cascading the change. -
#3116
19af784Thanks @benjie! - Address a slow memory leak in GraphQL subscriptions that can cause OOM errors when a single subscription hits many hundreds of thousands of events. The cause was racing an abortPromise with each event, causing the abort promise to build up a large list of callbacks in its internal Promise mechanics when the event always won the race. The fix was to move from using a promise for abort to an AbortController, where the abort task can be released after each event successfully resolves, avoiding memory buildup. Also applied this fix to similar patterns elsewhere in the codebase, albeit places much less sensitive to this issue. -
#3128
56e8708Thanks @benjie! - Fix a bug wheretrap()would prevent connection-capable list steps from resolving correctly (often replacing them withnull). - Updated dependencies
[
f026f03,321ea65,637408c,8717725,19af784,4d113fa,56e8708,ddf58fa]: - @dataplan/pg@1.1.2
- graphile-build-pg@5.1.4
- grafast@1.1.3
- grafserv@1.0.2
- graphile-config@1.1.1