Skip to content

Commit a59d9f8

Browse files
committed
Merge branch 'fix/fix_dependency_of_mcp23017' into 'master'
fix(expander): fix dependency issue of mcp23017 Closes AEGHB-1192 See merge request ae_group/esp-iot-solution!1361
2 parents a2c1d48 + b0a5fd2 commit a59d9f8

File tree

3 files changed

+13
-3
lines changed

3 files changed

+13
-3
lines changed

.gitlab/ci/build.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
.build_examples_template: &build_examples_template
1414
<<: *build_template
15-
allow_failure: true # Temporarily disable build CI check, remove this line to restore strict checking after issues are fixed
1615
artifacts:
1716
when: always
1817
paths:
@@ -403,6 +402,7 @@ build_example_display_lcd_hdmi_video_renderer:
403402
- IMAGE: espressif/idf:release-v5.4
404403
variables:
405404
EXAMPLE_DIR: examples/display/lcd/hdmi_video_renderer
405+
allow_failure: true # Temporarily disable build CI check, remove this line to restore strict checking after issues are fixed
406406

407407
build_example_display_lcd_lcd_layer_blending:
408408
extends:
@@ -942,6 +942,7 @@ build_example_usb_host_usb_cdc_4g_module:
942942
- .build_idf_version_greater_equal_v5_0
943943
variables:
944944
EXAMPLE_DIR: examples/usb/host/usb_cdc_4g_module
945+
allow_failure: true # Temporarily disable build CI check, remove this line to restore strict checking after issues are fixed
945946

946947
build_example_usb_host_usb_cdc_basic:
947948
extends:
@@ -1203,6 +1204,7 @@ build_components_display_lcd_esp_lcd_nv3052_test_apps:
12031204
- IMAGE: espressif/idf:release-v5.3
12041205
variables:
12051206
EXAMPLE_DIR: components/display/lcd/esp_lcd_nv3052/test_apps
1207+
allow_failure: true # Temporarily disable build CI check, remove this line to restore strict checking after issues are fixed
12061208

12071209
build_components_display_lcd_esp_lcd_sh8601_test_apps:
12081210
extends:

components/expander/io_expander/mcp23017/CHANGELOG.md

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

3+
## v0.1.1 - 2025-8-25
4+
5+
### Bug Fixes:
6+
7+
* Fix the dependency issue of the `i2c_bus` component.
8+
39
## v0.1.0 - 2025-1-6
410

511
### Enhancements:

components/expander/io_expander/mcp23017/idf_component.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
1-
version: "0.1.0"
1+
version: "0.1.1"
22
description: MCP23017 I/O Expander Driver
33
url: https://github.com/espressif/esp-iot-solution/tree/master/components/expander/io_expander/mcp23017
44
repository: https://github.com/espressif/esp-iot-solution.git
55
documentation: https://docs.espressif.com/projects/esp-iot-solution/en/latest/others/io_expander.html
66
issues: https://github.com/espressif/esp-iot-solution/issues
77

88
dependencies:
9-
espressif/i2c_bus: "1.1.*"
9+
i2c_bus:
10+
public: true
11+
override_path: "../../../i2c_bus"
1012
idf: ">=4.0"
1113
cmake_utilities: "0.*"
1214
sbom:

0 commit comments

Comments
 (0)