Jesse Wilson
25186b401f
[maven-release-plugin] prepare release parent-3.14.7
2020-02-24 21:46:01 -05:00
Jesse Wilson
ca0a450251
[maven-release-plugin] prepare for next development iteration
2020-01-11 20:50:05 -05:00
Jesse Wilson
ddd8c7f88e
[maven-release-plugin] prepare release parent-3.14.6
2020-01-11 20:49:51 -05:00
Jesse Wilson
6064090d74
[maven-release-plugin] prepare for next development iteration
2020-01-03 18:12:18 -05:00
Jesse Wilson
5fe92352ab
[maven-release-plugin] prepare release parent-3.14.5
2020-01-03 18:12:12 -05:00
Jesse Wilson
ddc44ec093
[maven-release-plugin] prepare for next development iteration
2019-09-29 14:45:34 -04:00
Jesse Wilson
488b8f4039
[maven-release-plugin] prepare release parent-3.14.4
2019-09-29 14:45:12 -04:00
Jesse Wilson
df3d48948a
[maven-release-plugin] prepare for next development iteration
2019-09-10 17:47:42 -04:00
Jesse Wilson
9669149673
[maven-release-plugin] prepare release parent-3.14.3
2019-09-10 17:47:36 -04:00
Jesse Wilson
065f231738
[maven-release-plugin] prepare for next development iteration
2019-05-19 13:34:34 -04:00
Jesse Wilson
b8b6ee831c
[maven-release-plugin] prepare release parent-3.14.2
2019-05-19 13:32:30 -04:00
Jesse Wilson
03deb265b4
[maven-release-plugin] prepare for next development iteration
2019-04-10 12:07:38 -04:00
Jesse Wilson
a5c4668abf
[maven-release-plugin] prepare release parent-3.14.1
2019-04-10 12:07:33 -04:00
Jesse Wilson
695b46cb2e
[maven-release-plugin] prepare for next development iteration
2019-03-13 23:42:40 -04:00
Jesse Wilson
44d51d0ceb
[maven-release-plugin] prepare release parent-3.14.0
2019-03-13 23:42:33 -04:00
Jesse Wilson
aac6c8da07
Introduce EventListener.requestFailed, responseFailed events
...
These replace requestBodyEnd() / responseBodyEnd() in some failure scenarios.
They may also be issued in cases where no event was published previously.
2019-02-23 18:39:11 -05:00
Jesse Wilson
89ca799ac5
Upgrade to jnr-unixsocket 0.22
2019-02-12 11:33:52 -05:00
Jesse Wilson
0a59e68b16
[maven-release-plugin] prepare for next development iteration
2019-02-05 12:15:46 -05:00
Jesse Wilson
d28d2cec21
[maven-release-plugin] prepare release parent-3.13.1
2019-02-05 12:15:39 -05:00
Jesse Wilson
5ecd590c8c
[maven-release-plugin] prepare for next development iteration
2019-02-04 23:32:52 -05:00
Jesse Wilson
d55661544b
[maven-release-plugin] prepare release parent-3.13.0
2019-02-04 23:32:45 -05:00
Jesse Wilson
778e0334a4
Use lambdas where appropriate
2019-01-11 22:31:36 -05:00
Jesse Wilson
5f4a2642c0
Use automatic-resource-management blocks.
2019-01-01 21:50:44 -05:00
Jesse Wilson
0dc50f1112
Run IntelliJ inspections on the codebase
...
Some nullability warnings, some diamond operators, adopting Objects.equals(),
and some dead code elimination.
2019-01-01 12:41:06 -05:00
Jesse Wilson
bf8e653c3a
Get the latest versions of things.
...
I used 'mvn versions:use-latest-versions' and also just a bunch of manual
fixing.
2018-12-28 15:53:46 -05:00
Jesse Wilson
4adcbdfebf
Fix the UNIX sockets sample to use HTTP/2
...
It turns out that the NIO dumpsterfire harms us again here. The Channels APIs
synchronize whenever reading or writing to a stream if the channel implements
SelectableChannel. If both the input stream and the output stream are on the
same channel, then it is impossible to read and write concurrently.
Fixes: https://github.com/square/okhttp/issues/4419
2018-12-23 22:46:30 -05:00
Jesse Wilson
c273b3be38
[maven-release-plugin] prepare for next development iteration
2018-11-16 23:44:19 -05:00
Jesse Wilson
7f63a35ab1
[maven-release-plugin] prepare release parent-3.12.0
2018-11-16 23:44:12 -05:00
Jesse Wilson
bcbbfc6a54
Make the nested BasicAuthInterceptor static ( #4368 )
2018-11-05 07:46:46 +00:00
jjshanks
0a8f418644
Add basic auth interceptor recipe ( #4336 )
2018-11-04 18:05:01 +00:00
Joshua Shanks
c951e6ed88
APIs to set date headers
2018-10-31 08:32:50 -07:00
Jesse Wilson
ed67b08057
Merge branch 'jwilson.0712.changelog_311'
...
* jwilson.0712.changelog_311:
[maven-release-plugin] prepare for next development iteration
[maven-release-plugin] prepare release parent-3.11.0
2018-07-13 00:10:48 -04:00
Jesse Wilson
7ef5f55d38
[maven-release-plugin] prepare for next development iteration
2018-07-12 23:41:09 -04:00
Jesse Wilson
95ae0cf421
[maven-release-plugin] prepare release parent-3.11.0
2018-07-12 23:41:00 -04:00
Jesse Wilson
c07b8fddc9
HTTPS server sample
2018-07-12 22:46:57 -04:00
Jake Wharton
a2fb46b1a4
Merge pull request #4118 from square/jakew/parseOrThrow/2018-07-05
...
Add get(String) alternative which fails on invalid inputs
2018-07-06 15:49:25 -04:00
Jake Wharton
351b3d6bf7
Add get(String) alternative which fails on invalid inputs
...
This is an unchecked-throwing version of parse(String).
2018-07-06 15:30:55 -04:00
Jesse Wilson
e7aed0e03d
Merge pull request #4116 from square/jakew/parseOrThrow/2018-07-05
...
Add parse overload which fails on invalid inputs
2018-07-05 23:34:34 -04:00
Jake Wharton
36f4fd04f7
Add parse overload which fails on invalid inputs
2018-07-05 23:18:15 -04:00
Jesse Wilson
aac684aeae
Retain interrupted state when throwing InterruptedIOException
...
The drawbacks seem small; the callsite needs to handle interruption anyway
because the thread is prone to interruption.
And the upside is that a single interrupt should now be sufficient to break
out an in-flight OkHttp call.
Note that although we're fixing this, thread interruption is not well tested
in OkHttp. Most users should prefer Call.cancel(), which is well tested and
doesn't rely on the caller to know which threads OkHttp is using to make
the actual HTTP request.
Closes: https://github.com/square/okhttp/issues/3945
2018-07-05 22:37:24 -04:00
Jesse Wilson
44efb09904
Example of OkHttp+MockWebServer with UNIX domain sockets
2018-06-20 07:50:44 -04:00
Jesse Wilson
e86eb0e48b
[maven-release-plugin] prepare for next development iteration
2018-02-24 13:33:57 -05:00
Jesse Wilson
c0739a4199
[maven-release-plugin] prepare release parent-3.10.0
2018-02-24 13:33:52 -05:00
Yuri Schimke
fe445e4db6
Improve progress example ( #3744 )
...
* improve progress example
* bad import
2017-12-28 13:43:43 -05:00
Jesse Wilson
2bb2dc4340
[maven-release-plugin] prepare for next development iteration
2017-11-18 14:38:02 -05:00
Jesse Wilson
23b6f7556d
[maven-release-plugin] prepare release parent-3.9.1
2017-11-18 14:37:50 -05:00
Yuri Schimke
d6fd0d3832
Fix travis build
2017-09-12 08:32:24 +01:00
jwilson
b926a030c6
Add samples for EventListener
2017-09-06 12:11:37 -04:00
jwilson
51311219af
[maven-release-plugin] prepare for next development iteration
2017-09-04 17:00:21 -04:00
jwilson
51663fd08f
[maven-release-plugin] prepare release parent-3.9.0
2017-09-04 17:00:16 -04:00