What's Changed
- Use
gcp-sdk-authfor authentication. - Pagination helpers for list operations.
- Improved experience to create requests:
- Make a request with
client.request_name(path_parameters ...).send().await? - Add request options with
client.request_name(path_parameters ...).with_option1(...).with_option2(...).send().await? - Set optional parameters with
client.request_name(path_parameters ...).set_p1(...).set_p2(...).send().await? - Combine parameters and request options.
- Make a request with
- More
from/try_fromconversions forwkt::Durationandwkt::Timestamp. - Lots of CI improvements, including Windows, and macOS builds and code coverage results.
- Better error detail parsing.
- Reduced unreachable code in
wkt::Any. - Per-request timeouts and per-request user agent options.
New Contributors
- @dangazineu made their first contribution in #476
- @mpeddada1 made their first contribution in #542
- @harkamaljot made their first contribution in #541
Full Changelog: v0.1.0-rc2...v0.1.0-rc3