Skip to content

Commit

Permalink
v5.18.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Mar 5, 2024
1 parent 8da643f commit 609dc70
Show file tree
Hide file tree
Showing 7 changed files with 24 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .known_good_references
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/openhab-jruby/5.17
/openhab-jruby/5.18
/openhab-jruby/main
https://bundler.io/
https://bundler.io/guides/bundler_in_a_single_file_ruby_script.html
Expand Down
18 changes: 18 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,23 @@
# JRuby openHAB Scripting Change Log

## [v5.18.0](https://github.com/openhab/openhab-jruby/tree/v5.18.0) (2024-03-05)

### Features

- Infer id for rules created from UI by [@jimtng](https://github.com/jimtng) in [#250](https://github.com/openhab/openhab-jruby/pull/250)
- Add a descriptive label to changed duration trigger by [@jimtng](https://github.com/jimtng) in [#254](https://github.com/openhab/openhab-jruby/pull/254)
- TimeSeries#add: accept a Ruby String or a Numeric value by [@jimtng](https://github.com/jimtng) in [#259](https://github.com/openhab/openhab-jruby/pull/259)

### Bug Fixes

- Use lowercase in watch trigger label to be consistent with core by [@jimtng](https://github.com/jimtng) in [#255](https://github.com/openhab/openhab-jruby/pull/255)
- Update logger prefix if uid is set inside rule block by [@jimtng](https://github.com/jimtng) in [#252](https://github.com/openhab/openhab-jruby/pull/252)
- Rules Registry#remove should return nil on non-existent ruleuid by [@jimtng](https://github.com/jimtng) in [#251](https://github.com/openhab/openhab-jruby/pull/251)
- Tweak Rule ID inference to work with F7 router by [@jimtng](https://github.com/jimtng) in [#260](https://github.com/openhab/openhab-jruby/pull/260)
- Don't create rule with an explicit rule uid when it already exists by [@jimtng](https://github.com/jimtng) in [#253](https://github.com/openhab/openhab-jruby/pull/253)

**Full Changelog**: [v5.17.0...v5.18.0](https://github.com/openhab/openhab-jruby/compare/v5.17.0...v5.18.0)

## [v5.17.0](https://github.com/openhab/openhab-jruby/tree/v5.17.0) (2024-01-30)

### Features
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ GIT
PATH
remote: .
specs:
openhab-scripting (5.17.0)
openhab-scripting (5.18.0)
bundler (~> 2.2)
marcel (~> 1.0)
method_source (~> 1.0)
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.ruby-2.6.lock
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ GIT
PATH
remote: .
specs:
openhab-scripting (5.17.0)
openhab-scripting (5.18.0)
bundler (~> 2.2)
marcel (~> 1.0)
method_source (~> 1.0)
Expand Down
2 changes: 1 addition & 1 deletion lib/openhab/dsl/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@ module OpenHAB
module DSL
# Version of openHAB helper libraries
# @return [String]
VERSION = "5.17.0"
VERSION = "5.18.0"
end
end
2 changes: 1 addition & 1 deletion templates/default/fulldoc/html/js/app.js
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,7 @@ function enableHovers() {
}

function selectVersion() {
if (document.location.pathname.startsWith("/openhab-jruby/5.17/")) {
if (document.location.pathname.startsWith("/openhab-jruby/5.18/")) {
$(".version-button.stable").toggleClass("current");
} else if (document.location.pathname.startsWith("/docs/") ||
document.location.pathname.startsWith("/openhab-jruby/main/") ||
Expand Down
2 changes: 1 addition & 1 deletion templates/default/layout/html/versions.erb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<div class="page-versions">
<ul class="version-switcher">
<li><a href="/openhab-jruby/5.17" class="version-button stable">Stable <small>(5.17)</small></a></li>
<li><a href="/openhab-jruby/5.18" class="version-button stable">Stable <small>(5.18)</small></a></li>
<li><a href="/openhab-jruby/main" class="version-button main">Latest <small>(main)</small></a></li>
</ul>
<% archived_versions = %w[] %>
Expand Down

0 comments on commit 609dc70

Please sign in to comment.