ChangeLog 32 KB

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