forked from bluez/bluez
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ChangeLog
2458 lines (2203 loc) · 95 KB
/
ChangeLog
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
ver 5.73:
Fix issue with BAP and setting up broadcast source.
Fix issue with BAP and register all endpoints.
Fix issue with BAP and missing metadata property.
Fix issue with BAP and not handling out of order responses.
Fix issue with BAP and attempting to set device as connectable.
Add support for CCP plugin for call control profile.
ver 5.72:
Fix issue with BAP and handling stream IO linking.
Fix issue with BAP and setup of multiple streams per endpoint.
Fix issue with AVDTP and potential incorrect transaction label.
Fix issue with A2DP and handling crash on suspend.
Fix issue with GATT database and an invalid pointer.
Add support for AICS service.
ver 5.71:
Fix issue with not registering CSIS service.
Fix issue with registering pairing callbacks.
Fix issue with corruption during discovery filter parsing.
ver 5.70:
Fix issue with not sending GATT confirmations.
Fix issue with not handling initiator properly.
Fix issue with not checking PBAP counter length.
Add support for MICP profile and MICS service.
ver 5.69:
Fix issue with BAP enabling state correctly when resuming.
Fix issue with detaching source ASEs only after Stop Ready.
Fix issue with handling VCP audio location and descriptor.
Fix issue with generating IRK for adapter with privacy enabled.
Add support for BAP broadcast sink.
ver 5.68:
Fix issue with A2DP and handling of Transport.Acquire.
ver 5.67:
Fix issue with BAP and initiating QoS and Enable procedures.
Fix issue with BAP and detaching streams when PAC is removed.
Fix issue with BAP and reading all instances of PAC.
Fix issue with BAP and not being able to reconfigure.
Fix issue with BAP and transport configuration changes.
Fix issue with BAP and handling unexpected disconnect.
Fix issue with GATT and not removing pending services.
Fix issue with GATT and client ready handling.
Fix issue with handling fallback to transient hostname.
Add support for SecureConnections configuration option.
Add support for Mesh Remove Provisioning.
Add support for Mesh Private Beacons.
ver 5.66:
Fix issue with A2DP and transport connection collisions.
Fix issue with allowing application specific error codes.
Fix issue with not setting initiator flag correctly.
Fix issue with HoG Report MAP size handling.
Add initial support for Basic Audio Profile.
Add initial support for Volume Control Profile.
ver 5.65:
Fix issue with A2DP cache invalidation handling.
Fix issue with A2DP and not initialized SEP codec.
Fix issue with A2DP and multiple SetConfiguration to same SEP
Fix issue with AVRCP and not properly initialized volume.
Fix issue with SDP records when operating in LE only mode.
Fix issue with HoG and not reading report map of instances.
Fix issue with GATT server crashing while disconnecting.
Fix issue with not removing connected devices.
Fix issue with enabling wake support without RPA Resolution.
Fix issue with pairing failed due to the error of Already Paired.
Add support for CONFIGURATION_DIRECTORY environment variable.
Add support for STATE_DIRECTORY environment variable.
Add support for "Bonded" property with Device API.
Add experimental support for ISO socket.
ver 5.64:
Fix issue with handling A2DP discover procedure.
Fix issue with media endpoint replies and SetConfiguration.
Fix issue with HoG queuing events before report map is read.
Fix issue with HoG and read order of GATT attributes.
Fix issue with HoG and not using UHID_CREATE2 interface.
Fix issue with failed scanning for 5 minutes after reboot.
ver 5.63:
Fix issue with storing IRK causing invalid read access.
Fix issue with disconnecting due to GattCharacteristic1.MTU.
Add support for Device{Found,Lost} of advertising monitoring.
ver 5.62:
Fix issue with handling truncation when loading LTKs.
Fix issue with accepting Exchange MTU on EATT bearer.
Fix issue with clearing DeviceLost timers on power down.
Fix issue with AVCTP browsing channel and missing ERTM.
Fix issue with AVDTP and local SEID pool for each adapter.
Add support for BR/EDR and LE connection failure reasons.
ver 5.61:
Fix issue with A2DP while waiting for command response.
Fix issue with A2DP when SetConfiguration fails.
Fix issue with device removal handling.
Fix issue with storing discoverable setting.
Add support for Central Address Resolution characteristic.
Add support for admin policy plugin.
ver 5.60:
Fix issue with reading from RFKILL device node.
Fix issue with AVDTP and parsing capabilities.
Fix issue with UnregisterApplication handling.
Fix issue with RegisterProfile if UUID already exists.
Fix issue with GATT client attribute read with offset.
Fix issue with non-discoverable device and advertising monitor.
ver 5.59:
Fix issue with string to UUID-32 conversion.
Fix issue with connect request if SDP search failed.
Fix issue with accepting invalid AVDTP capabilities.
Fix issue with unregister handling of AVRCP player.
ver 5.58:
Fix issue with usage of deprecated GLib functions.
ver 5.57:
Fix issue with handling GATT notification PDU parsing.
Fix issue with registering DIS without a valid source.
Fix issue with removing remote SEPs when loading from cache.
ver 5.56:
Fix issue with setting AVDTP disconnect timer.
Fix issue with AVDTP not sending GetCapabilities.
Fix issue with AVDTP connecting using streaming mode.
Fix issue with handling A2DP and remote SEP disappearing.
Fix issue with handling session of A2DP channels.
Fix issue with GATT and handling device removal.
Fix issue with GATT not accepting multiple requests.
Fix issue with HID report value callback registration.
Add support for new advertising management command.
Add support for battery D-Bus interface.
ver 5.55:
Fix issue with handling security level for HoG.
Fix issue with handling HIDSDPDisable attribute.
Fix issue with handling HID virtual cable unplug.
Fix issue with handling HID channel disconnect order.
Fix issue with handling AVDTP delay reporting states.
Fix issue with handling AVRCP notification events.
Fix issue with handling AVRCP list player attributes.
Fix issue with handling AVRCP category 1 player settings.
Fix issue with handling AVRCP media player passthrough bitmask.
Fix issue with handling HFP 1.7 default features.
Fix issue with handling GATT disconnecting handling.
Fix issue with handling GATT database hash.
Fix issue with handling service changed characteristic.
Fix issue with handling read of multiple characteristic values.
Fix issue with handling Just-Works auto-accept pairing.
Fix issue with handling authentication of bonded devices.
Fix issue with handling L2CAP streaming mode for AVDTP.
Fix issue with handling SysEx parser for MIDI support.
Fix issue with handling configured scan parameter values.
Fix issue with handling temporary devices removal.
Fix issue with handling advertising flags.
ver 5.54:
Fix issue with HOGP to accept data only from bonded devices.
Fix issue with A2DP sessions being connected at the same time.
Fix issue with class UUID matches before connecting profile.
Add support for handling MTU auto-tuning option for AVDTP.
Add support for new policy for Just-Works repairing.
Add support for Enhanced ATT bearer (EATT).
ver 5.53:
Fix issue with handling unregistration for advertisment.
Fix issue with A2DP and handling recovering process.
Fix issue with udpating input device information.
Add support for loading blocked keys.
ver 5.52:
Fix issue with AVDTP session disconnect timeout handling.
Mark media endpoint APIs as stable interfaces.
ver 5.51:
Fix issue with first agent not being registered as default.
Fix issue with loading devices without Service Changed CCC.
Fix issue with GATT client and extended property reading.
Fix issue with handling GATT client invalid read behavior.
Fix issue with handling GATT disconnect handler removal.
Fix issue with missing GATT/GAP service records for SDP.
Fix issue with checking SDP continuation state length.
Fix issue with HID device removal on HoG disconnect.
Fix issue with AVDTP and session destroy handling.
Fix issue with AVCTP and output MTU accounting.
Fix issue with AVRCP and creating media items.
Add support for GATT database caching feature.
Add experimental support for Bluetooth Mesh Profile.
ver 5.50:
Fix issue with GATT and reading long values.
Fix issue with GATT and reading multiple includes.
Fix issue with GATT and service changes when offline.
Fix issue with handling secondary service discovery.
Fix issue with handling persistency of CCC values.
Fix issue with handling Mesh session on disconnection.
Fix issue with handling Mesh proxy PDU SAR message length.
Fix issue with handling Mesh default heartbeat TTL value.
Add support for Mesh node-reset operation handling.
Add support for GATT authorization request handling.
Add support for GATT minimum key size requirements.
Add support for GATT server and included services.
Add support for handling additional advertising data.
Add support for handling separate discoverable state.
Add support for enabling HFP version 1.7 features.
Add support for dedicated Bluetooth logging daemon.
ver 5.49:
Fix issue with configuring discoverable advertising flag.
Fix issue with bearer selection and single mode controllers.
Fix issue with Connect and ConnectProfile returning in progress.
Fix issue with missing Paired property change when not bonded.
Fix issue with storage for controllers without public address.
Fix issue with handling AVCTP disconnecting the channel queue.
Fix issue with not clearing connectable setting on power off.
Fix issue with creating multiple mgmt socket instances.
Fix issue with GATT server and BR/EDR only devices.
Fix issue with InterfaceAdded event ordering.
Add support for generic ConnectDevice method call.
Add support for Mesh heartbeat client functionality.
ver 5.48:
Fix issue with subscriptions for unpaired devices.
Fix issue with handling A2DP and no available SEP.
Fix issue with handling AVCTP change path support.
Fix issue with handling AVCTP browsing channel.
Fix issue with handling AVCTP passthrough PDUs.
Fix issue with handling detaching of controller.
Fix issue with handling start discovery results.
Fix issue with handling non-connectable devices.
Fix issue with handling unused parameter in WriteValue.
Add support for service side AcquireWrite and AcquireNotify.
Add support for providing address type information.
Add support for cable based authentication and pairing.
Add support for Bluetooth Low-Energy battery service.
Add support for BTP client for qualification testing.
Add support for additional Mesh control functionality.
Mark advertising manager APIs as stable interfaces.
ver 5.47:
Fix issue with handling AcquireNotify registration.
Fix issue with handling support for reconnection interval.
Fix issue with handling A2DP transport and accepting streams.
Fix issue with fallback from BR/EDR to LE bearer handling.
Add support for appearance and local name advertising data.
Add support for retrieving the supported discovery filters.
Add support for decoding Bluetooth 5.0 commands and events.
Add support for decoding Bluetooth Mesh advertising bearer.
Add support for Bluetooth Mesh control application.
ver 5.46:
Fix issue with handling ATT over BR/EDR connections.
Fix issue with SDP browsing cleanup after connection.
Fix issue with pointer dereference and OPP Put request.
Fix issue with identity address updates during pairing.
Fix issue with not removing services that had disappeared.
Add support for improved discovery of included services.
Add support for simplified characteristics discovery.
Add support for GATT caching configuration option.
Add experimental support for AcquireWrite and AcquireNotify.
ver 5.45:
Fix issue with agent support in Bluetooth client tool.
Fix issue with handling re-connection policy.
Fix issue with handling unknown ATT commands.
Fix issue with handling GATT Service Includes property.
Fix issue with handling PullAll for OBEX transfers.
Fix issue with handling delay in AVDTP Suspend responses.
Fix issue with handling decoding of management frames.
Add support for frame counters in Bluetooth monitor tool.
ver 5.44:
Fix issue with GAP and GATT service registration.
Fix issue with wrong address type for ATT sockets.
Fix issue with dictionary entries for advertising.
Fix issue with device information and HID over GATT.
Fix issue with handling secondary service discovery.
Fix issue with handling Attribute Read Long procedure.
Fix issue with handling Attribute Write Long procedure.
Fix issue with handling abort of AVDTP SetConfiguration.
Add support for single-mode static address configuration.
Add support for MIDI over Bluetooth Low Energy.
ver 5.43:
Fix issue with HID over GATT support.
Fix issue with ATT Find By Type response handling.
Fix issue with handling insufficient authentication.
Fix issue with bonding while pairing is in progress.
Fix issue with BR/EDR pairing for dual-mode devices.
Fix issue with handling profile policy resets.
Fix issue with connecting state of services.
Fix issue with handling PAN GN Master role.
Add support for enabling LE Privacy feature.
ver 5.42:
Fix issue with PBAP call logs from different folders.
Fix issue with OBEX over L2CAP and PowerPC architecture.
Fix issue with BR/EDR over LE selection during discovery.
Fix issue with selection of bearer after bonding.
Fix issue with handling socket recv() return values.
Fix issue with setting connecting service state.
Fix issue with setting correct ATT default MTU value.
Fix issue with not setting AVRCP player identifier.
Fix issue with handling AVRCP browsable player.
Fix issue with addressing AVRCP player changes.
Add support for new management tracing capability.
Mark GATT D-Bus APIs as stable interfaces.
ver 5.41:
Fix issue with service state changes handling.
Fix issue with AVRCP and no available player.
Fix issue with handling discovery filters.
Fix issue with handling temporary addresses.
Fix issue with GATT MTU size and BR/EDR links.
Fix issue with OBEX and creating directories.
ver 5.40:
Fix issue with not storing GATT attributes.
Fix issue with optional GATT notifications.
Fix issue with reading GATT extended properties.
Fix issue with GATT device name properties.
Fix issue with previously paired devices.
Fix issue with handling device removal.
Fix issue with profile connection handling.
Add support for TTY monitor protocol.
ver 5.39:
Fix issue with missing uHID kernel support.
Fix issue with GATT reliable write handling.
Fix issue with GATT service changed handling.
Fix issue with GATT execute write handling.
Fix issue with AVRCP player event handling.
Fix issue with AVRCP controller handling.
Fix issue with AVDTP connection handling.
Fix issue with AVDTP error handling.
ver 5.38:
Fix issue with stack overflow and UUID handling.
Fix issue with ObjectManager interface and GATT.
Fix issue with GATT database and error handling.
Fix issue with GATT client notifications.
Fix issue with GATT object ordering.
Fix issue with GATT default MTU exchange.
Fix issue with device attribute clearing.
Fix issue with AVRCP capabilities request.
ver 5.37:
Fix issue with registering external profiles.
Fix issue with connecting external profiles.
Fix issue with GATT service changed handling.
Fix issue with not emitting GattServices update.
Convert to unified HID over GATT profile support.
Convert to KeyboardDisplay as default IO capability.
Install btattach utility by default.
ver 5.36:
Fix issue with PBAP headers for size query.
Fix issue with AVRCP current player handling.
Fix issue with device information handling.
Fix issue with device disconnect handling.
Fix issue with duplicate connect handling.
Fix issue with attribute claiming for drivers.
ver 5.35:
Fix issue with connected devices after discovery.
Fix issue with profile support and LTK loading.
Fix issue with AVRCP events for volume control.
Fix issue with OBEX session owner handling.
Fix issue with HID over GATT setup failures.
Fix issue with GATT notification registration.
Fix issue with GATT cache validation feature.
Add support for persistent GATT database.
Add support for controller enabling option.
ver 5.34:
Fix issue with GATT profiles and auto-connect.
Fix issue with missing GoepL2CapPsm SDP data.
Fix issue with suspending AVDTP endpoints.
Fix issue with audio service state on disconnect.
Add support for AVRCP Set Addressed Player feature.
Add support for AVRCP Get Folder Items feature.
Add support for Android 5.1 HFP WBS callbacks.
ver 5.33:
Fix issue with memory leak in GATT database.
Fix issue with AVDTP set configuration handling.
Fix issue with AVDTP discover procedure.
Fix issue with not emitting Paired property.
ver 5.32:
Fix issue with OPP GET request path handling.
Fix issue with ATT information request errors.
Fix issue with advertising instance numbers.
Fix issue with overwriting SDP record cache.
Fix issue with new connections during disconnect.
Add support for GATT security auto-elevation.
ver 5.31:
Fix issue with crash in networking interface.
Fix issue with crash when creating endless GATT loops.
Fix issue with memory leak when connecting services.
Fix issue with memory leak creating new D-Bus proxy.
Fix issue with profile connections from remote devices.
Fix issue with GATT over BR/EDR and MTU notification.
Fix issue with HID and dual mode remote devices.
Fix issue with handling A2DP vendor codec setup.
Fix issue with AVRCP and syncing player state.
Fix issue with GATT secondary discovery handling.
Fix issue with wrong characteristic allocation.
Add support for handling BNEP setup response.
Add support for setting GATT database security flags.
Add support for setting discovery filters interface.
Add support for user controlled advertising interface.
Update Android qualification documentation to PTS 6.1 release.
ver 5.30:
Fix compilation error in C++ due to inline function.
Fix issue with missing storage of device information.
Fix issue with GATT client and gaps in service handles.
Fix issue with AVDTP discovery callback crashing.
Fix issue with AVCTP channel handling in case of conflicts.
Fix issue with AVRCP target and get capabilities command.
Add experimental support for LE advertising manager API.
Add support for Android 5.1 GATT MTU exchange API.
ver 5.29:
Fix issue with AVCTP initial key repeat timeout.
Fix issue with Android application disconnect handling.
Fix issue with Android support and service notifications.
Fix issue with Android support and Exchange MTU Request.
Fix issue with Android HFP support and AT+CMER handling.
Fix issue with Android HFP support and SLC setup.
Fix issue with Android HFP support and call hold status.
Fix issue with Android HFP support and indicator handling.
Fix issue with Android HFP support and SCO/eSCO disconnection.
Fix issue with Android HID over GATT support and battery service.
Fix issue with GATT sending Exchange MTU Request for BR/EDR.
Fix issue with GATT notification support without CCC.
Fix issue with GATT object life-time after disconnects.
Fix issue with GATT notification handling API.
Add experimental support for GATT client D-Bus API.
Add experimental support for GATT server D-Bus API.
Add support for Multi Profile Specification.
Update Android qualification documentation to PTS 6.0 release.
ver 5.28:
Fix issue with GATT device discovery and probing.
Fix issue with bearer selection for dual-mode devices.
Fix issue with device removal while connected.
Fix issue with device name setting from inquiry response.
Fix issue with missing termination of name characteristic.
Fix issue with UTF-8 length handling for device name.
Fix issue with AVCTP key auto release handling.
Fix issue with AVCTP key press repetition handling.
Fix issue with payload sizes and GATT notifications.
Fix issue with memory corruption and GATT notifications.
Add support for HID proxy switching and CSR 8510 A10 devices.
Add support for Broadcom hex2hcd conversion utility.
ver 5.27:
Fix issue with endian handling and management interface.
Fix issue with pending GATT operations when disconnecting.
Fix issue with 128-bit UUID conversions for HID over GATT.
Add support for Android 5.0 SELinux policies.
ver 5.26:
Fix issue with handling A2DP XCASE connection state.
Fix issue with crash and A2DP configuration failures.
Fix issue with crash during OBEX session shutdown.
Add support for version 1.2 of Phonebook Access Profile.
Add support for HID over GATT get and set report handling.
Add support for Low Energy Secure Connections feature.
Add support for Bluetooth 4.2 commands and events.
Add support for Android 5.0 Bluetooth features.
ver 5.25:
Fix issue with SCO connection after codec negotiation.
Fix issue with GATT and secondary service discovery.
Fix issue with GATT write descriptor callback.
Fix issue with MAP supported features bits.
Add support for MAP local time and timezone offset.
Add support for PBAP speed-dial and favorites folders.
Add support for PBAP speed-dial and identifier filters.
Add support for controller mode configuration option.
Add initial support for Android Lollipop features.
ver 5.24:
Fix issue with storing of connection parameters.
Add support for Phonebook Access Profile 1.2 features.
Add support for Message Access Profile 1.2 event reports.
Add support for Android Bluetooth configuration options.
ver 5.23:
Fix issue with concurrent authorization requests.
Fix issue with HID report identifier mismatch.
Fix issue with crash when receiving uHID events.
Fix issue with crash and OBEX disconnect handling.
Fix issue with OBEX client transfers and suspend.
Fix issue with parsing of MAP application parameters.
Fix issue with devices rejecting AVRCP GetCapabilities.
Add support for kernel whitelist and Android Bluetooth.
ver 5.22:
Fix issue with UHID_OUTPUT events mapping.
Fix issue with UHID_FEATURE events handling.
Fix issue with UINT32_MAX overflow and AVRCP.
Fix issue when dirent type DT_UNKNOWN is returned.
Add support for kernel whitelist filtering feature.
Add support for Android Bluetooth GATT over BR/EDR.
ver 5.21:
Fix issue with SDP requests and wrong PDU size.
Fix issue with handling passive scanning triggers.
Add support for storing and loading connection parameters.
Add support for kernel background auto-connection feature.
Add support for Android Bluetooth Scan Parameters feature.
Add support for Android Bluetooth Device Information feature.
Add support for Android Bluetooth Health Device interface.
ver 5.20:
Fix issue with LED handling of PS3 controllers.
Add support for Android Bluetooth GATT server interface.
Add support for Android Bluetooth HID over GATT feature.
Add support for Android Bluetooth multi-profile feature.
Add support for Android Bluetooth aptX audio integration.
Note: aptX codec not included
ver 5.19:
Fix issue with OBEX Put-Delete and Create-Empty methods.
Fix issue with AVRCP browsable/searchable player properties.
Fix issue with handling multiple default agents.
Fix issue with handling unpair event per bearer.
Fix issue with HID over GATT report ID presence.
Add support for HID protocol handling in userspace.
Add support for Bluetooth reconnection policy framework.
Add support for Android Bluetooth SCO over HCI transport.
Add support for Android Bluetooth audio quality control.
Add support for Android Bluetooth Low Energy only mode.
ver 5.18:
Fix issue with identifying LE single mode devices.
Fix issue with L2CAP and RFCOMM peer address lookup.
Add support for handling OBEX authentication procedure.
Add support for Android Bluetooth GATT client interface.
ver 5.17:
Fix issue with not resetting OBEX SRM setup.
Fix issue with BR/EDR devices and auto-connect list.
Fix issue with bonding complete detection as peripheral.
Fix issue with not updating bearer timestamp of connections.
Fix issue with paired property for multiple bearers.
Add support for Android Bluetooth Handsfree interface.
Add support for Android Bluetooth Wideband speech.
ver 5.16:
Fix issue with HID over GATT physical location.
Fix issue with HID over GATT unique identifier.
Fix issue with missing paired property notification.
Fix issue with endianess of long term key storage.
Add support for storing signature resolving keys.
Add support for Android Bluetooth AVRCP interface.
ver 5.15:
Fix issue with LE enabling and background scanning.
Fix issue with HID over GATT input device name.
Fix issue with storage of slave long term keys.
Add support for handling identity resolving keys.
Add support for Android Bluetooth A2DP interface.
Add support for Android Bluetooth audio interface.
ver 5.14:
Fix issue with marking PS3 controllers as trusted.
Fix issue with authorization of PS3 controllers.
Add support for DualShock 4 controller detection.
Add support for legacy pairing emulation.
Add support for secure simple pairing emulation.
Add support for automated pairing testing.
Add support for RFCOMM protocol testing.
Add support for HCI controller testing.
ver 5.13:
Fix issue with PS3 controller detection.
Add support for data transfers to L2CAP testing tool.
Add support for delay reporting to AVDTP testing tool.
Add support for Android Bluetooth Core interface.
Add support for Android Bluetooth Socket interface.
Add support for Android Bluetooth HID Host interface.
Add support for Android Bluetooth PAN interface.
ver 5.12:
Fix issue with missing reply to DisconnectProfile.
Fix issue with icon property and class of device changes.
Fix issue with HID devices when SDP record is not available.
Fix issue with handling auto-pairing of printers.
Fix issue with agent authorization handling.
Add support for PS3 controller setup and pairing.
Add support for LE L2CAP CoC test capabilities.
Add support for AVDTP qualification test cases.
Add support for SMP cryptographic test cases.
ver 5.11:
Fix issue with connection attempt when not powered.
Fix issue with assigning player to AVRCP target role.
Fix issue with OBEX default cache directory.
Fix issue with SDP search error handling.
Fix issue with processing of SDP records.
Fix issue with HID to HCI switching utility.
Fix issue with mgmt end-to-end testing tool.
Fix issue with L2CAP end-to-end testing tool.
Add support for SMP end-to-end testing tool.
Add support for more Wii controllers.
ver 5.10:
Fix issue with discoverable timeout handling.
Fix issue with MAP messages and record version.
Fix issue with MAP messages and status events.
Fix issue with MAP messages and relative folders.
Fix issue with MAP messages and type property signals.
Fix issue with transfer size for OBEX GET operations.
Fix issue with AVRCP service class identifier.
Fix issue with AVRCP tracking seeked signal.
Add support for OBEX command line client.
ver 5.9:
Fix issue with network service and adapter removal.
Fix issue with misleading OBEX error messages.
Fix issue with OBEX transport reference handling.
Fix issue with memory leak with MAP event handler.
Fix issue with missing MAP property changed signal.
Fix issue with message type property values.
Fix issue with empty UUID list for devices.
Fix issue with profile agent cancel method.
Remove dependency on USB library.
ver 5.8:
Fix issue with missing OBEX session properties.
Fix issue with missing SDP service refresh.
Fix issue with SDP attribute range check.
Fix issue with priority for SDP transactions.
Fix issue with service discovery after pairing.
Fix issue with race condition in service list.
Fix issue with input service state transition.
Fix issue with default authorization for profiles.
Fix issue with AVRCP browsing channel connections.
Add support for AVRCP role agnostic sessions.
ver 5.7:
Fix issue with missing UUID discovery during pairing.
Fix issue with broken patch for SDP range check handling.
Fix issue with AVRCP usage of UID=0 for paused/stopped.
Add support MAP notification dispatching.
ver 5.6:
Fix issue with incoming connections without SDP record.
Fix issue with canceling ongoing device connections.
Fix issue with handling failed connection attempts.
Fix issue with pending resume during A2DP open failures.
Fix issue with registering AVRCP unsupported notification.
Fix issue with listing available AVRCP target settings.
Fix issue with missing error for OBEX SetPath commands.
Fix issue with missing OBEX session command queue.
Fix issue with retrieving multiple MAP event reports.
Add support for command line player utility.
ver 5.5:
Fix issue with race condition between SDP and properties.
Fix issue with handling storage of private device addresses.
Fix issue with NFC out-of-band pairing and power states.
Fix issue with short name during device update handling.
Fix issue with handling AVRCP without A2DP being present.
Add support for handling AVRCP pass-through operations.
Add support for automatically reconnecting HID devices.
Add support for automatically pairing of devices.
ver 5.4:
Fix issue with invalid memory access and SDP service search.
Add support for available player changed event for controller.
Add support for UIDs changed event for AVRCP controller.
Add support for mandatory AVRCP pass-through operations.
Add support for Message Notification Service (MNS) server.
Add support for agent methods within command line client.
ver 5.3:
Fix issue with registering invalid profiles.
Fix issue with inconsistent A2DP transport state.
Fix issue with A2DP resume while in configured state.
Fix issue with buffer overflow when processing SDP response.
Fix issue with missing range check for SDP attribute response.
Fix issue with missing validation of SDP data elements.
Fix issue with missing fallback to static hostname.
Fix issue with default adapter assignment.
ver 5.2:
Fix issue with connection handling for Low Energy.
Fix issue with broken device discovery handling.
Fix issue with invalid memory access within A2DP.
Fix issue with handling empty path name of SetPath.
Fix issue with handling Message Access Profile filters.
Fix issue with handling network service unregistration.
Fix issue with not handling bogus device pairing results.
Fix issue with initial service discovery and profile manager.
Add support for AVRCP volume notifications.
Add support for AVRCP browsing commands.
ver 5.1:
Fix issue with crash when removing OBEX session.
Fix issue with HID device disconnected from kernel.
Fix issue with buffer overflow when parsing HID SDP record.
Fix issue with SDP_TEXT_STR16 and SDP_URL_STR16 parsing.
Add support for integration with systemd's hostname daemon.
Add support for separate adapter alias property.
Add support for adapter and device modalias properties.
Add support for official BlueZ device information.
Add support for asynchronous management interface handling.
Add tool for testing management interface compliance.
Add tool for testing SDP qualification requirements.
Add tool for testing various EIR and AD data records.
ver 5.0:
Introduce D-Bus Properties and ObjectManager interfaces.
Add support for generic profile interface.
Add support for global agent interface.
Add support for integrated OBEX daemon.
Add support for integrated hcidump utility.
Add support for Bluetooth tracing and monitor utility.
Add support for Bluetooth command line client utility.
Remove support for Handsfree gateway handling.
Remove support for GStreamer A2DP and SBC elements.
Disable default installation of Bluetooth library.
ver 4.101:
Fix issue with missing BlueZ service file.
Fix issue with aborting A2DP setup during AVDTP start.
Fix issue with handling of multiple A2DP indication.
Fix issue with handling AVDTP abort with invalid SEID.
Fix issue with rejecting AVDTP abort commands.
Add support for handling AVDTP command collision.
ver 4.100:
Fix issue with crashing when SCO connection fails.
Fix issue with HFP gateway failing on first GSM connection.
Fix issue with AVRCP and handling of vendor commands.
Fix issue with handling AVRCP subunit info command.
Fix issue with missing capability for AVRCP track reached end.
Fix issue with AVDTP signaling and GStreamer SBC NULL check.
Fix issue with AVDTP Reconfigure Reject message.
Fix issue with incorrect EIR length parsing.
Fix issue with SDP disconnect for HIDSDPDisable.
Fix issue with SDP interoperability with Mac OS X Lion.
Fix issue with reverse SDP discovery with some devices.
Fix issue with discovering state during power off operation.
Add support for AVRCP Volume Changed notifications.
Add support for AVRCP Set Absolute Volume handling.
Add support for display legacy PIN code agent method.
Add support for multiple media transports per endpoint.
Add support for discovering device information characteristics.
Add support for vendor source for Device ID setting.
Add support for immediate alert server.
Add support for link loss server.
Notes:
This version requires D-Bus 1.4 or later.
This version requires GLib 2.28 or later.
ver 4.99:
Fix issue with missing retries for BNEP connection setup.
Fix issue with not showing name if first EIR has no details.
Fix issue with running SDP discovery for LE devices.
Add support for GATT using 128-bit Bluetooth UUIDs.
Add support for retrieving key size information.
Add support for storing Long Term Keys.
Add support for Proximity Reporter API.
Add support for KeyboardDisplay IO capability.
Add support for version 1.0 of management API.
Add support for monitoring interface.
ver 4.98:
Fix issue with adapter list upon initialization failure.
Fix issue with missing legacy property for Low Energy.
Fix issue with missing EIR information handling.
Fix issue with device address type tracking.
Fix issue with alert level characteristic.
Fix issue with headset shutdown handling.
Fix issue with Wiimote address handling.
Add support for advanced l2test options.
Add support for attribute protocol and multiple adapters.
ver 4.97:
Update support for proximity profile.
Fix issue with SBC audio decoding quality.
Fix multiple issues with HFP support.
Fix multiple issues with A2DP support.
Fix multiple issues with AVDTP support.
Fix multiple issues with AVRCP support.
Add support for AVRCP meta-data transfer.
Add support for Bluetooth based thermometers.
ver 4.96:
Fix issue with race condition in AVDTP stream start.
Fix issue with global adapter offline switching.
Fix issue with pairing and No Bonding devices.
Add support for Nintendo Wii Remote pairing.
ver 4.95:
Fix issue with AVCTP replies with invalid PID.
Fix issue with AVRCP and unknown packet types.
Fix issue with AVRCP not using NOT_IMPLEMENTED correctly.
Fix issue with AVDTP discovery if all endpoints are in use.
Fix issue with invalid memory writes and media support.
Fix issue with not removing device alias and unbonding.
Fix issue with device disconnects and offline mode handling.
Add support for setting adapter name based on machine-info.
Add support for systemd service configuration.
ver 4.94:
Fix issue with invalid read of memory in various modules.
Fix issue with buffer overflow when sending AVDTP commands.
Fix issue with response to vendor dependent AVRCP commands.
Fix issue with headset when not able to reply with ERROR.
Fix issue with crash when creating a device from storage.
Fix issue with handling non UTF-8 devices names.
Add support for improved discovery procedure.
ver 4.93:
Fix issue with property type and Health Main channel.
Fix issue with crash when removing devices.
Add support for hid2hci and udev integration.
ver 4.92:
Fix issue with handling of A2DP suspend response.
Fix issue with crashing when acquiring A2DP stream.
Fix issue with missing check for valid SCO before shutdown.
Fix issue with waiting for POLLERR when disconnecting SCO.
Fix issue with disconnect after primary service discovery.
Fix issue with attribute interface registration.
Add support for primary services over BR/EDR.
Add support for flushable packets of A2DP media.
ver 4.91:
Fix issue with LMP version string and hciconfig.
Fix issue with missing discovery signal when scanning.
Fix issue with wrong state and canceling name resolving.
Fix issue with missing check during adapter initialization.
Fix issue with missing protocol not supported error and A2DP.
Fix issue with crash during driver unregistering and A2DP.
Fix issue with crash when receiving AVDTP close command.
Fix issue with remote SEP handling when A2DP codec changes.
Fix issue with SCO hangup handling and state changes.
Fix issue with security level and MCAP instances.
Fix issue with memory leak and HDP data channels.
Add support for discover characteristics by UUID to gatttool.
Add initial support for Out-of-Band association model.
Add initial support for SIM Access Profile.
ver 4.90:
Fix issue with setting of global mode property.
Fix issue with handling of RequestSession responses.
Fix issue with TP_BNEP_CTRL_BV_01_C qualification test.
Fix issue with too short AVDTP request timeout.
Add support for SIM Access Profile manager.
Add support for new UUID utility functions.
Add support for attribute server notifications.
Add support for client characteristic configuration.
Update support for interactive GATT utility.
ver 4.89:
Fix issue with name resolving when discovery is suspended.
Fix issue with parsing flags of advertising report.
Fix issue with SEP handling if interface is disabled.
Fix issue with device object creation on disconnect event.
Fix issue with indicators whenever the driver is initialized.
Fix issue with call indicator when parsing call info reply.
Fix issue with crash and allowed GATT MTU was too large.
Add support for SDP record of Primary GATT services.
Add support for interactive mode for GATT utility.
ver 4.88:
Fix issue with HID channel reference count handling.
Fix issue with daemon exit on badly formatted AT+VTS.
Fix issue with crash while parsing of endpoint properties.
Fix issue with possible crash on AVDTP Suspend request timeout.
Fix issue with stopping inquiry before adapter is initialized.
Fix issue with creating device object when connection fails.
Fix issue with sending HCIDEVUP when adapter is already up.
Fix issue with handling bonding IO channel closing.
Fix agent cancellation in security mode 3 situations.
Update pairing code to support management interface.
ver 4.87:
Fix issue with initialization when adapter is already up.
Fix issue with attribute server MTU and incoming connections.
Fix issue with duplicate characteristics after discovery.
ver 4.86:
Revert wrong fix for SDP PDU size error response.
Fix various memory leaks in A2DP and AVDTP support.
Add Routing property to MediaTransport interface
Add proper tracking mechanism to NREC status.
Add READ_BLOB_REQUEST support to attribute server.
ver 4.85:
Fix issue with event mask setting for older adapters.
Fix issue with device creation and pairing failures.
Add support for telephony support via oFono.
Add support for characteristic security level.
Update support for service registration.
ver 4.84:
Fix issue with wrong parameters and device found signals.
Fix issue with leaking EIR data if RSSI does not change.
Fix issue with adapter initialization state.
Fix issue with closing of SDP server sockets.
ver 4.83:
Fix issue with already connected HFP/HSP endpoints.
Fix missing reply when create device is canceled.
Fix memory leak within the attribute server.
Fix memory leak with unused extended inquiry name.
Fix setting paired state when device->authr is false.
Fix clearing authentication request for renewed keys.
Add support for storing link keys in runtime memory.
Update support for primary service discovery.
ver 4.82:
Fix crash with mmap of files with multiples of page size.
Fix HFP response and hold (AT+BTRH) command response.
Fix device creation error response when powered off.
Fix device removal when connecting/browsing fails.
Add initial attribute permission implementation.
Add AVDTP SRC stream send buffer size verification.
Add support for setting link policy based on features.
ver 4.81:
Fix issue with telephony driver initialization.
Fix issue with adapter services list initialization.
Fix crash after simultaneous authentication requests.
Add support for primary service search on device creation.
ver 4.80:
Fix legacy link key storing for some buggy adapters.
Fix invalid memory access when EIR field length is zero.
Fix adapter initialization to wait for kernel HCI commands.
Fix initialization of adapters which are already up.
Fix possible race condition when initializing adapters.
Fix possible crashes when attempting to connect AVDTP.
Fix not aborting sink stream configuration on disconnect.
Fix not indicating disconnected state when connecting to AVDTP.
Fix not dropping AVDTP session when canceling stream setup.
Fix AVDTP abort not being send when the state is idle.
Fix regression with Low Energy and interleave discovery.
Add a new configuration option to disable Low Energy support.
Add iwmmxt optimization for SBC for ARM PXA series CPUs.
Update support for GATT Primary Service Discovery.
Update MCAP and HDP support.
ver 4.79:
Fix issue with adapter initialization race condition.
Update new Bluetooth Management interface support.
ver 4.78:
Fix various issues with AVDTP timer handling.
Fix various issues with handling of mode changes.
Fix issue with audio disconnect watch in connecting state.
Fix issue with handling call waiting indicators in telephony.
Fix issue with handling UUID parameter and RegisterEndpoint.
Add initial support for Bluetooth Management interface.
Add support for Application property to HealthChannel.
ver 4.77:
Fix issue with device name and accessing already freed memory.
Fix issue with handling CHLD=0 command for handsfree.
Fix issue with manager properties and no adapters.
Fix issue with properties and broken service records.
Fix issue with A2DP playback and sample rate changes.
Update MCAP and HDP support.
ver 4.76:
Fix issue in telephony driver with hanging up held call.
Fix issue in telephony driver with notifications when on hold.
Fix issue with blocking on setconf confirmation callback.
Fix issue with not always signaling new streams as sinks.
Fix issue with errors in case of endpoint request timeout.
Fix issue with HFP/HSP microphone and speaker gain values.
Add source if the device attempt to configure local sink stream.
Add PSM option for GATT/ATT over BR/EDR on gatttool.
Add support for GATT/ATT Attribute Write Request.
Update MCAP and HDP support.
ver 4.75:
Fix use of uninitialized variable on legacy pairing.
Fix mismatch of attribute protocol opcode.
ver 4.74:
Fix regression for Legacy Pairing.