Skip to content

Commit a5bda38

Browse files
authored
feat(okhttp): update okhttp to 5.3.2
1 parent 3fd9864 commit a5bda38

File tree

3 files changed

+12
-1
lines changed

3 files changed

+12
-1
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
* Fix #7415: (java-generator) Fix generic type erasure for array of enums with default values
1111

1212
#### Improvements
13+
* Fix #7422: bump okhttp from 4.12.0 to 5.3.2
1314

1415
#### Dependency Upgrade
1516

@@ -18,6 +19,7 @@
1819
* Fix #7174: Added Vert.x 5 HTTP client implementation with improved async handling and WebSocket separation
1920

2021
#### _**Note**_: Breaking changes
22+
* Fix #7422: bump okhttp from 4.12.0 to 5.3.2. The versions are binary compatible, but the major version upgrade might cause side effects.
2123

2224
#### _**Note**_: Vert.x HTTP Client Compatibility (Issue #7174)
2325

kubernetes-examples/pom.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,10 @@
5151
<groupId>com.squareup.okhttp3</groupId>
5252
<artifactId>okhttp</artifactId>
5353
</dependency>
54+
<dependency>
55+
<groupId>com.squareup.okhttp3</groupId>
56+
<artifactId>okhttp-jvm</artifactId>
57+
</dependency>
5458

5559
<dependency>
5660
<groupId>org.slf4j</groupId>

pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@
8787

8888
<!-- Core versions -->
8989
<sundrio.version>0.230.1</sundrio.version>
90-
<okhttp.version>4.12.0</okhttp.version>
90+
<okhttp.version>5.3.2</okhttp.version>
9191
<jackson.version>2.20.0</jackson.version>
9292
<jackson.bundle.version>${jackson.version}</jackson.bundle.version>
9393
<!-- fix as jackson-annotations version 2.20 was released, Refer: https://github.com/FasterXML/jackson-bom/blob/54f854ba1ce69c5827f8acf6d08ba2d7ce36233c/pom.xml#L53-L62 -->
@@ -703,6 +703,11 @@
703703
<artifactId>okhttp</artifactId>
704704
<version>${okhttp.version}</version>
705705
</dependency>
706+
<dependency>
707+
<groupId>com.squareup.okhttp3</groupId>
708+
<artifactId>okhttp-jvm</artifactId>
709+
<version>${okhttp.version}</version>
710+
</dependency>
706711
<dependency>
707712
<groupId>org.apache.commons</groupId>
708713
<artifactId>commons-compress</artifactId>

0 commit comments

Comments
 (0)