Mirror of
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: gh query filter _again_

+2 -16
+1 -4
scripts/backfill.ts
··· 66 66 67 67 const repository = `repo:${owner}/${repo}`; 68 68 const timeRange = `closed:${startIso}..${endIso}`; 69 - const filters = "is:closed -is:unmerged"; 69 + const filters = "is:closed reason:completed -is:unmerged"; 70 70 71 71 const query = encodeURIComponent(`${repository} ${filters} ${timeRange}`); 72 - 73 - console.log(query); 74 - console.log(`${repository} ${filters} ${timeRange}`); 75 72 76 73 const headers = { 77 74 Accept: "application/vnd.github.v3+json",
-11
src/content/posts/2026-02-03-daily.json
··· 15 15 ] 16 16 }, 17 17 { 18 - "title": "Theming: System Preference Autodiscovery", 19 - "summary": "Resolved a key community request by transitioning the default theme logic to follow user system preferences instead of forcing dark mode. The platform now utilizes the `color-scheme` property to ensure consistent rendering when browsers or operating systems override UI colors.", 20 - "relevanceScore": 9, 21 - "sources": [ 22 - { 23 - "platform": "github", 24 - "url": "https://github.com/npmx-dev/npmx.dev/issues/782" 25 - } 26 - ] 27 - }, 28 - { 29 18 "title": "Search Integrity & Cache Consistency", 30 19 "summary": "Fixed a high-priority bug where rapid typing could lead to outdated or empty search results due to racing network requests. The system now includes a check to ignore stale search responses before updating the incremental client-side cache, ensuring search results always reflect the user's latest query state.", 31 20 "relevanceScore": 9,
+1 -1
src/lib/events.ts
··· 43 43 44 44 const repository = `repo:${owner}/${repo}`; 45 45 const timeRange = `closed:${startIso}..${endIso}`; 46 - const filters = "is:closed -is:unmerged"; 46 + const filters = "is:closed reason:completed -is:unmerged"; 47 47 48 48 const query = encodeURIComponent(`${repository} ${filters} ${timeRange}`); 49 49