ChangeLog 54 KB

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