Dmitry Pypin
c36dfe14db
Removed *_extra methods from Connection trait
2019-09-06 10:59:59 -07:00
Dmitry Pypin
e4dfd6a1e7
Small changes
2019-09-05 16:06:42 -07:00
Dmitry Pypin
9658896957
Small fix
2019-09-05 13:36:13 -07:00
Dmitry Pypin
c108409c65
Merge branch 'master' into dpypin/freeze-client-request
2019-09-05 13:35:02 -07:00
Dmitry Pypin
f47afee5fc
Updated CHANGES.md files
2019-09-05 13:28:05 -07:00
Dmitry Pypin
9f4606b0e2
Renamed RequestHeadWrapper->RequestHeadType
2019-09-05 12:01:04 -07:00
Dmitry Pypin
64b65f0c9d
Small fixes
2019-09-05 11:51:41 -07:00
Dmitry Pypin
7f20d58525
Added RequestHeaderWrapper
2019-09-05 10:48:06 -07:00
Nikolay Kim
c9400456f6
update actix-connect ver
2019-09-02 15:20:28 -07:00
Nikolay Kim
63ddd30ee4
on_connect result isnt added to request extensions for http2 requests #1009
2019-09-01 13:15:02 +06:00
Dmitry Pypin
33edd8c061
Fixed a unit test. Added one more unit test.
2019-08-29 14:36:05 -07:00
Dmitry Pypin
8ada7b3c0a
Increased crates versions
2019-08-28 14:17:31 -07:00
Dmitry Pypin
2b8ce83028
Merge branch 'master' into dpypin/freeze-client-request
2019-08-28 14:07:36 -07:00
Yuki Okushi
23d768a77b
Add explicit `dyn`s ( #1041 )
...
* Add explicit `dyn`s
* Remove unnecessary lines
2019-08-17 02:45:44 +09:00
Dmitry Pypin
85a0d0721c
Merge branch 'master' into dpypin/freeze-client-request
2019-08-14 15:18:55 -07:00
Nikolay Kim
55179d6ab2
update dependencies
2019-08-13 10:48:11 -07:00
Armin Ronacher
192dfff680
prepare actix-http 0.2.9 release
2019-08-13 15:20:29 +02:00
Armin Ronacher
915010e733
Fixes a bug in OpenWaitingConnection where the h2 flow would panic a future ( #1031 )
2019-08-13 14:55:04 +02:00
Lukas Lueg
b70de5b991
Update CHANGES.md
2019-08-07 16:43:03 +02:00
Lukas Lueg
0b9e692298
Remove byteorder-dependency
2019-08-06 18:32:36 +02:00
Nikolay Kim
cf1a60cb3a
prepare awc release
2019-08-01 15:41:14 -07:00
Nikolay Kim
0d15861e23
prepare actix-http release
2019-08-01 15:26:30 -07:00
Marat Safin
cb19ebfe0c
add rustls support for actix-http and awc ( #998 )
...
* add rustls support for actix-http and awc
* fix features conflict
* remove unnecessary duplication
* test server with rust-tls
* fix
* test rustls
* awc rustls test
* format
* tests
* fix dependencies
* fixes and add changes
* remove test-server and Cargo.toml dev-dependencies changes
* cargo fmt
2019-07-31 13:02:56 -07:00
Nikolay Kim
e9b4aa205f
Merge branch 'master' of github.com:actix/actix-web
2019-07-30 08:00:57 -07:00
Nikolay Kim
7674f1173c
fix awc client panic #1016
2019-07-30 08:00:46 -07:00
Sven-Hendrik Haase
511026cab0
Allow HeaderMap to be cloned ( #1014 )
...
* Allow HeaderMap to be cloned
* Add entry to changelog
2019-07-29 08:11:23 +04:00
Sven-Hendrik Haase
81ab37f235
Fix two dyn warnings ( #1015 )
2019-07-29 08:10:33 +04:00
Nikolay Kim
f3751d83f8
Modify response body only if encoder is not None #997
2019-07-22 11:35:00 +06:00
Nikolay Kim
b6ff786ed3
update dependencies
2019-07-18 17:50:10 +06:00
Nikolay Kim
9c3789cbd0
revert DateServiceInner changes
2019-07-18 17:37:41 +06:00
Armin Ronacher
29098f8397
Add support for downcasting response errors ( #986 )
...
* Add support for downcasting response errors
* Added test for error casting
2019-07-18 17:25:50 +06:00
Rotem Yaari
d03296237e
Log error results in Logger middleware ( closes #938 ) ( #984 )
...
* Log error results in Logger middleware (closes #938 )
* Log internal server errors with an ERROR log level
* Logger middleware: don't log 500 internal server errors, as Actix now logs them always
* Changelog
2019-07-18 14:31:18 +06:00
Aaron Hill
b36fdc46db
Remove several usages of 'unsafe' ( #968 )
...
* Replace UnsafeCell in DateServiceInner with Cell
The previous API was extremely dangerous - calling `get_ref()`
followed by `reset()` would trigger instant UB, without requiring
any `unsafe` blocks in the caller.
By making DateInner `Copy`, we can use a normal `Cell` instead
of an `UnsafeCell`. This makes it impossible to cause UB (or even panic)
with the API.
* Split unsafe block HttpServiceHandlerResponse
Also add explanation of the safety of the usage of `unsafe`
* Replace UnsafeCell with RefCell in PayloadRef
This ensures that a mistake in the usage of 'get_mut' will cause
a panic, not undefined behavior.
2019-07-18 04:45:17 +06:00
Nikolay Kim
2a2d7f5768
nightly clippy warnings
2019-07-17 15:53:51 +06:00
Nikolay Kim
ef3e1037a8
bump version
2019-07-17 14:18:26 +06:00
Nikolay Kim
baaa7b3fbb
Replace ClonableService with local copy
2019-07-17 13:55:44 +06:00
Nikolay Kim
7b1dcaffda
cleanup deprecation warning for Box<dyn>
2019-07-17 11:44:39 +06:00
Dmitry Pypin
36636b71ea
Added freeze() method to ClientRequest which produces a 'read-only' copy of a request suitable for retrying the send operation
2019-07-10 16:26:44 -07:00
Dmitry Pypin
f276db0693
Added extra_headers
2019-07-10 11:56:10 -07:00
Dmitry Pypin
5ae6fc261e
Initial commit
2019-07-09 11:01:03 -07:00
Jeff Muizelaar
e1fcd203f8
Update the copyless version to 0.1.4 ( #956 )
...
< 0.1.4 failed to check for null when doing allocations which could lead to null dereferences.
2019-07-08 15:48:20 +06:00
messense
dbab55dd6b
Bump rand crate version to 0.7 ( #951 )
2019-07-01 09:37:03 +06:00
Nikolay Kim
d286ccb4f5
Add on-connect callback #946
2019-06-28 14:34:26 +06:00
Nikolay Kim
cac162aed7
update actix-http changes
2019-06-28 12:34:43 +06:00
anthonyjchriste
768859513a
Expose the max limit for payload sizes in Websocket Actors. #925 ( #933 )
...
* Expose the max limit for payload sizes in Websocket Actors.
* Revert to previous not-formatted code.
* Implement WebsocketContext::with_codec and make Codec Copy and Clone.
* Fix formatting.
* Fix formatting.
2019-06-28 10:49:03 +06:00
Tim Visée
1a24ff8717
Add builder function for HTTP 429 Too Many Requests status ( #931 )
2019-06-21 13:06:29 +06:00
messense
313ac48765
Use encoding_rs crate instead of unmaintained encoding crate ( #922 )
...
* Use encoding_rs crate instead of unmaintained encoding crate
* Update changelog
2019-06-18 12:43:25 +06:00
Nikolay Kim
d2b6502c7a
prepare actix-http release
2019-06-16 21:59:22 +06:00
Nikolay Kim
7c0f570845
Do not compress NoContent (204) responses #918
2019-06-16 21:54:17 +06:00
Nikolay Kim
a548b69679
fmt
2019-06-05 08:43:13 +06:00