Skip to content

Tags: zigpy/zigpy

Tags

1.2.2

Toggle 1.2.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Shorten `OtaImageWithMetadata` repr to avoid logging fw bytes (#1807)

1.2.1

Toggle 1.2.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix Identify `EffectIdentifier.Channel_change` (#1800)

1.2.0

Toggle 1.2.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Move unsupported attribute marking to event handler (#1796)

1.1.1

Toggle 1.1.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Allow quirk loading to fail (#1784)

1.1.0

Toggle 1.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Bump zigpy-ota schema to v2 (#1782)

1.0.0

Toggle 1.0.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Drop pysqlite3-binary in favor of distribution sqlite (#1772)

Co-authored-by: Copilot <[email protected]>

0.92.0

Toggle 0.92.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Make `update_attribute` manufacturer code aware (#1760)

* Make `update_attribute` manufacturer code aware

* Add test for manufacturer code `update_attribute` handling

* Remove legacy cache fallback in `_legacy_apply_quirk_attribute_update`

* Adjust comments

* Use `mock_attribute_report` in test

* Mark attribute as unsupported initially

0.91.5

Toggle 0.91.5's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Fix interaction between `is_manufacturer_specific` and `manufacturer_…

…id_override` (#1758)

* Only apply cluster-level `manufacturer_id_override` if the definition asks

* Fix `find_attribute` and add tests

* Update invalid comment and replace with explicit test

* One more explicit test for `is_manufacturer_specific=False` hint

* Typo

* Test commands as well, for coverage

* Skip registry for subclassed `Basic` cluster

* Use correct range for ZCL command IDs

0.91.4

Toggle 0.91.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Allow attribute writes to skip updating cache or emitting events (#1757)

* Add `update_cache` to suppress attribute writing events

* Update typing for `update_attribute`

* Add a test

* Reduce indentation

* Thoroughly test

0.91.3

Toggle 0.91.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
Correctly handle `manufacturer_code=None` for attributes and commands (

…#1756)

* Correctly handle `manufacturer_code` being `None` vs `UNDEFINED`

* Convert `UNDEFINED` to `None` when storing in cache

* Fix tests

* Add an explicit test for the Sonoff situation

* Drop `_get_effective_manufacturer_code` manufacturer kwarg in appdb

* Address review comments