• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

umputun / feed-master
74%

Build:
DEFAULT BRANCH: master
Repo Added 20 Oct 2019 06:46PM UTC
Files 16
Badge
Embed ▾
README BADGES
x

If you need to use a raster PNG badge, change the '.svg' to '.png' in the link

Markdown

Textile

RDoc

HTML

Rst

LAST BUILD ON BRANCH master
branch: SELECT
CHANGE BRANCH
x
  • No branch selected
  • actions
  • config
  • dependabot/github_actions/github-actions-updates-1ee787ebfb
  • dependabot/go_modules/github.com/microcosm-cc/bluemonday-1.0.16
  • dependabot/go_modules/go-modules-updates-2bc65d338a
  • dependabot/go_modules/go-modules-updates-35dcfad33e
  • dependabot/go_modules/go-modules-updates-68cdcc2012
  • dependabot/go_modules/go-modules-updates-71a6db2b89
  • dependabot/go_modules/go-modules-updates-950b4a9639
  • dependabot/go_modules/go-modules-updates-a8835f245c
  • dependabot/go_modules/golang.org/x/crypto-0.45.0
  • dependabot/go_modules/golang.org/x/net-0.17.0
  • dependabot/go_modules/golang.org/x/net-0.23.0
  • duration
  • dverhoturov/telegram_save_to_file
  • fix-ci-caching
  • fix/content-type-header-rest-issue-38
  • fix/issue-134-delete-endpoint
  • invert_filter
  • item-duration
  • master
  • migrate-to-routegroup
  • paskal/bump_modules
  • paskal/duration-err
  • paskal/fix-ci-rebase
  • paskal/fix_filter
  • paskal/fix_golangcilint
  • paskal/fix_large_file_fallback
  • paskal/golangcilnt_improvements
  • paskal/telegram_documentation
  • paskal/telegram_improvements
  • paskal/telegram_proper_chan
  • paskal/trim_captions
  • paskal/trim_improvments
  • persistent-processed
  • refs/pull/12/merge
  • refs/tags/v2.10.0
  • refs/tags/v2.11.0
  • refs/tags/v2.11.1
  • refs/tags/v2.11.2
  • refs/tags/v2.11.3
  • refs/tags/v2.11.4
  • refs/tags/v2.12.0
  • refs/tags/v2.4.0
  • refs/tags/v2.5.0
  • refs/tags/v2.6.0
  • refs/tags/v2.7.0
  • refs/tags/v2.8.0
  • refs/tags/v2.8.1
  • refs/tags/v2.8.2
  • refs/tags/v2.8.3
  • refs/tags/v2.8.4
  • refs/tags/v2.9.0
  • refs/tags/v2.9.1
  • refs/tags/v2.9.2
  • retry
  • twitter
  • update-modules
  • v2.3.0
  • youtube
  • yt-dlp-update
  • yt-mp3-tags
  • yt-playlist

31 Jan 2026 07:59PM UTC coverage: 74.166% (+0.5%) from 73.69%
21550082193

push

github

umputun
fix(api): DELETE endpoint now removes audio files and combined feed entries

- Add Remove method to proc store for deleting items by GUID
- Extend youtube RemoveEntry to delete associated audio file
- Update removeEntryCtrl to remove from proc store (combined feeds)
- Use channel-specific keep limit when loading entries for deletion
- Update README to document new endpoint behavior

Related to #134

46 of 54 new or added lines in 3 files covered. (85.19%)

1467 of 1978 relevant lines covered (74.17%)

10.5 hits per line

Relevant lines Covered
Build:
Build:
1978 RELEVANT LINES 1467 COVERED LINES
10.5 HITS PER LINE
Source Files on master
  • Tree
  • List 16
  • Changed 3
  • Source Changed 0
  • Coverage Changed 3
Coverage ∆ File Lines Relevant Covered Missed Hits/Line

Recent builds

Builds Branch Commit Type Ran Committer Via Coverage
21550082193 master fix(api): DELETE endpoint now removes audio files and combined feed entries - Add Remove method to proc store for deleting items by GUID - Extend youtube RemoveEntry to delete associated audio file - Update removeEntryCtrl to remove from proc sto... push 31 Jan 2026 08:00PM UTC umputun github
74.17
21550059758 fix/issue-134-delete-endpoint fix(api): DELETE endpoint now removes audio files and combined feed entries - Add Remove method to proc store for deleting items by GUID - Extend youtube RemoveEntry to delete associated audio file - Update removeEntryCtrl to remove from proc sto... Pull #164 31 Jan 2026 07:58PM UTC umputun github
74.17
21549662444 refs/tags/v2.12.0 ci: update Go version to 1.25 in build workflow go.mod requires Go 1.25 but CI was configured for 1.22, causing build failures. push 31 Jan 2026 07:25PM UTC umputun github
73.69
21549514637 master ci: update Go version to 1.25 in build workflow go.mod requires Go 1.25 but CI was configured for 1.22, causing build failures. push 31 Jan 2026 07:15PM UTC umputun github
73.69
21076840881 master docs: add production environment and yt-dlp troubleshooting to CLAUDE.md Add deployment commands, server details, and YouTube download troubleshooting including yt-dlp flags for PO tokens and cookie format requirements. push 16 Jan 2026 06:34PM UTC umputun github
74.58
20279455033 master fix Content-Type header issue with WriteHeader + RenderJSON pattern Replace WriteHeader() + RenderJSON() with EncodeJSON() to fix go-pkgz/rest#38 where Content-Type header was ignored because headers must be set before WriteHeader() is called. push 16 Dec 2025 07:03PM UTC umputun github
74.58
20277092168 fix/content-type-header-rest-issue-38 fix Content-Type header issue with WriteHeader + RenderJSON pattern Replace WriteHeader() + RenderJSON() with EncodeJSON() to fix go-pkgz/rest#38 where Content-Type header was ignored because headers must be set before WriteHeader() is called. Pull #162 16 Dec 2025 05:34PM UTC paskal github
74.58
20013970121 master ci: migrate docker builds to native github arm64 runners replace QEMU emulation with native ubuntu-24.04-arm runners for ~70% faster builds. separate docker builds from ci workflows using workflow_run triggers. push-by-digest with manifest merge ... push 08 Dec 2025 01:40AM UTC umputun github
74.54
19913195700 master migrate from go-chi to go-pkgz/routegroup and replace tollbooth with rest.Throttle (#161) Replace go-chi/chi router with go-pkgz/routegroup which wraps the standard library http.ServeMux and provides middleware support. Replace tollbooth rate lim... push 04 Dec 2025 12:19AM UTC web-flow github
74.54
19911329917 migrate-to-routegroup migrate from go-chi to go-pkgz/routegroup and replace tollbooth with rest.Throttle Replace go-chi/chi router with go-pkgz/routegroup which wraps the standard library http.ServeMux and provides middleware support. Replace tollbooth rate limiter wi... Pull #161 03 Dec 2025 10:48PM UTC paskal github pending completion  
See All Builds (494)
  • Repo on GitHub
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc