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

Update http client version #87491

Merged
merged 10 commits into from
Jun 28, 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
6 changes: 3 additions & 3 deletions build-tools-internal/version.properties
Original file line number Diff line number Diff line change
Expand Up @@ -36,9 +36,9 @@ opensaml = 4.0.1
randomizedrunner = 2.7.7
junit = 4.12
junit5 = 5.7.1
httpclient = 4.5.10
httpcore = 4.4.12
httpasyncclient = 4.1.4
httpclient = 4.5.13
httpcore = 4.4.13
httpasyncclient = 4.1.5
commonslogging = 1.1.3
commonscodec = 1.14
hamcrest = 2.1
Expand Down
1 change: 0 additions & 1 deletion client/rest/licenses/httpasyncclient-4.1.4.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions client/rest/licenses/httpasyncclient-4.1.5.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cd18227f1eb8e9a263286c1d7362ceb24f6f9b32
1 change: 0 additions & 1 deletion client/rest/licenses/httpclient-4.5.10.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions client/rest/licenses/httpclient-4.5.13.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada
1 change: 0 additions & 1 deletion client/rest/licenses/httpcore-4.4.12.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions client/rest/licenses/httpcore-4.4.13.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
853b96d3afbb7bf8cc303fe27ee96836a10c1834
1 change: 0 additions & 1 deletion client/rest/licenses/httpcore-nio-4.4.12.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions client/rest/licenses/httpcore-nio-4.4.13.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3f897ace4d7f10f0ea6a58f524a3b105dd483653
1 change: 0 additions & 1 deletion client/sniffer/licenses/httpclient-4.5.10.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions client/sniffer/licenses/httpclient-4.5.13.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada
1 change: 0 additions & 1 deletion client/sniffer/licenses/httpcore-4.4.12.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions client/sniffer/licenses/httpcore-4.4.13.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
853b96d3afbb7bf8cc303fe27ee96836a10c1834
5 changes: 5 additions & 0 deletions docs/changelog/87491.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
pr: 87491
summary: Update version of internal http client
area: "Infra/Core"
type: enhancement
issues: []
1 change: 0 additions & 1 deletion modules/ingest-common/licenses/httpclient-4.5.10.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions modules/ingest-common/licenses/httpclient-4.5.13.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada
1 change: 0 additions & 1 deletion modules/ingest-common/licenses/httpcore-4.4.12.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions modules/ingest-common/licenses/httpcore-4.4.13.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
853b96d3afbb7bf8cc303fe27ee96836a10c1834
Original file line number Diff line number Diff line change
Expand Up @@ -45,23 +45,28 @@ public void testBasic() throws Exception {
// Verify "com" is returned as the eTLD, for that FQDN or subdomain
testRegisteredDomainProcessor(buildEvent("com"), "com", null, "com", null);
testRegisteredDomainProcessor(buildEvent("example.com"), "example.com", "example.com", "com", null);
// Verify "googleapis.com" is returned as the eTLD, for that FQDN or subdomain
testRegisteredDomainProcessor(buildEvent("googleapis.com"), "googleapis.com", null, "googleapis.com", null);
testRegisteredDomainProcessor(buildEvent("googleapis.com"), "googleapis.com", "googleapis.com", "com", null);
testRegisteredDomainProcessor(
buildEvent("content-autofill.googleapis.com"),
"content-autofill.googleapis.com",
"content-autofill.googleapis.com",
"googleapis.com",
"com",
"content-autofill"
);
// Verify "ssl.fastly.net" is returned as the eTLD, for that FQDN or subdomain
testRegisteredDomainProcessor(
buildEvent("global.ssl.fastly.net"),
"global.ssl.fastly.net",
"global.ssl.fastly.net",
"ssl.fastly.net",
null
);
// Verify "global.ssl.fastly.net" is returned as the eTLD, for that FQDN or subdomain
testRegisteredDomainProcessor(buildEvent("global.ssl.fastly.net"), "global.ssl.fastly.net", null, "global.ssl.fastly.net", null);
testRegisteredDomainProcessor(
buildEvent("1.www.global.ssl.fastly.net"),
"1.www.global.ssl.fastly.net",
"www.global.ssl.fastly.net",
"global.ssl.fastly.net",
"1"
"ssl.fastly.net",
"1.www"
);
}

Expand Down
1 change: 0 additions & 1 deletion modules/repository-s3/licenses/httpclient-4.5.10.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions modules/repository-s3/licenses/httpclient-4.5.13.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada
1 change: 0 additions & 1 deletion modules/repository-s3/licenses/httpcore-4.4.12.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions modules/repository-s3/licenses/httpcore-4.4.13.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
853b96d3afbb7bf8cc303fe27ee96836a10c1834
1 change: 0 additions & 1 deletion modules/repository-url/licenses/httpclient-4.5.10.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions modules/repository-url/licenses/httpclient-4.5.13.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada
1 change: 0 additions & 1 deletion modules/repository-url/licenses/httpcore-4.4.12.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions modules/repository-url/licenses/httpcore-4.4.13.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
853b96d3afbb7bf8cc303fe27ee96836a10c1834

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
853b96d3afbb7bf8cc303fe27ee96836a10c1834
1 change: 0 additions & 1 deletion plugins/discovery-ec2/licenses/httpclient-4.5.10.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions plugins/discovery-ec2/licenses/httpclient-4.5.13.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada
1 change: 0 additions & 1 deletion plugins/discovery-ec2/licenses/httpcore-4.4.12.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions plugins/discovery-ec2/licenses/httpcore-4.4.13.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
853b96d3afbb7bf8cc303fe27ee96836a10c1834
1 change: 0 additions & 1 deletion x-pack/plugin/core/licenses/httpasyncclient-4.1.4.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions x-pack/plugin/core/licenses/httpasyncclient-4.1.5.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
cd18227f1eb8e9a263286c1d7362ceb24f6f9b32
1 change: 0 additions & 1 deletion x-pack/plugin/core/licenses/httpclient-4.5.10.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions x-pack/plugin/core/licenses/httpclient-4.5.13.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
e5f6cae5ca7ecaac1ec2827a9e2d65ae2869cada
1 change: 0 additions & 1 deletion x-pack/plugin/core/licenses/httpcore-4.4.12.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions x-pack/plugin/core/licenses/httpcore-4.4.13.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
853b96d3afbb7bf8cc303fe27ee96836a10c1834
1 change: 0 additions & 1 deletion x-pack/plugin/core/licenses/httpcore-nio-4.4.12.jar.sha1

This file was deleted.

1 change: 1 addition & 0 deletions x-pack/plugin/core/licenses/httpcore-nio-4.4.13.jar.sha1
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
3f897ace4d7f10f0ea6a58f524a3b105dd483653

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
4abee263cbc9edc12393212ca3a7c89af0755b1f

This file was deleted.

Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
4abee263cbc9edc12393212ca3a7c89af0755b1f