-
Notifications
You must be signed in to change notification settings - Fork 137
/
.pubnub.yml
489 lines (488 loc) · 16 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
name: php
version: 7.0.2
schema: 1
scm: github.com/pubnub/php
changelog:
- date: 2024-10-22
version: 7.0.2
changes:
- type: bug
text: "Fixed wrong type annotation for grant token response value."
- type: improvement
text: "Updated compatibility list."
- date: 2024-07-10
version: 7.0.1
changes:
- type: improvement
text: "Added strict typing for some customer facing elements."
- date: 2024-06-27
version: 7.0.0
changes:
- type: feature
text: "When passed to the `PubNub` constructor, the `PNConfiguration` instance becomes immutable. You can disable this behavior by calling `PnConfiguration::disableImmutableCheck()` before passing it to the constructor although it is not recommended. Disabling immutability may result in unpredictable behavior if `PNConfiguration` is modified after instantiating `PubNub`."
- date: 2024-06-18
version: v6.3.0
changes:
- type: feature
text: "Added support for file sharing operations."
- date: 2024-06-11
version: v6.2.1
changes:
- type: bug
text: "Fix value for FCM push type provisioning key."
- date: 2024-06-11
version: v6.2.0
changes:
- type: feature
text: "Replacing GCM with FCM. This is not a breaking change, but using GCM will result in throwing `E_USER_DEPRECATED` warning."
- type: feature
text: "Added support for fetching messages"
- date: 2023-11-27
version: v6.1.3
changes:
- type: bug
text: "Gracefully handle decrypting an unencrypted method. If a decryption error occurs when trying to decrypt plain text, the plain text message will be returned and an error field will be set in the response. This works for both history and subscription messages."
- date: 2023-11-02
version: v6.1.2
changes:
- type: improvement
text: "Fix license info in composer.json"
- date: 2023-10-30
version: v6.1.1
changes:
- type: bug
text: "Changed license type from MIT to PubNub Software Development Kit License."
- date: 2023-10-16
version: v6.1.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-05-18
version: v6.0.1
changes:
- type: bug
text: "Support for Monolog/Monolog@^3.0."
- type: bug
text: "Added replacement for deprecated utf8_decode method."
- date: 2023-02-01
version: v6.0.0
changes:
- type: improvement
text: "BREAKING CHANGES: This update is intended to bring compatibility with PHP 8.2 and newer versions of dependencies."
- date: 2022-08-30
version: v5.1.0
changes:
- type: feature
text: "Add option to initialize PubNub with UserId."
- date: 2022-01-26
version: v5.0.0
changes:
- type: improvement
text: "BREAKING CHANGES: Disable automated uuid generation and make it mandatory to specify before `PubNub` instance creation."
- date: 2021-12-16
version: v4.7.0
changes:
- type: feature
text: "RevokeToken method."
- type: bug
text: "Fixed error in Signal request."
- version: v4.6.0
date: 2021-10-26
changes:
-
text: "Add support for Access Manager v3 with example."
type: feature
- version: v4.5.0
date: 2021-08-24
changes:
-
text: "Missing PNPresenceEventResult getters added, dependency update."
type: feature
- version: v4.4.0
date: 2021-07-29
changes:
-
text: "Fix for wrong signature calculation mechanism added."
type: feature
- version: v4.3.0
date: 2021-03-21
changes:
-
text: "Add support for random initialization vector."
type: feature
- version: v4.2.0
date: 2021-02-02
changes:
-
text: "Add support for device channel registration with apns2."
type: feature
-
text: "Allows management of users and channels with metadata."
type: feature
-
text: "Implement v2 signatures required for push and objects."
type: feature
-
text: "Implement v2 grant endpoint with support for user level grant."
type: feature
- version: v4.1.7
date: 2020-09-14
changes:
-
text: "Add delete permission support to grant call."
type: feature
- version: v4.1.6
date: 2020-08-20
changes:
-
text: "Remove hard coded keys from tests."
type: improvement
- version: 4.1.5
date: 2019-10-22
changes:
- type: improvement
text: Update composer.json package version constraints
- type: improvement
text: Update .travis.yml to run tests for PHP versions 7.2 and 7.3
- version: 4.1.4
date: 2019-10-18
changes:
- type: bug
text: Add support for request transport reusing to resolve slow publish issues when multiple messages are published consecutively.
- type: bug
text: Drop support for HHVM.
- version: 4.1.3
date: 2019-02-28
changes:
- type: feature
text: Add messageCounts() method for retrieving unread message count
- version: 4.1.2
date: 2018-10-23
changes:
- type: bug
text: Fix issue with deleteMessages endpoint using GET HTTP method instead of DELETE
- version: 4.1.1
date: 2018-10-02
changes:
- type: feature
text: Add setOrigin method
- type: improvement
text: Add .gitattributes file to save space when using composer
- type: bug
text: Fix urlencode issue with channel names
- type: bug
text: Fix channel name validation for Publish
- type: bug
text: Return class instance of PNConfiguration on setConnectTimeout method
- version: 4.1.0
date: 2018-09-07
changes:
- type: feature
text: Add fire() method on PubNub instance
- type: bug
text: Change return value of SetState::getOperationType
- type: feature
text: Add history delete (deleteMessages) method on PubNub instance
- type: feature
text: Add Telemetry Manager
- version: 4.0.0
date: 2017-06-07
changes:
- type: feature
text: release final v4
- type: bug
text: Fix publish sequence counter
- type: bug
text: Fix publish tests
- version: 4.0.0-beta.3
date: 2017-05-05
changes:
- type: bug
text: Fix special characters encoding
- type: bug
text: Remove set* prefix from publish setters
- version: 4.0.0-beta.2
date: 2017-04-21
changes:
- type: bug
text: Add missing methods on PubNub instance
- type: bug
text: Fix removeAllPushChannelsForDevice method case
- version: 4.0.0-beta
date: 2017-04-18
changes:
- type: bug
text: Fix windows compatibility
- type: improvement
text: Add option to disable SSL
- type: bug
text: Fix subscribe presence response parsing
- type: bug
text: Add missing removeListener()
- type: improvement
text: Add logger
- type: bug
text: Fix json decoding error
- type: improvement
text: Add Push methods
- version: 4.0.0-alpha
date: 2017-04-04
changes:
- type: improvement
text: Alpha Release
features:
access:
- ACCESS-GRANT
- ACCESS-SECRET-KEY-ALL-ACCESS
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-WHERE-NOW
- PRESENCE-SET-STATE
- PRESENCE-GET-STATE
publish:
- PUBLISH-STORE-FLAG
- PUBLISH-RAW-JSON
- PUBLISH-WITH-METADATA
- PUBLISH-GET
- PUBLISH-FIRE
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
storage:
- STORAGE-REVERSE
- STORAGE-INCLUDE-TIMETOKEN
- STORAGE-START-END
- STORAGE-COUNT
- STORAGE-MESSAGE-COUNT
time:
- TIME-TIME
subscribe:
- SUBSCRIBE-CHANNELS
- SUBSCRIBE-CHANNEL-GROUPS
- SUBSCRIBE-PRESENCE-CHANNELS
- SUBSCRIBE-PRESENCE-CHANNELS-GROUPS
- SUBSCRIBE-WITH-TIMETOKEN
- SUBSCRIBE-WILDCARD
- SUBSCRIBE-PUBLISHER-UUID
supported-platforms:
-
version: PubNub PHP SDK
platforms:
- FreeBSD 8-STABLE or later, amd64, 386
- Linux 2.6 or later, amd64, 386.
- Mac OS X 10.8 or later, amd64
- Windows 7 or later, amd64, 386
editors:
- PHP 8.1
- PHP 8.2
- PHP 8.3
sdks:
- full-name: PHP SDK
short-name: PHP
artifacts:
- artifact-type: api-client
language: PHP
tier: 2
tags:
- Server
source-repository: https://github.com/pubnub/php
documentation: https://www.pubnub.com/docs/sdks/php
distributions:
- distribution-type: source
distribution-repository: GitHub
package-name: PubNub PHP SDK
location: https://github.com/pubnub/php
requires:
- name: rmccue/requests
min-version: 1.0.0
max-version: 1.8.0
location: https://packagist.org/packages/rmccue/requests
license: ISC license
license-url: https://github.com/WordPress/Requests/blob/master/LICENSE
is-required: Required
notes: Will be installed along with SDK
- name: monolog/monolog
min-version: 1.0.0
max-version: 1.22.1
location: https://github.com/Seldaek/monolog
license: MIT License
license-url: https://github.com/Seldaek/monolog/blob/main/LICENSE
is-required: Required
notes: Will be installed along with SDK
supported-platforms:
supported-operating-systems:
macOS:
runtime-version:
- PHP 8.1
- PHP 8.2
- PHP 8.3
minimum-os-version:
- Mac OS X 10.8
maximum-os-version:
- macOS 15.0.1
target-architecture:
- arm64
- x86-64
Windows:
runtime-version:
- PHP 8.1
- PHP 8.2
- PHP 8.3
minimum-os-version:
- Windows 7 Professional
- Windows 7 Enterprise
- Windows 7 Ultimate
maximum-os-version:
- Windows 10 Pro
- Windows 10 Enterprise
target-architecture:
- x86
- x86-64
Linux:
runtime-version:
- PHP 8.1
- PHP 8.2
- PHP 8.3
minimum-os-version:
- Ubuntu 20.04 LTS
maximum-os-version:
- Ubuntu 24.04.1 LTS
target-architecture:
- x86
- x86-64
- distribution-type: package
distribution-repository: Packagist
package-name: pubnub/pubnub
location: https://packagist.org/packages/pubnub/pubnub
requires:
- name: rmccue/requests
min-version: 1.0.0
max-version: 1.8.0
location: https://packagist.org/packages/rmccue/requests
license: ISC license
license-url: https://github.com/WordPress/Requests/blob/master/LICENSE
is-required: Required
notes: Will be installed along with SDK
- name: monolog/monolog
min-version: 1.0.0
max-version: 1.22.1
location: https://github.com/Seldaek/monolog
license: MIT License
license-url: https://github.com/Seldaek/monolog/blob/main/LICENSE
is-required: Required
notes: Will be installed along with SDK
supported-platforms:
supported-operating-systems:
macOS:
runtime-version:
- PHP 8.1
- PHP 8.2
- PHP 8.3
minimum-os-version:
- Mac OS X 10.8
maximum-os-version:
- macOS 15.0.1
target-architecture:
- arm64
- x86-64
Windows:
runtime-version:
- PHP 8.1
- PHP 8.2
- PHP 8.3
minimum-os-version:
- Windows 7 Professional
- Windows 7 Enterprise
- Windows 7 Ultimate
maximum-os-version:
- Windows 10 Pro
- Windows 10 Enterprise
target-architecture:
- x86
- x86-64
Linux:
runtime-version:
- PHP 8.1
- PHP 8.2
- PHP 8.3
minimum-os-version:
- Ubuntu 20.04 LTS
maximum-os-version:
- Ubuntu 24.04.1 LTS
target-architecture:
- x86
- x86-64
- distribution-type: library
distribution-repository: GitHub release
package-name: php-7.0.2.zip
location: https://github.com/pubnub/php/releases/tag/7.0.2
requires:
- name: rmccue/requests
min-version: 1.0.0
max-version: 1.8.0
location: https://packagist.org/packages/rmccue/requests
license: ISC license
license-url: https://github.com/WordPress/Requests/blob/master/LICENSE
is-required: Required
notes: Will be installed along with SDK
- name: monolog/monolog
min-version: 1.0.0
max-version: 1.22.1
location: https://github.com/Seldaek/monolog
license: MIT License
license-url: https://github.com/Seldaek/monolog/blob/main/LICENSE
is-required: Required
notes: Will be installed along with SDK
supported-platforms:
supported-operating-systems:
macOS:
runtime-version:
- PHP 8.1
- PHP 8.2
- PHP 8.3
minimum-os-version:
- Mac OS X 10.8
maximum-os-version:
- macOS 15.0.1
target-architecture:
- arm64
- x86-64
Windows:
runtime-version:
- PHP 8.1
- PHP 8.2
- PHP 8.3
minimum-os-version:
- Windows 7 Professional
- Windows 7 Enterprise
- Windows 7 Ultimate
maximum-os-version:
- Windows 10 Pro
- Windows 10 Enterprise
target-architecture:
- x86
- x86-64
Linux:
runtime-version:
- PHP 8.1
- PHP 8.2
- PHP 8.3
minimum-os-version:
- Ubuntu 20.04 LTS
maximum-os-version:
- Ubuntu 24.04.1 LTS
target-architecture:
- x86
- x86-64