nexus/CHANGELOG.md

111 lines
2.3 KiB
Markdown
Raw Normal View History

# Changelog
2019-03-11 01:37:30 +08:00
### 0.11.2
- Fix `mkdir` for versions of node without recursive option (< 10.15.1).
### 0.11.1
- Export `queryField` & `subscriptionField` on public API
2019-03-08 08:49:00 +08:00
### 0.11.0
- Fix allowing nested input types (#68), fixes default type definitions for input fields
- Add `queryField` abstraction to mirror `mutationField`
- Alpha release of `subscriptionField` (working, but undocumented) for GraphQL subscriptions
### 0.10.0
- Add an optional field level authorize #32, part of a more robust authorization story in #23
- Add mutationField abstraction, #46
### 0.9.17
- More for #55, type error on Promise/null resolve
2019-02-23 06:49:25 +08:00
### 0.9.16
- Fix #52, args being incorrectly imported as types
- Feature: extendInputType, #51
2019-02-23 03:48:47 +08:00
### 0.9.15
- Fix #55, type error for Promise numeric field return
2019-02-19 07:06:18 +08:00
### 0.9.14
- Fix #44, add correct typings for union type
### 0.9.13
- Fix #41, replace `path.sep` with '/' in `typegenAutoConfig`
### 0.9.12
- Fix #33, consistent `t.list` chaining output for inputs & scalars
- Fix #34, include used imports on SDL converter
- Fix #27, args output for SDL converter
- Other SDL converter cleanup: reference types rather than strings, default values
### 0.9.11
- Fix typing regression in 0.9.10
### 0.9.10
- Fix #26, incorrect typing on boolean return type
### 0.9.9
- `TypegenConfigSourceModule`: `sources.module` -> `sources.source`
2019-02-05 22:07:45 +08:00
### 0.9.8
- Fix `MaybePromiseDeep` typing for non-object values
- `NexusGenCustomScalarMethods` -> `NexusGenCustomDefinitionMethods` for when we allow non-scalars to be `asNexusMethod`
2019-02-04 10:04:26 +08:00
### 0.9.7
2019-02-05 22:07:45 +08:00
- Fix `MaybePromiseDeep` typing
2019-02-04 10:04:26 +08:00
- Add `asNexusMethod` to annotate GraphQLScalarType
### 0.9.6
- Fallback Query construction to `missingType` internally
2019-02-03 06:44:06 +08:00
### 0.9.5
- Fix `nonNullDefaults` on schema
- Finalize objects as they are constructed
- Changes to a few internal methods
2019-02-03 02:42:28 +08:00
### 0.9.4
- Internal: nexusWrappedFn -> nexusWrappedType
### 0.9.3
- Minor internal changes
### 0.9.2
- Fixes for conditional nullability check
- Fixes for return type of MaybePromiseDeep
- Docs cleanup
### 0.9.1:
- General deploy/package.json cleanup
2019-01-31 23:56:45 +08:00
### 0.9.0:
- Major API changes. See #16 for more info
### 0.7.0-alpha.1
Changed the type-signatures around so fields which are not defined in the backing types associated with the
### 0.6.2
Initial release