Breaking Changes
- The google-cloud-cloudsecuritycompliance-v1 crate was bumped to 2.0 because the service had breaking changes.
- This is a Pre-GA service changes to its API are common and expected.
- google-cloud-discoveryengine-v1
- search(), and search_lite() return pages which contain both
Vec<SearchResult>
andVec<Facet>
. - Our code generator incorrectly used the
Facet
as the items forsearch().by_items()
andsearch_lite().by_items()
. - The current type is (naturally)
SearchResult
.
- search(), and search_lite() return pages which contain both
- We also fixed a similar problem in google-cloud-retail-v2:
- search() also returns pages with both
SearchResult
andFacet
lists, and theby_items()
helper used theFacet
whereasSearchResult
is the correct element to turn into items.
- search() also returns pages with both
New Libraries
- feat(locationfinder/v1): generate library by @coryan in #3299
- impl(compute/v1): bootstrap library by @coryan in #3383
What's Changed
-
Refactor most trait implementations out of the
model.rs
files.- This reduces the file size by (approximately) a factor of 3, making it easier to read them in the documentation and to load them into IDEs.
-
Using locational or regional endpoints with the
StorageControl
client now result in errors.- The service does not support these endpoints (yet).
- The client library was erroneously using the global endpoint instead of the given locational or regional endpoints.
- If you encounter these errors, use the default, global endpoint (
storage.googleapis.com
).
-
test(storage): run UBLA-disabled samples by @dbolduc in #3324
-
docs(storage): add read public object example by @suzmue in #3329
-
feat(storage): add rewrite_until_done helper as extension trait by @suzmue in #3328
-
docs(guide): add rewrite_until_done helper to rewrite guide by @suzmue in #3345
-
docs: Single value setter samples for Secret Manager and Workflows by @amanda-tarafa in #3369
-
docs: Adds setter samples for maps and repeated fields by @amanda-tarafa in #3409
-
fix(storage): respect locational endpoints by @dbolduc in #3445
New Contributors
- @westarle made their first contribution in #3346
- @brianquinlan made their first contribution in #3396
Full Changelog: v1.0.0...v1.1.0