Skip to content

Commit efe3844

Browse files
committed
dependency review
1 parent cabf49b commit efe3844

File tree

4 files changed

+26
-3
lines changed

4 files changed

+26
-3
lines changed

CHANGELOG.md

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,20 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [2.8.13] - 2025-09-07
9+
10+
### Added
11+
12+
- #3084 - Add Scalar Support
13+
14+
### Changed
15+
16+
- Upgrade swagger-ui to v5.28.1
17+
18+
### Fixed
19+
20+
- #3076 - With oneOf the response schema contains an extra type: string
21+
822
## [2.8.12] - 2025-09-01
923

1024
### Changed

pom.xml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@
5656
</central-publishing-maven-plugin.version>
5757
<flatten-maven-plugin.version>1.5.0</flatten-maven-plugin.version>
5858
<swagger-api.version>2.2.36</swagger-api.version>
59-
<swagger-ui.version>5.28.0</swagger-ui.version>
59+
<swagger-ui.version>5.28.1</swagger-ui.version>
6060
<gmavenplus-plugin.version>1.13.1</gmavenplus-plugin.version>
6161
<jjwt.version>0.9.1</jjwt.version>
6262
<therapi-runtime-javadoc.version>0.15.0</therapi-runtime-javadoc.version>
@@ -105,6 +105,16 @@
105105
<artifactId>scalar</artifactId>
106106
<version>${scalar.version}</version>
107107
</dependency>
108+
<dependency>
109+
<groupId>com.github.therapi</groupId>
110+
<artifactId>therapi-runtime-javadoc</artifactId>
111+
<version>${therapi-runtime-javadoc.version}</version>
112+
</dependency>
113+
<dependency>
114+
<groupId>com.github.therapi</groupId>
115+
<artifactId>therapi-runtime-javadoc-scribe</artifactId>
116+
<version>${therapi-runtime-javadoc.version}</version>
117+
</dependency>
108118
</dependencies>
109119
</dependencyManagement>
110120
<dependencies>

springdoc-openapi-starter-common/pom.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,6 @@
4747
<dependency>
4848
<groupId>com.github.therapi</groupId>
4949
<artifactId>therapi-runtime-javadoc</artifactId>
50-
<version>${therapi-runtime-javadoc.version}</version>
5150
<optional>true</optional>
5251
</dependency>
5352
<!-- Spring Security -->

springdoc-openapi-starter-webmvc-scalar/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
</dependency>
2727
<dependency>
2828
<groupId>org.springframework.boot</groupId>
29-
<artifactId>spring-boot-starter-actuator</artifactId>
29+
<artifactId>spring-boot-actuator-autoconfigure</artifactId>
3030
<optional>true</optional>
3131
</dependency>
3232
<dependency>

0 commit comments

Comments
 (0)