UNPKG

16.6 kBMarkdownView Raw
1# Change Log
2
3All notable changes to this project will be documented in this file.
4See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
5
6<a name="11.0.0-rc.27"></a>
7# [11.0.0-rc.27](https://github.com/xing/hops/compare/v11.0.0-rc.26...v11.0.0-rc.27) (2018-08-06)
8
9
10
11
12**Note:** Version bump only for package hops-graphql
13
14<a name="11.0.0-rc.26"></a>
15# [11.0.0-rc.26](https://github.com/xing/hops/compare/v10.4.6...v11.0.0-rc.26) (2018-08-01)
16
17
18### Bug Fixes
19
20* **graphql:** pass apollo state to getTemplateData.globals ([9cf55a3](https://github.com/xing/hops/commit/9cf55a3))
21* upgrade dependencies ([b61e8eb](https://github.com/xing/hops/commit/b61e8eb))
22* upgrade untool packages ([39fd3e1](https://github.com/xing/hops/commit/39fd3e1))
23* Use renamed untool getConfigAndMixins function ([0304f8e](https://github.com/xing/hops/commit/0304f8e))
24
25
26### Chores
27
28* specify engines as >=8.10 in all packages ([1b7a1d2](https://github.com/xing/hops/commit/1b7a1d2))
29
30
31### Code Refactoring
32
33* **graphql:** namespace render options ([cb92adb](https://github.com/xing/hops/commit/cb92adb))
34
35
36### Features
37
38* **apollo:** introduce configureFetch hook ([26a5f9f](https://github.com/xing/hops/commit/26a5f9f))
39* **graphql:** add overridable getApolloLink hook ([e0b204a](https://github.com/xing/hops/commit/e0b204a))
40* **graphql:** implement "shouldPrefetchOnServer" hook/preset option ([5a3cad5](https://github.com/xing/hops/commit/5a3cad5))
41* **graphql:** remove configureFetch hook ([7bf732d](https://github.com/xing/hops/commit/7bf732d))
42* **graphql:** remove usage of instrumanted fetch ([f20fd19](https://github.com/xing/hops/commit/f20fd19))
43* **graphql:** use shouldPrefetchOnServer to enable prefetching of data ([be550ac](https://github.com/xing/hops/commit/be550ac))
44* **postcss:** implement postcss package ([6091ed7](https://github.com/xing/hops/commit/6091ed7))
45* **preset-defaults:** move default presets into separate package ([722f67c](https://github.com/xing/hops/commit/722f67c))
46
47
48### BREAKING CHANGES
49
50* **graphql:** graphql specific options are now namespaced
51If you want to pass options to the hops-graphql package you need to pass
52them to the render function inside a `graphql` key:
53**Before:**
54```javascript
55render(<MyApp />, { link: new Link() });
56```
57**After:**
58```javascript
59render(<MyApp />, { graphql: { link: new Link() } });
60```
61* Increase minimum required Node.js version from 6 to 8
62This commit specifies Node.js 8.10 as minimum required version in all
63packages.
64
65
66
67
68<a name="11.0.0-rc.25"></a>
69# [11.0.0-rc.25](https://github.com/xing/hops/compare/v10.4.6...v11.0.0-rc.25) (2018-07-31)
70
71
72### Bug Fixes
73
74* **graphql:** pass apollo state to getTemplateData.globals ([9cf55a3](https://github.com/xing/hops/commit/9cf55a3))
75* upgrade dependencies ([b61e8eb](https://github.com/xing/hops/commit/b61e8eb))
76* upgrade untool packages ([39fd3e1](https://github.com/xing/hops/commit/39fd3e1))
77* Use renamed untool getConfigAndMixins function ([0304f8e](https://github.com/xing/hops/commit/0304f8e))
78
79
80### Chores
81
82* specify engines as >=8.10 in all packages ([1b7a1d2](https://github.com/xing/hops/commit/1b7a1d2))
83
84
85### Code Refactoring
86
87* **graphql:** namespace render options ([cb92adb](https://github.com/xing/hops/commit/cb92adb))
88
89
90### Features
91
92* **apollo:** introduce configureFetch hook ([26a5f9f](https://github.com/xing/hops/commit/26a5f9f))
93* **graphql:** add overridable getApolloLink hook ([e0b204a](https://github.com/xing/hops/commit/e0b204a))
94* **graphql:** implement "shouldPrefetchOnServer" hook/preset option ([5a3cad5](https://github.com/xing/hops/commit/5a3cad5))
95* **graphql:** remove configureFetch hook ([7bf732d](https://github.com/xing/hops/commit/7bf732d))
96* **graphql:** use shouldPrefetchOnServer to enable prefetching of data ([be550ac](https://github.com/xing/hops/commit/be550ac))
97* **postcss:** implement postcss package ([6091ed7](https://github.com/xing/hops/commit/6091ed7))
98* **preset-defaults:** move default presets into separate package ([722f67c](https://github.com/xing/hops/commit/722f67c))
99
100
101### BREAKING CHANGES
102
103* **graphql:** graphql specific options are now namespaced
104If you want to pass options to the hops-graphql package you need to pass
105them to the render function inside a `graphql` key:
106**Before:**
107```javascript
108render(<MyApp />, { link: new Link() });
109```
110**After:**
111```javascript
112render(<MyApp />, { graphql: { link: new Link() } });
113```
114* Increase minimum required Node.js version from 6 to 8
115This commit specifies Node.js 8.10 as minimum required version in all
116packages.
117
118
119
120
121<a name="11.0.0-rc.23"></a>
122# [11.0.0-rc.23](https://github.com/xing/hops/compare/v11.0.0-rc.22...v11.0.0-rc.23) (2018-07-26)
123
124
125### Bug Fixes
126
127* upgrade untool packages ([1bd0829](https://github.com/xing/hops/commit/1bd0829))
128
129
130### Features
131
132* **graphql:** implement "shouldPrefetchOnServer" hook/preset option ([dd06697](https://github.com/xing/hops/commit/dd06697))
133* **graphql:** remove configureFetch hook ([73119c6](https://github.com/xing/hops/commit/73119c6))
134
135
136
137
138<a name="11.0.0-rc.22"></a>
139# [11.0.0-rc.22](https://github.com/xing/hops/compare/v11.0.0-rc.21...v11.0.0-rc.22) (2018-07-25)
140
141
142### Bug Fixes
143
144* upgrade dependencies ([e92e305](https://github.com/xing/hops/commit/e92e305))
145
146
147
148
149<a name="11.0.0-rc.21"></a>
150# [11.0.0-rc.21](https://github.com/xing/hops/compare/v11.0.0-rc.20...v11.0.0-rc.21) (2018-07-20)
151
152
153### Features
154
155* **apollo:** introduce configureFetch hook ([ebe9f9b](https://github.com/xing/hops/commit/ebe9f9b))
156
157
158
159
160<a name="11.0.0-rc.19"></a>
161# [11.0.0-rc.19](https://github.com/xing/hops/compare/v10.4.6...v11.0.0-rc.19) (2018-07-19)
162
163
164### Bug Fixes
165
166* **graphql:** pass apollo state to getTemplateData.globals ([ed64cef](https://github.com/xing/hops/commit/ed64cef))
167* Use renamed untool getConfigAndMixins function ([0d16963](https://github.com/xing/hops/commit/0d16963))
168
169
170### Chores
171
172* specify engines as >=8.10 in all packages ([bb20aa6](https://github.com/xing/hops/commit/bb20aa6))
173
174
175### Code Refactoring
176
177* **graphql:** namespace render options ([80847df](https://github.com/xing/hops/commit/80847df))
178
179
180### Features
181
182* **graphql:** add overridable getApolloLink hook ([0bc798e](https://github.com/xing/hops/commit/0bc798e))
183* **graphql:** use shouldPrefetchOnServer to enable prefetching of data ([86345e3](https://github.com/xing/hops/commit/86345e3))
184* **postcss:** implement postcss package ([46ec09e](https://github.com/xing/hops/commit/46ec09e))
185* **preset-defaults:** move default presets into separate package ([f8a095a](https://github.com/xing/hops/commit/f8a095a))
186
187
188### BREAKING CHANGES
189
190* **graphql:** graphql specific options are now namespaced
191If you want to pass options to the hops-graphql package you need to pass
192them to the render function inside a `graphql` key:
193**Before:**
194```javascript
195render(<MyApp />, { link: new Link() });
196```
197**After:**
198```javascript
199render(<MyApp />, { graphql: { link: new Link() } });
200```
201* Increase minimum required Node.js version from 6 to 8
202This commit specifies Node.js 8.10 as minimum required version in all
203packages.
204
205
206
207
208<a name="11.0.0-rc.17"></a>
209# [11.0.0-rc.17](https://github.com/xing/hops/compare/v11.0.0-rc.16...v11.0.0-rc.17) (2018-07-09)
210
211
212
213
214**Note:** Version bump only for package hops-graphql
215
216<a name="11.0.0-rc.16"></a>
217# [11.0.0-rc.16](https://github.com/xing/hops/compare/v11.0.0-rc.15...v11.0.0-rc.16) (2018-07-09)
218
219
220
221
222**Note:** Version bump only for package hops-graphql
223
224<a name="11.0.0-rc.14"></a>
225# [11.0.0-rc.14](https://github.com/xing/hops/compare/v11.0.0-rc.13...v11.0.0-rc.14) (2018-07-04)
226
227
228### Bug Fixes
229
230* Use renamed untool getConfigAndMixins function ([a891183](https://github.com/xing/hops/commit/a891183))
231
232
233
234
235<a name="11.0.0-rc.13"></a>
236# [11.0.0-rc.13](https://github.com/xing/hops/compare/v11.0.0-rc.12...v11.0.0-rc.13) (2018-07-04)
237
238
239
240
241**Note:** Version bump only for package hops-graphql
242
243<a name="11.0.0-rc.12"></a>
244# [11.0.0-rc.12](https://github.com/xing/hops/compare/v11.0.0-rc.11...v11.0.0-rc.12) (2018-06-28)
245
246
247### Code Refactoring
248
249* **graphql:** namespace render options ([9da5664](https://github.com/xing/hops/commit/9da5664))
250
251
252### BREAKING CHANGES
253
254* **graphql:** graphql specific options are now namespaced
255If you want to pass options to the hops-graphql package you need to pass
256them to the render function inside a `graphql` key:
257**Before:**
258```javascript
259render(<MyApp />, { link: new Link() });
260```
261**After:**
262```javascript
263render(<MyApp />, { graphql: { link: new Link() } });
264```
265
266
267
268
269<a name="11.0.0-rc.11"></a>
270# [11.0.0-rc.11](https://github.com/xing/hops/compare/v11.0.0-rc.10...v11.0.0-rc.11) (2018-06-27)
271
272
273
274
275**Note:** Version bump only for package hops-graphql
276
277<a name="11.0.0-rc.10"></a>
278# [11.0.0-rc.10](https://github.com/xing/hops/compare/v11.0.0-rc.9...v11.0.0-rc.10) (2018-06-27)
279
280
281### Bug Fixes
282
283* **graphql:** pass apollo state to getTemplateData.globals ([c8843bd](https://github.com/xing/hops/commit/c8843bd))
284
285
286### Features
287
288* **graphql:** use shouldPrefetchOnServer to enable prefetching of data ([fceeeab](https://github.com/xing/hops/commit/fceeeab))
289
290
291
292
293<a name="11.0.0-rc.9"></a>
294# [11.0.0-rc.9](https://github.com/xing/hops/compare/v11.0.0-rc.8...v11.0.0-rc.9) (2018-06-27)
295
296
297
298
299**Note:** Version bump only for package hops-graphql
300
301<a name="11.0.0-rc.8"></a>
302# [11.0.0-rc.8](https://github.com/xing/hops/compare/v11.0.0-rc.7...v11.0.0-rc.8) (2018-06-26)
303
304
305
306
307**Note:** Version bump only for package hops-graphql
308
309<a name="11.0.0-rc.5"></a>
310# [11.0.0-rc.5](https://github.com/xing/hops/compare/v11.0.0-rc.4...v11.0.0-rc.5) (2018-06-25)
311
312
313### Features
314
315* **postcss:** implement postcss package ([7e79abd](https://github.com/xing/hops/commit/7e79abd))
316
317
318
319
320<a name="11.0.0-rc.4"></a>
321# [11.0.0-rc.4](https://github.com/xing/hops/compare/v11.0.0-rc.3...v11.0.0-rc.4) (2018-06-05)
322
323
324
325
326**Note:** Version bump only for package hops-graphql
327
328<a name="11.0.0-rc.3"></a>
329# [11.0.0-rc.3](https://github.com/xing/hops/compare/v10.4.3...v11.0.0-rc.3) (2018-05-25)
330
331
332### Chores
333
334* specify engines as >=8.10 in all packages ([335fd84](https://github.com/xing/hops/commit/335fd84))
335* specify engines as >=8.10 in all packages ([9228cb1](https://github.com/xing/hops/commit/9228cb1))
336
337
338### Features
339
340* **preset-defaults:** move default presets into separate package ([4d726bf](https://github.com/xing/hops/commit/4d726bf))
341
342
343### BREAKING CHANGES
344
345* Increase minimum required Node.js version from 6 to 8
346This commit specifies Node.js 8.10 as minimum required version in all
347packages.
348* Increase minimum required Node.js version from 6 to 8
349This commit specifies Node.js 8.10 as minimum required version in all
350packages.
351
352
353
354
355<a name="11.0.0-rc.1"></a>
356# [11.0.0-rc.1](https://github.com/xing/hops/compare/v11.0.0-rc.0...v11.0.0-rc.1) (2018-05-23)
357
358
359
360
361**Note:** Version bump only for package hops-graphql
362
363<a name="11.0.0-rc.0"></a>
364# [11.0.0-rc.0](https://github.com/xing/hops/compare/v10.4.3...v11.0.0-rc.0) (2018-05-22)
365
366
367### Chores
368
369* specify engines as >=8.10 in all packages ([bc24dca](https://github.com/xing/hops/commit/bc24dca))
370* specify engines as >=8.10 in all packages ([9228cb1](https://github.com/xing/hops/commit/9228cb1))
371
372
373### Features
374
375* **preset-defaults:** move default presets into separate package ([9000cb0](https://github.com/xing/hops/commit/9000cb0))
376
377
378### BREAKING CHANGES
379
380* Increase minimum required Node.js version from 6 to 8
381This commit specifies Node.js 8.10 as minimum required version in all
382packages.
383* Increase minimum required Node.js version from 6 to 8
384This commit specifies Node.js 8.10 as minimum required version in all
385packages.
386
387
388
389
390<a name="10.4.3"></a>
391## [10.4.3](https://github.com/xing/hops/compare/v10.4.2...v10.4.3) (2018-04-24)
392
393
394
395
396**Note:** Version bump only for package hops-graphql
397
398<a name="10.4.0"></a>
399# [10.4.0](https://github.com/xing/hops/compare/v10.2.0-rc.5...v10.4.0) (2018-04-17)
400
401
402### Features
403
404* **graphql:** add "--header/-H" CLI option to introspect command ([671193d](https://github.com/xing/hops/commit/671193d))
405* **graphql:** Generate fragment types from schema file ([5d86841](https://github.com/xing/hops/commit/5d86841))
406
407
408
409
410<a name="10.3.0"></a>
411# [10.3.0](https://github.com/xing/hops/compare/v10.3.0-rc.3...v10.3.0) (2018-04-09)
412
413
414
415
416**Note:** Version bump only for package hops-graphql
417
418<a name="10.2.0"></a>
419# [10.2.0](https://github.com/xing/hops/compare/v10.2.0-rc.5...v10.2.0) (2018-03-26)
420
421
422
423
424**Note:** Version bump only for package hops-graphql
425
426<a name="10.0.0"></a>
427# [10.0.0](https://github.com/xing/hops/compare/v10.0.0-rc.4...v10.0.0) (2018-02-07)
428
429
430
431
432**Note:** Version bump only for package hops-graphql
433
434<a name="9.7.0"></a>
435# [9.7.0](https://github.com/xing/hops/compare/v9.6.1...v9.7.0) (2018-01-22)
436
437
438### Bug Fixes
439
440* **graphql:** fix console output ([85556fb](https://github.com/xing/hops/commit/85556fb))
441
442
443
444
445<a name="9.5.0"></a>
446# [9.5.0](https://github.com/xing/hops/compare/v9.4.3...v9.5.0) (2018-01-09)
447
448
449### Bug Fixes
450
451* **graphql:** get rid of webpack warning ([f0aba04](https://github.com/xing/hops/commit/f0aba04))
452
453
454
455
456<a name="9.4.0"></a>
457# [9.4.0](https://github.com/xing/hops/compare/v9.3.2...v9.4.0) (2018-01-08)
458
459
460### Features
461
462* **graphql:** make CLI commands compatible with hops-local-cli & hops ([a278d1d](https://github.com/xing/hops/commit/a278d1d))
463
464
465
466
467<a name="9.3.0"></a>
468# [9.3.0](https://github.com/xing/hops/compare/v9.2.0...v9.3.0) (2017-12-14)
469
470
471
472
473**Note:** Version bump only for package hops-graphql
474
475<a name="9.2.0"></a>
476# [9.2.0](https://github.com/xing/hops/compare/v9.1.1...v9.2.0) (2017-12-11)
477
478
479
480
481**Note:** Version bump only for package hops-graphql
482
483<a name="9.1.1"></a>
484## [9.1.1](https://github.com/xing/hops/compare/v9.1.0...v9.1.1) (2017-12-05)
485
486
487### Performance Improvements
488
489* lazy-require command implementations ([bac93fa](https://github.com/xing/hops/commit/bac93fa))
490
491
492
493
494<a name="9.0.0"></a>
495# [9.0.0](https://github.com/xing/hops/compare/v8.0.0...v9.0.0) (2017-11-27)
496
497
498### Bug Fixes
499
500* **graphql:** make getTemplateData order-agnostic ([6d5e0c3](https://github.com/xing/hops/commit/6d5e0c3))
501
502
503### Features
504
505* **graphql:** implement constructor based mixins ([e99ec75](https://github.com/xing/hops/commit/e99ec75))
506
507
508### BREAKING CHANGES
509
510* **graphql:** export.contextDefinition is now a constructor function (used to be an object literal)
511
512
513
514
515<a name="8.0.0"></a>
516# [8.0.0](https://github.com/xing/hops/compare/v7.4.1...v8.0.0) (2017-11-22)
517
518
519### Code Refactoring
520
521* **graphql:** make main export a context mixin ([d097d2d](https://github.com/xing/hops/commit/d097d2d))
522* **graphql:** rename mixin definition export ([dfd1d4b](https://github.com/xing/hops/commit/dfd1d4b))
523
524
525### Features
526
527* **graphql:** implement simplified mixin support ([509c1b5](https://github.com/xing/hops/commit/509c1b5))
528* **graphql:** introduce mixin support ([813196f](https://github.com/xing/hops/commit/813196f))
529
530
531### Performance Improvements
532
533* **graphql:** remove fs.existsSync() check from context ([1441d20](https://github.com/xing/hops/commit/1441d20))
534
535
536### BREAKING CHANGES
537
538* **graphql:** export naming changed
539* **graphql:** exports changed
540* **graphql:** main export changed
541* **graphql:** Context.extends is removed, Context.mixin is added
542
543
544
545
546<a name="7.4.1"></a>
547## [7.4.1](https://github.com/xing/hops/compare/v7.4.0...v7.4.1) (2017-11-08)
548
549
550
551
552**Note:** Version bump only for package hops-graphql
553
554<a name="7.4.0"></a>
555# [7.4.0](https://github.com/xing/hops/compare/v7.3.5...v7.4.0) (2017-11-01)
556
557
558### Bug Fixes
559
560* **graphql:** add React as a peer dependency ([a9342d8](https://github.com/xing/hops/commit/a9342d8))
561
562
563
564
565<a name="7.3.5"></a>
566## [7.3.5](https://github.com/xing/hops/compare/v7.3.4...v7.3.5) (2017-10-27)
567
568
569
570
571**Note:** Version bump only for package hops-graphql
572
573<a name="7.3.3"></a>
574## [7.3.3](https://github.com/xing/hops/compare/v7.3.2...v7.3.3) (2017-10-26)
575
576
577### Bug Fixes
578
579* **graphql:** add missing folders to package ([99b31c1](https://github.com/xing/hops/commit/99b31c1))
580
581
582
583
584<a name="7.3.2"></a>
585## [7.3.2](https://github.com/xing/hops/compare/v7.3.1...v7.3.2) (2017-10-26)
586
587
588
589
590**Note:** Version bump only for package hops-graphql
591
592<a name="7.3.0"></a>
593# [7.3.0](https://github.com/xing/hops/compare/v7.2.0...v7.3.0) (2017-10-26)
594
595
596### Features
597
598* **graphql:** add hops-graphql module ([8eac186](https://github.com/xing/hops/commit/8eac186))
599* **graphql:** add introspection support ([aa058ff](https://github.com/xing/hops/commit/aa058ff))
600* **graphql:** treat client options as immutable ([77f85cf](https://github.com/xing/hops/commit/77f85cf))
601* **graphql:** upgrade to apollo-client 2.0 ([8c3a7fc](https://github.com/xing/hops/commit/8c3a7fc))