forked from storybookjs/storybook
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCHANGELOG.md
6887 lines (5146 loc) · 464 KB
/
CHANGELOG.md
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
## 5.0.0-rc.11 (March 5, 2019)
### Bug Fixes
* UI: Fix base theme initialization and theme bootup ([#5843](https://github.com/storybooks/storybook/pull/5843))
* UI: Fix SidebarItem feels "laggy" when clicked ([#5850](https://github.com/storybooks/storybook/pull/5850))
## 5.0.0-rc.10 (March 4, 2019)
### Bug Fixes
* Addon-viewports: Restore v4 behaviour ([#5829](https://github.com/storybooks/storybook/pull/5829))
* Addon-backgrounds: Remove previously deprecated default export ([#5828](https://github.com/storybooks/storybook/pull/5828))
### Maintenance
* Addon-a11y: Cleanup and document migration ([#5833](https://github.com/storybooks/storybook/pull/5833))
## 5.0.0-rc.9 (March 3, 2019)
### Features
* Core: Allow local decorators via params ([#5806](https://github.com/storybooks/storybook/pull/5806))
### Bug Fixes
* Core: Add warning for decorators added "mid-kind" ([#5819](https://github.com/storybooks/storybook/pull/5819))
* Addon-notes: Support inline code markdown ([#5802](https://github.com/storybooks/storybook/pull/5802))
* Theming: Fix theme loading bugs ([#5787](https://github.com/storybooks/storybook/pull/5787))
* CLI: Fix build-storybook with simplebar esm files ([#5816](https://github.com/storybooks/storybook/pull/5816))
## 5.0.0-rc.8 (March 1, 2019)
### Features
* Core: Allow local decorators via params ([#5806](https://github.com/storybooks/storybook/pull/5806))
### Bug Fixes
* UI: Sort storiesHash so grouped keys appear together ([#5805](https://github.com/storybooks/storybook/pull/5805))
* UI: Close tooltips on iframe clicks on keypresses ([#5807](https://github.com/storybooks/storybook/pull/5807))
* Addon-Info: Add font family to info panel ([#5759](https://github.com/storybooks/storybook/pull/5759))
## 5.0.0-rc.7 (February 28, 2019)
### Features
* UI: Page load animation and `STORIES_CONFIGURED` event ([#5756](https://github.com/storybooks/storybook/pull/5756))
* Theming: Improve `brand` API ([#5733](https://github.com/storybooks/storybook/pull/5733))
* UI: Fuzzy search improvement ([#5748](https://github.com/storybooks/storybook/pull/5748))
* UI: Add toolbar animation ([#5742](https://github.com/storybooks/storybook/pull/5742))
### Bug Fixes
* UI: Fix update notifications placement ([#5716](https://github.com/storybooks/storybook/pull/5716))
* Angular: Fix global style imports ([#5776](https://github.com/storybooks/storybook/pull/5776))
* Addon-options: Add backwards compatibility ([#5758](https://github.com/storybooks/storybook/pull/5758))
* Addon-options: Fix deprecated url/name options ([#5773](https://github.com/storybooks/storybook/pull/5773))
* Addon-knobs: Remove call to `forceReRender()` on `STORY_CHANGED` ([#5753](https://github.com/storybooks/storybook/pull/5753))
* UI: Fix active state in addon-background, addon-viewport tools ([#5749](https://github.com/storybooks/storybook/pull/5749))
## 5.0.0-rc.6 (February 25, 2019)
### Bug Fixes
* Addon-actions: FIX performance by upgrading to telejson 2.1 ([#5751](https://github.com/storybooks/storybook/pull/5751))
* UI: FIX bad treeview mockdata ([#5741](https://github.com/storybooks/storybook/pull/5741))
* UI: About page styling fixes ([#5732](https://github.com/storybooks/storybook/pull/5732))
* UI: Restore the toolbar eject button ([#5737](https://github.com/storybooks/storybook/pull/5737))
## 5.0.0-rc.5 (February 23, 2019)
### Bug Fixes
* UI: Fix `/` search hotkey so it doesn't type into the input ([#5702](https://github.com/storybooks/storybook/pull/5702))
* Addon-a11y: Fix a11y setup being undefined ([#5724](https://github.com/storybooks/storybook/pull/5724))
* UI: Fix duplicate theming packages ([#5722](https://github.com/storybooks/storybook/pull/5722))
* Core: Clean up debug logging ([#5705](https://github.com/storybooks/storybook/pull/5705))
* UI: Minor addon ux tweaks ([#5712](https://github.com/storybooks/storybook/pull/5712))
* Addon-a11y: Fix story scrolling ([#5713](https://github.com/storybooks/storybook/pull/5713))
* UI: Fix mobile styling ([#5709](https://github.com/storybooks/storybook/pull/5709))
* UI: Fix tooltip bugs ([#5692](https://github.com/storybooks/storybook/pull/5692))
* UI: Fix toolbar separators ([#5711](https://github.com/storybooks/storybook/pull/5711))
### Maintenance
* Typescript: migrate addon-backgrounds ([#5535](https://github.com/storybooks/storybook/pull/5535))
* Typescript: fix typings for addon-backgrounds ([#5730](https://github.com/storybooks/storybook/pull/5730))
## 5.0.0-rc.4 (February 21, 2019)
### Features
* UI: Handle prerelease versions in version check ([#5641](https://github.com/storybooks/storybook/pull/5641))
### Bug Fixes
* UI: Fix scrollbar persistence ([#5689](https://github.com/storybooks/storybook/pull/5689))
* UI: Fix keyboard shortcuts of toggleNav & togglePanel ([#5677](https://github.com/storybooks/storybook/pull/5677))
* Core: Fix singleton module issue for manager & theme ([#5679](https://github.com/storybooks/storybook/pull/5679))
* Addon-storysource: Fix source not updating ([#5672](https://github.com/storybooks/storybook/pull/5672))
* Core: Fix broken error reporting ([#5678](https://github.com/storybooks/storybook/pull/5678))
* Addon-info: Compare component name to story name, not story fn ([#5649](https://github.com/storybooks/storybook/pull/5649))
### Maintenance
* CLI: Cleanup version notice ([#5699](https://github.com/storybooks/storybook/pull/5699))
* Core: Fix story fn consistency ([#5669](https://github.com/storybooks/storybook/pull/5669))
## 4.1.13 (February 21, 2019)
### Maintenance
* CLI: Cleanup version notice ([#5699](https://github.com/storybooks/storybook/pull/5699))
* Docs: Use static versions.json file instead of hacking one in ([#5675](https://github.com/storybooks/storybook/pull/5675))
## 5.0.0-rc.3 (February 19, 2019)
### Bug Fixes
* UI: Styling bug fixes, story updates, and more QA ([#5650](https://github.com/storybooks/storybook/pull/5650))
* UI: V5 style refinements ([#5562](https://github.com/storybooks/storybook/pull/5562))
## 5.0.0-rc.2 (February 19, 2019)
### Features
* UI: Allow collapsing active story and use separate expansion for filtered ([#5625](https://github.com/storybooks/storybook/pull/5625))
### Bug Fixes
* Addon-a11y: Fix tab highlighting ([#5646](https://github.com/storybooks/storybook/pull/5646))
* Addon-jest: Fix event subscription ([#5644](https://github.com/storybooks/storybook/pull/5644))
* UI: Handle old versions in version check ([#5638](https://github.com/storybooks/storybook/pull/5638))
### Maintenance
* UI: Fix some prop warnings ([#5635](https://github.com/storybooks/storybook/pull/5635))
* UI: Use the correct props to start the tooltip open ([#5610](https://github.com/storybooks/storybook/pull/5610))
## 4.1.12 (February 18, 2019)
### Bug Fixes
* Addon-google-analytics: Add missing `register.js` file ([#5379](https://github.com/storybooks/storybook/pull/5379))
### Dependency Upgrades
* Update modal manager for rn 0.58 support ([#5581](https://github.com/storybooks/storybook/pull/5581))
## 5.0.0-rc.1 (February 16, 2019)
### Bug Fixes
* Core: Add missing babel-preset-env dependency ([#5617](https://github.com/storybooks/storybook/pull/5617))
## 5.0.0-rc.0 (February 16, 2019)
Welcome to Storybook 5 (SB5) with a beautiful new user interface including:
* Navigation sidebar redesign
* New canvas toolbar
* Customizable keyboard shortcuts
* Improved search
* Version update notifications
SB5 also includes a new URL structure, expanded addon API, and many more features and architectural improvements.
See [the RC announcement](https://gist.github.com/shilman/0332090b63f1798a58ed8d85db44f4b4) for more details!
## 5.0.0-beta.4 (February 15, 2019)
### Bug Fixes
* UI: Fix mobile view ([#5603](https://github.com/storybooks/storybook/pull/5603))
* UI: Misc warning fixes ([#5601](https://github.com/storybooks/storybook/pull/5601))
* UI: Fix ie 11 ([#5599](https://github.com/storybooks/storybook/pull/5599))
* CLI: Fix for when outputDir is an absolute path ([#5573](https://github.com/storybooks/storybook/pull/5573))
* CLI: Avoid false-negative checks for port ([#5565](https://github.com/storybooks/storybook/pull/5565))
* Core: Prioritise programatic configuration ([#5564](https://github.com/storybooks/storybook/pull/5564))
* UI: FIX clear search ([#5550](https://github.com/storybooks/storybook/pull/5550))
* Core: Transpile safe-eval package ([#5498](https://github.com/storybooks/storybook/pull/5498))
* UI: Add default backgrounds to official example ([#5585](https://github.com/storybooks/storybook/pull/5585))
## 5.0.0-beta.3 (February 13, 2019)
### Bug Fixes
* UI: V5 styling refinements ([#5562](https://github.com/storybooks/storybook/pull/5562))
## 5.0.0-beta.2 (February 9, 2019)
### Features
* Storyshots: puppeteer launch config for CI ([#5487](https://github.com/storybooks/storybook/pull/5487))
### Bug Fixes
* Addon-notes: fix loading behavior ([#5514](https://github.com/storybooks/storybook/pull/5514))
* CLI: Workaround -h shorthand conflict ([#5464](https://github.com/storybooks/storybook/pull/5464))
* Addons: remove tool addon styling ([#5452](https://github.com/storybooks/storybook/pull/5452))
### Maintenance
* UI: V5 style refinements ([#5444](https://github.com/storybooks/storybook/pull/5444))
* Core: Allow ignoring preview bundle building in core ([#5523](https://github.com/storybooks/storybook/pull/5523))
* Core: Extract client-api pkg from core ([#5521](https://github.com/storybooks/storybook/pull/5521))
* UI: Add react element hoisting && ADD display names via babel-plugin ([#5454](https://github.com/storybooks/storybook/pull/5454))
* Build: TEMP disable the image snapshots ([#5469](https://github.com/storybooks/storybook/pull/5469))
### Dependency Upgrades
* Bump vue and vue-template-compiler ([#5516](https://github.com/storybooks/storybook/pull/5516))
* Bump react from 16.7.0 to 16.8.1 ([#5517](https://github.com/storybooks/storybook/pull/5517))
* Bump react-is from 16.7.0 to 16.8.1 ([#5504](https://github.com/storybooks/storybook/pull/5504))
* Bump eslint-plugin-jest from 22.2.1 to 22.2.2 ([#5505](https://github.com/storybooks/storybook/pull/5505))
* Bump babel-plugin-emotion from 10.0.6 to 10.0.7 ([#5502](https://github.com/storybooks/storybook/pull/5502))
* Bump ember-source from 3.7.2 to 3.7.3 ([#5501](https://github.com/storybooks/storybook/pull/5501))
* Bump lint-staged from 8.1.1 to 8.1.3 ([#5503](https://github.com/storybooks/storybook/pull/5503))
* Bump enzyme-adapter-react-16 from 1.9.0 to 1.9.1 ([#5507](https://github.com/storybooks/storybook/pull/5507))
* dependencies: update lit-html to 1.0.0 ([#5490](https://github.com/storybooks/storybook/pull/5490))
* Bump esm from 3.2.0 to 3.2.1 ([#5492](https://github.com/storybooks/storybook/pull/5492))
* Bump webpack-cli from 3.2.1 to 3.2.3 ([#5494](https://github.com/storybooks/storybook/pull/5494))
* Bump @babel/plugin-proposal-object-rest-spread from 7.3.1 to 7.3.2 ([#5496](https://github.com/storybooks/storybook/pull/5496))
* Bump fuse.js from 3.3.0 to 3.3.1 ([#5497](https://github.com/storybooks/storybook/pull/5497))
* Bump jest-emotion from 10.0.6 to 10.0.7 ([#5495](https://github.com/storybooks/storybook/pull/5495))
* Bump prettier from 1.16.1 to 1.16.4 ([#5482](https://github.com/storybooks/storybook/pull/5482))
* Bump @types/webpack-env from 1.13.6 to 1.13.7 ([#5477](https://github.com/storybooks/storybook/pull/5477))
* Bump typescript from 3.2.4 to 3.3.1 ([#5479](https://github.com/storybooks/storybook/pull/5479))
* Bump eslint-plugin-import from 2.15.0 to 2.16.0 ([#5480](https://github.com/storybooks/storybook/pull/5480))
* Bump storybook-chromatic from 1.2.5 to 1.2.6 ([#5481](https://github.com/storybooks/storybook/pull/5481))
* Bump enzyme-adapter-react-16 from 1.8.0 to 1.9.0 ([#5478](https://github.com/storybooks/storybook/pull/5478))
* Bump markdown-to-jsx from 6.9.0 to 6.9.1 ([#5465](https://github.com/storybooks/storybook/pull/5465))
* Bump @angular/compiler from 7.2.2 to 7.2.3 ([#5466](https://github.com/storybooks/storybook/pull/5466))
* Bump babel-plugin-react-docgen from 2.0.0 to 2.0.2 ([#5468](https://github.com/storybooks/storybook/pull/5468))
* Bump danger from 7.0.4 to 7.0.7 ([#5467](https://github.com/storybooks/storybook/pull/5467))
* Bump puppeteer from 1.11.0 to 1.12.0 ([#5450](https://github.com/storybooks/storybook/pull/5450))
* Bump @angular/platform-browser-dynamic from 7.2.2 to 7.2.3 ([#5434](https://github.com/storybooks/storybook/pull/5434))
* Bump esm from 3.1.4 to 3.2.0 ([#5447](https://github.com/storybooks/storybook/pull/5447))
* Bump eslint-plugin-jest from 22.1.3 to 22.2.1 ([#5448](https://github.com/storybooks/storybook/pull/5448))
* Bump danger from 7.0.2 to 7.0.4 ([#5449](https://github.com/storybooks/storybook/pull/5449))
* Bump case-sensitive-paths-webpack-plugin from 2.1.2 to 2.2.0 ([#5451](https://github.com/storybooks/storybook/pull/5451))
## 5.0.0-beta.1 (February 1, 2019)
### Bug Fixes
* Addon-backgrounds: Fix tool not appearing, or appearing only after a few navigations ([#5439](https://github.com/storybooks/storybook/pull/5439))
### Maintenance
* UI:Added iframe stories ([#5428](https://github.com/storybooks/storybook/pull/5428))
* UI: Broke up Sidebar (ex-nav) and made stories for subcomponents ([#5426](https://github.com/storybooks/storybook/pull/5426))
* UI: Improve about/shortcuts stories by passing in `onClose` as a prop. ([#5425](https://github.com/storybooks/storybook/pull/5425))
## 5.0.0-beta.0 (February 1, 2019)
Failed release
## 5.0.0-alpha.11 (February 1, 2019)
### Features
* Addon-knobs: Added property name into form fields ([#5414](https://github.com/storybooks/storybook/pull/5414))
### Bug Fixes
* UI: Fix the layout issue where panels still sort-of appear on non story viewmodes ([#5413](https://github.com/storybooks/storybook/pull/5413))
### Maintenance
* UI: Refactoring components and adding more stories ([#5404](https://github.com/storybooks/storybook/pull/5404))
* UI: Add extra stories for StoryExplorer component & subcomponents ([#5424](https://github.com/storybooks/storybook/pull/5424))
* UI: theming treeview & preview ([#5372](https://github.com/storybooks/storybook/pull/5372))
### Dependency Upgrades
* Bump @ngrx/store from 7.1.0 to 7.2.0 ([#5433](https://github.com/storybooks/storybook/pull/5433))
* Bump @angular/cli from 7.2.2 to 7.3.0 ([#5432](https://github.com/storybooks/storybook/pull/5432))
* Bump ember-cli-babel from 7.4.0 to 7.4.1 ([#5431](https://github.com/storybooks/storybook/pull/5431))
* Bump @ember/test-helpers from 1.3.0 to 1.3.1 ([#5430](https://github.com/storybooks/storybook/pull/5430))
* Bump jest-diff from 23.6.0 to 24.0.0 ([#5429](https://github.com/storybooks/storybook/pull/5429))
* Bump @types/react from 16.7.21 to 16.7.22 ([#5405](https://github.com/storybooks/storybook/pull/5405))
* Bump @types/node from 10.12.18 to 10.12.19 ([#5406](https://github.com/storybooks/storybook/pull/5406))
* Bump autoprefixer from 9.4.6 to 9.4.7 ([#5407](https://github.com/storybooks/storybook/pull/5407))
* Bump storybook-chromatic from 1.2.4 to 1.2.5 ([#5408](https://github.com/storybooks/storybook/pull/5408))
* Bump rxjs-compat from 6.3.3 to 6.4.0 ([#5409](https://github.com/storybooks/storybook/pull/5409))
* Bump jest-config from 23.6.0 to 24.0.0 ([#5410](https://github.com/storybooks/storybook/pull/5410))
* Bump jest-environment-jsdom from 23.4.0 to 24.0.0 ([#5398](https://github.com/storybooks/storybook/pull/5398))
* Bump lint-staged from 8.1.0 to 8.1.1 ([#5395](https://github.com/storybooks/storybook/pull/5395))
* Bump ts-node from 8.0.1 to 8.0.2 ([#5396](https://github.com/storybooks/storybook/pull/5396))
* Bump @angular/compiler from 7.2.1 to 7.2.2 ([#5394](https://github.com/storybooks/storybook/pull/5394))
* Bump eslint-plugin-jsx-a11y from 6.1.2 to 6.2.0 ([#5397](https://github.com/storybooks/storybook/pull/5397))
* Bump telejson from 1.0.0 to 1.0.1 ([#5399](https://github.com/storybooks/storybook/pull/5399))
* Bump @ember/test-helpers from 1.1.0 to 1.3.0 ([#5383](https://github.com/storybooks/storybook/pull/5383))
* Bump esm from 3.1.1 to 3.1.4 ([#5384](https://github.com/storybooks/storybook/pull/5384))
* Bump ws from 6.1.2 to 6.1.3 ([#5385](https://github.com/storybooks/storybook/pull/5385))
* Bump jest-jasmine2 from 23.6.0 to 24.0.0 ([#5386](https://github.com/storybooks/storybook/pull/5386))
* Bump vue-loader from 15.6.0 to 15.6.2 ([#5387](https://github.com/storybooks/storybook/pull/5387))
* Bump @types/react from 16.7.20 to 16.7.21 ([#5388](https://github.com/storybooks/storybook/pull/5388))
## 5.0.0-alpha.10 (January 28, 2019)
### Features
* Core: Version update use persistence ([#5370](https://github.com/storybooks/storybook/pull/5370))
* Addon-Notes: Add giphy support ([#5381](https://github.com/storybooks/storybook/pull/5381))
### Bug Fixes
* UI: Fix issue where "Tab" keyboard input => []. ([#5374](https://github.com/storybooks/storybook/pull/5374))
* UI: FIX keybindings were pointing to null events ([#5375](https://github.com/storybooks/storybook/pull/5375))
* Addon-GA: Add missing `register.js` file in base directory ([#5379](https://github.com/storybooks/storybook/pull/5379))
### Maintenance
* Typescript: Migrate addon-cssresources ([#5380](https://github.com/storybooks/storybook/pull/5380))
* UI: Keyboard shortcuts refactor ([#5359](https://github.com/storybooks/storybook/pull/5359))
### Dependency Upgrades
* Bump enzyme-adapter-react-16 from 1.7.1 to 1.8.0 ([#5366](https://github.com/storybooks/storybook/pull/5366))
* Bump typescript from 3.2.2 to 3.2.4 ([#5368](https://github.com/storybooks/storybook/pull/5368))
* Bump @babel/plugin-transform-react-jsx from 7.2.0 to 7.3.0 ([#5367](https://github.com/storybooks/storybook/pull/5367))
* Bump @babel/preset-env from 7.2.3 to 7.3.1 ([#5369](https://github.com/storybooks/storybook/pull/5369))
* Bump vue-loader from 15.5.1 to 15.6.0 ([#5365](https://github.com/storybooks/storybook/pull/5365))
* Bump prettier from 1.15.3 to 1.16.1 ([#5354](https://github.com/storybooks/storybook/pull/5354))
* Bump ember-source from 3.7.0 to 3.7.2 ([#5358](https://github.com/storybooks/storybook/pull/5358))
* Bump @angular/platform-browser-dynamic from 7.2.1 to 7.2.2 ([#5353](https://github.com/storybooks/storybook/pull/5353))
* Bump ember-cli-babel from 7.2.0 to 7.4.0 ([#5357](https://github.com/storybooks/storybook/pull/5357))
* Bump zone.js from 0.8.28 to 0.8.29 ([#5355](https://github.com/storybooks/storybook/pull/5355))
* Bump lerna from 3.10.6 to 3.10.7 ([#5356](https://github.com/storybooks/storybook/pull/5356))
* Bump eslint-plugin-import from 2.14.0 to 2.15.0 ([#5352](https://github.com/storybooks/storybook/pull/5352))
* Bump immer from 1.10.5 to 1.12.0 ([#5345](https://github.com/storybooks/storybook/pull/5345))
* Bump @babel/plugin-proposal-object-rest-spread from 7.2.0 to 7.3.1 ([#5342](https://github.com/storybooks/storybook/pull/5342))
* Bump autoprefixer from 9.4.5 to 9.4.6 ([#5347](https://github.com/storybooks/storybook/pull/5347))
* Bump react-focus-lock from 1.17.6 to 1.17.7 ([#5344](https://github.com/storybooks/storybook/pull/5344))
* Bump @ngrx/store from 7.0.0 to 7.1.0 ([#5341](https://github.com/storybooks/storybook/pull/5341))
## 4.1.11 (January 24, 2019)
### Bug Fixes
* React-native: Fixed isUIHidden param ([#5067](https://github.com/storybooks/storybook/pull/5067))
* React-native: Disabling warning if story is not set in async storage ([#5068](https://github.com/storybooks/storybook/pull/5068))
## 4.1.10 (January 24, 2019)
Release failed due to NPM error
## 5.0.0-alpha.9 (January 23, 2019)
### Features
* Core: Add a STORY_UNCHANGED event ([#5340](https://github.com/storybooks/storybook/pull/5340))
* Core: Add a persistence API to context/state -- use for keyboard shortcuts ([#5289](https://github.com/storybooks/storybook/pull/5289))
### Maintenance
* Addon-knobs: Fix story so array type is array ([#5318](https://github.com/storybooks/storybook/pull/5318))
### Dependency Upgrades
* Bump ts-node from 7.0.1 to 8.0.1 ([#5346](https://github.com/storybooks/storybook/pull/5346))
* Bump marko from 4.14.20 to 4.14.21 ([#5343](https://github.com/storybooks/storybook/pull/5343))
* Bump @types/jest from 23.3.12 to 23.3.13 ([#5327](https://github.com/storybooks/storybook/pull/5327))
* Bump @babel/plugin-proposal-class-properties from 7.2.3 to 7.3.0 ([#5326](https://github.com/storybooks/storybook/pull/5326))
* Bump esm from 3.1.0 to 3.1.1 ([#5328](https://github.com/storybooks/storybook/pull/5328))
* Bump resolve from 1.9.0 to 1.10.0 ([#5329](https://github.com/storybooks/storybook/pull/5329))
* Bump webpack from 4.28.4 to 4.29.0 ([#5331](https://github.com/storybooks/storybook/pull/5331))
## 4.1.9 (January 23, 2019)
Note that `4.1.7` contained a bad merge that missed an important change. This release fixes that:
### Bug Fixes
* Core: Add missing polyfills to manager to support IE ([#5238](https://github.com/storybooks/storybook/pull/5238))
## 4.1.8 (January 23, 2019)
Bad release
## 5.0.0-alpha.8 (January 22, 2019)
### Features
* UI: Memoize treeview utils && ADD fuzzy search ([#5321](https://github.com/storybooks/storybook/pull/5321))
### Maintenance
* Migrate addon google analytics to TS ([#5307](https://github.com/storybooks/storybook/pull/5307))
* Storyshots: restore emotion snapshots ([#5305](https://github.com/storybooks/storybook/pull/5305))
### Dependency Upgrades
* Bump eslint-config-prettier from 3.5.0 to 3.6.0 ([#5311](https://github.com/storybooks/storybook/pull/5311))
* Bump eslint-plugin-react from 7.12.3 to 7.12.4 ([#5310](https://github.com/storybooks/storybook/pull/5310))
* Bump vuex from 3.0.1 to 3.1.0 ([#5316](https://github.com/storybooks/storybook/pull/5316))
* Bump lerna from 3.10.5 to 3.10.6 ([#5313](https://github.com/storybooks/storybook/pull/5313))
* Bump react-docgen-typescript-loader from 3.0.0 to 3.0.1 ([#5315](https://github.com/storybooks/storybook/pull/5315))
* Bump eslint from 5.12.0 to 5.12.1 ([#5314](https://github.com/storybooks/storybook/pull/5314))
* Bump jscodeshift from 0.6.2 to 0.6.3 ([#5317](https://github.com/storybooks/storybook/pull/5317))
## 5.0.0-alpha.7 (January 20, 2019)
### Breaking Changes
* Addon-centered: Add special entry-points for Vue and React ([#5296](https://github.com/storybooks/storybook/pull/5296))
### Features
* CLI: new `add` command ([#4236](https://github.com/storybooks/storybook/pull/4236))
* UI: set the document title when navigating stories ([#5277](https://github.com/storybooks/storybook/pull/5277))
### Bug Fixes
* Addon-a11y: RE-ADD deprecated 'configureA11Y' for backwards compatibility ([#5302](https://github.com/storybooks/storybook/pull/5302))
* UI: FIX navgition issue for `file://` URLs ([#5295](https://github.com/storybooks/storybook/pull/5295))
* UI: FIX merge mutation ([#5300](https://github.com/storybooks/storybook/pull/5300))
* Core: FIX issue where webpack process would hang when manager build failed ([#5290](https://github.com/storybooks/storybook/pull/5290))
## 5.0.0-alpha.6 (January 18, 2019)
### Maintenance
* Restore official-storybook error test ([#5281](https://github.com/storybooks/storybook/pull/5281))
* Add explicit return types to @storybook/addons ([#5212](https://github.com/storybooks/storybook/pull/5212))
* REFACTOR router into @storybook/router ([#5252](https://github.com/storybooks/storybook/pull/5252))
### Dependency Upgrades
* Bump react-select from 2.2.0 to 2.3.0 ([#5288](https://github.com/storybooks/storybook/pull/5288))
* Bump webpack-dev-middleware from 3.5.0 to 3.5.1 ([#5285](https://github.com/storybooks/storybook/pull/5285))
* Bump dotenv-webpack from 1.6.0 to 1.7.0 ([#5283](https://github.com/storybooks/storybook/pull/5283))
* Bump graphql from 0.13.2 to 14.1.1 ([#5282](https://github.com/storybooks/storybook/pull/5282))
* Bump marko from 4.14.19 to 4.14.20 ([#5284](https://github.com/storybooks/storybook/pull/5284))
* Bumps webpack from 4.28.3 to 4.28.4 ([#5260](https://github.com/storybooks/storybook/pull/5260))
## 4.1.7 (January 17, 2019)
### Bug Fixes
* Core: make absolute DLL path relative ([#5238](https://github.com/storybooks/storybook/pull/5238))
* Addon-actions: import utils directly to prevent import cycles ([#5107](https://github.com/storybooks/storybook/pull/5107))
* Add-knobs: render non-grouped knobs in the ALL tab ([#5106](https://github.com/storybooks/storybook/pull/5106))
## 5.0.0-alpha.5 (January 17, 2019)
### Features
* Core: preserve user-specified iframe url params ([#5272](https://github.com/storybooks/storybook/pull/5272))
### Bug Fixes
* Storyshots: FIX using the wrong parameter for disabling ([#5257](https://github.com/storybooks/storybook/pull/5257))
## 5.0.0-alpha.4 (January 17, 2019)
### Bug Fixes
* Core: Fix iframe url params ([#5265](https://github.com/storybooks/storybook/pull/5265))
### Maintenance
* Core: Rename viewMode/url from `components` to `story` ([#5266](https://github.com/storybooks/storybook/pull/5266))
* Core: Export events constants as named exports ([#5186](https://github.com/storybooks/storybook/pull/5186))
### Dependency Upgrades
* Bump vue and vue-template-compiler ([#5231](https://github.com/storybooks/storybook/pull/5231))
* Bump ember-cli from 3.7.0 to 3.7.1 ([#5243](https://github.com/storybooks/storybook/pull/5243))
* Bump ember-source from 3.6.1 to 3.7.0 ([#5258](https://github.com/storybooks/storybook/pull/5258))
* Bump @angular/platform-browser-dynamic from 7.1.4 to 7.2.0 ([#5259](https://github.com/storybooks/storybook/pull/5259))
* Bump vue-loader from 15.4.2 to 15.5.1 ([#5261](https://github.com/storybooks/storybook/pull/5261))
## 5.0.0-alpha.3 (January 16, 2019)
Test publishing improvements
## 5.0.0-alpha.2 (January 16, 2019)
### Bug Fixes
* Storyshots: Fix async issue with obtaining custom Puppeteer instance … ([#5130](https://github.com/storybooks/storybook/pull/5130))
### Maintenance
* MIGRATE to wrap emotion into a @storybook/theming package ([#5241](https://github.com/storybooks/storybook/pull/5241))
### Dependency Upgrades
* Bump zone.js from 0.8.26 to 0.8.27 ([#5230](https://github.com/storybooks/storybook/pull/5230))
* Bump lerna from 3.8.5 to 3.10.5 ([#5229](https://github.com/storybooks/storybook/pull/5229))
## 5.0.0-alpha.1 (January 14, 2019)
### Bug Fixes
* Core: `no-dll` option to CLI to disable DllReferencePlugin, fix polyfills ([#5238](https://github.com/storybooks/storybook/pull/5238))
* Core: Continue `{name, kind}` support on the `SET_CURRENT_STORY` event ([#5228](https://github.com/storybooks/storybook/pull/5228))
* UI: FIX issue with accidentally thinking things are roots ([#5236](https://github.com/storybooks/storybook/pull/5236))
### Dependency Upgrades
* Bump react-scripts from 2.1.1 to 2.1.3 ([#5214](https://github.com/storybooks/storybook/pull/5214))
## 5.0.0-alpha.0 (January 13, 2019)
### Breaking Changes
* Core: Simplify custom webpack config ([#4927](https://github.com/storybooks/storybook/pull/4927))
* UI: Storybook 5.0 UI and addons overhaul ([#5222](https://github.com/storybooks/storybook/pull/5222))
### Features
* Core: Use new story format in official storybook ([#5058](https://github.com/storybooks/storybook/pull/5058))
* UI: keyboard shortcuts ([#4257](https://github.com/storybooks/storybook/pull/4257))
### Bug Fixes
* React: Merge CRA2 webpack plugins ([#5126](https://github.com/storybooks/storybook/pull/5126))
### Dependency Upgrades
* Bump eslint-plugin-jest from 22.1.2 to 22.1.3 ([#5215](https://github.com/storybooks/storybook/pull/5215))
* Bump eslint from 5.11.0 to 5.12.0 ([#5216](https://github.com/storybooks/storybook/pull/5216))
* Bump jscodeshift from 0.5.1 to 0.6.2 ([#5213](https://github.com/storybooks/storybook/pull/5213))
* Bump ember-cli from 3.6.1 to 3.7.0 ([#5203](https://github.com/storybooks/storybook/pull/5203))
* Bump react-dev-utils from 7.0.0 to 7.0.1 ([#5202](https://github.com/storybooks/storybook/pull/5202))
* Bump ember-cli from 3.6.0 to 3.6.1 ([#5188](https://github.com/storybooks/storybook/pull/5188))
* Bump terser-webpack-plugin from 1.1.0 to 1.2.1 ([#5190](https://github.com/storybooks/storybook/pull/5190))
* Bump chalk from 2.4.1 to 2.4.2 ([#5191](https://github.com/storybooks/storybook/pull/5191))
## 4.2.0-alpha.11 (January 9, 2019)
### Maintenance
* Typescript: Add TypeScript CRA example ([#5120](https://github.com/storybooks/storybook/pull/5120))
* Typescript: Migrate @storybook/channel-postmessage ([#5154](https://github.com/storybooks/storybook/pull/5154))
* Typescript: Migrate @storybook/client-logger ([#5151](https://github.com/storybooks/storybook/pull/5151))
### Dependency Upgrades
* Bump @babel/cli from 7.2.0 to 7.2.3 ([#5178](https://github.com/storybooks/storybook/pull/5178))
* Bump babel-plugin-macros from 2.4.4 to 2.4.5 ([#5177](https://github.com/storybooks/storybook/pull/5177))
* Bump babel-preset-react-app from 6.1.0 to 7.0.0 ([#5176](https://github.com/storybooks/storybook/pull/5176))
* Bump interpret from 1.1.0 to 1.2.0 ([#5175](https://github.com/storybooks/storybook/pull/5175))
* Bump file-loader from 2.0.0 to 3.0.1 ([#5174](https://github.com/storybooks/storybook/pull/5174))
* Bump mini-css-extract-plugin from 0.4.5 to 0.5.0 ([#5173](https://github.com/storybooks/storybook/pull/5173))
* Bump webpack-cli from 3.2.0 to 3.2.1 ([#5172](https://github.com/storybooks/storybook/pull/5172))
* Bump marko from 4.14.12 to 4.14.15 ([#5157](https://github.com/storybooks/storybook/pull/5157))
* Bump @types/jest from 23.3.10 to 23.3.12 ([#5158](https://github.com/storybooks/storybook/pull/5158))
* Bump @angular/compiler from 7.1.3 to 7.1.4 ([#5159](https://github.com/storybooks/storybook/pull/5159))
* Bump dotenv-webpack from 1.5.7 to 1.6.0 ([#5160](https://github.com/storybooks/storybook/pull/5160))
* Bump babel-plugin-macros from 2.4.3 to 2.4.4 ([#5161](https://github.com/storybooks/storybook/pull/5161))
## 4.1.6 (January 9, 2019)
### Bug Fixes
* React: Fix react version backwards compatibility ([#5148](https://github.com/storybooks/storybook/pull/5148))
* UI: fix highlightColor ([#5150](https://github.com/storybooks/storybook/pull/5150))
* Core: Transpile addons.js with Babel for IE11 ([#5081](https://github.com/storybooks/storybook/pull/5081))
### Maintenance
* Add CORS headers to versions.json ([#5155](https://github.com/storybooks/storybook/pull/5155))
### Dependency Upgrades
* Bump puppeteer from 1.9.0 to 1.11.0 ([#5119](https://github.com/storybooks/storybook/pull/5119))
## 4.1.5 (January 9, 2019)
NPM failure, republishing as 4.1.6
## 4.2.0-alpha.10 (January 6, 2019)
### Features
* Addon-a11y: fix addon, add ability to configure context ([#5101](https://github.com/storybooks/storybook/pull/5101))
### Bug Fixes
* Addon-knobs: Render non-grouped knobs in the ALL tab ([#5106](https://github.com/storybooks/storybook/pull/5106))
* Addon-actions: import utils directly to prevent import cycles ([#5107](https://github.com/storybooks/storybook/pull/5107))
### Maintenance
* TypeScript: Migrate @storybook/node-logger ([#5153](https://github.com/storybooks/storybook/pull/5153))
* TypeScript: Migrate @storybook/core-events ([#5140](https://github.com/storybooks/storybook/pull/5140))
### Dependency Upgrades
* bump puppeteer from 1.9.0 to 1.11.0 ([#5119](https://github.com/storybooks/storybook/pull/5119))
* Bump lerna from 3.6.0 to 3.8.4 ([#5142](https://github.com/storybooks/storybook/pull/5142))
* Bump svelte from 2.15.3 to 2.16.0 ([#5145](https://github.com/storybooks/storybook/pull/5145))
* Bump react-dev-utils from 6.1.1 to 7.0.0 ([#5146](https://github.com/storybooks/storybook/pull/5146))
* Bump react-is from 16.6.3 to 16.7.0 ([#5144](https://github.com/storybooks/storybook/pull/5144))
## 4.2.0-alpha.9 (January 4, 2019)
### Bug Fixes
* Transpile addons.js with Babel ([#5081](https://github.com/storybooks/storybook/pull/5081))
### Dependency Upgrades
* [Security] Bump webpack-dev-server from 3.1.10 to 3.1.14 ([#5108](https://github.com/storybooks/storybook/pull/5108))
* Update @storybook/react to include peer dependency @emotion/core ([#5135](https://github.com/storybooks/storybook/pull/5135))
* Bump webpack-cli from 3.1.2 to 3.2.0 ([#5137](https://github.com/storybooks/storybook/pull/5137))
* Bump resolve from 1.8.1 to 1.9.0 ([#5139](https://github.com/storybooks/storybook/pull/5139))
* Bump husky from 1.3.0 to 1.3.1 ([#5138](https://github.com/storybooks/storybook/pull/5138))
* Bump @types/node from 10.12.17 to 10.12.18 ([#5098](https://github.com/storybooks/storybook/pull/5098))
* Bump svelte-loader from 2.11.0 to 2.12.0 ([#5125](https://github.com/storybooks/storybook/pull/5125))
* Bump react-modal from 3.7.1 to 3.8.1 ([#5124](https://github.com/storybooks/storybook/pull/5124))
* Bump marko from 4.14.3 to 4.14.12 ([#5123](https://github.com/storybooks/storybook/pull/5123))
* Bump css-loader from 1.0.1 to 2.1.0 ([#5115](https://github.com/storybooks/storybook/pull/5115))
* Bump lit-html from 0.12.0 to 0.14.0 ([#5114](https://github.com/storybooks/storybook/pull/5114))
* Bump @angular/platform-browser-dynamic from 7.1.3 to 7.1.4 ([#5113](https://github.com/storybooks/storybook/pull/5113))
## 4.2.0-alpha.8 (December 28, 2018)
### Maintenance
* Typescript: Migrate @storybook/channel-websocket ([#5046](https://github.com/storybooks/storybook/pull/5046))
* Typescript: Migrate @storybook/addons ([#5018](https://github.com/storybooks/storybook/pull/5018))
### Dependency Upgrades
* Bump @babel/plugin-proposal-class-properties from 7.2.1 to 7.2.3 ([#5070](https://github.com/storybooks/storybook/pull/5070))
* Bump babel-plugin-named-asset-import from 0.2.3 to 0.3.0 ([#5100](https://github.com/storybooks/storybook/pull/5100))
* Bump eslint from 5.10.0 to 5.11.0 ([#5097](https://github.com/storybooks/storybook/pull/5097))
* Bump loader-utils from 1.2.0 to 1.2.1 ([#5099](https://github.com/storybooks/storybook/pull/5099))
* Bump boxen from 2.0.0 to 2.1.0 ([#5104](https://github.com/storybooks/storybook/pull/5104))
* Bump @ngrx/store from 6.1.2 to 7.0.0 ([#5105](https://github.com/storybooks/storybook/pull/5105))
* Bump react-select from 2.1.1 to 2.1.2 ([#5102](https://github.com/storybooks/storybook/pull/5102))
## 4.1.4 (December 25, 2018)
### Bug Fixes
* Core: Load Symbol polyfill before any other code ([#5082](https://github.com/storybooks/storybook/pull/5082))
* React: Fix error with new CRA Webpack config ([#5074](https://github.com/storybooks/storybook/pull/5074))
## 4.2.0-alpha.7 (December 25, 2018)
### Bug Fixes
* React: Fix error with new CRA Webpack config ([#5074](https://github.com/storybooks/storybook/pull/5074))
* Core: Load Symbol polyfill before any other code ([#5082](https://github.com/storybooks/storybook/pull/5082))
### Dependency Upgrades
* Bump eslint-plugin-jest from 21.27.2 to 22.1.2 ([#5089](https://github.com/storybooks/storybook/pull/5089))
* Bump react-color from 2.14.1 to 2.17.0 ([#5083](https://github.com/storybooks/storybook/pull/5083))
* Bump @angular-devkit/build-angular from 0.10.7 to 0.11.4 ([#5084](https://github.com/storybooks/storybook/pull/5084))
* Bump ts-loader from 5.3.1 to 5.3.2 ([#5085](https://github.com/storybooks/storybook/pull/5085))
* Bump loader-utils from 1.1.0 to 1.2.0 ([#5086](https://github.com/storybooks/storybook/pull/5086))
* Bump protractor from 5.4.1 to 5.4.2 ([#5087](https://github.com/storybooks/storybook/pull/5087))
* Bump ember-cli from 3.5.1 to 3.6.0 ([#5088](https://github.com/storybooks/storybook/pull/5088))
* Bump tslint from 5.11.0 to 5.12.0 ([#5090](https://github.com/storybooks/storybook/pull/5090))
* Bump react-dom from 16.6.3 to 16.7.0 ([#5071](https://github.com/storybooks/storybook/pull/5071))
## 4.1.3 (December 20, 2018)
### Bug Fixes
* React: remove unnecessary dependencies, fix aliasing ([#5047](https://github.com/storybooks/storybook/pull/5047))
* React: alias to react & react-dom ([#5016](https://github.com/storybooks/storybook/pull/5016))
* Addon-knobs: Fix color picker display ([#5010](https://github.com/storybooks/storybook/pull/5010))
## 4.2.0-alpha.6 (December 20, 2018)
### Features
* React-Native: Change on-device layout to absolute position ([#4962](https://github.com/storybooks/storybook/pull/4962))
* Addon-Info: add css classes for style overrides ([#4589](https://github.com/storybooks/storybook/pull/4589))
### Bug Fixes
* Addon-Info: Display description when story name matches component ([#4863](https://github.com/storybooks/storybook/pull/4863))
* React-Native: Disable warning if story is not set in async storage ([#5068](https://github.com/storybooks/storybook/pull/5068))
* React-Native: Fixed isUIHidden param ([#5067](https://github.com/storybooks/storybook/pull/5067))
* Vue: Fix reloading and story decoration ([#5057](https://github.com/storybooks/storybook/pull/5057))
### Maintenance
* TypeScript: migrate @storybook/channels to typescript ([#4977](https://github.com/storybooks/storybook/pull/4977))
### Dependency Upgrades
* Bump babel-plugin-macros from 2.4.2 to 2.4.3 ([#5060](https://github.com/storybooks/storybook/pull/5060))
* Bump @babel/core from 7.2.0 to 7.2.2 ([#5059](https://github.com/storybooks/storybook/pull/5059))
* Bump ember-cli-htmlbars-inline-precompile from 1.0.5 to 2.1.0 ([#5064](https://github.com/storybooks/storybook/pull/5064))
* Bump react-test-renderer from 16.6.3 to 16.7.0 ([#5063](https://github.com/storybooks/storybook/pull/5063))
* Bump autoprefixer from 9.4.2 to 9.4.3 ([#5061](https://github.com/storybooks/storybook/pull/5061))
## 4.2.0-alpha.5 (December 19, 2018)
### Bug Fixes
* React: Remove unnecessary dependencies, fix aliasing ([#5047](https://github.com/storybooks/storybook/pull/5047))
### Dependency Upgrades
* Bump @types/node from 10.12.14 to 10.12.17 ([#5045](https://github.com/storybooks/storybook/pull/5045))
* Bump ember-source from 3.5.1 to 3.6.1 ([#5044](https://github.com/storybooks/storybook/pull/5044))
## 4.2.0-alpha.4 (December 18, 2018)
### Bug Fixes
* React: fix alias for react(-dom) to resolve to the user's version ([#5042](https://github.com/storybooks/storybook/pull/5042))
### Dependency Upgrades
* Bump husky from 1.2.0 to 1.3.0 ([#5038](https://github.com/storybooks/storybook/pull/5038))
* Bump fork-ts-checker-webpack-plugin from 0.4.15 to 0.5.2 ([#5037](https://github.com/storybooks/storybook/pull/5037))
## 4.2.0-alpha.3 (December 18, 2018)
### Bug Fixes
* React: add alias to react & react-dom ([#5016](https://github.com/storybooks/storybook/pull/5016))
* Addon-knobs: fix color picker display ([#5010](https://github.com/storybooks/storybook/pull/5010))
## 4.2.0-alpha.2 (December 16, 2018)
### Features
* Addon-Info: add markdown support for jsdoc comments ([#4983](https://github.com/storybooks/storybook/pull/4983))
* Addon-Storysource: support Flow ([#4971](https://github.com/storybooks/storybook/pull/4971))
### Maintenance
* Make applyPresets function signature more consistent ([#4988](https://github.com/storybooks/storybook/pull/4988))
### Dependency Upgrades
* RESET lockfile ([#4991](https://github.com/storybooks/storybook/pull/4991))
## 4.1.2 (December 15, 2018)
### Bug Fixes
* Addon-Knob: Add missing key property in Panel ([#4507](https://github.com/storybooks/storybook/pull/4507))
* Fix package version dependencies ([#4960](https://github.com/storybooks/storybook/pull/4960))
## 4.2.0-alpha.1 (December 12, 2018)
Fixes 4.2.0-alpha.0
### Features
* Addon-info: add forwardRef support ([#4961](https://github.com/storybooks/storybook/pull/4961))
### Bug Fixes
* Addon-knobs: Add missing key property in Panel ([#4507](https://github.com/storybooks/storybook/pull/4507))
### Maintenance
* Addon-notes: Migrated to TypeScript ([#4758](https://github.com/storybooks/storybook/pull/4758))
### Dependency Upgrades
* Fix: Add missing peer dependencies to addon-knobs ([#4928](https://github.com/storybooks/storybook/pull/4928))
## 4.2.0-alpha.0 (December 12, 2018)
Bad release
## 4.1.1 (December 12, 2018)
### Bug Fixes
* FIX react native by adding an empty array named dlls to the templateParameters ([#4985](https://github.com/storybooks/storybook/pull/4985))
## 4.1.0 (December 12, 2018)
Storybook 4.1 with performance and compatibility improvements! Highlights include:
* Core: Performance optimizations on separate manager preview split, improved cold start, restart & rebuild ([#4834](https://github.com/storybooks/storybook/pull/4834))
* React: add support for all versions of react ([#4808](https://github.com/storybooks/storybook/pull/4808))
* Addon-CSSResources: new adddon to dynamically add/remove css ([#4622](https://github.com/storybooks/storybook/pull/4622))
* React: use babel presets/plugins based on CRA. ([#4836](https://github.com/storybooks/storybook/pull/4836))
* React-native: Add ability to filter story list ([#4806](https://github.com/storybooks/storybook/pull/4806))
* React: Add TypeScript support for react-scripts ([#4824](https://github.com/storybooks/storybook/pull/4824))
There are dozens more fixes, features, and tweaks in the 4.1 release. See changelogs for `4.1.0-*` for details.
## 4.1.0-alpha.13 (December 12, 2018)
### Maintenance
* React-native: add core-js to addons ([#4981](https://github.com/storybooks/storybook/pull/4981))
## 4.1.0-alpha.12 (December 11, 2018)
### Bug Fixes
* Fix storyshots by compiling JS modules ([#4967](https://github.com/storybooks/storybook/pull/4967))
* Angular: move 'core-js/modules/es6.promise' into storyshots ([#4929](https://github.com/storybooks/storybook/pull/4929))
## 4.0.12 (December 5, 2018)
### Bug Fixes
* Addon-a11y: Fix runtime errors in older browsers ([#4904](https://github.com/storybooks/storybook/pull/4904))
## 4.1.0-alpha.11 (December 5, 2018)
### Features
* Add CRA TypeScript support for .storybook folder ([#4902](https://github.com/storybooks/storybook/pull/4902))
### Bug Fixes
* React-native: Fix async storage ([#4907](https://github.com/storybooks/storybook/pull/4907))
* Core: replace babel/runtime with core-js to fix some aliasing issues ([#4900](https://github.com/storybooks/storybook/pull/4900))
### Maintenance
* Core: More granular methods separation in "build-static" and "build-dev" ([#4919](https://github.com/storybooks/storybook/pull/4919))
* Examples: replace deprecated setOptions with withOptions ([#4899](https://github.com/storybooks/storybook/pull/4899))
## 4.0.11 (December 3, 2018)
### Bug Fixes
* Restore index.html in cra-kitchen-sink ([#4856](https://github.com/storybooks/storybook/pull/4856))
* Add try, catch for IE11 as it breaks script execution ([#4870](https://github.com/storybooks/storybook/pull/4870))
## 4.0.10 (December 2, 2018)
Fixes 4.0.9
### Bug Fixes
* Core: Use correct cache directory path ([#4792](https://github.com/storybooks/storybook/pull/4792))
* Addon-Info: fix docgen description display ([#4685](https://github.com/storybooks/storybook/pull/4685))
* Addon-storyshots-puppeteer: fix peerDependencies ([#4828](https://github.com/storybooks/storybook/pull/4828))
## 4.1.0-alpha.10 (December 1, 2018)
### Maintenance
* Performance optimizations on separate manager preview split, improved cold start, restart & rebuild ([#4834](https://github.com/storybooks/storybook/pull/4834))
## 4.1.0-alpha.9 (November 29, 2018)
### Features
* UI: Accessible success/fail colors ([#4843](https://github.com/storybooks/storybook/pull/4843))
* React-native: add option to set keyboarVerticalOffset ([#4862](https://github.com/storybooks/storybook/pull/4862))
* Addon-CSSResources: new adddon to dynamically add/remove css ([#4622](https://github.com/storybooks/storybook/pull/4622))
### Bug Fixes
* Core: Add try, catch for history API for IE11 ([#4870](https://github.com/storybooks/storybook/pull/4870))
* Core: Don't copy index.html on build-storybook ([#4856](https://github.com/storybooks/storybook/pull/4856))
* React-native: properly set initial story out of Async Storage. ([#4872](https://github.com/storybooks/storybook/pull/4872))
* React-native: show webpack-related build issues ([#4883](https://github.com/storybooks/storybook/pull/4883))
* Addon-info: fix docgen description display ([#4685](https://github.com/storybooks/storybook/pull/4685))
### Dependency Upgrades
* Bump svelte to 2.15.3, addresses !4478 ([#4842](https://github.com/storybooks/storybook/pull/4842))
## 4.1.0-alpha.8 (November 25, 2018)
### Features
* React: use babel presets/plugins based on CRA. ([#4836](https://github.com/storybooks/storybook/pull/4836))
* React-native: Add ability to filter story list ([#4806](https://github.com/storybooks/storybook/pull/4806))
### Bug Fixes
* Core: Don't mangle production build ([#4838](https://github.com/storybooks/storybook/pull/4838))
* HTML: Don't change rootElement when received node is the same ([#4822](https://github.com/storybooks/storybook/pull/4822))
### Maintenance
* Fix snapshots to use "emotion/snapshot-serializer" ([#4837](https://github.com/storybooks/storybook/pull/4837))
## 4.1.0-alpha.7 (November 22, 2018)
### Features
* Add TypeScript support for react-scripts ([#4824](https://github.com/storybooks/storybook/pull/4824))
## 4.1.0-alpha.5/6 (November 22, 2018)
Publish failed
## 4.1.0-alpha.4 (November 21, 2018)
### Features
* ADD support for all versions of react ([#4808](https://github.com/storybooks/storybook/pull/4808))
### Bug Fixes
* Use correct cache directory path ([#4792](https://github.com/storybooks/storybook/pull/4792))
## 4.0.9 (November 26, 2018)
Broken release (see https://github.com/storybooks/storybook/issues/4897)
## 4.0.8 (November 21, 2018)
### Bug Fixes
* Addon-knobs: Vue optimize on force render ([#4773](https://github.com/storybooks/storybook/pull/4773))
## 4.1.0-alpha.3 (November 15, 2018)
### Maintenance
* REFACTOR dev-serve to output less noise ([#4791](https://github.com/storybooks/storybook/pull/4791))
* Separate manager and preview part.2 ([#4789](https://github.com/storybooks/storybook/pull/4789))
### Dependency Upgrades
* Use alpha minify dependency to upgrade transitive lodash dependencies ([#4771](https://github.com/storybooks/storybook/pull/4771))
## 4.0.7 (November 15, 2018)
### Bug Fixes
* Vue/Angular/Mithril/Polymer: Add missing "forceReRender" and "addParameters" ([#4767](https://github.com/storybooks/storybook/pull/4767))
## 4.1.0-alpha.2 (November 13, 2018)
### Features
* Core: Interpolation for multiple environment variables ([#4761](https://github.com/storybooks/storybook/pull/4761))
* UI: deep theming for stories nav panel ([#4702](https://github.com/storybooks/storybook/pull/4702))
* React-native: Persist last displayed story, allow to set initial story. ([#4713](https://github.com/storybooks/storybook/pull/4713))
### Bug Fixes
* Better a11y ([#4704](https://github.com/storybooks/storybook/pull/4704))
* Remove z-index from vertical resizer ([#4651](https://github.com/storybooks/storybook/pull/4651))
* React: Ensure @storybook/react can be imported in Node.js without errors ([#4757](https://github.com/storybooks/storybook/pull/4757))
### Maintenance
* Core: separate manager from preview ([#4590](https://github.com/storybooks/storybook/pull/4590))
* Add tests for custom react-scripts packages ([#4768](https://github.com/storybooks/storybook/pull/4768))
* FIX deprecation warning from husky ([#4755](https://github.com/storybooks/storybook/pull/4755))
* Tech/silent smoke tests ([#4749](https://github.com/storybooks/storybook/pull/4749))
### Dependency Upgrades
* Bump lint-staged from 7.3.0 to 8.0.4 ([#4673](https://github.com/storybooks/storybook/pull/4673))
* Bump svelte from 2.13.5 to 2.15.2 ([#4726](https://github.com/storybooks/storybook/pull/4726))
* [Security] Bump cached-path-relative from 1.0.1 to 1.0.2 ([#4745](https://github.com/storybooks/storybook/pull/4745))
* Update expo requirement from ^30.0.1 to ^31.0.4 in /examples-native/crna-kitchen-sink ([#4728](https://github.com/storybooks/storybook/pull/4728))
* Bump @storybook/addon-links from 3.4.11 to 4.0.4 in /docs ([#4732](https://github.com/storybooks/storybook/pull/4732))
* Bump react-syntax-highlighter from 9.0.1 to 10.0.0 ([#4654](https://github.com/storybooks/storybook/pull/4654))
* Bump @angular/compiler from 7.0.1 to 7.0.2 ([#4677](https://github.com/storybooks/storybook/pull/4677))
* Bump @types/jest from 23.3.8 to 23.3.9 ([#4658](https://github.com/storybooks/storybook/pull/4658))
* Bump copy-webpack-plugin from 4.5.4 to 4.6.0 ([#4674](https://github.com/storybooks/storybook/pull/4674))
* Bump @ngrx/store from 6.1.1 to 6.1.2 ([#4678](https://github.com/storybooks/storybook/pull/4678))
* [Security] Bump merge from 1.2.0 to 1.2.1 ([#4686](https://github.com/storybooks/storybook/pull/4686))
## 4.0.6 (November 13, 2018)
### Features
* React: add support for custom `react-scripts` packages ([#4712](https://github.com/storybooks/storybook/pull/4712))
### Bug Fixes
* Core: fix NODE_PATH is not being loaded from .env ([#4706](https://github.com/storybooks/storybook/pull/4706))
## 4.0.5 (November 13, 2018)
Publish failed
## 4.1.0-alpha.1
2018-November-06
#### Features
- Core: add cursor images to webpack loader [#4498](https://github.com/storybooks/storybook/pull/4498)
- Storyshots-puppeteer: Allow specifying an existing browser [#4721](https://github.com/storybooks/storybook/pull/4721)
- React-native: close StoryListView after tap again in the current story [#4714](https://github.com/storybooks/storybook/pull/4714)
#### Dependency Upgrades
- Bump @angular/compiler from 7.0.1 to 7.0.2 [#4677](https://github.com/storybooks/storybook/pull/4677)
- Bump @types/jest from 23.3.8 to 23.3.9 [#4658](https://github.com/storybooks/storybook/pull/4658)
- Bump copy-webpack-plugin from 4.5.4 to 4.6.0 [#4674](https://github.com/storybooks/storybook/pull/4674)
- Bump @ngrx/store from 6.1.1 to 6.1.2 [#4678](https://github.com/storybooks/storybook/pull/4678)
- [Security] Bump merge from 1.2.0 to 1.2.1 [#4686](https://github.com/storybooks/storybook/pull/4686)