Skip to content

Commit 661dabd

Browse files
committed
Bump 1.0.6
1 parent 43e6974 commit 661dabd

File tree

2 files changed

+15
-11
lines changed

2 files changed

+15
-11
lines changed

CHANGELOG.md

+14-10
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
## master
22

3+
## 1.0.6 (August 8, 2016)
4+
- Fix `projection` extraction from `record` for `updateById` and `updateOne` resolvers.
5+
- Intermediate types now passed to TypeStorage (Enums, SubSchemas) when converting mongoose models.
6+
37
## 1.0.5 (July 22, 2016)
48
- Added typeStorage. If you create resolver in second time, it should reuse existed internal types
59

610
## 1.0.4 (July 20, 2016)
7-
* expose `fieldsConverter` methods
8-
* fix filterHelper: if `filter` InputType without fields, then do not add it to args
9-
* fix projectionHelper: make projection flat, before passing to mongoose
10-
* add `convertSchemaToGraphQL` method for creating cached graphql type from MongooseSchema
11+
* Expose `fieldsConverter` methods
12+
* Fix filterHelper: if `filter` InputType without fields, then do not add it to args
13+
* Fix projectionHelper: make projection flat, before passing to mongoose
14+
* Add `convertSchemaToGraphQL` method for creating cached graphql type from MongooseSchema
1115

1216
## 1.0.3 (July 18, 2016)
1317
* HotFix for connection resolver
@@ -19,17 +23,17 @@
1923
* Other small fixes
2024

2125
## 1.0.0 (July 15, 2016)
22-
* add connection resolver
23-
* add support for filtering with operators $gt, $gte, $lt, $lte, $ne, $in, $nin
24-
* small fixes
26+
* Add connection resolver
27+
* Add support for filtering with operators $gt, $gte, $lt, $lte, $ne, $in, $nin
28+
* Small fixes
2529

2630
## 0.0.6 (July 08, 2016)
27-
* rename `input` argument to `record` for mutations (due `graphql-compose-relay` compatibility).
31+
* Rename `input` argument to `record` for mutations (due `graphql-compose-relay` compatibility).
2832
`input` is a reserved name for mutations' arg in Relay, and may contains not only document/record data (eg. clientMutationId, sort and filter args). So better solution for `graphql-compose-mongoose` do not use this name, cause `graphql-compose-relay` get all args from mongoose resolvers and put them to `input` arg.
2933

3034
## 0.0.5 (July 07, 2016)
31-
* refactor Resolvers due changes in graphql-compose api
32-
* exports flow annotations
35+
* Refactor Resolvers due changes in graphql-compose api
36+
* Exports flow annotations
3337

3438
## 0.0.3 (July 01, 2016)
3539
* First beta version

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graphql-compose-mongoose",
3-
"version": "1.0.5",
3+
"version": "1.0.6",
44
"description": "Plugin for `graphql-compose` which derive a graphql type from a mongoose model.",
55
"files": [
66
"es",

0 commit comments

Comments
 (0)