ChangeLog 53 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198
  1. Version 2.0.48 (September 15, 2023)
  2. -----------------------------------
  3. * Add generic webhook integration
  4. * Send webhook events when new entries are detected
  5. * Send wehbook events when saving an entry
  6. * Sign the outgoing requests with HMAC-SHA256
  7. * Improve Telegram integration
  8. * Add built-in Telegram client
  9. * Remove dependency on `go-telegram-bot-api` library
  10. * Add new options:
  11. * Optional topic ID
  12. * Disable page preview
  13. * Disable notifications
  14. * Add new button to go to article
  15. * Improve Matrix integration
  16. * Add built-in Matrix client
  17. * Remove dependency on `gomatrix` library
  18. * Send HTML formatted messages to Matrix
  19. * OpenID Connect authentication improvements:
  20. * Add OAuth2 PKCE support
  21. * Add `profile` scope to OIDC integration to support accounts without email address
  22. * Prevent empty username when using the OIDC integration
  23. * Add `factor` for `entry_frequency` scheduler:
  24. * Allow the user to increase the frequency of the `entry_frequency`
  25. scheduler by a configurable factor in order to shorten the time between
  26. updates.
  27. * Fix: status bar is unreadable when using PWA in dark mode on Firefox Android
  28. * Group form fields into fieldsets to improve page layout
  29. * Update Russian translation
  30. * Make sure icon URLs are always absolute
  31. * Add Apprise service URLs per feed
  32. * Trim `username` and `password` form fields
  33. * Strip HTML tags from DublinCore Creator tags
  34. * Fix scroll up behavior on Firefox Android
  35. * Add missing `return` statement in `fetchContent` UI handler
  36. * Add `replace_title` rewrite rule to adjust entry titles
  37. * Fix Pocket integration redirect URL and Google Reader API HREF
  38. * Fix feed `hide_globally` property to use it with third-party clients.
  39. Version 2.0.47 (August 20, 2023)
  40. --------------------------------
  41. * Update rules for `webtoons.com`
  42. * Use HTTP client from the standard library for third-party integrations
  43. * Rename internal `url` package to `urllib` to avoid overlap with `net/url`
  44. * Add Shaarli integration
  45. * Add Shiori integration
  46. * Add Apprise integration
  47. * Add Readwise Reader integration
  48. * Consider base path when generating third-party services API endpoint
  49. * Use podcast duration tag as reading time
  50. * Move internal packages to an `internal` folder
  51. * For reference: <https://go.dev/doc/go1.4#internalpackages>
  52. * Rename Miniflux package name to follow Go module naming convention
  53. * For reference: <https://go.dev/ref/mod#major-version-suffixes>
  54. * Update RockyLinux image from 8 to 9 (used to build RPM package)
  55. * Add force refresh in feed edit and feed entries page
  56. * Use Odysee video duration as read time
  57. * Upgrade to Go 1.21
  58. * Use details disclosure element to show the list of third-party services
  59. * Use Web Share API for sharing entry
  60. * Add a workaround for parsing some invalid date format
  61. * Add Thunder Client API collection into contrib folder
  62. * Add new API endpoint: `/entries/{entryID}/save`
  63. * Trigger Docker and packages workflows only for semantic tags
  64. * Go module versioning expect Git tags to start with the letter v.
  65. * The goal is to keep the existing naming convention for generated artifacts and
  66. have proper versioning for the Go module.
  67. * Bump `golang.org/x/*` dependencies
  68. * Bump `github.com/yuin/goldmark`
  69. * Bump `github.com/tdewolff/minify/v2`
  70. * Bump `github.com/mccutchen/go-httpbin/v2`
  71. Version 2.0.46 (July 21, 2023)
  72. ------------------------------
  73. * Add scraper and rewrite rules for Webtoons
  74. * Fix regression in integration page and simplify SQL query
  75. * Wallabag integration: add more information in log messages
  76. * Add support for custom Youtube embed URL
  77. * Fix accessibility issues in modal component
  78. * Fix modal aria role
  79. * Trap focusing with tab / shift+tab inside the modal
  80. * Restore keyboard focus when closing modal
  81. * Automatically move keyboard focus to first focusable element unless specified otherwise
  82. * Keyboard shortcut help modal: move keyboard focus to modal title
  83. * Keyboard shortcut help modal: change close control from link to button
  84. * Add Notion integration
  85. * Update `golang.org/x/*` dependencies and `go-oidc` to v3.6.0
  86. * Improve responsive design
  87. * Add user setting for marking entry as read on view
  88. * Improve Russian translation
  89. * Add the possibility to run cleanup tasks from the command line
  90. * Add the possibility to run Miniflux as a cronjob
  91. * Use `go-httpbin` to run tests locally and avoid remote calls to `httpbin.org`
  92. * Display tags when viewing entries
  93. * Update categories API endpoint to return `total_unread` and `feed_count`
  94. * Improve date parser to handle various broken date formats
  95. * Avoid `pq: time zone displacement out of range` errors
  96. * Improve entry existance check to make better use of index
  97. * Add unique index `enclosures_user_entry_url_idx`
  98. * Add mark as unread for Linkding integration
  99. * Add sub-folder support for Wallabag integration
  100. * Use RockyLinux to build RPM package
  101. * Disable CGO when building RPM package
  102. * Disable CGO when building Docker images
  103. Version 2.0.45 (June 21, 2023)
  104. ------------------------------
  105. * Add media player to listen to audio and video podcasts with the possiblity to resume to last playback position
  106. * Add default tag names for Linkding integration
  107. * Mark only globally visible entries when marking all entries from UI
  108. * Use image included in feed as feed icon when available
  109. * Order history by `changed_at` and `published_at`
  110. * Remove title attribute from entry title links
  111. * Fix reading time that is not aligned correctly with the latest version of Safari
  112. * Use glyphs of the same size on keyboard shortcuts page
  113. * Add maskable versions of the PWA icon
  114. * Replace copyright header with SPDX identifier
  115. * Remove the "í" letter from the Portuguese "lido" word
  116. * Increase golangci-lint timeout value
  117. * Bump `github.com/tdewolff/minify/v2`, `github.com/prometheus/client_golang`, `golang.org/x/*` dependencies
  118. Version 2.0.44 (May 6, 2023)
  119. ----------------------------
  120. * Add link to the URL rewrite rules documentation
  121. * Update scraping rules for `ilpost.it`
  122. * Update rewrite rules for `theverge.com`
  123. * Add a rewrite rule to remove clickbait titles
  124. * Make sure `PROXY_IMAGES` option is backward compatible with `PROXY_OPTION` and `PROXY_MEDIA_TYPES`
  125. * Add new rule to remove tables
  126. * Add support for searching well-known URLs in subdirectory
  127. * Add CSS `word-wrap` rule to break very long entry title into multiple lines
  128. * Add swipe as option for gesture navigation between entries. There are now 3 possible choices: `none`, `double-tap`, and `swipe`.
  129. * Prefer typographic punctuation in English translation
  130. * Process older entries first:
  131. - Feed entries are usually ordered from most to least recent.
  132. - Processing older entries first ensures that their creation timestamp
  133. is lower than that of newer entries.
  134. - This is useful when we order by creation, because then we get a
  135. consistent timeline.
  136. * Fix Grafana dashboard
  137. * Push Docker images to `Quay.io` (RedHat)
  138. * Bump `golang.org/x/*`, `github.com/lib/pq`, `mvdan.cc/xurls/v2` and `github.com/prometheus/client_golang` dependencies
  139. Version 2.0.43 (March 16, 2023)
  140. -------------------------------
  141. * Avoid XSS when opening a broken image due to unescaped ServerError in proxy handler (CVE-2023-27592)
  142. Creating an RSS feed item with the inline description containing an `<img>` tag
  143. with a `srcset` attribute pointing to an invalid URL like
  144. `http:a<script>alert(1)</script>`, we can coerce the proxy handler into an error
  145. condition where the invalid URL is returned unescaped and in full.
  146. This results in JavaScript execution on the Miniflux instance as soon as the
  147. user is convinced to open the broken image.
  148. * Use `r.RemoteAddr` to check `/metrics` endpoint network access (CVE-2023-27591)
  149. HTTP headers like `X-Forwarded-For` or `X-Real-Ip` can be easily spoofed. As
  150. such, it cannot be used to test if the client IP is allowed.
  151. The recommendation is to use HTTP Basic authentication to protect the
  152. metrics endpoint, or run Miniflux behind a trusted reverse-proxy.
  153. * Add HTTP Basic authentication for `/metrics` endpoint
  154. * Add proxy support for several media types
  155. * Parse feed categories from RSS, Atom and JSON feeds
  156. * Ignore empty link when discovering feeds
  157. * Disable CGO explicitly to make sure the binary is statically linked
  158. * Add CSS classes to differentiate between category/feed/entry view and icons
  159. * Add rewrite and scraper rules for `blog.cloudflare.com`
  160. * Add `color-scheme` to themes
  161. * Add new keyboard shortcut to toggle open/close entry attachments section
  162. * Sanitizer: allow `id` attribute in `<sup>` element
  163. * Add Indonesian Language
  164. * Update translations
  165. * Update Docker Compose examples:
  166. - Run the application in one command
  167. - Bring back the health check condition to `depends_on`
  168. - Remove deprecated `version` element
  169. * Update scraping rules for `ilpost.it`
  170. * Bump `github.com/PuerkitoBio/goquery` from `1.8.0` to `1.8.1`
  171. * Bump `github.com/tdewolff/minify/v2` from `2.12.4` to `2.12.5`
  172. * Bump `github.com/yuin/goldmark` from `1.5.3` to `1.5.4`
  173. * Bump `golang.org/x/*` dependencies
  174. Version 2.0.42 (January 29, 2023)
  175. ---------------------------------
  176. * Fix header items wrapping
  177. * Add option to enable or disable double tap
  178. * Improve PWA display mode label in settings page
  179. * Bump `golang.org/x/*` dependencies
  180. * Update translations
  181. * Add scraping rule for `ilpost.it`
  182. * Update reading time HTML element after fetching the original web page
  183. * Add category feeds refresh feature
  184. Version 2.0.41 (December 10, 2022)
  185. ----------------------------------
  186. * Reverted PR #1290 (follow the only link) because it leads to several panics/segfaults that prevent feed updates
  187. * Disable double-tap mobile gesture if swipe gesture is disabled
  188. * Skip integrations if there are no entries to push
  189. * Enable TLS-ALPN-01 challenge for ACME
  190. - This type of challenge works purely at the TLS layer and is compatible
  191. with SNI proxies. The existing HTTP-01 challenge support has been left
  192. as-is.
  193. * Preconfigure Miniflux for GitHub Codespaces
  194. * Updated `golang.org/x/net/*` dependencies
  195. Version 2.0.40 (November 13, 2022)
  196. ----------------------------------
  197. * Update dependencies
  198. * Pin Postgres image version in Docker Compose examples to avoid unexpected upgrades
  199. * Make English and Spanish translation more consistent:
  200. - Use "Feed" everywhere instead of "Subscription"
  201. - Use "Entry" instead of "Article"
  202. * Allow Content-Type and Accept headers in CORS policy
  203. * Use dirs file for Debian package
  204. * Use custom home page in PWA manifest
  205. * Fix scraper rule that could be incorrect when there is a redirect
  206. * Improve web scraper to fetch the only link present as workaround to some landing pages
  207. * Add Matrix bot integration
  208. * Proxify images in API responses
  209. * Add new options in user preferences to configure sorting of entries in the category page
  210. * Remove dependency on `github.com/mitchellh/go-server-timing`
  211. * Add support for the `continuation` parameter and result for Google Reader API ID calls
  212. * Use automatic variable for build target file names
  213. * Add rewrite rule for `recalbox.com`
  214. * Improve Dutch translation
  215. Version 2.0.39 (October 16, 2022)
  216. ---------------------------------
  217. * Add support for date filtering in Google Reader API item ID calls
  218. * Handle RSS entries with only a GUID permalink
  219. * Go API Client: Accept endpoint URLs ending with `/v1/`
  220. * CORS API headers: Allow `Basic` authorization header
  221. * Log feed URL when submitting a subscription that returns an error
  222. * Update `make run` command to execute migrations automatically
  223. * Add option to send only the URL to Wallabag
  224. * Do not convert anchors to absolute links
  225. * Add config option to use a custom image proxy URL
  226. * Allow zoom on mobile devices
  227. * Add scraping rules for `theverge.com`, `royalroad.com`, `swordscomic.com`, and `smbc-comics.com`
  228. * Add Ukrainian translation
  229. * Update `golang.org/x/*` dependencies
  230. * Bump `github.com/tdewolff/minify/v2` from `2.12.0` to `2.12.4`
  231. * Bump `github.com/yuin/goldmark` from `1.4.13` to `1.5.2`
  232. * Bump `github.com/lib/pq` from `1.10.6` to `1.10.7`
  233. Version 2.0.38 (August 13, 2022)
  234. --------------------------------
  235. * Rename default branch from master to main
  236. * Update GitHub Actions
  237. * Bump `github.com/prometheus/client_golang` from `1.12.2` to `1.13.0`
  238. * Fix some linter issues
  239. * Handle Atom links with a text/html type defined
  240. * Add `parse_markdown` rewrite function
  241. * Build RPM and Debian packages automatically using GitHub Actions
  242. * Add `explosm.net` scraper rule
  243. * Make default home page configurable
  244. * Add title attribute to entry links because text could be truncated
  245. * Highlight categories with unread entries
  246. * Allow option to order by title and author in API entry endpoint
  247. * Update Russian translation
  248. * Make reading speed user-configurable
  249. * Added translation for Hindi language used in India
  250. * Add rewrite rules for article URL before fetching content
  251. * Bump `github.com/tdewolff/minify/v2` from `2.11.7` to `2.12.0`
  252. * Support other repo owners in GitHub Docker Action
  253. * Proxify empty URL should not crash
  254. * Avoid stretched image if specified width is larger than Miniflux's layout
  255. * Add support for OPML files with several nested outlines
  256. * sanitizer: handle image URLs in `srcset` attribute with comma
  257. * Allow `width` and `height` attributes for `img` tags
  258. * Document that `-config-dump` command line argument shows sensitive info
  259. * Add System-V init service in contrib folder
  260. * Fix syntax error in `RequestBuilder.getCsrfToken()` method
  261. Version 2.0.37 (May 27, 2022)
  262. -----------------------------
  263. * Add rewrite rule to decode base64 content
  264. * Add Linkding integration
  265. * Add comment button to Telegram message
  266. * Add API endpoint to fetch unread and read counters
  267. * Fixes logic bug in Google Reader API sanity check
  268. * Reduce number of CORS preflight check to save network brandwidth
  269. * Add Espial integration
  270. * Allow API search for entries which are not starred
  271. * Try to use outermost element text when title is empty
  272. * Make swipe gestures feel more natural
  273. - Removes opacity transition when swiping an article read/unread
  274. - Adds "resistance" to the swiped entry when the 75px threshold is
  275. reached
  276. - Fixes an issue in which a swiped article couldn't be moved <15px
  277. * Add support for feed streams to Google Reader API IDs API
  278. * Fix invalid parsing of icon data URL
  279. * Add Traditional Chinese translation
  280. * Add distroless Docker image variant
  281. * Add Go 1.18 to GitHub Action
  282. * Bump `github.com/tdewolff/minify/v2` from `2.10.0` to `2.11`
  283. * Bump `github.com/prometheus/client_golang` from `1.12.1` to `1.12.2`
  284. * Bump `github.com/lib/pq` from `1.10.4` to `1.10.6`
  285. Version 2.0.36 (March 8, 2022)
  286. ------------------------------
  287. * Gray out pagination buttons when they are not applicable
  288. * Use truncated entry description as title if unavailable
  289. * Do not fallback to InnerXML if XHTML title is empty
  290. * Add `+` keyboard shortcut for new subscription page
  291. * Add `(+)` action next to Feeds to quickly add new feeds
  292. * Fix unstar not working via Google Reader API
  293. * Remove circles in front of page header list items
  294. * Fix CSS hover style for links styled as buttons
  295. * Avoid showing `undefined` when clicking on read/unread
  296. * Add new keyboard shortcut `M` to toggle read/unread, and go to previous item
  297. * Add several icons to menus according to their roles
  298. * Add missing event argument to `onClick()` function call
  299. * Add links to scraper/rewrite/filtering docs when editing feeds
  300. * Add a rewrite rule for Castopod episodes
  301. * Fix regression: reset touch-item if not in `/unread` page
  302. * Add API endpoint to fetch original article
  303. * Show the category first in feed settings
  304. * Add pagination on top of all entries
  305. * Display Go version in "About" page
  306. * Bump `mvdan.cc/xurls/v2` from 2.3.0 to 2.4.0
  307. * Bump `github.com/prometheus/client_golang` from 1.11.0 to 1.12.1
  308. * Bump `github.com/tdewolff/minify/v2` from 2.9.28 to 2.10.0
  309. Version 2.0.35 (January 21, 2022)
  310. ---------------------------------
  311. * Set `read-all` permission to `GITHUB_TOKEN` for GitHub Actions
  312. * Pin `jshint` version in linter job
  313. * Fix incorrect conversion between integer types
  314. * Add new GitHub Actions workflows: CodeQL and Scorecards analysis
  315. * Handle Atom feeds with space around CDATA
  316. * Bump `github.com/tdewolff/minify/v2` from 2.9.22 to 2.9.28
  317. * Add Documentation directive to Systemd service
  318. * Do not reset `touch-item` if successfully swiped
  319. * Add support for multiple authors in Atom feeds
  320. * Omit `User-Agent` header in image proxy to avoid being blocked
  321. * Use custom feed user agent to fetch website icon
  322. * Make default Invidious instance configurable
  323. * Add new rewrite rule `add_youtube_video_from_id` to add Youtube videos in Quanta articles
  324. * Add scrape and rewrite rules for `quantamagazine.org`
  325. * Expose entry unshare link in the entry and list views
  326. * Add Google Reader API implementation (experimental)
  327. * Add `Content-Security-Policy` header to feed icon and image proxy endpoints
  328. - SVG images could contain Javascript. This CSP blocks inline script.
  329. - Feed icons are served using `<img>` tag and Javascript is not interpreted.
  330. * Add Finnish translation
  331. * Add scraper rule for `ikiwiki.iki.fi`
  332. * Remove `SystemCallFilter` from `miniflux.service`
  333. * Fix minor typo in French translation
  334. Version 2.0.34 (December 16, 2021)
  335. ----------------------------------
  336. * Add rewrite rule for comics website http://monkeyuser.com
  337. * Add `<head>` tag to OPML export
  338. * Tighten Systemd sandboxing and update comments in `miniflux.service`
  339. * Add `RuntimeDirectory` to Systemd service
  340. * Order disabled feeds at the end of the list
  341. * Add support for theme color based on preferred color scheme of OS
  342. * Bump `github.com/lib/pq` from 1.10.3 to 1.10.4
  343. * Bump `github.com/PuerkitoBio/goquery` from 1.7.1 to 1.8.0
  344. * Fix typos in `model/icon.go`
  345. * Add `data-srcset` support to `add_dynamic_image rewrite` rewrite rule
  346. * Fix Docker Compose example files compatibility to v3
  347. * Added the `role="article"` to `<article>` elements for better accessibility with screen readers
  348. * Redact secrets shown on the about page
  349. * Handle `srcset` images with no space after comma
  350. * Hide the logout link when using auth proxy
  351. * Fix wrong CSS variable
  352. * Change `-config-dump` command to use `KEY=VALUE` format
  353. Version 2.0.33 (September 25, 2021)
  354. -----------------------------------
  355. * Build RPM and Debian package with PIE mode enabled
  356. * Add CSS rule to hide `<template>` tag in old browsers
  357. * Bump `github.com/tdewolff/minify/v2 from 2.9.21 to 2.9.22`
  358. * Bump `github.com/lib/pq from 1.10.2 to 1.10.3`
  359. * Remove `RequestURI()` hack
  360. * Improve `zh_CN` translation
  361. * Add ability to change entry sort order in the UI
  362. * Add minor improvements in integration package
  363. * Add Telegram integration
  364. * Add rewrite rule to remove DOM elements
  365. * Add proxy argument to `scraper.Fetch()`
  366. * Add mime type `application/feed+json` to discover JSON Feed v1.1
  367. * Update scraper rule for `theregister.com`
  368. * Add Go 1.17 to GitHub Actions
  369. * Display option to hide feed only when category is not already hidden
  370. * Add option to hide feeds from the global Unread list
  371. Version 2.0.32 (August 14, 2021)
  372. --------------------------------
  373. * Bump `github.com/tdewolff/minify/v2` from 2.9.17 to 2.9.21
  374. * Bump `mvdan.cc/xurls/v2` from 2.2.0 to 2.3.0
  375. * Bump `github.com/PuerkitoBio/goquery` from 1.6.1 to 1.7.1
  376. * Bump `github.com/prometheus/client_golang` from 1.10.0 to 1.11.0
  377. * Add `/rss/` to the list of well known URLs during feed discovery
  378. * Use `authors` entry for JSON 1.1 feeds
  379. * Added Greek translation
  380. * Added the ability to mark an entire category as read in the web ui
  381. * Added "in" in "logged in" for en_US `tooltip.logged_user`
  382. * Added option to hide categories from the global unread list
  383. * Show "saving" labels for entry status button
  384. * Golang client: Try to parse response body on `InternalServerError` errors
  385. * contrib: Add support for a $MINIFLUX_IMAGE env var in docker-compose
  386. * contrib: Bump docker-compose version to 3.4
  387. Version 2.0.31 (June 6, 2021)
  388. -----------------------------
  389. * Expose comments_url entry field in Golang API client
  390. * Use unique file names for cache busting instead of query string
  391. * Highlight and sort feeds with unread entries in feeds list
  392. * Mark items as read on click/middle click of external links
  393. * Fix: Firefox on Windows does not show the active link as bold
  394. * Avoid extra HTTP request for fetching custom stylesheet
  395. * Remove invalid CSRF HTML meta tag
  396. * Add lang attribute to root HTML tag
  397. * Use runes instead of bytes to truncate JSON feed titles (avoid breaking Unicode strings)
  398. * Expose changed_at time through the API
  399. * Add new config option CLEANUP_ARCHIVE_BATCH_SIZE
  400. * Add new option DATABASE_CONNECTION_LIFETIME
  401. * Add database stats to Prometheus exporter
  402. * Add Systemd watchdog
  403. * Avoid custom stylesheet to be cached by third-party CDN
  404. * Update a shared entry label translation in zh_CN
  405. * Bump github.com/tdewolff/minify/v2 from 2.9.16 to 2.9.17
  406. * Bump github.com/lib/pq from 1.10.1 to 1.10.2
  407. Version 2.0.30 (May 7, 2021)
  408. ----------------------------
  409. * Security fix: any user can delete any feed (Regression introduced in commit 51fb949)
  410. * Fix password reset via CLI
  411. * Increase default batch size value
  412. * Handle RSS feed title with encoded Unicode entities
  413. * Show number of unread per category in category list instead of number of feeds
  414. * Bump github.com/lib/pq from 1.10.0 to 1.10.1
  415. * Filtering doesn't work when selecting from multiple found feeds
  416. * Bump github.com/tdewolff/minify/v2 from 2.9.15 to 2.9.16
  417. * Use an appropriate color for visited links on dark theme
  418. * Fix typo in reader/json/doc.go
  419. * Create SECURITY.md
  420. * Setup golangci-lint Github Action
  421. * Add per feed cookies option
  422. * Bump github.com/prometheus/client_golang from 1.9.0 to 1.10.0
  423. * Bump github.com/tdewolff/minify/v2 from 2.9.13 to 2.9.15
  424. Version 2.0.29 (Mar 21, 2021)
  425. -----------------------------
  426. * Miniflux requires at least Go 1.16 now
  427. * Improved support of Atom text constructs
  428. - Improve handling of CDATA in text elements
  429. - Omit XHTML root element because it should not be part of the content
  430. - Fix incorrect parsing of HTML elements
  431. * Handle RDF feed with HTML encoded entry title
  432. * Add Turkish language
  433. * Improve deletion of feeds with lots of entries
  434. * Add support of Systemd readiness notification using the sd_notify protocol
  435. * Remove feed_icons service worker cache because it's causing more problems than it solves (and HTTP cache seems faster)
  436. * Add basic PWA offline page
  437. - Add basic offline mode when using the service worker
  438. - Starting in Chrome 93, offline mode is going to be a requirement to install the PWA
  439. * Replace icon for "Add to home screen" button
  440. * Use SVG icons for "toast" notifications
  441. * Use SVG sprite for icons instead of inline elements
  442. * Reset scroll position on mark page as read
  443. * Add link to mark all feed entries as read
  444. * Make web app display mode configurable (The change is visible after reinstalling the web app)
  445. * Handle RSS feeds with CDATA in author item element
  446. * Add read time on the article page
  447. * Avoid showing a broken image when there is no feed icon
  448. * Add option to allow self-signed or invalid certificates
  449. * Add new config option to scrape YouTube's website to get video duration as read time (disabled by default)
  450. * Send full article content to Wallabag
  451. * Add more extensive health check support
  452. - Improve endpoint to test database connection
  453. - Add new cli argument: -healthcheck
  454. - Update Docker Compose examples
  455. * Update iframe "allow list" to support Bilibili videos
  456. * Remove completely generated files and use embed package to bundle JS/CSS/Images/Translations files into the final binary
  457. * Remove deprecated io/ioutil package
  458. * Show Postgres version in "About" page
  459. Version 2.0.28 (Feb 15, 2021)
  460. -----------------------------
  461. * Add HTTP header "Referrer-Policy: no-referrer"
  462. * Handle entry title with double encoded entities
  463. * Add Open Containers annotations to Docker image
  464. * Remove iframe inner HTML contents (iframe element never has fallback content)
  465. * Update date parser to fix another time zone issue
  466. * Update German translation for blocklist and keeplist
  467. * Validate Keep list and Block list rules syntax
  468. * Add support for IPv6 with zone index
  469. * Allow images with data URLs
  470. * Limit full-text search indexation to first 500K characters (tsvector has a size limit of 1MB)
  471. * Change PWA display mode to standalone
  472. * ETag value is not set correctly in HTTP client (regression)
  473. * Add database backed Let's Encrypt certificate cache
  474. * Add global option POLLING_PARSING_ERROR_LIMIT
  475. * Update systemd service file comments to use `systemctl edit` for editing
  476. * Update Go version to 1.15 in go.mod
  477. * Don't discard the "Fetch via Proxy" option
  478. * Update man page to show the default values
  479. * Add PostgreSQL indices
  480. * Add API endpoints to get feeds and entries of a category
  481. * Create feed query builder
  482. * Bump github.com/PuerkitoBio/goquery from 1.6.0 to 1.6.1
  483. * Show global options in the about page
  484. * Update man page to mention -1 can be used for CLEANUP_ARCHIVE_* options
  485. Version 2.0.27 (Jan 9, 2021)
  486. ----------------------------
  487. * Add spellcheck="false" to input fields
  488. * Refactoring of entry, feed, category, and user validation
  489. * Avoid stripping tags for entry title
  490. * Add the possibility to subscribe to feeds with the Android Share menu
  491. * API improvements:
  492. - Change feed creation request to allow setting most fields via API
  493. - Allow regular users to change settings via API
  494. - Make user fields editable via API
  495. - Renaming non-existent category via API should return a 404
  496. * Update Systemd service file:
  497. - Add capability CAP_NET_BIND_SERVICE (allow the process to listen on privileged ports)
  498. - Enable a private /tmp for $CERT_CACHE (required when using Let's Encrypt)
  499. * Update read/star icons to SVGs
  500. * Add autocomplete="username" to HTML forms
  501. * Improve user mass delete to use fewer Goroutines
  502. * Use SQL transaction when creating user sessions and users
  503. * Remove extra column (HSTORE field) from users table and migrate key/value pairs to specific columns
  504. * Bump github.com/prometheus/client_golang from 1.8.0 to 1.9.0
  505. * Bump github.com/lib/pq from 1.8.0 to 1.9.0
  506. * Add styles for <abbr> HTML tag
  507. * Refactor SQL migrations:
  508. - Avoid embedding SQL files into binary
  509. - Allow more flexible changes by using Go functions
  510. * Add Server-Timing header to unread page
  511. * Show correct User Agent in input placeholders
  512. * Add autocomplete attribute to login form
  513. * Add Grafana dashboard in contrib folder
  514. Version 2.0.26 (Dec 5, 2020)
  515. ----------------------------
  516. * Use created_at instead of published_at for archiving entries
  517. * Add created_at field for entries
  518. * Handle invalid feeds with relative URLs
  519. * Add API routes for "mark all as read"
  520. * Add support for setting a global default User-Agent
  521. * Add rewrite rule "replace" for custom search and replace
  522. * Calculate reading time during feed processing
  523. * Handle various invalid dates
  524. * systemd: keep /run writeable
  525. * debian package: add missing post-install script
  526. * Do not follow redirects when trying known feed URLs
  527. * Trim spaces around icon URLs
  528. * Reinstate EXPOSE instruction in Dockerfile
  529. * Update German and Portuguese translations
  530. Version 2.0.25 (Nov 3, 2020)
  531. ----------------------------
  532. * Rename "original" link to be more explicit
  533. * Do not escape HTML for Atom 1.0 text content during parsing (Avoid HTML entities issues)
  534. * Do not use charset.NewReader if the body is a valid UTF-8 document
  535. * Restore the ability to use a proxy for all HTTP requests (see https://golang.org/pkg/net/http/#ProxyFromEnvironment)
  536. * Show Git commit in about page
  537. * Publish Docker images to GitHub Container Registry
  538. * Added few Docker Compose examples in contrib folder
  539. * Added Ansible Role + Playbook for Miniflux in contrib folder
  540. * Add rewrite rule to use noscript content for images rendered with Javascript
  541. * Bump github.com/prometheus/client_golang from 1.7.1 to 1.8.0
  542. * Update contributor link and Godoc badge for API client
  543. * Move Debian package builder to main repository
  544. * Move RPM build files to main repository
  545. * Add GitHub Action to generate Docker images
  546. * Build multi-platform images with Docker Buildx
  547. * Add keyboard shortcut to scroll current item to the top
  548. * Add feed filters (Keeplist and Blocklist)
  549. * Do not proxy image with a data URL
  550. * Bump github.com/PuerkitoBio/goquery from 1.5.1 to 1.6.0
  551. * Proxify articles crawled manually
  552. * Proxify images defined in srcset attribute
  553. * Remove plaintext Fever password from database
  554. * Add keyboard shortcut to jump to an item's feed page
  555. * Add option for swipe gesture on entries on mobile
  556. Version 2.0.24 (Oct 3, 2020)
  557. ----------------------------
  558. * Add rewrite rule to fix Medium.com images
  559. * Update sanitizer to support responsive images:
  560. - Add support for picture HTML tag
  561. - Add support for srcset, media, and sizes attributes to img and source tags
  562. * Enhance man page formatting
  563. * Add Prometheus exporter
  564. * Remove dependency on global config options in HTTP client
  565. * API:
  566. - Avoid database lookup if empty credentials are provided
  567. - Add the possibility to filter entries by category ID
  568. - Add the possibility to filter entries by a list of statuses
  569. * Add Feed ID in worker error logs
  570. * Tweak default HTTP client transport timeout values to reduce the number of file descriptors
  571. * CSS tweaks and optimizations:
  572. - Prevent sub and sup from affecting line-height
  573. - Set touch-action on .items to prevent browser navigation
  574. - Move font-family specific CSS to the appropriate file
  575. - Update primary font-family for UI to be even more compatible with various operating systems
  576. - Make .entry-content font-weight variable depending on font-family used
  577. * Avoid Javascript minifier to break keyboard shortcuts
  578. * Rename service worker script to avoid being blocked by uBlock
  579. * Update date parser to handle Pacific Daylight Time in addition to Pacific Standard Time
  580. * Create index to speed up bookmark page
  581. * Do not try to update a duplicated feed after a refresh
  582. * Use a transaction to refresh and create entries
  583. * Speed up entries clean up with an index and a goroutine
  584. * Avoid the accumulation of enclosures by keeping only what is referenced in the feed
  585. * Add workarounds for parsing an invalid date
  586. * Archive older entries first
  587. * Update API client to support more filters
  588. * Avoid duplication between get feed entries and get entries API endpoints
  589. * Enable strict slash to avoid a page not found (404) when using a trailing slash in the URLs
  590. * Add a submit button to each section of the integration page
  591. * Reload page after making page as read when showing unread entries
  592. * Add option to archive unread entries
  593. * Add option to enable maintenance mode
  594. * Add HTTP proxy option for subscriptions
  595. * Make add_invidious_video rule applicable for different invidious instances
  596. * Fix reading time for jp, ko and zh languages
  597. * Update POLLING_SCHEDULER description in man page
  598. * Bump gorilla/mux from 1.7.4 to 1.8.0
  599. * Add link to mark a feed as read
  600. Version 2.0.23 (Aug 15, 2020)
  601. -----------------------------
  602. * Try known URLs when discovering subscriptions
  603. * Add workarounds to find YouTube channel feeds (YouTube doesn't expose RSS links anymore for new-style URLs)
  604. * Increase HTTP server timeout values
  605. * Use stdlib constants for HTTP methods instead of strings
  606. * Add support for RTL feed content
  607. * Ignore <media:title> to avoid overriding the default title if they are different
  608. * Add support for secret keys exposed as a file (useful for containerized environments)
  609. * Display recent entries first in search results
  610. * Do not archive shared items
  611. * Add option to change the number of entries per page
  612. * Add Brazilian Portuguese (pt_BR) translation
  613. * Add reading time for entries
  614. * Redirect to login page if CSRF token is expired
  615. * Fever API:
  616. - Use getEntryIDs instead of getEntries to reduce memory consumption
  617. - Fix max_id argument logic to follow the specs
  618. - Improve logging
  619. - Do not send articles to external services when unsaving an item
  620. - Create index to speed up API calls
  621. - Log client IP in middleware
  622. * API client: Do not return body for response with no content
  623. * REST API:
  624. - Delete users asynchronously (Deleting large users might lock the tables)
  625. - Add CORS support
  626. * Align entry actions to the left
  627. - Attempt to avoid awkward alignment on smartphone screens
  628. - Keep the read/star actions aligned to the left
  629. - Remove CSS flex to allow easier override with custom CSS
  630. * Upgrade Postgres client library
  631. * Upgrade CI checks to Go 1.15
  632. Version 2.0.22 (Jun 19, 2020)
  633. -----------------------------
  634. * Remove child-src CSP policy (deprecated)
  635. * Add /version endpoint
  636. * Add the ability to use custom css
  637. * Handle more invalid dates
  638. * Add CSS styles for textarea
  639. * Add index to speed up slow query
  640. * Speed up feed list page rendering
  641. * Add alternative scheduler based on the number of entries
  642. * Setup Dependabot on GitHub
  643. * Update Docker image to Alpine 3.12
  644. * Add feed option to ignore HTTP cache
  645. * Fix some Italian and German translations
  646. * Added scraper rule for RayWenderlich.com, TheOatmeal.com, financialsamurai.com, dilbert.com and turnoff.us
  647. * Replace link to categories by a link to the list of entries in "Category > Feeds" page
  648. * Change feed title to a link to the original website
  649. * Add icons to feeds and categories list
  650. * Update dependencies and remove vendor folder
  651. Version 2.0.21 (Mar 28, 2020)
  652. -----------------------------
  653. * Add SVG icons to entry actions
  654. * Add support for Invidious
  655. - Embed Invidious player for invidio.us feeds
  656. - Add new rewrite rule to use Invidious player for Youtube feeds
  657. * Check during application startup if the database schema is up to date
  658. * Change default theme for public pages to "System Serif"
  659. * Add feature to share an article (create a public link of a feed entry)
  660. * Fix SQL injection in full-text search rank ordering
  661. * Add generic OpenID Connect provider (OAuth2)
  662. * Use more secure TLS configuration for autocert server (increase SSL Labs score from B to A+)
  663. * Add feature to create per-application API Keys
  664. * Add Go 1.14 to GitHub Actions
  665. * Add scraper rule for wdwnt.com
  666. * Add API client function to refresh all feeds
  667. * Add API endpoint to refresh all feeds
  668. * Add Auth Proxy authentication
  669. * Use rel=prev/next on pagination links
  670. Version 2.0.20 (Feb 15, 2020)
  671. -----------------------------
  672. * Add Japanese translation
  673. * History: show entries in the order in which they were read
  674. * Add button to add to Home screen
  675. * Ignore enclosures without URL
  676. * Correct spelling of "toggle"
  677. * List view: align information to the left side, and the actionable buttons to the right
  678. * Redirect to /unread when getting a 404 for an unread expired entry
  679. * Do not advance to the next item when using the 'v' shortcut on the list of starred items
  680. * Wrap around when navigating with keyboard shortcuts on a list view
  681. * Remove unused Feed.Entries and Entry.Category from API client
  682. * Add comments link keyboard shortcut
  683. * Allow application/xhtml+xml links as comments URL in Atom replies
  684. * Allow only absolute URLs in comments URL
  685. * Use internal XML workarounds to detect feed format
  686. * Make menu consistent across feed pages
  687. * Make sure external URLs are not encoded incorrectly by Go template engine
  688. * Make sure whitelisted URI schemes are handled properly by the sanitizer
  689. * Use white background for favicon (Improve legibility when using a dark theme)
  690. * Remove dependency on Sed to build Docker images
  691. * Normalize URL query string before executing HTTP requests
  692. * Improve Dublin Core support for RDF feeds
  693. * Improve Podcast support (iTunes and Google Play feeds)
  694. * Add support for Atom 0.3
  695. * Add support for Atom "replies" link relation
  696. * Return outer HTML when scraping elements
  697. * Update scraper rule for "Le Monde"
  698. * Filter valid XML characters for UTF-8 XML documents before decoding
  699. * Trim spaces for RDF entry links
  700. Version 2.0.19 (Dec 1, 2019)
  701. ----------------------------
  702. * Add shortcut "V" to open original link in current tab
  703. * Add the possibility to add rules during feed creation
  704. * Wrap attachments into <details> disclosure element
  705. * Show attachment size on entry page
  706. * Add support of RSS Media elements (group, description, peer link, and thumbnails)
  707. * Add rewrite functions: convert_text_link and nl2br
  708. * Add scraper rule for openingsource.org
  709. * Add Makefile target to build only amd64 Docker image
  710. * Make sure to remove integration settings when removing a user
  711. * Add API parameter to filter entries by category
  712. * Display list of feeds per category
  713. * Show the number of read and unread entries for each feed
  714. * Make sure settings menu is consistent
  715. * Remove fixed table-layout for entry content
  716. * Update autocert lib because ACME v1 is EOL
  717. * Do not lighten blockquote font color
  718. * Update de_DE translation
  719. * Send a response when changing status of removed entries in Fever API
  720. * Add meta tag to disable Google Translate
  721. * Improve storage module
  722. * Improve XML decoder to remove illegal characters
  723. * Compare Fever token case-insensitively
  724. * Make sure integration tests are marked as failed in Github Actions
  725. * Add new formats to date parser
  726. * Add notification message when using keyboard shortcuts: f, s, and m.
  727. * Avoid keyboard shortcuts to conflict with Firefox’s "Find as you type" feature
  728. Version 2.0.18 (Sep 25, 2019)
  729. -----------------------------
  730. * Add Docker image variant for arm32v7
  731. * Add theme variants
  732. - Use CSS variables instead of inherence
  733. - Rename default theme to "Light - Serif"
  734. - Rename Black theme to "Dark - Serif"
  735. - Rename "Sans-Serif" theme to "Light - Sans Serif"
  736. - Add "System" theme that use system preferences: Dark or Light
  737. - Add Serif and Sans-Serif variants for each color theme
  738. * Avoid constraint error when having duplicate entries during feed creation
  739. * Disable strict XML parsing
  740. * Ignore invalid content type
  741. * Update man page
  742. * Replace Travis by GitHub Actions
  743. * Rename cleanup config variables and deprecate old ones
  744. - CLEANUP_FREQUENCY_HOURS instead of CLEANUP_FREQUENCY
  745. - CLEANUP_ARCHIVE_READ_DAYS instead of ARCHIVE_READ_DAYS
  746. * Make configurable the number of days to remove old sessions
  747. * Add native lazy loading for images and iframes
  748. * Do not buffer responses in the image proxy
  749. * Update dependencies
  750. * Add Go 1.13 to test matrix
  751. * Replace link border by outline to avoid slight content shift
  752. * New rewrite function: add_mailto_subject
  753. * Import OPML from URL
  754. * Fix HTML injection in addImageTitle
  755. * Accept HTML entities when parsing XML
  756. Version 2.0.17 (Aug 3, 2019)
  757. ----------------------------
  758. * Update Docker image to Alpine Linux 3.10.1
  759. * Pass auth header to manifest request (crossorigin attribute)
  760. * Sort feed categories before serialization
  761. * Fix syntax errors in man page
  762. * Add .search margin-right
  763. * Ask for confirmation before flushing history, marking page as read, and mark all as read
  764. * Add option to disable feeds
  765. Version 2.0.16 (Jun 8, 2019)
  766. ----------------------------
  767. * Add option to toggle date/time in log messages
  768. * Add optional config file parser in addition to environment variables
  769. * Make HTTP Client timeout and max body size configurable
  770. * Refactor config package:
  771. - Parse configuration only once during startup time
  772. - Store configuration values in a global variable
  773. * Flip behavior of j and k keyboard shortcuts
  774. * Bump Postgresql client library to v1.1.1 to bring in SCRAM-SHA-256 authentication
  775. * Add option to enable/disable keyboard shortcuts
  776. * Add missing translation
  777. * Improve page reload when showing unread/all entries:
  778. - Show only unread entries = refresh current page
  779. - Show all entries = go to next page
  780. * Always display feed entries even when there is a feed error
  781. * Use loading label instead of saving when submitting login form
  782. * Add OPML v1 support during importation
  783. * Add 'allow-popups' to iframe sandbox permissions
  784. Version 2.0.15 (Mar 16, 2019)
  785. -----------------------------
  786. * Move Dockerfile to main repo
  787. * Change location of the binary from /usr/local/bin to /usr/bin in Docker image
  788. * Add double tap detection for next/previous page navigation
  789. * Allow users to disable auto-remove
  790. * Make parser compatible with Go 1.12
  791. * Add Golang 1.12 to CI
  792. * Use feed ID instead of user ID to check entry URLs presence
  793. * Fix typo in stylesheet
  794. * Sort search results by relevance
  795. * Use preferably the published date for Atom feeds
  796. * Add Spanish translation
  797. * Rename session cookies
  798. * Handle the case when application session is expired and not user session
  799. Version 2.0.14 (Jan 13, 2019)
  800. -----------------------------
  801. * Only attempt to change password if the confirmation field is filled in (Firefox)
  802. * Remove URL from client user agent
  803. * Make the feed list order case-insensitive
  804. * Handle XHTML Summary elements for Atom feeds
  805. * Make UTF-8 the default encoding for XML feeds
  806. * Add more targets to Makefile
  807. * Add -mod=vendor in Makefile
  808. * Move health check endpoint from ui package to httpd service
  809. * Add workaround for non GMT dates (RFC822, RFC850, and RFC1123)
  810. * Make sure `<strong>` elements are bold
  811. * Show scrollbars only when necessary for <pre> elements
  812. * Add Italian translation
  813. * Allow to switch between unread only and all entries on category/feed views
  814. * Add function storage.UpdateFeedError()
  815. * Add BBC News scraping rule
  816. * Ignore JSON feeds from EnsureUnicode()
  817. * Preserve category selection when no feed is found
  818. * Update XML encoding regex to take single quotes into consideration
  819. * Send cli errors to stderr
  820. * Update dependencies
  821. * Make password prompt compatible with Windows
  822. * Make configurable the number of days to archive read items
  823. * Change log level to debug when starting workers
  824. * Do not show $DATABASE_URL warning when showing application info
  825. * Move image proxy filter to template functions
  826. * Update scraper rule for lemonde.fr
  827. * Refactor manual entry scraper
  828. * Apply rewriter rules on manual "Fetch Original Content"
  829. * Add Makefile target for current OS and architecture
  830. * Improve Makefile
  831. Version 2.0.13 (Nov 25, 2018)
  832. -----------------------------
  833. * Add man page
  834. * Add support for Systemd Socket Activation (experimental)
  835. * Add the possibility to listen on Unix sockets
  836. * Add config options to disable HTTP and scheduler services
  837. * Archive more read entries in cleanup job
  838. * Change default database connection string (backward compatible)
  839. * Improve logging messages in ui package
  840. * Improve overall Simplified Chinese translations
  841. * Improve time since post date displays:
  842. - "15 days" now is "15 days" rather than "3 weeks" ago
  843. - "32 days" is now "1 month" rather than "2 months" ago
  844. - "366 days" is now "1 year" rather than "2 years" ago
  845. * Allow the scraper to parse XHTML documents
  846. * Remove charset=utf-8 from JSON responses
  847. * Ignore hotkeys containing Control, Alt or Meta keys
  848. * Handle more encoding conversion edge cases
  849. * Disable go test caching
  850. * Avoid duplication of ldflags in Makefile
  851. * Fix wrong translation key for category pages
  852. * Code refactoring:
  853. - Simplify application HTTP middlewares
  854. - Replace daemon and scheduler package with service package
  855. - Move UI middlewares and routes to ui package
  856. - Move API middleware and routes to api package
  857. - Move Fever middleware and routes to fever package
  858. Version 2.0.12 (Oct 26, 2018)
  859. -----------------------------
  860. * Add OpenBSD build
  861. * Improve logging for OAuth2 callback
  862. * Make "g f" go to feed, or list of feeds
  863. * Add more details in feed storage errors to facilitate debugging
  864. * Add entries storage error to feed errors count
  865. * Set arbitrary maximum size for tsvector column
  866. * Unsubscribe from feed through link or "#"
  867. * Simplify feed entries filtering
  868. * Simplify feed fetcher
  869. * Simplify feed parser and format detection
  870. * Improve unit tests in url package
  871. * Add short cli flags -i and -v
  872. * Convert text links and line feeds to HTML in YouTube channels
  873. * Change link state when marking all entries as read
  874. * Add missing package descriptions for GoDoc
  875. * Fix typo in license header
  876. * Refactor HTTP response builder
  877. * Improve Fever API performances when marking a feed or group as read
  878. * Set focus on article link when pressing prev/next hotkeys
  879. * Improve request package and add more unit tests
  880. * Add more unit tests for config package
  881. * Simplify locale package usage (refactoring)
  882. * Translate application in Russian
  883. * Use disclosure widget <details> for advanced feed options
  884. * Use unique translation IDs instead of English text as key
  885. * Add more unit tests for template functions
  886. * Fix invalid output when truncating Unicode text in templates
  887. * Add the possibility to override default user agent for each feed
  888. * Split Makefile linux targets by architecture
  889. * Add compiler, Arch, and OS to info command
  890. * Avoid line break between emoji and (un)read/(un)star links
  891. * Build Docker image for multiple architectures (amd64, arm32v6, arm64v8)
  892. Version 2.0.11 (Sep 11, 2018)
  893. -----------------------------
  894. * Set cookie flag `SameSite` to Lax mode
  895. * Use predefined ciphers when TLS is configured
  896. * Avoid displaying an error when shutting down the daemon
  897. * Add "Mark this page as read" to the bottom
  898. * Store client IP address in request context
  899. * Refactor HTTP context handling
  900. * Make user creation via environment variables idempotent
  901. * Use regular text version of ✔︎ instead of emoji version on iOS
  902. * Add toggle status button to entry page
  903. * Migrate to Go Modules and Go 1.11
  904. * Show count of feeds with permanent errors in header menu
  905. * Display remote client IP in logs when having a login failure (Fail2Ban)
  906. * Add remove button in feed edit page
  907. * Split integration tests into multiple files
  908. * Update scraper rule for heise.de
  909. * Expose real error messages for internal server API errors
  910. * Move Golang API client in project source tree (the separate project is deprecated)
  911. * Use canonical imports
  912. * Add Procfile
  913. * Create database package (refactoring)
  914. * Update user agent with new website URL
  915. * Update German translation
  916. Version 2.0.10 (July 22, 2018)
  917. ------------------------------
  918. * Avoid browser caching issues when assets changes
  919. * Add Gzip/Deflate compression for HTML, JSON, CSS and Javascript responses
  920. * Improve themes handling
  921. * Store user theme in session
  922. * Logged out users will keep their theme
  923. * Add theme background color to web manifest and meta tag
  924. * Update application icon with different sizes
  925. * Add support for published tag in Atom feeds
  926. * Add tooltip to feed domain in feeds list (title attribute)
  927. * Prevent vertical scrolling on swipe
  928. * Show feed title instead of domain in items list
  929. * Add service worker to cache feed icons
  930. * Make image proxy configurable via IMAGE_PROXY environment variable:
  931. * none = No proxy
  932. * http-only = Proxy only non-HTTPS images (default)
  933. * all = Proxy everything
  934. * Add alt attribute for feed icons
  935. * Update CI jshint check
  936. * Add embedly.com to iframe whitelist
  937. * Use passive event listeners for touch events
  938. * Add `add_dynamic_image` rewriter for JavaScript-loaded images
  939. * Change feed password field type to text to avoid auto-completion with Firefox
  940. * Using autocomplete="off" or autocomplete="new-password" doesn't change anything
  941. * Changing the input ID doesn't change anything
  942. * Using a different input name doesn't change anything
  943. * Only Chrome supports autocomplete="new-password"
  944. * Add base URL validation
  945. * Update default stylesheet name in HTML layout
  946. * Pre-generate themes stylesheets at build time
  947. * Update vendor dependencies
  948. * Refactor assets bundler and split Javascript files
  949. * Run sanitizer after all processing and entry content rewrite
  950. * Remove timestamp from generated files
  951. * Add support for protocol relative YouTube URLs
  952. * Add Postgres full-text search for entries
  953. * Add search form in user interface
  954. * Add search parameter to the API
  955. * Improve Dutch locales
  956. * Sandbox iframes when sanitizing
  957. * Keep consistent text size on mobile orientation change
  958. * Change permission of /etc/miniflux.conf to 600 instead of 644 in RPM package
  959. * Add tzdata package to Docker image
  960. * Update Docker image to Alpine Linux 3.8
  961. Version 2.0.9 (July 1, 2018)
  962. ----------------------------
  963. * Avoid Chrome to autocomplete no-login password fields
  964. * Add cli flag to reset all feed errors
  965. * Do not ignore errored feeds when a user refresh feeds manually
  966. * Add specific 404 and 401 error messages
  967. * Strip binaries to reduce size
  968. * Make sure we always get the pagination in unread mode
  969. * Fix incorrect data value when toggling bookmark flag on entry page
  970. * Set opener to null when opening original URL with JavaScript
  971. * Remove unnecessary style
  972. * Refactor AddImageTitle rewriter
  973. * Only processes images with `src` **and** `title` attributes (others are ignored)
  974. * Processes **all** images in the document (not just the first one)
  975. * Wraps the image and its title attribute in a `figure` tag with the title attribute's contents in a `figcaption` tag
  976. * Improve sanitizer to remove `style`, `noscript` and `script` tag contents
  977. * Improve feed and user API updates with optional values
  978. * Add new fields for feed username/password
  979. * Improve memory usage debug log
  980. * Disable keep-alive for HTTP client
  981. * Close HTTP response body even for failed requests
  982. * Add Sans-Serif theme
  983. * Rewrite iframe Youtube URLs to https://www.youtube-nocookie.com
  984. * Add more filters for API call `/entries`:
  985. * before (unix timestamp)
  986. * before_entry_id (int64)
  987. * after (unix timestamp)
  988. * after_entry_id (int64)
  989. * starred (boolean)
  990. * Rewrite individual entry pagination SQL queries
  991. * Simplify entry query builder
  992. * Prevent items from sticking on touchend
  993. * Extended horizontal overflow to feed and category views
  994. * Translate missing strings
  995. * Update German translation
  996. Version 2.0.8 (June 4, 2018)
  997. ----------------------------
  998. * Add Pocket integration
  999. * Rewrite RealIP() to avoid returning an empty string
  1000. * Convert IP field from text to inet type
  1001. * Improve error handling in integration clients
  1002. * Make unread counter clickable
  1003. * Archive read entries automatically after 60 days
  1004. * Hide horizontal overflow when swiping articles on touch devices
  1005. * Add API endpoint to get logged user
  1006. * Fever API: Return response with an empty list if there is no item
  1007. * Handle feeds with dates formatted as Unix timestamp
  1008. Version 2.0.7 (May 7, 2018)
  1009. ---------------------------
  1010. * Add API endpoint to import OPML file
  1011. * Make sure to close request body in HTTP client
  1012. * Do not show save link if no integration is configured
  1013. * Make sure integrations are configured before to make any HTTP requests
  1014. * Avoid people to unlink their OAuth2 account without having a local password
  1015. * Do not use shared variable to translate templates (avoid concurrency issue)
  1016. * Use vanilla HTTP handlers (refactoring)
  1017. * Move HTTP client to its own package (refactoring)
  1018. * Add middleware to read X-Forwarded-Proto header (refactoring)
  1019. * Use Gorilla middleware (refactoring)
  1020. * Scrape parent element for iframe
  1021. * Add SoundCloud and Bandcamp iframe sources
  1022. Version 2.0.6 (Apr 20, 2018)
  1023. ----------------------------
  1024. * Improve graceful shutdown
  1025. * Simplify Heroku deployment
  1026. * Display memory usage and some metrics in logs
  1027. * Increase read/write timeout for HTTP server
  1028. * Add support for Dublin Core date in RDF feeds
  1029. * Do not return an error if the user session is not found
  1030. * Handle some non-english date formats
  1031. * Add missing French translation
  1032. * Rename RSS parser getters
  1033. * Get the right comments URL when having multiple namespaces
  1034. * Ignore caching headers for feeds that send "Expires: 0"
  1035. * Update translations
  1036. Version 2.0.5 (Apr 7, 2018)
  1037. ---------------------------
  1038. * Avoid unread counter to be off by one when reading an entry
  1039. * Add Comments URL to entries
  1040. * Add FreeBSD build target
  1041. * Handle RSS author elements with inner HTML
  1042. * Fix typo in translations
  1043. * Add Dutch translation
  1044. * Convert enclosure size field to bigint
  1045. * Switch CI to Go v1.10
  1046. * Fix broken OPML import when compiling with Go 1.10
  1047. Version 2.0.4 (Mar 5, 2018)
  1048. ---------------------------
  1049. * Add Simplified Chinese translation
  1050. * Add Nunux Keeper integration
  1051. * Filter the list of timezones
  1052. * Add timezone to entries dates for REST and Fever API
  1053. * Show last login and session creation date in current timezone
  1054. * Fix typo in edit user template
  1055. * Improve parser error messages
  1056. * Remove parentheses around feed error messages
  1057. * Support localized feed errors generated by background workers
  1058. * Print info message if DATABASE_URL is not set
  1059. Version 2.0.3 (Feb 19, 2018)
  1060. ----------------------------
  1061. * Add Polish translation
  1062. * Change color of <q> tags for black theme
  1063. * Add database indexes (don't forget to run database migrations)
  1064. * Handle Atom feeds with HTML title
  1065. * Strip invalid XML characters to avoid parsing errors
  1066. * Improve error handling for HTTP client
  1067. Version 2.0.2 (Feb 5, 2018)
  1068. ---------------------------
  1069. * Add support for Let's Encrypt http-01 challenge
  1070. * Move template functions outside engine (refactoring)
  1071. * Take timezone into consideration when calculating relative time
  1072. * Add support for HTTP Strict Transport Security header
  1073. * Add support for base URLs with subfolders
  1074. * Add missing about menu in settings
  1075. * Show API URL endpoints in user interface
  1076. * Do not update entry date while refreshing a feed
  1077. * Add flag to toggle debug logging
  1078. * Improve unread counter updates
  1079. Version 2.0.1 (Jan 22, 2018)
  1080. ----------------------------
  1081. * Change user agent (People are blocking the crawler with mod_security)
  1082. * Move environment variables to config package (refactoring)
  1083. * Add build targets for all ARM architectures
  1084. * Do not crawl existing entry URLs
  1085. * Show translated login page in user language when logged out
  1086. * Handle more encoding edge cases:
  1087. - Feeds with charset specified only in Content-Type header and not in XML document
  1088. - Feeds with charset specified in both places
  1089. - Feeds with charset specified only in XML document and not in HTTP header
  1090. * Add German translation
  1091. * Add mark as read/unread link on list items
  1092. * Add API endpoint for OPML export
  1093. Version 2.0.0 (Jan 11, 2018)
  1094. ----------------------------
  1095. * Initial release of Miniflux 2.