ChangeLog 98 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947
  1. Version 2.2.8 (April 22, 2025)
  2. ------------------------------
  3. * refactor(js): replace `DomHelper` methods with standalone functions
  4. * refactor: avoid logging twice the feed errors in the background worker
  5. * fix(api): `hide_globally` categories field should be a boolean
  6. * fix(ui): add missing `await` when calling `navigator.share()` method
  7. * fix(ui): replace share link with a form button for better accessibility
  8. * feat(telegrambot): replace "Go to website" button with "Go to Miniflux"
  9. * feat(locale): update Polish translation
  10. * feat(locale): update German translation
  11. * feat(locale): update Chinese translation
  12. * feat(config): add `SCHEDULER_ROUND_ROBIN_MAX_INTERVAL` option
  13. * feat(cli): add `-reset-feed-next-check-at` argument
  14. * feat(api): add `update_content` query parameter to `/entries/{entryID}/fetch-content` endpoint
  15. * feat: use `Cache-Control` max-age and `Expires` headers to calculate next check
  16. * feat: implement proxy URL per feed
  17. * feat: add proxy rotation functionality
  18. * ci(linter): replace commitlint with a Python script
  19. * ci: add documentation issue template
  20. * build(deps): bump `golang.org/x/oauth2` from `0.28.0` to `0.29.0`
  21. * build(deps): bump `golang.org/x/net` from `0.38.0` to `0.39.0`
  22. * build(deps): bump `golang.org/x/image` from `0.25.0` to `0.26.0`
  23. * build(deps): bump `github.com/tdewolff/minify/v2` from `2.22.4` to `2.23.1`
  24. * build(deps): bump `github.com/PuerkitoBio/goquery` from `1.10.2` to `1.10.3`
  25. * build(deps): bump `github.com/prometheus/client_golang`
  26. * build(deps): bump `github.com/mattn/go-sqlite3` from `1.14.24` to `1.14.28`
  27. * build(deps): bump `github.com/go-webauthn/webauthn` from `0.12.2` to `0.12.3`
  28. * build(deps): bump `github.com/coreos/go-oidc/v3` from `3.13.0` to `3.14.1`
  29. Version 2.2.7 (April 1, 2025)
  30. -----------------------------
  31. * test(api): update base URL after upgrading Hugo
  32. * refactor(rewrite): reorganize referer rules and remove obsolete mappings
  33. * refactor: combine feed icon handlers to use only `externalIconID`
  34. * fix(ui): update share feature to correctly select the title element and handle empty titles
  35. * fix(ui): update entry tags display logic to show links based on user authentication
  36. * fix(ui): remove touch-action style to prevent horizontal scrolling issues
  37. * fix(ui): log a warning for an empty client secret
  38. * fix(ui): change labels from "Read / Unread" to "Mark as Read"
  39. * fix(ui): avoid 500 errors and NaN when marking a deleted entry as read
  40. * fix(subscription): add `/rss/feed.xml` to the list of known feed URLs
  41. * fix(security): use a more restrictive CSP for untrusted content
  42. * fix(rewrite): remove obsolete rule for `webtoons.com`
  43. * fix(processor): add missing quotation marks to import comments
  44. * fix(googlereader): return enclosures in the `streamItemContentsHandler` response
  45. * fix: address minor issues detected by Go linters
  46. * feat(urlcleaner): add more Google Analytics parameters
  47. * feat(storage): reduce the number of SQL queries when fetching entry enclosures
  48. * feat(sanitizer): allow the `<u>` tag in feeds
  49. * feat(sanitizer): allow the `<b>` tag
  50. * feat(locale): update Polish translation
  51. * feat(locale): add Romanian translation
  52. * feat(integrations/ntfy): make ntfy topics configurable per feed
  53. * feat(googlereader): add a feed icon endpoint
  54. * feat: show database size on the about page
  55. * feat: add a `make add string` command to add new localized strings
  56. * docs: update README
  57. * docs: update client README to remove references to deprecated functions
  58. * ci: replace GitHub Issue Markdown templates with YAML forms
  59. * build(deps): bump `golangci/golangci-lint-action` from `6` to `7`
  60. * build(deps): bump `golang.org/x/term` from `0.29.0` to `0.30.0`
  61. * build(deps): bump `golang.org/x/oauth2` from `0.26.0` to` 0.28.0`
  62. * build(deps): bump `golang.org/x/net` from `0.35.0` to `0.38.0`
  63. * build(deps): bump `golang.org/x/image` from `0.24.0` to `0.25.0`
  64. * build(deps): bump `golang.org/x/crypto` from `0.33.0` to `0.36.0`
  65. * build(deps): bump `github.com/tdewolff/minify/v2` from `2.21.3` to `2.22.4`
  66. * build(deps): bump `github.com/prometheus/client_golang`
  67. * build(deps): bump `github.com/golang-jwt/jwt/v5` from `5.2.1` to `5.2.2`
  68. * build(deps): bump `github.com/go-webauthn/webauthn` from `0.11.2` to `0.12.2`
  69. * build(deps): bump `github.com/go-jose/go-jose/v4` from `4.0.2` to `4.0.5`
  70. * build(deps): bump `github.com/coreos/go-oidc/v3` from `3.12.0` to `3.13.0`
  71. Version 2.2.6 (February 22, 2025)
  72. ---------------------------------
  73. * test(encoding): add unit tests for `CharsetReader` function
  74. * refactor(xml): improve the performances of `NewXMLDecoder`
  75. * refactor(ui): remove superfluous cast
  76. * refactor(request): broaden an error condition when parsing cookies
  77. * refactor(processor): remove superfluous parenthesis
  78. * refactor(opml): don't define receivers on both values and pointer
  79. * refactor(model): simplify a condition
  80. * refactor(model): don't define methods both on instance and pointer
  81. * refactor(locale): sort JSON documents alphabetically by keys
  82. * refactor(locale): remove superfluous parenthesis
  83. * refactor(js): use proper types in `app.js`
  84. * refactor(js): replace the deprecated `window.pageYOffset` with `window.scollY`
  85. * refactor(js): remove a useless `return`
  86. * refactor(js): anchor `=` removal in `webauthn_handler.js` regex
  87. * refactor(js): add default value for parameter `fallbackSelf` in `goToPage` function
  88. * refactor(integration): don't use `defer` in a loop
  89. * refactor(icon): guard against a potential `null` dereference
  90. * refactor(date): use an else-if instead of two if statements
  91. * refactor(css): use shortcuts to declare padding
  92. * refactor(client): remove a useless cast
  93. * perf(sanitizer): remove two useless calls to `strings.ReplaceAll`
  94. * fix(ui): Redirect correctly post feed removal from category feeds list
  95. * fix(scraper): update TechCrunch scraper rule
  96. * fix(scraper): avoid encoding issue if charset meta tag is after 1024 bytes
  97. * fix(sanitizer): non-allowed attributes are not properly stripped
  98. * fix(sanitizer): correct HTML tag name from `tfooter` to `tfoot`
  99. * fix(rss): handle item title with `CDATA` content correctly
  100. * fix(locale): missing hyphen in `de_DE.json`
  101. * fix(css): avoid aside overflow on the pagination menu
  102. * fix(css): `--entry-content-aside-border-color` is missing from `system.css`
  103. * fix(api): return 500 response when JSON serialization fails
  104. * fix(api): JSON encoding is failing with dates at OAD and negative timezone offset
  105. * feat(urlcleaner): add trackers to the blocklist
  106. * feat(ui): open the `<details>` tag in edit feed page when the feature is enabled
  107. * feat(sanitizer): improve text truncation with better space handling
  108. * feat(sanitizer): allow `img` tags with only a `srcset` and no `src` attribute
  109. * feat(rss): add workaround for RSS item title with HTML content
  110. * feat(pushover): add integration with pushover.net
  111. * feat(processor): fetch YouTube watch time in bulk using the API
  112. * feat(locale): update Traditional Chinese translation
  113. * feat(locale): update Polish translation
  114. * feat(locale): update French translation
  115. * feat(locale): add Taiwanese POJ (nan-Latn-pehoeji)
  116. * feat(integration): update Linkace integration to support API v2
  117. * feat(integration): add webhook URL per feed
  118. * feat(integration): add Slack integration
  119. * feat(css): improve aside element position on smartphone
  120. * ci: update GitHub Actions workflows to use Go 1.24
  121. * ci: trigger packaging tests on pull requests
  122. * ci: add `commitlint` to validate PR commit messages
  123. * build(deps): bump `golang` in `/packaging/debian`
  124. * build(deps): bump `golang.org/x/term` from `0.28.0` to `0.29.0`
  125. * build(deps): bump `golang.org/x/oauth2` from `0.25.0` to `0.26.0`
  126. * build(deps): bump `golang.org/x/net` from `0.34.0` to `0.35.0`
  127. * build(deps): bump `golang.org/x/image` from `0.23.0` to `0.24.0`
  128. * build(deps): bump `golang.org/x/crypto` from `0.32.0` to `0.33.0`
  129. * build(deps): bump `github.com/PuerkitoBio/goquery` from `1.10.1` to `1.10.2`
  130. Version 2.2.5 (January 20, 2025)
  131. --------------------------------
  132. * test(js): improve `.jshintrc` (strict comparison, etc...)
  133. * test(sanitizer): add a fuzzer
  134. * refactor(rewriter): use custom title case converter implementation instead of `golang.org/x/text/cases.Title()`
  135. * refactor(readingtime): replace `whatlanggo` package with an ad-hoc implementation
  136. * refactor(oauth2): no need to use `io.WriteString` when sha256 provides a way to obtain a sum in a single call
  137. * refactor(js): simplify a bit `keyboard_handler.js`
  138. * refactor(js): remove an outdated check for `{passive: true}`
  139. * refactor(js): minor refactoring of `touch_handler.js`
  140. * refactor(js): minor improvements in `app.js`
  141. * refactor(database): add special handling for PostgreSQL-specific migrations
  142. * fix(ui): reading preferences are reset if the form values are incorrect
  143. * fix(sanitizer): allow `<hr>` tags
  144. * fix(finder): do not add redirections to the list of subscriptions to avoid confusion
  145. * fix: update Wallabag URL label to avoid confusion
  146. * fix: improve pagination when having identical publication date
  147. * fix: do not strip tags in Atom entry title
  148. * feat(ntfy): Add option to use internal links
  149. * feat(locale): update Polish translation
  150. * feat(locale): update German translation
  151. * feat(integration): add Discord integration
  152. * feat(database): add optional build support for SQLite
  153. * feat: validate usernames upon creation
  154. * feat: replace `%{?systemd_requires}` with `%{?systemd_ordering}`
  155. * feat: bump linter and minifier from ECMAScript 2017 to 2020 (ES11)
  156. * feat: add `fix_ghost_cards` rewrite rule
  157. * ci: tighten the CodeQL rules
  158. * ci: run Docker tests only when the Dockerfiles are modified
  159. * ci: run `-race -cover` only on Ubuntu jobs
  160. * ci: don't specify languages for CodeQL
  161. * ci: don't run `go vet ./...` as it's run as part of `golangci-lint`
  162. * ci: checkout before installing Go to improve cache efficiency
  163. * ci: avoid building Linux packages for each pull-request
  164. * build(deps): bump `golang.org/x/oauth2` from `0.24.0` to `0.25.0`
  165. * build(deps): bump `golang.org/x/net` from `0.33.0` to `0.34.0`
  166. * build(deps): bump `golang.org/x/crypto` from `0.31.0` to `0.32.0`
  167. * build(deps): bump `github.com/tdewolff/minify/v2` from `2.21.2` to `2.21.3`
  168. * build(deps): bump `github.com/PuerkitoBio/goquery` from `1.10.0` to `1.10.1`
  169. * build(deps): bump `github.com/coreos/go-oidc/v3` from `3.11.0` to `3.12.0`
  170. Version 2.2.4 (December 20, 2024)
  171. ---------------------------------
  172. * test(rewrite): add unit test for referer rewrite function
  173. * refactor(subscription): use `strings.HasSuffix` instead of a regex in `FindSubscriptionsFromYouTubePlaylistPage`
  174. * refactor(sanitizer): use `token.String()` instead of `html.EscapeString(token.Data)`
  175. * refactor(sanitizer): simplify `isValidTag`
  176. * refactor(sanitizer): simplify `hasRequiredAttributes`
  177. * refactor(sanitizer): remove condition because `config.Opts` is guaranteed to never be nil
  178. * refactor(sanitizer): remove a now-useless function after refactoring
  179. * refactor(sanitizer): refactor conditions to highlight their similitude, enabling further refactoring
  180. * refactor(sanitizer): optimize `strip_tags.go`
  181. * refactor(sanitizer): micro-optimizations of `srcset.go`
  182. * refactor(sanitizer): merge two conditions
  183. * refactor(sanitizer): inline a function in `sanitizeAttributes` and fix a bug in it
  184. * refactor(sanitizer): inline a condition in `sanitizeSrcsetAttr`
  185. * refactor(sanitizer): improve `rewriteIframeURL()`
  186. * refactor(sanitizer): Google+ isn't a thing anymore
  187. * refactor(sanitizer): change the scope of a variable
  188. * refactor(rewriter): replace regex with URL parsing for referrer override
  189. * refactor(rewriter): avoid the use of regex in `addDynamicImage`
  190. * refactor(rewrite): remove unused function arguments
  191. * refactor(readability): various improvements and optimizations
  192. * refactor(readability): simplify the regexes in `readability.go`
  193. * refactor(processor): use URL parsing instead of a regex
  194. * refactor(processor): improve the `rewrite` URL rule regex
  195. * refactor(locale): delay parsing of translations until they're used
  196. * refactor(js): factorise a line in `app.js`
  197. * refactor(handler): delay `store.UserByID()` as much as possible
  198. * refactor(css): replace `-ms-text-size-adjust` with `text-size-adjust`
  199. * refactor(css): remove `-webkit-clip-path`
  200. * refactor(css): factorise `.pagination-next` and `.pagination-last` together
  201. * refactor: use a better construct than `doc.Find(…).First()`
  202. * refactor: use `min/max` instead of `math.Min/math.Max`
  203. * refactor: refactor `internal/reader/readability/testdata`
  204. * refactor: optimize `sanitizeAttributes`
  205. * refactor: get rid of `numberOfPluralFormsPerLanguage` test-only variable
  206. * fix(storage): replace timezone function call with view
  207. * fix(consistency): align feed modification behavior between API and UI
  208. * fix(ci): fix grammar in pull-request template
  209. * fix: load icon from site URL instead of feed URL
  210. * fix: feed icon from xml ignored during force refresh
  211. * feat(rewrite)!: remove `parse_markdown` rewrite rule
  212. * feat(mediaproxy): update predefined referer spoofing rules for restricted media resources
  213. * feat(locale): update translations to clarify readeck URL instead of readeck API endpoint
  214. * feat(locale): update German translations
  215. * feat(locale): update Chinese translations
  216. * feat(apprise): update `SendNotification` to handle multiple entries and add logging
  217. * feat(apprise): add title in notification request body
  218. * feat: resize favicons before storing them in the database
  219. * feat: optionally fetch watch time from YouTube API instead of website
  220. * feat: only show the commit URL if it's not empty on `/about`
  221. * feat: add predefined scraper rules for `arstechnica.com`
  222. * feat: add date-based entry filtering rules
  223. * chore: remove `blog.laravel.com` rewrite rule
  224. * build(deps): bump `library/alpine` in `/packaging/docker/alpine` to `3.21`
  225. * build(deps): bump `golang.org/x/term` from `0.26.0` to `0.27.0`
  226. * build(deps): bump `golang.org/x/net` from `0.31.0` to `0.33.0`
  227. * build(deps): bump `golang.org/x/crypto` from `0.30.0` to `0.31.0`
  228. * build(deps): bump `github.com/tdewolff/minify/v2` from `2.21.1` to `2.21.2`
  229. Version 2.2.3 (November 10, 2024)
  230. ---------------------------------
  231. * fix: unable to change password due to a typo in SQL parameter
  232. * fix: show only one player when there are several audio/video enclosures
  233. * feat(mediaproxy): pass original filename in `Content-Disposition` header
  234. * feat(mediaproxy): implement referer spoofing for restricted media resources
  235. * feat(integration): update Shiori integration to use new API endpoints for login/bookmark
  236. * build(deps): bump `golang.org/x/text` from `0.19.0` to `0.20.0`
  237. * build(deps): bump `golang.org/x/term` from `0.25.0` to `0.26.0`
  238. * build(deps): bump `golang.org/x/oauth2` from `0.23.0` to `0.24.0`
  239. * build(deps): bump `golang.org/x/net` from `0.30.0` to `0.31.0`
  240. * build(deps): bump `golang.org/x/crypto` from `0.28.0` to `0.29.0`
  241. Version 2.2.2 (October 29, 2024)
  242. --------------------------------
  243. * fix(webauthn): add backup eligibility flag workaround to avoid a 401 response
  244. * fix: update `Last-Modified` if it changes in a 304 response
  245. * feat(webauthn): show help message regarding username and non-discoverable credentials
  246. * feat(rss): calculate hash based on item title/content for feeds without GUID and link
  247. * feat(locale): update Chinese translations
  248. * feat(locale): update Polish translations
  249. * feat(integration): add Cubox integration
  250. * feat(client): add `custom_js` field to Go API client
  251. * feat(api): add endpoint for user integration status
  252. * feat: update feed icon during force refresh
  253. * feat: take `Retry-After` header into consideration for rate limited feeds
  254. * feat: set entry URL to rewritten URL if a rewrite rule is defined
  255. * feat: replace `xurls` third-party module with an ad-hoc regexp
  256. * feat: add new settings option to allow external fonts
  257. * feat: add custom user JavaScript similar to custom CSS
  258. * chore: update test case comment
  259. * build(deps): bump `golang.org/x/net` from `0.29.0` to `0.30.0`
  260. * build(deps): bump `github.com/yuin/goldmark` from `1.7.4` to `1.7.8`
  261. * build(deps): bump `github.com/tdewolff/minify/v2` from `2.20.37` to `2.21.1`
  262. * build(deps): bump `github.com/prometheus/client_golang`
  263. * build(deps): bump `github.com/andybalholm/brotli` from `1.1.0` to `1.1.1`
  264. Version 2.2.1 (September 28, 2024)
  265. ----------------------------------
  266. * refactor: split processor package into smaller files
  267. * fix(mediaproxy): forward client user-agent to origin to bypass bot protection
  268. * fix: use root URL to generate absolute proxy URL
  269. * fix: remove progression save on shared entry
  270. * fix: add datasource variable and upgrade depecrated panels on the Grafana dashboard
  271. * feat(locale): update zh_CN translations
  272. * feat(locale): update Ukrainian translations
  273. * feat(locale): update Spanish translations
  274. * feat(locale): update Dutch translations
  275. * feat: use Bilibili API instead of web scraping to get videos watch time
  276. * feat: add pagination to shared entries listing
  277. * feat: add button to show only starred entries per category
  278. * build(deps): bump `golang.org/x/term` from `0.23.0` to `0.24.0`
  279. * build(deps): bump `golang.org/x/oauth2` from `0.22.0` to `0.23.0`
  280. * build(deps): bump `golang.org/x/net` from `0.28.0` to `0.29.0`
  281. * build(deps): bump `github.com/PuerkitoBio/goquery` from `1.9.2` to `1.10.0`
  282. * build(deps): bump `github.com/prometheus/client_golang` from `1.20.3` to `1.20.4`
  283. * build(deps): bump `github.com/go-webauthn/webauthn` from `0.10.2` to `0.11.2`
  284. * build: update go.mod to Go 1.23
  285. * build: bump devcontainer version to go 1.23
  286. Version 2.2.0 (August 18, 2024)
  287. -------------------------------
  288. * refactor: simplify Youtube feeds discovery
  289. * fix(integration): define content encoding explicitly when sending article body to Readeck
  290. * fix(fever): correct sorting direction when using `max_id` argument
  291. * fix(client): Return `nil` and error if endpoint is an empty string
  292. * fix: video poster image URL is encoded twice when using `MEDIA_PROXY_MODE=all`
  293. * fix: use `BASE_URL` instead of `r.Host` to generate absolute media proxy URL
  294. * fix: panic during YouTube channel feed discovery
  295. * fix: honor `hide_globally` when creating a new feed through the api
  296. * fix: align pagination correctly on small screens with non-English text
  297. * fix: `store.GetEnclosure()` should return `nil` if no rows are returned
  298. * feat(locale): update Turkish translations
  299. * feat(locale): update French translations
  300. * feat(locale): update Chinese` translations
  301. * feat(integration): add ntfy integration
  302. * feat(api): add API routes `/v1/enclosures/{enclosureID}`
  303. * feat: validate `OAUTH2_PROVIDER` config option value
  304. * feat: remove YouTube video page subscription finder because `meta[itemprop="channelId"]` no longer exists
  305. * feat: remove well-known URL parameter trackers
  306. * feat: mark media as read when playback reaches 90%
  307. * feat: change log level to info when running migrations
  308. * feat: allow customizing the display name of the OpenID Connect provider
  309. * feat: add support for `base` HTML element when discovering feeds
  310. * feat: add support for `aside` HTML element in entry content
  311. * feat: Add option to disable local auth form
  312. * feat: add license info to Javascript files for LibreJS compatibility
  313. * feat: add `FETCH_BILIBILI_WATCH_TIME` config option
  314. * docs: update links to filtering rules
  315. * chore: avoid using legacy key/value format in Dockerfile
  316. * build(deps): bump `golang.org/x/oauth2` from `0.21.0` to `0.22.0`
  317. * build(deps): bump `golang.org/x/net` from `0.27.0` to `0.28.0`
  318. * build(deps): bump `golang.org/x/crypto` from `0.25.0` to `0.26.0`
  319. * build(deps): bump `github.com/tdewolff/minify/v2` from `2.20.36` to `2.20.37`
  320. * build(deps): bump `github.com/prometheus/client_golang`
  321. * build: update GitHub Actions to Go 1.23
  322. * build: publish OCI images only if `PUBLISH_DOCKER_IMAGES=true`
  323. * build: bump Alpine Linux build image to v3.20
  324. * build: add sha256 checksum file for published binaries
  325. Version 2.1.4 (July 9, 2024)
  326. ----------------------------
  327. * test: add unit tests for `IsModified()` behaviour
  328. * refactor: improve YouTube page feed detection
  329. * fix(ui): settings form is not populated correctly after validation errors
  330. * fix(ui): playback speed indicator precision
  331. * fix(ui): playback speed indicator on shared entries
  332. * fix(integration): preserve existing Pinboard bookmarks
  333. * fix(googlereader): set `CrawlTimeMsec` to the correct precision
  334. * fix(build): failed to solve container image `arm64v8/golang:1.22-bookworm`
  335. * fix(build): add `distroless` suffix on `latest` tag in GitHub workflow
  336. * fix: use `ETag` as a stronger validator than `Last-Modified`
  337. * fix: update `theverge.com` rewrite rule to avoid duplicate image
  338. * fix: incorrect Go package comment `reader/readingtime`
  339. * fix: error out for improper rewrite regexp when processing feed entries
  340. * fix: ensures that session cookies are not expiring before the session is cleaned up from the database as per `CLEANUP_REMOVE_SESSIONS_DAYS`
  341. * fix: `<img>` aspect ratio with `height: auto`
  342. * feat(ui): add `viewport-fit=cover`
  343. * feat(sanitizer): add support for HTML hidden attribute
  344. * feat(locale): update French translations
  345. * feat(integration): add Raindrop integration
  346. * feat(integration): add feed name to Telegram message
  347. * feat(integration): add Betula integration
  348. * feat: use of insecure TLS ciphers when "Allow self-signed or invalid certificates" is enabled to workaround some broken websites
  349. * feat: discover feeds from a Youtube playlist pages
  350. * feat: add navigation to last/first page
  351. * feat: add global block and keep filters
  352. * feat: add description field to feed settings
  353. * feat: add `pitchfork.com` scraping rule
  354. * feat: add `FETCH_NEBULA_WATCH_TIME` config option
  355. * Bump `github.com/PuerkitoBio/goquery` from` 1.9.1` to` 1.9.2`
  356. * Bump `github.com/prometheus/client_golang` from `1.19.0` to `1.19.1`
  357. * build(deps): bump `library/alpine` in `/packaging/docker/alpine`
  358. * build(deps): bump `golangci/golangci-lint-action` from `4` to `6`
  359. * build(deps): bump `golang.org/x/term` from `0.19.0` to `0.22.0`
  360. * build(deps): bump `golang.org/x/oauth2` from `0.19.0` to `0.21.0`
  361. * build(deps): bump `golang.org/x/net` from `0.22.0` to `0.27.0`
  362. * build(deps): bump `golang.org/x/crypto` from `0.24.0` to `0.25.0`
  363. * build(deps): bump `github.com/yuin/goldmark` from `1.7.1` to `1.7.4`
  364. * build(deps): bump `github.com/tdewolff/minify/v2` from `2.20.20` to `2.20.36`
  365. * build(deps): bump `github.com/coreos/go-oidc/v3` from `3.10.0` to `3.11.0`
  366. * build(deps): bump `docker/build-push-action` from `5` to `6`
  367. Version 2.1.3 (April 27, 2024)
  368. ------------------------------
  369. * `api`: `rand.Intn(math.MaxInt64)` causes tests to fail on 32-bit architectures (use `rand.Int()` instead)
  370. * `ci`: use `docker/metadata-action` instead of deprecated shell-scripts
  371. * `database`: remove `entries_feed_url_idx` index because entry URLs can exceeds btree index size limit
  372. * `finder`: find feeds from YouTube playlist
  373. * `http/response`: add brotli compression support
  374. * `integration/matrix`: fix function name in comment
  375. * `packaging`: specify container registry explicitly (e.g., Podman does not use `docker.io` by default)
  376. * `packaging`: use `make miniflux` instead of duplicating `go build` arguments (this leverages Go's PIE build mode)
  377. * `reader/fetcher`: add brotli content encoding support
  378. * `reader/processor`: minimize feed entries HTML content
  379. * `reader/rewrite`: add a rule for `oglaf.com`
  380. * `storage`: change `GetReadTime()` function to use `entries_feed_id_hash_key` index
  381. * `ui`: add seek and speed controls to media player
  382. * `ui`: add tag entries page
  383. * `ui`: fix JavaScript error when clicking on unread counter
  384. * `ui`: use `FORCE_REFRESH_INTERVAL` config for category refresh
  385. * Bump `github.com/tdewolff/minify/v2` from `2.20.19` to `2.20.20`
  386. * Bump `golang.org/x/net` from `0.22.0` to `0.24.0`
  387. * Bump `golang.org/x/term` from `0.18.0` to `0.19.0`
  388. * Bump `golang.org/x/oauth2` from `0.18.0` to `0.19.0`
  389. * Bump `github.com/yuin/goldmark` from `1.7.0` to `1.7.1`
  390. Version 2.1.2 (March 30, 2024)
  391. ------------------------------
  392. * `api`: rewrite API integration tests without build tags
  393. * `ci`: add basic ESLinter checks
  394. * `ci`: enable go-critic linter and fix various issues detected
  395. * `ci`: fix JavaScript linter path in GitHub Actions
  396. * `cli`: avoid misleading error message when creating an admin user automatically
  397. * `config`: add `FILTER_ENTRY_MAX_AGE_DAYS` option
  398. * `config`: bump the number of simultaneous workers
  399. * `config`: rename `PROXY_*` options to `MEDIA_PROXY_*`
  400. * `config`: use `crypto.GenerateRandomBytes` instead of doing it by hand
  401. * `http/request`: refactor conditions to be more idiomatic
  402. * `http/response`: remove legacy `X-XSS-Protection` header
  403. * `integration/rssbrige`: fix rssbrige import
  404. * `integration/shaarli`: factorize the header+payload concatenation as data
  405. * `integration/shaarli`: no need to base64-encode then remove the padding when we can simply encode without padding
  406. * `integration/shaarli`: the JWT token was declared as using HS256 as algorithm, but was using HS512
  407. * `integration/webhook`: add category title to request body
  408. * `locale`: update Turkish translations
  409. * `man page`: sort config options in alphabetical order
  410. * `mediaproxy`: reduce the internal indentation of `ProxifiedUrl` by inverting some conditions
  411. * `mediaproxy`: simplify and refactor the package
  412. * `model`: replace` Optional{Int,Int64,Float64}` with a generic function `OptionalNumber()`
  413. * `model`: use struct embedding for `FeedCreationRequestFromSubscriptionDiscovery` to reduce code duplication
  414. * `reader/atom`: avoid debug message when the date is empty
  415. * `reader/atom`: change `if !a { a = } if !a {a = }` constructs into `if !a { a = ; if !a {a = }}` to reduce the number of comparisons and improve readability
  416. * `reader/atom`: Move the population of the feed's entries into a new function, to make BuildFeed easier to understand/separate concerns/implementation details
  417. * `reader/atom`: refactor Atom parser to use an adapter
  418. * `reader/atom`: use `sort+compact` instead of `compact+sort` to remove duplicates
  419. * `reader/atom`: when detecting the format, detect its version as well
  420. * `reader/encoding`: inline a one-liner function
  421. * `reader/handler`: fix force refresh feature
  422. * `reader/json`: refactor JSON Feed parser to use an adapter
  423. * `reader/media`: remove a superfluous error-check: `strconv.ParseInt` returns `0` when passed an empty string
  424. * `reader/media`: simplify switch-case by moving a common condition above it
  425. * `reader/processor`: compile block/keep regex only once per feed
  426. * `reader/rdf`: refactor RDF parser to use an adapter
  427. * `reader/rewrite`: inline some one-line functions
  428. * `reader/rewrite`: simplify `removeClickbait`
  429. * `reader/rewrite`: transform a free-standing function into a method
  430. * `reader/rewrite`: use a proper constant instead of a magic number in `applyFuncOnTextContent`
  431. * `reader/rss`: add support for `<media:category>` element
  432. * `reader/rss`: don't add empty tags to RSS items
  433. * `reader/rss`: refactor RSS parser to use a default namespace to avoid some limitations of the Go XML parser
  434. * `reader/rss`: refactor RSS Parser to use an adapter
  435. * `reader/rss`: remove some duplicated code in RSS parser
  436. * `reader`: ensure that enclosure URLs are always absolute
  437. * `reader`: move iTunes and GooglePlay XML definitions to their own packages
  438. * `reader`: parse podcast categories
  439. * `reader`: remove trailing space in `SiteURL` and `FeedURL`
  440. * `storage`: do not store empty tags
  441. * `storage`: simplify `removeDuplicates()` to use a `sort`+`compact` construct instead of doing it by hand with a hashmap
  442. * `storage`: Use plain strings concatenation instead of building an array and then joining it
  443. * `timezone`: make sure the tests pass when the timezone database is not installed on the host
  444. * `ui/css`: align `min-width` with the other `min-width` values
  445. * `ui/css`: fix regression: "Add to Home Screen" button is unreadable
  446. * `ui/js`: don't use lambdas to return a function, use directly the function instead
  447. * `ui/js`: enable trusted-types
  448. * `ui/js`: fix download button loading label
  449. * `ui/js`: fix JavaScript error on the login page when the user not authenticated
  450. * `ui/js`: inline one-line functions
  451. * `ui/js`: inline some `querySelectorAll` calls
  452. * `ui/js`: reduce the scope of some variables
  453. * `ui/js`: remove a hack for "Chrome 67 and earlier" since it was released in 2018
  454. * `ui/js`: replace `DomHelper.findParent` with `.closest`
  455. * `ui/js`: replace `let` with `const`
  456. * `ui/js`: simplify `DomHelper.getVisibleElements` by using a `filter` instead of a loop with an index
  457. * `ui/js`: use a `Set` instead of an array in a `KeyboardHandler`'s member
  458. * `ui/js`: use some ternaries where it makes sense
  459. * `ui/static`: make use of `HashFromBytes` everywhere
  460. * `ui/static`: set minifier ECMAScript version
  461. * `ui`: add keyboard shortcuts for scrolling to top/bottom of the item list
  462. * `ui`: add media player control playback speed
  463. * `ui`: remove unused variables and improve JSON decoding in `saveEnclosureProgression()`
  464. * `validator`: display an error message on edit feed page when the feed URL is not unique
  465. * Bump `github.com/coreos/go-oidc/v3` from `3.9.0` to `3.10.0`
  466. * Bump `github.com/go-webauthn/webauthn` from `0.10.1` to `0.10.2`
  467. * Bump `github.com/tdewolff/minify/v2` from `2.20.18` to `2.20.19`
  468. * Bump `google.golang.org/protobuf` from `1.32.0` to `1.33.0`
  469. Version 2.1.1 (March 10, 2024)
  470. -----------------------------
  471. * Move search form to a dedicated page
  472. * Add Readeck integration
  473. * Add feed option to disable HTTP/2 to avoid fingerprinting
  474. * Add `Enter` key as a hotkey to open selected item
  475. * Proxify `video` element `poster` attribute
  476. * Add a couple of new possible locations for feeds
  477. * Hugo likes to generate `index.xml`
  478. * `feed.atom` and `feed.rss` are used by enterprise-scale/old-school gigantic CMS
  479. * Fix categories import from Thunderbird's OPML
  480. * Fix logo misalignment when using languages that are more verbose than English
  481. * Google Reader: Do not return a 500 error when no items is returned
  482. * Handle RDF feeds with duplicated `<title>` elements
  483. * Sort integrations alphabetically
  484. * Add more URL validation in media proxy
  485. * Add unit test to ensure each translation has the correct number of plurals
  486. * Add missing plurals for some languages
  487. * Makefile: quiet `git describe` and `rev-parse` stderr: When building from a tarball instead of a cloned git repo, there would be two `fatal: not a git repository` errors emitted even though the build succeeds. This is because of how `VERSION` and `COMMIT` are set in the Makefile. This PR suppresses the stderr for these variable assignments.
  488. * Makefile: do not force `CGO_ENABLED=0` for `miniflux` target
  489. * Add GitHub Action pipeline to build packages on-demand
  490. * Remove Golint (deprecated), use `staticcheck` and `golangci-lint` instead
  491. * Build amd64/arm64 Debian packages with CGO disabled
  492. * Update `go.mod` and add `.exe` suffix to Windows binary
  493. * Add a couple of fuzzers
  494. * Fix CodeQL workflow
  495. * Code and performance improvements:
  496. * Use an `io.ReadSeeker` instead of an `io.Reader` to parse feeds
  497. * Speed up the sanitizer:
  498. - Allow Youtube URLs to start with `www`
  499. - Use `strings.Builder` instead of a `bytes.Buffer`
  500. - Use a `strings.NewReader` instead of a `bytes.NewBufferString`
  501. - Sprinkles a couple of `continue` to make the code-flow more obvious
  502. - Inline calls to `inList`, and put their parameters in the right order
  503. - Simplify `isPixelTracker`
  504. - Simplify `isValidIframeSource`, by extracting the hostname and comparing it directly, instead of using the full url and checking if it starts with multiple variations of the same one (`//`, `http:`, `https://` multiplied by `/www.`)
  505. - Add a benchmark
  506. - Instead of having to allocate a ~100 keys map containing possibly dynamic values (at least to the go compiler), allocate it once in a global variable. This significantly speeds things up, by reducing the garbage
  507. - Use constant time access for maps instead of iterating on them
  508. - Build a ~large whitelist map inline instead of constructing it item by item (and remove a duplicate key/value pair)
  509. - Use `slices` instead of hand-rolled loops
  510. collector/allocator involvements.
  511. * Reuse a `Reader` instead of copying to a buffer when parsing an Atom feed
  512. * Preallocate memory when exporting to OPML: This should marginally increase performance when exporting a large amount of feeds to OPML
  513. * Delay call of `view.New` after logging the user in: There is no need to do extra work like creating a session and its associated view until the user has been properly identified and as many possibly-failing sql request have been successfully run
  514. * Use constant-time comparison for anti-csrf tokens: This is probably completely overkill, but since anti-csrf tokens are secrets, they should be compared against untrusted inputs in constant time
  515. * Simplify and optimize `genericProxyRewriter`
  516. - Reduce the amount of nested loops: it's preferable to search the whole page once and filter on it (even with filters that should always be false), than searching it again for every element we're looking for.
  517. - Factorize the proxying conditions into a `shouldProxy` function to reduce the copy-pasta.
  518. * Speed up `removeUnlikelyCandidates`: `.Not` returns a brand new `Selection`, copied element by element
  519. * Improve `EstimateReadingTime`'s speed by a factor 7
  520. - Refactorise the tests and add some
  521. - Use 250 signs instead of the whole text
  522. - Only check for Korean, Chinese and Japanese script
  523. - Add a benchmark
  524. - Use a more idiomatic control flow
  525. * Don't compute reading-time when unused: If the user doesn't display reading times, there is no need to compute them. This should speed things up a bit, since `whatlanggo.Detect` is abysmally slow.
  526. * Simplify `username` generation for the integration tests: No need to generate random numbers 10 times, generate a single big-enough one. A single int64 should be more than enough
  527. * Add missing regex anchor detected by CodeQL
  528. * Don't mix up slices capacity and length
  529. * Use prepared statements for intervals, `ArchiveEntries` and `updateEnclosures`
  530. * Use modern for-loops introduced with Go 1.22
  531. * Remove a superfluous condition: No need to check if the length of `line` is positive since we're checking afterwards that it contains the `=` sign
  532. * Close resources as soon as possible, instead of using `defer()` in a loop
  533. * Remove superfluous escaping in a regex
  534. * Use `strings.ReplaceAll` instead of `strings.Replace(…, -1)`
  535. * Use `strings.EqualFold` instead of `strings.ToLower(…) ==`
  536. * Use `.WriteString(` instead of `.Write([]byte(…`
  537. * Use `%q` instead of `"%s"`
  538. * Make `internal/worker/worker.go` read-only
  539. * Use a switch-case construct in `internal/locale/plural.go` instead of an avalanche of `if`
  540. * Template functions: simplify `formatFileSize` and `duration` implementation
  541. * Inline some templating functions
  542. * Make use of `printer.Print` when possible
  543. * Add a `printer.Print` to `internal/locale/printer.go`: No need to use variadic functions with string format interpolation to generate static strings
  544. * Minor code simplification in `internal/ui/view/view.go`: No need to create the map item by item when we can create it in one go
  545. * Build the map inline in `CountAllFeeds()`: No need to build an empty map to then add more fields in it one by one
  546. * Miscellaneous improvements to `internal/reader/subscription/finder.go`:
  547. - Surface `localizedError` in `FindSubscriptionsFromWellKnownURLs` via `slog`
  548. - Use an inline declaration for new subscriptions, like done elsewhere in the
  549. file, if only for consistency's sake
  550. - Preallocate the `subscriptions` slice when using an RSS-bridge,
  551. * Use an update-where for `MarkCategoryAsRead` instead of a subquery
  552. * Simplify `CleanOldUserSessions`' query: No need for a subquery, filtering on `created_at` directly is enough
  553. * Simplify `cleanupEntries`' query
  554. - `NOT (hash=ANY(%4))` can be expressed as `hash NOT IN $4`
  555. - There is no need for a subquery operating on the same table, moving the conditions out is equivalent.
  556. * Reformat `ArchiveEntries`'s query for consistency's sake and replace the `=ANY` with an `IN`
  557. * Reformat the query in `GetEntryIDs` and `GetReadTime`'s query for consistency's sake
  558. * Simplify `WeeklyFeedEntryCount`: No need for a `BETWEEN`: we want to filter on entries published in the last week, no need to express is as "entries published between now and last week", "entries published after last week" is enough
  559. * Add some tests for `add_image_title`
  560. * Remove `github.com/google/uuid` dependencies: Replace it with a hand-rolled implementation. Heck, an UUID isn't even a requirement according to Omnivore API docs
  561. * Simplify `internal/reader/icon/finder.go`:
  562. - Use a simple regex to parse data uri instead of a hand-rolled parser, and document what fields are considered mandatory.
  563. - Use case-insensitive matching to find (fav)icons, instead of doing the same query twice with different letter cases
  564. - Add `apple-touch-icon-precomposed.png` as a fallback `favicon`
  565. - Reorder the queries to have `icon` first, since it seems to be the most popular one. It used to be last, meaning that pages had to be parsed completely 4 times, instead of one now.
  566. - Minor factorisation in `findIconURLsFromHTMLDocument`
  567. * Small refactoring of `internal/reader/date/parser.go`:
  568. - Split dates formats into those that require local times and those who don't, so that there is no need to have a switch-case in the for loop with around 250 iterations at most.
  569. - Be more strict when it comes to timezones, previously invalid ones like -13 were accepted. Also add a test for this.
  570. - Bail out early if the date is an empty string.
  571. * Make use of Go ≥ 1.21 slices package instead of hand-rolled loops
  572. * Reorder the fields of the `Entry` struct to save some memory
  573. * Dependencies update:
  574. * Bump `golang.org/x/oauth2` from `0.17.0` to `0.18.0`
  575. * Bump `github.com/prometheus/client_golang` from `1.18.0` to `1.19.0`
  576. * Bump `github.com/tdewolff/minify/v2` from `2.20.16` to `2.20.18`
  577. * Bump `github.com/PuerkitoBio/goquery` from `1.8.1` to `1.9.1`
  578. * Bump `golang.org/x/crypto` from `0.19.0` to `0.20.0`
  579. * Bump `github.com/go-jose/go-jose/v3` from `3.0.1` to `3.0.3`
  580. Version 2.1.0 (February 17, 2024)
  581. ---------------------------------
  582. * Add Linkwarden integration
  583. * Add LinkAce integration
  584. * Add `FORCE_REFRESH_INTERVAL` config option
  585. * Add `item-meta-info-reading-time` CSS class
  586. * Add `add_dynamic_iframe` rewrite function
  587. * Add attribute `data-original-mos` to `add_dynamic_image` rewrite candidates
  588. * Update entry processor to allow blocking/keeping entries by tags and/or authors
  589. * Change default `Accept` header when fetching feeds
  590. * Rewrite relative RSS Bridge URL to absolute URL
  591. * Use numeric user ID in Alpine and distroless container image (avoid `securityContext` error in Kubernetes)
  592. * Always try to use HTTP/2 when fetching feeds if available
  593. * Add `type` attribute in OPML export as per OPML 2.0 specs
  594. * Fix missing translation argument for the key `error.unable_to_parse_feed`
  595. * Fix Debian package builder when using Go 1.22 and `armhf` architecture
  596. * Fix typo in log message
  597. * Fix incorrect label shown when saving an article
  598. * Fix incorrect condition in refresh feeds cli
  599. * Fix incorrect label `for` attribute
  600. * Add missing label ID for custom CSS field
  601. * Accessibility improvements:
  602. * Add workaround for macOS VoiceOver that didn't announce `details` and `summary` when expanded
  603. * Add `alert` role to alert message element
  604. * Add a `h2` heading to the article element so that the screen reader users can navigate the article through the heading level
  605. * Add an `aria-label` attribute for the article element for screen readers
  606. * Remove the icon image `alt` attribute in feeds list to prevent screen reader to announce it before entry title
  607. * Add `sr-only` CSS class for screen reader users (provides more context)
  608. * Differentiate between buttons and links
  609. * Change links that could perform actions to buttons
  610. * Improve translation of hidden Aria elements
  611. * Remove the redundant article role
  612. * Add a search landmark for the search form so that the screen reader users can navigate to it
  613. * Add skip to content link
  614. * Add `nav` landmark to page header links
  615. * Limit feed/category entry pagination to unread entries when coming from unread entry list
  616. * Update German translation
  617. * Update GitHub Actions to Go 1.22
  618. * Bump `golang.org/x/term` from `0.16.0` to `0.17.0`
  619. * Bump `github.com/google/uuid` from `1.5.0` to `1.6.0`
  620. * Bump `github.com/yuin/goldmark` from `1.6.0` to `1.7.0`
  621. * Bump `golang.org/x/oauth2` from `0.15.0` to `0.17.0`
  622. * Bump `github.com/tdewolff/minify/v2` from `2.20.10` to `2.20.12`
  623. * Bump `golang.org/x/term` from `0.15.0` to `0.16.0`
  624. * Bump `github.com/prometheus/client_golang` from `1.17.0` to `1.18.0`
  625. * Bump `github.com/tdewolff/minify/v2` from `2.20.9` to `2.20.16`
  626. * Bump `golang.org/x/crypto` from `0.16.0` to `0.19.0`
  627. * Bump `github.com/go-webauthn/webauthn` from `0.9.4` to` 0.10.1`
  628. * Bump `golang.org/x/net` from `0.20.0` to `0.21.0`
  629. Version 2.0.51 (December 13, 2023)
  630. ----------------------------------
  631. * Add Omnivore integration
  632. * Fixes for the regressions introduced in version 2.0.50:
  633. * Ensure all HTML documents are encoded in UTF-8
  634. * Send default User-Agent and HTTP caching headers when making HTTP requests
  635. * Allow Youtube links to be opened outside the `iframe` (avoid `ERR_BLOCKED_BY_RESPONSE` error)
  636. * Fix inaccessible metrics endpoint when listening on Unix socket
  637. * Allow renaming and moving feed at the same time in the Google Reader API
  638. * Log `nb_jobs` only when number of jobs is larger than 0 in background scheduler
  639. * Deduplicate feed URLs when parsing HTML document during discovery process
  640. * Calculate a virtual weekly count based on the average updating frequency (`POLLING_SCHEDULER=entry_frequency`)
  641. * Update GitHub Actions workflow to be able to run the linter and tests on-demand
  642. * Add `SCHEDULER_ROUND_ROBIN_MIN_INTERVAL` config option
  643. * Add links to GitHub for the commit hash and the version in the about page
  644. * Use "starred" rather than "bookmarked" in English translation
  645. * Update Chinese (CN & TW) translation
  646. * Bump `github.com/google/uuid` from `1.4.0` to `1.5.0`
  647. * Bump `github.com/coreos/go-oidc/v3` from `3.7.0` to `3.9.0`
  648. * Bump `github.com/tdewolff/minify/v2` from `2.20.6` to `2.20.9`
  649. * Bump `github.com/go-webauthn/webauthn` from `0.8.6` to `0.9.4`
  650. * Bump `golang.org/x/oauth2` from `0.14.0` to `0.15.0`
  651. Version 2.0.50 (November 12, 2023)
  652. ----------------------------------
  653. * Add WebAuthn / Passkey integration
  654. * Add RSS-Bridge integration
  655. * Take RSS TTL field into consideration to schedule next check date
  656. * Show number of visible entries instead of number of read entries in feed list
  657. * OpenID Connect: Redirect to configured user home page after successful authentication
  658. * Google Reader API fixes:
  659. * `user/{userID}/state/com.google/read` is missing in categories section for read entries
  660. * Take `ExcludeTargets` into consideration in feed stream handler
  661. * Allow iframes pointing to Twitch videos
  662. * Filter feed entries based on URL or title
  663. * Take into consideration `hide_globally` property defined for categories in `/v1/entries` API endpoint
  664. * Add category ID to webhooks request body
  665. * Update date parser to parse more invalid date formats
  666. * Refactor feed discovery handler, and avoid an extra HTTP request if the URL provided is the feed
  667. * Refactor HTTP Client and `LocalizedError` packages
  668. * Refactor Batch Builder, and prevent accidental and excessive refreshes from the web UI
  669. * Refactor icon finder:
  670. - Continue the discovery process when the feed icon is invalid
  671. - Search all icons from the HTML document and do not stop on the first one
  672. * Add support for SVG icons with data URL without encoding
  673. * Expose `next_check_at` in the web ui and API
  674. * Add database indexes to improve performance
  675. * Change log level to warning for failed feeds refresh in cronjob
  676. * Do not log website without icon as warning
  677. * Add GitHub workflow to build binaries
  678. * Add GitHub extensions to devcontainer
  679. * Make sure to pull the latest base image when building the Docker image
  680. * Strip version prefix when building Debian package
  681. * Add `github-cli` and `docker-outside-of-docker` features to devcontainer
  682. * Bump `golang.org/x/*` dependencies
  683. * Bump `github.com/gorilla/mux` from `1.8.0` to `1.8.1`
  684. * Bump `github.com/tdewolff/minify/v2` from `2.19.9` to `2.20.6`
  685. * Bump `github.com/yuin/goldmark` from `1.5.6` to `1.6.0`
  686. * Bump `github.com/coreos/go-oidc/v3` from `3.6.0` to `3.7.0`
  687. Version 2.0.49 (October 15, 2023)
  688. ---------------------------------
  689. * Implement structured logging using `log/slog` package. New config options available:
  690. * `LOG_FORMAT`: `json` or `text`
  691. * `LOG_LEVEL`: `debug`, `info`, `warning`, or `error`
  692. * `LOG_FILE`: `sdterr`, `stdout`, or a file path
  693. * The `DEBUG` option is now deprecated in favor of `LOG_LEVEL`
  694. * API Improvements:
  695. * Add endpoint `/v1/version`
  696. * Add endpoint `PUT /v1/entries` to update entry title and content
  697. * Add endpoint `/v1/icons/{iconID}`
  698. * Add endpoint `/v1/flush-history` to flush history
  699. * Make the category optional when creating feeds for API clients who don't support categories
  700. * Add enclosures to `GET /v1/entries` endpoint
  701. * Add `published_after`, `published_before`, `changed_after` and `changed_before` options to `/v1/entries` endpoint
  702. * Telegram integration improvements:
  703. * Replace feed HTML link with a button to avoid page preview issues
  704. * Add the possibility to disable buttons
  705. * Add Bruno Miniflux API collection in `contrib` folder (Bruno is an open source alternative to Postman/Insomnia)
  706. * Add command line argument to export user feeds as OPML
  707. * Add new rewrite rules `add_hn_links_using_hack` and `add_hn_links_using_opener` to open HN comments with iOS apps
  708. * Fix timestamp format for `Expires` response header
  709. * Fix Javascript error when reading time option is disabled
  710. * Fix Apprise logic to handle feed service URLs
  711. * Fix missing word in force refresh message
  712. * Remove deprecated `PreferServerCipherSuites` TLS option
  713. * Replace `github.com/rylans/getlang` with `github.com/abadojack/whatlanggo` because `getlang` doesn't seems to be updated anymore
  714. * Bump `github.com/mccutchen/go-httpbin/v2` from `2.11.0` to `2.11.1`
  715. * Bump `golang.org/x/*` dependencies
  716. Version 2.0.48 (September 15, 2023)
  717. -----------------------------------
  718. * Add generic webhook integration
  719. * Send webhook events when new entries are detected
  720. * Send wehbook events when saving an entry
  721. * Sign the outgoing requests with HMAC-SHA256
  722. * Improve Telegram integration
  723. * Add built-in Telegram client
  724. * Remove dependency on `go-telegram-bot-api` library
  725. * Add new options:
  726. * Optional topic ID
  727. * Disable page preview
  728. * Disable notifications
  729. * Add new button to go to article
  730. * Improve Matrix integration
  731. * Add built-in Matrix client
  732. * Remove dependency on `gomatrix` library
  733. * Send HTML formatted messages to Matrix
  734. * OpenID Connect authentication improvements:
  735. * Add OAuth2 PKCE support
  736. * Add `profile` scope to OIDC integration to support accounts without email address
  737. * Prevent empty username when using the OIDC integration
  738. * Add `factor` for `entry_frequency` scheduler:
  739. * Allow the user to increase the frequency of the `entry_frequency`
  740. scheduler by a configurable factor in order to shorten the time between
  741. updates.
  742. * Fix: status bar is unreadable when using PWA in dark mode on Firefox Android
  743. * Group form fields into fieldsets to improve page layout
  744. * Update Russian translation
  745. * Make sure icon URLs are always absolute
  746. * Add Apprise service URLs per feed
  747. * Trim `username` and `password` form fields
  748. * Strip HTML tags from DublinCore Creator tags
  749. * Fix scroll up behavior on Firefox Android
  750. * Add missing `return` statement in `fetchContent` UI handler
  751. * Add `replace_title` rewrite rule to adjust entry titles
  752. * Fix Pocket integration redirect URL and Google Reader API HREF
  753. * Fix feed `hide_globally` property to use it with third-party clients.
  754. Version 2.0.47 (August 20, 2023)
  755. --------------------------------
  756. * Update rules for `webtoons.com`
  757. * Use HTTP client from the standard library for third-party integrations
  758. * Rename internal `url` package to `urllib` to avoid overlap with `net/url`
  759. * Add Shaarli integration
  760. * Add Shiori integration
  761. * Add Apprise integration
  762. * Add Readwise Reader integration
  763. * Consider base path when generating third-party services API endpoint
  764. * Use podcast duration tag as reading time
  765. * Move internal packages to an `internal` folder
  766. * For reference: <https://go.dev/doc/go1.4#internalpackages>
  767. * Rename Miniflux package name to follow Go module naming convention
  768. * For reference: <https://go.dev/ref/mod#major-version-suffixes>
  769. * Update RockyLinux image from 8 to 9 (used to build RPM package)
  770. * Add force refresh in feed edit and feed entries page
  771. * Use Odysee video duration as read time
  772. * Upgrade to Go 1.21
  773. * Use details disclosure element to show the list of third-party services
  774. * Use Web Share API for sharing entry
  775. * Add a workaround for parsing some invalid date format
  776. * Add Thunder Client API collection into contrib folder
  777. * Add new API endpoint: `/entries/{entryID}/save`
  778. * Trigger Docker and packages workflows only for semantic tags
  779. * Go module versioning expect Git tags to start with the letter v.
  780. * The goal is to keep the existing naming convention for generated artifacts and
  781. have proper versioning for the Go module.
  782. * Bump `golang.org/x/*` dependencies
  783. * Bump `github.com/yuin/goldmark`
  784. * Bump `github.com/tdewolff/minify/v2`
  785. * Bump `github.com/mccutchen/go-httpbin/v2`
  786. Version 2.0.46 (July 21, 2023)
  787. ------------------------------
  788. * Add scraper and rewrite rules for Webtoons
  789. * Fix regression in integration page and simplify SQL query
  790. * Wallabag integration: add more information in log messages
  791. * Add support for custom Youtube embed URL
  792. * Fix accessibility issues in modal component
  793. * Fix modal aria role
  794. * Trap focusing with tab / shift+tab inside the modal
  795. * Restore keyboard focus when closing modal
  796. * Automatically move keyboard focus to first focusable element unless specified otherwise
  797. * Keyboard shortcut help modal: move keyboard focus to modal title
  798. * Keyboard shortcut help modal: change close control from link to button
  799. * Add Notion integration
  800. * Update `golang.org/x/*` dependencies and `go-oidc` to v3.6.0
  801. * Improve responsive design
  802. * Add user setting for marking entry as read on view
  803. * Improve Russian translation
  804. * Add the possibility to run cleanup tasks from the command line
  805. * Add the possibility to run Miniflux as a cronjob
  806. * Use `go-httpbin` to run tests locally and avoid remote calls to `httpbin.org`
  807. * Display tags when viewing entries
  808. * Update categories API endpoint to return `total_unread` and `feed_count`
  809. * Improve date parser to handle various broken date formats
  810. * Avoid `pq: time zone displacement out of range` errors
  811. * Improve entry existance check to make better use of index
  812. * Add unique index `enclosures_user_entry_url_idx`
  813. * Add mark as unread for Linkding integration
  814. * Add sub-folder support for Wallabag integration
  815. * Use RockyLinux to build RPM package
  816. * Disable CGO when building RPM package
  817. * Disable CGO when building Docker images
  818. Version 2.0.45 (June 21, 2023)
  819. ------------------------------
  820. * Add media player to listen to audio and video podcasts with the possiblity to resume to last playback position
  821. * Add default tag names for Linkding integration
  822. * Mark only globally visible entries when marking all entries from UI
  823. * Use image included in feed as feed icon when available
  824. * Order history by `changed_at` and `published_at`
  825. * Remove title attribute from entry title links
  826. * Fix reading time that is not aligned correctly with the latest version of Safari
  827. * Use glyphs of the same size on keyboard shortcuts page
  828. * Add maskable versions of the PWA icon
  829. * Replace copyright header with SPDX identifier
  830. * Remove the "í" letter from the Portuguese "lido" word
  831. * Increase golangci-lint timeout value
  832. * Bump `github.com/tdewolff/minify/v2`, `github.com/prometheus/client_golang`, `golang.org/x/*` dependencies
  833. Version 2.0.44 (May 6, 2023)
  834. ----------------------------
  835. * Add link to the URL rewrite rules documentation
  836. * Update scraping rules for `ilpost.it`
  837. * Update rewrite rules for `theverge.com`
  838. * Add a rewrite rule to remove clickbait titles
  839. * Make sure `PROXY_IMAGES` option is backward compatible with `PROXY_OPTION` and `PROXY_MEDIA_TYPES`
  840. * Add new rule to remove tables
  841. * Add support for searching well-known URLs in subdirectory
  842. * Add CSS `word-wrap` rule to break very long entry title into multiple lines
  843. * Add swipe as option for gesture navigation between entries. There are now 3 possible choices: `none`, `double-tap`, and `swipe`.
  844. * Prefer typographic punctuation in English translation
  845. * Process older entries first:
  846. - Feed entries are usually ordered from most to least recent.
  847. - Processing older entries first ensures that their creation timestamp
  848. is lower than that of newer entries.
  849. - This is useful when we order by creation, because then we get a
  850. consistent timeline.
  851. * Fix Grafana dashboard
  852. * Push Docker images to `Quay.io` (RedHat)
  853. * Bump `golang.org/x/*`, `github.com/lib/pq`, `mvdan.cc/xurls/v2` and `github.com/prometheus/client_golang` dependencies
  854. Version 2.0.43 (March 16, 2023)
  855. -------------------------------
  856. * Avoid XSS when opening a broken image due to unescaped ServerError in proxy handler (CVE-2023-27592)
  857. Creating an RSS feed item with the inline description containing an `<img>` tag
  858. with a `srcset` attribute pointing to an invalid URL like
  859. `http:a<script>alert(1)</script>`, we can coerce the proxy handler into an error
  860. condition where the invalid URL is returned unescaped and in full.
  861. This results in JavaScript execution on the Miniflux instance as soon as the
  862. user is convinced to open the broken image.
  863. * Use `r.RemoteAddr` to check `/metrics` endpoint network access (CVE-2023-27591)
  864. HTTP headers like `X-Forwarded-For` or `X-Real-Ip` can be easily spoofed. As
  865. such, it cannot be used to test if the client IP is allowed.
  866. The recommendation is to use HTTP Basic authentication to protect the
  867. metrics endpoint, or run Miniflux behind a trusted reverse-proxy.
  868. * Add HTTP Basic authentication for `/metrics` endpoint
  869. * Add proxy support for several media types
  870. * Parse feed categories from RSS, Atom and JSON feeds
  871. * Ignore empty link when discovering feeds
  872. * Disable CGO explicitly to make sure the binary is statically linked
  873. * Add CSS classes to differentiate between category/feed/entry view and icons
  874. * Add rewrite and scraper rules for `blog.cloudflare.com`
  875. * Add `color-scheme` to themes
  876. * Add new keyboard shortcut to toggle open/close entry attachments section
  877. * Sanitizer: allow `id` attribute in `<sup>` element
  878. * Add Indonesian Language
  879. * Update translations
  880. * Update Docker Compose examples:
  881. - Run the application in one command
  882. - Bring back the health check condition to `depends_on`
  883. - Remove deprecated `version` element
  884. * Update scraping rules for `ilpost.it`
  885. * Bump `github.com/PuerkitoBio/goquery` from `1.8.0` to `1.8.1`
  886. * Bump `github.com/tdewolff/minify/v2` from `2.12.4` to `2.12.5`
  887. * Bump `github.com/yuin/goldmark` from `1.5.3` to `1.5.4`
  888. * Bump `golang.org/x/*` dependencies
  889. Version 2.0.42 (January 29, 2023)
  890. ---------------------------------
  891. * Fix header items wrapping
  892. * Add option to enable or disable double tap
  893. * Improve PWA display mode label in settings page
  894. * Bump `golang.org/x/*` dependencies
  895. * Update translations
  896. * Add scraping rule for `ilpost.it`
  897. * Update reading time HTML element after fetching the original web page
  898. * Add category feeds refresh feature
  899. Version 2.0.41 (December 10, 2022)
  900. ----------------------------------
  901. * Reverted PR #1290 (follow the only link) because it leads to several panics/segfaults that prevent feed updates
  902. * Disable double-tap mobile gesture if swipe gesture is disabled
  903. * Skip integrations if there are no entries to push
  904. * Enable TLS-ALPN-01 challenge for ACME
  905. - This type of challenge works purely at the TLS layer and is compatible
  906. with SNI proxies. The existing HTTP-01 challenge support has been left
  907. as-is.
  908. * Preconfigure Miniflux for GitHub Codespaces
  909. * Updated `golang.org/x/net/*` dependencies
  910. Version 2.0.40 (November 13, 2022)
  911. ----------------------------------
  912. * Update dependencies
  913. * Pin Postgres image version in Docker Compose examples to avoid unexpected upgrades
  914. * Make English and Spanish translation more consistent:
  915. - Use "Feed" everywhere instead of "Subscription"
  916. - Use "Entry" instead of "Article"
  917. * Allow Content-Type and Accept headers in CORS policy
  918. * Use dirs file for Debian package
  919. * Use custom home page in PWA manifest
  920. * Fix scraper rule that could be incorrect when there is a redirect
  921. * Improve web scraper to fetch the only link present as workaround to some landing pages
  922. * Add Matrix bot integration
  923. * Proxify images in API responses
  924. * Add new options in user preferences to configure sorting of entries in the category page
  925. * Remove dependency on `github.com/mitchellh/go-server-timing`
  926. * Add support for the `continuation` parameter and result for Google Reader API ID calls
  927. * Use automatic variable for build target file names
  928. * Add rewrite rule for `recalbox.com`
  929. * Improve Dutch translation
  930. Version 2.0.39 (October 16, 2022)
  931. ---------------------------------
  932. * Add support for date filtering in Google Reader API item ID calls
  933. * Handle RSS entries with only a GUID permalink
  934. * Go API Client: Accept endpoint URLs ending with `/v1/`
  935. * CORS API headers: Allow `Basic` authorization header
  936. * Log feed URL when submitting a subscription that returns an error
  937. * Update `make run` command to execute migrations automatically
  938. * Add option to send only the URL to Wallabag
  939. * Do not convert anchors to absolute links
  940. * Add config option to use a custom image proxy URL
  941. * Allow zoom on mobile devices
  942. * Add scraping rules for `theverge.com`, `royalroad.com`, `swordscomic.com`, and `smbc-comics.com`
  943. * Add Ukrainian translation
  944. * Update `golang.org/x/*` dependencies
  945. * Bump `github.com/tdewolff/minify/v2` from `2.12.0` to `2.12.4`
  946. * Bump `github.com/yuin/goldmark` from `1.4.13` to `1.5.2`
  947. * Bump `github.com/lib/pq` from `1.10.6` to `1.10.7`
  948. Version 2.0.38 (August 13, 2022)
  949. --------------------------------
  950. * Rename default branch from master to main
  951. * Update GitHub Actions
  952. * Bump `github.com/prometheus/client_golang` from `1.12.2` to `1.13.0`
  953. * Fix some linter issues
  954. * Handle Atom links with a text/html type defined
  955. * Add `parse_markdown` rewrite function
  956. * Build RPM and Debian packages automatically using GitHub Actions
  957. * Add `explosm.net` scraper rule
  958. * Make default home page configurable
  959. * Add title attribute to entry links because text could be truncated
  960. * Highlight categories with unread entries
  961. * Allow option to order by title and author in API entry endpoint
  962. * Update Russian translation
  963. * Make reading speed user-configurable
  964. * Added translation for Hindi language used in India
  965. * Add rewrite rules for article URL before fetching content
  966. * Bump `github.com/tdewolff/minify/v2` from `2.11.7` to `2.12.0`
  967. * Support other repo owners in GitHub Docker Action
  968. * Proxify empty URL should not crash
  969. * Avoid stretched image if specified width is larger than Miniflux's layout
  970. * Add support for OPML files with several nested outlines
  971. * sanitizer: handle image URLs in `srcset` attribute with comma
  972. * Allow `width` and `height` attributes for `img` tags
  973. * Document that `-config-dump` command line argument shows sensitive info
  974. * Add System-V init service in contrib folder
  975. * Fix syntax error in `RequestBuilder.getCsrfToken()` method
  976. Version 2.0.37 (May 27, 2022)
  977. -----------------------------
  978. * Add rewrite rule to decode base64 content
  979. * Add Linkding integration
  980. * Add comment button to Telegram message
  981. * Add API endpoint to fetch unread and read counters
  982. * Fixes logic bug in Google Reader API sanity check
  983. * Reduce number of CORS preflight check to save network brandwidth
  984. * Add Espial integration
  985. * Allow API search for entries which are not starred
  986. * Try to use outermost element text when title is empty
  987. * Make swipe gestures feel more natural
  988. - Removes opacity transition when swiping an article read/unread
  989. - Adds "resistance" to the swiped entry when the 75px threshold is
  990. reached
  991. - Fixes an issue in which a swiped article couldn't be moved <15px
  992. * Add support for feed streams to Google Reader API IDs API
  993. * Fix invalid parsing of icon data URL
  994. * Add Traditional Chinese translation
  995. * Add distroless Docker image variant
  996. * Add Go 1.18 to GitHub Action
  997. * Bump `github.com/tdewolff/minify/v2` from `2.10.0` to `2.11`
  998. * Bump `github.com/prometheus/client_golang` from `1.12.1` to `1.12.2`
  999. * Bump `github.com/lib/pq` from `1.10.4` to `1.10.6`
  1000. Version 2.0.36 (March 8, 2022)
  1001. ------------------------------
  1002. * Gray out pagination buttons when they are not applicable
  1003. * Use truncated entry description as title if unavailable
  1004. * Do not fallback to InnerXML if XHTML title is empty
  1005. * Add `+` keyboard shortcut for new subscription page
  1006. * Add `(+)` action next to Feeds to quickly add new feeds
  1007. * Fix unstar not working via Google Reader API
  1008. * Remove circles in front of page header list items
  1009. * Fix CSS hover style for links styled as buttons
  1010. * Avoid showing `undefined` when clicking on read/unread
  1011. * Add new keyboard shortcut `M` to toggle read/unread, and go to previous item
  1012. * Add several icons to menus according to their roles
  1013. * Add missing event argument to `onClick()` function call
  1014. * Add links to scraper/rewrite/filtering docs when editing feeds
  1015. * Add a rewrite rule for Castopod episodes
  1016. * Fix regression: reset touch-item if not in `/unread` page
  1017. * Add API endpoint to fetch original article
  1018. * Show the category first in feed settings
  1019. * Add pagination on top of all entries
  1020. * Display Go version in "About" page
  1021. * Bump `mvdan.cc/xurls/v2` from 2.3.0 to 2.4.0
  1022. * Bump `github.com/prometheus/client_golang` from 1.11.0 to 1.12.1
  1023. * Bump `github.com/tdewolff/minify/v2` from 2.9.28 to 2.10.0
  1024. Version 2.0.35 (January 21, 2022)
  1025. ---------------------------------
  1026. * Set `read-all` permission to `GITHUB_TOKEN` for GitHub Actions
  1027. * Pin `jshint` version in linter job
  1028. * Fix incorrect conversion between integer types
  1029. * Add new GitHub Actions workflows: CodeQL and Scorecards analysis
  1030. * Handle Atom feeds with space around CDATA
  1031. * Bump `github.com/tdewolff/minify/v2` from 2.9.22 to 2.9.28
  1032. * Add Documentation directive to Systemd service
  1033. * Do not reset `touch-item` if successfully swiped
  1034. * Add support for multiple authors in Atom feeds
  1035. * Omit `User-Agent` header in image proxy to avoid being blocked
  1036. * Use custom feed user agent to fetch website icon
  1037. * Make default Invidious instance configurable
  1038. * Add new rewrite rule `add_youtube_video_from_id` to add Youtube videos in Quanta articles
  1039. * Add scrape and rewrite rules for `quantamagazine.org`
  1040. * Expose entry unshare link in the entry and list views
  1041. * Add Google Reader API implementation (experimental)
  1042. * Add `Content-Security-Policy` header to feed icon and image proxy endpoints
  1043. - SVG images could contain Javascript. This CSP blocks inline script.
  1044. - Feed icons are served using `<img>` tag and Javascript is not interpreted.
  1045. * Add Finnish translation
  1046. * Add scraper rule for `ikiwiki.iki.fi`
  1047. * Remove `SystemCallFilter` from `miniflux.service`
  1048. * Fix minor typo in French translation
  1049. Version 2.0.34 (December 16, 2021)
  1050. ----------------------------------
  1051. * Add rewrite rule for comics website http://monkeyuser.com
  1052. * Add `<head>` tag to OPML export
  1053. * Tighten Systemd sandboxing and update comments in `miniflux.service`
  1054. * Add `RuntimeDirectory` to Systemd service
  1055. * Order disabled feeds at the end of the list
  1056. * Add support for theme color based on preferred color scheme of OS
  1057. * Bump `github.com/lib/pq` from 1.10.3 to 1.10.4
  1058. * Bump `github.com/PuerkitoBio/goquery` from 1.7.1 to 1.8.0
  1059. * Fix typos in `model/icon.go`
  1060. * Add `data-srcset` support to `add_dynamic_image rewrite` rewrite rule
  1061. * Fix Docker Compose example files compatibility to v3
  1062. * Added the `role="article"` to `<article>` elements for better accessibility with screen readers
  1063. * Redact secrets shown on the about page
  1064. * Handle `srcset` images with no space after comma
  1065. * Hide the logout link when using auth proxy
  1066. * Fix wrong CSS variable
  1067. * Change `-config-dump` command to use `KEY=VALUE` format
  1068. Version 2.0.33 (September 25, 2021)
  1069. -----------------------------------
  1070. * Build RPM and Debian package with PIE mode enabled
  1071. * Add CSS rule to hide `<template>` tag in old browsers
  1072. * Bump `github.com/tdewolff/minify/v2 from 2.9.21 to 2.9.22`
  1073. * Bump `github.com/lib/pq from 1.10.2 to 1.10.3`
  1074. * Remove `RequestURI()` hack
  1075. * Improve `zh_CN` translation
  1076. * Add ability to change entry sort order in the UI
  1077. * Add minor improvements in integration package
  1078. * Add Telegram integration
  1079. * Add rewrite rule to remove DOM elements
  1080. * Add proxy argument to `scraper.Fetch()`
  1081. * Add mime type `application/feed+json` to discover JSON Feed v1.1
  1082. * Update scraper rule for `theregister.com`
  1083. * Add Go 1.17 to GitHub Actions
  1084. * Display option to hide feed only when category is not already hidden
  1085. * Add option to hide feeds from the global Unread list
  1086. Version 2.0.32 (August 14, 2021)
  1087. --------------------------------
  1088. * Bump `github.com/tdewolff/minify/v2` from 2.9.17 to 2.9.21
  1089. * Bump `mvdan.cc/xurls/v2` from 2.2.0 to 2.3.0
  1090. * Bump `github.com/PuerkitoBio/goquery` from 1.6.1 to 1.7.1
  1091. * Bump `github.com/prometheus/client_golang` from 1.10.0 to 1.11.0
  1092. * Add `/rss/` to the list of well known URLs during feed discovery
  1093. * Use `authors` entry for JSON 1.1 feeds
  1094. * Added Greek translation
  1095. * Added the ability to mark an entire category as read in the web ui
  1096. * Added "in" in "logged in" for en_US `tooltip.logged_user`
  1097. * Added option to hide categories from the global unread list
  1098. * Show "saving" labels for entry status button
  1099. * Golang client: Try to parse response body on `InternalServerError` errors
  1100. * contrib: Add support for a $MINIFLUX_IMAGE env var in docker-compose
  1101. * contrib: Bump docker-compose version to 3.4
  1102. Version 2.0.31 (June 6, 2021)
  1103. -----------------------------
  1104. * Expose comments_url entry field in Golang API client
  1105. * Use unique file names for cache busting instead of query string
  1106. * Highlight and sort feeds with unread entries in feeds list
  1107. * Mark items as read on click/middle click of external links
  1108. * Fix: Firefox on Windows does not show the active link as bold
  1109. * Avoid extra HTTP request for fetching custom stylesheet
  1110. * Remove invalid CSRF HTML meta tag
  1111. * Add lang attribute to root HTML tag
  1112. * Use runes instead of bytes to truncate JSON feed titles (avoid breaking Unicode strings)
  1113. * Expose changed_at time through the API
  1114. * Add new config option CLEANUP_ARCHIVE_BATCH_SIZE
  1115. * Add new option DATABASE_CONNECTION_LIFETIME
  1116. * Add database stats to Prometheus exporter
  1117. * Add Systemd watchdog
  1118. * Avoid custom stylesheet to be cached by third-party CDN
  1119. * Update a shared entry label translation in zh_CN
  1120. * Bump github.com/tdewolff/minify/v2 from 2.9.16 to 2.9.17
  1121. * Bump github.com/lib/pq from 1.10.1 to 1.10.2
  1122. Version 2.0.30 (May 7, 2021)
  1123. ----------------------------
  1124. * Security fix: any user can delete any feed (Regression introduced in commit 51fb949)
  1125. * Fix password reset via CLI
  1126. * Increase default batch size value
  1127. * Handle RSS feed title with encoded Unicode entities
  1128. * Show number of unread per category in category list instead of number of feeds
  1129. * Bump github.com/lib/pq from 1.10.0 to 1.10.1
  1130. * Filtering doesn't work when selecting from multiple found feeds
  1131. * Bump github.com/tdewolff/minify/v2 from 2.9.15 to 2.9.16
  1132. * Use an appropriate color for visited links on dark theme
  1133. * Fix typo in reader/json/doc.go
  1134. * Create SECURITY.md
  1135. * Setup golangci-lint Github Action
  1136. * Add per feed cookies option
  1137. * Bump github.com/prometheus/client_golang from 1.9.0 to 1.10.0
  1138. * Bump github.com/tdewolff/minify/v2 from 2.9.13 to 2.9.15
  1139. Version 2.0.29 (Mar 21, 2021)
  1140. -----------------------------
  1141. * Miniflux requires at least Go 1.16 now
  1142. * Improved support of Atom text constructs
  1143. - Improve handling of CDATA in text elements
  1144. - Omit XHTML root element because it should not be part of the content
  1145. - Fix incorrect parsing of HTML elements
  1146. * Handle RDF feed with HTML encoded entry title
  1147. * Add Turkish language
  1148. * Improve deletion of feeds with lots of entries
  1149. * Add support of Systemd readiness notification using the sd_notify protocol
  1150. * Remove feed_icons service worker cache because it's causing more problems than it solves (and HTTP cache seems faster)
  1151. * Add basic PWA offline page
  1152. - Add basic offline mode when using the service worker
  1153. - Starting in Chrome 93, offline mode is going to be a requirement to install the PWA
  1154. * Replace icon for "Add to home screen" button
  1155. * Use SVG icons for "toast" notifications
  1156. * Use SVG sprite for icons instead of inline elements
  1157. * Reset scroll position on mark page as read
  1158. * Add link to mark all feed entries as read
  1159. * Make web app display mode configurable (The change is visible after reinstalling the web app)
  1160. * Handle RSS feeds with CDATA in author item element
  1161. * Add read time on the article page
  1162. * Avoid showing a broken image when there is no feed icon
  1163. * Add option to allow self-signed or invalid certificates
  1164. * Add new config option to scrape YouTube's website to get video duration as read time (disabled by default)
  1165. * Send full article content to Wallabag
  1166. * Add more extensive health check support
  1167. - Improve endpoint to test database connection
  1168. - Add new cli argument: -healthcheck
  1169. - Update Docker Compose examples
  1170. * Update iframe "allow list" to support Bilibili videos
  1171. * Remove completely generated files and use embed package to bundle JS/CSS/Images/Translations files into the final binary
  1172. * Remove deprecated io/ioutil package
  1173. * Show Postgres version in "About" page
  1174. Version 2.0.28 (Feb 15, 2021)
  1175. -----------------------------
  1176. * Add HTTP header "Referrer-Policy: no-referrer"
  1177. * Handle entry title with double encoded entities
  1178. * Add Open Containers annotations to Docker image
  1179. * Remove iframe inner HTML contents (iframe element never has fallback content)
  1180. * Update date parser to fix another time zone issue
  1181. * Update German translation for blocklist and keeplist
  1182. * Validate Keep list and Block list rules syntax
  1183. * Add support for IPv6 with zone index
  1184. * Allow images with data URLs
  1185. * Limit full-text search indexation to first 500K characters (tsvector has a size limit of 1MB)
  1186. * Change PWA display mode to standalone
  1187. * ETag value is not set correctly in HTTP client (regression)
  1188. * Add database backed Let's Encrypt certificate cache
  1189. * Add global option POLLING_PARSING_ERROR_LIMIT
  1190. * Update systemd service file comments to use `systemctl edit` for editing
  1191. * Update Go version to 1.15 in go.mod
  1192. * Don't discard the "Fetch via Proxy" option
  1193. * Update man page to show the default values
  1194. * Add PostgreSQL indices
  1195. * Add API endpoints to get feeds and entries of a category
  1196. * Create feed query builder
  1197. * Bump github.com/PuerkitoBio/goquery from 1.6.0 to 1.6.1
  1198. * Show global options in the about page
  1199. * Update man page to mention -1 can be used for CLEANUP_ARCHIVE_* options
  1200. Version 2.0.27 (Jan 9, 2021)
  1201. ----------------------------
  1202. * Add spellcheck="false" to input fields
  1203. * Refactoring of entry, feed, category, and user validation
  1204. * Avoid stripping tags for entry title
  1205. * Add the possibility to subscribe to feeds with the Android Share menu
  1206. * API improvements:
  1207. - Change feed creation request to allow setting most fields via API
  1208. - Allow regular users to change settings via API
  1209. - Make user fields editable via API
  1210. - Renaming non-existent category via API should return a 404
  1211. * Update Systemd service file:
  1212. - Add capability CAP_NET_BIND_SERVICE (allow the process to listen on privileged ports)
  1213. - Enable a private /tmp for $CERT_CACHE (required when using Let's Encrypt)
  1214. * Update read/star icons to SVGs
  1215. * Add autocomplete="username" to HTML forms
  1216. * Improve user mass delete to use fewer Goroutines
  1217. * Use SQL transaction when creating user sessions and users
  1218. * Remove extra column (HSTORE field) from users table and migrate key/value pairs to specific columns
  1219. * Bump github.com/prometheus/client_golang from 1.8.0 to 1.9.0
  1220. * Bump github.com/lib/pq from 1.8.0 to 1.9.0
  1221. * Add styles for <abbr> HTML tag
  1222. * Refactor SQL migrations:
  1223. - Avoid embedding SQL files into binary
  1224. - Allow more flexible changes by using Go functions
  1225. * Add Server-Timing header to unread page
  1226. * Show correct User Agent in input placeholders
  1227. * Add autocomplete attribute to login form
  1228. * Add Grafana dashboard in contrib folder
  1229. Version 2.0.26 (Dec 5, 2020)
  1230. ----------------------------
  1231. * Use created_at instead of published_at for archiving entries
  1232. * Add created_at field for entries
  1233. * Handle invalid feeds with relative URLs
  1234. * Add API routes for "mark all as read"
  1235. * Add support for setting a global default User-Agent
  1236. * Add rewrite rule "replace" for custom search and replace
  1237. * Calculate reading time during feed processing
  1238. * Handle various invalid dates
  1239. * systemd: keep /run writeable
  1240. * debian package: add missing post-install script
  1241. * Do not follow redirects when trying known feed URLs
  1242. * Trim spaces around icon URLs
  1243. * Reinstate EXPOSE instruction in Dockerfile
  1244. * Update German and Portuguese translations
  1245. Version 2.0.25 (Nov 3, 2020)
  1246. ----------------------------
  1247. * Rename "original" link to be more explicit
  1248. * Do not escape HTML for Atom 1.0 text content during parsing (Avoid HTML entities issues)
  1249. * Do not use charset.NewReader if the body is a valid UTF-8 document
  1250. * Restore the ability to use a proxy for all HTTP requests (see https://golang.org/pkg/net/http/#ProxyFromEnvironment)
  1251. * Show Git commit in about page
  1252. * Publish Docker images to GitHub Container Registry
  1253. * Added few Docker Compose examples in contrib folder
  1254. * Added Ansible Role + Playbook for Miniflux in contrib folder
  1255. * Add rewrite rule to use noscript content for images rendered with Javascript
  1256. * Bump github.com/prometheus/client_golang from 1.7.1 to 1.8.0
  1257. * Update contributor link and Godoc badge for API client
  1258. * Move Debian package builder to main repository
  1259. * Move RPM build files to main repository
  1260. * Add GitHub Action to generate Docker images
  1261. * Build multi-platform images with Docker Buildx
  1262. * Add keyboard shortcut to scroll current item to the top
  1263. * Add feed filters (Keeplist and Blocklist)
  1264. * Do not proxy image with a data URL
  1265. * Bump github.com/PuerkitoBio/goquery from 1.5.1 to 1.6.0
  1266. * Proxify articles crawled manually
  1267. * Proxify images defined in srcset attribute
  1268. * Remove plaintext Fever password from database
  1269. * Add keyboard shortcut to jump to an item's feed page
  1270. * Add option for swipe gesture on entries on mobile
  1271. Version 2.0.24 (Oct 3, 2020)
  1272. ----------------------------
  1273. * Add rewrite rule to fix Medium.com images
  1274. * Update sanitizer to support responsive images:
  1275. - Add support for picture HTML tag
  1276. - Add support for srcset, media, and sizes attributes to img and source tags
  1277. * Enhance man page formatting
  1278. * Add Prometheus exporter
  1279. * Remove dependency on global config options in HTTP client
  1280. * API:
  1281. - Avoid database lookup if empty credentials are provided
  1282. - Add the possibility to filter entries by category ID
  1283. - Add the possibility to filter entries by a list of statuses
  1284. * Add Feed ID in worker error logs
  1285. * Tweak default HTTP client transport timeout values to reduce the number of file descriptors
  1286. * CSS tweaks and optimizations:
  1287. - Prevent sub and sup from affecting line-height
  1288. - Set touch-action on .items to prevent browser navigation
  1289. - Move font-family specific CSS to the appropriate file
  1290. - Update primary font-family for UI to be even more compatible with various operating systems
  1291. - Make .entry-content font-weight variable depending on font-family used
  1292. * Avoid Javascript minifier to break keyboard shortcuts
  1293. * Rename service worker script to avoid being blocked by uBlock
  1294. * Update date parser to handle Pacific Daylight Time in addition to Pacific Standard Time
  1295. * Create index to speed up bookmark page
  1296. * Do not try to update a duplicated feed after a refresh
  1297. * Use a transaction to refresh and create entries
  1298. * Speed up entries clean up with an index and a goroutine
  1299. * Avoid the accumulation of enclosures by keeping only what is referenced in the feed
  1300. * Add workarounds for parsing an invalid date
  1301. * Archive older entries first
  1302. * Update API client to support more filters
  1303. * Avoid duplication between get feed entries and get entries API endpoints
  1304. * Enable strict slash to avoid a page not found (404) when using a trailing slash in the URLs
  1305. * Add a submit button to each section of the integration page
  1306. * Reload page after making page as read when showing unread entries
  1307. * Add option to archive unread entries
  1308. * Add option to enable maintenance mode
  1309. * Add HTTP proxy option for subscriptions
  1310. * Make add_invidious_video rule applicable for different invidious instances
  1311. * Fix reading time for jp, ko and zh languages
  1312. * Update POLLING_SCHEDULER description in man page
  1313. * Bump gorilla/mux from 1.7.4 to 1.8.0
  1314. * Add link to mark a feed as read
  1315. Version 2.0.23 (Aug 15, 2020)
  1316. -----------------------------
  1317. * Try known URLs when discovering subscriptions
  1318. * Add workarounds to find YouTube channel feeds (YouTube doesn't expose RSS links anymore for new-style URLs)
  1319. * Increase HTTP server timeout values
  1320. * Use stdlib constants for HTTP methods instead of strings
  1321. * Add support for RTL feed content
  1322. * Ignore <media:title> to avoid overriding the default title if they are different
  1323. * Add support for secret keys exposed as a file (useful for containerized environments)
  1324. * Display recent entries first in search results
  1325. * Do not archive shared items
  1326. * Add option to change the number of entries per page
  1327. * Add Brazilian Portuguese (pt_BR) translation
  1328. * Add reading time for entries
  1329. * Redirect to login page if CSRF token is expired
  1330. * Fever API:
  1331. - Use getEntryIDs instead of getEntries to reduce memory consumption
  1332. - Fix max_id argument logic to follow the specs
  1333. - Improve logging
  1334. - Do not send articles to external services when unsaving an item
  1335. - Create index to speed up API calls
  1336. - Log client IP in middleware
  1337. * API client: Do not return body for response with no content
  1338. * REST API:
  1339. - Delete users asynchronously (Deleting large users might lock the tables)
  1340. - Add CORS support
  1341. * Align entry actions to the left
  1342. - Attempt to avoid awkward alignment on smartphone screens
  1343. - Keep the read/star actions aligned to the left
  1344. - Remove CSS flex to allow easier override with custom CSS
  1345. * Upgrade Postgres client library
  1346. * Upgrade CI checks to Go 1.15
  1347. Version 2.0.22 (Jun 19, 2020)
  1348. -----------------------------
  1349. * Remove child-src CSP policy (deprecated)
  1350. * Add /version endpoint
  1351. * Add the ability to use custom css
  1352. * Handle more invalid dates
  1353. * Add CSS styles for textarea
  1354. * Add index to speed up slow query
  1355. * Speed up feed list page rendering
  1356. * Add alternative scheduler based on the number of entries
  1357. * Setup Dependabot on GitHub
  1358. * Update Docker image to Alpine 3.12
  1359. * Add feed option to ignore HTTP cache
  1360. * Fix some Italian and German translations
  1361. * Added scraper rule for RayWenderlich.com, TheOatmeal.com, financialsamurai.com, dilbert.com and turnoff.us
  1362. * Replace link to categories by a link to the list of entries in "Category > Feeds" page
  1363. * Change feed title to a link to the original website
  1364. * Add icons to feeds and categories list
  1365. * Update dependencies and remove vendor folder
  1366. Version 2.0.21 (Mar 28, 2020)
  1367. -----------------------------
  1368. * Add SVG icons to entry actions
  1369. * Add support for Invidious
  1370. - Embed Invidious player for invidio.us feeds
  1371. - Add new rewrite rule to use Invidious player for Youtube feeds
  1372. * Check during application startup if the database schema is up to date
  1373. * Change default theme for public pages to "System Serif"
  1374. * Add feature to share an article (create a public link of a feed entry)
  1375. * Fix SQL injection in full-text search rank ordering
  1376. * Add generic OpenID Connect provider (OAuth2)
  1377. * Use more secure TLS configuration for autocert server (increase SSL Labs score from B to A+)
  1378. * Add feature to create per-application API Keys
  1379. * Add Go 1.14 to GitHub Actions
  1380. * Add scraper rule for wdwnt.com
  1381. * Add API client function to refresh all feeds
  1382. * Add API endpoint to refresh all feeds
  1383. * Add Auth Proxy authentication
  1384. * Use rel=prev/next on pagination links
  1385. Version 2.0.20 (Feb 15, 2020)
  1386. -----------------------------
  1387. * Add Japanese translation
  1388. * History: show entries in the order in which they were read
  1389. * Add button to add to Home screen
  1390. * Ignore enclosures without URL
  1391. * Correct spelling of "toggle"
  1392. * List view: align information to the left side, and the actionable buttons to the right
  1393. * Redirect to /unread when getting a 404 for an unread expired entry
  1394. * Do not advance to the next item when using the 'v' shortcut on the list of starred items
  1395. * Wrap around when navigating with keyboard shortcuts on a list view
  1396. * Remove unused Feed.Entries and Entry.Category from API client
  1397. * Add comments link keyboard shortcut
  1398. * Allow application/xhtml+xml links as comments URL in Atom replies
  1399. * Allow only absolute URLs in comments URL
  1400. * Use internal XML workarounds to detect feed format
  1401. * Make menu consistent across feed pages
  1402. * Make sure external URLs are not encoded incorrectly by Go template engine
  1403. * Make sure whitelisted URI schemes are handled properly by the sanitizer
  1404. * Use white background for favicon (Improve legibility when using a dark theme)
  1405. * Remove dependency on Sed to build Docker images
  1406. * Normalize URL query string before executing HTTP requests
  1407. * Improve Dublin Core support for RDF feeds
  1408. * Improve Podcast support (iTunes and Google Play feeds)
  1409. * Add support for Atom 0.3
  1410. * Add support for Atom "replies" link relation
  1411. * Return outer HTML when scraping elements
  1412. * Update scraper rule for "Le Monde"
  1413. * Filter valid XML characters for UTF-8 XML documents before decoding
  1414. * Trim spaces for RDF entry links
  1415. Version 2.0.19 (Dec 1, 2019)
  1416. ----------------------------
  1417. * Add shortcut "V" to open original link in current tab
  1418. * Add the possibility to add rules during feed creation
  1419. * Wrap attachments into <details> disclosure element
  1420. * Show attachment size on entry page
  1421. * Add support of RSS Media elements (group, description, peer link, and thumbnails)
  1422. * Add rewrite functions: convert_text_link and nl2br
  1423. * Add scraper rule for openingsource.org
  1424. * Add Makefile target to build only amd64 Docker image
  1425. * Make sure to remove integration settings when removing a user
  1426. * Add API parameter to filter entries by category
  1427. * Display list of feeds per category
  1428. * Show the number of read and unread entries for each feed
  1429. * Make sure settings menu is consistent
  1430. * Remove fixed table-layout for entry content
  1431. * Update autocert lib because ACME v1 is EOL
  1432. * Do not lighten blockquote font color
  1433. * Update de_DE translation
  1434. * Send a response when changing status of removed entries in Fever API
  1435. * Add meta tag to disable Google Translate
  1436. * Improve storage module
  1437. * Improve XML decoder to remove illegal characters
  1438. * Compare Fever token case-insensitively
  1439. * Make sure integration tests are marked as failed in Github Actions
  1440. * Add new formats to date parser
  1441. * Add notification message when using keyboard shortcuts: f, s, and m.
  1442. * Avoid keyboard shortcuts to conflict with Firefox’s "Find as you type" feature
  1443. Version 2.0.18 (Sep 25, 2019)
  1444. -----------------------------
  1445. * Add Docker image variant for arm32v7
  1446. * Add theme variants
  1447. - Use CSS variables instead of inherence
  1448. - Rename default theme to "Light - Serif"
  1449. - Rename Black theme to "Dark - Serif"
  1450. - Rename "Sans-Serif" theme to "Light - Sans Serif"
  1451. - Add "System" theme that use system preferences: Dark or Light
  1452. - Add Serif and Sans-Serif variants for each color theme
  1453. * Avoid constraint error when having duplicate entries during feed creation
  1454. * Disable strict XML parsing
  1455. * Ignore invalid content type
  1456. * Update man page
  1457. * Replace Travis by GitHub Actions
  1458. * Rename cleanup config variables and deprecate old ones
  1459. - CLEANUP_FREQUENCY_HOURS instead of CLEANUP_FREQUENCY
  1460. - CLEANUP_ARCHIVE_READ_DAYS instead of ARCHIVE_READ_DAYS
  1461. * Make configurable the number of days to remove old sessions
  1462. * Add native lazy loading for images and iframes
  1463. * Do not buffer responses in the image proxy
  1464. * Update dependencies
  1465. * Add Go 1.13 to test matrix
  1466. * Replace link border by outline to avoid slight content shift
  1467. * New rewrite function: add_mailto_subject
  1468. * Import OPML from URL
  1469. * Fix HTML injection in addImageTitle
  1470. * Accept HTML entities when parsing XML
  1471. Version 2.0.17 (Aug 3, 2019)
  1472. ----------------------------
  1473. * Update Docker image to Alpine Linux 3.10.1
  1474. * Pass auth header to manifest request (crossorigin attribute)
  1475. * Sort feed categories before serialization
  1476. * Fix syntax errors in man page
  1477. * Add .search margin-right
  1478. * Ask for confirmation before flushing history, marking page as read, and mark all as read
  1479. * Add option to disable feeds
  1480. Version 2.0.16 (Jun 8, 2019)
  1481. ----------------------------
  1482. * Add option to toggle date/time in log messages
  1483. * Add optional config file parser in addition to environment variables
  1484. * Make HTTP Client timeout and max body size configurable
  1485. * Refactor config package:
  1486. - Parse configuration only once during startup time
  1487. - Store configuration values in a global variable
  1488. * Flip behavior of j and k keyboard shortcuts
  1489. * Bump Postgresql client library to v1.1.1 to bring in SCRAM-SHA-256 authentication
  1490. * Add option to enable/disable keyboard shortcuts
  1491. * Add missing translation
  1492. * Improve page reload when showing unread/all entries:
  1493. - Show only unread entries = refresh current page
  1494. - Show all entries = go to next page
  1495. * Always display feed entries even when there is a feed error
  1496. * Use loading label instead of saving when submitting login form
  1497. * Add OPML v1 support during importation
  1498. * Add 'allow-popups' to iframe sandbox permissions
  1499. Version 2.0.15 (Mar 16, 2019)
  1500. -----------------------------
  1501. * Move Dockerfile to main repo
  1502. * Change location of the binary from /usr/local/bin to /usr/bin in Docker image
  1503. * Add double tap detection for next/previous page navigation
  1504. * Allow users to disable auto-remove
  1505. * Make parser compatible with Go 1.12
  1506. * Add Golang 1.12 to CI
  1507. * Use feed ID instead of user ID to check entry URLs presence
  1508. * Fix typo in stylesheet
  1509. * Sort search results by relevance
  1510. * Use preferably the published date for Atom feeds
  1511. * Add Spanish translation
  1512. * Rename session cookies
  1513. * Handle the case when application session is expired and not user session
  1514. Version 2.0.14 (Jan 13, 2019)
  1515. -----------------------------
  1516. * Only attempt to change password if the confirmation field is filled in (Firefox)
  1517. * Remove URL from client user agent
  1518. * Make the feed list order case-insensitive
  1519. * Handle XHTML Summary elements for Atom feeds
  1520. * Make UTF-8 the default encoding for XML feeds
  1521. * Add more targets to Makefile
  1522. * Add -mod=vendor in Makefile
  1523. * Move health check endpoint from ui package to httpd service
  1524. * Add workaround for non GMT dates (RFC822, RFC850, and RFC1123)
  1525. * Make sure `<strong>` elements are bold
  1526. * Show scrollbars only when necessary for <pre> elements
  1527. * Add Italian translation
  1528. * Allow to switch between unread only and all entries on category/feed views
  1529. * Add function storage.UpdateFeedError()
  1530. * Add BBC News scraping rule
  1531. * Ignore JSON feeds from EnsureUnicode()
  1532. * Preserve category selection when no feed is found
  1533. * Update XML encoding regex to take single quotes into consideration
  1534. * Send cli errors to stderr
  1535. * Update dependencies
  1536. * Make password prompt compatible with Windows
  1537. * Make configurable the number of days to archive read items
  1538. * Change log level to debug when starting workers
  1539. * Do not show $DATABASE_URL warning when showing application info
  1540. * Move image proxy filter to template functions
  1541. * Update scraper rule for lemonde.fr
  1542. * Refactor manual entry scraper
  1543. * Apply rewriter rules on manual "Fetch Original Content"
  1544. * Add Makefile target for current OS and architecture
  1545. * Improve Makefile
  1546. Version 2.0.13 (Nov 25, 2018)
  1547. -----------------------------
  1548. * Add man page
  1549. * Add support for Systemd Socket Activation (experimental)
  1550. * Add the possibility to listen on Unix sockets
  1551. * Add config options to disable HTTP and scheduler services
  1552. * Archive more read entries in cleanup job
  1553. * Change default database connection string (backward compatible)
  1554. * Improve logging messages in ui package
  1555. * Improve overall Simplified Chinese translations
  1556. * Improve time since post date displays:
  1557. - "15 days" now is "15 days" rather than "3 weeks" ago
  1558. - "32 days" is now "1 month" rather than "2 months" ago
  1559. - "366 days" is now "1 year" rather than "2 years" ago
  1560. * Allow the scraper to parse XHTML documents
  1561. * Remove charset=utf-8 from JSON responses
  1562. * Ignore hotkeys containing Control, Alt or Meta keys
  1563. * Handle more encoding conversion edge cases
  1564. * Disable go test caching
  1565. * Avoid duplication of ldflags in Makefile
  1566. * Fix wrong translation key for category pages
  1567. * Code refactoring:
  1568. - Simplify application HTTP middlewares
  1569. - Replace daemon and scheduler package with service package
  1570. - Move UI middlewares and routes to ui package
  1571. - Move API middleware and routes to api package
  1572. - Move Fever middleware and routes to fever package
  1573. Version 2.0.12 (Oct 26, 2018)
  1574. -----------------------------
  1575. * Add OpenBSD build
  1576. * Improve logging for OAuth2 callback
  1577. * Make "g f" go to feed, or list of feeds
  1578. * Add more details in feed storage errors to facilitate debugging
  1579. * Add entries storage error to feed errors count
  1580. * Set arbitrary maximum size for tsvector column
  1581. * Unsubscribe from feed through link or "#"
  1582. * Simplify feed entries filtering
  1583. * Simplify feed fetcher
  1584. * Simplify feed parser and format detection
  1585. * Improve unit tests in url package
  1586. * Add short cli flags -i and -v
  1587. * Convert text links and line feeds to HTML in YouTube channels
  1588. * Change link state when marking all entries as read
  1589. * Add missing package descriptions for GoDoc
  1590. * Fix typo in license header
  1591. * Refactor HTTP response builder
  1592. * Improve Fever API performances when marking a feed or group as read
  1593. * Set focus on article link when pressing prev/next hotkeys
  1594. * Improve request package and add more unit tests
  1595. * Add more unit tests for config package
  1596. * Simplify locale package usage (refactoring)
  1597. * Translate application in Russian
  1598. * Use disclosure widget <details> for advanced feed options
  1599. * Use unique translation IDs instead of English text as key
  1600. * Add more unit tests for template functions
  1601. * Fix invalid output when truncating Unicode text in templates
  1602. * Add the possibility to override default user agent for each feed
  1603. * Split Makefile linux targets by architecture
  1604. * Add compiler, Arch, and OS to info command
  1605. * Avoid line break between emoji and (un)read/(un)star links
  1606. * Build Docker image for multiple architectures (amd64, arm32v6, arm64v8)
  1607. Version 2.0.11 (Sep 11, 2018)
  1608. -----------------------------
  1609. * Set cookie flag `SameSite` to Lax mode
  1610. * Use predefined ciphers when TLS is configured
  1611. * Avoid displaying an error when shutting down the daemon
  1612. * Add "Mark this page as read" to the bottom
  1613. * Store client IP address in request context
  1614. * Refactor HTTP context handling
  1615. * Make user creation via environment variables idempotent
  1616. * Use regular text version of ✔︎ instead of emoji version on iOS
  1617. * Add toggle status button to entry page
  1618. * Migrate to Go Modules and Go 1.11
  1619. * Show count of feeds with permanent errors in header menu
  1620. * Display remote client IP in logs when having a login failure (Fail2Ban)
  1621. * Add remove button in feed edit page
  1622. * Split integration tests into multiple files
  1623. * Update scraper rule for heise.de
  1624. * Expose real error messages for internal server API errors
  1625. * Move Golang API client in project source tree (the separate project is deprecated)
  1626. * Use canonical imports
  1627. * Add Procfile
  1628. * Create database package (refactoring)
  1629. * Update user agent with new website URL
  1630. * Update German translation
  1631. Version 2.0.10 (July 22, 2018)
  1632. ------------------------------
  1633. * Avoid browser caching issues when assets changes
  1634. * Add Gzip/Deflate compression for HTML, JSON, CSS and Javascript responses
  1635. * Improve themes handling
  1636. * Store user theme in session
  1637. * Logged out users will keep their theme
  1638. * Add theme background color to web manifest and meta tag
  1639. * Update application icon with different sizes
  1640. * Add support for published tag in Atom feeds
  1641. * Add tooltip to feed domain in feeds list (title attribute)
  1642. * Prevent vertical scrolling on swipe
  1643. * Show feed title instead of domain in items list
  1644. * Add service worker to cache feed icons
  1645. * Make image proxy configurable via IMAGE_PROXY environment variable:
  1646. * none = No proxy
  1647. * http-only = Proxy only non-HTTPS images (default)
  1648. * all = Proxy everything
  1649. * Add alt attribute for feed icons
  1650. * Update CI jshint check
  1651. * Add embedly.com to iframe whitelist
  1652. * Use passive event listeners for touch events
  1653. * Add `add_dynamic_image` rewriter for JavaScript-loaded images
  1654. * Change feed password field type to text to avoid auto-completion with Firefox
  1655. * Using autocomplete="off" or autocomplete="new-password" doesn't change anything
  1656. * Changing the input ID doesn't change anything
  1657. * Using a different input name doesn't change anything
  1658. * Only Chrome supports autocomplete="new-password"
  1659. * Add base URL validation
  1660. * Update default stylesheet name in HTML layout
  1661. * Pre-generate themes stylesheets at build time
  1662. * Update vendor dependencies
  1663. * Refactor assets bundler and split Javascript files
  1664. * Run sanitizer after all processing and entry content rewrite
  1665. * Remove timestamp from generated files
  1666. * Add support for protocol relative YouTube URLs
  1667. * Add Postgres full-text search for entries
  1668. * Add search form in user interface
  1669. * Add search parameter to the API
  1670. * Improve Dutch locales
  1671. * Sandbox iframes when sanitizing
  1672. * Keep consistent text size on mobile orientation change
  1673. * Change permission of /etc/miniflux.conf to 600 instead of 644 in RPM package
  1674. * Add tzdata package to Docker image
  1675. * Update Docker image to Alpine Linux 3.8
  1676. Version 2.0.9 (July 1, 2018)
  1677. ----------------------------
  1678. * Avoid Chrome to autocomplete no-login password fields
  1679. * Add cli flag to reset all feed errors
  1680. * Do not ignore errored feeds when a user refresh feeds manually
  1681. * Add specific 404 and 401 error messages
  1682. * Strip binaries to reduce size
  1683. * Make sure we always get the pagination in unread mode
  1684. * Fix incorrect data value when toggling bookmark flag on entry page
  1685. * Set opener to null when opening original URL with JavaScript
  1686. * Remove unnecessary style
  1687. * Refactor AddImageTitle rewriter
  1688. * Only processes images with `src` **and** `title` attributes (others are ignored)
  1689. * Processes **all** images in the document (not just the first one)
  1690. * Wraps the image and its title attribute in a `figure` tag with the title attribute's contents in a `figcaption` tag
  1691. * Improve sanitizer to remove `style`, `noscript` and `script` tag contents
  1692. * Improve feed and user API updates with optional values
  1693. * Add new fields for feed username/password
  1694. * Improve memory usage debug log
  1695. * Disable keep-alive for HTTP client
  1696. * Close HTTP response body even for failed requests
  1697. * Add Sans-Serif theme
  1698. * Rewrite iframe Youtube URLs to https://www.youtube-nocookie.com
  1699. * Add more filters for API call `/entries`:
  1700. * before (unix timestamp)
  1701. * before_entry_id (int64)
  1702. * after (unix timestamp)
  1703. * after_entry_id (int64)
  1704. * starred (boolean)
  1705. * Rewrite individual entry pagination SQL queries
  1706. * Simplify entry query builder
  1707. * Prevent items from sticking on touchend
  1708. * Extended horizontal overflow to feed and category views
  1709. * Translate missing strings
  1710. * Update German translation
  1711. Version 2.0.8 (June 4, 2018)
  1712. ----------------------------
  1713. * Add Pocket integration
  1714. * Rewrite RealIP() to avoid returning an empty string
  1715. * Convert IP field from text to inet type
  1716. * Improve error handling in integration clients
  1717. * Make unread counter clickable
  1718. * Archive read entries automatically after 60 days
  1719. * Hide horizontal overflow when swiping articles on touch devices
  1720. * Add API endpoint to get logged user
  1721. * Fever API: Return response with an empty list if there is no item
  1722. * Handle feeds with dates formatted as Unix timestamp
  1723. Version 2.0.7 (May 7, 2018)
  1724. ---------------------------
  1725. * Add API endpoint to import OPML file
  1726. * Make sure to close request body in HTTP client
  1727. * Do not show save link if no integration is configured
  1728. * Make sure integrations are configured before to make any HTTP requests
  1729. * Avoid people to unlink their OAuth2 account without having a local password
  1730. * Do not use shared variable to translate templates (avoid concurrency issue)
  1731. * Use vanilla HTTP handlers (refactoring)
  1732. * Move HTTP client to its own package (refactoring)
  1733. * Add middleware to read X-Forwarded-Proto header (refactoring)
  1734. * Use Gorilla middleware (refactoring)
  1735. * Scrape parent element for iframe
  1736. * Add SoundCloud and Bandcamp iframe sources
  1737. Version 2.0.6 (Apr 20, 2018)
  1738. ----------------------------
  1739. * Improve graceful shutdown
  1740. * Simplify Heroku deployment
  1741. * Display memory usage and some metrics in logs
  1742. * Increase read/write timeout for HTTP server
  1743. * Add support for Dublin Core date in RDF feeds
  1744. * Do not return an error if the user session is not found
  1745. * Handle some non-english date formats
  1746. * Add missing French translation
  1747. * Rename RSS parser getters
  1748. * Get the right comments URL when having multiple namespaces
  1749. * Ignore caching headers for feeds that send "Expires: 0"
  1750. * Update translations
  1751. Version 2.0.5 (Apr 7, 2018)
  1752. ---------------------------
  1753. * Avoid unread counter to be off by one when reading an entry
  1754. * Add Comments URL to entries
  1755. * Add FreeBSD build target
  1756. * Handle RSS author elements with inner HTML
  1757. * Fix typo in translations
  1758. * Add Dutch translation
  1759. * Convert enclosure size field to bigint
  1760. * Switch CI to Go v1.10
  1761. * Fix broken OPML import when compiling with Go 1.10
  1762. Version 2.0.4 (Mar 5, 2018)
  1763. ---------------------------
  1764. * Add Simplified Chinese translation
  1765. * Add Nunux Keeper integration
  1766. * Filter the list of timezones
  1767. * Add timezone to entries dates for REST and Fever API
  1768. * Show last login and session creation date in current timezone
  1769. * Fix typo in edit user template
  1770. * Improve parser error messages
  1771. * Remove parentheses around feed error messages
  1772. * Support localized feed errors generated by background workers
  1773. * Print info message if DATABASE_URL is not set
  1774. Version 2.0.3 (Feb 19, 2018)
  1775. ----------------------------
  1776. * Add Polish translation
  1777. * Change color of <q> tags for black theme
  1778. * Add database indexes (don't forget to run database migrations)
  1779. * Handle Atom feeds with HTML title
  1780. * Strip invalid XML characters to avoid parsing errors
  1781. * Improve error handling for HTTP client
  1782. Version 2.0.2 (Feb 5, 2018)
  1783. ---------------------------
  1784. * Add support for Let's Encrypt http-01 challenge
  1785. * Move template functions outside engine (refactoring)
  1786. * Take timezone into consideration when calculating relative time
  1787. * Add support for HTTP Strict Transport Security header
  1788. * Add support for base URLs with subfolders
  1789. * Add missing about menu in settings
  1790. * Show API URL endpoints in user interface
  1791. * Do not update entry date while refreshing a feed
  1792. * Add flag to toggle debug logging
  1793. * Improve unread counter updates
  1794. Version 2.0.1 (Jan 22, 2018)
  1795. ----------------------------
  1796. * Change user agent (People are blocking the crawler with mod_security)
  1797. * Move environment variables to config package (refactoring)
  1798. * Add build targets for all ARM architectures
  1799. * Do not crawl existing entry URLs
  1800. * Show translated login page in user language when logged out
  1801. * Handle more encoding edge cases:
  1802. - Feeds with charset specified only in Content-Type header and not in XML document
  1803. - Feeds with charset specified in both places
  1804. - Feeds with charset specified only in XML document and not in HTTP header
  1805. * Add German translation
  1806. * Add mark as read/unread link on list items
  1807. * Add API endpoint for OPML export
  1808. Version 2.0.0 (Jan 11, 2018)
  1809. ----------------------------
  1810. * Initial release of Miniflux 2.