Skip to content

Commit 0a70070

Browse files
kebedathinkingserious
authored andcommitted
Update transitive dependencies (#117)
1 parent 14c506e commit 0a70070

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

LICENSE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2016-2018 SendGrid, Inc.
3+
Copyright (c) 2016-2019 SendGrid, Inc.
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ buildscript {
4141
}
4242

4343
dependencies {
44-
compile 'org.apache.httpcomponents:httpcore:4.4.4'
45-
compile 'org.apache.httpcomponents:httpclient:4.5.2'
44+
compile 'org.apache.httpcomponents:httpcore:4.4.12'
45+
compile 'org.apache.httpcomponents:httpclient:4.5.10'
4646
testCompile 'org.mockito:mockito-core:1.10.19'
4747
testCompile group: 'junit', name: 'junit-dep', version: '4.10'
4848

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,12 +46,12 @@
4646
<dependency>
4747
<groupId>org.apache.httpcomponents</groupId>
4848
<artifactId>httpcore</artifactId>
49-
<version>4.4.4</version>
49+
<version>4.4.12</version>
5050
</dependency>
5151
<dependency>
5252
<groupId>org.apache.httpcomponents</groupId>
5353
<artifactId>httpclient</artifactId>
54-
<version>4.5.2</version>
54+
<version>4.5.10</version>
5555
</dependency>
5656
</dependencies>
5757
<build>

src/main/java/com/sendgrid/Client.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@
1212

1313
import org.apache.http.Header;
1414
import org.apache.http.HttpMessage;
15-
import org.apache.http.annotation.NotThreadSafe;
1615
import org.apache.http.client.ClientProtocolException;
1716
import org.apache.http.client.ResponseHandler;
1817
import org.apache.http.client.methods.CloseableHttpResponse;
@@ -28,7 +27,6 @@
2827
import org.apache.http.impl.client.HttpClients;
2928

3029
// Hack to get DELETE to accept a request body
31-
@NotThreadSafe
3230
class HttpDeleteWithBody extends HttpEntityEnclosingRequestBase {
3331
public static final String METHOD_NAME = "DELETE";
3432

0 commit comments

Comments
 (0)