-
Notifications
You must be signed in to change notification settings - Fork 28
/
.pubnub.yml
762 lines (762 loc) · 27.1 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
---
name: swift
scm: github.com/pubnub/swift
version: "8.0.1"
schema: 1
changelog:
- date: 2024-10-17
version: 8.0.1
changes:
- type: feature
text: "Add getToken() method for KMPPubNub (internal usage)."
- date: 2024-09-23
version: 8.0.0
changes:
- type: feature
text: "Replace module name with `PubNubSDK` due to compiler error when a public type shares the same name as the module."
- type: feature
text: " add new `subscriptionChanged(channels, groups)` connection status and remove previously deprecated `connecting` and `reconnecting` cases."
- type: feature
text: "Remove previously deprecated `.legacyExponential(base, scale, maxDelay)` reconnection policy."
- type: feature
text: "Added additional fields to fetch in `PubNub.MembershipInclude` and `PubNub.MemberInclude`."
- type: feature
text: "Set default `AutomaticRetry` for retrying subscribe requests with exponential reconnection policy."
- type: feature
text: "Add support for attaching additional listeners to `Subscription` and `SubscriptionSet`."
- type: bug
text: "Ensure that subscriptions are always internally stored as weak references."
- date: 2024-09-13
version: 7.3.3
changes:
- type: bug
text: "Added synchronized access inside `WeakSet` and for global subscriptions."
- date: 2024-07-22
version: 7.3.2
changes:
- type: bug
text: "Add missing public initializers for `EncryptedData` and `EncryptedStreamData`."
- date: 2024-06-18
version: 7.3.1
changes:
- type: bug
text: "Calling .leave request in missing cases."
- date: 2024-06-12
version: 7.3.0
changes:
- type: feature
text: "Adjusting to FCM HTTP v1 API."
- date: 2024-05-09
version: 7.2.1
changes:
- type: feature
text: "Adding support for visionOS."
- type: bug
text: "Updating EventEngine dependencies after adding a new listener."
- date: 2024-04-16
version: 7.2.0
changes:
- type: feature
text: "Adding PrivacyInfo.xcprivacy."
- type: feature
text: "Moving retry logic away from EventEngine."
- type: improvement
text: "Removing SubscribeSessionFactory with SubscriptionConfiguration."
- type: improvement
text: "Making SubscriptionSession class an internal."
- date: 2024-03-18
version: 7.1.0
changes:
- type: bug
text: "Preventing disconnection when subscribing via `PubNub` to a channel that was already subscribed to."
- type: bug
text: "Fixes for computing a hash value in `CryptoModule`."
- date: 2024-02-21
version: 7.0.0
changes:
- type: feature
text: "Adding the new Listeners API."
- type: feature
text: "Enabling EventEngine by default."
- date: 2024-01-22
version: 6.3.0
changes:
- type: feature
text: "Introducing Subscribe & Presence EventEngine."
- date: 2023-11-28
version: 6.2.3
changes:
- type: bug
text: "Handle unencrypted message while getting it with CryptoModule configured."
- date: 2023-10-30
version: 6.2.2
changes:
- type: improvement
text: "Update license information."
- date: 2023-10-23
version: 6.2.1
changes:
- type: bug
text: "Align on namings across all supported platforms."
- date: 2023-10-16
version: v6.2.0
changes:
- type: feature
text: "Add CryptorModule that allows configuring SDK to encrypt and decrypt messages."
- type: bug
text: "Improved security of crypto implementation by adding AES-CBC cryptor."
- date: 2023-08-30
version: 6.1.0
changes:
- type: feature
text: "To make client integration more flexible for different projects setup, the `$PubNubAsStaticFramework` flag has been added to `PubNubSwift.podspec`. With `$PubNubAsStaticFramework = true` in `Podfile` SDK will be integrated as a static library."
- date: 2023-05-18
version: 6.0.5
changes:
- type: bug
text: "Uppercasing of the `excluded_devices` field to match the format expected by the REST API."
- date: 2023-03-16
version: 6.0.4
changes:
- type: improvement
text: "Change the settings for subscribe `URLSession` and limit the number of concurrent connections per host."
- type: improvement
text: "Call presence leave using subscribe `URLSession` to avoid potential presence race of condition."
- date: 2023-01-04
version: 6.0.3
changes:
- type: bug
text: "Fix issue because of which listener wasn't `deinit` even when reference on it has been nullified."
- date: 2022-12-12
version: 6.0.2
changes:
- type: bug
text: "Fix memory leak within Subscription Session."
- type: improvement
text: "Use specific GitHub action for `.pubnub.yml` validation."
- date: 2022-09-05
version: 6.0.1
changes:
- type: bug
text: "Fix issue because of which `Example` project didn't built with missing `swift` reference error."
- type: bug
text: "Fix issue because of which Carthage was unable to build caused by schemas without targets."
- date: 2022-07-05
version: 6.0.0
changes:
- type: feature
text: "VSP methods and models have been exposed via modules on the PubNub instance."
- type: feature
text: "`FlatJSONCodable` replaces `[String: JSONCodableScalar]` inside the VSP models."
- type: improvement
text: "PubNub instances has been changed from a `struct` to a `class`."
- type: improvement
text: "`HTTPSession` has been made public for easier per-request overrides of the Network Session."
- date: 2022-02-02
version: 5.1.0
changes:
- type: feature
text: "Add affected channels and groups under `affected` resources list."
- date: 2022-01-19
version: 5.0.1
changes:
- type: bug
text: "Fix issue because of which access token not updated in subscription session."
- date: 2022-01-12
version: 5.0.0
changes:
- type: improvement
text: "BREAKING CHANGES: Disable automated `uuid` generation and make it mandatory to specify during PubNubConfiguration instance creation."
- date: 2021-11-08
version: 4.1.2
changes:
- type: bug
text: "Make `name` field optional for channel and UUID metadata."
- date: 2021-11-05
version: 4.1.1
changes:
- type: bug
text: "Fix issue because of which request with applied mutators not used."
- date: 2021-09-16
version: 4.1.0
changes:
- type: feature
text: "Add ability to parse permissions from token provided by servers."
- type: feature
text: "Make it possible to add component identifiers for requests."
- type: bug
text: "Fix `bufferTooSmall` and make temporary buffers for files encryption / decryption adaptive in size to provided stream buffer size."
- type: bug
text: "Don't perform HEX-encoding of `Data` with FCM token which should be used as-is."
- type: improvement
text: "Use `token` instead of `authKey` (if specified) for query `auth`."
- changes:
- text: "Memory leaks with captured request in subscription loop."
type: bug
date: 2021-08-03
version: v4.0.2
- changes:
- text: "Subscribe Factory will hash additional values when comparing sessions"
type: bug
- text: "Adding APNS2 Devices will correctly return the devices that were added."
type: bug
- text: "Per request configuration changes will correct be applied to the outgoing request."
type: bug
date: 2021-07-07
version: v4.0.1
- changes:
- text: "BREAKING CHANGE: Crypto by default initialized with `randomizeIV` set to `true` which will encrypt / decrypt data with publish / subscribe / history API calls using randomized initialization vector"
type: feature
- text: "Add new `sdks` section to `.pubnub.yml` with information about available artifacts and distribution variants"
type: improvement
date: 2021-06-08
version: v4.0.0
- changes:
- text: "Custom error messages (from functions) will be included inside PubNub Error Details"
type: improvement
- text: "Fix Coding issue when setting UUIDMetadata objects"
type: bug
date: 2021-05-28
version: v3.1.3
- changes:
- text: "Subscribe Message events will have the correct messageType flag"
type: bug
date: 2021-04-30
version: v3.1.2
- changes:
- text: "FileEvents will contain the file name stored with PubNub and not the local filename (if different)"
type: bug
- text: "PubNub model objects are now Hashable"
type: improvement
date: 2021-03-12
version: v3.1.1
- changes:
- text: "CryptoStream and CryptoInputStream can be used to perform crypto operations on streams of data"
type: feature
- text: "File upload/download support"
type: feature
- text: "Added includeUUID and includeMessageType flags to History"
type: feature
- text: "History will now has a default limit of 100 for single-channel and 25 for multichannel requests"
type: improvement
- text: "Removed depcreated platform version support to align with Xcode 12 warnings"
type: improvement
date: 2020-10-06
version: v3.1.0
- changes:
- text: "Fixed crash when performing many requests simulataneously"
type: bug
date: 2020-06-25
version: v3.0.1
- changes:
- text: "Added Objects v2 API and removed Objects v1 API"
type: feature
- text: "Replace PubNub API response objects with primitives or prtocols"
type: improvement
- text: "Replace Subscribe Event objects with primitives or prtocols"
type: improvement
- text: "Subscribe Listener now has a batched event handler"
type: improvement
- text: "Renamed several APIs to align naming across all APIs"
type: improvement
- text: "PubNubConfiguration properites can all be set through default init"
type: improvement
- text: "Reduced access control of objects that are not public facing"
type: improvement
- text: "Request level configuration available for most PubNub APIs"
type: improvement
date: 2020-06-17
version: v3.0.0
- changes:
- text: "Fixed crash when performing many requests simulataneously"
type: bug
date: 2020-06-25
version: v2.5.4
- changes:
- text: "Payload and FCMTarget fields are now optional for PubNubPushMessage"
type: improvement
- text: "Fixed an issue where nested presence state could be published"
type: bug
date: 2020-06-09
version: v2.5.3
- changes:
- text: "Resolves possible memory leaks related to listeners"
type: bug
- text: "Responds with the appropriate error when a Signal payload is too large"
type: bug
- text: "Added PAM support to Channels for Channel-Group endpoint"
type: bug
- text: "Invalid JSON will attempt to be parsed for the next Timetoken, and if successful will no interrupt the current subscription loop"
type: bug
date: 2020-06-04
version: v2.5.2
- changes:
- text: "Add `uuid` and `channel` to the Message Action Event"
type: bug
- text: "Fixed typos inside log messages"
type: bug
- text: "AnyJSON dictionaries can now perform a rawValue subscript that will return the underlying Any object"
type: improvement
date: 2020-05-07
version: v2.5.1
- changes:
- text: "Message Subscribe Events and Message History will now return the decrypted `Data` blob in the event it was decrypted, but couldn't be stringified"
type: improvement
- text: "Crypto will now accept the type of `String.Encoding` to be used when converting between `Data` and `String`"
type: improvement
- text: "Object API fetch|create|update methods with generic response objects have been added"
type: improvement
- text: "Object API fetch|create|update methods with protocol response objects have been added"
type: improvement
- text: "Object types User|Space|Member|Membership can now convert the underlying type using `transocde(into:)`"
type: improvement
- text: "Corrected the access control level of `MembershipIdentifiable` properties"
type: bug
- text: "User/Space Subscription Update events wouldn't properly handle partial object updates"
type: bug
date: 2020-03-26
version: v2.5.0
- changes:
- text: "Make `region` optional during `originTimetoken` parsing and set to 0 by default"
type: bug
date: 2020-03-12
version: v2.4.2
- changes:
- text: "A `reconnecting` event will be emitted once subscription starts retrying"
type: bug
date: 2020-01-24
version: v2.4.1
- changes:
- text: "PAM Token Management System added to manage Object API auth tokens"
type: feature
- text: "HereNow Presence will now work when only groups are being used"
type: bug
date: 2020-01-17
version: v2.4.0
- changes:
- text: "Enable ability to send auth token on Presence endpoints"
type: bug
date: 2020-01-07
version: v2.3.3
- changes:
- text: "Subscription requests will now properly cancel when updating existing subscription loop"
type: bug
date: 2019-12-09
version: v2.3.2
- changes:
- text: "Duplicate subscription will no longer start if a current subscription is connecting"
type: bug
- text: "Added missing APNS2 pubnub config field to publish payload object"
type: bug
- text: "Fixed Coding issue when a scalar value is used for APNS2 publish payload object"
type: bug
- text: "Subscription will no long attempt to automatically reconnect after an unexpected disconnet"
type: bug
date: 2019-12-03
version: v2.3.1
- changes:
- text: "Added convenience objects for creating push publish messages"
type: feature
- text: "List/Add/Remove/Remove-All of APNS2 push channels for devices"
type: feature
- text: "`Channel` property on push responses is not public"
type: bug
date: 2019-11-25
version: v2.3.0
- changes:
- text: "`Timetoken` was changed from an Int64 to UInt64 to avoid negative timetoken values"
type: improvement
- text: "Removed `PubNubRouter`, and replaced with multiple service specific `HTTPRouter` implementations"
type: improvement
- text: "Removed `Endpoint` type"
type: improvement
- text: "Renamed `Response` to `EndpointResponse`"
type: improvement
- text: "Removed `HTTPHeader` & `HTTPHeader`, and replaced with `[String: String]`"
type: improvement
- text: "Renamed `Session` to `HTTPSession` and made it an internal type"
type: improvement
- text: "Created `RequestReplaceable` and made `Request` an internal type"
type: improvement
date: 2019-11-14
version: v2.2.0
- changes:
- text: "PubNub Info.plist is now included on Cocoapod and Carthage deployed builds"
type: bug
date: 2019-11-12
version: v2.1.2
- changes:
- text: "Encoding `JSONCodableScalar` values will now properly encode to a single value"
type: bug
- text: "Membership APIs no longer use hardcoded subscribe key"
type: bug
date: 2019-11-06
version: v2.1.1
- changes:
- text: "Added support for Message Action Subscription Listener"
type: feature
- text: "Fetch previously published Message Actions and Messages via History APIs"
type: feature
- text: "Fetch previously published Message Actions on a channel"
type: feature
- text: "Add/Remove Message Actions on previously published messages"
type: feature
date: 2019-11-01
version: v2.1.0
- changes:
- text: "Add/Update documentation for public classes, methods, and properties"
type: bug
date: 2019-10-25
version: v2.0.2
- changes:
- text: "Update the version inside the podspec file"
type: bug
date: 2019-10-21
version: v2.0.1
- changes:
- text: "Subscribe/Unsubscribe will now properly cancel/restart the subscribe loop when completely stoppping cycle"
type: bug
- text: "Fixed memory leak inside Hearthbeat response handler"
type: bug
- text: "Fixed memory leak inside SubscriptionSessionFactory"
type: bug
- text: "PNError enum has been replaced by PubNubError struct to allow for greater flexibility in error handling and recognition"
type: improvement
- text: "AnyJSON as been replaced by the JSONCodable protocol for method parameters allowing any conforming object to be passed"
type: improvement
- text: "Removed initialized and cancelled as ConnectionsStatus options"
type: improvement
- text: "Response error events due to cancellations will now be suppresed by default by the SubscriptionListener. They can be toggled on using a the `supressCancellationErrors` property"
type: improvement
- text: "Added subscription event listener for subscribe/unsubscribe changes"
type: feature
date: 2019-10-17
version: v2.0.0
- changes:
- text: "Made the subscription token a property on the listener for cleaner setup"
type: improvement
date: 2019-10-15
version: v1.2.1
- changes:
- text: "Removed development dependencies from being included in Swift Package imports"
type: improvement
- text: "Added meta event listener covering all event types"
type: improvement
- text: "Support for Objects added"
type: feature
- text: "Changed `ConnectionStatus.isActive` and `ConnectionStatus.isConnected` access control to public"
type: bug
- text: "Fixed typo in PubNub.Push method parameters"
type: bug
- text: "Add support for Global HereNow"
type: bug
- text: "Fixed HereNow stateless response decoding"
type: bug
- text: "Fixed HereNow single channel response decoding"
type: bug
date: 2019-10-08
version: v1.2.0
- changes:
- text: "Add support for Signal Subscription Listener"
type: feature
- text: "Add support for Signal publish API"
type: feature
- text: "Fixed crash attempting to create URLSessionTasks from invalidated URLSession"
type: bug
- text: "Default Encryption/Decryption methodology now properly aligns with other SDKs"
type: bug
- text: "Exposed add(listener:) to be called by PubNub instance directly"
type: improvement
- text: "`?` characters inside URL query parameters will now be properly url encoded"
type: bug
date: 2019-09-03
version: v1.1.0
- changes:
- text: "Initial release of native Swift PubNub SDK"
type: feature
date: 2019-08-23
version: v1.0.0
features:
access:
- 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-DELTAS
publish:
- PUBLISH-STORE-FLAG
- PUBLISH-RAW-JSON
- PUBLISH-WITH-METADATA
- PUBLISH-GET
- PUBLISH-POST
- PUBLISH-ASYNC
- PUBLISH-FIRE
- PUBLISH-REPLICATION-FLAG
- PUBLISH-MESSAGE-TTL
storage:
- STORAGE-INCLUDE-TIMETOKEN
- STORAGE-START-END
- STORAGE-COUNT
- STORAGE-FETCH-MESSAGES
- STORAGE-DELETE-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-MESSAGE-DEDUPE
- SUBSCRIBE-SIGNAL-LISTENER
- SUBSCRIBE-PUBSUB-V2
- SUBSCRIBE-SIGNAL-LISTENER
- SUBSCRIBE-USER-LISTENER
- SUBSCRIBE-SPACE-LISTENER
- SUBSCRIBE-MEMBERSHIP-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-GET-CHANNEL-MEMBERS-V2
- OBJECTS-SET-CHANNEL-MEMBERS-V2
- OBJECTS-REMOVE-CHANNEL-MEMBERS-V2
- OBJECTS-MANAGE-MEMBERSHIPS-V2
- OBJECTS-MANAGE-CHANNEL-MEMBERS-V2
files:
- FILES-DELETE-FILE
- FILES-DOWNLOAD-FILE
- FILES-GET-FILE-URL
- FILES-LIST-FILES
- FILES-SEND-FILE
message-actions:
- MESSAGE-ACTIONS-GET
- MESSAGE-ACTIONS-ADD
- MESSAGE-ACTIONS-REMOVE
others:
- CREATE-PUSH-PAYLOAD
sdks:
- full-name: Swift SDK
short-name: Swift
artifacts:
- artifact-type: api-client
language: Swift
tier: 1
tags:
- Desktop
- Mobile
source-repository: https://github.com/pubnub/swift
documentation: https://www.pubnub.com/docs/sdks/swift
distributions:
- distribution-type: source
distribution-repository: GitHub release
package-name: PubNub
location: https://github.com/pubnub/swift/archive/refs/tags/8.0.1.zip
supported-platforms:
supported-operating-systems:
macOS:
runtime-version:
- Swift 5.x
minimum-os-version:
- OS X 10.11
maximum-os-version:
- macOS 11.4
target-architecture:
- arm64
- x86_64
iOS:
runtime-version:
- Swift 5.x
minimum-os-version:
- iOS 9.0
maximum-os-version:
- iOS 14.6
target-architecture:
- arm64
- armv7
target-devices:
- iPhone
- iPad
tvOS:
runtime-version:
- Swift 5.x
minimum-os-version:
- tvOS 10.0
maximum-os-version:
- tvOS 14.6
target-architecture:
- arm64
target-devices:
- Apple TV
watchOS:
runtime-version:
- Swift 5.x
minimum-os-version:
- watchOS 2.0
maximum-os-version:
- watchOS 7.5
target-architecture:
- armv7k
- arm64_32
target-devices:
- Apple Watch
- artifact-type: package
language: Swift
tier: 1
tags:
- Desktop
- Mobile
source-repository: https://github.com/pubnub/swift
documentation: https://www.pubnub.com/docs/sdks/swift
distributions:
- distribution-type: package
distribution-repository: Swift Package
package-name: PubNub
location: https://github.com/pubnub/swift.git
supported-platforms:
supported-operating-systems:
macOS:
runtime-version:
- Swift 5.x
minimum-os-version:
- OS X 10.11
maximum-os-version:
- macOS 11.4
target-architecture:
- arm64
- x86_64
iOS:
runtime-version:
- Swift 5.x
minimum-os-version:
- iOS 9.0
maximum-os-version:
- iOS 14.6
target-architecture:
- arm64
- armv7
target-devices:
- iPhone
- iPad
tvOS:
runtime-version:
- Swift 5.x
minimum-os-version:
- tvOS 10.0
maximum-os-version:
- tvOS 14.6
target-architecture:
- arm64
target-devices:
- Apple TV
watchOS:
runtime-version:
- Swift 5.x
minimum-os-version:
- watchOS 2.0
maximum-os-version:
- watchOS 7.5
target-architecture:
- armv7k
- arm64_32
target-devices:
- Apple Watch
- distribution-type: package
distribution-repository: CocoaPods
package-name: PubNubSwift
location: https://cocoapods.org/pods/PubNubSwift
supported-platforms:
supported-operating-systems:
macOS:
runtime-version:
- Swift 5.x
minimum-os-version:
- OS X 10.11
maximum-os-version:
- macOS 11.4
target-architecture:
- arm64
- x86_64
iOS:
runtime-version:
- Swift 5.x
minimum-os-version:
- iOS 9.0
maximum-os-version:
- iOS 14.6
target-architecture:
- arm64
- armv7
target-devices:
- iPhone
- iPad
tvOS:
runtime-version:
- Swift 5.x
minimum-os-version:
- tvOS 10.0
maximum-os-version:
- tvOS 14.6
target-architecture:
- arm64
target-devices:
- Apple TV
watchOS:
runtime-version:
- Swift 5.x
minimum-os-version:
- watchOS 2.0
maximum-os-version:
- watchOS 7.5
target-architecture:
- armv7k
- arm64_32
target-devices:
- Apple Watch
supported-platforms:
- version: PubNub Swift SDK
platforms:
- iOS 9.0 or higher
- macOS 10.11 or higher
- tvOS 9.0 or higher
- watchOS 2.0 or higher