Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
d5767f5
Bump actions/upload-artifact from 5.0.0 to 6.0.0
dependabot[bot] Jan 1, 2026
04a9d99
Bump mikepenz/action-junit-report from 6.0.1 to 6.1.0
dependabot[bot] Jan 1, 2026
2f37678
Bump spring-web-version from 7.0.1 to 7.0.2
dependabot[bot] Jan 1, 2026
c8d9c7b
Bump org.apache.logging.log4j:log4j-slf4j2-impl from 2.25.2 to 2.25.3
dependabot[bot] Jan 1, 2026
5cae3d5
Bump org.springframework.boot:spring-boot-starter-parent
dependabot[bot] Jan 1, 2026
5942f78
Bump ch.qos.logback:logback-classic from 1.5.21 to 1.5.23
dependabot[bot] Jan 1, 2026
ae8503e
Bump org.openapitools:openapi-generator-maven-plugin
dependabot[bot] Jan 1, 2026
bd341c1
Bump org.apache.httpcomponents.client5:httpclient5 from 5.5.1 to 5.6
dependabot[bot] Jan 1, 2026
9bb16c4
Bump NUnit3TestAdapter from 5.2.0 to 6.0.1
dependabot[bot] Jan 1, 2026
efd456a
Merge: Bump org.apache.httpcomponents.client5:httpclient5 from 5.5.1 …
javiertuya Jan 3, 2026
365ffad
Merge: Bump org.openapitools:openapi-generator-maven-plugin from 7.17…
javiertuya Jan 3, 2026
4518131
Merge: Bump ch.qos.logback:logback-classic from 1.5.21 to 1.5.23 [4/9]
javiertuya Jan 3, 2026
a75fb7e
Merge: Bump org.springframework.boot:spring-boot-starter-parent from …
javiertuya Jan 3, 2026
0d36f0c
Merge: Bump org.apache.logging.log4j:log4j-slf4j2-impl from 2.25.2 to…
javiertuya Jan 3, 2026
0234d29
Merge: Bump spring-web-version from 7.0.1 to 7.0.2 [7/9]
javiertuya Jan 3, 2026
b95faf9
Merge: Bump mikepenz/action-junit-report from 6.0.1 to 6.1.0 [8/9]
javiertuya Jan 3, 2026
6a419e2
Merge: Bump actions/upload-artifact from 5.0.0 to 6.0.0 [9/9]
javiertuya Jan 3, 2026
2505a7c
Combined dependency updates (2026-01-03)
javiertuya Jan 3, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,14 +65,14 @@ jobs:

- if: always()
name: Publish test report artifacts
uses: actions/upload-artifact@v5.0.0
uses: actions/upload-artifact@v6.0.0
with:
name: test-reports
path: ./**/target/surefire-reports/

- name: Publish test reports
if: always()
uses: mikepenz/action-junit-report@v6.0.1
uses: mikepenz/action-junit-report@v6.1.0
with:
check_name: test-report
report_paths: '**/target/surefire-reports/TEST-*.xml'
Expand Down
6 changes: 3 additions & 3 deletions client-httpclient/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<!--openapi client dependencies spring apache httpclient + jackson -->
<swagger-annotations-version>1.6.9</swagger-annotations-version>

<httpclient-version>5.5.1</httpclient-version>
<httpclient-version>5.6</httpclient-version>

<spring-web-version>5.3.19</spring-web-version>

Expand Down Expand Up @@ -115,7 +115,7 @@
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j2-impl</artifactId>
<version>2.25.2</version>
<version>2.25.3</version>
<scope>test</scope>
</dependency>

Expand All @@ -126,7 +126,7 @@
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>7.17.0</version>
<version>7.18.0</version>
<executions>
<execution>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion client-netcore/client-netcore/client-netcore.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<ItemGroup>
<PackageReference Include="NUnit" Version="4.4.0" />

<PackageReference Include="NUnit3TestAdapter" Version="5.2.0" />
<PackageReference Include="NUnit3TestAdapter" Version="6.0.1" />

<PackageReference Include="Microsoft.NET.Test.Sdk" Version="18.0.1" />
</ItemGroup>
Expand Down
2 changes: 1 addition & 1 deletion client-netcore/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>7.17.0</version>
<version>7.18.0</version>
<executions>
<execution>
<goals>
Expand Down
2 changes: 1 addition & 1 deletion client-netstandard/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>7.17.0</version>
<version>7.18.0</version>
<executions>
<execution>
<goals>
Expand Down
6 changes: 3 additions & 3 deletions client-resttemplate/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
<!--openapi client dependencies: spring resttemplate+jackson -->
<swagger-annotations-version>1.6.16</swagger-annotations-version>

<spring-web-version>7.0.1</spring-web-version>
<spring-web-version>7.0.2</spring-web-version>

<jackson-version>2.20.1</jackson-version>

Expand Down Expand Up @@ -113,7 +113,7 @@
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<version>1.5.21</version>
<version>1.5.23</version>
<scope>test</scope>
</dependency>
</dependencies>
Expand All @@ -124,7 +124,7 @@
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>7.17.0</version>
<version>7.18.0</version>
<executions>
<execution>
<goals>
Expand Down
4 changes: 2 additions & 2 deletions server-spring/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-parent</artifactId>
<version>4.0.0</version>
<version>4.0.1</version>
<!--relative path empty as this is a submodule, but spring starter needs to be the parent-->
<relativePath />
</parent>
Expand Down Expand Up @@ -96,7 +96,7 @@
<plugin>
<groupId>org.openapitools</groupId>
<artifactId>openapi-generator-maven-plugin</artifactId>
<version>7.17.0</version>
<version>7.18.0</version>
<executions>
<execution>
<goals>
Expand Down