Skip to content

Commit

Permalink
Upgrade Apache HttpComponents Core to 5.0.3. (#1375)
Browse files Browse the repository at this point in the history
  • Loading branch information
maciejwalkowiak authored Apr 9, 2021
1 parent 9d8b774 commit a4949a2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
* Feat: Sentry closes Android NDK and ShutdownHook integrations (#1358)
* Enhancement: Allow inheritance of SentryHandler class in sentry-jul package(#1367)
* Fix: Accept only non null value maps (#1368)
* Bump: Upgrade Apache HttpComponents Core to 5.0.3 (#1375)
* Enhancement: Make NoOpHub public (#1379)
* Fix: Do not bind transactions to scope by default. (#1376)

Expand Down
2 changes: 2 additions & 0 deletions buildSrc/src/main/java/Config.kt
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,8 @@ object Config {
val servletApi = "javax.servlet:javax.servlet-api"

val apacheHttpClient = "org.apache.httpcomponents.client5:httpclient5:5.0.3"
val apacheHttpCore = "org.apache.httpcomponents.core5:httpcore5:5.0.3"
val apacheHttpCoreH2 = "org.apache.httpcomponents.core5:httpcore5-h2:5.0.3"

private val retrofit2Version = "2.9.0"
private val retrofit2Group = "com.squareup.retrofit2"
Expand Down
2 changes: 2 additions & 0 deletions sentry-apache-http-client-5/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,8 @@ tasks.withType<KotlinCompile>().configureEach {
dependencies {
api(project(":sentry"))
api(Config.Libs.apacheHttpClient)
api(Config.Libs.apacheHttpCore)
api(Config.Libs.apacheHttpCoreH2)

compileOnly(Config.CompileOnly.nopen)
errorprone(Config.CompileOnly.nopenChecker)
Expand Down

0 comments on commit a4949a2

Please sign in to comment.