-
Notifications
You must be signed in to change notification settings - Fork 68
fix: make sure queries are sync #2479
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
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
7b59a07
fix(web): do not cache queries until the WS is connected
imobachgs 0ad1f49
fix(web): invalidate queries when the WS is disconnected
imobachgs 3fb2f09
fix(web): set InstallerClientProvider initial state
imobachgs a0d2130
refactor(web): use error and language handling out of App
imobachgs 2f7409f
refactor(web): add a DummyWSClient for tests
imobachgs 427268a
refactor(web): allow injecting a fetchConfig function for l10n
imobachgs 0e37f92
refactor(web): mock hooks in StorageSection test
imobachgs 9e87b48
refactor(web): drop the useInstallerStatus hook
imobachgs 4e24b2b
fix(web): update installer context tests
imobachgs cfb8afa
fix(web): log events
imobachgs 64813ba
fix(web): start listening for changes earlier
imobachgs 659682a
fix(web): improve App logging
imobachgs 9875289
fix(web): remove ServerError from core barrel file
dgdavid 9257c59
fix(web): fix coverage reporting
imobachgs eb11680
fix(web): display the progress on "agama config load"
imobachgs e3c2dec
fix(web): make the "exit page" unprotected
imobachgs b99adee
chore(web): improve handling of WebSocket messages
imobachgs 18bcaca
docs(rust): update changes file
imobachgs 54244a1
docs(web): update changes file
imobachgs ba5672f
Merge branch 'master' into sync-queries
imobachgs File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,8 @@ | ||
| ------------------------------------------------------------------- | ||
| Tue Jun 17 12:21:43 UTC 2025 - Imobach Gonzalez Sosa <[email protected]> | ||
|
|
||
| - Improve logging of WebSocket events (gh#agama-project/agama#2479). | ||
|
|
||
| ------------------------------------------------------------------- | ||
| Mon Jun 16 14:28:22 UTC 2025 - Ancor Gonzalez Sosa <[email protected]> | ||
|
|
||
|
|
||
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
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,3 +1,12 @@ | ||
| ------------------------------------------------------------------- | ||
| Tue Jun 17 12:22:46 UTC 2025 - Imobach Gonzalez Sosa <[email protected]> | ||
|
|
||
| - Make sure queries data is in sync with the WebSocket messages | ||
| (bsc#1243276, gh#agama-project/agama#2479). | ||
| - Properly jump to the progress page when the product is selected | ||
| by a third party (e.g., "agama config load"). | ||
| - Log WebSocket messages in the console with "debug" log level. | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. 👌 |
||
|
|
||
| ------------------------------------------------------------------- | ||
|
|
||
| Fri Jun 13 08:24:59 UTC 2025 - Josef Reidinger <[email protected]> | ||
|
|
||
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
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
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