-
Notifications
You must be signed in to change notification settings - Fork 302
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Release/v0.22.2 #1587
Release/v0.22.2 #1587
Commits on May 12, 2024
-
backends/winrt: add address acquisition process when advertising data…
… is None (#1571) In some situations, device.details has the scan response data only and advertising data is None. Since the ble address cannot be obtained from device.details.adv this time, the ble address is obtained from the device.details.scan (scan response data).
Configuration menu - View commit details
-
Copy full SHA for 73d2cb5 - Browse repository at this point
Copy the full SHA 73d2cb5View commit details
Commits on May 15, 2024
-
docs/troubleshooting: section on asynio.run()
It is quite common for people to report "bugs" in Bleak because they are using it wrong. Now we can have a link to give them to explain this in detail.
Configuration menu - View commit details
-
Copy full SHA for e2a8bd7 - Browse repository at this point
Copy the full SHA e2a8bd7View commit details
Commits on May 17, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 1d9f382 - Browse repository at this point
Copy the full SHA 1d9f382View commit details
Commits on May 18, 2024
-
Configuration menu - View commit details
-
Copy full SHA for d3b1097 - Browse repository at this point
Copy the full SHA d3b1097View commit details
Commits on May 21, 2024
-
updated-dependencies: - dependency-name: requests dependency-type: indirect ... Signed-off-by: dependabot[bot] <[email protected]>
Configuration menu - View commit details
-
Copy full SHA for b8149a5 - Browse repository at this point
Copy the full SHA b8149a5View commit details
Commits on May 23, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 75cd779 - Browse repository at this point
Copy the full SHA 75cd779View commit details -
Android: fix 'Descriptor None was not found!' (#1580)
The keys in the descriptor dict are the normalized 128-bit UUID string, so we need to use this to correctly find the descriptor. Fixes #823
Configuration menu - View commit details
-
Copy full SHA for d45ec90 - Browse repository at this point
Copy the full SHA d45ec90View commit details
Commits on Jun 1, 2024
-
backends/winrt: don't throw exception for properly configured GUI apps (
#1581) In commit 4a653e6 ("backends/winrt: raise exception when trying to scan with STA") we added a check to raise an exception when trying to scan when PyWinRT set the apartment model to STA. However, properly working GUI apps will have the apartment model set to STA but Bleak will still work because there is something pumping the Windows message loop. We don't want to raise an exception in this case to avoid breaking working apps. We can improve the test by checking if the current thread is actually pumping the message loop by scheduling a callback via a the win32 SetTimeout function. If the callback is called, then we know that the message loop is being pumped. If not, then we probably are not going to get async callbacks from the WinRT APIs and we raise an exception in this case.
Configuration menu - View commit details
-
Copy full SHA for bd8f022 - Browse repository at this point
Copy the full SHA bd8f022View commit details -
backends/characteristic: make max_write_without_response_size dynamic (…
…#1586) It has been observed that the max MTU exchange may not be complete before the connection is established, at least on Windows. This reverts the previous attempt to work around this on Windows and instead makes the max_write_without_response_size dynamic. This way users can implement a workaround if needed but users who don't need it won't be punished with a longer connection time. The timeout in the previous workaround was also too short for some devices so it wasn't complexly fixing the issue.
Configuration menu - View commit details
-
Copy full SHA for 425abb3 - Browse repository at this point
Copy the full SHA 425abb3View commit details -
Configuration menu - View commit details
-
Copy full SHA for c746071 - Browse repository at this point
Copy the full SHA c746071View commit details