You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+9-1Lines changed: 9 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -2,9 +2,14 @@
2
2
3
3
All notable changes to this project will be documented in this file.
4
4
5
-
## Unreleased changes
5
+
## [1.3.0] - 2021-08-02
6
6
7
7
### Added
8
+
-`NimBLECharacteristic::removeDescriptor`: Dynamically remove a descriptor from a characterisic. Takes effect after all connections are closed and sends a service changed indication.
9
+
-`NimBLEService::removeCharacteristic`: Dynamically remove a characteristic from a service. Takes effect after all connections are closed and sends a service changed indication
10
+
-`NimBLEServerCallbacks::onMTUChange`: This is callback is called when the MTU is updated after connection with a client.
11
+
- ESP32C3 support
12
+
8
13
- Whitelist API:
9
14
-`NimBLEDevice::whiteListAdd`: Add a device to the whitelist.
10
15
-`NimBLEDevice::whiteListRemove`: Remove a device from the whitelist.
@@ -26,6 +31,7 @@ All notable changes to this project will be documented in this file.
26
31
- FreeRTOS files have been removed as they are not used by the library.
27
32
- Services, characteristics and descriptors can now be created statically and added after.
28
33
- Excess logging and some asserts removed.
34
+
- Use ESP_LOGx macros to enable using local log level filtering.
29
35
30
36
### Fixed
31
37
-`NimBLECharacteristicCallbacks::onSubscribe` Is now called after the connection is added to the vector.
@@ -34,6 +40,8 @@ All notable changes to this project will be documented in this file.
34
40
- Retrieving remote descriptors now uses the characterisic end handle correctly.
35
41
- Missing data in long writes to remote descriptors.
36
42
- Hanging on task notification when sending an indication from the characteristic callback.
43
+
- BLE controller memory could be released when using Arduino as a component.
0 commit comments