Skip to content

Commit ed8043b

Browse files
Bump io.karatelabs:karate-core from 1.5.0.RC3 to 1.5.0.RC4 (#512)
1 parent ea8f878 commit ed8043b

File tree

4 files changed

+32
-6
lines changed

4 files changed

+32
-6
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ of the tests from https://github.com/solid-contrib/specification-tests.
200200
```
201201
5. Perform the release (whilst avoiding deploying to a maven repository or re-running the tests):
202202
```shell
203-
./mvnw release:perform -Darguments="-Dmaven.deploy.skip=true -DskipTests -Dmaven.javadoc.skip=true"
203+
./mvnw release:perform -Darguments="-Dmaven.deploy.skip=true -DskipTests -Ddependency-check.skip -Dmaven.javadoc.skip=true"
204204
```
205205
6. Create the release in GitHub - [Create a new release](https://github.com/solid-contrib/conformance-test-harness/releases/new):
206206
* Choose the tag that was just created.

owasp-suppressions.xml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,30 @@
77
<packageUrl regex="true">^pkg:maven/org\.glassfish\.expressly/expressly@.*$</packageUrl>
88
<cve>CVE-2023-5763</cve>
99
</suppress>
10+
<suppress>
11+
<notes><![CDATA[
12+
False positive as per https://github.com/oracle/graal/issues/8204 - shaded jar
13+
]]></notes>
14+
<packageUrl regex="true">^pkg:maven/org\.graalvm\.shadowed/icu4j@.*$</packageUrl>
15+
<cve>CVE-2014-9654</cve>
16+
<cve>CVE-2014-9911</cve>
17+
<cve>CVE-2016-6293</cve>
18+
<cve>CVE-2016-7415</cve>
19+
<cve>CVE-2017-14952</cve>
20+
<cve>CVE-2017-17484</cve>
21+
<cve>CVE-2015-5922</cve>
22+
<cve>CVE-2020-10531</cve>
23+
<cve>CVE-2011-4599</cve>
24+
<cve>CVE-2014-7923</cve>
25+
<cve>CVE-2014-7926</cve>
26+
<cve>CVE-2014-7940</cve>
27+
<cve>CVE-2014-8146</cve>
28+
<cve>CVE-2014-8147</cve>
29+
<cve>CVE-2017-7867</cve>
30+
<cve>CVE-2017-7868</cve>
31+
<cve>CVE-2017-15396</cve>
32+
<cve>CVE-2017-15422</cve>
33+
<cve>CVE-2020-21913</cve>
34+
</suppress>
35+
1036
</suppressions>

pom.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
2222

2323
<!-- dependencies -->
24-
<quarkus.version>3.8.2</quarkus.version>
25-
<karate.version>1.5.0.RC3</karate.version>
26-
<graal.version>23.0.3</graal.version>
24+
<quarkus.version>3.9.3</quarkus.version>
25+
<karate.version>1.5.0.RC4</karate.version>
26+
<graal.version>24.0.0</graal.version>
2727
<quarkiverse.version>3.0.0</quarkiverse.version>
2828
<hamcrest.version>2.2</hamcrest.version>
2929
<rdf4j.version>4.3.11</rdf4j.version>
@@ -258,7 +258,7 @@
258258
</dependency>
259259
<dependency>
260260
<groupId>org.graalvm.js</groupId>
261-
<artifactId>js</artifactId>
261+
<artifactId>js-language</artifactId>
262262
<version>${graal.version}</version>
263263
<type>pom</type>
264264
<scope>runtime</scope>

src/test/java/org/solid/testharness/reporting/ReportGeneratorTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -218,7 +218,7 @@ void buildHtmlResultReportFile() throws IOException {
218218
when(results.getFeaturesTotal()).thenReturn(1);
219219
when(results.getScenariosPassed()).thenReturn(1);
220220
when(results.getScenariosFailed()).thenReturn(1);
221-
when(results.getRunScenariosTotal()).thenReturn(2);
221+
when(results.getScenariosTotal()).thenReturn(2);
222222
when(results.getEndTime()).thenReturn(Instant.now().toEpochMilli());
223223
reportGenerator.setStartTime(System.currentTimeMillis() - 1000);
224224
reportGenerator.setResults(new TestSuiteResults(results));

0 commit comments

Comments
 (0)