| Commit message (Collapse) | Author | Age | Files | Lines | |
|---|---|---|---|---|---|
| * | Fix lint error and optimize linter config for local runs | Adam Mathes | 8 days | 1 | -2/+2 |
| | | |||||
| * | Add full_content benchmarks to quantify payload savings (NK-ekxfvv) | Claude | 9 days | 1 | -0/+77 |
| | | | | | | | | | | Add BenchmarkFilter_15Items_WithFullContent, BenchmarkFilter_15Items_IncludeFullContent, and BenchmarkFilter_LargeDataset_WithFullContent. Items are seeded with realistic ~2KB full_content. Results show excluding full_content reduces B/op by ~40% (363KB vs 595KB for 15 items). https://claude.ai/code/session_01DpWhB9uGGMBnzqS28HxnuV | ||||
| * | Add tests for CSRF exclusions, Filter includeContent, multi-feed, and routing | Claude | 9 days | 1 | -0/+93 |
| | | | | | | | | | | | | - CSRF: test excluded paths (/api/login, /api/logout), PUT/DELETE methods - Item model: test Filter includeContent flag, ItemById returns content, multiple feed_ids filtering - API: test read_filter=all param, feed_ids comma-separated filter, full_content exclusion from stream - Routing: add v3 frontend route test https://claude.ai/code/session_019Z4VJxzY7tcAuNkPAkvry9 | ||||
| * | Exclude full_content from stream list API responses | Claude | 9 days | 1 | -14/+29 |
| | | | | | | | | | | | | The /stream endpoint now skips selecting full_content and header_image from the database, reducing memory allocation and response payload size for list views. Full content remains available via /item/:id endpoint. Adds omitempty to JSON tags so empty fields are omitted from responses, and a test verifying full_content is excluded from stream responses. https://claude.ai/code/session_019Z4VJxzY7tcAuNkPAkvry9 | ||||
| * | Add performance benchmarks, stress tests, and frontend perf tests | Claude | 9 days | 1 | -0/+219 |
| | | | | | | | | | | | | | Go benchmarks cover item CRUD/filter/sanitization, API endpoints (stream, item update, feed list), middleware stack (gzip, security headers, CSRF), and crawler pipeline (feed parsing, mocked crawl). Stress tests verify concurrent reads/writes and large dataset handling. Frontend perf tests measure template generation, DOM insertion, and store event throughput. New Makefile targets: bench, bench-short, stress, test-perf. https://claude.ai/code/session_01ChDVWFDrQoFjMYHpaLGr9s | ||||
| * | Backend: Support multi-feed filtering in stream API | Adam Mathes | 10 days | 2 | -20/+24 |
| | | |||||
| * | Backend: Fix linting issues, improve error handling, and replace magic numbers | Adam Mathes | 10 days | 2 | -5/+5 |
| | | |||||
| * | Implement --purge and --purge-unread flags to delete old items | Adam Mathes | 10 days | 2 | -6/+100 |
| | | |||||
| * | Commit ticket updates and remaining backend lint fixes | Adam Mathes | 10 days | 2 | -4/+6 |
| | | |||||
| * | Create 'make check' unified workflow and fix various lint issues | Adam Mathes | 10 days | 2 | -9/+15 |
| | | |||||
| * | security: add HTTP security headers (fixing NK-7xuajb) | Adam Mathes | 11 days | 1 | -0/+5 |
| | | |||||
| * | security: mitigate SSRF in image proxy and feed fetcher (fixing NK-0ca7nq) | Adam Mathes | 11 days | 1 | -6/+2 |
| | | |||||
| * | Refactor: project structure, implement dependency injection, and align v2 UI ↵ | Adam Mathes | 11 days | 2 | -4/+5 |
| | | | | | with v1 | ||||
| * | chore: cleanup ignored files | Adam Mathes | 12 days | 2 | -65/+0 |
| | | |||||
| * | refactor(backend): improve testability and add tests (NK-6q9nyg) | Adam Mathes | 12 days | 3 | -0/+137 |
| | | |||||
| * | fix(scraper): correctly save full content and header image | Adam Mathes | 12 days | 1 | -17/+37 |
| | | |||||
| * | fix(crawler): prevent panic on missing Content-Type and use custom UA ↵ | Adam Mathes | 12 days | 1 | -10/+26 |
| | | | | | (NK-uywybr) | ||||
| * | wip: tui updates (buggy) | Adam Mathes | 13 days | 5 | -11/+113 |
| | | |||||
| * | Add comprehensive test suite — 81% cross-package coverage | Adam Mathes | 13 days | 4 | -5/+994 |
| | | | | | | | | | | | | | | | | | | | | | | | Bug fixes: - config: remove unused log import - item: fix Printf format %d->%t for boolean ReadState - util: update stale config.Read -> config.Init, remove config.Config.DBServer Test files added: - config/config_test.go: Init, readConfig, addDefaults (100%) - vlog/vlog_test.go: Printf, Println verbose/silent (100%) - models/db_test.go: InitDB tests - models/feed/feed_test.go: CRUD, filter, Categories, NewFeed, ResolveFeedURL (87%) - models/item/item_test.go: CRUD, Filter with category/search/starred, rewriteImages (71%) - exporter/exporter_test.go: all export formats (91%) - importer/importer_test.go: InsertIItem, ImportJSON (90%) - crawler/crawler_test.go: GetFeedContent, CrawlFeed, CrawlWorker, Crawl (89%) - web/web_test.go: auth, login/logout, stream, item, feed, category, export, crawl, imageProxy handlers (77%) Remaining 0% functions require HTTP/rice.MustFindBox/main entry and can't be unit tested without refactoring (see tickets NK-gqkh96, NK-6q9nyg). | ||||
| * | upgrade to blackfriday v2 dependency | Adam Mathes | 2019-06-09 | 1 | -1/+1 |
| | | |||||
| * | fix mem leak (maybe) in feed crawler, re-enable bg crawl | Adam Mathes | 2018-12-16 | 1 | -1/+1 |
| | | |||||
| * | wip, simplifications | Adam Mathes | 2018-07-04 | 1 | -2/+53 |
| | | |||||
| * | add back in search support, requires sqlite | Adam Mathes | 2018-06-16 | 1 | -4/+13 |
| | | |||||
| * | sqlite3 support | Adam Mathes | 2018-06-12 | 1 | -11/+14 |
| | | |||||
| * | set limit to number of simultaneous crawl jobs | Adam Mathes | 2018-04-30 | 1 | -1/+1 |
| | | |||||
| * | debug cleanup | Adam Mathes | 2018-04-29 | 1 | -8/+9 |
| | | |||||
| * | change to feed,item | Adam Mathes | 2018-04-28 | 1 | -1/+1 |
| | | |||||
| * | mariadb huh | Adam Mathes | 2018-04-28 | 1 | -1/+1 |
| | | |||||
| * | switch to less dumb item filter query i guess | Adam Mathes | 2018-04-28 | 1 | -3/+3 |
| | | |||||
| * | separator for scrape | Adam Mathes | 2018-04-27 | 1 | -6/+18 |
| | | |||||
| * | img proxy as config option | Adam Mathes | 2018-04-27 | 1 | -1/+5 |
| | | |||||
| * | wip img proxy | Adam Mathes | 2018-04-24 | 1 | -0/+24 |
| | | |||||
| * | remove comments | Adam Mathes | 2018-04-22 | 1 | -9/+0 |
| | | |||||
| * | switch to straight / inner joins for speed, maybe | Adam Mathes | 2018-04-22 | 1 | -2/+12 |
| | | |||||
| * | fix some performance issues because mysql is weird? | Adam Mathes | 2018-04-22 | 1 | -2/+3 |
| | | |||||
| * | wip category stuff | Adam Mathes | 2018-04-22 | 1 | -1/+0 |
| | | |||||
| * | wip single category on feed | Adam Mathes | 2018-04-22 | 2 | -19/+57 |
| | | |||||
| * | opml export | Adam Mathes | 2018-04-07 | 1 | -8/+13 |
| | | |||||
| * | add pre,code tags. css tweaks | Adam Mathes | 2018-02-10 | 1 | -1/+1 |
| | | |||||
| * | factor out filter policy | Adam Mathes | 2018-01-29 | 1 | -8/+11 |
| | | |||||
| * | deal with relative urls in feed resolution, sorta | Adam Mathes | 2018-01-29 | 1 | -0/+5 |
| | | |||||
| * | cleanHeaderImage stub | Adam Mathes | 2017-12-02 | 1 | -0/+7 |
| | | |||||
| * | sanitize header, vlog instead of log some bits in item.go | Adam Mathes | 2017-11-24 | 1 | -2/+5 |
| | | |||||
| * | add basic feed discovery for new feeds | Adam Mathes | 2017-11-23 | 1 | -0/+56 |
| | | |||||
| * | sort feeds by lc(title) | Adam Mathes | 2017-11-22 | 1 | -1/+1 |
| | | |||||
| * | add full view toggle kb shortcut | Adam Mathes | 2017-11-21 | 1 | -4/+21 |
| | | |||||
| * | enable full_text and header_image | Adam Mathes | 2017-11-19 | 1 | -14/+41 |
| | | |||||
| * | gofmt | Adam Mathes | 2017-10-21 | 1 | -1/+1 |
| | | |||||
| * | order all feeds by url | Adam Mathes | 2017-10-21 | 1 | -1/+1 |
| | | |||||
| * | silent by default, verbose option added. -feeds cmd line option added | Adam Mathes | 2017-02-25 | 1 | -1/+8 |
| | | |||||
