ChangeLog 48 KB

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