chore(mobility_features): widen carp_serializable constraint to allow 3.x (6.2.0) - #1302
Merged
Conversation
jakdan99
approved these changes
Aug 14, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Widens the
carp_serializableconstraint somobility_featuresworks with both 2.x and 3.x.carp_serializable 3.0.0is a breaking release (it replaces the built-inUuidwith the uuid package). Todaymobility_featurespins^2.0.0, which blockscarp_context_packageincarp.sensing-flutterfrom resolving.Change
carp_serializable: ^2.0.0→'>=2.0.0 <4.0.0'6.1.0→6.2.0A range rather than
^3.0.0keeps existing 2.x consumers working, so this is non-breaking for downstream users.No code changes needed
The only breaking change in 3.0.0 is
Uuid().v1(getter) →const Uuid().v4()(method).lib/has noUuidreferences, so this is a constraint-only bump.Verification
carp_serializable 3.0.0flutter test: the 4 failing tests inmobility_features_test.dartfail identically on unmodifiedmaster(FormatExceptionwhile parsing test data) — pre-existing and unrelated to this change.This one is independent of the other repos and can be merged/published on its own.