Skip to content

Commit f479a38

Browse files
Upgrade Karaf from 4.4.6 to 4.4.7 (openhab#17515)
* Upgrade Karaf from 4.4.6 to 4.4.7 * Sync runtime dependencies with Karaf 4.4.7, most notably: * PaxWeb 8.0.30 * Jetty 9.4.57.v20241219 * BouncyCastle 1.78.1 * CXF 3.6.4 * Jackson 2.18.2 * JNA 5.16.0 * JAXB 2.3.9 * commons-io 2.17.0 * commons-lang3 3.17.0 * commons-logging 1.3.4 * ASM 9.7.1 * PaxLogging 2.2.8 * Resolve itest runbundles * Adapt to core change, xtext dependencies * gson 2.11.0 * guava 3.33.1 * ecj 3.39.0 * Fix newly introduced compilation and test issues in bindings Signed-off-by: Holger Friedrich <[email protected]>
1 parent 3457f50 commit f479a38

File tree

33 files changed

+316
-322
lines changed

33 files changed

+316
-322
lines changed

bundles/org.openhab.automation.jsscriptingnashorn/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
<properties>
1818
<bnd.importpackage>jdk.dynalink.*;resolution:=optional</bnd.importpackage>
19-
<asm.version>7.3.1</asm.version>
19+
<asm.version>9.7.1</asm.version>
2020
</properties>
2121

2222
<dependencies>

bundles/org.openhab.binding.airgradient/src/main/java/org/openhab/binding/airgradient/internal/communication/JsonParserHelper.java

+1-10
Original file line numberDiff line numberDiff line change
@@ -50,16 +50,7 @@ public static List<Measure> parseJson(Gson gson, String stringResponse) {
5050
}
5151

5252
if (measures != null) {
53-
List<@Nullable Measure> nullableMeasuresWithoutNulls = measures.stream().filter(Objects::nonNull).toList();
54-
List<Measure> measuresWithoutNulls = new ArrayList<>(nullableMeasuresWithoutNulls.size());
55-
for (@Nullable
56-
Measure m : nullableMeasuresWithoutNulls) {
57-
if (m != null) {
58-
measuresWithoutNulls.add(m);
59-
}
60-
}
61-
62-
return measuresWithoutNulls;
53+
return measures.stream().filter(Objects::nonNull).toList();
6354
}
6455

6556
return Collections.emptyList();

bundles/org.openhab.binding.amplipi/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<name>openHAB Add-ons :: Bundles :: AmpliPi Binding</name>
1616

1717
<properties>
18-
<cxf-version>3.6.2</cxf-version>
18+
<cxf-version>3.6.4</cxf-version>
1919
</properties>
2020

2121
<build>

bundles/org.openhab.binding.boschshc/src/test/java/org/openhab/binding/boschshc/internal/devices/bridge/BoschHttpClientTest.java

+4-3
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
*/
1313
package org.openhab.binding.boschshc.internal.devices.bridge;
1414

15+
import static org.hamcrest.MatcherAssert.assertThat;
16+
import static org.hamcrest.core.StringStartsWith.startsWith;
1517
import static org.junit.jupiter.api.Assertions.*;
1618
import static org.mockito.ArgumentMatchers.*;
1719
import static org.mockito.Mockito.*;
@@ -277,8 +279,7 @@ void sendRequestInvalidSyntaxInResponse()
277279
when(response.getContentAsString()).thenReturn("{\"@type\": \"JsonRestExceptionResponseEntity}");
278280
ExecutionException e = assertThrows(ExecutionException.class,
279281
() -> httpClient.sendRequest(request, SubscribeResult.class, sr -> false, null));
280-
assertEquals(
281-
"Received invalid content in response, expected type org.openhab.binding.boschshc.internal.devices.bridge.dto.SubscribeResult: com.google.gson.stream.MalformedJsonException: Unterminated string at line 1 column 44 path $.@type",
282-
e.getMessage());
282+
assertThat(e.getMessage(), startsWith(
283+
"Received invalid content in response, expected type org.openhab.binding.boschshc.internal.devices.bridge.dto.SubscribeResult:"));
283284
}
284285
}

bundles/org.openhab.binding.http/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<name>openHAB Add-ons :: Bundles :: HTTP Binding</name>
1616

1717
<properties>
18-
<jetty.version>9.4.55.v20240627</jetty.version>
18+
<jetty.version>9.4.57.v20241219</jetty.version>
1919
</properties>
2020

