ChangeLog 31 KB

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