Releases: 0no-co/graphql.web
Releases · 0no-co/graphql.web
v1.1.2
Patch Changes
- Remove sourcemaps'
sourcesContent
from published package
Submitted by @kitten (See #56)
v1.1.1
Patch Changes
- Remove redundant loc setter/getter in favour of value to improve pre-warmup times
Submitted by @kitten (See #54)
v1.1.0
Minor Changes
- Improve parser performance (up to ~25% higher ops/s) by rewriting part of the parsing that runs in tight loops. Previously, the purer parser combinators w/o regexs wouldn't have been as significant of an improvement, but they now clearly are
Submitted by @kitten (See #52)
v1.0.13
Patch Changes
- ⚠️ Fix compatibility with typescript 5.5 and higher
Submitted by @andreisergiu98 (See #49)
v1.0.12
Patch Changes
- ⚠️ Fix printing when a manually created AST node with an empty selection set array is passed to the printer
Submitted by @JoviDeCroock (See #46)
v1.0.11
Patch Changes
- Export Extensions type
Submitted by @jaulz (See #36)
v1.0.9
Patch Changes
- Remove
for-of
syntax from valueFromTypeNode
and valueFromASTUntyped
helpers for JSC memory reduction
Submitted by @kitten (See #33)
v1.0.8
Patch Changes
- ⚠️ Fix typo causing complex string parsing to fail on subsequent runs
Submitted by @kitten (See #31)
v1.0.7
Patch Changes
- ⚠️ Fix
@ts-ignore
on TypeScript peer dependency import in typings not being applied due to a leading !
character
Submitted by @IvanUkhov (See #27)
v1.0.6
Patch Changes
- ⚠️ Fix aliased field name followed by arguments causing parsing error
Submitted by @kitten (See 65c73a0
)