Conversation
Codecov Report❌ Patch coverage is Additional details and impacted files@@ Coverage Diff @@
## develop #4574 +/- ##
===========================================
+ Coverage 53.20% 53.24% +0.04%
===========================================
Files 440 439 -1
Lines 11602 11595 -7
Branches 1969 1958 -11
===========================================
+ Hits 6173 6174 +1
+ Misses 4841 4836 -5
+ Partials 588 585 -3 ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
frett
force-pushed
the
update-personalization-sync-endpoints
branch
2 times, most recently
from
August 25, 2026 19:17
61b495b to
d43e93d
Compare
The /resources/featured endpoint now requires both a language and a country filter, with no language-only fallback behavior. Skip the featured tools sync when no country is selected and show no featured tools instead of falling back to language-only featured tools. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
The /resources/default_order endpoint has been replaced by /resources/default-order which only takes a language filter, and /resources/ranked which requires both a language and country filter. Sync default-order per-language as the fallback tool order, and ranked per language/country as the personalized tool order. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
frett
force-pushed
the
update-personalization-sync-endpoints
branch
from
August 25, 2026 19:51
d43e93d to
2a78d78
Compare
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.
The personalization API has been split into 3 endpoints, all requiring a language filter:
/resources/featured— also requires a country filter, no fallback behavior/resources/ranked— also requires a country filter, falls back to default-order/resources/default-order— language onlyChanges
Require a country for the featured tools sync
getFeaturedToolsnow takes a non-null country through the API, sync task, and sync serviceFeaturedToolsFlowProducerno longer falls back to language-only featured tools; it emits an empty list when no country is selectedSplit the tool order sync into default-order and ranked endpoints
getToolOrder(/resources/default_order) replaced bygetDefaultToolOrder(/resources/default-order, language only) andgetRankedTools(/resources/ranked, language + country)ToolSyncTasksgainssyncDefaultToolOrder/syncRankedToolswith separate stale-tracking keysGodToolsSyncService.syncToolOrderfans out to both endpoints concurrently, skipping ranked when no country is selectedcountry = ""personalized order rows)No DB schema changes were needed.
🤖 Generated with Claude Code