Skip to content

Commit

Permalink
v5.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Sep 8, 2023
1 parent 123eb88 commit 3ead09a
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 5 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.5
/openhab-jruby/5.6
/openhab-jruby/main
https://bundler.io/
https://bundler.io/guides/bundler_in_a_single_file_ruby_script.html
Expand Down
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,27 @@
# JRuby openHAB Scripting Change Log

## [v5.6.0](https://github.com/openhab/openhab-jruby/tree/v5.6.0) (2023-09-08)

[Full Changelog](https://github.com/openhab/openhab-jruby/compare/v5.5.0...v5.6.0)

### Features

- Add `thing` parameter for ItemBuilder [\#137](https://github.com/openhab/openhab-jruby/pull/137) ([jimtng](https://github.com/jimtng))
- Support providing and accessing context in rules [\#133](https://github.com/openhab/openhab-jruby/pull/133) ([jimtng](https://github.com/jimtng))
- Add event attributes for TimerEvent [\#131](https://github.com/openhab/openhab-jruby/pull/131) ([jimtng](https://github.com/jimtng))
- Use the default cron handler in openHAB 4 [\#128](https://github.com/openhab/openhab-jruby/pull/128) ([jimtng](https://github.com/jimtng))
- Add group function \#to\_s and \#inspect [\#127](https://github.com/openhab/openhab-jruby/pull/127) ([jimtng](https://github.com/jimtng))
- add item type predicates [\#125](https://github.com/openhab/openhab-jruby/pull/125) ([ccutrer](https://github.com/ccutrer))
- Add SemanticTag\#to\_s [\#120](https://github.com/openhab/openhab-jruby/pull/120) ([jimtng](https://github.com/jimtng))
- Don't tag `cron`, `every`, and `at` triggers with "Schedule" [\#111](https://github.com/openhab/openhab-jruby/pull/111) ([jimtng](https://github.com/jimtng))

### Bug Fixes

- Fix item builder's group COUNT function [\#126](https://github.com/openhab/openhab-jruby/pull/126) ([jimtng](https://github.com/jimtng))
- Fix Semantics::Tag\#to\_s [\#121](https://github.com/openhab/openhab-jruby/pull/121) ([jimtng](https://github.com/jimtng))
- Fix block passing in Hash\#delete\_if [\#116](https://github.com/openhab/openhab-jruby/pull/116) ([jimtng](https://github.com/jimtng))
- Add timeout during karaf boot process waits [\#95](https://github.com/openhab/openhab-jruby/pull/95) ([ccutrer](https://github.com/ccutrer))

## [v5.5.0](https://github.com/openhab/openhab-jruby/tree/v5.5.0) (2023-08-08)

[Full Changelog](https://github.com/openhab/openhab-jruby/compare/v5.4.2...v5.5.0)
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.5.0)
openhab-scripting (5.6.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.5.0"
VERSION = "5.6.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.5/")) {
if (document.location.pathname.startsWith("/openhab-jruby/5.6/")) {
$(".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.5" class="version-button stable">Stable <small>(5.5)</small></a></li>
<li><a href="/openhab-jruby/5.6" class="version-button stable">Stable <small>(5.6)</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 3ead09a

Please sign in to comment.