Releases: Urigo/merge-graphql-schemas
Releases · Urigo/merge-graphql-schemas
v1.5.6
v1.5.5
[1.5.5]
Added
- Typescript typings PR #167 by @onehorsetown
Changed
- Updated to [email protected] and added it to the peer dependencies PR #166 by @polco
Fixed
v1.5.4
v1.5.3
v1.5.2
v1.5.1
Fixed
- Correctly handle NonNullTypes when using
mergeTypes(types, { all: true})
Thanks to PR #125 by @lastmjs
Changed
- Updated the astPrinter with the latest print.js code from graphql-js. PR #123
- Updated the mutation test to include some comments. PR #123
- Updated tests to check NonNullTypes merge scenario when using
mergeTypes(types, { all: true})
Thanks to PR #125 by @lastmjs - Upgraded dependencies to:
"deepmerge": "^2.1.0"
- Upgraded devDependencies to:
"jest": "^22.4.2"
"core-js": "^2.5.3"
"rollup": "^0.57.0"
"graphql": "^0.13.2"
"rollup-plugin-babel": "^3.0.3"
"eslint-plugin-import": "^2.9.0"
"rollup-plugin-commonjs": "^8.4.1"
"rollup-plugin-node-resolve": "^3.2.0"
v1.5.0
Added
- Ability to merge a GQL Type defined multiple times in separate files. Will throw an error when fieldDefintitons have conflicting values defined. Usage
mergeTypes(types, { all: true })
. Many thanks to @squidfunk work in PR #118.
Changed
- Function signature of
mergeTypes(types)
has changed to include a 2nd optional param (an options object) ->mergeTypes(types, { all: true })
. See Added note & PR #118 for details. - GraphQL 0.13.x is now supported. Thanks to @jbblanchet PR #120
- Added Node.js's
utils
,events
, andassert
to Rollup's external modules list.