-
Notifications
You must be signed in to change notification settings - Fork 15
/
.pubnub.yml
1138 lines (1137 loc) · 40.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
---
changelog:
- date: 2024-04-15
version: v4.3.4
changes:
- type: bug
text: "Fixes issue of parsing invalid presence data (which are not from pubnub server) in subscription."
- date: 2024-03-28
version: v4.3.3
changes:
- type: feature
text: "Added support for pagination params for listChannels API of push notification devices."
- date: 2024-01-22
version: v4.3.2
changes:
- type: bug
text: "Fixes issue of getting signature mismatch exception while publishing encrypted data."
- date: 2023-11-27
version: v4.3.1
changes:
- type: bug
text: "Handle unencrypted message while getting messages with cryptoModule configured."
- date: 2023-10-16
version: v4.3.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."
- date: 2023-07-27
version: v4.2.4
changes:
- type: bug
text: "Fixes issue of missing decrypt function in batch history api."
- date: 2023-05-18
version: v4.2.3
changes:
- type: bug
text: "Fixes issue of losing timetoken value precision in web environment."
- date: 2022-11-14
version: v4.2.2
changes:
- type: feature
text: "Support for Flutter 3."
- type: bug
text: "Fixes issue of having old version of xml package dependency."
- date: 2022-07-12
version: v4.2.1
changes:
- type: feature
text: "Support for fire in publish feature."
- type: feature
text: "Allow to specify access rights for user and space in grantToken request."
- type: feature
text: "Allow users to specify userId instead of uuid."
- date: 2022-05-30
version: v4.2.0
changes:
- type: feature
text: "Adds two presence methods, setState and getState."
- date: 2022-04-21
version: v4.1.3
changes:
- type: bug
text: "Fixes issue of `fetchMessages` with false includeUUID response parse error."
- type: bug
text: "Fixes issue of publish file message not triggered on browser."
- date: 2022-04-06
version: v4.1.2
changes:
- type: bug
text: "Adds a fix that prevents the SDK from adding forbidden headers in browser environments."
- type: bug
text: "Fixes getFileUrl method by adding uuid in query parameters."
- date: 2022-04-04
version: v4.1.1
changes:
- type: bug
text: "Fixes an issue in JS build of Dart SDK, where request bodies were improperly encoded and sent without a correct header."
- date: 2021-12-16
version: v4.1.0
changes:
- type: feature
text: "Added support for Revoke Token feature."
- date: 2021-11-22
version: v4.0.0
changes:
- type: feature
text: "Adds PAM v3 support with `grantToken` and `setToken`."
- type: feature
text: "After subscribe loop fails, call restore to restart it."
- type: bug
text: "Subscribe loop no longer throws on unrecoverable failure, instead waits for restart."
- type: bug
text: "Adds more diagnostics for network module."
- type: bug
text: "WhenStarts future no longer throws and is now based on a stream."
- type: bug
text: "Networking should now release all resources after a failure."
- type: bug
text: "Fixes issue of Signature mismatch with PAM enabled keysets."
- type: bug
text: "Fixes issue of message decryption with subscription."
-
changes:
-
text: "Adds signature generation and Objects v2 for PAM Grant call."
type: feature
-
text: "Refactors networking module to use native dart:io."
type: feature
-
text: "Fixes few typos and a bug with BatchHistory meta param."
type: bug
-
text: "Fixes an issue with default params for HereNow call."
type: bug
-
text: "Fixes an issue with encoding of uri query parameters."
type: bug
-
text: "Fixes message decryption in subscribe loop."
type: bug
date: 2021-02-16
version: v3.1.0
-
changes:
-
text: "Subscribe loop is now written using async generator and should be easier to debug."
type: improvement
-
text: "Exports now are more comprehensive and clear, documentation clarity has been improved."
type: improvement
-
text: "Removes additional query params from AWS calls."
type: bug
-
text: "Fixes a bunch of issues with incorrect arguments passed in."
type: bug
-
text: "Adds additional diagnostics to the networking module."
type: bug
date: 2020-10-08
version: v3.0.0
-
changes:
-
text: "Fixes issue of upgrade failure."
type: bug
date: 2020-09-07
version: v2.0.1
-
changes:
-
text: "Refactors networking module to allow additional flexibility."
type: feature
-
text: "Adds supervisor module that allows reconnection, retry and other additional, cross module functionalities."
type: feature
-
text: "Adds meta parameter to publish call and makes publish using GET instead of POST."
type: feature
-
text: "Exposes `batch`, `objects` and other APIs from the PubNub class."
type: bug
-
text: "Fixes a typo in BatchHistory where timetoken was returned null."
type: bug
date: 2020-08-31
version: v2.0.0
-
changes:
-
text: "Add flags in history v3 for including messageType and uuid."
type: feature
-
text: "Add support for fetch history with message actions."
type: feature
-
text: "Refactor for error message parsing for files."
type: improvement
date: 2020-08-19
version: v1.4.4
-
changes:
-
text: "Fixes issue of exception from server when publishKey is null with publish call."
type: bug
-
text: "Fixes missing url component in file publish message for sendFile and support for message encryption."
type: bug
date: 2020-08-05
version: v1.4.3
-
changes:
-
text: "Fixes issue of invalid type argument for fcm push gateway type."
type: bug
date: 2020-07-27
version: v1.4.2
-
changes:
-
text: "Fixes issue of missing exposed MessageType enum."
type: bug
date: 2020-07-24
version: v1.4.1
-
changes:
-
text: "Add file apis to support file feature."
type: feature
-
text: "Add support for random initialization vector for messages and file."
type: improvement
date: 2020-07-23
version: v1.4.0
-
changes:
-
text: "Add message encryption support."
type: feature
date: 2020-06-25
version: v1.3.0
-
changes:
-
text: "Add simplified Objects API support with UUID and Channel metadata / membership management."
type: feature
-
text: "Fixes missing PushGateway type support of fcm for Push Notification."
type: bug
date: 2020-06-10
version: v1.2.0
-
changes:
-
text: "Fixes unsubscribeAll so its no longer modifying subscription list during iteration."
type: bug
-
text: "Fixes exports to include presence and channel group results."
type: bug
date: 2020-05-11
version: v1.1.3
-
changes:
-
text: "Fixes issues of missing types for objects and push-notification."
type: bug
date: 2020-05-06
version: v1.1.2
-
changes:
-
text: "Expose missing types."
type: bug
date: 2020-05-06
version: v1.1.1
-
changes:
-
text: "Refactors logging to rely on Zones."
type: bug
-
text: "Fixes issues with resubscribing and improves injectLogger."
type: bug
date: 2020-05-05
version: v1.1.0
-
changes:
-
text: "Fix wrong API Uri in Push Notifications."
type: bug
-
text: "Fix Subscription.unsubscribe to correctly close the messages stream."
type: bug
date: 2020-05-04
version: v1.0.5
-
changes:
-
text: "Add HereNow to PresenceDx, usable as `pubnub.hereNow()`."
type: feature
-
text: "Fix subscribe `withPresence: true` not properly forwarding messages when used with wildcard channels."
type: bug
date: 2020-04-27
version: v1.0.4
-
changes:
-
text: "Change all Symbols to Strings to support Flutter better, fix a typo in SubscribeParams preventing subscribe from working."
type: bug
date: 2020-04-22
version: v1.0.3
-
changes:
-
text: "Add backward synchronization to private repository for `pubspec.yaml` and `lib/src/core/core.dart`."
type: improvement
-
text: "Prevent tests from breaking when version is bumped."
type: improvement
date: 2020-04-18
version: v1.0.2
-
changes:
-
text: "Refactor PAM, hide logger instances and clean up tests."
type: improvement
-
text: "Add `package:pedantic` config to analysis, fix lint issues."
type: improvement
-
text: "Ensure()isEqual now uses correct template."
type: bug
-
text: "Add PAM to library exports."
type: bug
-
text: "Consistently use PubNubversion in tests."
type: bug
date: 2020-04-18
version: v1.0.1
-
changes:
-
text: "Add ability to fetch current PubNub timetoken."
type: feature
-
text: "Add ability to publish messages and signals to channels and channel groups."
type: feature
-
text: "Add ability to subscribe to channels and channel groups."
type: feature
-
text: "Add ability to manage Objects (Spaces, Users and Memberships)."
type: feature
-
text: "Add ability to manage PubNub Access Manager."
type: feature
-
text: "Add ability to manage device registration for Push Notification Service."
type: feature
-
text: "Add ability to add, delete and retrieve message actions."
type: feature
-
text: "Add channel and channel group abstractions to allow using History."
type: feature
date: 2020-04-15
version: v1.0.0
features:
access:
- ACCESS-GRANT-TOKEN
- ACCESS-PARSE-TOKEN
- ACCESS-SET-TOKEN
- ACCESS-REVOKE-TOKEN
channel-groups:
- CHANNEL-GROUPS-ADD-CHANNELS
- CHANNEL-GROUPS-REMOVE-CHANNELS
- CHANNEL-GROUPS-REMOVE-GROUPS
- CHANNEL-GROUPS-LIST-CHANNELS-IN-GROUP
presence:
- PRESENCE-HERE-NOW
- PRESENCE-HEARTBEAT
publish:
- PUBLISH-STORE-FLAG
- PUBLISH-RAW-JSON
- PUBLISH-WITH-METADATA
- PUBLISH-GET
- PUBLISH-POST
- PUBLISH-ASYNC
- PUBLISH-FIRE
- PUBLISH-REPLICATION-FLAG
- PUBLISH-MESSAGE-TTL
- PUBLISH-FILE-MESSAGE
push:
- PUSH-ADD-DEVICE-TO-CHANNELS
- PUSH-REMOVE-DEVICE-FROM-CHANNELS
- PUSH-LIST-CHANNELS-FROM-DEVICE
- PUSH-REMOVE-DEVICE
- PUSH-TYPE-APNS2
- PUSH-TYPE-FCM
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
- STORAGE-HISTORY-WITH-INCLUDE-MESSAGE-TYPE
- STORAGE-HISTORY-WITH-INCLUDE-UUID
- STORAGE-FETCH-WITH-INCLUDE-MESSAGE-TYPE
- STORAGE-FETCH-WITH-INCLUDE-UUID
subscribe:
- SUBSCRIBE-CHANNELS
- SUBSCRIBE-CHANNEL-GROUPS
- SUBSCRIBE-PRESENCE-CHANNELS
- SUBSCRIBE-PRESENCE-CHANNELS-GROUPS
- SUBSCRIBE-WITH-TIMETOKEN
- SUBSCRIBE-WILDCARD
- SUBSCRIBE-FILTER-EXPRESSION
- SUBSCRIBE-PUBLISHER-UUID
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
- 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
time:
- TIME-TIME
others:
- RANDOM-INITIALIZATION-VECTOR
name: dart
schema: 1
scm: github.com/pubnub/dart
supported-platforms:
-
frameworks:
- "Flutter"
platforms:
- "Dart SDK >=2.6.0 <3.0.0"
version: "PubNub Dart SDK"
version: "4.3.4"
sdks:
-
full-name: PubNub Dart SDK
short-name: Dart
artifacts:
-
artifact-type: package
language: Dart
tier: 2
tags:
- Mobile
- Web
- Desktop
- Server
source-repository: https://github.com/pubnub/dart
documentation: https://www.pubnub.com/docs/sdks/dart
distributions:
-
distribution-type: package
distribution-repository: pub.dev
package-name: pubnub
location: https://pub.dev/packages/pubnub
requires:
-
name: "Dart SDK"
min-version: "2.12.0"
license: "BSD3"
license-url: "https://github.com/dart-lang/sdk/blob/master/LICENSE"
location: "Should be installed on computer"
location-url: "https://dart.dev/get-dart"
is-required: "Required"
-
name: "async"
min-version: "2.5.0"
license: "BSD"
license-url: "https://pub.dev/packages/async/license"
location: "Shipped within package"
location-url: "https://pub.dev/packages/async"
is-required: "Required"
-
name: "args"
min-version: "2.0.0"
license: "BSD"
license-url: "https://pub.dev/packages/args/license"
location: "Transitive"
location-url: "https://pub.dev/packages/args"
is-required: "Required"
-
name: "asn1lib"
min-version: "0.9.0-nullsafety.0"
license: "BSD"
license-url: "https://pub.dev/packages/asn1lib/license"
location: "Transitive"
location-url: "https://pub.dev/packages/asn1lib"
is-required: "Required"
-
name: "boolean_selector"
min-version: "2.1.0"
license: "BSD"
license-url: "https://pub.dev/packages/boolean_selector/license"
location: "Transitive"
location-url: "https://pub.dev/packages/boolean_selector"
is-required: "Required"
-
name: "cbor"
min-version: "4.0.0"
license: "MIT"
license-url: "https://pub.dev/packages/cbor/license"
location: "Shipped within package"
location-url: "https://pub.dev/packages/cbor"
is-required: "Required"
-
name: "charcode"
min-version: "1.2.0"
license: "BSD"
license-url: "https://pub.dev/packages/charcode/license"
location: "Transitive"
location-url: "https://pub.dev/packages/charcode"
is-required: "Required"
-
name: "cli_util"
min-version: "0.3.0"
license: "BSD"
license-url: "https://pub.dev/packages/cli_util/license"
location: "Transitive"
location-url: "https://pub.dev/packages/cli_util"
is-required: "Required"
-
name: "clock"
min-version: "1.1.0"
license: "Apache 2.0"
license-url: "https://pub.dev/packages/clock/license"
location: "Transitive"
location-url: "https://pub.dev/packages/clock"
is-required: "Required"
-
name: "collection"
min-version: "1.15.0"
license: "BSD"
license-url: "https://pub.dev/packages/collection/license"
location: "Transitive"
location-url: "https://pub.dev/packages/collection"
is-required: "Required"
-
name: "convert"
min-version: "3.0.0"
license: "BSD"
license-url: "https://pub.dev/packages/convert/license"
location: "Shipped within package"
location-url: "https://pub.dev/packages/convert"
is-required: "Required"
-
name: "crypto"
min-version: "3.0.0"
license: "BSD"
license-url: "https://pub.dev/packages/crypto/license"
location: "Shipped within package"
location-url: "https://pub.dev/packages/crypto"
is-required: "Required"
-
name: "encrypt"
min-version: "5.0.0-beta.1"
license: "BSD"
license-url: "https://pub.dev/packages/encrypt/license"
location: "Shipped within package"
location-url: "https://pub.dev/packages/encrypt"
is-required: "Required"
-
name: "file"
min-version: "6.1.0"
license: "BSD"
license-url: "https://pub.dev/packages/file/license"
location: "Transitive"
location-url: "https://pub.dev/packages/file"
is-required: "Required"
-
name: "form_data"
min-version: "1.0.0-nullsafety.1"
license: "MIT"
license-url: "https://pub.dev/packages/form_data/license"
location: "Shipped within package"
location-url: "https://pub.dev/packages/form_data"
is-required: "Required"
-
name: "glob"
min-version: "2.0.0"
license: "BSD"
license-url: "https://pub.dev/packages/glob/license"
location: "Transitive"
location-url: "https://pub.dev/packages/glob"
is-required: "Required"
-
name: "js"
min-version: "0.6.3"
license: "BSD"
license-url: "https://pub.dev/packages/js/license"
location: "Transitive"
location-url: "https://pub.dev/packages/js"
is-required: "Required"
-
name: "matcher"
min-version: "0.12.10"
license: "BSD"
license-url: "https://pub.dev/packages/matcher/license"
location: "Transitive"
location-url: "https://pub.dev/packages/matcher"
is-required: "Required"
-
name: "meta"
min-version: "1.3.0"
license: "BSD"
license-url: "https://pub.dev/packages/meta/license"
location: "Shipped within package"
location-url: "https://pub.dev/packages/meta"
is-required: "Required"
-
name: "mime"
min-version: "1.0.0"
license: "BSD"
license-url: "https://pub.dev/packages/mime/license"
location: "Transitive"
location-url: "https://pub.dev/packages/mime"
is-required: "Required"
-
name: "path"
min-version: "1.8.0"
license: "BSD"
license-url: "https://pub.dev/packages/path/license"
location: "Transitive"
location-url: "https://pub.dev/packages/path"
is-required: "Required"
-
name: "pedantic"
min-version: "1.11.0"
license: "BSD"
license-url: "https://pub.dev/packages/pedantic/license"
location: "Shipped within package"
location-url: "https://pub.dev/packages/pedantic"
is-required: "Required"
-
name: "petitparser"
min-version: "4.0.2"
license: "MIT"
license-url: "https://pub.dev/packages/petitparser/license"
location: "Transitive"
location-url: "https://pub.dev/packages/petitparser"
is-required: "Required"
-
name: "pointycastle"
min-version: "3.0.0-nullsafety.2"
license: "MIT"
license-url: "https://pub.dev/packages/pointycastle/license"
location: "Transitive"
location-url: "https://pub.dev/packages/pointycastle"
is-required: "Required"
-
name: "pool"
min-version: "1.5.0"
license: "BSD"
license-url: "https://pub.dev/packages/pool/license"
location: "Shipped within package"
location-url: "https://pub.dev/packages/pool"
is-required: "Required"
-
name: "source_map_stack_trace"
min-version: "2.1.0"
license: "BSD"
license-url: "https://pub.dev/packages/source_map_stack_trace/license"
location: "Transitive"
location-url: "https://pub.dev/packages/source_map_stack_trace"
is-required: "Required"
-
name: "source_maps"
min-version: "0.10.10"
license: "BSD"
license-url: "https://pub.dev/packages/source_maps/license"
location: "Transitive"
location-url: "https://pub.dev/packages/source_maps"
is-required: "Required"
-
name: "source_span"
min-version: "1.8.1"
license: "BSD"
license-url: "https://pub.dev/packages/source_span/license"
location: "Transitive"
location-url: "https://pub.dev/packages/source_span"
is-required: "Required"
-
name: "stack_trace"
min-version: "1.10.0"
license: "BSD"
license-url: "https://pub.dev/packages/stack_trace/license"
location: "Transitive"
location-url: "https://pub.dev/packages/stack_trace"
is-required: "Required"
-
name: "stream_channel"
min-version: "2.1.0"
license: "BSD"
license-url: "https://pub.dev/packages/stream_channel/license"
location: "Transitive"
location-url: "https://pub.dev/packages/stream_channel"
is-required: "Required"
-
name: "string_scanner"
min-version: "1.1.0"
license: "BSD"
license-url: "https://pub.dev/packages/string_scanner/license"
location: "Transitive"
location-url: "https://pub.dev/packages/string_scanner"
is-required: "Required"
-
name: "term_glyph"
min-version: "1.2.0"
license: "BSD"
license-url: "https://pub.dev/packages/term_glyph/license"
location: "Transitive"
location-url: "https://pub.dev/packages/term_glyph"
is-required: "Required"
-
name: "typed_data"
min-version: "1.3.0"
license: "BSD"
license-url: "https://pub.dev/packages/typed_data/license"
location: "Transitive"
location-url: "https://pub.dev/packages/typed_data"
is-required: "Required"
-
name: "watcher"
min-version: "1.0.0"
license: "BSD"
license-url: "https://pub.dev/packages/watcher/license"
location: "Transitive"
location-url: "https://pub.dev/packages/watcher"
is-required: "Required"
-
name: "xml"
min-version: "5.0.2"
license: "MIT"
license-url: "https://pub.dev/packages/xml/license"
location: "Shipped within package"
location-url: "https://pub.dev/packages/xml"
is-required: "Required"
-
name: "yaml"
min-version: "3.1.0"
license: "BSD"
license-url: "https://pub.dev/packages/yaml/license"
location: "Transitive"
location-url: "https://pub.dev/packages/yaml"
is-required: "Required"
supported-platforms:
supported-operating-systems:
Linux:
target-architecture:
- x86-64
- ia32
- armeabi-v7a
- arm64-v8a
runtime-version:
- Dart SDK 2.12
maximum-os-version:
- Ubuntu 20.04 LTS
minimum-os-version:
- Debian 10.9
Windows:
target-architecture:
- x86-64
- ia32
runtime-version:
- Dart SDK 2.12
minimum-os-version:
- Windows 10 Home
maximum-os-version:
- Windows 10 Enterprise
macOS:
target-architecture:
- x86-64
runtime-version:
- Dart SDK 2.12
minimum-os-version:
- macOS 10.14
maximum-os-version:
- macOS 11.0
-
artifact-type: api-client
language: Dart
tier: 2
tags:
- Mobile
- Web
- Desktop
- Server
source-repository: https://github.com/pubnub/dart
documentation: https://www.pubnub.com/docs/sdks/dart
distributions:
-
distribution-type: source
distribution-repository: GitHub
package-name: PubNub Dart SDK
location: https://github.com/pubnub/dart
requires:
-
name: "Dart SDK"
min-version: "2.12.0"
license: "BSD3"
license-url: "https://github.com/dart-lang/sdk/blob/master/LICENSE"
location: "Should be installed on computer"
location-url: "https://dart.dev/get-dart"
is-required: "Required"
-
name: "async"
min-version: "2.5.0"
license: "BSD"
license-url: "https://pub.dev/packages/async/license"
location: "Shipped within package"
location-url: "https://pub.dev/packages/async"
is-required: "Required"
-
name: "args"
min-version: "2.0.0"
license: "BSD"
license-url: "https://pub.dev/packages/args/license"
location: "Transitive"
location-url: "https://pub.dev/packages/args"
is-required: "Required"
-
name: "asn1lib"
min-version: "0.9.0-nullsafety.0"
license: "BSD"
license-url: "https://pub.dev/packages/asn1lib/license"
location: "Transitive"
location-url: "https://pub.dev/packages/asn1lib"
is-required: "Required"
-
name: "boolean_selector"
min-version: "2.1.0"
license: "BSD"
license-url: "https://pub.dev/packages/boolean_selector/license"
location: "Transitive"
location-url: "https://pub.dev/packages/boolean_selector"
is-required: "Required"
-
name: "cbor"
min-version: "4.0.0"
license: "MIT"
license-url: "https://pub.dev/packages/cbor/license"
location: "Shipped within package"
location-url: "https://pub.dev/packages/cbor"
is-required: "Required"
-
name: "charcode"
min-version: "1.2.0"
license: "BSD"
license-url: "https://pub.dev/packages/charcode/license"
location: "Transitive"
location-url: "https://pub.dev/packages/charcode"
is-required: "Required"
-
name: "cli_util"
min-version: "0.3.0"
license: "BSD"
license-url: "https://pub.dev/packages/cli_util/license"
location: "Transitive"
location-url: "https://pub.dev/packages/cli_util"
is-required: "Required"
-
name: "clock"
min-version: "1.1.0"
license: "Apache 2.0"
license-url: "https://pub.dev/packages/clock/license"
location: "Transitive"
location-url: "https://pub.dev/packages/clock"
is-required: "Required"
-
name: "collection"
min-version: "1.15.0"
license: "BSD"
license-url: "https://pub.dev/packages/collection/license"
location: "Transitive"
location-url: "https://pub.dev/packages/collection"
is-required: "Required"
-
name: "convert"
min-version: "3.0.0"
license: "BSD"
license-url: "https://pub.dev/packages/convert/license"
location: "Shipped within package"
location-url: "https://pub.dev/packages/convert"
is-required: "Required"
-
name: "crypto"
min-version: "3.0.0"
license: "BSD"
license-url: "https://pub.dev/packages/crypto/license"
location: "Shipped within package"
location-url: "https://pub.dev/packages/crypto"
is-required: "Required"
-
name: "encrypt"
min-version: "5.0.0-beta.1"
license: "BSD"
license-url: "https://pub.dev/packages/encrypt/license"
location: "Shipped within package"
location-url: "https://pub.dev/packages/encrypt"
is-required: "Required"
-
name: "file"
min-version: "6.1.0"
license: "BSD"
license-url: "https://pub.dev/packages/file/license"
location: "Transitive"
location-url: "https://pub.dev/packages/file"
is-required: "Required"
-
name: "form_data"
min-version: "1.0.0-nullsafety.1"
license: "MIT"
license-url: "https://pub.dev/packages/form_data/license"
location: "Shipped within package"
location-url: "https://pub.dev/packages/form_data"
is-required: "Required"
-
name: "glob"
min-version: "2.0.0"
license: "BSD"
license-url: "https://pub.dev/packages/glob/license"
location: "Transitive"
location-url: "https://pub.dev/packages/glob"
is-required: "Required"
-
name: "js"
min-version: "0.6.3"
license: "BSD"
license-url: "https://pub.dev/packages/js/license"
location: "Transitive"
location-url: "https://pub.dev/packages/js"
is-required: "Required"
-
name: "matcher"
min-version: "0.12.10"
license: "BSD"
license-url: "https://pub.dev/packages/matcher/license"
location: "Transitive"
location-url: "https://pub.dev/packages/matcher"
is-required: "Required"
-
name: "meta"
min-version: "1.3.0"
license: "BSD"
license-url: "https://pub.dev/packages/meta/license"
location: "Shipped within package"
location-url: "https://pub.dev/packages/meta"
is-required: "Required"
-
name: "mime"
min-version: "1.0.0"
license: "BSD"
license-url: "https://pub.dev/packages/mime/license"
location: "Transitive"
location-url: "https://pub.dev/packages/mime"
is-required: "Required"
-
name: "path"
min-version: "1.8.0"
license: "BSD"
license-url: "https://pub.dev/packages/path/license"
location: "Transitive"
location-url: "https://pub.dev/packages/path"
is-required: "Required"
-
name: "pedantic"
min-version: "1.11.0"
license: "BSD"
license-url: "https://pub.dev/packages/pedantic/license"
location: "Shipped within package"
location-url: "https://pub.dev/packages/pedantic"
is-required: "Required"
-
name: "petitparser"
min-version: "4.0.2"
license: "MIT"
license-url: "https://pub.dev/packages/petitparser/license"
location: "Transitive"
location-url: "https://pub.dev/packages/petitparser"