Conversation
…s, and enhanced error handling for network timeouts
Codecov Report❌ Patch coverage is
📢 Thoughts on this report? Let us know! |
Contributor
There was a problem hiding this comment.
Pull request overview
This PR bumps the repo/app version to v4.4.7 and updates the mobile authentication flow to better tolerate transient network issues by adding request timeouts, a single retry on session provisioning, and clearer timeout messaging.
Changes:
- Bump version from 4.4.6 → 4.4.7 across web, OpenAPI, env, and mobile config files.
- Mobile: add timeout configuration for auth requests and retry once on transient provisioning failures.
- Mobile: improve user-facing error message for Dio timeout exceptions.
Reviewed changes
Copilot reviewed 7 out of 8 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
| public/openapi/openapi.yaml | Bumps OpenAPI spec version to 4.4.7. |
| package.json | Bumps npm package version to 4.4.7. |
| package-lock.json | Keeps lockfile version metadata in sync with 4.4.7. |
| mobile/pubspec.yaml | Bumps Flutter app version to 4.4.7+1. |
| mobile/lib/services/auth_service.dart | Adds auth request timeouts, provisioning retry, and additional logging. |
| mobile/lib/logic/error_utils.dart | Adds a dedicated message for Dio timeout error types. |
| mobile/lib/config/app_config.dart | Updates default APP_VERSION to 4.4.7. |
| .example.env | Bumps NEXT_PUBLIC_APP_VERSION and MIN_APP_VERSION to 4.4.7. |
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Signed-off-by: Devanarayanan <fusion@devakesu.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com> Signed-off-by: Devanarayanan <fusion@devakesu.com>
devakesu-admin
approved these changes
Jun 1, 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.
Pull Request
Description
feat: implement authentication request retries, timeout configurations, and enhanced error handling for network timeouts
Type of Change