Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,13 @@ updates:
schedule:
interval: weekly
open-pull-requests-limit: 10
groups:
# Both libphonenumber artifacts must move together — see the note in gradle/libs.versions.toml.
# Grouping them into one PR makes any version skew visible in a single diff rather than in two
# PRs that can land independently.
libphonenumber:
patterns:
- "*libphonenumber*"
labels:
- "dependencies"
- "type: build"
Expand Down
7 changes: 6 additions & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,13 @@ protobuf = "4.35.1"
protobuf-plugin = "0.10.0"
protovalidate-kt = "0.1.1"

# These two must stay on the SAME version. `:shared:phone` parses and formats with the Android port
# while the services modules validate with Google's artifact, and each ships its own copy of the
# libphonenumber metadata — so a version skew means the two can disagree on whether a number is
# valid. The port lags upstream, so it sets the ceiling: only bump `-google` once the port has
# published a matching release.
lib-phone-number-port = "9.0.36"
lib-phone-number-google = "9.0.37"
lib-phone-number-google = "9.0.36"
zxing = "3.5.4"

androidx-benchmark-macro = "1.5.0-beta01"
Expand Down
Loading