forked from Reactive-Extensions/RxJS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
log.txt
10598 lines (7069 loc) · 309 KB
/
log.txt
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
commit 3a9dd3d49f37b2851e5737e1dc0f29faefae6e6b
Author: Matthew Podwysocki <[email protected]>
Date: Wed Jun 24 13:10:41 2015 -0400
Adding toPromise links for Issue #776
commit 48db115663f7a85175c374dba9e4ab48ffddb157
Author: Matthew Podwysocki <[email protected]>
Date: Wed Jun 24 13:08:41 2015 -0400
Adding topromise.md for Issue #776
commit b171f2882ba80637cc0915d074a6b42d95dcb243
Author: Matthew Podwysocki <[email protected]>
Date: Tue Jun 23 22:15:12 2015 -0400
Fixing Issue #776
commit 8a668ad571b6431b5c2cfb0ad6da9efcca6dc965
Author: Matthew Podwysocki <[email protected]>
Date: Tue Jun 23 17:24:52 2015 -0400
Adding core
commit a2bbfc7b078e22638b2db07fe617738c402b04b8
Author: Matthew Podwysocki <[email protected]>
Date: Tue Jun 23 15:01:55 2015 -0400
Reorg of firebase docs
commit 58ae1d25fa37c2ce2baad75126aaffcaec39255a
Author: Matthew Podwysocki <[email protected]>
Date: Tue Jun 23 14:18:20 2015 -0400
Fixing Issue #779 for TS/docs
commit a8836600031c9107d03d9e854f02ca891c0bbbe3
Author: Matthew Podwysocki <[email protected]>
Date: Tue Jun 23 13:58:22 2015 -0400
Adding game of life example
commit bebac8b58141cd55a80628f1e6b8a85cc693fa39
Author: Matthew Podwysocki <[email protected]>
Date: Tue Jun 23 13:57:15 2015 -0400
Adding new flux sample
commit 415990d2567ece0deabb0100e7030fb7a7c54fd7
Author: Matthew Podwysocki <[email protected]>
Date: Tue Jun 23 11:27:44 2015 -0400
Fixing Issue #724
commit a63fbd735c5cc680103480eb19d3e5e2e2e2ce09
Merge: b7a2e89 e1e2f46
Author: Matthew Podwysocki <[email protected]>
Date: Tue Jun 23 10:38:50 2015 -0400
Merge branch 'master' of https://github.com/Reactive-Extensions/RxJS
commit b7a2e89f8c9a9623fdb7f908fb5573849d84efd7
Author: Matthew Podwysocki <[email protected]>
Date: Tue Jun 23 10:38:45 2015 -0400
Adding travis gitter hooks
commit e1e2f46cda3b1fdf25d2a4dc0942436f44f8a7d2
Merge: bb29b58 e387e34
Author: Matthew Podwysocki <[email protected]>
Date: Tue Jun 23 10:09:56 2015 -0400
Merge pull request #778 from shakyShane/master
docs: Fix multiple errors in mapping/async/comparing.md
commit e387e34c1792eae63ba5045fbd2a4ec270146932
Author: Shane Osbourne <[email protected]>
Date: Tue Jun 23 13:32:42 2015 +0100
docs: Fix multiple errors in mapping/async/comparing.md
commit bb29b585d835d2a1c4650ccf526af7f95ad2203e
Author: Matthew Podwysocki <[email protected]>
Date: Mon Jun 22 17:10:53 2015 -0400
Adding more docs
commit ee0ce80cc6020f61952f6d9812070d787c0f1a4a
Author: Matthew Podwysocki <[email protected]>
Date: Mon Jun 22 17:10:13 2015 -0400
Adding more docs
commit 0feaae9ef3a70d2c75172331e30e0c6f7bfebe54
Author: Matthew Podwysocki <[email protected]>
Date: Mon Jun 22 17:09:27 2015 -0400
Adding more docs
commit 528e7e490d8267e74aa2c638dafc1cedfd8938f6
Author: Matthew Podwysocki <[email protected]>
Date: Mon Jun 22 16:18:18 2015 -0400
Fixing Issue #764
commit a3a247dba70f376ab7ebc2860d50c21a6f56f375
Merge: 1f39d11 f37c10e
Author: Matthew Podwysocki <[email protected]>
Date: Mon Jun 22 16:14:21 2015 -0400
Merge pull request #774 from gitter-badger/gitter-badge
Add a Gitter chat badge to readme.md
commit f37c10e2eed96cea62ef054fe2595db3fa5d5d5b
Author: The Gitter Badger <[email protected]>
Date: Mon Jun 22 20:13:22 2015 +0000
Added Gitter badge
commit 1f39d11c256d236397efc343f8e88ddaed62a5d0
Merge: 0a66a3a 6e092c2
Author: Matthew Podwysocki <[email protected]>
Date: Mon Jun 22 16:08:45 2015 -0400
Merge pull request #773 from wazaraki/master
Fix indentation
commit 6e092c2074adbea5bb96714d626e42ee552e757f
Author: Wazaraki <[email protected]>
Date: Mon Jun 22 20:03:41 2015 +0000
Fix indentation
Use spaces instead of tabs to comply with project's coding standard.
commit 0a66a3abe7baa02cd440dd55ef1e4cfc9bde14e8
Author: Matthew Podwysocki <[email protected]>
Date: Mon Jun 22 13:04:15 2015 -0400
Fixing controlled issue
commit 8d45ca5b4d1149cf977eb8b38b5e3e697b2d6891
Author: Matthew Podwysocki <[email protected]>
Date: Mon Jun 22 12:36:45 2015 -0400
Fixing Issue #770
commit d875a632a4a863423f3620dc22beb9d3683c2daa
Author: Matthew Podwysocki <[email protected]>
Date: Fri Jun 19 14:24:11 2015 -0400
Fixing examples
commit 87cdad7bfdc8d995fbaaf95f107cbdeb536cf936
Merge: fe08a25 6532621
Author: Matthew Podwysocki <[email protected]>
Date: Tue Jun 16 21:40:45 2015 +0200
Merge pull request #771 from lazaruslarue/patch-2
fix incorrect link to Interval method
commit 6532621ea75450d75a2334f98ddfd95a3ef7eab8
Author: lazarus <[email protected]>
Date: Tue Jun 16 12:13:16 2015 -0700
fix incorrect link to Interval
commit fe08a255a184ac4e218c1fb7f9e793021bc7def4
Merge: df12381 51a71dd
Author: Matthew Podwysocki <[email protected]>
Date: Tue Jun 16 11:14:16 2015 +0200
Merge pull request #768 from josephfinlayson/patch-1
Fixing dead links
commit 51a71dd4213555ce3831e5e87a2c6d56146e0ca7
Author: Joseph Finlayson <[email protected]>
Date: Tue Jun 16 11:10:25 2015 +0200
Fixing dead links
commit df12381038339792f1de18c263fb32ec6f987a86
Merge: 2bbbb2c 167c0b1
Author: Matthew Podwysocki <[email protected]>
Date: Fri Jun 12 20:02:12 2015 -0400
Merge pull request #766 from BerkeleyTrue/patch-2
fix source link should point to source
commit 167c0b1804dd7395ebf91057b060a8d891c8739a
Author: Berkeley Martinez <[email protected]>
Date: Fri Jun 12 15:20:26 2015 -0700
fix source link should point to source
commit 2bbbb2c12d7f321ba1a3bc9eef88142aba64678f
Merge: 2dd46d3 134733f
Author: Matthew Podwysocki <[email protected]>
Date: Fri Jun 12 14:29:39 2015 -0400
Merge pull request #765 from xgrommx/patch-5
Update which-static.md
commit 134733f2843403aca5d0f124dcade8e2ccac9b1c
Author: Denis Stoyanov <[email protected]>
Date: Fri Jun 12 21:26:36 2015 +0300
Update which-static.md
commit 2dd46d3a83bfea4226cda586c0506dd89b213ea4
Merge: f13d0f0 07a95db
Author: Matthew Podwysocki <[email protected]>
Date: Thu Jun 11 17:38:13 2015 -0400
Merge branch 'master' of https://github.com/Reactive-Extensions/RxJS
commit f13d0f0386fc3c564c0a1f1e38b371665a891a1f
Author: Matthew Podwysocki <[email protected]>
Date: Thu Jun 11 17:38:01 2015 -0400
Updating to 3.0
commit 07a95db379d30f8ff5c07d830899bc8c24ea4311
Merge: 8972720 ae3f528
Author: Matthew Podwysocki <[email protected]>
Date: Thu Jun 11 17:09:52 2015 -0400
Merge pull request #761 from athasach/ts-remove-fromItreable
Typescript: Removed deprecated Observable.fromIterable methods
commit ae3f528e60ece982ee3c4f754fff4147b12f4762
Author: Kent Wong <[email protected]>
Date: Thu Jun 11 16:03:14 2015 -0400
Removed deprecated Observable.fromIterable methods. They were also misnamed as fromItreable. A comment regarding its deprecation can be seen here: https://github.com/Reactive-Extensions/RxJS/issues/157#issuecomment-50432734
commit 8972720fc83762631d745c6210bd514bc14c19b9
Merge: 37a2b36 f4fa0d5
Author: Matthew Podwysocki <[email protected]>
Date: Thu Jun 11 15:53:20 2015 -0400
Merge branch 'master' of https://github.com/Reactive-Extensions/RxJS
commit 37a2b36996021b56ba692ca5c98087ced316fef9
Author: Matthew Podwysocki <[email protected]>
Date: Thu Jun 11 15:53:08 2015 -0400
Fixing Scan documentation
commit f4fa0d55a1a9ade582a158cdd93d800cf1281e52
Merge: 3677791 a14dcb7
Author: Matthew Podwysocki <[email protected]>
Date: Thu Jun 11 15:30:10 2015 -0400
Merge pull request #760 from athasach/ts-flatmapobserver
Added Typescript definitions for selectManyObserver and flatMapObserver on Observable
commit 7420a61ca4ec4203bd6d67a536604b294ef94152
Author: Matthew Podwysocki <[email protected]>
Date: Thu Jun 11 14:42:12 2015 -0400
Updating scan
commit a14dcb76f53fba64df4ed395dc3ee6c72d3b0761
Author: Kent Wong <[email protected]>
Date: Thu Jun 11 13:31:36 2015 -0400
Fixed the return type.
commit bc9387611630c824d21323d854615e51942374c2
Author: Kent Wong <[email protected]>
Date: Thu Jun 11 12:53:48 2015 -0400
Added Typescript definitions for Observable<T> selectManyObserver and flatMapObserver methods.
commit 3677791a20a7904c8e99705a8356c9f29c691884
Merge: c5fd2ca 4d3868c
Author: Matthew Podwysocki <[email protected]>
Date: Wed Jun 10 22:50:36 2015 -0400
Merge pull request #757 from kkirsche/patch-1
Remove moot `version` property from bower.json
commit 4d3868cc7b9d62780d539e99eda8e7eb69c95183
Author: Kevin Kirsche <[email protected]>
Date: Wed Jun 10 19:18:12 2015 -0400
Remove moot `version` property from bower.json
Per bower/bower.json-spec@a325da3
commit c5fd2ca606b406a6251b10a937b4806f0d2cd86d
Merge: a150c08 f7ef4fe
Author: Matthew Podwysocki <[email protected]>
Date: Tue Jun 9 22:01:04 2015 -0400
Merge pull request #755 from kcarl-adb/BenchmarkFix
Fix for benchmark.js when using a z-score for determining if the rank…
commit f7ef4feabb80a64d7a3d0ff1dada4875e1a4b28d
Author: Kent Carlson <[email protected]>
Date: Tue Jun 9 17:13:09 2015 -0500
Fix for benchmark.js when using a z-score for determining if the ranksum of the two samples can reject the null hypothesis don't determine result by checking the sign of the zStat as it was determined from u which was chosen to always be the minimum of the two sample ranksums and will always have the same sign. Instead use the same comparison as is used when using Mann Whitney
commit a150c0884bd8d67884e30a4a78f20433e262985e
Merge: 4f69657 d7e8d2b
Author: Matthew Podwysocki <[email protected]>
Date: Tue Jun 9 17:50:40 2015 -0400
Merge pull request #754 from xgrommx/patch-4
Update buffer.md
commit d7e8d2bf17ba466c4b32660883da60264e6a19cf
Author: Denis Stoyanov <[email protected]>
Date: Wed Jun 10 00:29:21 2015 +0300
Update buffer.md
commit 4f69657d7fc2e36eed996a8f138741fe42d222df
Author: Matthew Podwysocki <[email protected]>
Date: Mon Jun 8 23:12:51 2015 -0400
Removing aggregate tests
commit d52a3f450595edcad0f92d453862b5eb7a3f129e
Author: Matthew Podwysocki <[email protected]>
Date: Mon Jun 8 23:12:33 2015 -0400
Removing aggregate
commit 9d0baf859a16dd2d3ee70364a3cd4db5ee81a23a
Merge: 4ef38ba fafa45f
Author: Matthew Podwysocki <[email protected]>
Date: Mon Jun 8 10:13:45 2015 -0400
Merge pull request #752 from ccapndave/ts-pairs
Added static pairs to typescript definitions
commit 4ef38bab98d50147447b4711b84d267e04d921da
Merge: ee5322b 8398d96
Author: Matthew Podwysocki <[email protected]>
Date: Mon Jun 8 10:13:01 2015 -0400
Merge pull request #753 from ccapndave/ts-fromEvent-eventemitter
Added fromEvent for objects with an on and off method.
commit fafa45f8426391746f574e737fc74d87b21011b7
Author: Dave Keen <[email protected]>
Date: Mon Jun 8 13:48:46 2015 +0200
Added static pairs to typescript definitions
commit 8398d96003e98ca883c3ef14cc3a4886778b5e6c
Author: Dave Keen <[email protected]>
Date: Mon Jun 8 13:45:01 2015 +0200
Added fromEvent for objects with an on and off method.
commit ee5322b28dae91fc5be4ad08497f3064dec2e36b
Merge: 3689a32 8f4235b
Author: Matthew Podwysocki <[email protected]>
Date: Mon Jun 8 01:27:51 2015 -0400
Merge pull request #749 from BerkeleyTrue/patch-1
fix broken link in bufferWithCount
commit 8f4235b572289e1c769299ac4a5077a6bc77a333
Author: Berkeley Martinez <[email protected]>
Date: Sun Jun 7 21:50:04 2015 -0700
fix broken link
commit 3689a327ce129eb6c2edf241f6af56ee219386d5
Merge: a195832 6a0103f
Author: Matthew Podwysocki <[email protected]>
Date: Sat Jun 6 11:08:14 2015 -0400
Merge pull request #747 from paulpdaniels/fix-issue-745
Fix issue #745
commit 6a0103fd184408755675df3d9a70f49499e4246d
Author: paulpdaniels <[email protected]>
Date: Fri Jun 5 19:40:05 2015 -0700
Fix issue #745 + regression test
commit a1958324551f88a61d1e5b73a932ec361e702316
Author: Matthew Podwysocki <[email protected]>
Date: Fri Jun 5 15:41:31 2015 -0400
Adding more methods
commit 4b2bf1549a183f4d9e7a6adff671b3ca438d032a
Author: Matthew Podwysocki <[email protected]>
Date: Thu Jun 4 19:31:36 2015 -0400
Adding modern build start
commit 9d66c3a238fdbdf29bf13fa59bd953088dd7e5f2
Merge: b8fd124 a011dc5
Author: Matthew Podwysocki <[email protected]>
Date: Thu Jun 4 13:58:23 2015 -0400
Merge branch 'master' of https://github.com/Reactive-Extensions/RxJS
commit b8fd1242f0a41f1034a9b699d6f2983c2e237a42
Author: Matthew Podwysocki <[email protected]>
Date: Thu Jun 4 13:58:07 2015 -0400
First modular approach
commit a011dc510d5336628ef2e6ffcb03db6d3c9a5dd0
Merge: 3fe0664 660dec0
Author: Matthew Podwysocki <[email protected]>
Date: Wed Jun 3 18:47:31 2015 -0400
Merge pull request #743 from dqdinh/patch-1
Make "Exploring The Major Concepts in RxJS" clickable
commit 660dec092c7e5acd0110bf4c569419172b8861a8
Author: Dave Dinh <[email protected]>
Date: Wed Jun 3 14:52:53 2015 -0700
Make "Exploring The Major Concepts in RxJS" clickable
commit 3fe06642a26e283828e6689b78c52c1197b6a9c0
Author: Matthew Podwysocki <[email protected]>
Date: Wed Jun 3 16:36:56 2015 -0400
Removing old files
commit f92544eca1890b6c0b0861d732f98abc699d0d3b
Author: Matthew Podwysocki <[email protected]>
Date: Wed Jun 3 16:36:30 2015 -0400
Moving towards 3.x
commit 19a0a6c80c82b48625590bf44ce82e0e6b1f6baf
Merge: 6101271 585506f
Author: Matthew Podwysocki <[email protected]>
Date: Tue Jun 2 14:03:09 2015 -0400
Merge pull request #741 from paulpdaniels/patch-4
Fixed typo
commit 585506fc8bca74e8b197ef910db84c8f6f0b0db1
Author: Paul Daniels <[email protected]>
Date: Tue Jun 2 10:36:30 2015 -0700
Fixed typo
commit 6101271c35588213b521b5bc39162cce4c1988c5
Merge: bc4db5b 24afd9b
Author: Matthew Podwysocki <[email protected]>
Date: Mon Jun 1 19:13:45 2015 -0400
Merge pull request #740 from jmalonzo/jan-bower-fix
Fix bower.json typo
commit 24afd9be3a0d362c110c1c67b1829abacbcf8997
Author: Jan Alonzo <[email protected]>
Date: Tue Jun 2 08:34:24 2015 +1000
Fix bower.json typo
commit bc4db5bb929c98291775add172f725848438a4f5
Author: Matthew Podwysocki <[email protected]>
Date: Mon Jun 1 18:14:42 2015 -0400
Updating to remove PriorityQueue from currentThread
commit 6507118725e93498f7a52a603acf679e472f47b7
Author: Matthew Podwysocki <[email protected]>
Date: Mon Jun 1 15:26:29 2015 -0400
Fixing Issue #724
commit b5f21034c186b25a15601c67769a362f4f053642
Merge: abb9942 80b89e7
Author: Matthew Podwysocki <[email protected]>
Date: Mon Jun 1 11:40:13 2015 -0400
Merge pull request #738 from ariutta/patch-1
Scheduler is not an argument here
commit abb99421472c081f24bf0d49ad1b70db5a8e3a7e
Merge: f9839fc 7b6ef93
Author: Matthew Podwysocki <[email protected]>
Date: Mon Jun 1 11:07:28 2015 -0400
Merge pull request #739 from remkoboschker/patch-2
updates retryWhen example
commit 7b6ef939c68d5026b98d219445407381a84bdee9
Author: Remko Boschker <[email protected]>
Date: Mon Jun 1 16:26:02 2015 +0200
updates retryWhen example
adds Rx in front of Observable.range
commit 80b89e73993068dd93a28ee5c8c1a8e579e68174
Author: Anders Riutta <[email protected]>
Date: Sat May 30 18:10:01 2015 -0700
Scheduler is not an argument here
commit f9839fc33c1a0479531e4f736737807eb8ceaa63
Author: Matthew Podwysocki <[email protected]>
Date: Sat May 30 13:20:53 2015 -0400
Fixing combineLatest
commit d246b8819c48689e1faffd01d8ae06eb22a0a16a
Author: Matthew Podwysocki <[email protected]>
Date: Fri May 29 14:02:43 2015 -0400
Fixing Issue #727
commit f8f795636119143f51fc249d719bdbde1875970c
Merge: 11cd290 b7b8043
Author: Matthew Podwysocki <[email protected]>
Date: Thu May 28 14:26:31 2015 -0400
Merge pull request #736 from shinyaohira/add-observable-prototype
Export Rx.Observable.prototype object
commit b7b80435ddbfa17fce414db8d74d3788b6cfca92
Author: Shinya Ohira <[email protected]>
Date: Thu May 28 22:02:45 2015 +0900
Export Rx.Observable.prototype object.
commit 11cd290ce0bbb7dc979afa3b0b471a156a3452f2
Merge: 78742d7 4ad1306
Author: Matthew Podwysocki <[email protected]>
Date: Wed May 27 17:03:49 2015 -0400
Merge pull request #735 from tomekwi/patch-5
Fix typo
commit 4ad13065127cc2a95e18fb908f877640bcc40183
Author: Tomek Wiszniewski <[email protected]>
Date: Wed May 27 22:07:41 2015 +0200
Fix typo
commit 78742d785bbd09afe483ae2386a158e21bd7b684
Merge: 668626e defaa35
Author: Matthew Podwysocki <[email protected]>
Date: Wed May 27 15:38:02 2015 -0400
Merge branch 'master' of https://github.com/Reactive-Extensions/RxJS
commit 668626e70db8f11cbffba016c3b486d752c4bad6
Author: Matthew Podwysocki <[email protected]>
Date: Wed May 27 15:37:53 2015 -0400
Fixing lite isScheduler
commit c3f6f126b4da8f2601625c31b85d90b2e7586a7f
Author: Matthew Podwysocki <[email protected]>
Date: Tue May 26 13:51:51 2015 -0400
Fixing fromEvent
commit defaa35437200e8ab200bf83b77112a295c536e4
Merge: 6dc2d5c cfa9cbe
Author: Matthew Podwysocki <[email protected]>
Date: Sun May 24 00:24:23 2015 +0200
Merge pull request #729 from pdehaan/patch-1
Update license attribute
commit cfa9cbe574c031ccdc650ed8534270941e81b30f
Author: Peter deHaan <[email protected]>
Date: Sat May 23 15:17:46 2015 -0700
Update license attribute
specifying the type and URL is deprecated:
https://docs.npmjs.com/files/package.json#license
http://npm1k.org/
commit 6dc2d5cfc82a73a140748a4a7bdfe21f567f215f
Author: Matthew Podwysocki <[email protected]>
Date: Fri May 22 13:51:49 2015 +0200
Fixing Issue #694
commit 38224e715bad557d3b1529197069c27b484d7e28
Author: Matthew Podwysocki <[email protected]>
Date: Fri May 22 13:36:34 2015 +0200
Fixing issue #720
commit f86d7c1007d2fc8a873e0b76c0f672c2d95bd1e4
Merge: 924f87e db7e096
Author: Matthew Podwysocki <[email protected]>
Date: Fri May 22 08:15:26 2015 +0200
Merge pull request #719 from ajp427/fix-nodelist-check
IE8 Compat: Fix is NodeList check
commit 924f87edd087c9269e84e8865f948d84db3d64d2
Merge: 83c8c21 9810cc2
Author: Matthew Podwysocki <[email protected]>
Date: Tue May 19 21:11:13 2015 +0200
Merge pull request #722 from paulpdaniels/patch-3
Update controlled.js jsdocs
commit 9810cc25b024abd12f7955b7ac4d900354dd2d6a
Author: Paul Daniels <[email protected]>
Date: Mon May 18 12:26:44 2015 -0700
Update controlled.js jsdocs
commit db7e0964ca9629dccbd5ef5dbccd30e63da2c412
Author: Austin Pivarnik <[email protected]>
Date: Mon May 18 11:10:48 2015 -0400
rebuild
commit f4b444fa2890388ae3cfb6dada1d3535b29ada5e
Author: Austin Pivarnik <[email protected]>
Date: Fri May 15 13:35:37 2015 -0400
Add isNodeList function, to check if element is a NodeList or StaticNodeList
commit 83c8c219d6d386b17c3ff41b2a4526dd01467bc3
Merge: 94fe363 a938199
Author: Matthew Podwysocki <[email protected]>
Date: Sat May 16 17:55:32 2015 +0200
Merge pull request #718 from xgrommx/patch-3
Update partition.md
commit a938199da92db160c50d4ee99aedb9b2159ee814
Author: Denis Stoyanov <[email protected]>
Date: Sat May 16 14:36:42 2015 +0300
Update partition.md
You can look on this example http://jsbin.com/kezoye/3
commit 94fe363ce5b5a04aa906b5edb7dfc609adef37c0
Merge: 7bfe79d f813ca7
Author: Matthew Podwysocki <[email protected]>
Date: Sat May 16 08:43:46 2015 +0200
Merge pull request #715 from dustinmartin/master
Fix incorrect link to concatAll
commit 7bfe79d7c963c58e930ef68f8a43b74dda87fa23
Merge: f5e579a 6d120c2
Author: Matthew Podwysocki <[email protected]>
Date: Sat May 16 08:42:39 2015 +0200
Merge pull request #716 from myhau/patch-2
Change in docs: Rx.Observable.spawn to Rx.spawn
commit f5e579a33f54be2a9d9597f897abc93efd0fa41f
Merge: 11412ce 6ddf45d
Author: Matthew Podwysocki <[email protected]>
Date: Sat May 16 08:41:48 2015 +0200
Merge pull request #717 from tlstyer/master
Make Konami Code example work as expected
commit 6ddf45d089876a8099ee8c9a597e0c38fd762559
Author: Timothy Lee Styer <[email protected]>
Date: Fri May 15 22:42:01 2015 -0700
Make Konami Code example work as expected
Load javascript files from the correct location
Make code always work when an arbitrary number of keys are pressed beforehand
Print the result every time the code is entered
Fix typo in a comment ("konami" instead of "konmai")
commit 6d120c20c5679244cf533b73b56884afc0d35507
Author: Michal Fudala <[email protected]>
Date: Fri May 15 23:12:08 2015 +0200
Change in docs: Rx.Observable.spawn to Rx.spawn
commit f813ca72a239d3dcaef4265c220d85de64beeaf3
Author: Dustin Martin <[email protected]>
Date: Fri May 15 15:26:15 2015 -0500
Fix incorrect link to concatAll
commit 11412ce467d1f7c727d48adbd012c38117fc50d2
Merge: 4818702 0ca1d2c
Author: Matthew Podwysocki <[email protected]>
Date: Fri May 15 13:55:10 2015 +0200
Merge pull request #711 from xgrommx/patch-2
Update when.md
commit 481870246e922df07e505c0befc40e80f70475a5
Merge: 12bf42a 4cdee92
Author: Matthew Podwysocki <[email protected]>
Date: Fri May 15 13:53:49 2015 +0200
Merge pull request #706 from paulpdaniels/generate-recursive-scheduling-fix
Switched to generateWith*Time methods to use scheduleRecursiveWith*AndState
commit 12bf42a28c8f52506bcf509a1b4e050ffe8d04aa
Merge: b022ed8 a71d336
Author: Matthew Podwysocki <[email protected]>
Date: Fri May 15 13:53:27 2015 +0200
Merge pull request #713 from paulpdaniels/count-after-range-fix
Fix for count operator overriding
commit a71d33686977d4785fbe94cee7d6da1d91a83d9c
Author: paulpdaniels <[email protected]>
Date: Thu May 14 21:36:44 2015 -0700
* Fixed problem with the a private variable overriding the `count` operator in the prototype chain.
* Added regression tests
commit b022ed838348c28963a4225f2d51d4ab562dedfc
Merge: 8417d8b 2a43b27
Author: Matthew Podwysocki <[email protected]>
Date: Fri May 15 03:25:13 2015 +0200
Merge pull request #710 from xgrommx/patch-1
Update pairwise.md
commit 0ca1d2c420eb96c1ca096f573a83981f6325c064
Author: xgrommx <[email protected]>
Date: Fri May 15 03:25:44 2015 +0300
Update when.md
commit 2a43b2744ddff563aeef3a45c2ecac49d7bf68e9
Author: xgrommx <[email protected]>
Date: Fri May 15 03:19:51 2015 +0300
Update pairwise.md
commit 8417d8b5ce95d53e07f413b4fe0a575142e6a4cf
Merge: 55404d3 c5726f4
Author: Matthew Podwysocki <[email protected]>
Date: Thu May 14 11:47:59 2015 +0200
Merge pull request #709 from myhau/patch-1
Changed bad link to source code in docs
commit c5726f42b81dc8a309a351276931852387463411
Author: Michal Fudala <[email protected]>
Date: Thu May 14 11:32:19 2015 +0200
Changed bad link to source code
commit 55404d3ce53007e7b3ff66dfc259418c4de76b51
Merge: 1ab7f9a 1e087b7
Author: Matthew Podwysocki <[email protected]>
Date: Wed May 13 20:19:13 2015 +0200
Merge pull request #708 from paulpdaniels/patch-2
Fix docs for #707
commit 1e087b7ec6219f811f677d3b9d03f5fd2177b4b4
Author: Paul Daniels <[email protected]>
Date: Wed May 13 09:22:27 2015 -0700
Fix docs for #707
Example of inner result selector was confusing.
commit 4cdee9209347186a8648289c4bcbdc9d1bee9750
Author: paulpdaniels <[email protected]>
Date: Tue May 12 23:26:01 2015 -0700
* Switched to generateWith*Time methods to use scheduleRecursiveWith*AndState
* Moved several variables into the inner scope.
commit 1ab7f9a3d3d8c9111aa4de91ababd43bf5ef443e
Author: Matthew Podwysocki <[email protected]>
Date: Wed May 13 02:19:56 2015 -0400
Removing map2
commit 8added40780375a4f3db90a702d615b930f02aff
Author: Matthew Podwysocki <[email protected]>
Date: Wed May 13 02:18:58 2015 -0400
Fixing pairs documentation
commit b241e17cd29c615ec1668330dac7f2a19b870c33
Merge: 4484708 3679fff
Author: Matthew Podwysocki <[email protected]>
Date: Mon May 11 15:20:26 2015 -0400
Merge pull request #703 from kirjs/patch-4
Update categories.md
commit 3679fff63f17a626cc72f1b6c33a1dc2a1a6f3c7
Author: Kirill Cherkashin <[email protected]>
Date: Mon May 11 15:19:27 2015 -0400
Update categories.md
Add proto.combineLatest to the list of operators
commit 448470874780cd95925f77e4bd064ac01ffc6dd4
Merge: b01bf9e 9cb504e
Author: Matthew Podwysocki <[email protected]>
Date: Mon May 11 15:12:39 2015 -0400
Merge pull request #702 from kirjs/patch-2
Update categories.md
commit b01bf9e66bec2d4ae7123e5f37622d0d4b163e8a
Merge: 8d197bd 3f7f5bb
Author: Matthew Podwysocki <[email protected]>
Date: Mon May 11 15:12:10 2015 -0400
Merge pull request #701 from kirjs/patch-1
Update querying.md
commit 9cb504e2ee62ce38f25937cfbced798301a19dbc
Author: Kirill Cherkashin <[email protected]>
Date: Mon May 11 15:01:10 2015 -0400
Update categories.md
Fix typo in the link to generateWithAbsoluteTime
commit 3f7f5bbab3d487d4fc5b89ec8ca19257dcac4358
Author: Kirill Cherkashin <[email protected]>
Date: Mon May 11 14:52:16 2015 -0400
Update querying.md
Add missing `+` operator in the last example of the the `Filtering` section
commit 8d197bdbaea17edc47849ca859de481cd77d5433
Merge: ae58502 9ec408f
Author: Matthew Podwysocki <[email protected]>
Date: Sun May 10 20:02:28 2015 -0400
Merge pull request #699 from benjamingr/patch-1
I'm just here for the doc link typo :)
commit 9ec408f644b3f35aa57969854742d21e8cbf807b
Author: Benjamin Gruenbaum <[email protected]>
Date: Sun May 10 20:48:28 2015 +0300
I'm just here for the doc link typo :)
commit ae58502355349d8ce2c34e8e4e6f894eda9e8afb
Merge: 5e6bf3f 9558be9
Author: Matthew Podwysocki <[email protected]>
Date: Sun May 10 12:21:10 2015 -0400
Merge pull request #698 from anjianshi/patch-1
fix typo
commit 9558be9700bcfb57388fb737dfd4f5e109dbc74d
Author: 安坚实 <[email protected]>
Date: Sun May 10 21:15:19 2015 +0800
fix typo
commit 5e6bf3f90e177ee1d4cd0d26de54b9d07bd63a07
Author: Matthew Podwysocki <[email protected]>
Date: Fri May 8 14:45:57 2015 -0400
more perf to concat
commit 017422f4e1a0a9cd09b230b5b215e7149866b59c
Merge: 0eb0912 b1a07ef
Author: Matthew Podwysocki <[email protected]>
Date: Thu May 7 17:38:48 2015 -0400
Merge branch 'master' of https://github.com/Reactive-Extensions/RxJS
commit 0eb0912f83788406b76f6520c3ed48895c13245b
Author: Matthew Podwysocki <[email protected]>
Date: Thu May 7 17:38:36 2015 -0400
Perf for catch
commit b1a07efca263979d204fb83120f8f626d12bdaf8
Merge: 8c398fd 5f34fa0
Author: Matthew Podwysocki <[email protected]>
Date: Thu May 7 17:18:26 2015 -0400
Merge pull request #696 from tomekwi/patch-4
Fix misinterpreted backticks
commit 5f34fa0ff2502d3a9eb29b5e9b8a6dbfd0c54de0
Author: Tomek Wiszniewski <[email protected]>
Date: Thu May 7 23:12:22 2015 +0200
Fix misinterpreted backticks
commit 8c398fdcf2d4d9a4661c7d19208a748273d56e49
Author: Matthew Podwysocki <[email protected]>
Date: Thu May 7 12:45:18 2015 -0400
Adding more community examples
commit 34fd2679b2d8017a7a9eee0d148ac95698d9e627
Author: Matthew Podwysocki <[email protected]>
Date: Thu May 7 12:32:36 2015 -0400
Adding recipes
commit 0ef180b9972fa03f63f0d39e501be0484b284e6f
Author: Matthew Podwysocki <[email protected]>
Date: Thu May 7 12:23:29 2015 -0400
Adding new recipe to retrywhen
commit 70ba255a4d411ad69c5ae2f11ddbc7c025ac3775
Author: Matthew Podwysocki <[email protected]>
Date: Thu May 7 12:00:04 2015 -0400
Adding observer to concat
commit a25c84527f80f929d46fc87abbe55de1bd17bc0c
Merge: 5931bb7 2f3e1ac
Author: Matthew Podwysocki <[email protected]>
Date: Thu May 7 11:54:56 2015 -0400
Merge pull request #695 from tomekwi/patch-3
Fix typos
commit 5931bb701f1b315fac2ad9c8501ff6ed06f7a2a4
Author: Matthew Podwysocki <[email protected]>
Date: Wed May 6 17:42:33 2015 -0400
Cleaning up
commit 80c4a429c220101171c814b10f80915035c8617f
Author: Matthew Podwysocki <[email protected]>
Date: Wed May 6 17:42:05 2015 -0400
Fixing concat perf
commit 2f3e1ac7c2d426256f00872ab2bf34e19a9de952
Author: Tomek Wiszniewski <[email protected]>
Date: Wed May 6 23:18:24 2015 +0200
Fix typos
Is this what you meant @mattpodwysocki?