openhab-core
openhab-core copied to clipboard
Core framework of openHAB
Translate backslash sequences in requestPlain. See [String.translateEscapes().](https://docs.oracle.com/javase/specs/jls/se15/html/jls-3.html#jls-3.10.7) See discussion in openhab/openhab-addons#16768 @jlaur @mlobstein Would you like to test if this works out?
Bumps [org.bouncycastle:bcpkix-jdk18on](https://github.com/bcgit/bc-java) from 1.76 to 1.78. Changelog Sourced from org.bouncycastle:bcpkix-jdk18on's changelog. 2.1.1 Version Date: 2024, TBD. 2.2.1 Version Date: 2024, 18th April. 2.3.1 Version Release: 1.78 Date: 2024, 7th April....
My environment: * Raspberry Pi-5 with OS 64-bit * Java 17 Zulu * OpenHAB 4.1.2 ``` $ uname -a Linux smarthome 6.6.30-v8+ #1763 SMP PREEMPT Mon May 13 17:50:31 BST...
In a file based rule I have ``` rule "System started" when System reached start level 100 then getActions("mqtt", "mqtt:broker:b1").publishMQTT("a/rpc", "abc") end ``` Once the device receives the request at...
As far as I understand, the current HTTP authentication only allows username/password pair. However, we have a case that instead of giving user the username/password, we give them API tokens...
I am running openHAB 3.4.0 in a Docker container on my Synology NAS, a DS420+ with DSM 7.1.1-42962 Update 1. My timezone is GMT+1 (Vienna). Time and timezone on the...
## Expected Behavior ```java public class EnergyPrice implements javax.measure.Quantity { /* Quantities of €/MWh or c/kWh */ } public class ElectricityPrice extends BaseThingHandler { public void handleUpdate() { updateState("channel", new...
This test failed in a macOS GHA build: https://github.com/wborn/openhab-core/actions/runs/4523616789/jobs/7966877526 ``` [ERROR] Tests run: 12, Failures: 1, Errors: 0, Skipped: 0, Time elapsed: 46.204 s
Recent Maven versions log warnings when using deprecated features. --- When the Karaf Maven plug-in is used many of these warnings show up: `[WARNING] Parameter 'localRepository' is deprecated core expression;...
In openHAB 3.4.4 I create a file under /etc/openhab/rules with this content: ``` var seven = 7 var func = [| logDebug('log1', 'A' + seven + 'B') ] rule "ABC"...