Homebridge Airly 2 v0.2.0 - Security, Validation & Tests

A month after the last update, I’m releasing version 0.2.0 of the homebridge-airly2 plugin. This is the biggest update in years, focused on security, code quality, and stability. What’s New in v0.2.0? Security and Validation The previous version trusted configuration data without verification. Now all parameters are thoroughly validated: Geographic coordinate validation: // Latitude: -90 to 90 // Longitude: -180 to 180 if (latitude < -90 || latitude > 90) { throw new Error('Invalid latitude'); } MaxDistance validation: ...

December 25, 2025 · 2 min · Tomasz Wyderka