-
Notifications
You must be signed in to change notification settings - Fork 127
/
.pubnub.yml
1672 lines (1672 loc) · 63.5 KB
/
.pubnub.yml
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
name: c-sharp
version: "7.1.0"
schema: 1
scm: github.com/pubnub/c-sharp
changelog:
- date: 2024-12-04
version: v7.1.0
changes:
- type: feature
text: "Added support for CustomMessageType in publish, signal, files features."
- type: feature
text: "Added support for Type field in membership APIs."
- date: 2024-10-30
version: v7.0.0
changes:
- type: feature
text: "Added support for `Channel`, `ChannelGroup`, `Subscription` and `SubscriptionSet`, `ChannelMetadata`, `UserMetadata` entities for Subscribe related operation."
- type: feature
text: "BREAKING CHANGES: Default Reconnection policy is set to Exponential."
- type: feature
text: "BREAKING CHANGES: All apis calls will be made through `HttpClient` by default."
- type: feature
text: "Default value for `EnableEventEngine` is set to `true`, Subscribe operation will be executed by event engine by default."
- type: improvement
text: "Removed telemetry manager."
- date: 2024-10-03
version: v6.20.2
changes:
- type: bug
text: "Fixes issue of listener not being removed on RemoveListener call."
- date: 2024-05-09
version: v6.20.1
changes:
- type: bug
text: "Fixes issue of Unity SDK not being able to have a fully independent IJsonPluggableLibrary implementation because of direct nu-get Newtonsoft usage in C# SDK (Unity has it's own version that works with IL2CPP builds)."
- date: 2024-04-18
version: v6.20.0
changes:
- type: feature
text: "Added event engine implementation for subscribe and presence operation."
- type: feature
text: "Added support for `RetryConfiguration` to configure subscribe request retry."
- date: 2024-04-02
version: v6.19.7
changes:
- type: bug
text: "Resolved the issue where an incorrect network status was emitted when no internet connection was detected."
- date: 2024-03-28
version: v6.19.6
changes:
- type: bug
text: "Fixes issue of inaccurate DateTime to TimeToken conversion in TranslateDateTimeToPubnubUnixNanoSeconds."
- date: 2024-01-17
version: v6.19.5
changes:
- type: bug
text: "Fixes issue of getting exception for custom objects in subscription and history when crypto module is configured."
- date: 2023-11-28
version: v6.19.4
changes:
- type: bug
text: "Handle unencrypted message while getting messages with crypto."
- date: 2023-10-31
version: v6.19.3
changes:
- type: bug
text: "Fixes issue of applying default serializer settings."
- date: 2023-10-30
version: v6.19.2
changes:
- type: improvement
text: "Changed license to PubNub Software Development Kit License."
- date: 2023-10-24
version: v6.19.1
changes:
- type: bug
text: "Fixes issue of getting error when hereNow is called with channelGroups param only."
- date: 2023-10-16
version: v6.19.0
changes:
- type: feature
text: "Add crypto module that allows configure SDK to encrypt and decrypt messages."
- type: bug
text: "Improved security of crypto implementation by adding enhanced AES-CBC cryptor."
- type: bug
text: "Fixes Newtonsoft Json vulnerability with MaxDepth and upgrade to version for non-PCL."
- type: improvement
text: "Add SubscribeKey validation for subscribe feature."
- date: 2023-09-04
version: v6.18.0
changes:
- type: bug
text: "Allow name param as optional in SetChannelMetadata. Removed default empty value."
- date: 2023-07-10
version: v6.17.0
changes:
- type: improvement
text: "Validate json string before deserialization."
- date: 2023-05-18
version: v6.16.0
changes:
- type: improvement
text: "Replaced ConcurrentDictionary class file with System.Collections.Concurrent package for all target frameworks except .net 3.5/4.0."
- type: improvement
text: "Addressed threading issue on reading ConcurrentDictionary keys."
- date: 2023-03-16
version: v6.15.0
changes:
- type: feature
text: "Sending files as raw byte arrays."
- type: improvement
text: "Added TcpKeepAlive and ConnectionLimit to improve performance."
- date: 2023-02-27
version: v6.14.0
changes:
- type: improvement
text: "Undeprecated GrantToken methods/properties."
- date: 2022-12-05
version: v6.13.0
changes:
- type: bug
text: "Added null check for PublishFileMessage PNStatus in SendFileOperation."
- type: bug
text: "Removed invalid Content-Type in ObjectsV2 request headers targeting .Net Frameworks."
- type: improvement
text: "Added CultureInfo.InvariantCulture to string formatting."
- date: 2022-11-14
version: v6.12.0
changes:
- type: bug
text: "Encode comma char for push related multi channels."
- date: 2022-11-07
version: v6.11.0
changes:
- type: improvement
text: "Added Content-Type to request header to support internal acceptance tests."
- type: improvement
text: "Added acceptance tests for ObjectsV2 feature."
- date: 2022-09-06
version: v6.10.0
changes:
- type: bug
text: "Add Users/Spaces support to PCL versions."
- date: 2022-08-22
version: v6.9.0
changes:
- type: bug
text: "Fix Timer reference conflict in net6.0."
- date: 2022-08-10
version: v6.8.0
changes:
- type: bug
text: "Fixed Destroy() method when multiple Pubnub instances were in use."
- date: 2022-07-27
version: v6.7.0
changes:
- type: improvement
text: "Added support for Users/Spaces to GrantToken."
- date: 2022-07-18
version: v6.6.0
changes:
- type: improvement
text: "Introduced UserId to PNConfiguration and deprecated UUID."
- type: improvement
text: "Added build target framework support to .Net Framework 4.8 and .Net 6.0."
- date: 2022-06-14
version: v6.5.0
changes:
- type: bug
text: "Suppress web request aborted exception message to callback."
- date: 2022-05-23
version: v6.4.0
changes:
- type: bug
text: "Handle PNConfiguration for multi Pubnub instances."
- date: 2022-03-22
version: v6.3.0
changes:
- type: bug
text: "Refactor Telemetry Task Result to GetAwaiter().GetResult() ."
- type: bug
text: "Removed SILVERLIGHT, WINDOWS_PHONE preprocessor directive code."
- date: 2022-01-27
version: v6.2.0
changes:
- type: improvement
text: "Bumped PeterO.Cbor library version to 4.5.2."
- date: 2022-01-20
version: v6.1.0
changes:
- type: bug
text: "Capture region when exception occur during subscribe."
- date: 2022-01-12
version: v6.0.0
changes:
- type: improvement
text: "BREAKING CHANGES: UUID is mandatory to use SDK."
- date: 2021-12-16
version: v5.4.0
changes:
- type: bug
text: "Replaced BouncyCastle lib with System.Security.Cryptography.Algorithms."
- type: bug
text: "Added try/catch for publish operation to catch exceptions."
- date: 2021-11-16
version: v5.3.0
changes:
- type: feature
text: "Added RevokeToken feature."
- version: v5.2.0
date: 2021-11-01
changes:
- type: improvement
text: Capture region for subscribe.
- type: improvement
text: Removed throw exception on atleast one PAM permission validation.
- version: v5.1.0
date: 2021-10-12
changes:
- type: improvement
text: Dispose RandomNumberGenerator
- type: feature
text: Added PAMv3 support - GrantToken, ParseToken, SetAuthToken.
- version: v5.0.1
date: 2021-07-14
changes:
- type: improvement
text: Replaced Random class with RandomNumberGenerator for secure random bytes.
- type: improvement
text: Handling of SendFile file size exceeded error message and refactored DeleteFile.
- type: improvement
text: Refactored Encrypt/Decrypt methods in calling PubnubCrypto constructor with config.
- version: v5.0.0
date: 2021-06-14
changes:
- type: feature
text: "BREAKING CHANGE - UseRandomInitializationVector is true by default."
- version: 4.15.0.0
date: 2021-05-27
changes:
- type: improvement
text: Refactored code to handle malformed message for reconnection policy.
- version: 4.14.0.0
date: 2021-05-18
changes:
- type: bug
text: Refactored code to handle malformed message for re-subscribe.
- type: improvement
text: Upgraded System.Net.Http minimum version to 4.3.4, to address security advisory CVE-2018-8292 in PubnubPCL.
- version: 4.13.0.0
date: 2021-01-18
changes:
- type: improvement
text: Increase message count default limit for History v3 api call to 100 for single channel.
- type: bug
text: UnsubscribeAll fix when no channels subscribed.
- version: 4.12.0.0
date: 2020-10-05
changes:
- type: improvement
text: Added support to Objects Access Manager
- version: 4.11.0.0
date: 2020-08-27
changes:
- type: improvement
text: Fix for SaveFileToLocal in PNDownloadFileResult
- type: improvement
text: Code refactor to use file Content-Type from generate-upload-url form fields
- type: improvement
text: Removed IncludeUuid and IncludeMessageType from v2/history endpoint
- version: 4.10.0.0
date: 2020-07-30
changes:
- type: improvement
text: Fix for publish file message
- type: improvement
text: Modified PNFileEventResult model class and applied internal set accessor for models.
- version: 4.9.0.0
date: 2020-07-28
changes:
- type: improvement
text: Added files feature
- version: 4.8.0.0
date: 2020-06-10
changes:
- type: improvement
text: Removed V1 Objects API feature. BREAKING CHANGE if you are using V1 Objects.
- type: improvement
text: Added Objects Simplification API feature.
- version: 4.7.0.0
date: 2020-05-27
changes:
- type: improvement
text: Code refactor for Signal, Publish, Fire input validation.
- version: 4.6.0.0
date: 2020-04-30
changes:
- type: improvement
text: Added async/await support for feature method calls.
- type: improvement
text: Added sort for Objects API.
- type: improvement
text: Typo correction SupressLeaveEvents to SuppressLeaveEvents in PNConfiguration.
- version: 4.5.0.0
date: 2020-01-09
changes:
- type: improvement
text: Code refactor to fix Objects and MessageActions using POST/PATCH/DELETE based requests.
- type: improvement
text: Added filter support for Objects API.
- version: 4.4.0.0
date: 2019-12-19
changes:
- type: improvement
text: Refactored code related to TMS GetToken and GetTokens
- type: improvement
text: Refactored code to retrieve assembly version
- version: 4.3.0.0
date: 2019-12-12
changes:
- type: improvement
text: Added APNS2 support for mobile push.
- type: improvement
text: Added helper class to build mobile push payload.
- type: improvement
text: Refactored code for PAM Signature.
- version: 4.2.0.0
date: 2019-10-15
changes:
- type: improvement
text: Added IncludeMeta option to History.
- type: improvement
text: Added new feature FetchHistory.
- type: improvement
text: Added support for Message Actions.
- type: improvement
text: Fix for ManageMembers and ManageMemberships when multiple include fields are provided.
- version: 4.1.0.0
date: 2019-09-26
changes:
- type: improvement
text: Fix for MessageCounts when multiple channels are used.
- type: improvement
text: Fix for PAM Signature when case-sensitive param keys are provided.
- type: improvement
text: Refactored all calls that use PAM signature to use v2 format signature.
- type: improvement
text: Implemented PAMv3 to all Objects.
- type: improvement
text: New feature Token Management System to all Objects.
- version: 4.0.33.0
date: 2019-08-22
changes:
- type: improvement
text: Modified Signal listener message type to PNSignalResult.
- type: improvement
text: Added ObjectsAPI feature.
- version: 4.0.32.0
date: 2019-08-08
changes:
- type: improvement
text: Async() is deprecated. Use Execute() instead.
- type: improvement
text: Added Signal feature.
- version: 4.0.31.0
date: 2019-07-25
changes:
- type: improvement
text: Refactored code to encode unsafe chars ignored by EscapeDataString in NET35/NET40
- version: 4.0.30.0
date: 2019-05-28
changes:
- type: improvement
text: Refactored code to enforce minimum PresenceTimeout value to 20
- type: improvement
text: Refactored code to handle bool type in presence state
- version: 4.0.29.0
date: 2019-04-25
changes:
- type: improvement
text: Fix to retrieve channel name for PNPresenceEventResult when channel group is used
- version: 4.0.28.0
date: 2019-03-28
changes:
- type: improvement
text: Fix for MessageCounts feature when multiple channels or timetokens are used with PAM enabled keys
- version: 4.0.27.0
date: 2019-03-13
changes:
- type: improvement
text: Added MessageCounts feature to get count of messages published since a given time
- version: 4.0.26.0
date: 2019-02-14
changes:
- type: improvement
text: Fix to capture last timetoken when subscribe request timeout/terminated
- version: 4.0.25.0
date: 2019-02-07
changes:
- type: improvement
text: Refactored code to allow tilde char for publish GET with secret key
- type: improvement
text: Minor code refactoring based on Codacy analysis
- version: 4.0.24.0
date: 2018-10-11
changes:
- type: improvement
text: Code refactor to check null value of variables related to Reconnect usage
- version: 4.0.23.0
date: 2018-10-01
changes:
- type: improvement
text: Code refactor based on codacy rules on unused code
- type: improvement
text: Refactored code to handle WebException from HttpRequestException for NetStandard platforms
- version: 4.0.22.0
date: 2018-09-06
changes:
- type: improvement
text: Added Grant delete permission feature
- type: improvement
text: Modified SDK dependency Portable.BouncyCastle minimum version to 1.8.1.2
- version: 4.0.21.0
date: 2018-08-13
changes:
- type: improvement
text: Refactored code for performance improvement
- type: improvement
text: Refactored CleanupTelemetryData
- version: 4.0.20.0
date: 2018-08-06
changes:
- type: improvement
text: Refactored code to publish multiple emoji characters
- type: improvement
text: Refactored code to improve performance of Publish/Fire/Grant/Subscribe/Unsubscribe requests targeting .net framework
- version: 4.0.19.0
date: 2018-07-12
changes:
- type: improvement
text: Code refactor to maintain separate instance id during multi-instancing
- version: 4.0.18.0
date: 2018-06-20
changes:
- type: improvement
text: Added Publisher property to PNMessageResult of subscribe
- type: improvement
text: Added PNException class and refactored code internally around status response
- version: 4.0.17.0
date: 2018-05-30
changes:
- type: improvement
text: Code refactor related to MultiplexExceptionHandler
- type: improvement
text: Support to Apple Watch
- type: improvement
text: Code refactor related to PubnubInstance
- version: 4.0.16.0
date: 2018-04-09
changes:
- type: improvement
text: Code refactor to ClientNetworkStatus
- type: improvement
text: Proxy support for HttpClient
- type: improvement
text: Code refactor to Telemetry
- type: improvement
text: Reduced internal subscribe heartbeat interval for improvement in message delivery
- version: 4.0.15.0
date: 2018-03-22
changes:
- type: improvement
text: Feature to add external query params
- type: improvement
text: Internal deduping mechanism when devices cross regions (DedupOnSubscribe)
- type: improvement
text: Added provision to SupressLeaveEvents
- type: improvement
text: Refactored code related to network check time request for non-200 response logging
- version: 4.0.14.0
date: 2018-02-15
changes:
- type: improvement
text: Fix for Publish Sync
- type: improvement
text: Refactored Int32/Int64 Parse to TryParse
- type: improvement
text: Code refactor based on Codacy
- version: 4.0.13.0
date: 2018-01-18
changes:
- type: improvement
text: Relay server sent error status to PNStatus for Publish request
- type: improvement
text: Refactored to allow colon char for publish with secret key
- version: 4.0.12.0
date: 2017-12-21
changes:
- type: improvement
text: Relay server sent 403 status to PNStatus for PCL
- type: improvement
text: Resolved array type published message for Subscribe<string>
- version: 4.0.11.0
date: 2017-12-14
changes:
- type: improvement
text: Refactored by applying JArray.Parse for history and time json response
- version: 4.0.10.0
date: 2017-12-13
changes:
- type: improvement
text: Refactored code by replacing Add with AddOrGet for ConcurrentDictionary
- type: improvement
text: Added exception handling in TerminateReconnectTimer
- type: improvement
text: Code refactor based on Codacy recommendation
- version: 4.0.9.0
date: 2017-12-05
changes:
- type: improvement
text: Return PNStatus for non-subscribe requests timeout
- type: improvement
text: Fix for PAM Grant requests to work independent of device locale
- type: improvement
text: Code refactor based on Codacy recommendation
- version: 4.0.8.0
date: 2017-11-09
changes:
- type: improvement
text: Added bool return value for AddListener and RemoveListener
- type: improvement
text: ResetTimeToken option for Reconnect and bool return for Reconnect/Disconnect
- type: improvement
text: Resubscribe fix when channelgroup is used
- version: 4.0.7.0
date: 2017-11-01
changes:
- type: improvement
text: Added exception handling to AddListener and RemoveListener
- type: improvement
text: Code refactor to address collection modified error in TelemetryManager
- type: improvement
text: Code refactor based on Codacy recommendation
- version: 4.0.6.0
date: 2017-10-27
changes:
- type: improvement
text: Added null check in exception catch block during network reconnect
- type: improvement
text: Refactored code to send correct channel group, if exist, to PNStatus during network reconnect
- type: improvement
text: Fix for delete message from history
- type: improvement
text: Code refactor based on Codacy recommendation
- version: 4.0.5.2
date: 2017-10-10
changes:
- type: improvement
text: Added exception handling for subscribe and unsubscribe internal exceptions
- version: 4.0.5.1
date: 2017-09-26
changes:
- type: improvement
text: Added new method RemoveAllPushNotificationsFromDeviceWithPushToken
- type: improvement
text: Code refactor on Reconnect
- type: improvement
text: Code refactor based on Codacy recommendation
- version: 4.0.4.1
date: 2017-09-19
changes:
- type: improvement
text: Added Telemetry feature
- type: improvement
text: Fix for PNPushListProvisionsResult
- version: 4.0.3.2
date: 2017-09-06
changes:
- type: improvement
text: Added HereNowRefresh to PNPresenceEventResult
- type: improvement
text: PCL version duplicate message fix for multiple disconnect/reconnect
- version: 4.0.3.1
date: 2017-08-18
changes:
- type: improvement
text: Refactored code to handle exception in Unsubscribe and query builder functionality
- type: improvement
text: Migrated source code from VS 2015 to VS 2017
- type: improvement
text: Added DeleteMessages feature
- version: 4.0.2.2
date: 2017-07-20
changes:
- type: improvement
text: Code refactor to fix subscribe timeout and reconnect
- version: 4.0.2.0
date: 2017-07-05
changes:
- type: improvement
text: Refactored code for application level grant
- type: improvement
text: Refactored code to reuse HttpClient instance
- type: improvement
text: Refactored code to handle Pubnub multi-instancing
- version: 4.0.1.7
date: 2017-06-07
changes:
- type: improvement
text: Fix for publish with UsePOST and cipher key
- type: improvement
text: Handling object array for History response
- version: 4.0.1.6
date: 2017-04-15
changes:
- type: improvement
text: Fix for subscribe connect status callback
- type: improvement
text: Message null value check for publish
- version: 4.0.1.5
date: 2017-04-06
changes:
- type: improvement
text: Refactored to handle thread blocking
- version: 4.0.1.4
date: 2017-03-31
changes:
- type: improvement
text: Fix to support Xamarin.Android Pubnub SDK install using Visual Studio
- version: 4.0.1.3
date: 2017-03-29
changes:
- type: improvement
text: Added code to handle presence interval event
- type: improvement
text: Code refactor per CA2000 code analysis
- version: 4.0.1.3-rc13
date: 2017-03-28
changes:
- type: improvement
text: Refactored to address false alert log and timeout messages.
- version: 4.0.1.3-rc12
date: 2017-03-16
changes:
- type: improvement
text: Support for ASP.NET/MVC project template projects.
- version: 4.0.1.3-rc11
date: 2017-03-11
changes:
- type: improvement
text: Replaced HttpClient with compatible lib for .net 4.5/4.61 to support VS 2013.
- version: 4.0.1.3-rc10
date: 2017-03-08
changes:
- type: bug
text: Comma encoding fix for multi channelgroups
- type: bug
text: Fixed channel remove from channelgroup
- version: 4.0.1.3-rc9
date: 2017-03-03
changes:
- type: bug
text: Message fix for history when timetoken=false.
- version: 4.0.1.3-rc8
date: 2017-03-02
changes:
- type: improvement
text: Added pn- prefix to default uuid.
- version: 4.0.1.3-rc7
date: 2017-02-20
changes:
- type: bug
text: pcl profile 111 subscribe message fix.
- version: 4.0.1.3-rc6
date: 2017-02-17
changes:
- type: bug
text: Timetoken fix for subscribed messages.
- version: 4.0.1.3-rc5
date: 2017-02-07
changes:
- type: improvement
text: HttpClient to supported platforms.
- type: bug
text: Fixed Unsubscribe issue.
- version: 4.0.1.3-rc1
date: 2017-01-17
changes:
- type: improvement
text: Derived classes for inline coding.
- version: 4.0.1.2-rc1
date: 2016-12-16
changes:
- type: improvement
text: Cipher typo, Origin change.
- version: 4.0.1.0-rc1
date: 2016-12-12
changes:
- type: improvement
text: initial v4 version.
features:
access:
- ACCESS-GRANT
- ACCESS-GRANT-MANAGE
- ACCESS-GRANT-DELETE
- ACCESS-SECRET-KEY-ALL-ACCESS
- ACCESS-OBJECTS-V2-MANAGEMENT
- ACCESS-GRANT-TOKEN
- ACCESS-REVOKE-TOKEN
- ACCESS-PARSE-TOKEN
- ACCESS-SET-TOKEN
channel-groups:
- CHANNEL-GROUPS-ADD-CHANNELS
- CHANNEL-GROUPS-REMOVE-CHANNELS
- CHANNEL-GROUPS-REMOVE-GROUPS
- CHANNEL-GROUPS-LIST-CHANNELS-IN-GROUP
notify:
- REQUEST-MESSAGE-COUNT-EXCEEDED
push:
- PUSH-ADD-DEVICE-TO-CHANNELS
- PUSH-REMOVE-DEVICE-FROM-CHANNELS
- PUSH-LIST-CHANNELS-FROM-DEVICE
- PUSH-REMOVE-DEVICE
- PUSH-TYPE-APNS
- PUSH-TYPE-APNS2
- PUSH-TYPE-FCM
presence:
- PRESENCE-HERE-NOW
- PRESENCE-WHERE-NOW
- PRESENCE-SET-STATE
- PRESENCE-GET-STATE
- PRESENCE-HEARTBEAT
- PRESENCE-HERE-NOW-REFRESH
- PRESENCE-DELTAS
publish:
- PUBLISH-STORE-FLAG
- PUBLISH-RAW-JSON
- PUBLISH-WITH-METADATA
- PUBLISH-GET
- PUBLISH-POST
- PUBLISH-SYNC
- PUBLISH-ASYNC
- PUBLISH-FIRE
- PUBLISH-REPLICATION-FLAG
- PUBLISH-MESSAGE-TTL
- PUBLISH-FILE-MESSAGE
storage:
- STORAGE-REVERSE
- STORAGE-INCLUDE-TIMETOKEN
- STORAGE-START-END
- STORAGE-COUNT
- STORAGE-DELETE-MESSAGES
- STORAGE-FETCH-MESSAGES
- STORAGE-MESSAGE-COUNT
- STORAGE-HISTORY-WITH-META
- STORAGE-FETCH-WITH-META
- STORAGE-FETCH-WITH-MESSAGE-ACTIONS
time:
- TIME-TIME
subscribe:
- SUBSCRIBE-CHANNELS
- SUBSCRIBE-CHANNEL-GROUPS
- SUBSCRIBE-PRESENCE-CHANNELS
- SUBSCRIBE-PRESENCE-CHANNELS-GROUPS
- SUBSCRIBE-WITH-TIMETOKEN
- SUBSCRIBE-WILDCARD
- SUBSCRIBE-FILTER-EXPRESSION
- SUBSCRIBE-PUBLISHER-UUID
- SUBSCRIBE-WITH-USERSTATE
- SUBSCRIBE-PUBSUB-V2
- SUBSCRIBE-MESSAGE-DEDUPE
- SUBSCRIBE-SIGNAL-LISTENER
- SUBSCRIBE-MEMBERSHIP-LISTENER
- SUBSCRIBE-SPACE-LISTENER
- SUBSCRIBE-USER-LISTENER
- SUBSCRIBE-MESSAGE-ACTIONS-LISTENER
unsubscribe:
- UNSUBSCRIBE-ALL
- UNSUBSCRIBE-SUPPRESS-LEAVE-EVENTS
signal:
- SIGNAL-SEND
objects:
- OBJECTS-GET-ALL-UUID-METADATA
- OBJECTS-GET-UUID-METADATA
- OBJECTS-SET-UUID-METADATA
- OBJECTS-REMOVE-UUID-METADATA
- OBJECTS-GET-ALL-CHANNEL-METADATA
- OBJECTS-GET-CHANNEL-METADATA
- OBJECTS-SET-CHANNEL-METADATA
- OBJECTS-REMOVE-CHANNEL-METADATA
- OBJECTS-GET-MEMBERSHIPS-V2
- OBJECTS-SET-MEMBERSHIPS-V2
- OBJECTS-REMOVE-MEMBERSHIPS-V2
- OBJECTS-MANAGE-MEMBERSHIPS-V2
- OBJECTS-GET-CHANNEL-MEMBERS-V2
- OBJECTS-SET-CHANNEL-MEMBERS-V2
- OBJECTS-REMOVE-CHANNEL-MEMBERS-V2
- OBJECTS-MANAGE-CHANNEL-MEMBERS-V2
- OBJECTS-FILTERING
- OBJECTS-SORTING
files:
- FILES-SEND-FILE
- FILES-LIST-FILES
- FILES-GET-FILE-URL
- FILES-DELETE-FILE
- FILES-DOWNLOAD-FILE
message-actions:
- MESSAGE-ACTIONS-GET
- MESSAGE-ACTIONS-ADD
- MESSAGE-ACTIONS-REMOVE
others:
- TELEMETRY
- QUERY-PARAM
supported-platforms:
-
version: Pubnub 'C#' 7.1.0
platforms:
- Windows 10 and up
- Windows Server 2008 and up
frameworks:
- .Net Framework 3.5
- .Net Framework 4.0
- .Net Framework 4.5
- .Net Framework 4.6.1+
- .Net Framework 6.0
-
version: PubnubPCL 'C#' 7.1.0
platforms:
- Xamarin.Android
- Xamarin.iOS
- Xamarin.Mac
- Xamarin.Forms
- Windows 10
- Mac OS X 10 and up
- Windows Server 2008 and up
frameworks:
- Mono 4.8.0
- .Net Standard 1.0
- .Net Standard 1.1
- .Net Standard 1.3
- .Net Standard 1.4
- .Net Standard 2.0
- .Net Standard 2.1
- .Net Core
- .Net 6.0
-
version: PubnubUWP 'C#' 7.1.0
platforms:
- Windows Phone 10
- Universal Windows Apps
- Windows 10
sdks:
-
full-name: Pubnub C# SDK
short-name: C#
artifacts:
-
artifact-type: api-client
language: c#
tier: 1
tags:
- Desktop
- Server
source-repository: https://github.com/pubnub/c-sharp
documentation: https://www.pubnub.com/docs/sdks/c-sharp
distributions:
-
distribution-type: source
distribution-repository: GitHub
package-name: Pubnub
location: https://github.com/pubnub/c-sharp/releases/tag/v7.1.0.0
requires:
-
name: ".Net"
min-version: "3.5 or higher"
license: "MS-EULA"
license-url: "https://www.microsoft.com/web/webpi/eula/net_library_eula_enu.htm"
location: "Should be installed on computer"
is-required: "Required"
-
name: "Newtonsoft.Json"
min-version: "9.0.1"
license: "MIT"
license-url: "https://raw.githubusercontent.com/JamesNK/Newtonsoft.Json/master/LICENSE.md"
location: "External"
is-required: "Required"
-
name: "PeterO.Cbor"
min-version: "4.5.2"
license: "CC0-1.0"
license-url: "https://www.nuget.org/packages/PeterO.Cbor/4.5.2"
location: "External"
is-required: "Required"
-
name: "AsyncBridge.Net35"
min-version: "0.2.0"
license: "MIT"
license-url: "https://www.nuget.org/packages/AsyncBridge.Net35/0.2.0"
location: "External"
is-required: "Optional, only required for .NET 3.5"
-
name: "TaskParallelLibrary"
min-version: "1.0.2856"
license: "MS-EULA"
license-url: "https://go.microsoft.com/fwlink/?LinkID=186234"
location: "External"
is-required: "Optional, only required for .NET 3.5"
-
name: "AsyncBridge.JetBrains"
min-version: "0.1.1"
license: "GNU General Public License v3.0"
license-url: "https://libraries.io/nuget/AsyncBridge.JetBrains"
location: "External"
is-required: "Optional, only required for .NET 4.0"
supported-platforms:
supported-operating-systems:
Windows:
target-architecture:
- x86-64
runtime-version:
- .NET 6.x Equivalent
api-compatibility:
- .NET 6.x
minimum-os-version:
- Windows 10 Home
- Windows 10 Pro
- Windows 10 Pro for Workstations
- Windows 10 Pro Education
- Windows 10 Enterprise
- Windows 10 Enterprise LTSC (formerly LTSB)
- Windows 10 Education
- Windows Server 2019 Essentials
- Windows Server 2019 Standard
- Windows Server 2019 Datacenter
- Windows Server 2016 Essentials
- Windows Server 2016 Standard
- Windows Server 2016 Datacenter
- Windows Server 2012 R2 Foundation
- Windows Server 2012 R2 Essentials
- Windows Server 2012 R2 Standard
- Windows Server 2012 R2 Datacenter
- Windows Server 2012 Foundation
- Windows Server 2012 Essentials
- Windows Server 2012 Standard
- Windows Server 2012 Datacenter
- Windows MultiPoint Server 2012
- Windows Server 2008 R2 Foundation
- Windows Server 2008 R2 Standard
- Windows Server 2008 R2 Enterprise
- Windows Server 2008 R2 Datacenter
- Windows Server 2008 R2 for Itanium-based Systems
- Windows Web Server 2008 R2
- Windows Storage Server 2008 R2
- Windows HPC Server 2008 R2
- Windows Small Business Server 2011
- Windows MultiPoint Server 2011
- Windows Home Server 2011
- Windows MultiPoint Server 2010
- Windows Server 2008
maximum-os-version:
- Windows 10 Home
- Windows 10 Pro
- Windows 10 Pro for Workstations
- Windows 10 Pro Education
- Windows 10 Enterprise
- Windows 10 Enterprise LTSC (formerly LTSB)
- Windows 10 Education
- Windows Server 2019 Essentials
- Windows Server 2019 Standard
- Windows Server 2019 Datacenter
- Windows Server 2016 Essentials
- Windows Server 2016 Standard
- Windows Server 2016 Datacenter
- Windows Server 2012 R2 Foundation
- Windows Server 2012 R2 Essentials
- Windows Server 2012 R2 Standard
- Windows Server 2012 R2 Datacenter
- Windows Server 2012 Foundation
- Windows Server 2012 Essentials
- Windows Server 2012 Standard
- Windows Server 2012 Datacenter
- Windows MultiPoint Server 2012
- Windows Server 2008 R2 Foundation
- Windows Server 2008 R2 Standard
- Windows Server 2008 R2 Enterprise
- Windows Server 2008 R2 Datacenter
- Windows Server 2008 R2 for Itanium-based Systems
- Windows Web Server 2008 R2
- Windows Storage Server 2008 R2
- Windows HPC Server 2008 R2
- Windows Small Business Server 2011
- Windows MultiPoint Server 2011
- Windows Home Server 2011
- Windows MultiPoint Server 2010
- Windows Server 2008
-
artifact-type: package
language: c#
tier: 1
tags: