|
3 | 3 | - Converted to TS |
4 | 4 | - BREAKING removed `delegateToComponent` |
5 | 5 | - BREAKING excludes removed as an option in import configuration. Transforms used instead as part of a `SubschemaConfig`. |
6 | | -- BREAKING upgraded to graphql 16.9+ peer |
| 6 | +- BREAKING upgraded to graphql 16.9+ peer |
| 7 | + |
| 8 | +=== |
| 9 | + |
| 10 | +### v5.0.1 |
| 11 | + |
| 12 | +- Update @graphql-tools/utils dependency and fix samples for Apollo server v3. |
| 13 | + |
| 14 | +### v5.0.0 |
| 15 | + |
| 16 | +- Update graphql peer-dependency for Apollo server v3. |
| 17 | + |
| 18 | +### v4.0.0 |
| 19 | + |
| 20 | +- Updated @apollo/federation dependency for Node 18 compatibility. |
| 21 | +- Drop Node 12 compatibility. |
| 22 | + |
| 23 | +### v3.1.0 |
| 24 | + |
| 25 | +- Updated graphql-tools dependency to fix security vulnerabilities |
| 26 | + |
| 27 | +### v3.0.4 |
| 28 | + |
| 29 | +- Updated schema pruning dependency and TS definitions |
| 30 | + |
| 31 | +### v3.0.3 |
| 32 | + |
| 33 | +- [FIXED] - imported components directives are merged into final schema |
| 34 | + |
| 35 | +### v3.0.2 |
| 36 | + |
| 37 | +- schema pruning and remove broken makeExecutableSchema override |
| 38 | + |
| 39 | +### v3.0.1 |
| 40 | + |
| 41 | +- [FIXED] - if `exclude` is undefined in a component config |
| 42 | + |
| 43 | +### v3.0.0 |
| 44 | + |
| 45 | +- Modernized to utilize new graphql-tools |
| 46 | +- [BREAKING] - directives are not imported and maintained throughout the tree : top level component is responsible for directive implementations |
| 47 | + |
| 48 | +### v2.2.0 |
| 49 | + |
| 50 | +- [FEATURE] - Add "hook" for custom `makeExecutableSchema` function |
| 51 | + |
| 52 | +### v2.1.7 |
| 53 | + |
| 54 | +- [FIXED] - Explicitly removed wrapping of the federation `__resolveReference()` resolver which was preventing `__resolveReference()` from running when using `graphql-component` to build federated schemas in seperate graphql services. |
| 55 | + |
| 56 | +### v2.1.6 |
| 57 | + |
| 58 | +- [FIXED] - A bug with `graphql-component` being used in a federated schema was brought to our attention and was attributed to the non-root type field resolver wrapping performed to help prevent double execution of resolvers with local delegation. Effectively, the resolver wrapping functionality was causing a null value to be returned (by attempting to return a value from the root arg) when the wrapper should have been calling through to the actual resolver. To fix this, separate wrapper functions are used for fields that begin with `__` (such as `__resolveType()`) versus "normal" non-root type fields. These separated wrapper functions look for similar but slightly different conditions to determine whether to "short circuit" an already computed result which ensures that the wrapper functions are short circuiting or calling through to the actual resolver in the desired situations. |
| 59 | + |
| 60 | +### v2.1.5 |
| 61 | + |
| 62 | +- [FIXED] - delegateToComponent()'s second parameter is an options object that supports an `args` key for passing arguments to the target GraphQL operation via JavaScript from the calling resolver. Previously, if you attempted to pass an array (wrapping any form of JavaScript scalar) a type coersion error would surface. delegateToComponent's options.args parameter now supports passing Array like arguments as expected. |
| 63 | + |
| 64 | +### v2.1.4 |
| 65 | + |
| 66 | +- [REVERT] - reverting both fixes in [2.1.2](https://github.com/ExpediaGroup/graphql-component/releases/tag/v2.1.2). The change made to unify exclusions and return pre-computed results from non-root resolvers resulted in non-root resolvers not executing when they should have. Being able to exclude non-root resolvers (not their types) is a valid work around in certain situations. |
| 67 | + |
| 68 | +### v2.1.3 |
| 69 | + |
| 70 | +- [FIXED] - modified automatic pruning mechanism during delegation to use parent types/parent type fields instead of getFieldDef() |
| 71 | + |
| 72 | +### v2.1.2 |
| 73 | + |
| 74 | +- [FIXED] - non-root resolvers being executed twice in certain delegate situations |
| 75 | +- [FIXED] - resolver exclusion now works identical to type exclusion. Only root types (`Query`, `Mutation`, `Subscription`) and/or fields on root types can be excluded, which was not the case for resolver functions prior to this fix. |
| 76 | + |
| 77 | +### v2.1.1 |
| 78 | + |
| 79 | +- update `@apollo/federation` to `^0.20.4` |
| 80 | + |
| 81 | +### v2.1.0 |
| 82 | + |
| 83 | +- [FEATURE] `delegateToComponent()` - automatically prune fields from the delegated document selection set that are not defined in the schema (component) being delegated to. This will reduced potential down stream errors as well as ensures no unintended fields are forwarded and all fields forwarded can be resolved by the schema be delegated to. This feature addresses some edge cases around variable forwarding that were not addressed in prior patch releases `2.0.4` and `2.0.5`. |
| 84 | + |
| 85 | +### v2.0.5 |
| 86 | + |
| 87 | +- [FIXED] Reinstated variable passing to the sub-document created by `delegateToComponent()`. All variable values will be forwarded to the delegated operation, but only the variable definitions for input types or types that are in the target schema will be forwarded. This prevents errors in certain delegate situations while also allowing valid resolution of args passed as variables. |
| 88 | + |
| 89 | +### v2.0.4 |
| 90 | + |
| 91 | +- [FIXED] the error path on errors surfaced through `delegateToComponent()` calls such that error path takes into account the already traversed path and exclusions |
| 92 | +- [FIXED] Variables from an outer operation are no longer forwarded to the sub operation created by `delegateToComponent()` this is to avoid passing along variables for types that dont exist in the schema being delegated to. |
| 93 | + |
| 94 | +### v2.0.3 |
| 95 | + |
| 96 | +- [FIXED] individual field exclusions during import - individual field exclusions will no longer modify the original resolver map that is being imported. |
| 97 | +- [FIXED] tightened up argument forwarding when using `delegateToComponent()` - only arguments the target field is expecting will be extracted from the calling resolver or from the `args` object provided to `delegateToComponent()` depending on the situation. Previously, there were some unintended argument leakage in certain edge cases. |
| 98 | + |
| 99 | +### v2.0.2 |
| 100 | + |
| 101 | +- [FIXED] importing directives |
| 102 | + |
| 103 | +### v2.0.1 |
| 104 | + |
| 105 | +- [FIXED] error merging to iteratively consider the merge path to properly merge errors in complex situations such as lists |
| 106 | + |
| 107 | +### v2.0.0 |
| 108 | + |
| 109 | +- [BREAKING] removed fragment helpers |
| 110 | +- [BREAKING] `schemaDirectives` (which returned merged directives) removed from component api |
| 111 | +- [BREAKING] removed `proxyImportedResolvers` feature flag |
| 112 | +- [BREAKING] removed `execute` |
| 113 | +- [FEATURE] added `delegateToComponent` to replace `execute` |
| 114 | +- [FEATURE] args can be overridden/passed via `delegateToComponent` |
| 115 | +- [FEATURE] added `targetRootField` option to `delegateToComponent` |
| 116 | +- [FIXED] delegation for subscription operations |
| 117 | +- [FIXED] Memoizing resolvers didn't take into account aliased requests |
| 118 | +- [FIXED] delegating an operation that contains an abstract type |
| 119 | +- [DOCS] added documentation for `delegateToComponent` |
| 120 | +- [CLEANUP] use fieldNodes to build sub-operation document in delegateToComponent such that the original operation document isn't unintentionally modified |
| 121 | +- [CLEANUP] removal of proxy resolvers creation when importing resolvers |
| 122 | +- [CLEANUP] Refactor how imports are merged together to be optimized and only run when a schema is requested |
| 123 | +- [CLEANUP] Moved tests alongside source code |
| 124 | + |
| 125 | +### v1.3.1 |
| 126 | + |
| 127 | +- Fixed exclude mapping in GraphQLComponent constructor - Array.map was erroniously changed to Array.filter |
| 128 | + |
| 129 | +### v1.3.0 |
| 130 | + |
| 131 | +- Imported resolvers will delegate to the imported component schema to which they belong. |
| 132 | +- Remove `this._context` as default value for context in `execute()` requiring `execute()` users to pass in context from a calling resolver. |
| 133 | +- Remove binding of `GraphQLComponent` class context to Subscription resolvers. |
| 134 | +- Apply proxyImportedResolvers regardless of how the way a component is imported and whether or not exclusions are provided. proxyImportedResolvers can still be turned off for an imported component if the component is passed via config object. |
| 135 | + |
| 136 | +### v1.2.4 |
| 137 | + |
| 138 | +- Execute flag `mergeErrors` allows inline errors to facilitate returning multiple errors from resolvers that use `execute`. |
| 139 | + |
| 140 | +### v1.2.3 |
| 141 | + |
| 142 | +- Allow extended properties in federated schema with custom directives |
| 143 | + |
| 144 | +### v1.2.2 |
| 145 | + |
| 146 | +- Allow custom directives in federation (#40) |
| 147 | + |
| 148 | +### v1.2.1 |
| 149 | + |
| 150 | +- Clean up empty types that were excluded (#38) |
| 151 | +- Reduced package size with npmignore |
| 152 | + |
| 153 | +### v1.2.0 |
| 154 | + |
| 155 | +- Added federation support |
| 156 | +- New license copyright |
| 157 | + |
| 158 | +### v1.1.3 |
| 159 | + |
| 160 | +- Fixed data source proxy losing instance binding |
| 161 | +- Upgraded to graphql peer ^14 |
| 162 | + |
| 163 | +### v1.1.1 |
| 164 | + |
| 165 | +- `execute` now supports both document objects and strings. |
| 166 | + |
| 167 | +### v1.1.1 |
| 168 | + |
| 169 | +- [BREAKING from 1.1.0 (sorry, but it is 5 minutes later)]: data sources appear by constructor name on context |
| 170 | + |
| 171 | +### v1.1.0 |
| 172 | + |
| 173 | +- Added first class data source support and overriding |
| 174 | + |
| 175 | +### v1.0.4 |
| 176 | + |
| 177 | +- Fixes #23 |
| 178 | + |
| 179 | +### v1.0.3 |
| 180 | + |
| 181 | +- Disabling type resolvers from memoization — this doesn't work right for type resolvers. |
| 182 | + |
| 183 | +### v1.0.2 |
| 184 | + |
| 185 | +- Outer global context setup occurs only once when `context` is fetched off component. |
| 186 | + |
| 187 | +### v1.0.1 |
| 188 | + |
| 189 | +- Fixed .npmignore to not include misc files that added to the package size |
| 190 | + |
| 191 | +### v1.0.0 — promoted from alpha.23 |
0 commit comments