diff --git a/CHANGELOG.md b/CHANGELOG.md index 9b85553cb..f107a18af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,20 @@ # Changelog +## 5.6.0 + +| Type | Namespace | Description | Reference | Breaking | +|-------------|------------|----------------------------------------------------------------------------|--------------------------------------------------------|----------| +| Enhancement | `items` | ItemPersistence: Add medianSince, medianUntil and medianBetween methods | [#376](https://github.com/openhab/openhab-js/pull/376) | No | +| Enhancement | `rules` | Add offset & timeOnly to event information for DateTimeTrigger | [#379](https://github.com/openhab/openhab-js/pull/379) | No | +| Enhancement | `triggers` | Support offset param for DateTimeTrigger | [#380](https://github.com/openhab/openhab-js/pull/380) | No | +| Enhancement | `items` | ItemPersistence: Add toString overrides for PersistedState & PersistedItem | [#381](https://github.com/openhab/openhab-js/pull/381) | No | + +Please note that the signature of DateTimeTriggers has changed. +The old signature is still supported, but considered deprecated. +See the [openhab-js : triggers : DateTimeTrigger JSDoc](https://openhab.github.io/openhab-js/triggers.html#.DateTimeTrigger) for more information. + +Also see the [Release Milestone](https://github.com/openhab/openhab-js/milestone/33). + ## 5.5.0 | Type | Namespace | Description | Reference | Breaking | diff --git a/package-lock.json b/package-lock.json index fb8db9612..a6ac211d0 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "openhab", - "version": "5.5.0", + "version": "5.6.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "openhab", - "version": "5.5.0", + "version": "5.6.0", "license": "EPL-2.0", "dependencies": { "@js-joda/core": "^5.6.2", diff --git a/package.json b/package.json index e53fd9ff2..b678bfddd 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openhab", - "version": "5.5.0", + "version": "5.6.0", "description": "JavaScript Library for openHAB Automation", "private": false, "license": "EPL-2.0",