Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump okhttp3 from 3.11.0 to 4.9.3 #4392

Merged
merged 1 commit into from
Jun 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,6 @@ Apollo 2.0.1
* [Fix search user duplication issue](https://github.com/apolloconfig/apollo/pull/4371)
* [Fix the npe issue for old version of gray release rules](https://github.com/apolloconfig/apollo/pull/4382)
* [Fix the delete AppNamespace failed issue](https://github.com/apolloconfig/apollo/pull/4388)
* [Bump okhttp3 from 3.11.0 to 4.9.3](https://github.com/apolloconfig/apollo/pull/4392)
------------------
All issues and pull requests are [here](https://github.com/apolloconfig/apollo/milestone/12?closed=1)
5 changes: 3 additions & 2 deletions apollo-mockserver/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -30,19 +30,20 @@

<properties>
<github.path>${project.artifactId}</github.path>
<okhttp3.version>4.9.3</okhttp3.version>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>mockwebserver</artifactId>
<version>3.11.0</version>
<version>${okhttp3.version}</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp3</groupId>
<artifactId>okhttp</artifactId>
<version>3.11.0</version>
<version>${okhttp3.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
Expand Down