Skip to content

Commit b7cfa31

Browse files
authored
Merge pull request #878 from david-cermak/bump/mosq_2.0.20.4
bump(mosq): 2.0.20~3 -> 2.0.20~4
2 parents 4d52982 + 845a1e2 commit b7cfa31

File tree

5 files changed

+17
-8
lines changed

5 files changed

+17
-8
lines changed

.github/workflows/mosq__build.yml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,11 @@ jobs:
1616
idf_ver: ["latest", "release-v5.5", "release-v5.4", "release-v5.3", "release-v5.2", "release-v5.1"]
1717
example: ["broker", "serverless_mqtt"]
1818
exclude:
19+
# serverless_mqtt is not supported on v5.1 and master (esp-peer dependency)
1920
- idf_ver: "release-v5.1"
20-
example: "serverless_mqtt" # serverless_mqtt is not supported due to esp-peer
21-
include:
21+
example: "serverless_mqtt"
2222
- idf_ver: "latest"
2323
example: "serverless_mqtt"
24-
warning: "'octal_mode' is deprecated"
2524

2625
runs-on: ubuntu-22.04
2726
container: espressif/idf:${{ matrix.idf_ver }}
@@ -35,8 +34,6 @@ jobs:
3534
with:
3635
submodules: recursive
3736
- name: Build with IDF-${{ matrix.idf_ver }}
38-
env:
39-
EXPECTED_WARNING: ${{ matrix.warning }}
4037
shell: bash
4138
run: |
4239
. ${IDF_PATH}/export.sh

components/mosquitto/.cz.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ commitizen:
33
bump_message: 'bump(mosq): $current_version -> $new_version'
44
pre_bump_hooks: python ../../ci/changelog.py mosquitto
55
tag_format: mosq-v$version
6-
version: 2.0.20~3
6+
version: 2.0.20~4
77
version_files:
88
- idf_component.yml

components/mosquitto/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# Changelog
22

3+
## [2.0.20~4](https://github.com/espressif/esp-protocols/commits/mosq-v2.0.20_4)
4+
5+
### Features
6+
7+
- Update brokerless example to work with esp-peer ([76e45f72](https://github.com/espressif/esp-protocols/commit/76e45f72))
8+
9+
### Bug Fixes
10+
11+
- drop newlib from PRIV_REQUIRES ([6318022c](https://github.com/espressif/esp-protocols/commit/6318022c))
12+
- Make esp-peer build optional ([03df9ae9](https://github.com/espressif/esp-protocols/commit/03df9ae9))
13+
- Fix esp_webRTC deprecation with new FreeRTOS ([78ae2559](https://github.com/espressif/esp-protocols/commit/78ae2559))
14+
315
## [2.0.20~3](https://github.com/espressif/esp-protocols/commits/mosq-v2.0.20_3)
416

517

components/mosquitto/idf_component.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: "2.0.20~3"
1+
version: "2.0.20~4"
22
url: https://github.com/espressif/esp-protocols/tree/master/components/mosquitto
33
description: The component provides a simple ESP32 port of mosquitto broker
44
dependencies:

components/mosquitto/port/priv_include/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@
2020
#undef isspace
2121
#define isspace(__c) (__ctype_lookup((int)__c)&_S)
2222

23-
#define VERSION "v2.0.20~3"
23+
#define VERSION "v2.0.20~4"

0 commit comments

Comments
 (0)