From 68d48b2c007ababe169df61dd81293c45190faaa Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sun, 8 Sep 2024 16:32:48 +0000 Subject: [PATCH] v5.27.0 --- .known_good_references | 2 +- CHANGELOG.md | 14 ++++++++++++++ Gemfile.lock | 2 +- Gemfile.ruby-2.6.lock | 2 +- lib/openhab/dsl/version.rb | 2 +- templates/default/fulldoc/html/js/app.js | 2 +- templates/default/layout/html/versions.erb | 2 +- 7 files changed, 20 insertions(+), 6 deletions(-) diff --git a/.known_good_references b/.known_good_references index 2addf4584..bd162a611 100644 --- a/.known_good_references +++ b/.known_good_references @@ -1,4 +1,4 @@ -/openhab-jruby/5.26 +/openhab-jruby/5.27 /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 5ac83952b..a7c1ef9a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,19 @@ # JRuby openHAB Scripting Change Log +## [v5.27.0](https://github.com/openhab/openhab-jruby/tree/v5.27.0) (2024-09-08) + +### Features + +- Support offset in `at` and `every :day, at:` triggers by [@jimtng](https://github.com/jimtng) in [#278](https://github.com/openhab/openhab-jruby/pull/278) +- Support space separator between date and time by [@jimtng](https://github.com/jimtng) in [#329](https://github.com/openhab/openhab-jruby/pull/329) + +### Bug Fixes + +- DateTimeType implements Java's Comparable in openHAB 4.3 by [@jimtng](https://github.com/jimtng) in [#328](https://github.com/openhab/openhab-jruby/pull/328) +- Sitemap updates not propagated to listeners by [@jimtng](https://github.com/jimtng) in [#327](https://github.com/openhab/openhab-jruby/pull/327) + +**Full Changelog**: [v5.26.0...v5.27.0](https://github.com/openhab/openhab-jruby/compare/v5.26.0...v5.27.0) + ## [v5.26.0](https://github.com/openhab/openhab-jruby/tree/v5.26.0) (2024-08-25) ### Features diff --git a/Gemfile.lock b/Gemfile.lock index d41ad0c4a..b6f1964ec 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -9,7 +9,7 @@ GIT PATH remote: . specs: - openhab-scripting (5.26.0) + openhab-scripting (5.27.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 1025909a6..4750cb21f 100644 --- a/Gemfile.ruby-2.6.lock +++ b/Gemfile.ruby-2.6.lock @@ -9,7 +9,7 @@ GIT PATH remote: . specs: - openhab-scripting (5.26.0) + openhab-scripting (5.27.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 168ee1402..668215ba4 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.26.0" + VERSION = "5.27.0" end end diff --git a/templates/default/fulldoc/html/js/app.js b/templates/default/fulldoc/html/js/app.js index 509c9aa9b..a31247afc 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.26/")) { + if (document.location.pathname.startsWith("/openhab-jruby/5.27/")) { $(".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 cd9817570..2a5236b39 100644 --- a/templates/default/layout/html/versions.erb +++ b/templates/default/layout/html/versions.erb @@ -1,6 +1,6 @@