2121
<dependencies>

bundles/org.openhab.binding.ihc/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>commons-logging</groupId>
3232
<artifactId>commons-logging</artifactId>
33-
<version>1.2</version>
33+
<version>1.3.4</version>
3434
<scope>compile</scope>
3535
</dependency>
3636
</dependencies>

bundles/org.openhab.binding.ihc/src/main/feature/feature.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<feature>openhab-runtime-base</feature>
77
<bundle dependency="true">mvn:org.apache.httpcomponents/httpcore-osgi/4.4.10</bundle>
88
<bundle dependency="true">mvn:org.apache.httpcomponents/httpclient-osgi/4.5.8</bundle>
9-
<bundle dependency="true">mvn:commons-logging/commons-logging/1.2</bundle>
9+
<bundle dependency="true">mvn:commons-logging/commons-logging/1.3.4</bundle>
1010
<bundle start-level="80">mvn:org.openhab.addons.bundles/org.openhab.binding.ihc/${project.version}</bundle>
1111
</feature>
1212
</features>

bundles/org.openhab.binding.ipp/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@
4545
<dependency>
4646
<groupId>commons-io</groupId>
4747
<artifactId>commons-io</artifactId>
48-
<version>2.11.0</version>
48+
<version>2.17.0</version>
4949
<scope>compile</scope>
5050
</dependency>
5151
<dependency>

bundles/org.openhab.binding.logreader/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
<dependency>
4545
<groupId>commons-io</groupId>
4646
<artifactId>commons-io</artifactId>
47-
<version>2.11.0</version>
47+
<version>2.17.0</version>
4848
<scope>compile</scope>
4949
</dependency>
5050
</dependencies>

bundles/org.openhab.binding.mqtt.homeassistant/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>com.google.guava</groupId>
3232
<artifactId>guava</artifactId>
33-
<version>33.3.0-jre</version>
33+
<version>33.3.1-jre</version>
3434
<scope>test</scope>
3535
</dependency>
3636

