ChangeLog 47 KB

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