Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 104DA200C0C for ; Mon, 30 Jan 2017 14:58:22 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 0D2EE160B4D; Mon, 30 Jan 2017 13:58:22 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 5825B160B41 for ; Mon, 30 Jan 2017 14:58:21 +0100 (CET) Received: (qmail 89575 invoked by uid 500); 30 Jan 2017 13:58:20 -0000 Mailing-List: contact dev-help@camel.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@camel.apache.org Delivered-To: mailing list dev@camel.apache.org Received: (qmail 89564 invoked by uid 99); 30 Jan 2017 13:58:20 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 30 Jan 2017 13:58:20 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 2DBB7DFC61; Mon, 30 Jan 2017 13:58:20 +0000 (UTC) From: zregvart To: dev@camel.apache.org Reply-To: dev@camel.apache.org Message-ID: Subject: [GitHub] camel pull request #1427: CAMEL-10764 The use of BrowserCompatHostname... Content-Type: text/plain Date: Mon, 30 Jan 2017 13:58:20 +0000 (UTC) archived-at: Mon, 30 Jan 2017 13:58:22 -0000 GitHub user zregvart opened a pull request: https://github.com/apache/camel/pull/1427 CAMEL-10764 The use of BrowserCompatHostname... ...Verifier is deprecated The BrowserCompatHostnameVerifier has been deprecated in HttpClient version 4.4, instead DefaultHostnameVerifier should be used. The commit also changes the type of `x509HostnameVerifier` from `X509HostnameVerifier` to `HostnameVerifier`. Due to HTTPCLIENT-1802[1] version of HttpClient was upgraded to 4.5.3 from 4.5.2. Compatibility note: this changes the getter `getX509HostnameVerifier` from `X509HostnameVerifier` to `HostnameVerifier` so any client code using this getter needs to be changed. For the setter `setX509HostnameVerifier` this is not an issue as the deprecated `X509HostnameVerifier` extends from `HostnameVerifier`. [1] https://issues.apache.org/jira/browse/HTTPCLIENT-1802 You can merge this pull request into a Git repository by running: $ git pull https://github.com/zregvart/camel CAMEL-10764 Alternatively you can review and apply these changes as the patch at: https://github.com/apache/camel/pull/1427.patch To close this pull request, make a commit to your master/trunk branch with (at least) the following in the commit message: This closes #1427 ---- commit 4dfdd7eebd5f2db655edafb5e7ff4042bec39912 Author: Zoran Regvart Date: 2017-01-30T09:13:58Z CAMEL-10764 The use of BrowserCompatHostname... ...Verifier is deprecated The BrowserCompatHostnameVerifier has been deprecated in HttpClient version 4.4, instead DefaultHostnameVerifier should be used. The commit also changes the type of `x509HostnameVerifier` from `X509HostnameVerifier` to `HostnameVerifier`. Due to HTTPCLIENT-1802[1] version of HttpClient was upgraded to 4.5.3 from 4.5.2. Compatibility note: this changes the getter `getX509HostnameVerifier` from `X509HostnameVerifier` to `HostnameVerifier` so any client code using this getter needs to be changed. For the setter `setX509HostnameVerifier` this is not an issue as the deprecated `X509HostnameVerifier` extends from `HostnameVerifier`. [1] https://issues.apache.org/jira/browse/HTTPCLIENT-1802 ---- --- If your project is set up for it, you can reply to this email and have your reply appear on GitHub as well. If your project does not have this feature enabled and wishes so, or if the feature is enabled but not working, please contact infrastructure at infrastructure@apache.org or file a JIRA ticket with INFRA. ---