Skip to content

Commit ae17900

Browse files
Sync csa branch with main (#881)
2 parents 96fdeea + bbdcd51 commit ae17900

File tree

256 files changed

+3019
-1462
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

256 files changed

+3019
-1462
lines changed

.github/workflows/examples-esp32.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
run: rm -rf out/esp32-m5stack-all-clusters-minimal examples/all-clusters-minimal-app/esp32/managed_components
106106

107107
- name: Check for changed paths
108-
uses: dorny/paths-filter@v3
108+
uses: dorny/paths-filter@v4
109109
id: changed_paths
110110
with:
111111
filters: |

.github/workflows/examples-nrfconnect.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
with:
5454
platform: nrfconnect
5555
- name: Detect changed paths
56-
uses: dorny/paths-filter@v3
56+
uses: dorny/paths-filter@v4
5757
id: changed_paths
5858
with:
5959
filters: |

.github/workflows/examples-nxp.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ jobs:
5656
extra-submodule-parameters: --recursive
5757

5858
- name: Detect changed paths
59-
uses: dorny/paths-filter@v3
59+
uses: dorny/paths-filter@v4
6060
id: changed_paths
6161
with:
6262
filters: |
@@ -163,7 +163,7 @@ jobs:
163163
with:
164164
platform: nxp
165165
- name: Detect changed paths
166-
uses: dorny/paths-filter@v3
166+
uses: dorny/paths-filter@v4
167167
id: changed_paths
168168
with:
169169
filters: |

.github/workflows/examples-realtek.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
extra-submodule-parameters: --recursive
5454

5555
- name: Detect changed paths
56-
uses: dorny/paths-filter@v3
56+
uses: dorny/paths-filter@v4
5757
id: changed_paths
5858
with:
5959
filters: |

.github/workflows/spell.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ jobs:
3434
steps:
3535
- name: Checkout
3636
uses: actions/checkout@v6
37-
- uses: rojopolis/spellcheck-github-actions@0.59.0
37+
- uses: rojopolis/spellcheck-github-actions@0.60.0

build/config/linux/pkg-config.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,7 @@ def GetPkgConfigPrefixToStrip(options, args):
107107
def MatchesAnyRegexp(flag, list_of_regexps):
108108
"""Returns true if the first argument matches any regular expression in the
109109
given list."""
110-
for regexp in list_of_regexps:
111-
if regexp.search(flag) is not None:
112-
return True
113-
return False
110+
return any(regexp.search(flag) is not None for regexp in list_of_regexps)
114111

115112

116113
def RewritePath(path, strip_prefix, sysroot):

credentials/generate_revocation_set.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -358,7 +358,7 @@ def fetch_crl_from_url(url: str, timeout: int) -> x509.CertificateRevocationList
358358
log.debug(f"Fetched CRL: {r.content}")
359359
return x509.load_der_x509_crl(r.content)
360360
except Exception as e:
361-
log.error('Failed to fetch a valid CRL', e)
361+
log.error("Failed to fetch a valid CRL: %s", e)
362362

363363

364364
class DclClientInterface:
@@ -439,7 +439,7 @@ def get_paa_cert(self, initial_cert: x509.Certificate) -> Optional[x509.Certific
439439
break
440440

441441
except Exception as e:
442-
log.error('Failed to get PAA certificate', e)
442+
log.error("Failed to get PAA certificate: %s", e)
443443
return None
444444
log.debug(f"issuer_name: {issuer_certificate.subject.rfc4514_string()}")
445445
issuer_name = issuer_certificate.issuer

examples/air-purifier-app/air-purifier-common/air-purifier-app.matter

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -738,6 +738,7 @@ cluster BasicInformation = 40 {
738738
readonly attribute optional ProductAppearanceStruct productAppearance = 20;
739739
readonly attribute optional int32u specificationVersion = 21;
740740
readonly attribute optional int16u maxPathsPerInvoke = 22;
741+
attribute access(write: administer) optional nullable LocationDescriptorStruct deviceLocation = 23;
741742
readonly attribute optional int32u configurationVersion = 24;
742743
readonly attribute command_id generatedCommandList[] = 65528;
743744
readonly attribute command_id acceptedCommandList[] = 65529;

examples/air-quality-sensor-app/air-quality-sensor-common/air-quality-sensor-app.matter

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -667,6 +667,7 @@ cluster BasicInformation = 40 {
667667
readonly attribute optional ProductAppearanceStruct productAppearance = 20;
668668
readonly attribute optional int32u specificationVersion = 21;
669669
readonly attribute optional int16u maxPathsPerInvoke = 22;
670+
attribute access(write: administer) optional nullable LocationDescriptorStruct deviceLocation = 23;
670671
readonly attribute optional int32u configurationVersion = 24;
671672
readonly attribute command_id generatedCommandList[] = 65528;
672673
readonly attribute command_id acceptedCommandList[] = 65529;

examples/air-quality-sensor-app/air-quality-sensor-common/icd-lit-air-quality-sensor-app.matter

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -667,6 +667,7 @@ cluster BasicInformation = 40 {
667667
readonly attribute optional ProductAppearanceStruct productAppearance = 20;
668668
readonly attribute optional int32u specificationVersion = 21;
669669
readonly attribute optional int16u maxPathsPerInvoke = 22;
670+
attribute access(write: administer) optional nullable LocationDescriptorStruct deviceLocation = 23;
670671
readonly attribute optional int32u configurationVersion = 24;
671672
readonly attribute command_id generatedCommandList[] = 65528;
672673
readonly attribute command_id acceptedCommandList[] = 65529;

0 commit comments

Comments
 (0)