bundles/org.openhab.binding.nikohomecontrol/src/main/java/org/openhab/binding/nikohomecontrol/internal/protocol/nhc2/NikoHomeControlCommunication2.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -716,9 +716,9 @@ private void updateThermostatState(NhcThermostat2 thermostat, List<NhcProperty>
716716
Optional<Integer> ambientTemperatureProperty = deviceProperties.stream().map(p -> p.ambientTemperature)
717717
.map(s -> (!((s == null) || s.isEmpty())) ? Math.round(Float.parseFloat(s) * 10) : null)
718718
.filter(Objects::nonNull).findFirst();
719-
Optional<@Nullable String> demandProperty = deviceProperties.stream().map(p -> p.demand)
720-
.filter(Objects::nonNull).findFirst();
721-
Optional<@Nullable String> operationModeProperty = deviceProperties.stream().map(p -> p.operationMode)
719+
Optional<String> demandProperty = deviceProperties.stream().map(p -> p.demand).filter(Objects::nonNull)
720+
.findFirst();
721+
Optional<String> operationModeProperty = deviceProperties.stream().map(p -> p.operationMode)
722722
.filter(Objects::nonNull).findFirst();
723723

724724
String modeString = deviceProperties.stream().map(p -> p.program).filter(Objects::nonNull).findFirst()

bundles/org.openhab.binding.zway/src/main/feature/feature.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<feature name="openhab-binding-zway" description="Z-Way Binding" version="${project.version}">
66
<feature>openhab-runtime-base</feature>
77
<feature dependency="true">openhab.tp-commons-net</feature>
8-
<bundle dependency="true">mvn:org.apache.commons/commons-lang3/3.4</bundle>
8+
<bundle dependency="true">mvn:org.apache.commons/commons-lang3/3.17.0</bundle>
99
<bundle start-level="80">mvn:org.openhab.addons.bundles/org.openhab.binding.zway/${project.version}</bundle>
1010
</feature>
1111
</features>

bundles/org.openhab.persistence.dynamodb/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
<dep.noembedding>netty-common,netty-transport,netty-transport-native-epoll,netty-transport-native-unix-common,netty-buffer,netty-resolver,netty-codec,netty-codec-http,netty-codec-http2,netty-handler</dep.noembedding>
2424
<!-- slf4j version matching the version specified in openhab-core/pom.xml -->
2525
<slf4j.version>1.7.32</slf4j.version>
26-
<jetty.version>9.4.54.v20240208</jetty.version>
26+
<jetty.version>9.4.57.v20241219</jetty.version>
2727
</properties>
2828

2929
<!--Custom repository for DynamoDBLocal -->

bundles/org.openhab.transform.jinja/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<dependency>
3131
<groupId>com.google.guava</groupId>
3232
<artifactId>guava</artifactId>
33-
<version>33.3.0-jre</version>
33+
<version>33.3.1-jre</version>
3434
<scope>test</scope>
3535
</dependency>
3636
<dependency>

bundles/org.openhab.voice.pollytts/src/main/feature/feature.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<bundle dependency="true">mvn:org.apache.httpcomponents/httpclient-osgi/4.5.13</bundle>
99
<bundle dependency="true">mvn:org.openhab.osgiify/com.amazonaws.aws-java-sdk-core/1.12.626</bundle>
1010
<bundle dependency="true">mvn:org.openhab.osgiify/com.amazonaws.aws-java-sdk-polly/1.12.626</bundle>
11-
<bundle dependency="true">mvn:commons-logging/commons-logging/1.2</bundle>
11+
<bundle dependency="true">mvn:commons-logging/commons-logging/1.3.4</bundle>
1212
<bundle dependency="true">mvn:joda-time/joda-time/2.8.1</bundle>
1313
<bundle start-level="80">mvn:org.openhab.addons.bundles/org.openhab.voice.pollytts/${project.version}</bundle>
1414
</feature>

itests/org.openhab.automation.groovyscripting.tests/itest.bndrun

+21-18
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ Fragment-Host: org.openhab.automation.groovyscripting
3535
tech.units.indriya;version='[2.2.0,2.2.1)',\
3636
uom-lib-common;version='[2.2.0,2.2.1)',\
3737
io.methvin.directory-watcher;version='[0.18.0,0.18.1)',\
38-
com.sun.xml.bind.jaxb-osgi;version='[2.3.8,2.3.9)',\
38+
com.sun.xml.bind.jaxb-osgi;version='[2.3.9,2.3.10)',\
3939
org.apache.felix.scr;version='[2.2.6,2.2.7)',\
4040
org.eclipse.equinox.event;version='[1.6.200,1.6.201)',\
4141
org.osgi.service.event;version='[1.4.1,1.4.2)',\
4242
org.osgi.util.promise;version='[1.3.0,1.3.1)',\
43-
com.google.gson;version='[2.10.1,2.10.2)',\
43+
com.google.gson;version='[2.11.0,2.11.1)',\
4444
junit-jupiter-api;version='[5.10.0,5.10.1)',\
4545
junit-jupiter-engine;version='[5.10.0,5.10.1)',\
4646
junit-platform-commons;version='[1.10.0,1.10.1)',\
@@ -49,26 +49,29 @@ Fragment-Host: org.openhab.automation.groovyscripting
4949
org.opentest4j;version='[1.3.0,1.3.1)',\
5050
ch.qos.logback.classic;version='[1.3.14,1.3.15)',\
5151
ch.qos.logback.core;version='[1.3.14,1.3.15)',\
52-
com.fasterxml.jackson.core.jackson-annotations;version='[2.17.1,2.17.2)',\
53-
org.yaml.snakeyaml;version='[2.2.0,2.2.1)',\
52+
com.fasterxml.jackson.core.jackson-annotations;version='[2.18.2,2.18.3)',\
53+
com.fasterxml.jackson.core.jackson-core;version='[2.18.2,2.18.3)',\
54+
com.fasterxml.jackson.core.jackson-databind;version='[2.18.2,2.18.3)',\
55+
com.fasterxml.jackson.dataformat.jackson-dataformat-yaml;version='[2.18.2,2.18.3)',\
56+
org.yaml.snakeyaml;version='[2.3.0,2.3.1)',\
5457
org.osgi.service.component.annotations;version='[1.5.1,1.5.2)',\
55-
com.fasterxml.jackson.dataformat.jackson-dataformat-xml;version='[2.17.1,2.17.2)',\
58+
com.fasterxml.jackson.dataformat.jackson-dataformat-xml;version='[2.18.2,2.18.3)',\
5659
org.threeten.extra;version='[1.8.0,1.8.1)',\
57-
com.sun.jna;version='[5.14.0,5.14.1)',\
60+
com.sun.jna;version='[5.16.0,5.16.1)',\
5861
org.apache.aries.spifly.dynamic.bundle;version='[1.3.7,1.3.8)',\
59-
org.eclipse.jetty.http;version='[9.4.54,9.4.55)',\
60-
org.eclipse.jetty.io;version='[9.4.54,9.4.55)',\
61-
org.eclipse.jetty.security;version='[9.4.54,9.4.55)',\
62-
org.eclipse.jetty.server;version='[9.4.54,9.4.55)',\
63-
org.eclipse.jetty.servlet;version='[9.4.54,9.4.55)',\
64-
org.eclipse.jetty.util;version='[9.4.54,9.4.55)',\
65-
org.eclipse.jetty.util.ajax;version='[9.4.54,9.4.55)',\
66-
org.objectweb.asm;version='[9.7.0,9.7.1)',\
62+
org.eclipse.jetty.http;version='[9.4.57,9.4.58)',\
63+
org.eclipse.jetty.io;version='[9.4.57,9.4.58)',\
64+
org.eclipse.jetty.security;version='[9.4.57,9.4.58)',\
65+
org.eclipse.jetty.server;version='[9.4.57,9.4.58)',\
66+
org.eclipse.jetty.servlet;version='[9.4.57,9.4.58)',\
67+
org.eclipse.jetty.util;version='[9.4.57,9.4.58)',\
68+
org.eclipse.jetty.util.ajax;version='[9.4.57,9.4.58)',\
69+
org.objectweb.asm;version='[9.7.1,9.7.2)',\
6770
org.objectweb.asm.commons;version='[9.6.0,9.6.1)',\
6871
org.objectweb.asm.tree;version='[9.6.0,9.6.1)',\
6972
org.objectweb.asm.tree.analysis;version='[9.6.0,9.6.1)',\
7073
org.objectweb.asm.util;version='[9.6.0,9.6.1)',\
71-
org.ops4j.pax.logging.pax-logging-api;version='[2.2.7,2.2.8)',\
74+
org.ops4j.pax.logging.pax-logging-api;version='[2.2.8,2.2.9)',\
7275
org.openhab.automation.groovyscripting;version='[5.0.0,5.0.1)',\
7376
org.openhab.automation.groovyscripting.tests;version='[5.0.0,5.0.1)',\
7477
org.openhab.core;version='[5.0.0,5.0.1)',\
@@ -82,9 +85,9 @@ Fragment-Host: org.openhab.automation.groovyscripting
8285
org.openhab.core.thing;version='[5.0.0,5.0.1)',\
8386
org.openhab.core.transform;version='[5.0.0,5.0.1)',\
8487
stax2-api;version='[4.2.2,4.2.3)',\
85-
com.fasterxml.jackson.core.jackson-core;version='[2.17.2,2.17.3)',\
86-
com.fasterxml.jackson.core.jackson-databind;version='[2.17.2,2.17.3)',\
87-
com.fasterxml.jackson.dataformat.jackson-dataformat-yaml;version='[2.17.2,2.17.3)',\
88+
com.fasterxml.jackson.core.jackson-core;version='[2.18.2,2.18.3)',\
89+
com.fasterxml.jackson.core.jackson-databind;version='[2.18.2,2.18.3)',\
90+
com.fasterxml.jackson.dataformat.jackson-dataformat-yaml;version='[2.18.2,2.18.3)',\
8891
biz.aQute.tester.junit-platform;version='[7.1.0,7.1.1)',\
8992
org.osgi.service.cm;version='[1.6.0,1.6.1)',\
9093
de.focus_shift.jollyday-core;version='[1.4.0,1.4.1)',\

itests/org.openhab.automation.jsscriptingnashorn.tests/itest.bndrun

+16-16
Original file line numberDiff line numberDiff line change
@@ -35,12 +35,12 @@ Fragment-Host: org.openhab.automation.jsscriptingnashorn
3535
tech.units.indriya;version='[2.2.0,2.2.1)',\
3636
uom-lib-common;version='[2.2.0,2.2.1)',\
3737
io.methvin.directory-watcher;version='[0.18.0,0.18.1)',\
38-
com.sun.xml.bind.jaxb-osgi;version='[2.3.8,2.3.9)',\
38+
com.sun.xml.bind.jaxb-osgi;version='[2.3.9,2.3.10)',\
3939
org.apache.felix.scr;version='[2.2.6,2.2.7)',\
4040
org.eclipse.equinox.event;version='[1.6.200,1.6.201)',\
4141
org.osgi.service.event;version='[1.4.1,1.4.2)',\
4242
org.osgi.util.promise;version='[1.3.0,1.3.1)',\
43-
com.google.gson;version='[2.10.1,2.10.2)',\
43+
com.google.gson;version='[2.11.0,2.11.1)',\
4444
junit-jupiter-api;version='[5.10.0,5.10.1)',\
4545
junit-jupiter-engine;version='[5.10.0,5.10.1)',\
4646
junit-platform-commons;version='[1.10.0,1.10.1)',\
@@ -50,26 +50,26 @@ Fragment-Host: org.openhab.automation.jsscriptingnashorn
5050
ch.qos.logback.classic;version='[1.3.14,1.3.15)',\
5151
ch.qos.logback.core;version='[1.3.14,1.3.15)',\
5252
org.osgi.service.component.annotations;version='[1.5.1,1.5.2)',\
53-
com.fasterxml.jackson.core.jackson-annotations;version='[2.17.1,2.17.2)',\
54-
com.fasterxml.jackson.core.jackson-core;version='[2.17.1,2.17.2)',\
55-
com.fasterxml.jackson.core.jackson-databind;version='[2.17.1,2.17.2)',\
56-
com.fasterxml.jackson.dataformat.jackson-dataformat-xml;version='[2.17.1,2.17.2)',\
53+
com.fasterxml.jackson.core.jackson-annotations;version='[2.18.2,2.18.3)',\
54+
com.fasterxml.jackson.core.jackson-core;version='[2.18.2,2.18.3)',\
55+
com.fasterxml.jackson.core.jackson-databind;version='[2.18.2,2.18.3)',\
56+
com.fasterxml.jackson.dataformat.jackson-dataformat-xml;version='[2.18.2,2.18.3)',\
5757
org.threeten.extra;version='[1.8.0,1.8.1)',\
58-
com.sun.jna;version='[5.14.0,5.14.1)',\
58+
com.sun.jna;version='[5.16.0,5.16.1)',\
5959
org.apache.aries.spifly.dynamic.bundle;version='[1.3.7,1.3.8)',\
60-
org.eclipse.jetty.http;version='[9.4.54,9.4.55)',\
61-
org.eclipse.jetty.io;version='[9.4.54,9.4.55)',\
62-
org.eclipse.jetty.security;version='[9.4.54,9.4.55)',\
63-
org.eclipse.jetty.server;version='[9.4.54,9.4.55)',\
64-
org.eclipse.jetty.servlet;version='[9.4.54,9.4.55)',\
65-
org.eclipse.jetty.util;version='[9.4.54,9.4.55)',\
66-
org.eclipse.jetty.util.ajax;version='[9.4.54,9.4.55)',\
67-
org.objectweb.asm;version='[9.7.0,9.7.1)',\
60+
org.eclipse.jetty.http;version='[9.4.57,9.4.58)',\
61+
org.eclipse.jetty.io;version='[9.4.57,9.4.58)',\
62+
org.eclipse.jetty.security;version='[9.4.57,9.4.58)',\
63+
org.eclipse.jetty.server;version='[9.4.57,9.4.58)',\
64+
org.eclipse.jetty.servlet;version='[9.4.57,9.4.58)',\
65+
org.eclipse.jetty.util;version='[9.4.57,9.4.58)',\
66+
org.eclipse.jetty.util.ajax;version='[9.4.57,9.4.58)',\
67+
org.objectweb.asm;version='[9.7.1,9.7.2)',\
6868
org.objectweb.asm.commons;version='[9.6.0,9.6.1)',\
6969
org.objectweb.asm.tree;version='[9.6.0,9.6.1)',\
7070
org.objectweb.asm.tree.analysis;version='[9.6.0,9.6.1)',\
7171
org.objectweb.asm.util;version='[9.6.0,9.6.1)',\
72-
org.ops4j.pax.logging.pax-logging-api;version='[2.2.7,2.2.8)',\
72+
org.ops4j.pax.logging.pax-logging-api;version='[2.2.8,2.2.9)',\
7373
org.openhab.automation.jsscriptingnashorn;version='[5.0.0,5.0.1)',\
7474
org.openhab.automation.jsscriptingnashorn.tests;version='[5.0.0,5.0.1)',\
7575
org.openhab.core;version='[5.0.0,5.0.1)',\

itests/org.openhab.binding.astro.tests/itest.bndrun

+12-12
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ Fragment-Host: org.openhab.binding.astro
3030
tech.units.indriya;version='[2.2.0,2.2.1)',\
3131
uom-lib-common;version='[2.2.0,2.2.1)',\
3232
io.methvin.directory-watcher;version='[0.18.0,0.18.1)',\
33-
com.sun.xml.bind.jaxb-osgi;version='[2.3.8,2.3.9)',\
33+
com.sun.xml.bind.jaxb-osgi;version='[2.3.9,2.3.10)',\
3434
org.apache.felix.scr;version='[2.2.6,2.2.7)',\
3535
org.eclipse.equinox.event;version='[1.6.200,1.6.201)',\
3636
org.osgi.service.event;version='[1.4.1,1.4.2)',\
3737
org.osgi.util.promise;version='[1.3.0,1.3.1)',\
38-
com.google.gson;version='[2.10.1,2.10.2)',\
38+
com.google.gson;version='[2.11.0,2.11.1)',\
3939
junit-jupiter-api;version='[5.10.0,5.10.1)',\
4040
junit-jupiter-engine;version='[5.10.0,5.10.1)',\
4141
junit-jupiter-params;version='[5.10.0,5.10.1)',\
@@ -44,8 +44,8 @@ Fragment-Host: org.openhab.binding.astro
4444
junit-platform-launcher;version='[1.10.0,1.10.1)',\
4545
org.opentest4j;version='[1.3.0,1.3.1)',\
4646
org.osgi.service.component.annotations;version='[1.5.1,1.5.2)',\
47-
com.sun.jna;version='[5.14.0,5.14.1)',\
48-
org.ops4j.pax.logging.pax-logging-api;version='[2.2.7,2.2.8)',\
47+
com.sun.jna;version='[5.16.0,5.16.1)',\
48+
org.ops4j.pax.logging.pax-logging-api;version='[2.2.8,2.2.9)',\
4949
org.openhab.binding.astro;version='[5.0.0,5.0.1)',\
5050
org.openhab.binding.astro.tests;version='[5.0.0,5.0.1)',\
5151
org.openhab.core;version='[5.0.0,5.0.1)',\
@@ -60,15 +60,15 @@ Fragment-Host: org.openhab.binding.astro
6060
ch.qos.logback.core;version='[1.3.14,1.3.15)',\
6161
org.apache.aries.spifly.dynamic.bundle;version='[1.3.7,1.3.8)',\
6262
org.apache.felix.http.servlet-api;version='[1.2.0,1.2.1)',\
63-
org.eclipse.jetty.http;version='[9.4.54,9.4.55)',\
64-
org.eclipse.jetty.io;version='[9.4.54,9.4.55)',\
65-
org.eclipse.jetty.security;version='[9.4.54,9.4.55)',\
66-
org.eclipse.jetty.server;version='[9.4.54,9.4.55)',\
67-
org.eclipse.jetty.servlet;version='[9.4.54,9.4.55)',\
68-
org.eclipse.jetty.util;version='[9.4.54,9.4.55)',\
69-
org.eclipse.jetty.util.ajax;version='[9.4.54,9.4.55)',\
63+
org.eclipse.jetty.http;version='[9.4.57,9.4.58)',\
64+
org.eclipse.jetty.io;version='[9.4.57,9.4.58)',\
65+
org.eclipse.jetty.security;version='[9.4.57,9.4.58)',\
66+
org.eclipse.jetty.server;version='[9.4.57,9.4.58)',\
67+
org.eclipse.jetty.servlet;version='[9.4.57,9.4.58)',\
68+
org.eclipse.jetty.util;version='[9.4.57,9.4.58)',\
69+
org.eclipse.jetty.util.ajax;version='[9.4.57,9.4.58)',\
7070
org.hamcrest;version='[2.2.0,2.2.1)',\
71-
org.objectweb.asm;version='[9.7.0,9.7.1)',\
71+
org.objectweb.asm;version='[9.7.1,9.7.2)',\
7272
org.objectweb.asm.commons;version='[9.6.0,9.6.1)',\
7373
org.objectweb.asm.tree;version='[9.6.0,9.6.1)',\
7474
org.objectweb.asm.tree.analysis;version='[9.6.0,9.6.1)',\

0 commit comments

Comments
 (0)