Commit Graph

364 Commits

Author SHA1 Message Date
Pen Tree 52dbdda23d Expect the poll_acquire error, not return (#362)
* Expect the poll_acquire error, not return

* Remove Error in tower-limit
2019-10-31 14:06:04 -04:00
Pen Tree fac5c361a4 Fix tower-service docs (#361) 2019-10-18 17:18:55 -04:00
Lucio Franco e414b2b7d3
Prepare buffer 0.1.2 release (#360) 2019-10-11 11:39:34 -04:00
Lucio Franco 30f11bfaa2
Prepare limit 0.1.1 release (#359) 2019-10-11 11:22:14 -04:00
Lucio Franco abe5b78542
Remove tokio alpha.6 patches (#357)
* Remove tokio alpha.6 patches

* Remove ci patch
2019-09-30 21:15:26 -04:00
Lucio Franco 3bff86e28e
make: Add alpha.2a changelog 2019-09-30 20:53:39 -04:00
Lucio Franco 7fa1054892
make: Bump version to alpha.2a (#356) 2019-09-30 20:40:28 -04:00
Jon Gjengset 2653f70884 Bumps for 0.3.0-alpha.2 (#355)
* Bump all to futures-* alpha.19

* Prepare for alpha.2 release

* Make tower-service also a path dep

* Use new tokio alpha
2019-09-30 18:56:26 -04:00
Taiki Endo 03dc7069aa Update pin-project to 0.4 (#350) 2019-09-30 14:58:27 -04:00
Jon Gjengset d5b36b54a5
Re-enable all CI (#353)
CI has to run on nightly for the time being.

Also includes changes to make buffer tests more reliable.
2019-09-24 18:56:37 -04:00
Jon Gjengset 6baf381879
Consistently apply deny/warn rules (#352)
This makes all tower subcrates have the following lints as warn (rather
than allow): `missing_docs`, `rust_2018_idioms`, `unreachable_pub`, and
`missing_debug_implementations`. In addition, it consistently applies
`deny(warning)` *only* under CI so that deprecations and macro changes in minor
version bumps in dependencies will never cause `tower` crates to stop
compiling, and so that tests can be run even if not all warnings have been
dealt with. See also https://github.com/rust-unofficial/patterns/blob/master/anti_patterns/deny-warnings.md

Note that `tower-reconnect` has the `missing_docs` lint disabled for now
since it contained _no_ documentation previously. Also note that this
patch does not add documentation to the various `new` methods, as they
are considered self-explanatory. They are instead marked as
`#[allow(missing_docs)]`.
2019-09-23 17:28:14 -04:00
Taiki Endo 5a561b7776 layer: remove unused dependencies (#351) 2019-09-23 09:54:08 -04:00
Sean McArthur 55b5150a89 tower-make:v0.3.0-alpha.2 2019-09-20 15:09:09 -07:00
Sean McArthur 52075f3c6f Update tower-make to tokio-io v0.2.0-alpha.5 2019-09-20 15:09:09 -07:00
Luke Steensen b86d7fb6e4 limit: Add trace log when rate limit is exceeded (#348) 2019-09-17 17:19:23 -04:00
Luke Steensen 8509ab879d Fix up broken dependencies and deprecated methods (#347)
* fix up broken dependencies and deprecated methods

* use released version of tracing-subscriber

Co-Authored-By: Lucio Franco <luciofranco14@gmail.com>
2019-09-17 15:29:11 -04:00
Mackenzie Clark f4a81d2c7d fix tower-service helloworld docs example to use new futures (#346) 2019-09-15 14:09:58 -05:00
Lucio Franco ca951d56f4
Prepare `tower-buffer` 0.3.0-alpha.1b release (#345)
* buffer: Fix unused Stream warning

* Prepare `tower-buffer` 0.3.0-alpha.1b release

* Update buffer version in balance
2019-09-14 12:47:38 -04:00
Lucio Franco 206f3d9941
Prepare `tower-buffer` 0.3.0-alpha.1a release (#343)
Signed-off-by: Lucio Franco <luciofranco14@gmail.com>
2019-09-13 16:36:35 -04:00
Lucio Franco 167f791a9f
Add `v0.3.x` branch to run CI (#344)
Signed-off-by: Lucio Franco <luciofranco14@gmail.com>
2019-09-13 15:38:23 -04:00
Mackenzie Clark e8cef688a0 change poll_next to poll_recv (#342) 2019-09-13 15:18:13 -04:00
Lucio Franco 42376d484b
tower: Add date to changelog 2019-09-11 16:45:19 -04:00
Lucio Franco fc211c3b7c
load-shed: Add date to changelog 2019-09-11 16:36:11 -04:00
Lucio Franco 7bb3a646a7
spawn-ready: Add date to changelog 2019-09-11 16:33:43 -04:00
Lucio Franco 2f6c0afde3
buffer: Add date to changelog 2019-09-11 16:31:30 -04:00
Lucio Franco 67a9e27177
balance: Fix tokio-sync channel poll fn 2019-09-11 16:27:02 -04:00
Lucio Franco bd62f64d6c
balance: Add changelog entry and remove publish false 2019-09-11 16:21:34 -04:00
Lucio Franco 48f97c3dce
load: Remove publish false and add date to changelog 2019-09-11 16:19:53 -04:00
Lucio Franco 768528e737
discover: Add date to changelog 2019-09-11 16:16:07 -04:00
Lucio Franco c40185901e
limit: Add date to changelog 2019-09-11 16:09:29 -04:00
Lucio Franco 589eb44377
util: Add date to changelog 2019-09-11 16:02:34 -04:00
Lucio Franco a3c16e85f9
make: Add changelog date 2019-09-11 15:59:30 -04:00
Lucio Franco a8def9349f
reconnect: Remove publish false 2019-09-11 15:58:43 -04:00
Lucio Franco 90ef2a64b4
reconnect: Add date to changelog 2019-09-11 15:57:55 -04:00
Lucio Franco 04fd0c5898
Merge branch 'v0.3.x' of github.com:tower-rs/tower into v0.3.x 2019-09-11 15:57:32 -04:00
Jon Gjengset 395889c763
Make Ready only take Service by reference (#340)
Rather than consuming `self` and returning `(Self, _)`. This did mean
that a few crates that depended on `Ready` to own the `Service` and
provide it once it was ready had to change to call `poll_ready`
directly. Which in turn meant adding in some PhantomData<Request> so
that the impl blocks wouldn't be under-constrainted. Take, for example:

```
impl<K, S: Service<Req>, Req> Future for UnreadyService<K, S>
```

would fail to compile with

```
error[E0207]: the type parameter `Req` is not constrained by the impl trait, self type, or predicates
```
2019-09-11 15:49:51 -04:00
Lucio Franco 6c68c56dc4
retry: Update changelog with date 2019-09-11 15:12:33 -04:00
Lucio Franco 9b8db5b393
test: Add changelog entry and date 2019-09-11 15:08:20 -04:00
Lucio Franco 97a2bc18b9
timeout: Update changelog release date 2019-09-11 15:00:42 -04:00
Lucio Franco 83752ab6c2
layer: Add date to changelog 2019-09-11 14:49:23 -04:00
Jon Gjengset 3d642f5ca0
This bumps tower-hedge to 0.3.0-alpha.1 (#334) 2019-09-11 14:00:22 -04:00
Lucio Franco fb124a14f0
Pin all the alpha based dependencies (#339)
Signed-off-by: Lucio Franco <luciofranco14@gmail.com>
2019-09-11 13:57:27 -04:00
Taiki Endo 921325ac2d Pin the version of pin-project 2019-09-11 10:00:27 -07:00
Taiki Endo 65e07064db Update pin-project to 0.4.0-alpha.11 2019-09-11 10:00:27 -07:00
Jon Gjengset d333e9f32f
spawn-ready: fix tests after removal of E (#337) 2019-09-11 11:09:17 -04:00
Jon Gjengset 4c1df65a75
cargo fmt 2019-09-11 10:30:41 -04:00
Jon Gjengset 87976ae418
Update tower-balance to std::future (#335)
This bumps tower-balance to 0.3.0-alpha.1

It also adds delegate impls for `Discover` through `Pin`, and makes `tower-load::Constant: Debug`.
2019-09-10 18:15:32 -04:00
Jon Gjengset 1ca999fde1
Update tower-spawn-ready to std::future (#332)
This bumps tower-spawn-ready to 0.3.0-alpha.1
2019-09-10 17:06:34 -04:00
Jon Gjengset 0802ca2bce
Update tower-util and tower to std::future (#330)
This bumps tower-util and tower to 0.3.0-alpha.1
2019-09-10 14:51:07 -04:00
Jon Gjengset 9691d0d379
Update tower-reconnect to std::future (#333)
This bumps tower-reconnect to 0.3.0-alpha.1

It also makes the tower-make version consistent
2019-09-10 11:48:01 -04:00