ChangeLog 28 KB

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