ChangeLog 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488
  1. Version 2.0.21 (Mar 28, 2020)
  2. -----------------------------
  3. * Add SVG icons to entry actions
  4. * Add support for Invidious
  5. - Embed Invidious player for invidio.us feeds
  6. - Add new rewrite rule to use Invidious player for Youtube feeds
  7. * Check during application startup if the database schema is up to date
  8. * Change default theme for public pages to "System Serif"
  9. * Add feature to share an article (create a public link of a feed entry)
  10. * Fix SQL injection in full-text search rank ordering
  11. * Add generic OpenID Connect provider (OAuth2)
  12. * Use more secure TLS configuration for autocert server (increase SSL Labs score from B to A+)
  13. * Add feature to create per-application API Keys
  14. * Add Go 1.14 to GitHub Actions
  15. * Add scraper rule for wdwnt.com
  16. * Add API client function to refresh all feeds
  17. * Add API endpoint to refresh all feeds
  18. * Add Auth Proxy authentication
  19. * Use rel=prev/next on pagination links
  20. Version 2.0.20 (Feb 15, 2020)
  21. -----------------------------
  22. * Add Japanese translation
  23. * History: show entries in the order in which they were read
  24. * Add button to add to Home screen
  25. * Ignore enclosures without URL
  26. * Correct spelling of "toggle"
  27. * List view: align information to the left side, and the actionable buttons to the right
  28. * Redirect to /unread when getting a 404 for an unread expired entry
  29. * Do not advance to the next item when using the 'v' shortcut on the list of starred items
  30. * Wrap around when navigating with keyboard shortcuts on a list view
  31. * Remove unused Feed.Entries and Entry.Category from API client
  32. * Add comments link keyboard shortcut
  33. * Allow application/xhtml+xml links as comments URL in Atom replies
  34. * Allow only absolute URLs in comments URL
  35. * Use internal XML workarounds to detect feed format
  36. * Make menu consistent across feed pages
  37. * Make sure external URLs are not encoded incorrectly by Go template engine
  38. * Make sure whitelisted URI schemes are handled properly by the sanitizer
  39. * Use white background for favicon (Improve legibility when using a dark theme)
  40. * Remove dependency on Sed to build Docker images
  41. * Normalize URL query string before executing HTTP requests
  42. * Improve Dublin Core support for RDF feeds
  43. * Improve Podcast support (iTunes and Google Play feeds)
  44. * Add support for Atom 0.3
  45. * Add support for Atom "replies" link relation
  46. * Return outer HTML when scraping elements
  47. * Update scraper rule for "Le Monde"
  48. * Filter valid XML characters for UTF-8 XML documents before decoding
  49. * Trim spaces for RDF entry links
  50. Version 2.0.19 (Dec 1, 2019)
  51. ----------------------------
  52. * Add shortcut "V" to open original link in current tab
  53. * Add the possibility to add rules during feed creation
  54. * Wrap attachments into <details> disclosure element
  55. * Show attachment size on entry page
  56. * Add support of RSS Media elements (group, description, peer link, and thumbnails)
  57. * Add rewrite functions: convert_text_link and nl2br
  58. * Add scraper rule for openingsource.org
  59. * Add Makefile target to build only amd64 Docker image
  60. * Make sure to remove integration settings when removing a user
  61. * Add API parameter to filter entries by category
  62. * Display list of feeds per category
  63. * Show the number of read and unread entries for each feed
  64. * Make sure settings menu is consistent
  65. * Remove fixed table-layout for entry content
  66. * Update autocert lib because ACME v1 is EOL
  67. * Do not lighten blockquote font color
  68. * Update de_DE translation
  69. * Send a response when changing status of removed entries in Fever API
  70. * Add meta tag to disable Google Translate
  71. * Improve storage module
  72. * Improve XML decoder to remove illegal characters
  73. * Compare Fever token case-insensitively
  74. * Make sure integration tests are marked as failed in Github Actions
  75. * Add new formats to date parser
  76. * Add notification message when using keyboard shortcuts: f, s, and m.
  77. * Avoid keyboard shortcuts to conflict with Firefox’s "Find as you type" feature
  78. Version 2.0.18 (Sep 25, 2019)
  79. -----------------------------
  80. * Add Docker image variant for arm32v7
  81. * Add theme variants
  82. - Use CSS variables instead of inherence
  83. - Rename default theme to "Light - Serif"
  84. - Rename Black theme to "Dark - Serif"
  85. - Rename "Sans-Serif" theme to "Light - Sans Serif"
  86. - Add "System" theme that use system preferences: Dark or Light
  87. - Add Serif and Sans-Serif variants for each color theme
  88. * Avoid constraint error when having duplicate entries during feed creation
  89. * Disable strict XML parsing
  90. * Ignore invalid content type
  91. * Update man page
  92. * Replace Travis by GitHub Actions
  93. * Rename cleanup config variables and deprecate old ones
  94. - CLEANUP_FREQUENCY_HOURS instead of CLEANUP_FREQUENCY
  95. - CLEANUP_ARCHIVE_READ_DAYS instead of ARCHIVE_READ_DAYS
  96. * Make configurable the number of days to remove old sessions
  97. * Add native lazy loading for images and iframes
  98. * Do not buffer responses in the image proxy
  99. * Update dependencies
  100. * Add Go 1.13 to test matrix
  101. * Replace link border by outline to avoid slight content shift
  102. * New rewrite function: add_mailto_subject
  103. * Import OPML from URL
  104. * Fix HTML injection in addImageTitle
  105. * Accept HTML entities when parsing XML
  106. Version 2.0.17 (Aug 3, 2019)
  107. ----------------------------
  108. * Update Docker image to Alpine Linux 3.10.1
  109. * Pass auth header to manifest request (crossorigin attribute)
  110. * Sort feed categories before serialization
  111. * Fix syntax errors in man page
  112. * Add .search margin-right
  113. * Ask for confirmation before flushing history, marking page as read, and mark all as read
  114. * Add option to disable feeds
  115. Version 2.0.16 (Jun 8, 2019)
  116. ----------------------------
  117. * Add option to toggle date/time in log messages
  118. * Add optional config file parser in addition to environment variables
  119. * Make HTTP Client timeout and max body size configurable
  120. * Refactor config package:
  121. - Parse configuration only once during startup time
  122. - Store configuration values in a global variable
  123. * Flip behavior of j and k keyboard shortcuts
  124. * Bump Postgresql client library to v1.1.1 to bring in SCRAM-SHA-256 authentication
  125. * Add option to enable/disable keyboard shortcuts
  126. * Add missing translation
  127. * Improve page reload when showing unread/all entries:
  128. - Show only unread entries = refresh current page
  129. - Show all entries = go to next page
  130. * Always display feed entries even when there is a feed error
  131. * Use loading label instead of saving when submitting login form
  132. * Add OPML v1 support during importation
  133. * Add 'allow-popups' to iframe sandbox permissions
  134. Version 2.0.15 (Mar 16, 2019)
  135. -----------------------------
  136. * Move Dockerfile to main repo
  137. * Change location of the binary from /usr/local/bin to /usr/bin in Docker image
  138. * Add double tap detection for next/previous page navigation
  139. * Allow users to disable auto-remove
  140. * Make parser compatible with Go 1.12
  141. * Add Golang 1.12 to CI
  142. * Use feed ID instead of user ID to check entry URLs presence
  143. * Fix typo in stylesheet
  144. * Sort search results by relevance
  145. * Use preferably the published date for Atom feeds
  146. * Add Spanish translation
  147. * Rename session cookies
  148. * Handle the case when application session is expired and not user session
  149. Version 2.0.14 (Jan 13, 2019)
  150. -----------------------------
  151. * Only attempt to change password if the confirmation field is filled in (Firefox)
  152. * Remove URL from client user agent
  153. * Make the feed list order case-insensitive
  154. * Handle XHTML Summary elements for Atom feeds
  155. * Make UTF-8 the default encoding for XML feeds
  156. * Add more targets to Makefile
  157. * Add -mod=vendor in Makefile
  158. * Move health check endpoint from ui package to httpd service
  159. * Add workaround for non GMT dates (RFC822, RFC850, and RFC1123)
  160. * Make sure `<strong>` elements are bold
  161. * Show scrollbars only when necessary for <pre> elements
  162. * Add Italian translation
  163. * Allow to switch between unread only and all entries on category/feed views
  164. * Add function storage.UpdateFeedError()
  165. * Add BBC News scraping rule
  166. * Ignore JSON feeds from EnsureUnicode()
  167. * Preserve category selection when no feed is found
  168. * Update XML encoding regex to take single quotes into consideration
  169. * Send cli errors to stderr
  170. * Update dependencies
  171. * Make password prompt compatible with Windows
  172. * Make configurable the number of days to archive read items
  173. * Change log level to debug when starting workers
  174. * Do not show $DATABASE_URL warning when showing application info
  175. * Move image proxy filter to template functions
  176. * Update scraper rule for lemonde.fr
  177. * Refactor manual entry scraper
  178. * Apply rewriter rules on manual "Fetch Original Content"
  179. * Add Makefile target for current OS and architecture
  180. * Improve Makefile
  181. Version 2.0.13 (Nov 25, 2018)
  182. -----------------------------
  183. * Add man page
  184. * Add support for Systemd Socket Activation (experimental)
  185. * Add the possiblity to listen on Unix sockets
  186. * Add config options to disable HTTP and scheduler services
  187. * Archive more read entries in cleanup job
  188. * Change default database connection string (backward compatible)
  189. * Improve logging messages in ui package
  190. * Improve overall Simplified Chinese translations
  191. * Improve time since post date displays:
  192. - "15 days" now is "15 days" rather than "3 weeks" ago
  193. - "32 days" is now "1 month" rather than "2 months" ago
  194. - "366 days" is now "1 year" rather than "2 years" ago
  195. * Allow the scraper to parse XHTML documents
  196. * Remove charset=utf-8 from JSON responses
  197. * Ignore hotkeys containing Control, Alt or Meta keys
  198. * Handle more encoding conversion edge cases
  199. * Disable go test caching
  200. * Avoid duplication of ldflags in Makefile
  201. * Fix wrong translation key for category pages
  202. * Code refactoring:
  203. - Simplify application HTTP middlewares
  204. - Replace daemon and scheduler package with service package
  205. - Move UI middlewares and routes to ui package
  206. - Move API middleware and routes to api package
  207. - Move Fever middleware and routes to fever package
  208. Version 2.0.12 (Oct 26, 2018)
  209. -----------------------------
  210. * Add OpenBSD build
  211. * Improve logging for OAuth2 callback
  212. * Make "g f" go to feed, or list of feeds
  213. * Add more details in feed storage errors to facilitate debugging
  214. * Add entries storage error to feed errors count
  215. * Set arbitrary maximum size for tsvector column
  216. * Unsubscribe from feed through link or "#"
  217. * Simplify feed entries filtering
  218. * Simplify feed fetcher
  219. * Simplify feed parser and format detection
  220. * Improve unit tests in url package
  221. * Add short cli flags -i and -v
  222. * Convert text links and line feeds to HTML in YouTube channels
  223. * Change link state when marking all entries as read
  224. * Add missing package descriptions for GoDoc
  225. * Fix typo in license header
  226. * Refactor HTTP response builder
  227. * Improve Fever API performances when marking a feed or group as read
  228. * Set focus on article link when pressing prev/next hotkeys
  229. * Improve request package and add more unit tests
  230. * Add more unit tests for config package
  231. * Simplify locale package usage (refactoring)
  232. * Translate application in Russian
  233. * Use disclosure widget <details> for advanced feed options
  234. * Use unique translation IDs instead of English text as key
  235. * Add more unit tests for template functions
  236. * Fix invalid output when truncating Unicode text in templates
  237. * Add the possibility to override default user agent for each feed
  238. * Split Makefile linux targets by architecture
  239. * Add compiler, Arch, and OS to info command
  240. * Avoid line break between emoji and (un)read/(un)star links
  241. * Build Docker image for multiple architectures (amd64, arm32v6, arm64v8)
  242. Version 2.0.11 (Sep 11, 2018)
  243. -----------------------------
  244. * Set cookie flag `SameSite` to Lax mode
  245. * Use predefined ciphers when TLS is configured
  246. * Avoid displaying an error when shutting down the daemon
  247. * Add "Mark this page as read" to the bottom
  248. * Store client IP address in request context
  249. * Refactor HTTP context handling
  250. * Make user creation via environment variables idempotent
  251. * Use regular text version of ✔︎ instead of emoji version on iOS
  252. * Add toggle status button to entry page
  253. * Migrate to Go Modules and Go 1.11
  254. * Show count of feeds with permanent errors in header menu
  255. * Display remote client IP in logs when having a login failure (Fail2Ban)
  256. * Add remove button in feed edit page
  257. * Split integration tests into multiple files
  258. * Update scraper rule for heise.de
  259. * Expose real error messages for internal server API errors
  260. * Move Golang API client in project source tree (the separate project is deprecated)
  261. * Use canonical imports
  262. * Add Procfile
  263. * Create database package (refactoring)
  264. * Update user agent with new website URL
  265. * Update German translation
  266. Version 2.0.10 (July 22, 2018)
  267. ------------------------------
  268. * Avoid browser caching issues when assets changes
  269. * Add Gzip/Deflate compression for HTML, JSON, CSS and Javascript responses
  270. * Improve themes handling
  271. * Store user theme in session
  272. * Logged out users will keep their theme
  273. * Add theme background color to web manifest and meta tag
  274. * Update application icon with different sizes
  275. * Add support for published tag in Atom feeds
  276. * Add tooltip to feed domain in feeds list (title attribute)
  277. * Prevent vertical scrolling on swipe
  278. * Show feed title instead of domain in items list
  279. * Add service worker to cache feed icons
  280. * Make image proxy configurable via IMAGE_PROXY environment variable:
  281. * none = No proxy
  282. * http-only = Proxy only non-HTTPS images (default)
  283. * all = Proxy everything
  284. * Add alt attribute for feed icons
  285. * Update CI jshint check
  286. * Add embedly.com to iframe whitelist
  287. * Use passive event listeners for touch events
  288. * Add `add_dynamic_image` rewriter for JavaScript-loaded images
  289. * Change feed password field type to text to avoid auto-completion with Firefox
  290. * Using autocomplete="off" or autocomplete="new-password" doesn't change anything
  291. * Changing the input ID doesn't change anything
  292. * Using a different input name doesn't change anything
  293. * Only Chrome supports autocomplete="new-password"
  294. * Add base URL validation
  295. * Update default stylesheet name in HTML layout
  296. * Pre-generate themes stylesheets at build time
  297. * Update vendor dependencies
  298. * Refactor assets bundler and split Javascript files
  299. * Run sanitizer after all processing and entry content rewrite
  300. * Remove timestamp from generated files
  301. * Add support for protocol relative YouTube URLs
  302. * Add Postgres full-text search for entries
  303. * Add search form in user interface
  304. * Add search parameter to the API
  305. * Improve Dutch locales
  306. * Sandbox iframes when sanitizing
  307. * Keep consistent text size on mobile orientation change
  308. * Change permission of /etc/miniflux.conf to 600 instead of 644 in RPM package
  309. * Add tzdata package to Docker image
  310. * Update Docker image to Alpine Linux 3.8
  311. Version 2.0.9 (July 1, 2018)
  312. ----------------------------
  313. * Avoid Chrome to autocomplete no-login password fields
  314. * Add cli flag to reset all feed errors
  315. * Do not ignore errored feeds when a user refresh feeds manually
  316. * Add specific 404 and 401 error messages
  317. * Strip binaries to reduce size
  318. * Make sure we always get the pagination in unread mode
  319. * Fix incorrect data value when toggling bookmark flag on entry page
  320. * Set opener to null when opening original URL with JavaScript
  321. * Remove unnecessary style
  322. * Refactor AddImageTitle rewriter
  323. * Only processes images with `src` **and** `title` attributes (others are ignored)
  324. * Processes **all** images in the document (not just the first one)
  325. * Wraps the image and its title attribute in a `figure` tag with the title attribute's contents in a `figcaption` tag
  326. * Improve sanitizer to remove `style`, `noscript` and `script` tag contents
  327. * Improve feed and user API updates with optional values
  328. * Add new fields for feed username/password
  329. * Improve memory usage debug log
  330. * Disable keep-alive for HTTP client
  331. * Close HTTP response body even for failed requests
  332. * Add Sans-Serif theme
  333. * Rewrite iframe Youtube URLs to https://www.youtube-nocookie.com
  334. * Add more filters for API call `/entries`:
  335. * before (unix timestamp)
  336. * before_entry_id (int64)
  337. * after (unix timestamp)
  338. * after_entry_id (int64)
  339. * starred (boolean)
  340. * Rewrite individual entry pagination SQL queries
  341. * Simplify entry query builder
  342. * Prevent items from sticking on touchend
  343. * Extended horizontal overflow to feed and category views
  344. * Translate missing strings
  345. * Update German translation
  346. Version 2.0.8 (June 4, 2018)
  347. ----------------------------
  348. * Add Pocket integration
  349. * Rewrite RealIP() to avoid returning an empty string
  350. * Convert IP field from text to inet type
  351. * Improve error handling in integration clients
  352. * Make unread counter clickable
  353. * Archive read entries automatically after 60 days
  354. * Hide horizontal overflow when swiping articles on touch devices
  355. * Add API endpoint to get logged user
  356. * Fever API: Return response with an empty list if there is no item
  357. * Handle feeds with dates formatted as Unix timestamp
  358. Version 2.0.7 (May 7, 2018)
  359. ---------------------------
  360. * Add API endpoint to import OPML file
  361. * Make sure to close request body in HTTP client
  362. * Do not show save link if no integration is configured
  363. * Make sure integrations are configured before to make any HTTP requests
  364. * Avoid people to unlink their OAuth2 account without having a local password
  365. * Do not use shared variable to translate templates (avoid concurrency issue)
  366. * Use vanilla HTTP handlers (refactoring)
  367. * Move HTTP client to its own package (refactoring)
  368. * Add middleware to read X-Forwarded-Proto header (refactoring)
  369. * Use Gorilla middleware (refactoring)
  370. * Scrape parent element for iframe
  371. * Add SoundCloud and Bandcamp iframe sources
  372. Version 2.0.6 (Apr 20, 2018)
  373. ----------------------------
  374. * Improve graceful shutdown
  375. * Simplify Heroku deployment
  376. * Display memory usage and some metrics in logs
  377. * Increase read/write timeout for HTTP server
  378. * Add support for Dublin Core date in RDF feeds
  379. * Do not return an error if the user session is not found
  380. * Handle some non-english date formats
  381. * Add missing French translation
  382. * Rename RSS parser getters
  383. * Get the right comments URL when having multiple namespaces
  384. * Ignore caching headers for feeds that send "Expires: 0"
  385. * Update translations
  386. Version 2.0.5 (Apr 7, 2018)
  387. ---------------------------
  388. * Avoid unread counter to be off by one when reading an entry
  389. * Add Comments URL to entries
  390. * Add FreeBSD build target
  391. * Handle RSS author elements with inner HTML
  392. * Fix typo in translations
  393. * Add Dutch translation
  394. * Convert enclosure size field to bigint
  395. * Switch CI to Go v1.10
  396. * Fix broken OPML import when compiling with Go 1.10
  397. Version 2.0.4 (Mar 5, 2018)
  398. ---------------------------
  399. * Add Simplified Chinese translation
  400. * Add Nunux Keeper integration
  401. * Filter the list of timezones
  402. * Add timezone to entries dates for REST and Fever API
  403. * Show last login and session creation date in current timezone
  404. * Fix typo in edit user template
  405. * Improve parser error messages
  406. * Remove parentheses around feed error messages
  407. * Support localized feed errors generated by background workers
  408. * Print info message if DATABASE_URL is not set
  409. Version 2.0.3 (Feb 19, 2018)
  410. ----------------------------
  411. * Add Polish translation
  412. * Change color of <q> tags for black theme
  413. * Add database indexes (don't forget to run database migrations)
  414. * Handle Atom feeds with HTML title
  415. * Strip invalid XML characters to avoid parsing errors
  416. * Improve error handling for HTTP client
  417. Version 2.0.2 (Feb 5, 2018)
  418. ---------------------------
  419. * Add support for Let's Encrypt http-01 challenge
  420. * Move template functions outside engine (refactoring)
  421. * Take timezone into consideration when calculating relative time
  422. * Add support for HTTP Strict Transport Security header
  423. * Add support for base URLs with subfolders
  424. * Add missing about menu in settings
  425. * Show API URL endpoints in user interface
  426. * Do not update entry date while refreshing a feed
  427. * Add flag to toggle debug logging
  428. * Improve unread counter updates
  429. Version 2.0.1 (Jan 22, 2018)
  430. ----------------------------
  431. * Change user agent (People are blocking the crawler with mod_security)
  432. * Move environment variables to config package (refactoring)
  433. * Add build targets for all ARM architectures
  434. * Do not crawl existing entry URLs
  435. * Show translated login page in user language when logged out
  436. * Handle more encoding edge cases:
  437. - Feeds with charset specified only in Content-Type header and not in XML document
  438. - Feeds with charset specified in both places
  439. - Feeds with charset specified only in XML document and not in HTTP header
  440. * Add German translation
  441. * Add mark as read/unread link on list items
  442. * Add API endpoint for OPML export
  443. Version 2.0.0 (Jan 11, 2018)
  444. ----------------------------
  445. * Initial release of Miniflux 2.