Skip to content

Releases: homebridge/homebridge

v1.1.2 (2020-08-12)

12 Aug 13:29
c6ce245
Compare
Choose a tag to compare

Bug Fixes

  • #2646 - Fixed an issue with scoped plugin registration / cached accessory restoration.

The Homebridge team has released the official Homebridge Raspberry Pi Image.

v1.1.1 (2020-06-17)

17 Jun 14:21
0849c77
Compare
Choose a tag to compare

Bug Fixes


The Homebridge team has released the official Homebridge Raspberry Pi Image.

v1.1.0 (2020-05-17)

17 May 10:09
25ec050
Compare
Choose a tag to compare

Reminder: Node.js v10.17.0 or later is required to run Homebridge.

Update: Node.js v11.0.0 and v11.1.0 are no longer supported due to the lack of chacha20-poly1305 support.

Notable Changes

  • Bumped API version to 2.6 with the following changes:
    • AccessoryPlugins and Accessory objects returned by StaticPlatformPlugins can now define the optional
      getControllers method to configure controllers like the RemoteController or CameraController
  • Updated HAP-Nodejs to v0.7.3.

Bug Fixes

  • #2551 Fixed a breaking change to the identify event on PlatformAccessory.

For Developers

Plugins Using TypeScript: Homebridge now only exports types that are safe to use in your code and won't result in the homebridge library being a runtime dependency. If you have been using types correctly then you will not be impacted by this change.


The Homebridge team has released the official Homebridge Raspberry Pi Image.

v1.0.4 (2020-04-30)

30 Apr 15:03
Compare
Choose a tag to compare

Bug Fixes

  • Fixed a crash that could occur if a plugin called updateReachability before the accessory was added to the bridge (homebridge-plugins/homebridge-arlo#40 (comment))
  • Fixed a crash that could occur while pairing when running plugins (like homebridge-nest) which register a AccessoryInformation service that already has added a Identify listener of HAP-NodeJS (#2548)
  • Fixed mdns advertising to include all (and only) reachable addresses for the given machine

v1.0.3 (2020-04-29)

28 Apr 21:33
Compare
Choose a tag to compare

Bug Fixes

  • Some users were seemingly unable to pair new homebridge instances or encountered "no response" for all of their accessories if plugins chose to supply an empty serial number for their accessory information. This is now resolved.
  • Added a check that plugins can't expose a accessory with an empty set of services (which would also cause HomeKit reject the accessory)

v1.0.2 (2020-04-28)

28 Apr 00:50
2e1ecf2
Compare
Choose a tag to compare

Bug Fixes

  • #2527 Improve cached accessory resolution.
  • #2528 Removing orphaned cached accessories is now the default behavior.
    • The -R flag was deprecated. A new -K/--keep-orphans flag was introduced to disable this behavior.

v1.0.1 (2020-04-27)

27 Apr 12:51
3e35b91
Compare
Choose a tag to compare

Notable Changes

  • #2522 Allow plugins that have strict Homebridge version requirements to still load, instead an error message will be posted in the Homebridge logs letting users know they may face issues using the current version of the plugin.

v1.0.0 (2020-04-27)

27 Apr 01:33
34f18ff
Compare
Choose a tag to compare

In addition to numerous stability and plugin API improvements, this release includes a major update to the HAP-NodeJS dependency which adds support for new accessory types and now adheres more to the official Apple HAP spec.

Breaking Changes

  • The minimum Node.js version required is now v10.17.0.
  • Important notice: The update to the underlying HAP-NodeJS library brings many fixes to the HomeKit Accessory Protocol. One of those is the permission management of people you may have added to your Home. It is strongly recommended that you remove every person added to your Home and then invite them back into your home. This will ensure that permissions for all people in your home are downgraded correctly.
  • #2481 - Platforms will no longer load unless they have been explicitly configured in the config.json
  • #2482 - Dropped support for the BridgeSetupManager

The following plugins are known to require updating to their latest version to remain compatible with Homebridge v1.0.0:

  • homebridge-alexa
  • homebridge-gsh
  • homebridge-hue
  • homebridge-ws
  • homebridge-zp
  • homebridge-rpi
  • homebridge-fritz

If you encounter any issues in v1.0.0 you can rollback to v0.4.53 using this command:

sudo npm install -g --unsafe-perm homebridge@0.4.53

Notable Changes

  • #2476 - Project converted to Typescript by @Supereg
  • Homebridge API version was bumped to 2.5 with the following additions:
    • The signatures of registerAccessory and registerPlatform have been adjusted. The plugin name, which was passed as the first argument, can now be left out and will be determined automatically by homebridge.
    • The PlatformAccessory class received a new method configureController which can be used to access the new Controller API (used for Apple TV Remotes and Cameras) introduced with HAP-NodeJS 0.6.0
    • Cameras can now be added to the bridge using a DynamicPlatformPlugin and the methods configureCameraSource or configureController of the PlatformAccessory (removing the need to create an external accessory)
    • The hidden service and primary service properties are now properly restored for cached accessories
  • #2391 - HAP-NodeJS
    updated to 0.6.0 with some changes highlighted here:
    • HAP-NodeJS was converted to Typescript as well (thanks to @hassankhan)
    • Support for exposing Cameras through a Bridge was added
    • Support for Apple TV Remotes (with and without Siri Voice transmission) using the new RemoteController API
    • Introduction of the new CameraController API which improves on the existing API and opens the way for a possible future introduction of an API for HomeKit Secure Video
    • Introduced new APIs to mark a service as primary service
    • Added new characteristic property adminOnlyAccess to limit certain access rights to the home-owner
    • Added new services and characteristics for:
      • HomeKit Routers (WiFiRouter and WiFiSatellite services)
      • HomeKit Secure Video (CameraOperatingMode and CameraEventRecordingManagement services)
      • AccessControl service
      • SmartSpeaker service
      • PowerManagement service
      • TransferTransportManagement service
    • Updated to HAP Protocol Version 1.1.0:
      • Support of the HomeKit Data Stream (HDS) protocol (used by Remotes and Secure Video)
      • Support for Timed Writes and Write Responses
    • Fixed a bug in the encryption layer, which would sometimes encrypt events in the wrong order causing corrupted responses.
      This issue typically affected service which expose their state using 'target' characteristics
      and 'current' characteristics like Doors, Locks and Windows.
    • Improved HAP specification compatibility, while noting the following changes affecting compatibility:
      • For /characteristics PUT request the HAP server will return 204 No Content if all characteristic writes succeeded and 207 Multi-Status if at least one write failed or when a write-response is delivered.
      • For /characteristics GET request the HAP server will return 200 Success if all characteristic reads succeeded and 207 Multi-Status if at least one write failed.
      • The HAP server will now return short UUIDs for Apple predefined services and characteristics for the /accessories route.
    • Many, many more bug fixes and improvements.

Other Changes

  • Homebridge now exports TypeScript types that can be used in the development of plugins.

The Homebridge team has released the official Homebridge Raspberry Pi Image.

v0.4.53 (2020-03-18)

18 Mar 10:03
9c022d0
Compare
Choose a tag to compare

Notable Changes

  • Added the ability to use scoped npm modules as Homebridge plugins. This means plugin developers can now publish Homebridge plugins to npm under their own user or npm organisation, such as @username/homebridge-plugin.

Homebridge has launched an official Discord channel!

Homebridge Discord