-
Notifications
You must be signed in to change notification settings - Fork 189
/
.pubnub.yml
1551 lines (1551 loc) · 51 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: objective-c
scm: github.com/pubnub/objective-c
version: "5.6.1"
schema: 1
changelog:
- date: 2024-07-08
version: v5.6.1
changes:
- type: bug
text: "Fix issue because of which wrong request timeout has been used."
- type: bug
text: "Fix issue with `PNSubscribeCursorData` which should have an optional `region` to handle user timetoken in received real-time messages."
- date: 2024-06-27
version: v5.6.0
changes:
- type: feature
text: "Decoder to map server response directly to the data models."
- type: feature
text: "Configurable request objects require less convenience methods to interact with PubNub REST API."
- type: feature
text: "Network layer rewritten as module."
- date: 2024-06-12
version: v5.5.0
changes:
- type: feature
text: "Adjusting to FCM HTTP v1 API."
- date: 2024-04-30
version: v5.4.1
changes:
- type: bug
text: "Match `include` folder content to the `import` in source code."
- date: 2024-04-16
version: v5.4.0
changes:
- type: feature
text: "Adding PrivacyInfo.xcprivacy."
- date: 2023-12-19
version: v5.3.0
changes:
- type: feature
text: "Add the ability to set automatic request retry configuration in `PNConfiguration`."
- date: 2023-10-30
version: v5.2.1
changes:
- type: improvement
text: "Update license information."
- date: 2023-10-16
version: v5.2.0
changes:
- type: feature
text: "Add a crypto module with a set of implemented cryptors."
- type: improvement
text: "Mark `uuid` as deprecated configuration property."
- type: improvement
text: "Fix warnings after project settings update."
- date: 2022-12-13
version: v5.1.3
changes:
- type: bug
text: "Serialise access to previously created session configuration objects from different threads."
- date: 2022-12-09
version: v5.1.2
changes:
- type: bug
text: "Fix issue because of which message de-duplication code leaked memory."
- date: 2022-09-06
version: v5.1.1
changes:
- type: bug
text: "Fix issue because of which `PNFilesManager` leaked each time when PubNub client created."
- date: 2022-03-11
version: v5.1.0
changes:
- type: feature
text: "Make it possible to use PubNub Objective-C SDK using SPM."
- date: 2022-01-12
version: v5.0.0
changes:
- type: improvement
text: "BREAKING CHANGES: Disable automated `uuid` generation and make it mandatory to specify during PNConfiguration instance creation."
- date: 2021-09-22
version: v4.17.0
changes:
- type: feature
text: "Add method which allow to set or parse auth token."
-
changes:
-
text: "Add download error checks in Files API integration tests to have ability investigate random test failure with data download on Travis."
type: improvement
-
text: "Fix issue because of which null-able completion block wasn't properly verified and caused application crash."
type: bug
-
text: "Fix compiler warnings on type mismatch."
type: bug
date: 2021-06-09
version: v4.16.2
-
changes:
-
text: "Replace `os_unfair_lock` with `pthread_mutex` to avoid cases when `os_unfair_lock_lock` called from same thread more than once."
type: bug
date: 2021-03-16
version: v4.16.1
-
changes:
-
text: "BREAKING CHANGE: Add randomized initialization vector usage by default for data encryption / decryption in publish / subscribe / history API calls."
type: feature
date: 2021-03-09
version: v4.16.0
-
changes:
-
text: "Add `heartbeat` to `subscribe` REST API call when `managePresenceListManually` is set to YES."
type: feature
date: 2021-02-06
version: v4.15.11
-
changes:
-
text: "Fix `copyWithConfiguration:completion:` which sometime stuck because of long-poll subscribe."
type: bug
date: 2021-02-06
version: v4.15.10
-
changes:
-
text: "Make `PNBasePublishRequest` header publicly visible."
type: bug
-
text: "Fix issue because of which subscriber reset heartbeat timer while in manual presence management mode."
type: bug
date: 2021-02-04
version: v4.15.9
-
changes:
-
text: "Add new parameters to `Here Now` builder-based API to get presence information for list of channels or channel groups."
type: feature
date: 2020-11-16
version: v4.15.8
-
changes:
-
text: "Add `timetoken` from file information publish call into `PNSendFileStatus` object."
type: feature
date: 2020-10-03
version: v4.15.7
-
changes:
-
text: "Fix issue because of which `PNPublishSequence` metrics data migration caused application crash."
type: bug
-
text: "Fix subscription loop issue caused by broken bytes array with null-byte in it."
type: bug
date: 2020-09-26
version: v4.15.6
-
changes:
-
text: "Increase default number of messages returned by History v3, when single channel passed, to 100 messages per single call."
type: improvement
date: 2020-09-18
version: v4.15.5
-
changes:
-
text: "Update code to ensure that persistent and in-memory storage accessed in thread-safe way."
type: improvement
-
text: "Fix issue because of which migrated data didn't placed at proper place."
type: bug
date: 2020-09-10
version: v4.15.4
-
changes:
-
text: "Add `include_message_type` option to fetch messages and history with message actions APIs."
type: feature
-
text: "Add `include_uuid` option to fetch messages and history with message actions APIs."
type: feature
-
text: "Replace content type, which is returned by server during upload url generation, using system capabilities to detect MIME type by file extension."
type: improvement
-
text: "Split current Keychain helper to two separate storage options: in-memory and Keychain. Keychain will be used when possible and in-memory for cases when Keychain not available and macOS."
type: improvement
-
text: "After Keychain reorganization publish sequence manager has been restructured to use dispatch queue instead of SpinLock."
type: bug
date: 2020-08-13
version: v4.15.3
-
changes:
-
text: "Add same set of query parameters to download URL as any regular operation to PubNub service."
type: bug
-
text: "Fix issue with files larger than 32 kilobytes."
type: bug
date: 2020-08-01
version: v4.15.2
-
changes:
-
text: "Fix default issues after migration to publish requests objects usage because of which `replicate` and `store` has been reset to `false`."
type: bug
date: 2020-07-28
version: v4.15.1
-
changes:
-
text: "Add send file API support which allow encrypt (if configured) and upload file to `channel`."
type: feature
-
text: "Add download file API support which allow download file from `channel` and decrypt (if configured)."
type: feature
-
text: "Add list files API support which allow retrieve information about files sent to `channel`."
type: feature
-
text: "Add delete file API support to permanently remove file from `channel`."
type: feature
-
text: "Add file message publish API which allow notify about new file upload completion (should be used to recover from internal publish error)."
type: feature
-
text: "Add new subscribe events listener to handle new files events."
type: feature
-
text: "Add new methods to PNAES which allow to encrypt / decrypt file at local file system."
type: feature
-
text: "Add new option for PubNub client configuration and PNAES methods to use random initialization vector instead of hard-coded when files / data is encrypted / decrypted."
type: feature
date: 2020-07-27
version: v4.15.0
-
changes:
-
text: "Make device push tokens added to `excluded_devices` lowercase."
type: bug
date: 2020-06-19
version: v4.14.2
-
changes:
-
text: "By default, all requests which is able to return multiple objects, will return their total count (corresponding `includeFields` flag is set)."
type: feature
-
text: "Renamed group of methods which is responsible for `channel` members management / audit."
type: improvement
date: 2020-06-06
version: v4.14.1
-
changes:
-
text: "Add simplified Objects API support with UUID and Channel metadata / membership management."
type: feature
-
text: "Deprecate and replace old `PNObjectEventListener` protocol with new one `PNEventsListener`."
type: improvement
date: 2020-05-29
version: v4.14.0
-
changes:
-
text: "Don't create lowercase string when FCM device registration token provided to PubNub notifications API."
type: bug
date: 2020-05-18
version: v4.13.2
-
changes:
-
text: "Remove Fabric components from `PubNub.podspec` because they have been removed from SDK with latest release."
type: bug
date: 2020-03-26
version: v4.13.1
-
changes:
-
text: "Add additional functionality which allow to filter out received Objects (memberships, members, spaces or users) by specified criteria."
type: feature
-
text: "Add new parameters which allow specify criteria (list of field names with sort direction `:asc` / `:desc` for each) order in which objects appear in response."
type: feature
-
text: "Add scripts which is responsible for SDK release roll out from tag in private repository."
type: feature
-
text: "Presence state should set / fetch fail w/o actual request to server when list of channels / groups and uuid is missing."
type: improvement
-
text: "Fix issue because of which `connected` interface didn't called completion block when `managePresenceListManually` is set to `NO`."
type: bug
-
text: "Fix issue because of which `includeMetadata` and `includeMessageActions` flags has been swapped."
type: bug
-
text: "Fix issue because of which actual retry never happened in case if subscription failed because PAM reported that client with current `authKey` doesn't have access rights to channels / groups."
type: bug
-
text: "Fix issue which didn't reset subscribe time-token when `keepTimeTokenOnListChange` is set to `NO` and `tryCatchUpOnSubscriptionRestore` is set to `YES`."
type: bug
-
text: "Remove 'macOS' from supported platforms in iOS Framework targets and rely on command-line specified flags to build Framework with Catalyst support."
type: bug
date: 2020-03-09
version: v4.13.0
-
changes:
-
text: "Added support for new endpoint which allow register and use devices with APNS2."
type: feature
-
text: "Added new interfaces (builder-based API also has been modified) which allow pass device push token / identifier (not only NSData) using specific push service type."
type: feature
-
text: "Added class which simplify basic notifications composition for multiple platforms / providers at once."
type: feature
-
text: "Exposed utility class which allow to manage data in Keychain (iOS)."
type: improvement
-
text: "Fixed non-JSON response handling from History v2 endpoints when storage add-on not enabled for used keys."
type: bug
date: 2019-12-05
version: v4.12.0
-
changes:
-
text: "Added proper Catalyst framework support with separate build target 'XCFramework (Catalyst)' which is bundled with binaries which allow it to be used for: device / simulator and macOS."
type: feature
-
text: "Changed build scripts which now produce XCFrameworks with separate slices for device and simulator instead of 'fat' binaries created with 'lipo'."
type: improvement
-
text: "Changed headers visibility in frameworks project from 'project' to 'public'."
type: bug
date: 2019-11-25
version: v4.11.1
-
changes:
-
text: "Add Message Actions API support which allow to: add, remove and fetch previously added actions."
type: feature
-
text: "Add new method to simple interface and argument to builder pattern interface which allow to fetch previously added actions and message metadata."
type: feature
-
text: "Modify 'PNObjectEventListener' with new callback which can be used to track message actions addition / removal events."
type: feature
-
text: "Enhance publish sequence manager performance by making save only if any change has been done."
type: improvement
date: 2019-10-08
version: v4.11.0
-
changes:
-
text: "Add missing import of Objects API interface to frameworks umbrella header."
type: bug
date: 2019-08-30
version: v4.10.1
-
changes:
-
text: "Add support for Space Objects API."
type: feature
-
text: "Add support for User Objects API."
type: feature
-
text: "Add support for Membership / Member Objects API."
type: feature
-
text: "Add new callback to 'PNObjectEventListener', so existing listeners may start receiving 'space' events by adding new callback implementation."
type: feature
-
text: "Add new callback to 'PNObjectEventListener', so existing listeners may start receiving 'user' events by adding new callback implementation."
type: feature
-
text: "Add new callback to 'PNObjectEventListener', so existing listeners may start receiving 'membership' events by adding new callback implementation."
type: feature
date: 2019-08-27
version: v4.10.0
-
changes:
-
text: "Add support for signal API."
type: feature
-
text: "Add new callback to 'PNObjectEventListener', so existing listeners may start receiving 'signal' objects by adding new callback implementation."
type: feature
-
text: "Disable pipelining for requests, because there is no guarantee, what responses will arrive in same order as they has been requested - this may lead to unexpected response in used API."
type: improvement
-
text: "Remove deprecated 'stripMobilePayload' configuration option from SDK along with code, which used it."
type: improvement
-
text: "Fixed crash which is caused by attempt to de-duplicate message which PubNub client wasn't able to decrypt with configured 'cipherKey'."
type: bug
date: 2019-08-08
version: v4.9.0
-
changes:
-
text: "Add macOS support for iOS frameworks."
type: feature
date: 2019-07-15
version: v4.8.11
-
changes:
-
text: "Fix subscribe request timeout missing 'reconnect' event."
type: bug
-
text: "Fix empty heartbeat value set to minimum on configuration copy."
type: bug
-
text: "Update outdated configuration object inline help documentation"
type: improvement
date: 2019-06-27
version: v4.8.10
-
changes:
-
text: "Add ability to pass FCM token for channel add / remove and audition APNS API endpoints."
type: feature
-
text: "Fix crash caused by code, which performed OS version parsing using older API which provides localized string (include additional information in addition to version information)."
type: bug
date: 2019-06-17
version: v4.8.9
-
changes:
-
text: "Add value wrapping around heartbeat 'value'."
type: feature
-
text: "Fix universal Frameworks build script."
type: bug
-
text: "Separate tests project from main workspace."
type: improvement
date: 2019-05-16
version: v4.8.8
-
changes:
-
text: "Resolved project warnings, which caused issues with Carthage framework build."
type: improvement
date: 2019-03-28
version: v4.8.7
-
changes:
-
text: "Changed builder API interface visibility for frameworks from project to public."
type: bug
date: 2019-03-26
version: v4.8.6
-
changes:
-
text: "Changed message count result object header file visibility for frameworks from project to public."
type: bug
-
text: "Moved Keychain records update calls to secondary queue."
type: improvement
date: 2019-03-19
version: v4.8.5
-
changes:
-
text: "Added ability to retrieve number of messages in specified channels using timetoken as reference date."
type: feature
-
text: "Removed channel names sorting from utility class (because of which new API wasn't able to work properly)."
type: improvement
date: 2019-03-11
version: v4.8.4
-
changes:
-
text: "Added ability to get / set presence state for multiple channel / groups (at once)."
type: feature
date: 2018-11-13
version: v4.8.3
-
changes:
-
text: "Added ability to set arbitrary query parameters during API call."
type: feature
date: 2018-11-07
version: v4.8.2
-
changes:
-
text: "Changed client's data storage on macOS from Keychain to file-based."
type: improvement
date: 2018-06-21
version: v4.8.1
-
changes:
-
text: "Changed presence API flow and added client configuration option to enable manual presence list management."
type: improvement
-
text: "Fixed implicit 'self' retain in block warnings."
type: improvement
date: 2018-06-19
version: v4.8.0
-
changes:
-
text: "Added listeners collection access serialization on queue to prevent access to property during non-atomic store"
type: bug
-
text: "Silenced implicit self usage in blocks."
type: improvement
date: 2018-05-07
version: v4.7.8
-
changes:
-
text: "Fixed issue because of which channel(s) and/or group(s) wasn't able to maintain user's presence with heartbeat."
type: bug
-
text: "Fixed log file attributes to prevent their backup locally or to iCloud."
type: improvement
date: 2018-02-14
version: v4.7.7
-
changes:
-
text: "Fixed issue because of which new 'connected' presence API wasn't able to 'disconnect' user."
type: bug
-
text: "Fixed behavior during unsubscribe - connect event won't fire after user 'disconnected', because there is no new channels about which listeners should be notified."
type: improvement
date: 2018-02-01
version: v4.7.6
-
changes:
-
text: "Added ability to change client's presence without actual subscription to channels/groups (based on heartbeat and presence leave API)."
type: feature
-
text: "Fixed pre-compile macro usage to send metrics when code is running on device with pre-iOS 10 version."
type: bug
-
text: "Fixed race of conditions for logger."
type: bug
-
text: "Removed Xcode warnings about partly API availability."
type: improvement
date: 2017-12-16
version: v4.7.5
-
changes:
-
text: "Added ability to completely disable PubNub's client logger with 'PUBNUB_DISABLE_LOGGER' build configuration macro."
type: improvement
date: 2017-11-15
version: v4.7.4
-
changes:
-
text: "Added 'suppressLeaveEvents' parameter to PNConfiguration which allow to suppress presence leave API call on unsubscription."
type: feature
-
text: "Fixed issue because of which there was a chance to create second subscribe request while subscription loop has been restarted with new timetoken."
type: bug
date: 2017-10-31
version: v4.7.3
-
changes:
-
text: "Added new method to unsubscribe from all channels and groups with completion block."
type: feature
-
text: "Fixed issue because of which unsubscribe requests didn't terminated previous long-poll subscribe request."
type: bug
-
text: "Removed 'receiver-is-weak' clang warning suppression since it was deprecated."
type: improvement
date: 2017-10-16
version: v4.7.2
-
changes:
-
text: "Fixed telemetry shared data access issues."
type: bug
date: 2017-09-15
version: v4.7.1
-
changes:
-
text: "Added 'delete message' functionality."
type: feature
-
text: "Fixed issue with wildcard subscription and presence events which treated as messages."
type: bug
-
text: "Fixed issue with copyWithConfiguration method which removed client itself from state change observers."
type: bug
-
text: "Fixed de-duplication messages cache size issue."
type: bug
-
text: "Fixed issue because of which requests metrics gathered only if 'metrics' log level has been enabled."
type: bug
-
text: "Removed deprecated flag from 'stripMobilePayload' so it will only print out deprecation warning in console w/o actual warning in Xcode."
type: improvement
-
text: "Adjusted telemetry cache clean up interval."
type: improvement
date: 2017-08-28
version: v4.7.0
-
changes:
-
text: "Fixed issue with subscription to channel group."
type: bug
date: 2017-07-21
version: v4.6.3
-
changes:
-
text: "Added ability to gather service performance information."
type: improvement
-
text: "Added new error category PNRequestURITooLongCategory to properly handle and report issues to callbacks and completion blocks."
type: improvement
-
text: "Removed unsubscribe request cancellation by sequential call to subscribe API."
type: bug
-
text: "Reorganized code which is responsible for subscribe requests cancellation"
type: bug
-
text: "Fixed issue with macOS Keychain access in multi-user environment when none authorized."
type: bug
-
text: "Fixed inline documentation."
type: bug
date: 2017-07-19
version: v4.6.2
-
changes:
-
text: "Fixed dependency analysis warnings for Fabric integration via CocoaPods."
type: bug
date: 2017-04-26
version: v4.6.1
-
changes:
-
text: "Add support for presence deltas."
type: feature
date: 2017-03-31
version: v4.6.0
-
changes:
-
text: "Added ability to store last used UUID in persistent storage."
type: feature
-
text: "Added 'pn-' prefix for client-provided unique user identifiers."
type: improvement
-
text: "Added OSSpinLock and os_unfair_lock switch."
type: improvement
-
text: "Changed pre-compile macro for URLSession metrics gathering delegate usage."
type: bug
date: 2017-03-15
version: v4.5.15
-
changes:
-
text: "Fixed uuid and auth keys encoding in query string."
type: bug
date: 2017-03-08
version: v4.5.14
-
changes:
-
text: "Added TCP metrics output to PubNub logs (added corresponding logger level)."
type: improvement
-
text: "Deprecated 'stripMobilePayload' property with output into console if property still used."
type: improvement
date: 2017-02-03
version: v4.5.13
-
changes:
-
text: "Changed default origin"
type: improvement
date: 2017-01-01
version: v4.5.12
-
changes:
-
text: "Reverted default origin back to pubsub.pubnub.com"
type: improvement
date: 2016-12-16
version: v4.5.11
-
changes:
-
text: "Changed object which is stored in cache which is used for de-duplication."
type: bug
-
text: "Changed default origin"
type: improvement
date: 2016-12-16
version: v4.5.10
-
changes:
-
text: "Fixed cached message identifiers list clean up."
type: bug
date: 2016-11-26
version: v4.5.9
-
changes:
-
text: "Added new configuration property 'maximumMessagesCacheSize' which allow to enable (when non-zero value passed) messages de-duplication logic."
type: improvement
date: 2016-11-25
version: v4.5.8
-
changes:
-
text: "Added 'APPLICATION_EXTENSION_API_ONLY' flag to PubNub.podspec and Framework targets."
type: improvement
-
text: "Fixed issue because of which 'reverse' flag had same value as 'include timetokens'."
type: bug
-
text: "Removed PNClass and added manual service response parsers registration (in attempt to solve third-party classes initialization at run-time)."
type: bug
-
text: "Added additional service response check and wrap (in case if still somehow non-dictionary reached data objects)."
type: bug
date: 2016-11-20
version: v4.5.7
-
changes:
-
text: "Added multi-channel history request API to API call builder interface."
type: feature
-
text: "Added ability to subscribe / unsubscribe to/from channels and/or groups with single API call."
type: feature
-
text: "Added ability to receive message sender identifier."
type: improvement
-
text: "Deprecated 'restoreSubscription' property."
type: improvement
-
text: "Added verbose logs around subscription loop timetoken usage."
type: improvement
date: 2016-11-16
version: v4.5.6
-
changes:
-
text: "Added ability to specify for how long published message should be stored in channel's storage (added into API call builder interface)."
type: feature
-
text: "Fixed 'instanceID' which is placed inside of PNConfiguration."
type: bug
date: 2016-11-02
version: v4.5.5
-
changes:
-
text: "Added application extension environment support (applicationExtensionSharedGroupIdentifier PNConfiguration property)."
type: improvement
-
text: "Added builder pattern for API calls."
type: feature
-
text: "Added 'fire' and 'replicate' options to publish API call builder."
type: feature
-
text: "Added messages count threshold configuration property."
type: improvement
-
text: "Added 'instanceid' query property."
type: improvement
-
text: "Added 'requestid' query property."
type: improvement
-
text: "Updated fastlane configuration to speed test stage up."
type: improvement
-
text: "Fixed issue with shared auto-updating user calendar."
type: bug
date: 2016-10-27
version: v4.5.4
-
changes:
-
text: "added NS_SWIFT_NAME with Swift equivalent specified in it to all public API to prevent Swift function signature change between Swift releases."
type: improvement
date: 2016-09-26
version: v4.5.3
-
changes:
-
text: "added published message sequence number to publish API call (this information arrive as message envelope and used for issues debugging)."
type: improvement
-
text: "added logger method which will allow to use it from Swift."
type: feature
-
text: "added automatic heartbeat interval using formula and heartbeat value for calculated value."
type: improvement
-
text: "added 'channel' and 'subscription' properties to represent channel from which event arrived and actual data stream name which is used by PubNub client for subscription."
type: feature
-
text: "deprecated 'actualChannel' and 'subscribedChannel' in favor of 'channel' and 'subscription' (properties still available, but will be eventually will be completelly removed)."
type: improvement
date: 2016-09-13
version: v4.5.2
-
changes:
-
text: "Changed default logs directory which should be used for tvOS client."
type: bug
date: 2016-09-02
version: v4.5.1
-
changes:
-
text: "added scheduled API calls completion before application suspension (for iOS only)."
type: feature
-
text: "removed dependency to CocoaLumberjack."
type: improvement
-
text: "added Carthage support."
type: feature
-
text: "by default Framework bundles will be build with bitcode enabled."
type: improvement
-
text: "added ability to disable message stripping (removing data which has been added by client during publish with mobile payload) which is enabled by default."
type: feature
date: 2016-08-31
version: v4.5.0
-
changes:
-
text: "fixed timeout issue which caused by recently added shared NSURLSessionConfiguration configuration."
type: bug
-
text: "added tests to cover fixed issue"
type: improvement
date: 2016-07-07
version: v4.4.1
-
changes:
-
text: "added ability provide limited customization of NSURLSessionConfiguration."
type: improvement
-
text: "added bitcode support for frameworks."
type: improvement
date: 2016-07-07
version: v4.4.0
-
changes:
-
text: "fixed podspec dependency version format compatibility with CocoaPods 0.39."
type: bug
date: 2016-05-17
version: v4.3.3
-
changes:
-
text: "fixed issue for case when client doesn't use encryption and message has been received w/o mobile payload to clean up."
type: bug
-
text: "original message (in case of decryption error) will be passed into associatedObject of PNStatus error instance."
type: bug
date: 2016-05-13
version: v4.3.2
-
changes:
-
text: "fixed issue with PNNumber on 32bit system, when passed NSNumber instance created from unix-timestamp multiplied on 10000000."
type: bug
-
text: "fixed message content decryption in case if it has been sent along with mobile push payload."
type: bug
-
text: "mobile push payload removed from received message."
type: improvement
-
text: "'pn_other' key has been removed and original object will be returned in delegate callback (this field used with message encryption and/or mobile push payload)."
type: improvement
date: 2016-05-12
version: v4.3.1
-
changes:
-
text: "added Pub/Sub V2 API support."
type: feature
-
text: "added message filtering basing on published message metadata."
type: feature
-
text: "added ability to publish message with additional metadata for filtering purposes."
type: feature
-
text: "added generics to collection properties and arguments."
type: feature
-
text: "added null-ability annotations."
type: improvement
-
text: "updated tests."
type: improvement
-
text: "updated inline documentation formatting."
type: improvement
-
text: "fixed occupancy value storage for state-change (it will be set if available)."
type: bug
-
text: "fixed issue with presence here now request where 'nil' passed as channel / group."
type: bug
-
text: "fixed script responsible for module map update in built frameworks."
type: bug
-
text: "fixed 'Universal Static Framework (iOS)' to use correct platform."
type: bug
-
text: "added missing files to Mac Framework."
type: bug
date: 2016-03-05
version: v4.3.0
-
changes:
-
text: "changed way how heartbeat state notification is set. Now it can be specified in heartbeatNotificationOptions bit field property using PNHeartbeatNotificationOptions options."
type: improvement
date: 2016-02-09
version: v4.2.7
-
changes:
-
text: "added new property to PNConfiguration class called notifyAboutFailedHeartbeatsOnly which allow to configure client to notify not only about failed heartbeat statuses but for success as well."
type: improvement
date: 2016-02-09
version: v4.2.6
-
changes:
-
text: "added private persistent storage which allow to keep crucial data safe on device."
type: improvement
-
text: "added new target to build dynamic framework for tvOS."
type: feature
-
text: "fixed issue with time token precision verification in case if non-PubNub's time token value has been passe."
type: bug
date: 2016-01-27
version: v4.2.5
-
changes:
-
text: "fixed issue because of which client may not restore subscription on list of channels which has been left after previous unsubscription request."
type: bug
date: 2016-01-12
version: v4.2.4
-
changes:
-
text: "fixed unsubscription issue because of which time token didn't get reset if there is no more channels on which client may continue subscription."
type: bug
-
text: "fixed issue with -unsubscribeFromAll which may issue unwanted subscribe requests in case if method call followed by subscribe method call."
type: bug