ChangeLog 35 KB

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