forked from pubnub/javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
CHANGELOG
1353 lines (915 loc) · 43.9 KB
/
CHANGELOG
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
3-13-14 * NEW VERSION 3.6.1 *
. Presence V3 Features
. Global cipher key feature
. crypto.js is now automatically merged into pubnub.js. No need to manually include it anymore.
. .secure() now aliases to .init() for bw compatibility, but its no longer needed.
. fixed blocking leave bug in Firefox
. crypto support for Titanium
11-9-13 * NEW VERSION 3.5.4.8 *
. make encryption methods public to easier implement into your own app logic
. in some cases, multiple subscribe requests are made in node.js with presence
. add getter for uuid
. handle ECONNRESET
. carry reference of failed publish message into error object
. implement optional queue_empty flag (experimental)
10-11-13 * NEW VERSION 3.5.47 *
. simplified and reduced code.
. improved unit tests for more chars in channel/message.
10-10-13 * NEW VERSION 3.5.46 *
. added async load special support.
10-09-13 * NEW VERSION 3.5.45 *
. rebuilt with space char escaping %20 sort of thing.
10-01-13 * NEW VERSION 3.5.43 *
. added enhancement by reducing number of escaped chars on publish
. removed blocking leave on non-ssl and non-jsonp transports for performance boost.
09-10-13 * NEW VERSION 3.5.4 *
. created new JS PAM Dev Console in web/examples
. fixed undefined error object bug
. add setter for UUID
. add PAM server-functionality to JS clients
. enhanced error callback handling for PAM publish errors
. PAM unit tests for node.js
. PAM unit tests for web JS
. hostname and domain are now independently configurable for origin
. pass through error callback bad decrypted data as "ENCRYPTION_ERROR" string
06-25-13 * NEW VERSION 3.5.32 *
. added approx latency detection (delay) for the _last_ delivered message.
06-25-13 * NEW VERSION 3.5.3.1 *
. added noleave option to prevent explicit leave requests on page unload.
06-25-13 * NEW VERSION 3.5.3 *
. fixed the issue with minified version of JS files.
06-18-13 * NEW VERSION 3.5.2 *
. removed uneeded presence leave events on non-ssl.
. added `channel` to here_now callback.
. fixed 40X error for Access Manager.
06-07-13 * NEW VERSION 3.5.1 *
. added `error` callback on subscribe.
. added fix for instant disconnect detection in webkit.
. added support for error details from ULS response.
05-23-13 * NEW VERSION 3.5.0 *
. added auth_key for ULS support.
. added SmartTV Platform SDK.
. added upload maker for CDN deployment.
05-22-13 * NEW VERSION 3.4.8 *
. fixed unclosed socket connection delay.
. fixed race condition with Unsubscribe inside Subscribe Connect and Callbacks.
05-16-13 * NEW VERSION 3.4.7 *
. fixed bug where callback could be lost during unsubscribe
. added .ready() and .unsubscribe() to SECURE
05-10-13 * NEW VERSION 3.4.6 *
. allowed `restore:false` to prevent catchup on channel traversal/changes.
05-09-13 * NEW VERSION 3.4.5 *
. bringing all js distros to 3.4.5
04-30-13
. fixed double susbscribe race condition bug
. fixed issue on ie when detecting best transport
04-16-13
. fixed ssl leave issue on firefox
. bumping all clients to new 3.4.4
. added new trivial phonegap demo
commit ebfb9fae11d235b509eb592c944b46fe81474108
Author: Stephen L. Blum <[email protected]>
Date: Fri Feb 15 20:20:47 2013 -0800
many small updates to README in JavaScript.
commit b703fd17b0751f5e5c5026870c9ef681a15ffc9d
Author: Stephen L. Blum <[email protected]>
Date: Fri Feb 15 19:50:35 2013 -0800
reduced keepalive description in the readme.
commit 09196772be90d2ea5face2799f635d3ad6a0090b
Author: Stephen L. Blum <[email protected]>
Date: Fri Feb 15 19:49:20 2013 -0800
added more detail to Windowing.
commit b966edff0a337379c3d12e2743b8129b2086ed21
Author: Stephen L. Blum <[email protected]>
Date: Fri Feb 15 19:45:58 2013 -0800
added Replay description.
commit 7b8890f3168f6d0087909c3d5b1b942d59d2d71f
Author: Stephen L. Blum <[email protected]>
Date: Fri Feb 15 19:44:24 2013 -0800
Updated introduction on README.
commit e826e980334f5088aef8f3d7449a38a1a3106719
Author: Stephen L. Blum <[email protected]>
Date: Fri Feb 15 19:43:26 2013 -0800
fixed Typo in readme doc for JavaScript 3.4.1
commit 79f1afd94e4c8e18793db820b2025ec61f5750d4
Author: Stephen Blum <[email protected]>
Date: Thu Feb 14 18:52:18 2013 -0800
updated README.md for JavaScript typos and filling in missing details.
commit 2216190f98f4751d65608b863f23ba5cf4e9d477
Author: Stephen Blum <[email protected]>
Date: Thu Feb 14 15:13:43 2013 -0800
fixed typos in README.md
commit 5bd6ead5417a9ccc6c3fcfe182c10a62a01193dc
Author: Stephen L. Blum <[email protected]>
Date: Thu Feb 14 11:58:08 2013 -0800
added Elastic Message section.
commit e2cf948d3078bb5671ff75c17a4c318f3ad517bd
Author: Stephen L. Blum <[email protected]>
Date: Thu Feb 14 11:53:46 2013 -0800
added best practices to JS section.
commit 63ac3e38f9656e6afece476b0ef928691dc76927
Author: Stephen L. Blum <[email protected]>
Date: Wed Feb 13 21:21:44 2013 -0800
added windowing example source code.
commit 896c5b07f96f1e36e5fdd13cb59092b0c83e8c29
Author: Stephen L. Blum <[email protected]>
Date: Wed Feb 13 21:20:05 2013 -0800
Update javascript/README.md
commit 6fe955398f4f4e3b5959b3bc92280088ca90dc64
Author: Stephen L. Blum <[email protected]>
Date: Wed Feb 13 21:08:53 2013 -0800
removed old depenancy.
commit 5bd1edb735e47483b43228b2a038ebc5ab557ec1
Author: Stephen Blum <[email protected]>
Date: Wed Feb 13 18:35:15 2013 -0800
added new JavaScript 3.4.1 with enhanced disconnect detect and reporting.
commit 6f2e0149ad1611e5b02a1a192d68abf0412a5cb1
Author: Geremy Cohen <[email protected]>
Date: Wed Jan 23 15:31:41 2013 -0800
Update javascript/README.md
commit ca368e5b07294a3bbb6f1d945072e9323b91d3e9
Author: Geremy Cohen <[email protected]>
Date: Wed Jan 23 15:12:55 2013 -0800
Update javascript/README.md
Adding UUID override documentation in init object example in README
commit 0aa7ab5584ee41d2cdb159b8648c4b683e9ece60
Author: Stephen Blum <[email protected]>
Date: Thu Jan 17 16:27:36 2013 -0800
removed nexto on time requests in JS.
commit b4d51a232568c0c2ea3f58d21dea1037a0af8039
Author: Stephen Blum <[email protected]>
Date: Thu Jan 17 11:47:50 2013 -0800
added "stringtoken" param for javascript bigint work-around.
commit eb7290134e0fb60238eb911dba701be929ca263b
Merge: 359b42a 998fa6a
Author: Stephen Blum <[email protected]>
Date: Wed Jan 16 21:27:41 2013 -0800
Merge branch 'master' of github.com:pubnub/pubnub-api
commit 359b42aa24ba2737046bd59def1c261125666adc
Author: Stephen Blum <[email protected]>
Date: Wed Jan 16 21:26:52 2013 -0800
added Message Windowing to PubNub JavaScript 3.4 API.
removed depricated 'error' callback.
commit 7c0e397dac04ec497e896abebe18bdabbce19ab4
Author: geremy cohen <[email protected]>
Date: Fri Jan 11 12:32:58 2013 -0800
Copying unit tests to root of JS dir.
commit c44b4d5e3d262b9ae6cfbcbf4768ec39f381aae2
Author: geremy cohen <[email protected]>
Date: Fri Jan 11 12:31:06 2013 -0800
Adding back missing unit tests.
commit bccf02347f32eb60b2a4fbe39bdadd0761fd798a
Author: Stephen Blum <[email protected]>
Date: Wed Jan 9 15:28:18 2013 -0800
added fix to 3.4 with sub/unsub presenece events, added fastly and an auto-here-now sync command.
commit f713d108b732fbdf220ceecb4893a3bbdc8c3356
Author: Stephen Blum <[email protected]>
Date: Fri Dec 21 17:05:50 2012 -0800
updated 3.4 with new REPLAY function.
commit 89779955a58a0526e77e4aa910059b5dbc9c9ec1
Author: Stephen Blum <[email protected]>
Date: Thu Dec 20 16:08:03 2012 -0800
update pubnub 3.4 javascript API with a channel close fix.
commit bffbc8a99d9c2cf9f45c198acaa3b15fe6314442
Author: Stephen Blum <[email protected]>
Date: Wed Dec 19 11:10:16 2012 -0800
restored console log compatibility layer to provide support to non-console enabled browsers.
commit c2fc18f8231a5cc819d9cf701e641e94b97b8290
Merge: 052b350 bd28e1f
Author: Stephen Blum <[email protected]>
Date: Mon Dec 17 20:27:35 2012 -0800
Merge branch 'master' of https://github.com/pubnub/pubnub-api
commit 052b350e5c6569a28cb3c9d8de173c1027979a30
Author: Stephen Blum <[email protected]>
Date: Mon Dec 17 20:27:21 2012 -0800
added tests from javascript 3.4 directory.
also added ie publishing test.
commit bd28e1f42a09ecd453c8f52f3df636d26a94c450
Merge: a69b723 bfa182b
Author: geremy cohen <[email protected]>
Date: Mon Dec 17 18:49:05 2012 -0800
Merge branch 'master' of https://github.com/pubnub/pubnub-api
commit bfa182b979394e8de4ae23571a367e49b1130699
Author: Geremy Cohen <[email protected]>
Date: Mon Dec 17 18:48:26 2012 -0800
Update javascript/README.md
Adding AES documentation.
commit a69b723aedb4bbd65d8151f7dd4cc52b33f3de0d
Author: geremy cohen <[email protected]>
Date: Mon Dec 17 18:39:55 2012 -0800
adding encrypted files to root
commit 8019cae0d67476ae4f097e190e8c41c628af2400
Merge: d5bf894 198e5dd
Author: geremy cohen <[email protected]>
Date: Mon Dec 17 17:13:17 2012 -0800
Merge branch 'CL-218'
commit 198e5dd580e0344e608d0c83c2e40de8b98e776b
Author: geremy cohen <[email protected]>
Date: Mon Dec 17 16:53:17 2012 -0800
Minor bug fixes.
commit 465e6b734b5d525b5533e4ea8b255994dbbaae9a
Author: geremy cohen <[email protected]>
Date: Sun Dec 16 21:50:09 2012 -0800
Tests working for encryption.
commit e609bea52a23aabc932e79aa66e9f436e32085a4
Author: geremy cohen <[email protected]>
Date: Sun Dec 16 19:56:49 2012 -0800
Implemented decrypted history functionality.
commit 94f2fb78c8f9094f88154930c2411a54ab5c79ec
Author: Stephen Blum <[email protected]>
Date: Fri Dec 14 17:13:34 2012 -0800
added advanced and simple examples for PubNub JavaScript.
commit 50e1fe7d6f9d02a64df92af20d118d9c17f46de9
Author: Stephen Blum <[email protected]>
Date: Fri Dec 14 16:36:12 2012 -0800
upgraded socket.io to 3.4 plus added fixes to javascript 3.4 with bugs on minified version.
commit bc6a2a025781684cc558997177eb40a758cb4dd5
Author: geremy cohen <[email protected]>
Date: Thu Dec 13 22:42:53 2012 -0800
WIP: about to implement history and pub/sub integration tests
commit 57a553239867f234baf1212ac70d1e1f5183633a
Author: geremy cohen <[email protected]>
Date: Thu Dec 13 20:57:53 2012 -0800
moved encryption tests into their own method
commit c5c65d8d08c4317bd823c2b19b95877e6fd553d0
Author: geremy cohen <[email protected]>
Date: Thu Dec 13 20:53:46 2012 -0800
encryption unit tests passing
commit 9a73c51ea85fca906572bd94779f7e5765ec611f
Author: geremy cohen <[email protected]>
Date: Thu Dec 13 13:59:42 2012 -0800
Streamlining demo for simplicity
commit 882ffd94b5038bb3e1eb51654feb4a015e2fe08b
Author: geremy cohen <[email protected]>
Date: Thu Dec 13 13:28:53 2012 -0800
Basic chat functionality.
commit 4327b0a89a691da48abbda04d6bb280868a7da29
Author: geremy cohen <[email protected]>
Date: Wed Dec 12 22:48:32 2012 -0800
Decryption working. Exposed rawDecrypt as a class method.
commit 9724ee000ff4d397d43ee691f0009a80fcdd7361
Merge: cdcc356 e44776f
Author: Stephen Blum <[email protected]>
Date: Wed Dec 12 21:25:40 2012 -0800
Merge branch 'master' of https://github.com/pubnub/pubnub-api
Conflicts:
javascript/3.4/pubnub-3.4.min.js
javascript/3.4/pubnub-3.4.min.js.gz
commit cdcc356cb6103ab867a3b3be49cac230f694a00e
Author: Stephen Blum <[email protected]>
Date: Wed Dec 12 21:24:12 2012 -0800
fixed $ override in 3.4 JavaScript API.
commit 5fa963193185d4a264374a061f6410a9d8d66b11
Author: geremy cohen <[email protected]>
Date: Wed Dec 12 20:23:27 2012 -0800
Encryption working.
commit e8022ce1ace5af2807d458429255d2f431459583
Author: geremy cohen <[email protected]>
Date: Wed Dec 12 19:30:03 2012 -0800
adding first run of encrypted demo
commit 1ccd6c3ffefedd4837e5cee879ea5810efbca8d4
Author: geremy cohen <[email protected]>
Date: Wed Dec 12 16:07:30 2012 -0800
adding gibberish
commit a273a9fd704fa221904c705bc4dc5310b327940b
Author: geremy cohen <[email protected]>
Date: Wed Dec 12 16:02:30 2012 -0800
removed readme
commit ffec3a25aa00c7c76f740354564ed57ef542f815
Author: Geremy Cohen <[email protected]>
Date: Mon Dec 10 14:16:33 2012 -0800
Update javascript/README.md
updating URLs in README
commit 2e20b5231e65fec9301ad3e4944e9b93d941fa69
Author: geremy cohen <[email protected]>
Date: Mon Dec 10 13:49:21 2012 -0800
fixing build script
commit ac6ea917000b26f9f4db96b706feae78aab0bfa6
Author: Stephen Blum <[email protected]>
Date: Fri Dec 7 15:01:36 2012 -0800
added presence here_now to unit test.
commit 038699c28397cf3c1ff207cc8a699120d6f03b8b
Author: Stephen Blum <[email protected]>
Date: Fri Dec 7 09:14:02 2012 -0800
updated nextorigin usage by reducing on uneeded calls.
commit 13a7c5285e7e30bfc810836e0f0385b951393e50
Author: Stephen Blum <[email protected]>
Date: Thu Dec 6 20:41:33 2012 -0800
removed old pubnub min file.
commit f68552abbbdcd2ef822d5bbefbfbaff3ce6dd8ce
Author: Stephen Blum <[email protected]>
Date: Thu Dec 6 17:50:00 2012 -0800
updated mp 3.4 JavaScript usage example.
commit 70179631065b8eed7f5d77cc932ea6ebb08d5e5c
Author: Stephen Blum <[email protected]>
Date: Thu Dec 6 12:54:02 2012 -0800
added minification build script and ADVANCED_OPTIMIZATION compatibility to 3.4 JavaScript API.
commit c06d2e56d0f61b337614d0dcc41a8e87f302bd30
Author: Stephen Blum <[email protected]>
Date: Thu Dec 6 12:05:16 2012 -0800
added evented example in javascript and removed older files in JavaScript 3.4 API.
commit c41c1e1e6c1d33e550037ec95f7b6fe35364f2e1
Author: Stephen Blum <[email protected]>
Date: Wed Dec 5 22:58:10 2012 -0800
added race condition message delivery before unsubscribe can occur.
commit 6a9262deb73ec814eb4a4f7b1e6eeb58a44d1d5f
Author: Stephen Blum <[email protected]>
Date: Wed Dec 5 21:20:33 2012 -0800
updated 3.4 JavaScript with persisted publish connection.
commit 3fa005f06229793e3efe410c48ebfcc50b1f8b3c
Author: Stephen Blum <[email protected]>
Date: Wed Dec 5 21:10:47 2012 -0800
added improved channel management and better error reporting plus restored leave events on page change.
commit 1f1f9e8a4277ae39c856093c57e742e2612e0c05
Author: Stephen Blum <[email protected]>
Date: Wed Dec 5 20:28:05 2012 -0800
finalized multi-mode connectivity in 3.4 JavaScript API.
commit 18304f18ebcf1eeb8e70853ab14070810b21f653
Author: Stephen Blum <[email protected]>
Date: Wed Dec 5 19:07:58 2012 -0800
added single channel default fix to 3.4 JavaScript.
commit 938dcbe2b1273d4ed050e20653ea945a85bb3f42
Author: Stephen Blum <[email protected]>
Date: Wed Dec 5 18:18:50 2012 -0800
simplified channel generation and iteration on JavaScript 3.4 API.
commit 8aed9839e056f914e60c926b985e6e786ddfd5d8
Author: Stephen Blum <[email protected]>
Date: Wed Dec 5 16:59:55 2012 -0800
fixed early leave on js 3.4 api.
commit d13d52a0b9aba7e4d3382626de257e624851c243
Author: Stephen Blum <[email protected]>
Date: Wed Dec 5 16:23:43 2012 -0800
fixed mp restore mode.
commit f96c98b215e385ff7120a044595e3b4ac5d05825
Author: Stephen Blum <[email protected]>
Date: Wed Dec 5 16:05:31 2012 -0800
channel tracking upgrade for 3.4 in JavaScript.
commit 2ec1e8e1ff936c8fa1390113976f9ea2cc77542c
Author: Stephen Blum <[email protected]>
Date: Tue Dec 4 12:07:41 2012 -0800
added persisted domain connections on subscribe and auto-rotate on failure.
commit e564f50189b90222f9ec354c6a427821e53959a2
Author: Stephen Blum <[email protected]>
Date: Tue Dec 4 11:59:21 2012 -0800
added channel source param to javascript callback.
commit 077427202623bb211d3c5cb9dd08c60c0666b3db
Author: Stephen Blum <[email protected]>
Date: Tue Dec 4 11:45:32 2012 -0800
upadted JavaScript client with auto-sync presence.
commit 453a2745fc1e96e54b7412f3a37833b67ed2d28a
Author: Stephen Blum <[email protected]>
Date: Mon Dec 3 23:09:09 2012 -0800
added unsubscribe fix for 3.4 multiplexing.
commit e30344f151087757d1bc9646c491d3f75919c9fa
Author: Stephen Blum <[email protected]>
Date: Mon Dec 3 22:45:58 2012 -0800
added JavaScript 3.4 with FULL Multiplexing.
commit cd9879e07e623bef34e9594a3fe2cac3f2811b81
Merge: d551a83 b473f29
Author: Stephen L. Blum <[email protected]>
Date: Tue Nov 27 10:41:47 2012 -0800
Merge pull request #147 from mintrigue/patch-1
Update javascript/pubnub-3.3.1.js
commit 69eaef47409e17fbe9444c8bef1cf6452d73684d
Author: James Halliday <[email protected]>
Date: Mon Nov 26 15:44:30 2012 -0800
plan out the correct number of tests
commit 29ee7250c612b83d1fdd103114a8bb6d820fcd82
Author: James Halliday <[email protected]>
Date: Mon Nov 26 15:43:04 2012 -0800
fix the test runner by just using cat
commit b473f29305502159e741d761e8de6b704f1e2ebc
Author: mintrigue <[email protected]>
Date: Mon Nov 19 00:24:56 2012 -0800
Update javascript/pubnub-3.3.1.js
Modified to call ready() if the page has already been loaded when this script is added to the page.
Without this change, apps (like GWT w/ ScriptInjector) will not be able to subscribe to a channel because ready will never be called.
commit a287a6895a2d9263964feb6fa83e05ef75c090bd
Author: Geremy Cohen <[email protected]>
Date: Mon Nov 12 15:05:04 2012 -0800
Update javascript/3.3.1/README.md
Better examples
commit 750219b477045d04e046ad645b61037610fe1d40
Author: Geremy Cohen <[email protected]>
Date: Mon Nov 12 15:04:04 2012 -0800
Update javascript/README.md
Fixed README
commit 215e498172f70f327e870c326d4ab7a418d51bbf
Author: geremy cohen <[email protected]>
Date: Mon Nov 12 14:31:02 2012 -0800
adding 3.3.1 release
commit 31b2a280e7b36da6dee1144fe587e9c5e9d4c6c5
Author: Stephen Blum <[email protected]>
Date: Wed Nov 7 12:28:57 2012 -0800
added support to Presence Leave Events for Safari in SSL Mode.
commit 5e17a0f9d656bc622bb28309ad338dd07482845b
Author: Stephen Blum <[email protected]>
Date: Tue Nov 6 17:26:11 2012 -0800
removed timeout test in presence SSL fix test.
commit 7091681970932fe235b914f577c910e323413d0e
Author: Stephen Blum <[email protected]>
Date: Tue Nov 6 17:05:15 2012 -0800
added edge case disconnect event for presence detection and upgraded the patch for Presence JavaScript.
commit a105402cfc6dbd011fce468f86c35441205a1343
Author: Stephen Blum <[email protected]>
Date: Tue Nov 6 16:29:25 2012 -0800
applied upgrade patches to JavaScript API in PubNub For Enhanced Presence Capabilities in SSL plus auto SSL Mode Detection and bugfix for here_now() function.
commit a097ca4f4c5640933fb11348ba79966c0fa03128
Merge: a995365 91099fc
Author: geremy cohen <[email protected]>
Date: Wed Oct 31 11:11:14 2012 -0700
Merge branch 'CL-178'
commit 684f17accd3852050658f7bb0c2ce26075801b18
Author: Stephen L. Blum <[email protected]>
Date: Thu Oct 18 12:01:49 2012 -0700
added documentation fix provided by Austin for SSL
commit d6fe1dbf41e4533b3a34b2adee049bad21507dc8
Author: Devendra <[email protected]>
Date: Tue Sep 25 15:43:56 2012 +0530
adding history (detailedHistory) to socket.io api
commit 31738acc88e28b51af2641747ed7a6783bc01d21
Author: geremy cohen <[email protected]>
Date: Wed Sep 5 15:00:47 2012 -0700
Set default message history count to 5 in demo.
commit c593c484eb82c10f41aed9a2bcee0276c04fa5be
Author: geremy cohen <[email protected]>
Date: Wed Sep 5 14:48:27 2012 -0700
Setting up new JS files.
commit 7f53923aeb8bf0f86a9d739c2c04abc5d9ed8544
Author: geremy cohen <[email protected]>
Date: Wed Sep 5 14:18:52 2012 -0700
Add detailedHistory example and 3.3 version bump to README.
commit c73668bc40e5c647172d8b446290c8b30ee3017c
Author: geremy cohen <[email protected]>
Date: Wed Sep 5 13:55:38 2012 -0700
Added meta tag for index. Set channels to hello_world. Fix typos.
commit b906b66f157943a482ea3140b0be7cdff4c0e3f7
Merge: 9149c35 b9ec3b2
Author: geremy cohen <[email protected]>
Date: Wed Sep 5 12:05:35 2012 -0700
Merge branch 'master' into CL-159a
commit 9149c35bc52915f829423273b923d77042b4da05
Author: geremy cohen <[email protected]>
Date: Wed Sep 5 10:54:45 2012 -0700
Cleaned up html file
commit bcd73efeb2f90605c655f450ce712ceb9ac56ff5
Author: geremy cohen <[email protected]>
Date: Wed Sep 5 10:45:53 2012 -0700
Adding channel textfield to detailedHistory() example
commit 58542db282c2bebcb7c1a0041a8a7a08112a767f
Merge: 0e1043c 267130b
Author: geremy cohen <[email protected]>
Date: Tue Sep 4 15:17:54 2012 -0700
Merge branch '090412_js_32_fix'
commit 267130b74423fe99cc92eca7828b04791d2f6e34
Author: geremy cohen <[email protected]>
Date: Tue Sep 4 15:17:19 2012 -0700
fixing 3.2 files
commit 0e1043cf8dae9c4d38cd51dee03a5958322d55dd
Author: Geremy Cohen <[email protected]>
Date: Tue Sep 4 13:47:08 2012 -0700
Update javascript/README.md
readme typo
commit e2f11eb9d5bd5d7fd45952fcb37bd9bbc1af7541
Author: Devendra <[email protected]>
Date: Mon Sep 3 17:43:08 2012 +0530
changing api version to 3.3 in files, committing new version of minified pubnub.js
commit 090ee16976cc754d564ddada370455f7cbe56dd7
Merge: 19d6895 daa59c5
Author: Devendra <[email protected]>
Date: Mon Sep 3 17:04:42 2012 +0530
Merge branch 'master' into CL-159
commit 19d6895926b27e80d25f10becb26456e62de0aca
Author: Devendra <[email protected]>
Date: Mon Sep 3 17:01:33 2012 +0530
adding detailedHistory support in pubnub.js and and example webpage to test detailedHistory
commit c81080538eea46c57edda3aca0c702b728136828
Author: Geremy Cohen <[email protected]>
Date: Fri Aug 31 13:36:42 2012 -0700
Update javascript/README.md
Use CDN version of JS
commit 18a2efe0473ced1b8ccf4d9cd114bf1873f0d0ec
Author: Geremy Cohen <[email protected]>
Date: Fri Aug 31 13:34:52 2012 -0700
Update javascript/README.md
updating README for here_now and presence
commit 467bea63afbd301fbc40bbb50c4ea4600a3adc69
Author: geremy cohen <[email protected]>
Date: Thu Aug 30 18:28:53 2012 -0700
created 3.3 dir
commit b8f1f457cae2c89095b3b02d29df4990e48065bc
Author: Stephen Blum <[email protected]>
Date: Wed Aug 29 19:24:09 2012 -0700
version bump in README.md to 3.2 for JavaScript.
commit a8c091e0deaba6784dfd61487c6474628e0ad466
Author: Stephen Blum <[email protected]>
Date: Wed Aug 29 19:22:19 2012 -0700
upgraded PubNub JavaScript API to version 3.2 in main JavaScript directory.
commit 24ab1b63a58bf1b37d7e165ee94aa20e5f40e7e0
Author: Stephen Blum <[email protected]>
Date: Fri Aug 17 17:25:07 2012 -0700
added unsubscribe for "-pnpres" channels.
commit 96524bb8c687778df908655cf8de49b2a0e928dd
Author: Zac Witte <[email protected]>
Date: Fri Aug 10 12:40:48 2012 -0700
moved javascript presence updates to 3.2 and reverted 3.1 to pre-presence state
commit 3b7f1316bc1b2c6369b2a2ca33b8b5f1458df8c1
Author: Zac Witte <[email protected]>
Date: Thu Aug 2 13:20:04 2012 -0700
fixed javascript ssl test
commit 55e96f6e46d86bcbfefcdb37e8aedb428256f585
Author: Zac Witte <[email protected]>
Date: Thu Aug 2 13:12:17 2012 -0700
re-minified javascript
commit 1dd303293965062fbbf17ead26fd1493e72a38bc
Author: Zac Witte <[email protected]>
Date: Thu Aug 2 12:58:54 2012 -0700
updated presence to use channel on same sub key
commit 93a9e13bc943116a4a93ef5749564b2ee86b4aeb
Author: Zac Witte <[email protected]>
Date: Tue Jul 31 20:34:23 2012 -0700
minified js
commit bdfb55fb5b905e58f6554eb1ada5dda1050671b1
Author: Zac Witte <[email protected]>
Date: Tue Jul 31 20:26:36 2012 -0700
updated the javascript API for presence
commit 1ca6ebf647c3f0d28221b3e12aca5136b88002f3
Author: Stephen L. Blum <[email protected]>
Date: Fri Jul 27 19:37:25 2012 -0700
Update javascript/README.md
Added PubNub init Function Example.
commit 1cf64829c6ed3cd1e8375be7791e1a1cf44c3d69
Author: Stephen L. Blum <[email protected]>
Date: Tue Jun 5 13:41:23 2012 -0700
updated pubnub javascript api with improved on-reconnect callback.
commit 3a8f497b338d9060f01148793da2cbdcc0a87787
Author: Stephen L. Blum <[email protected]>
Date: Tue May 22 12:15:32 2012 -0700
updated JavaScript Unit Test to support New Demo Key response.
commit 8323d16830ca3207efb976d217faf0d70193ddfd
Author: Stephen L. Blum <[email protected]>
Date: Tue May 22 10:54:25 2012 -0700
upgraded JavaScript APIs to support new 5 minute KeepAlives.
commit a85a7de693530113ca14d443274dc9d0db7b57a7
Author: Stephen L. Blum <[email protected]>
Date: Tue Apr 24 17:20:44 2012 -0700
added Fastly CDN URL for recommended SSL JavaScript loading.
commit 360c088f8c80a5e2c93d93fa8824f8bd053969b9
Author: Stephen L. Blum <[email protected]>
Date: Tue Apr 24 15:54:33 2012 -0700
added SSL MODE config to JavaScript Doc.
commit 74b027efc42720fb1e25f208e02452c4b7833d02
Author: Stephen Blum <[email protected]>
Date: Sat Mar 3 03:10:48 2012 -0800
added Publish and Subscribe Pseudocode Requirments for a PubNub API.
commit 9c74d6877f355f22d8f0100e438a23cc0d323658
Author: Stephen Blum <[email protected]>
Date: Fri Mar 2 18:46:35 2012 -0800
updated Socket.IO Docs to include SSL connection guide.
commit 2a014b9baa0fd7fedc7116a45237b7ba912917ea
Author: Stephen Blum <[email protected]>
Date: Mon Feb 20 15:38:54 2012 -0800
updated PubNub JavaScript Unit Tests and One-off Tests and moved to a new directory.
commit 9cdf21de7b6c2c3b534b99c8bbba86ed09694f73
Author: Stephen Blum <[email protected]>
Date: Mon Feb 13 12:16:00 2012 -0800
updated JS Unit Tests for Testling usage.
commit 799751980dd52858db70945503bc917728f48753
Author: Stephen Blum <[email protected]>
Date: Sat Feb 11 17:53:42 2012 -0800
upgraded to latest Google Closure Compilre 1741.
commit 061ad0a57ab255cb267960fde2edd2330b95bf39
Author: Stephen Blum <[email protected]>
Date: Sat Feb 11 16:49:43 2012 -0800
updated PubNub Minified Script removing Generated Anonymous Function which causes a global to appare.
commit 5b12c0697f96376bedc56f624fb3b73479c1440d
Author: Stephen Blum <[email protected]>
Date: Fri Feb 10 22:41:15 2012 -0800
update provided by @gavinuhma - CTO/Founder of @goinstant - PubNub JavaScript API with special case for iPhone Private Browsing Mode.
commit 56668a13d659392d0d6d7bee0731e7ec872bac4e
Author: Stephen Blum <[email protected]>
Date: Tue Feb 7 16:44:36 2012 -0800
added new PubNub Cloud description to the JavaScript README.
commit e3ded79d8d4e028ff26916380a1dba53e1a57f4c
Author: Stephen Blum <[email protected]>
Date: Tue Feb 7 16:41:24 2012 -0800
updated PubNub JavaScript Docs with notes on usage and optoinal items.
commit 61d18cfe61ec1dd5b1fb10953f0e5a4fe88c3c17
Author: Stephen Blum <[email protected]>
Date: Tue Feb 7 16:37:55 2012 -0800
updated PubNub JavaScript README with Markdown Formatting.
commit 209866397b15fce9107b7283db6b204c11ea56ef
Author: Stephen Blum <[email protected]>
Date: Mon Feb 6 19:25:03 2012 -0800
Removed depricated Analytics API from JS Libs.
commit 89c94b6ba7d478643e07cf68a931b07f71b67492
Author: Stephen Blum <[email protected]>
Date: Mon Feb 6 18:32:44 2012 -0800
Updated PubNub JavaScript API with customer requests and new Disconnect & Reconnect events.
commit 27e7025e09cf143e89766b8cac7fb387c9bb7ff7
Author: Stephen Blum <[email protected]>
Date: Sat Feb 4 16:41:57 2012 -0800
applied MAILTO patch for PubNub JavaScript API discovered by Jon Wu @jon_wu today.
added Disconnect and Reconnect events to PubNub JavaScript API.
commit 99a36a933862343edb0c6db1d438fbfd13a2c655
Author: Stephen Blum <[email protected]>
Date: Thu Jan 26 15:24:21 2012 -0800
updated PubNub JavaScript and ActionScript API with upgrade provided by Mike Slemmer of @Spreecast for many open connections.
commit 6f8e14550ffcb7daa2eba96807e4a5c7c15bf74e
Author: Stephen Blum <[email protected]>
Date: Thu Jan 12 22:46:02 2012 -0800
added PubNub JavaScript API minified file update.
commit aba3eb2caac646fc84e35b3577409db2f430529a
Author: Stephen Blum <[email protected]>
Date: Thu Jan 12 22:45:21 2012 -0800
updated PubNub JavaScript Push API Library with option to Force Flash ON (Flash is OFF by default).
commit a150a0e68b11605a4d092e0cf1f3a9534ae97573
Author: Stephen Blum <[email protected]>
Date: Thu Jan 12 22:37:50 2012 -0800
improved SSL Primer logic for IE and Enhanced Loading State for All Browsers in the PubNub JavaScript Push API Library.
commit ea685ee7a27ac03b81a874a6d351a58fbb9689e2
Author: Stephen Blum <[email protected]>
Date: Thu Jan 12 20:16:49 2012 -0800
updated unit-test for PubNub JavaScript API lib to test for connection restoration (even if web browser is closed and re-opened) and many connections test.
commit e9d2175cf271b783002a90b9e0a7e737be8d04e3
Author: Stephen Blum <[email protected]>
Date: Thu Jan 12 18:57:16 2012 -0800
increased max connection limit by 10x for web browsers.
commit cd795ec41d8b6e42ec3246e52795d09cf16411a8
Author: Stephen Blum <[email protected]>
Date: Thu Jan 12 17:44:05 2012 -0800
major upgrade to PubNub JS Lib with improved SSL Support for IE.
no more Flash! except for Opera.
new Restore Connection feature for Page-changes and Browser Closes to keep connection state alive even if the user closes the browser tab or clicks a link to go to another page.
commit 0c5e584d9a85193f809ba928c2585dc607bb73d9
Author: Stephen Blum <[email protected]>
Date: Thu Dec 15 17:09:41 2011 -0800
added PHP benchmark script and updated Python Twisted and Python Tornado Benchmark Scripts.
commit bf6f73523c6d5cc544b115d14d3b6f1684907852
Author: Stephen Blum <[email protected]>
Date: Thu Nov 17 14:58:21 2011 -0800
updated PubNub JavaScript with patch for Chrome/Safari on Mac OSX.
commit 3a82ba5a14343407c9c2e60e7c992f610b526881
Author: Stephen Blum <[email protected]>
Date: Thu Oct 27 16:14:39 2011 -0700
updated README info for Testling Cloud Unit Test and test.sh usage.
commit 1809b68c0d43e2de64f22972b68737b49e8c17cd
Author: Stephen Blum <[email protected]>
Date: Thu Oct 27 15:48:22 2011 -0700
added Testling.js Unit Test for PubNub JavaScript Web Browser API.
commit b613cd6eb0a77da1e0ddeddecd48260b07029520
Author: Stephen Blum <[email protected]>
Date: Wed Oct 19 13:45:56 2011 -0700
added "audio mosaic" renamed from "audio rotate" which provides good Presence Detection practices.
commit 9556fea234a154941ad7e62cb1b16e98e787ef9a
Author: Stephen Blum <[email protected]>
Date: Thu Oct 13 15:00:34 2011 -0700
renamed event members in PubNub JavaScript data Push API to maintain name structure on closure compiler.
commit 51b55df511a55a0574c815d55f0beb699a3886de
Merge: ab0aa14 a083c51
Author: Stephen Blum <[email protected]>
Date: Mon Sep 19 17:22:00 2011 -0700
Merge branch 'master' of https://github.com/pubnub/pubnub-api
commit ab0aa148202980763af0038a6f215a86b8c24976
Author: Stephen Blum <[email protected]>
Date: Mon Sep 19 17:21:05 2011 -0700
added CDN url for conditional flash sockets on HTTPS contributed by jjb!
commit 655dc2ce0810dfbfba080ac284700286ef18ecb8
Author: Stephen L. Blum <[email protected]>