c714d24d75
bump(mqtt_cxx): 0.3.0 -> 0.4.0
...
0.4.0
Bug Fixes
- Adds missing configuration fields (d4c6d5ed
)
2024-06-18 12:49:02 +02:00
ac9972aa48
feat(wifi_remote): Make wifi_remote depend on esp_hosted
...
Co-authored-by: david-cermak <38914379+david-cermak@users.noreply.github.com >
2024-06-18 11:14:09 +08:00
5d43f9660f
bump(console): 1.0.1 -> 1.1.0
...
1.1.0
Features
- Added support to join pre-configured network (bdbf16c1
)
2024-06-11 20:50:49 +10:00
bdbf16c113
feat(console): Added support to join pre-configured network
2024-06-11 20:34:01 +10:00
70fa3af771
fix(modem): Fixed clang-tidy warnings
...
* private field 'netif' is not used [clang-diagnostic-unused-private-field]
* private field 'instance' is not used [clang-diagnostic-unused-private-field]
* Call to virtual method 'FdTerminal::stop' during destruction bypasses virtual dispatch [clang-analyzer-optin.cplusplus.VirtualCall]
* unused variable 'TAG' [clang-diagnostic-unused-const-variable]
* Null pointer passed as 2nd argument to memory copy function [clang-analyzer-unix.cstring.NullArg]
* Array access (from variable 'data') results in a null pointer dereference [clang-analyzer-core.NullDereference]
2024-06-07 12:43:23 +02:00
5d69d3f0ac
Merge pull request #588 from gabsuren/mdns_v1.3.2
...
bump(mdns): 1.3.1 -> 1.3.2
2024-06-05 12:58:45 +04:00
39d59032a2
Merge pull request #582 from david-cermak/fix/wifi_remote_server_sync
...
[wifi-remote]: Fix server race when receiving command and posting events
2024-06-05 08:14:19 +02:00
e3418b5527
bump(wifi_remote): 0.2.2 -> 0.2.3
...
0.2.3
Bug Fixes
- Fix server event/command race condtion using eventfd (732b1d5
)
- Lock server before marshalling events (9e13870
)
2024-06-05 07:27:12 +02:00
21d1540b76
bump(mdns): 1.3.1 -> 1.3.2
...
1.3.2
Features
- add check of instance when handling PTR query (6af6ca5
)
Bug Fixes
- Fix of mdns afl tests (139166c
)
- remove same protocol services with different instances (042533a
)
2024-06-04 16:43:44 +04:00
139166c2c5
fix(mdns): Fix of mdns afl tests
2024-06-04 10:23:27 +04:00
7437d31368
Merge pull request #574 from DejinChen/fix/remove_same_protocol_service
...
fix(mdns): remove same protocol services with different instances
2024-06-03 14:26:40 +04:00
6af6ca52a2
feat(mdns): add check of instance when handling PTR query
2024-05-31 17:29:14 +08:00
042533af90
fix(mdns): remove same protocol services with different instances
2024-05-31 16:37:22 +08:00
732b1d5084
fix(wifi_remote): Fix server event/command race condtion using eventfd
2024-05-31 07:47:37 +02:00
9e13870ad4
fix(wifi_remote): Lock server before marshalling events
2024-05-30 15:40:26 +02:00
28c0e0b77b
bump(wifi_remote): 0.2.1 -> 0.2.2
...
0.2.2
Bug Fixes
- Added more netif options for eppp connection (24ce867
)
- Do not restrict EPPP config to RSA keys only (f05c765
, #570 )
2024-05-28 16:37:24 +02:00
24ce86756d
fix(wifi_remote): Added more netif options for eppp connection
...
Configurable in Kconfig:
* routing priority
* netif description
2024-05-28 16:36:16 +02:00
d96f45a1f9
bump(eppp): 0.1.0 -> 0.1.1
...
0.1.1
Bug Fixes
- Make some common netif options configurable (7829e8f
)
2024-05-28 16:11:19 +02:00
7829e8f976
fix(eppp): Make some common netif options configurable
2024-05-28 16:10:19 +02:00
f05c765e8b
fix(wifi_remote): Do not restrict EPPP config to RSA keys only
...
Now we can use any kind of certificate and keys, as long as they're in
PEM format.
Closes https://github.com/espressif/esp-protocols/issues/570
2024-05-20 15:13:16 +02:00
6393fcd79a
fix(websocket): Fix locking issues of esp_websocket_client_send_with_exact_opcode
API
...
Extended examples to cover more cases
Added new config CONFIG_ESP_WS_CLIENT_ENABLE_DYNAMIC_BUFFER for testing
2024-05-17 12:37:10 +04:00
2c4c88b4fb
bump(mdns): 1.3.0 -> 1.3.1
...
1.3.1
Bug Fixes
- free txt value len (afd98bb
)
2024-05-14 15:00:27 +04:00
afd98bb9c5
fix(mdns): free txt value len
2024-05-10 17:44:48 +08:00
608b835680
bump(wifi_remote): 0.2.0 -> 0.2.1
...
0.2.1
Bug Fixes
- Added misc wifi API in eppp impl (93256d1
)
- Updated eppp dependency not to use fixed version (3a48c06
)
2024-05-07 20:06:43 +02:00
93256d159b
fix(wifi_remote): Added misc wifi API in eppp impl
...
Adds missing implementation of:
* esp_wifi_deinit()
* esp_wifi_disconnect()
* esp_wifi_set_storage()
2024-05-07 20:06:24 +02:00
3a48c06e96
fix(wifi_remote): Updated eppp dependency not to use fixed version
2024-05-07 20:06:19 +02:00
1fb1ea9300
bump(eppp): 0.0.1 -> 0.1.0
...
0.1.0
Features
- Added CI job to build examples and tests (7eefcf0
)
Bug Fixes
- Fixed to select PPP LWIP opts which are OFF by default (16be2f9
)
- Example to use iperf component from the registry (bd6b66d
)
- Fixed defalt config designated init issue in C++ (8bd4712
)
2024-05-07 10:32:55 +02:00
16be2f963b
fix(eppp): Fixed to select PPP LWIP opts which are OFF by default
2024-05-07 10:30:43 +02:00
d786f0db88
Merge pull request #555 from gabsuren/websocket_keep_alirve
...
feat(websocket): adding support for `keep_alive_enable` when using WSS transport (IDFGH-11457)
2024-05-03 14:49:42 +04:00
bd6b66d9d1
fix(eppp): Example to use iperf component from the registry
2024-04-26 11:32:46 +02:00
d0c17ef0d5
fix(modem): Fix CI build per IDFv5.3
2024-04-26 11:25:30 +02:00
06d013b20b
Merge pull request #557 from euripedesrocha/fix_lastwill
...
Adds missing configuration fields
2024-04-26 02:50:23 -03:00
f032a9f023
Merge pull request #538 from david-cermak/feat/wifi_remote_example
...
[wifi remote]: Add example without `esp_hosted`
2024-04-25 16:03:15 +02:00
d16387859f
bump(wifi_remote): 0.1.12 -> 0.2.0
...
0.2.0
Features
- Add support for simple eppp based RPC (fd168d8
)
Bug Fixes
- Make services restartable, code cleanup (6c82ce2
)
- Add examples to CI (d2b7c55
)
2024-04-25 15:13:49 +02:00
6c82ce2915
fix(wifi_remote): Make services restartable, code cleanup
2024-04-25 15:11:17 +02:00
d2b7c55b89
fix(wifi_remote): Add examples to CI
2024-04-25 15:11:17 +02:00
fd168d86fc
feat(wifi_remote): Add support for simple eppp based RPC
2024-04-25 15:11:09 +02:00
d4c6d5ed5d
fix(mqtt_cxx): Adds missing configuration fields
...
Some aspects of the underlying mqtt client were not set.
Fix #554
2024-04-22 12:30:20 +02:00
c728eae5ea
feat(websocket): adding support for keep_alive_enable
when using WSS transport
2024-04-22 10:57:36 +04:00
13793a8236
bump(tls_cxx): First version [0.1.0]
...
0.1.0
Features
- Publish mbedtls component (0140455f
)
2024-04-11 16:52:51 +02:00
0140455ff7
feat(tls_cxx): Publish mbedtls component
...
Adds examples and tests.
Also supports DTLS now.
2024-04-11 16:49:54 +02:00
c4d9cc6beb
Merge pull request #540 from david-cermak/fix/modem_uart_missed_event
...
fix(modem): Fixed UART task to check for buffered data periodically
2024-04-11 14:44:51 +02:00
b3ba71ff4d
bump(mdns): 1.2.5 -> 1.3.0
...
1.3.0
Features
- add a new mdns query mode `browse` (af330b6
)
- Make including mdns_console KConfigurable (27adbfe
)
Bug Fixes
- Schedule all queued Tx packets from timer task (d4e693e
)
- add lock for some common apis (21c84bf
)
- fix mdns answer append while host is invalid (7be16bc
)
2024-04-10 11:24:25 +04:00
fbdb2483f5
Merge pull request #522 from zwx1995esp/feature/mdns_add_browse_suport
...
mdns add browse support (IDFGH-12512)
2024-04-10 09:48:55 +04:00
af330b6396
feat(mdns): add a new mdns query mode browse
2024-04-10 11:23:24 +08:00
f26f2f88c2
Merge pull request #537 from david-cermak/fix/eppp_cxx_init
...
fix(eppp): Fixed default config designated init issue in C++
2024-04-02 14:50:41 +02:00
cb682a793e
Merge pull request #516 from david-cermak/feat/wifi_remote
...
New component `esp_wifi_remote`
2024-04-02 12:56:12 +02:00
d053d671f4
bump(wifi_remote): Initial version 0.1.12
...
0.1.12
Features
- Added generation step for wifi_remote based on IDF (dfb00358
)
- Move to esp-protocols (edc3c2d
)
2024-04-02 11:21:38 +02:00
dfb0035858
feat(wifi_remote): Added generation step for wifi_remote based on IDF
2024-04-02 11:19:24 +02:00
1750a3fda9
Merge pull request #535 from gabsuren/websocket_update
...
bump(websocket): 1.2.2 -> 1.2.3
2024-03-27 17:35:52 +04:00