diff --git a/.known_good_references b/.known_good_references index 5eacbebab..466d9e174 100644 --- a/.known_good_references +++ b/.known_good_references @@ -1,4 +1,4 @@ -/openhab-jruby/5.31 +/openhab-jruby/5.32 /openhab-jruby/main https://bundler.io/ https://bundler.io/guides/bundler_in_a_single_file_ruby_script.html diff --git a/CHANGELOG.md b/CHANGELOG.md index d643404de..c1adbeace 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,25 @@ # JRuby openHAB Scripting Change Log +## [v5.32.0](https://github.com/openhab/openhab-jruby/tree/v5.32.0) (2024-11-25) + +### Features + +- alias GenericItem#category to GenericItem#icon by [@ccutrer](https://github.com/ccutrer) in [#350](https://github.com/openhab/openhab-jruby/pull/350) +- Add all state and command descriptions options to items builder by [@ccutrer](https://github.com/ccutrer) in [#351](https://github.com/openhab/openhab-jruby/pull/351) +- Add NumberItem#range by [@ccutrer](https://github.com/ccutrer) in [#352](https://github.com/openhab/openhab-jruby/pull/352) +- Add planckian helpers for HSBType by [@ccutrer](https://github.com/ccutrer) in [#353](https://github.com/openhab/openhab-jruby/pull/353) +- support sitemap colortemperaturepicker by [@ccutrer](https://github.com/ccutrer) in [#357](https://github.com/openhab/openhab-jruby/pull/357) + +### Bug Fixes + +- special case mired unit dimension inference in items builder by [@ccutrer](https://github.com/ccutrer) in [#349](https://github.com/openhab/openhab-jruby/pull/349) +- Fix logger error when no toplevel file is found by [@jimtng](https://github.com/jimtng) in [#348](https://github.com/openhab/openhab-jruby/pull/348) +- Use Units::MIRED instead of "mired" in HSBType by [@jimtng](https://github.com/jimtng) in [#360](https://github.com/openhab/openhab-jruby/pull/360) +- fix mired detection in OH 4.3 by [@ccutrer](https://github.com/ccutrer) in [#359](https://github.com/openhab/openhab-jruby/pull/359) +- fix race condition when using semantic methods by [@ccutrer](https://github.com/ccutrer) in [#356](https://github.com/openhab/openhab-jruby/pull/356) + +**Full Changelog**: [v5.31.0...v5.32.0](https://github.com/openhab/openhab-jruby/compare/v5.31.0...v5.32.0) + ## [v5.31.0](https://github.com/openhab/openhab-jruby/tree/v5.31.0) (2024-10-03) ### Features diff --git a/Gemfile.lock b/Gemfile.lock index 9e3f7d3bf..4c26b4788 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -9,7 +9,7 @@ GIT PATH remote: . specs: - openhab-scripting (5.31.0) + openhab-scripting (5.32.0) bundler (~> 2.2) marcel (~> 1.0) method_source (~> 1.0) diff --git a/Gemfile.ruby-2.6.lock b/Gemfile.ruby-2.6.lock index 5272d9e19..0b483511d 100644 --- a/Gemfile.ruby-2.6.lock +++ b/Gemfile.ruby-2.6.lock @@ -9,7 +9,7 @@ GIT PATH remote: . specs: - openhab-scripting (5.31.0) + openhab-scripting (5.32.0) bundler (~> 2.2) marcel (~> 1.0) method_source (~> 1.0) diff --git a/lib/openhab/dsl/version.rb b/lib/openhab/dsl/version.rb index 7437d8093..dd58cd011 100644 --- a/lib/openhab/dsl/version.rb +++ b/lib/openhab/dsl/version.rb @@ -4,6 +4,6 @@ module OpenHAB module DSL # Version of openHAB helper libraries # @return [String] - VERSION = "5.31.0" + VERSION = "5.32.0" end end diff --git a/templates/default/fulldoc/html/js/app.js b/templates/default/fulldoc/html/js/app.js index c00d3f0a9..98fcc066f 100644 --- a/templates/default/fulldoc/html/js/app.js +++ b/templates/default/fulldoc/html/js/app.js @@ -211,7 +211,7 @@ function enableHovers() { } function selectVersion() { - if (document.location.pathname.startsWith("/openhab-jruby/5.31/")) { + if (document.location.pathname.startsWith("/openhab-jruby/5.32/")) { $(".version-button.stable").toggleClass("current"); } else if (document.location.pathname.startsWith("/docs/") || document.location.pathname.startsWith("/openhab-jruby/main/") || diff --git a/templates/default/layout/html/versions.erb b/templates/default/layout/html/versions.erb index 3f8e38b8f..340dee8b2 100644 --- a/templates/default/layout/html/versions.erb +++ b/templates/default/layout/html/versions.erb @@ -1,6 +1,6 @@
<% archived_versions = %w[] %>