Upgrading to SDK v3
How to upgrade to SDK v3 introduced in Homey v5.0.0
Last updated
Was this helpful?
How to upgrade to SDK v3 introduced in Homey v5.0.0
Last updated
Was this helpful?
Homey 5.0.0 introduces a new SDK version. This SDK version removes the dual callback/promise support for API's and allows you to use async/await
everywhere you want/need to. We hope supporting asynchronous calls everywhere will make it easier to develop and maintain Homey apps.
You can start using SDK v3 simply by updating the sdk
property in your App Manifest from 2
to 3
. Since SDK v3 is introduced in Homey 5.0.0 the Homey compatibility
field in your App Manifest should be changed to >=5.0.0
.
With the introduction of a new SDK version we have discontinued the support for SDK version 1. Apps using SDK version 1 will be disabled starting with Homey 5.0.0.
Note that the SDK v2 versions of the Homey app libraries (homey-oauth2app
, homey-rfdriver
, homey-meshdriver
and homey-log
) are not compatible with SDK v3. Make sure to upgrade these libraries to versions that do support SDK v3. When using homey-meshdriver
for Zigbee or Z-Wave, please look at the specific sections for and .
require('homey')
to this.homey
In previous versions of the SDK you could access the Homey API through const Homey = require('homey')
. This is a very convenient way to give access to the managers anywhere it is needed however this prevents us from optimizing apps in the future as it pollutes the "global namespace". Therefore, the homey module now only exports the classes you might need such as Homey.App
, Homey.Driver
and Homey.Device
. The module also contains your environment variables through Homey.env
, and app manifest through Homey.manifest
. All managers (the API you use to interact with Homey) have moved to this.homey
, a property that is set on your App, Driver and Device instances. You can find the name of your manager in the Homey
instance documentation.
Additionally, it is no longer needed to create and register resources. For example previously you would write the following code:
In SDK v3 this turns into:
For the same reason we have moved away from "polluting the global namespace", we urge you to define all variables as properties on your App, Driver or Device instances. Your global scope (anything that isn't inside of a class) should only contain constants (their values shouldn't be changed). Relying on global state may cause issues for your app in the future.
In SDK v2 you might have implemented an onPair
method like this:
In SDK v3 this turns into:
In SDK v2 you might have implemented an onPairListDevices
method like this:
In SDK v3 this turns into:
In an app with an app.js
and two drivers (driver-one
and driver-two
both have a single device) the order of onInit
calls is now:
The capabilities alarm_contact
and alarm_motion
activated a zone when an alarm is triggered. As of Homey v5.0.0 it is possible to disable this behaviour by using the capability option zoneActivity
. This option accepts a boolean and defaults to true
. This makes it possible to disable zone activity for these capabilities.
All methods in the Custom pair and App settings views now support callbacks and promises. The guides have been updated to show the usage with promises but callbacks remain supported for now.
Since all APIs are now promise-only, the way to interact with a Z-Wave node from within your app is promise-only as well. For example, previously you could execute a command like this:
When using SDK version 3 this is no longer possible, and you should use promises only:
The behaviour of the zwave.associationGroups
driver property has changed in Homey v5.0.0 to be more predictable:
associationGroups: []
will now remove the default association group 1 (Z-Wave Plus lifeline)
Not specifying associationGroups
will now set the default association group 1 (Z-Wave Plus lifeline)
If you are updating your app you should make sure that drivers that either do not specify associationGroups
or that set associationGroups
to an empty array still behave correctly on Homey v5.0.0.
With Homey v5.0.0 comes a new and improved, built from scratch, Zigbee software stack. Zigbee apps developed for SDK version 2 will have to be updated to SDK version 3 in order to run on Homey v5.0.0 and higher.
In SDK v3 the default timezone (process.env.TZ
) will always be set to UTC
. In SDK v2, the timezone of an app would match the timezone the user set in their settings. This behaviour was confusing and could cause correct apps to have bugs when a user changes their timezone. To have more consistent and predictable behaviour all dates in SDK v3 apps will now default to UTC
.
Some examples of the code that is affected by this change are:
new Date('3/14/20')
Date.parse('3/14/20')
myDate.getHours()
myDate.setHours(12)
...
Here's a full example how to retrieve the current Homey's timezone, and log a localized time string.
ManagerCron has been removed. We advice you to use this.homey.setTimeout
, this.homey.clearTimeout
, this.homey.setInterval
and this.homey.clearInterval
instead. These are the same as the native variants, but will take care of clearing the timeouts/intervals themselves when the app gets removed. Alternatively you could use this.homey.on('unload', () => clearInterval(myInterval))
.
Since most apps supports custom Flow cards, below is an example of how to register and trigger Flow cards in SDK v3. See section for more details.
API routes now need to be defined in the App Manifest instead of the api.js
. Additionally since you can no longer gain access to the API through require-ing homey it is now passed as an argument to your API handler method. Read more about the Homey App Web API in the . Here is an example of the new structure for Homey App Web API's:
We simplified some APIs with the goal of making them more consistent. This is to say we removed Driver.getManifest()
and Device.getDriver()
in favour of using properties: and .
Additionally, the signature of has been changed to support destructuring: onSettings({ oldSettings, newSettings, changedKeys })
.
In previous versions of the Apps SDK many methods supported both callbacks and Promises. In version 3, the support for callbacks has been removed from all places that previously supported both. You can reference the to find the signature of all methods.
The argument that is passed to has been changed. Previously this argument was an EventEmitter
with an .on
method that would receive a callback as its last argument. In order to offer better support for promises this was changed to a PairSession
that has a .setHandler
method where it is possible to return a Promise.
This also affects . If you're app is overriding this method you can upgrade by removing the callback, making it async and returning the device list.
In SDK v2 your method would be executed after all managers where ready. Unfortunately this also meant that your Driver and Device onInit
methods where executed before your . This ordering was somewhat confusing so we changed the order in which we call the onInit
methods in SDK v3.
(driver-one
)
(driver-two
)
The consequence of this change is that in your you cannot access Drivers (this.homey.drivers.getDriver()
will throw an error). Instead of accessing Drivers from your App you can use to set up any data or classes that you might need in your application, then when your Driver or Device's onInit
methods are called you are able to access this data directly through this.homey.app
.
Additionally, the library is only compatible with SDK version 2. In order to create drivers for Z-Wave devices on Homey v5.0.0, a new (Z-Wave only) library has been made available for SDK version 3: . Breaking changes are kept to a minimum to reduce the amount of effort to implement over MeshDriver. The most important changes can be found in the .
Similar to Z-Wave, Zigbee will also come with a new (Zigbee-only) library to make developing Zigbee drivers a breeze: . The breaking changes are kept to a minimum to reduce the amount of effort to implement over MeshDriver. Take a look at the to find out about the most important changes.
Additionally, we created another library specifically for clusters: . It is implemented by and is the place where all the Zigbee clusters are defined. In the case you need to add new Zigbee clusters, update existing clusters or are looking at more advanced features such as implementing custom clusters, take a look at the .
The previously deprecated Image.format
, Image.getFormat()
, Image.getBuffer()
and Image.setBuffer()
APIs have been removed. More information can be found in the .