zigbee-herdsman 3.5.0 → 3.5.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,12 @@
1
1
  version: 2
2
2
  updates:
3
- - package-ecosystem: 'github-actions'
4
- directory: '/'
3
+ - package-ecosystem: npm
4
+ directory: /
5
5
  schedule:
6
- interval: 'daily'
6
+ interval: weekly
7
+ groups:
8
+ minor-patch:
9
+ applies-to: version-updates
10
+ update-types:
11
+ - minor
12
+ - patch
@@ -1,3 +1,3 @@
1
1
  {
2
- ".": "3.5.0"
2
+ ".": "3.5.2"
3
3
  }
package/CHANGELOG.md CHANGED
@@ -1,5 +1,21 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.5.2](https://github.com/Koenkk/zigbee-herdsman/compare/v3.5.1...v3.5.2) (2025-04-17)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **ignore:** update dependencies ([#1388](https://github.com/Koenkk/zigbee-herdsman/issues/1388)) ([8d2da3a](https://github.com/Koenkk/zigbee-herdsman/commit/8d2da3abe61f5870d738dbe8eb8cf1b779be62d2))
9
+ * **ignore:** Update ZoH to v0.1.11 ([#1392](https://github.com/Koenkk/zigbee-herdsman/issues/1392)) ([e9b6bc9](https://github.com/Koenkk/zigbee-herdsman/commit/e9b6bc94a2a61c2e6baada629e006a2aa0776ac0))
10
+
11
+ ## [3.5.1](https://github.com/Koenkk/zigbee-herdsman/compare/v3.5.0...v3.5.1) (2025-04-06)
12
+
13
+
14
+ ### Bug Fixes
15
+
16
+ * **ignore:** update dependencies ([#1384](https://github.com/Koenkk/zigbee-herdsman/issues/1384)) ([9e92522](https://github.com/Koenkk/zigbee-herdsman/commit/9e92522ebbfc79006d04467133764d2667110326))
17
+ * Improve Green Power processing ([#1386](https://github.com/Koenkk/zigbee-herdsman/issues/1386)) ([573641b](https://github.com/Koenkk/zigbee-herdsman/commit/573641be043ba5cb4c7a4d14947f37b44a790f92))
18
+
3
19
  ## [3.5.0](https://github.com/Koenkk/zigbee-herdsman/compare/v3.4.11...v3.5.0) (2025-04-05)
4
20
 
5
21
 
@@ -6765,7 +6765,7 @@ class Ezsp extends node_events_1.default {
6765
6765
  gpdHeader.writeUInt8(gpdCommandId, 13);
6766
6766
  gpdHeader.writeUInt8(gpdCommandPayload.length, 14);
6767
6767
  const messageContents = Buffer.concat([gpdHeader, gpdCommandPayload]);
6768
- // XXX: BROADCAST currently hardcoded to match upstream codepath
6768
+ // use broadcast type to match upstream codepath that does not expect `gppNwkAddr` (this from direct-to-coordinator)
6769
6769
  this.emit('incomingMessage', enums_1.EmberIncomingMessageType.BROADCAST, apsFrame, gpdLink, addr.sourceId & 0xffff, messageContents);
6770
6770
  }
6771
6771
  /**