From 84688442625a7503589a4fdd391edeed6aa66388 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 22 Jul 2024 00:13:16 +0000 Subject: [PATCH] v5.23.0 --- .known_good_references | 2 +- CHANGELOG.md | 18 ++++++++++++++++++ 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, 24 insertions(+), 6 deletions(-) diff --git a/.known_good_references b/.known_good_references index 5c81f45a1..181a8dc4e 100644 --- a/.known_good_references +++ b/.known_good_references @@ -1,4 +1,4 @@ -/openhab-jruby/5.22 +/openhab-jruby/5.23 /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 350d2dbf2..880de5b8a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,23 @@ # JRuby openHAB Scripting Change Log +## [v5.23.0](https://github.com/openhab/openhab-jruby/tree/v5.23.0) (2024-07-22) + +### Features + +- Notification: support Image item as attachment by [@jimtng](https://github.com/jimtng) in [#315](https://github.com/openhab/openhab-jruby/pull/315) +- Support attachment for `every` with dynamic datetime trigger by [@jimtng](https://github.com/jimtng) in [#307](https://github.com/openhab/openhab-jruby/pull/307) +- TimeSeries: add `#<<` convenience method and refactor with LazyArray by [@jimtng](https://github.com/jimtng) in [#313](https://github.com/openhab/openhab-jruby/pull/313) +- TimedCommand: support resuming and rescheduling timed commands by [@jimtng](https://github.com/jimtng) in [#312](https://github.com/openhab/openhab-jruby/pull/312) +- Sitemaps: support Button widgets inside buttongrids by [@jimtng](https://github.com/jimtng) in [#272](https://github.com/openhab/openhab-jruby/pull/272) +- Support `every` trigger with multiple days of week. by [@jimtng](https://github.com/jimtng) in [#309](https://github.com/openhab/openhab-jruby/pull/309) + +### Bug Fixes + +- Add `call_item?` predicate to GroupItem by [@jimtng](https://github.com/jimtng) in [#311](https://github.com/openhab/openhab-jruby/pull/311) +- Fix `every` day-of-week trigger by [@jimtng](https://github.com/jimtng) in [#308](https://github.com/openhab/openhab-jruby/pull/308) + +**Full Changelog**: [v5.22.1...v5.23.0](https://github.com/openhab/openhab-jruby/compare/v5.22.1...v5.23.0) + ## [v5.22.1](https://github.com/openhab/openhab-jruby/tree/v5.22.1) (2024-07-06) ### Bug Fixes diff --git a/Gemfile.lock b/Gemfile.lock index 2a01464da..e7bfd758c 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -9,7 +9,7 @@ GIT PATH remote: . specs: - openhab-scripting (5.22.1) + openhab-scripting (5.23.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 7f717b12f..a85c7781e 100644 --- a/Gemfile.ruby-2.6.lock +++ b/Gemfile.ruby-2.6.lock @@ -9,7 +9,7 @@ GIT PATH remote: . specs: - openhab-scripting (5.22.1) + openhab-scripting (5.23.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 836db6e53..0898d2d36 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.22.1" + VERSION = "5.23.0" end end diff --git a/templates/default/fulldoc/html/js/app.js b/templates/default/fulldoc/html/js/app.js index c3f976180..18c025540 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.22/")) { + if (document.location.pathname.startsWith("/openhab-jruby/5.23/")) { $(".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 9a699f92c..fe140b561 100644 --- a/templates/default/layout/html/versions.erb +++ b/templates/default/layout/html/versions.erb @@ -1,6 +1,6 @@
<% archived_versions = %w[] %>