Skip to content

Commit

Permalink
Merge pull request #185 from okgrow/release/v1.5.8
Browse files Browse the repository at this point in the history
Release/v1.5.8
  • Loading branch information
cfnelson authored Nov 14, 2018
2 parents 37bece6 + f1e9011 commit 48df137
Show file tree
Hide file tree
Showing 11 changed files with 3,526 additions and 2,862 deletions.
38 changes: 22 additions & 16 deletions .babelrc
Original file line number Diff line number Diff line change
Expand Up @@ -2,30 +2,36 @@
"env": {
"build": {
"presets": [
["env", {
"targets": {
"node": "4.8.3"
},
"useBuiltIns": true,
"modules": false
}]
[
"@babel/preset-env",
{
"targets": {
"node": "4.8.3"
},
"useBuiltIns": "usage",
"modules": false
}
]
],
"plugins": [
"external-helpers",
"transform-object-rest-spread"
"@babel/plugin-external-helpers",
"@babel/plugin-proposal-object-rest-spread"
]
},
"test": {
"presets": [
["env", {
"targets": {
"node": "4.8.3"
},
"useBuiltIns": true,
}]
[
"@babel/preset-env",
{
"targets": {
"node": "4.8.3"
},
"useBuiltIns": "usage"
}
]
],
"plugins": [
"transform-object-rest-spread"
"@babel/plugin-proposal-object-rest-spread"
]
}
}
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,13 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [Unreleased]

## [1.5.8]
### Fixed
- Fix exception message when checking NamedType. [PR #178](https://github.com/okgrow/merge-graphql-schemas/pull/178) by [Fi1osof](https://github.com/Fi1osof).

- Fix directives not being merged correctly. Closes [#156](https://github.com/okgrow/merge-graphql-schemas/issues/156), [#182](https://github.com/okgrow/merge-graphql-schemas/issues/182) [PR #183](https://github.com/okgrow/merge-graphql-schemas/pull/183) by [Fi1osof](https://github.com/Fi1osof).

## [1.5.7]
### Fixed
- Typescript issue introduced in previous PR. [PR #168](https://github.com/okgrow/merge-graphql-schemas/pull/172) by [@koenpunt](https://github.com/koenpunt).
Expand Down
Loading

0 comments on commit 48df137

Please sign in to comment.