Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): bump google_maps from 3.7.3 to 3.8.1 #275

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 13, 2025

Bumps google_maps from 3.7.3 to 3.8.1.

Release notes

Sourced from google_maps's releases.

v3.8.1

  • 2024-01-10: A debug println! was accidentally left in the Client get_request method. This has been removed.

Full Changelog: leontoeides/google_maps@v3.8.0...v3.8.1

v3.8.0

  • Important note: This release some changes that are theoretically breaking changes. This would apply to users who are tapping into the more internal functions and destructuring structs. However, I don't believe most crate end-users will notice a difference.

  • 2024-01-10: Implemented Google Maps Address Validation API.

Basic example:

use google_maps::prelude::*;
let google_maps_client = google_maps::Client::try_new("YOUR_API_KEY_HERE")?;
let postal_address = PostalAddress::builder()
.region_code(&Country::UnitedStates)
.address_lines(vec![
"1600 Amphitheatre Pkwy",
"Mountain View, CA, 94043"
])
.build();
let response = google_maps_client
.validate_address()
.address(postal_address)
.build()
.execute()
.await?;
google_maps_client
.provide_validation_feedback()
.conclusion(ValidationConclusion::Unused)
.response_id(response.response_id())
.build()
.execute()
.await?;
// Dump entire response:
println!("{response:#?}");

  • 2025-01-04: Implemented a generic get method that covers all of the Google Maps APIs and handles the requests, responses, and errors.

  • 2025-01-01: Updated several dependencies.

  • 2024-12-29: Switched from the currently unmaintained backoff crate to Xuanwo's backon crate for an exponential back-off retry implementation.

... (truncated)

Changelog

Sourced from google_maps's changelog.

3.8.1

  • 2024-01-10: A debug println! was accidentally left in the Client get_request method. This has been removed.

3.8.0

  • Important note: This release some has changes that are theoretically breaking changes. This would apply to users who are tapping into the more internal functions and destructuring structs. However, I don't believe most crate end-users will notice a difference.

  • 2024-01-10: Implemented Google Maps Address Validation API. Basic example:

    use google_maps::prelude::*;
    let google_maps_client = google_maps::Client::try_new("YOUR_API_KEY_HERE")?;
    let postal_address = PostalAddress::builder()
    .region_code(&Country::UnitedStates)
    .address_lines(vec![
    "1600 Amphitheatre Pkwy",
    "Mountain View, CA, 94043"
    ])
    .build();
    let response = google_maps_client
    .validate_address()
    .address(postal_address)
    .build()
    .execute()
    .await?;
    // Dump entire response:
    println!("{response:#?}");

  • 2025-01-04: Implemented a generic get method that covers all of the Google Maps APIs and handles the requests, responses, and errors.

  • 2025-01-01: Updated several dependencies.

  • 2024-12-29: Switched from the currently unmaintained backoff crate to Xuanwo's backon crate for an exponential back-off retry implementation.

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [google_maps](https://github.com/leontoeides/google_maps) from 3.7.3 to 3.8.1.
- [Release notes](https://github.com/leontoeides/google_maps/releases)
- [Changelog](https://github.com/leontoeides/google_maps/blob/master/CHANGELOG.md)
- [Commits](leontoeides/google_maps@v3.7.3...v3.8.1)

---
updated-dependencies:
- dependency-name: google_maps
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Jan 13, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants