You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
HttpConnector depends on HttpURLConnection an old and very crufty way of working with Http connections. Some modern clients have even stopped supporting HttpURLConnection. This makes it harder to implement support for different http clients.
We should remove all dependency on HttpConnector. GithubClient will become the new base class to extend in order to support new clients. Other methods the depend on HttpURLConnection should switch to other ways of providing the same information.
The text was updated successfully, but these errors were encountered:
bitwiseman
changed the title
Deprecate and remove all dependency on HttpConnector and HttpURLConnection
Deprecate all usages of HttpConnector and HttpURLConnection
Nov 22, 2021
HttpConnector depends on HttpURLConnection an old and very crufty way of working with Http connections. Some modern clients have even stopped supporting HttpURLConnection. This makes it harder to implement support for different http clients.
We should remove all dependency on
HttpConnector
.GithubClient
will become the new base class to extend in order to support new clients. Other methods the depend onHttpURLConnection
should switch to other ways of providing the same information.The text was updated successfully, but these errors were encountered: