From 5b06a3b319a321b62c1205c6922eb358ddcbf7a3 Mon Sep 17 00:00:00 2001 From: David Cermak Date: Thu, 7 Nov 2024 12:42:11 +0100 Subject: [PATCH] bump(modem): 1.1.0 -> 1.2.0 1.2.0 Features - Add support for guessing mode (52598e5f) - Delete CMUX internal implementation even if terminal exit fails (0e0cbd6b) - Add support for handling URC (1b6a3b3b, #180) - add ability to change ESP_MODEM_C_API_STR_MAX from Kconfig (17909892) - Added target test config with CHAP authentication (f8ae7def) - example add esp32p4 usb support (adafeae5) - Publish mbedtls component (0140455f) - host test support of the latest ESP-IDF release (3f74b4e8) Bug Fixes - Fix console example to use urc/detect features (1a9eaf3e) - Update target test builds to use external Catch2 (554f022c) - Fix arguments names when spawn esp_modem_xxx declarations (b6792c52) - Remove catch dependency (c3480768) - Examples: use local configs for MQTT topic/data (f5c13b92) - Fixed clang-tidy warnings (70fa3af7) - Fix CI build per IDFv5.3 (d0c17ef0) - Fixed UART task to check for buffered data periodically (4bdd90cc, #536) - Cleanup unused configs from PPPoS example (08a62ccc) - Update CMUX example with SIM7070_gnss cleaned-up (56fe5327) - Update console example with SIM7070_gnss format comments (5baaf542) - Fix remaining print format warnings (3b80181d) Updated - docs(modem): Fix esp_modem_at_raw() description (C-API) (492a6a00) - ci(common): updated github actions(checkout, upload, download) v3 to 4, Ubuntu 20.04 to v22.04 (a23a0027) --- components/esp_modem/.cz.yaml | 2 +- components/esp_modem/CHANGELOG.md | 33 ++++++++++++++++++++++++++ components/esp_modem/idf_component.yml | 2 +- 3 files changed, 35 insertions(+), 2 deletions(-) diff --git a/components/esp_modem/.cz.yaml b/components/esp_modem/.cz.yaml index 81bcd34edb..3073f85ac1 100644 --- a/components/esp_modem/.cz.yaml +++ b/components/esp_modem/.cz.yaml @@ -3,6 +3,6 @@ commitizen: bump_message: 'bump(modem): $current_version -> $new_version' pre_bump_hooks: python ../../ci/changelog.py esp_modem tag_format: modem-v$version - version: 1.1.0 + version: 1.2.0 version_files: - idf_component.yml diff --git a/components/esp_modem/CHANGELOG.md b/components/esp_modem/CHANGELOG.md index 7a6fc18858..6546e7b102 100644 --- a/components/esp_modem/CHANGELOG.md +++ b/components/esp_modem/CHANGELOG.md @@ -1,5 +1,38 @@ # Changelog +## [1.2.0](https://github.com/espressif/esp-protocols/commits/modem-v1.2.0) + +### Features + +- Add support for guessing mode ([52598e5f](https://github.com/espressif/esp-protocols/commit/52598e5f)) +- Delete CMUX internal implementation even if terminal exit fails ([0e0cbd6b](https://github.com/espressif/esp-protocols/commit/0e0cbd6b)) +- Add support for handling URC ([1b6a3b3b](https://github.com/espressif/esp-protocols/commit/1b6a3b3b), [#180](https://github.com/espressif/esp-protocols/issues/180)) +- add ability to change ESP_MODEM_C_API_STR_MAX from Kconfig ([17909892](https://github.com/espressif/esp-protocols/commit/17909892)) +- Added target test config with CHAP authentication ([f8ae7def](https://github.com/espressif/esp-protocols/commit/f8ae7def)) +- example add esp32p4 usb support ([adafeae5](https://github.com/espressif/esp-protocols/commit/adafeae5)) +- Publish mbedtls component ([0140455f](https://github.com/espressif/esp-protocols/commit/0140455f)) +- host test support of the latest ESP-IDF release ([3f74b4e8](https://github.com/espressif/esp-protocols/commit/3f74b4e8)) + +### Bug Fixes + +- Fix console example to use urc/detect features ([1a9eaf3e](https://github.com/espressif/esp-protocols/commit/1a9eaf3e)) +- Update target test builds to use external Catch2 ([554f022c](https://github.com/espressif/esp-protocols/commit/554f022c)) +- Fix arguments names when spawn esp_modem_xxx declarations ([b6792c52](https://github.com/espressif/esp-protocols/commit/b6792c52)) +- Remove catch dependency ([c3480768](https://github.com/espressif/esp-protocols/commit/c3480768)) +- Examples: use local configs for MQTT topic/data ([f5c13b92](https://github.com/espressif/esp-protocols/commit/f5c13b92)) +- Fixed clang-tidy warnings ([70fa3af7](https://github.com/espressif/esp-protocols/commit/70fa3af7)) +- Fix CI build per IDFv5.3 ([d0c17ef0](https://github.com/espressif/esp-protocols/commit/d0c17ef0)) +- Fixed UART task to check for buffered data periodically ([4bdd90cc](https://github.com/espressif/esp-protocols/commit/4bdd90cc), [#536](https://github.com/espressif/esp-protocols/issues/536)) +- Cleanup unused configs from PPPoS example ([08a62ccc](https://github.com/espressif/esp-protocols/commit/08a62ccc)) +- Update CMUX example with SIM7070_gnss cleaned-up ([56fe5327](https://github.com/espressif/esp-protocols/commit/56fe5327)) +- Update console example with SIM7070_gnss format comments ([5baaf542](https://github.com/espressif/esp-protocols/commit/5baaf542)) +- Fix remaining print format warnings ([3b80181d](https://github.com/espressif/esp-protocols/commit/3b80181d)) + +### Updated + +- docs(modem): Fix esp_modem_at_raw() description (C-API) ([492a6a00](https://github.com/espressif/esp-protocols/commit/492a6a00)) +- ci(common): updated github actions(checkout, upload, download) v3 to 4, Ubuntu 20.04 to v22.04 ([a23a0027](https://github.com/espressif/esp-protocols/commit/a23a0027)) + ## [1.1.0](https://github.com/espressif/esp-protocols/commits/modem-v1.1.0) ### Features diff --git a/components/esp_modem/idf_component.yml b/components/esp_modem/idf_component.yml index 0f78f85ac4..6596ab7ac6 100644 --- a/components/esp_modem/idf_component.yml +++ b/components/esp_modem/idf_component.yml @@ -1,4 +1,4 @@ -version: "1.1.0" +version: "1.2.0" description: Library for communicating with cellular modems in command and data modes url: https://github.com/espressif/esp-protocols/tree/master/components/esp_modem issues: https://github.com/espressif/esp-protocols/issues