ChangeLog 70 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455
  1. Version 2.1.1 (March 10, 2024)
  2. -----------------------------
  3. * Move search form to a dedicated page
  4. * Add Readeck integration
  5. * Add feed option to disable HTTP/2 to avoid fingerprinting
  6. * Add `Enter` key as a hotkey to open selected item
  7. * Proxify `video` element `poster` attribute
  8. * Add a couple of new possible locations for feeds
  9. * Hugo likes to generate `index.xml`
  10. * `feed.atom` and `feed.rss` are used by enterprise-scale/old-school gigantic CMS
  11. * Fix categories import from Thunderbird's OPML
  12. * Fix logo misalignment when using languages that are more verbose than English
  13. * Google Reader: Do not return a 500 error when no items is returned
  14. * Handle RDF feeds with duplicated `<title>` elements
  15. * Sort integrations alphabetically
  16. * Add more URL validation in media proxy
  17. * Add unit test to ensure each translation has the correct number of plurals
  18. * Add missing plurals for some languages
  19. * Makefile: quiet `git describe` and `rev-parse` stderr: When building from a tarball instead of a cloned git repo, there would be two `fatal: not a git repository` errors emitted even though the build succeeds. This is because of how `VERSION` and `COMMIT` are set in the Makefile. This PR suppresses the stderr for these variable assignments.
  20. * Makefile: do not force `CGO_ENABLED=0` for `miniflux` target
  21. * Add GitHub Action pipeline to build packages on-demand
  22. * Remove Golint (deprecated), use `staticcheck` and `golangci-lint` instead
  23. * Build amd64/arm64 Debian packages with CGO disabled
  24. * Update `go.mod` and add `.exe` suffix to Windows binary
  25. * Add a couple of fuzzers
  26. * Fix CodeQL workflow
  27. * Code and performance improvements:
  28. * Use an `io.ReadSeeker` instead of an `io.Reader` to parse feeds
  29. * Speed up the sanitizer:
  30. - Allow Youtube URLs to start with `www`
  31. - Use `strings.Builder` instead of a `bytes.Buffer`
  32. - Use a `strings.NewReader` instead of a `bytes.NewBufferString`
  33. - Sprinkles a couple of `continue` to make the code-flow more obvious
  34. - Inline calls to `inList`, and put their parameters in the right order
  35. - Simplify `isPixelTracker`
  36. - Simplify `isValidIframeSource`, by extracting the hostname and comparing it directly, instead of using the full url and checking if it starts with multiple variations of the same one (`//`, `http:`, `https://` multiplied by `/www.`)
  37. - Add a benchmark
  38. - Instead of having to allocate a ~100 keys map containing possibly dynamic values (at least to the go compiler), allocate it once in a global variable. This significantly speeds things up, by reducing the garbage
  39. - Use constant time access for maps instead of iterating on them
  40. - Build a ~large whitelist map inline instead of constructing it item by item (and remove a duplicate key/value pair)
  41. - Use `slices` instead of hand-rolled loops
  42. collector/allocator involvements.
  43. * Reuse a `Reader` instead of copying to a buffer when parsing an Atom feed
  44. * Preallocate memory when exporting to OPML: This should marginally increase performance when exporting a large amount of feeds to OPML
  45. * Delay call of `view.New` after logging the user in: There is no need to do extra work like creating a session and its associated view until the user has been properly identified and as many possibly-failing sql request have been successfully run
  46. * Use constant-time comparison for anti-csrf tokens: This is probably completely overkill, but since anti-csrf tokens are secrets, they should be compared against untrusted inputs in constant time
  47. * Simplify and optimize `genericProxyRewriter`
  48. - Reduce the amount of nested loops: it's preferable to search the whole page once and filter on it (even with filters that should always be false), than searching it again for every element we're looking for.
  49. - Factorize the proxying conditions into a `shouldProxy` function to reduce the copy-pasta.
  50. * Speed up `removeUnlikelyCandidates`: `.Not` returns a brand new `Selection`, copied element by element
  51. * Improve `EstimateReadingTime`'s speed by a factor 7
  52. - Refactorise the tests and add some
  53. - Use 250 signs instead of the whole text
  54. - Only check for Korean, Chinese and Japanese script
  55. - Add a benchmark
  56. - Use a more idiomatic control flow
  57. * Don't compute reading-time when unused: If the user doesn't display reading times, there is no need to compute them. This should speed things up a bit, since `whatlanggo.Detect` is abysmally slow.
  58. * Simplify `username` generation for the integration tests: No need to generate random numbers 10 times, generate a single big-enough one. A single int64 should be more than enough
  59. * Add missing regex anchor detected by CodeQL
  60. * Don't mix up slices capacity and length
  61. * Use prepared statements for intervals, `ArchiveEntries` and `updateEnclosures`
  62. * Use modern for-loops introduced with Go 1.22
  63. * Remove a superfluous condition: No need to check if the length of `line` is positive since we're checking afterwards that it contains the `=` sign
  64. * Close resources as soon as possible, instead of using `defer()` in a loop
  65. * Remove superfluous escaping in a regex
  66. * Use `strings.ReplaceAll` instead of `strings.Replace(…, -1)`
  67. * Use `strings.EqualFold` instead of `strings.ToLower(…) ==`
  68. * Use `.WriteString(` instead of `.Write([]byte(…`
  69. * Use `%q` instead of `"%s"`
  70. * Make `internal/worker/worker.go` read-only
  71. * Use a switch-case construct in `internal/locale/plural.go` instead of an avalanche of `if`
  72. * Template functions: simplify `formatFileSize` and `duration` implementation
  73. * Inline some templating functions
  74. * Make use of `printer.Print` when possible
  75. * Add a `printer.Print` to `internal/locale/printer.go`: No need to use variadic functions with string format interpolation to generate static strings
  76. * Minor code simplification in `internal/ui/view/view.go`: No need to create the map item by item when we can create it in one go
  77. * Build the map inline in `CountAllFeeds()`: No need to build an empty map to then add more fields in it one by one
  78. * Miscellaneous improvements to `internal/reader/subscription/finder.go`:
  79. - Surface `localizedError` in `FindSubscriptionsFromWellKnownURLs` via `slog`
  80. - Use an inline declaration for new subscriptions, like done elsewhere in the
  81. file, if only for consistency's sake
  82. - Preallocate the `subscriptions` slice when using an RSS-bridge,
  83. * Use an update-where for `MarkCategoryAsRead` instead of a subquery
  84. * Simplify `CleanOldUserSessions`' query: No need for a subquery, filtering on `created_at` directly is enough
  85. * Simplify `cleanupEntries`' query
  86. - `NOT (hash=ANY(%4))` can be expressed as `hash NOT IN $4`
  87. - There is no need for a subquery operating on the same table, moving the conditions out is equivalent.
  88. * Reformat `ArchiveEntries`'s query for consistency's sake and replace the `=ANY` with an `IN`
  89. * Reformat the query in `GetEntryIDs` and `GetReadTime`'s query for consistency's sake
  90. * Simplify `WeeklyFeedEntryCount`: No need for a `BETWEEN`: we want to filter on entries published in the last week, no need to express is as "entries published between now and last week", "entries published after last week" is enough
  91. * Add some tests for `add_image_title`
  92. * Remove `github.com/google/uuid` dependencies: Replace it with a hand-rolled implementation. Heck, an UUID isn't even a requirement according to Omnivore API docs
  93. * Simplify `internal/reader/icon/finder.go`:
  94. - Use a simple regex to parse data uri instead of a hand-rolled parser, and document what fields are considered mandatory.
  95. - Use case-insensitive matching to find (fav)icons, instead of doing the same query twice with different letter cases
  96. - Add `apple-touch-icon-precomposed.png` as a fallback `favicon`
  97. - Reorder the queries to have `icon` first, since it seems to be the most popular one. It used to be last, meaning that pages had to be parsed completely 4 times, instead of one now.
  98. - Minor factorisation in `findIconURLsFromHTMLDocument`
  99. * Small refactoring of `internal/reader/date/parser.go`:
  100. - Split dates formats into those that require local times and those who don't, so that there is no need to have a switch-case in the for loop with around 250 iterations at most.
  101. - Be more strict when it comes to timezones, previously invalid ones like -13 were accepted. Also add a test for this.
  102. - Bail out early if the date is an empty string.
  103. * Make use of Go ≥ 1.21 slices package instead of hand-rolled loops
  104. * Reorder the fields of the `Entry` struct to save some memory
  105. * Dependencies update:
  106. * Bump `golang.org/x/oauth2` from `0.17.0` to `0.18.0`
  107. * Bump `github.com/prometheus/client_golang` from `1.18.0` to `1.19.0`
  108. * Bump `github.com/tdewolff/minify/v2` from `2.20.16` to `2.20.18`
  109. * Bump `github.com/PuerkitoBio/goquery` from `1.8.1` to `1.9.1`
  110. * Bump `golang.org/x/crypto` from `0.19.0` to `0.20.0`
  111. * Bump `github.com/go-jose/go-jose/v3` from `3.0.1` to `3.0.3`
  112. Version 2.1.0 (February 17, 2024)
  113. ---------------------------------
  114. * Add Linkwarden integration
  115. * Add LinkAce integration
  116. * Add `FORCE_REFRESH_INTERVAL` config option
  117. * Add `item-meta-info-reading-time` CSS class
  118. * Add `add_dynamic_iframe` rewrite function
  119. * Add attribute `data-original-mos` to `add_dynamic_image` rewrite candidates
  120. * Update entry processor to allow blocking/keeping entries by tags and/or authors
  121. * Change default `Accept` header when fetching feeds
  122. * Rewrite relative RSS Bridge URL to absolute URL
  123. * Use numeric user ID in Alpine and distroless container image (avoid `securityContext` error in Kubernetes)
  124. * Always try to use HTTP/2 when fetching feeds if available
  125. * Add `type` attribute in OPML export as per OPML 2.0 specs
  126. * Fix missing translation argument for the key `error.unable_to_parse_feed`
  127. * Fix Debian package builder when using Go 1.22 and `armhf` architecture
  128. * Fix typo in log message
  129. * Fix incorrect label shown when saving an article
  130. * Fix incorrect condition in refresh feeds cli
  131. * Fix incorrect label `for` attribute
  132. * Add missing label ID for custom CSS field
  133. * Accessibility improvements:
  134. * Add workaround for macOS VoiceOver that didn't announce `details` and `summary` when expanded
  135. * Add `alert` role to alert message element
  136. * Add a `h2` heading to the article element so that the screen reader users can navigate the article through the heading level
  137. * Add an `aria-label` attribute for the article element for screen readers
  138. * Remove the icon image `alt` attribute in feeds list to prevent screen reader to announce it before entry title
  139. * Add `sr-only` CSS class for screen reader users (provides more context)
  140. * Differentiate between buttons and links
  141. * Change links that could perform actions to buttons
  142. * Improve translation of hidden Aria elements
  143. * Remove the redundant article role
  144. * Add a search landmark for the search form so that the screen reader users can navigate to it
  145. * Add skip to content link
  146. * Add `nav` landmark to page header links
  147. * Limit feed/category entry pagination to unread entries when coming from unread entry list
  148. * Update German translation
  149. * Update GitHub Actions to Go 1.22
  150. * Bump `golang.org/x/term` from `0.16.0` to `0.17.0`
  151. * Bump `github.com/google/uuid` from `1.5.0` to `1.6.0`
  152. * Bump `github.com/yuin/goldmark` from `1.6.0` to `1.7.0`
  153. * Bump `golang.org/x/oauth2` from `0.15.0` to `0.17.0`
  154. * Bump `github.com/tdewolff/minify/v2` from `2.20.10` to `2.20.12`
  155. * Bump `golang.org/x/term` from `0.15.0` to `0.16.0`
  156. * Bump `github.com/prometheus/client_golang` from `1.17.0` to `1.18.0`
  157. * Bump `github.com/tdewolff/minify/v2` from `2.20.9` to `2.20.16`
  158. * Bump `golang.org/x/crypto` from `0.16.0` to `0.19.0`
  159. * Bump `github.com/go-webauthn/webauthn` from `0.9.4` to` 0.10.1`
  160. * Bump `golang.org/x/net` from `0.20.0` to `0.21.0`
  161. Version 2.0.51 (December 13, 2023)
  162. ----------------------------------
  163. * Add Omnivore integration
  164. * Fixes for the regressions introduced in version 2.0.50:
  165. * Ensure all HTML documents are encoded in UTF-8
  166. * Send default User-Agent and HTTP caching headers when making HTTP requests
  167. * Allow Youtube links to be opened outside the `iframe` (avoid `ERR_BLOCKED_BY_RESPONSE` error)
  168. * Fix inaccessible metrics endpoint when listening on Unix socket
  169. * Allow renaming and moving feed at the same time in the Google Reader API
  170. * Log `nb_jobs` only when number of jobs is larger than 0 in background scheduler
  171. * Deduplicate feed URLs when parsing HTML document during discovery process
  172. * Calculate a virtual weekly count based on the average updating frequency (`POLLING_SCHEDULER=entry_frequency`)
  173. * Update GitHub Actions workflow to be able to run the linter and tests on-demand
  174. * Add `SCHEDULER_ROUND_ROBIN_MIN_INTERVAL` config option
  175. * Add links to GitHub for the commit hash and the version in the about page
  176. * Use "starred" rather than "bookmarked" in English translation
  177. * Update Chinese (CN & TW) translation
  178. * Bump `github.com/google/uuid` from `1.4.0` to `1.5.0`
  179. * Bump `github.com/coreos/go-oidc/v3` from `3.7.0` to `3.9.0`
  180. * Bump `github.com/tdewolff/minify/v2` from `2.20.6` to `2.20.9`
  181. * Bump `github.com/go-webauthn/webauthn` from `0.8.6` to `0.9.4`
  182. * Bump `golang.org/x/oauth2` from `0.14.0` to `0.15.0`
  183. Version 2.0.50 (November 12, 2023)
  184. ----------------------------------
  185. * Add WebAuthn / Passkey integration
  186. * Add RSS-Bridge integration
  187. * Take RSS TTL field into consideration to schedule next check date
  188. * Show number of visible entries instead of number of read entries in feed list
  189. * OpenID Connect: Redirect to configured user home page after successful authentication
  190. * Google Reader API fixes:
  191. * `user/{userID}/state/com.google/read` is missing in categories section for read entries
  192. * Take `ExcludeTargets` into consideration in feed stream handler
  193. * Allow iframes pointing to Twitch videos
  194. * Filter feed entries based on URL or title
  195. * Take into consideration `hide_globally` property defined for categories in `/v1/entries` API endpoint
  196. * Add category ID to webhooks request body
  197. * Update date parser to parse more invalid date formats
  198. * Refactor feed discovery handler, and avoid an extra HTTP request if the URL provided is the feed
  199. * Refactor HTTP Client and `LocalizedError` packages
  200. * Refactor Batch Builder, and prevent accidental and excessive refreshes from the web UI
  201. * Refactor icon finder:
  202. - Continue the discovery process when the feed icon is invalid
  203. - Search all icons from the HTML document and do not stop on the first one
  204. * Add support for SVG icons with data URL without encoding
  205. * Expose `next_check_at` in the web ui and API
  206. * Add database indexes to improve performance
  207. * Change log level to warning for failed feeds refresh in cronjob
  208. * Do not log website without icon as warning
  209. * Add GitHub workflow to build binaries
  210. * Add GitHub extensions to devcontainer
  211. * Make sure to pull the latest base image when building the Docker image
  212. * Strip version prefix when building Debian package
  213. * Add `github-cli` and `docker-outside-of-docker` features to devcontainer
  214. * Bump `golang.org/x/*` dependencies
  215. * Bump `github.com/gorilla/mux` from `1.8.0` to `1.8.1`
  216. * Bump `github.com/tdewolff/minify/v2` from `2.19.9` to `2.20.6`
  217. * Bump `github.com/yuin/goldmark` from `1.5.6` to `1.6.0`
  218. * Bump `github.com/coreos/go-oidc/v3` from `3.6.0` to `3.7.0`
  219. Version 2.0.49 (October 15, 2023)
  220. ---------------------------------
  221. * Implement structured logging using `log/slog` package. New config options available:
  222. * `LOG_FORMAT`: `json` or `text`
  223. * `LOG_LEVEL`: `debug`, `info`, `warning`, or `error`
  224. * `LOG_FILE`: `sdterr`, `stdout`, or a file path
  225. * The `DEBUG` option is now deprecated in favor of `LOG_LEVEL`
  226. * API Improvements:
  227. * Add endpoint `/v1/version`
  228. * Add endpoint `PUT /v1/entries` to update entry title and content
  229. * Add endpoint `/v1/icons/{iconID}`
  230. * Add endpoint `/v1/flush-history` to flush history
  231. * Make the category optional when creating feeds for API clients who don't support categories
  232. * Add enclosures to `GET /v1/entries` endpoint
  233. * Add `published_after`, `published_before`, `changed_after` and `changed_before` options to `/v1/entries` endpoint
  234. * Telegram integration improvements:
  235. * Replace feed HTML link with a button to avoid page preview issues
  236. * Add the possibility to disable buttons
  237. * Add Bruno Miniflux API collection in `contrib` folder (Bruno is an open source alternative to Postman/Insomnia)
  238. * Add command line argument to export user feeds as OPML
  239. * Add new rewrite rules `add_hn_links_using_hack` and `add_hn_links_using_opener` to open HN comments with iOS apps
  240. * Fix timestamp format for `Expires` response header
  241. * Fix Javascript error when reading time option is disabled
  242. * Fix Apprise logic to handle feed service URLs
  243. * Fix missing word in force refresh message
  244. * Remove deprecated `PreferServerCipherSuites` TLS option
  245. * Replace `github.com/rylans/getlang` with `github.com/abadojack/whatlanggo` because `getlang` doesn't seems to be updated anymore
  246. * Bump `github.com/mccutchen/go-httpbin/v2` from `2.11.0` to `2.11.1`
  247. * Bump `golang.org/x/*` dependencies
  248. Version 2.0.48 (September 15, 2023)
  249. -----------------------------------
  250. * Add generic webhook integration
  251. * Send webhook events when new entries are detected
  252. * Send wehbook events when saving an entry
  253. * Sign the outgoing requests with HMAC-SHA256
  254. * Improve Telegram integration
  255. * Add built-in Telegram client
  256. * Remove dependency on `go-telegram-bot-api` library
  257. * Add new options:
  258. * Optional topic ID
  259. * Disable page preview
  260. * Disable notifications
  261. * Add new button to go to article
  262. * Improve Matrix integration
  263. * Add built-in Matrix client
  264. * Remove dependency on `gomatrix` library
  265. * Send HTML formatted messages to Matrix
  266. * OpenID Connect authentication improvements:
  267. * Add OAuth2 PKCE support
  268. * Add `profile` scope to OIDC integration to support accounts without email address
  269. * Prevent empty username when using the OIDC integration
  270. * Add `factor` for `entry_frequency` scheduler:
  271. * Allow the user to increase the frequency of the `entry_frequency`
  272. scheduler by a configurable factor in order to shorten the time between
  273. updates.
  274. * Fix: status bar is unreadable when using PWA in dark mode on Firefox Android
  275. * Group form fields into fieldsets to improve page layout
  276. * Update Russian translation
  277. * Make sure icon URLs are always absolute
  278. * Add Apprise service URLs per feed
  279. * Trim `username` and `password` form fields
  280. * Strip HTML tags from DublinCore Creator tags
  281. * Fix scroll up behavior on Firefox Android
  282. * Add missing `return` statement in `fetchContent` UI handler
  283. * Add `replace_title` rewrite rule to adjust entry titles
  284. * Fix Pocket integration redirect URL and Google Reader API HREF
  285. * Fix feed `hide_globally` property to use it with third-party clients.
  286. Version 2.0.47 (August 20, 2023)
  287. --------------------------------
  288. * Update rules for `webtoons.com`
  289. * Use HTTP client from the standard library for third-party integrations
  290. * Rename internal `url` package to `urllib` to avoid overlap with `net/url`
  291. * Add Shaarli integration
  292. * Add Shiori integration
  293. * Add Apprise integration
  294. * Add Readwise Reader integration
  295. * Consider base path when generating third-party services API endpoint
  296. * Use podcast duration tag as reading time
  297. * Move internal packages to an `internal` folder
  298. * For reference: <https://go.dev/doc/go1.4#internalpackages>
  299. * Rename Miniflux package name to follow Go module naming convention
  300. * For reference: <https://go.dev/ref/mod#major-version-suffixes>
  301. * Update RockyLinux image from 8 to 9 (used to build RPM package)
  302. * Add force refresh in feed edit and feed entries page
  303. * Use Odysee video duration as read time
  304. * Upgrade to Go 1.21
  305. * Use details disclosure element to show the list of third-party services
  306. * Use Web Share API for sharing entry
  307. * Add a workaround for parsing some invalid date format
  308. * Add Thunder Client API collection into contrib folder
  309. * Add new API endpoint: `/entries/{entryID}/save`
  310. * Trigger Docker and packages workflows only for semantic tags
  311. * Go module versioning expect Git tags to start with the letter v.
  312. * The goal is to keep the existing naming convention for generated artifacts and
  313. have proper versioning for the Go module.
  314. * Bump `golang.org/x/*` dependencies
  315. * Bump `github.com/yuin/goldmark`
  316. * Bump `github.com/tdewolff/minify/v2`
  317. * Bump `github.com/mccutchen/go-httpbin/v2`
  318. Version 2.0.46 (July 21, 2023)
  319. ------------------------------
  320. * Add scraper and rewrite rules for Webtoons
  321. * Fix regression in integration page and simplify SQL query
  322. * Wallabag integration: add more information in log messages
  323. * Add support for custom Youtube embed URL
  324. * Fix accessibility issues in modal component
  325. * Fix modal aria role
  326. * Trap focusing with tab / shift+tab inside the modal
  327. * Restore keyboard focus when closing modal
  328. * Automatically move keyboard focus to first focusable element unless specified otherwise
  329. * Keyboard shortcut help modal: move keyboard focus to modal title
  330. * Keyboard shortcut help modal: change close control from link to button
  331. * Add Notion integration
  332. * Update `golang.org/x/*` dependencies and `go-oidc` to v3.6.0
  333. * Improve responsive design
  334. * Add user setting for marking entry as read on view
  335. * Improve Russian translation
  336. * Add the possibility to run cleanup tasks from the command line
  337. * Add the possibility to run Miniflux as a cronjob
  338. * Use `go-httpbin` to run tests locally and avoid remote calls to `httpbin.org`
  339. * Display tags when viewing entries
  340. * Update categories API endpoint to return `total_unread` and `feed_count`
  341. * Improve date parser to handle various broken date formats
  342. * Avoid `pq: time zone displacement out of range` errors
  343. * Improve entry existance check to make better use of index
  344. * Add unique index `enclosures_user_entry_url_idx`
  345. * Add mark as unread for Linkding integration
  346. * Add sub-folder support for Wallabag integration
  347. * Use RockyLinux to build RPM package
  348. * Disable CGO when building RPM package
  349. * Disable CGO when building Docker images
  350. Version 2.0.45 (June 21, 2023)
  351. ------------------------------
  352. * Add media player to listen to audio and video podcasts with the possiblity to resume to last playback position
  353. * Add default tag names for Linkding integration
  354. * Mark only globally visible entries when marking all entries from UI
  355. * Use image included in feed as feed icon when available
  356. * Order history by `changed_at` and `published_at`
  357. * Remove title attribute from entry title links
  358. * Fix reading time that is not aligned correctly with the latest version of Safari
  359. * Use glyphs of the same size on keyboard shortcuts page
  360. * Add maskable versions of the PWA icon
  361. * Replace copyright header with SPDX identifier
  362. * Remove the "í" letter from the Portuguese "lido" word
  363. * Increase golangci-lint timeout value
  364. * Bump `github.com/tdewolff/minify/v2`, `github.com/prometheus/client_golang`, `golang.org/x/*` dependencies
  365. Version 2.0.44 (May 6, 2023)
  366. ----------------------------
  367. * Add link to the URL rewrite rules documentation
  368. * Update scraping rules for `ilpost.it`
  369. * Update rewrite rules for `theverge.com`
  370. * Add a rewrite rule to remove clickbait titles
  371. * Make sure `PROXY_IMAGES` option is backward compatible with `PROXY_OPTION` and `PROXY_MEDIA_TYPES`
  372. * Add new rule to remove tables
  373. * Add support for searching well-known URLs in subdirectory
  374. * Add CSS `word-wrap` rule to break very long entry title into multiple lines
  375. * Add swipe as option for gesture navigation between entries. There are now 3 possible choices: `none`, `double-tap`, and `swipe`.
  376. * Prefer typographic punctuation in English translation
  377. * Process older entries first:
  378. - Feed entries are usually ordered from most to least recent.
  379. - Processing older entries first ensures that their creation timestamp
  380. is lower than that of newer entries.
  381. - This is useful when we order by creation, because then we get a
  382. consistent timeline.
  383. * Fix Grafana dashboard
  384. * Push Docker images to `Quay.io` (RedHat)
  385. * Bump `golang.org/x/*`, `github.com/lib/pq`, `mvdan.cc/xurls/v2` and `github.com/prometheus/client_golang` dependencies
  386. Version 2.0.43 (March 16, 2023)
  387. -------------------------------
  388. * Avoid XSS when opening a broken image due to unescaped ServerError in proxy handler (CVE-2023-27592)
  389. Creating an RSS feed item with the inline description containing an `<img>` tag
  390. with a `srcset` attribute pointing to an invalid URL like
  391. `http:a<script>alert(1)</script>`, we can coerce the proxy handler into an error
  392. condition where the invalid URL is returned unescaped and in full.
  393. This results in JavaScript execution on the Miniflux instance as soon as the
  394. user is convinced to open the broken image.
  395. * Use `r.RemoteAddr` to check `/metrics` endpoint network access (CVE-2023-27591)
  396. HTTP headers like `X-Forwarded-For` or `X-Real-Ip` can be easily spoofed. As
  397. such, it cannot be used to test if the client IP is allowed.
  398. The recommendation is to use HTTP Basic authentication to protect the
  399. metrics endpoint, or run Miniflux behind a trusted reverse-proxy.
  400. * Add HTTP Basic authentication for `/metrics` endpoint
  401. * Add proxy support for several media types
  402. * Parse feed categories from RSS, Atom and JSON feeds
  403. * Ignore empty link when discovering feeds
  404. * Disable CGO explicitly to make sure the binary is statically linked
  405. * Add CSS classes to differentiate between category/feed/entry view and icons
  406. * Add rewrite and scraper rules for `blog.cloudflare.com`
  407. * Add `color-scheme` to themes
  408. * Add new keyboard shortcut to toggle open/close entry attachments section
  409. * Sanitizer: allow `id` attribute in `<sup>` element
  410. * Add Indonesian Language
  411. * Update translations
  412. * Update Docker Compose examples:
  413. - Run the application in one command
  414. - Bring back the health check condition to `depends_on`
  415. - Remove deprecated `version` element
  416. * Update scraping rules for `ilpost.it`
  417. * Bump `github.com/PuerkitoBio/goquery` from `1.8.0` to `1.8.1`
  418. * Bump `github.com/tdewolff/minify/v2` from `2.12.4` to `2.12.5`
  419. * Bump `github.com/yuin/goldmark` from `1.5.3` to `1.5.4`
  420. * Bump `golang.org/x/*` dependencies
  421. Version 2.0.42 (January 29, 2023)
  422. ---------------------------------
  423. * Fix header items wrapping
  424. * Add option to enable or disable double tap
  425. * Improve PWA display mode label in settings page
  426. * Bump `golang.org/x/*` dependencies
  427. * Update translations
  428. * Add scraping rule for `ilpost.it`
  429. * Update reading time HTML element after fetching the original web page
  430. * Add category feeds refresh feature
  431. Version 2.0.41 (December 10, 2022)
  432. ----------------------------------
  433. * Reverted PR #1290 (follow the only link) because it leads to several panics/segfaults that prevent feed updates
  434. * Disable double-tap mobile gesture if swipe gesture is disabled
  435. * Skip integrations if there are no entries to push
  436. * Enable TLS-ALPN-01 challenge for ACME
  437. - This type of challenge works purely at the TLS layer and is compatible
  438. with SNI proxies. The existing HTTP-01 challenge support has been left
  439. as-is.
  440. * Preconfigure Miniflux for GitHub Codespaces
  441. * Updated `golang.org/x/net/*` dependencies
  442. Version 2.0.40 (November 13, 2022)
  443. ----------------------------------
  444. * Update dependencies
  445. * Pin Postgres image version in Docker Compose examples to avoid unexpected upgrades
  446. * Make English and Spanish translation more consistent:
  447. - Use "Feed" everywhere instead of "Subscription"
  448. - Use "Entry" instead of "Article"
  449. * Allow Content-Type and Accept headers in CORS policy
  450. * Use dirs file for Debian package
  451. * Use custom home page in PWA manifest
  452. * Fix scraper rule that could be incorrect when there is a redirect
  453. * Improve web scraper to fetch the only link present as workaround to some landing pages
  454. * Add Matrix bot integration
  455. * Proxify images in API responses
  456. * Add new options in user preferences to configure sorting of entries in the category page
  457. * Remove dependency on `github.com/mitchellh/go-server-timing`
  458. * Add support for the `continuation` parameter and result for Google Reader API ID calls
  459. * Use automatic variable for build target file names
  460. * Add rewrite rule for `recalbox.com`
  461. * Improve Dutch translation
  462. Version 2.0.39 (October 16, 2022)
  463. ---------------------------------
  464. * Add support for date filtering in Google Reader API item ID calls
  465. * Handle RSS entries with only a GUID permalink
  466. * Go API Client: Accept endpoint URLs ending with `/v1/`
  467. * CORS API headers: Allow `Basic` authorization header
  468. * Log feed URL when submitting a subscription that returns an error
  469. * Update `make run` command to execute migrations automatically
  470. * Add option to send only the URL to Wallabag
  471. * Do not convert anchors to absolute links
  472. * Add config option to use a custom image proxy URL
  473. * Allow zoom on mobile devices
  474. * Add scraping rules for `theverge.com`, `royalroad.com`, `swordscomic.com`, and `smbc-comics.com`
  475. * Add Ukrainian translation
  476. * Update `golang.org/x/*` dependencies
  477. * Bump `github.com/tdewolff/minify/v2` from `2.12.0` to `2.12.4`
  478. * Bump `github.com/yuin/goldmark` from `1.4.13` to `1.5.2`
  479. * Bump `github.com/lib/pq` from `1.10.6` to `1.10.7`
  480. Version 2.0.38 (August 13, 2022)
  481. --------------------------------
  482. * Rename default branch from master to main
  483. * Update GitHub Actions
  484. * Bump `github.com/prometheus/client_golang` from `1.12.2` to `1.13.0`
  485. * Fix some linter issues
  486. * Handle Atom links with a text/html type defined
  487. * Add `parse_markdown` rewrite function
  488. * Build RPM and Debian packages automatically using GitHub Actions
  489. * Add `explosm.net` scraper rule
  490. * Make default home page configurable
  491. * Add title attribute to entry links because text could be truncated
  492. * Highlight categories with unread entries
  493. * Allow option to order by title and author in API entry endpoint
  494. * Update Russian translation
  495. * Make reading speed user-configurable
  496. * Added translation for Hindi language used in India
  497. * Add rewrite rules for article URL before fetching content
  498. * Bump `github.com/tdewolff/minify/v2` from `2.11.7` to `2.12.0`
  499. * Support other repo owners in GitHub Docker Action
  500. * Proxify empty URL should not crash
  501. * Avoid stretched image if specified width is larger than Miniflux's layout
  502. * Add support for OPML files with several nested outlines
  503. * sanitizer: handle image URLs in `srcset` attribute with comma
  504. * Allow `width` and `height` attributes for `img` tags
  505. * Document that `-config-dump` command line argument shows sensitive info
  506. * Add System-V init service in contrib folder
  507. * Fix syntax error in `RequestBuilder.getCsrfToken()` method
  508. Version 2.0.37 (May 27, 2022)
  509. -----------------------------
  510. * Add rewrite rule to decode base64 content
  511. * Add Linkding integration
  512. * Add comment button to Telegram message
  513. * Add API endpoint to fetch unread and read counters
  514. * Fixes logic bug in Google Reader API sanity check
  515. * Reduce number of CORS preflight check to save network brandwidth
  516. * Add Espial integration
  517. * Allow API search for entries which are not starred
  518. * Try to use outermost element text when title is empty
  519. * Make swipe gestures feel more natural
  520. - Removes opacity transition when swiping an article read/unread
  521. - Adds "resistance" to the swiped entry when the 75px threshold is
  522. reached
  523. - Fixes an issue in which a swiped article couldn't be moved <15px
  524. * Add support for feed streams to Google Reader API IDs API
  525. * Fix invalid parsing of icon data URL
  526. * Add Traditional Chinese translation
  527. * Add distroless Docker image variant
  528. * Add Go 1.18 to GitHub Action
  529. * Bump `github.com/tdewolff/minify/v2` from `2.10.0` to `2.11`
  530. * Bump `github.com/prometheus/client_golang` from `1.12.1` to `1.12.2`
  531. * Bump `github.com/lib/pq` from `1.10.4` to `1.10.6`
  532. Version 2.0.36 (March 8, 2022)
  533. ------------------------------
  534. * Gray out pagination buttons when they are not applicable
  535. * Use truncated entry description as title if unavailable
  536. * Do not fallback to InnerXML if XHTML title is empty
  537. * Add `+` keyboard shortcut for new subscription page
  538. * Add `(+)` action next to Feeds to quickly add new feeds
  539. * Fix unstar not working via Google Reader API
  540. * Remove circles in front of page header list items
  541. * Fix CSS hover style for links styled as buttons
  542. * Avoid showing `undefined` when clicking on read/unread
  543. * Add new keyboard shortcut `M` to toggle read/unread, and go to previous item
  544. * Add several icons to menus according to their roles
  545. * Add missing event argument to `onClick()` function call
  546. * Add links to scraper/rewrite/filtering docs when editing feeds
  547. * Add a rewrite rule for Castopod episodes
  548. * Fix regression: reset touch-item if not in `/unread` page
  549. * Add API endpoint to fetch original article
  550. * Show the category first in feed settings
  551. * Add pagination on top of all entries
  552. * Display Go version in "About" page
  553. * Bump `mvdan.cc/xurls/v2` from 2.3.0 to 2.4.0
  554. * Bump `github.com/prometheus/client_golang` from 1.11.0 to 1.12.1
  555. * Bump `github.com/tdewolff/minify/v2` from 2.9.28 to 2.10.0
  556. Version 2.0.35 (January 21, 2022)
  557. ---------------------------------
  558. * Set `read-all` permission to `GITHUB_TOKEN` for GitHub Actions
  559. * Pin `jshint` version in linter job
  560. * Fix incorrect conversion between integer types
  561. * Add new GitHub Actions workflows: CodeQL and Scorecards analysis
  562. * Handle Atom feeds with space around CDATA
  563. * Bump `github.com/tdewolff/minify/v2` from 2.9.22 to 2.9.28
  564. * Add Documentation directive to Systemd service
  565. * Do not reset `touch-item` if successfully swiped
  566. * Add support for multiple authors in Atom feeds
  567. * Omit `User-Agent` header in image proxy to avoid being blocked
  568. * Use custom feed user agent to fetch website icon
  569. * Make default Invidious instance configurable
  570. * Add new rewrite rule `add_youtube_video_from_id` to add Youtube videos in Quanta articles
  571. * Add scrape and rewrite rules for `quantamagazine.org`
  572. * Expose entry unshare link in the entry and list views
  573. * Add Google Reader API implementation (experimental)
  574. * Add `Content-Security-Policy` header to feed icon and image proxy endpoints
  575. - SVG images could contain Javascript. This CSP blocks inline script.
  576. - Feed icons are served using `<img>` tag and Javascript is not interpreted.
  577. * Add Finnish translation
  578. * Add scraper rule for `ikiwiki.iki.fi`
  579. * Remove `SystemCallFilter` from `miniflux.service`
  580. * Fix minor typo in French translation
  581. Version 2.0.34 (December 16, 2021)
  582. ----------------------------------
  583. * Add rewrite rule for comics website http://monkeyuser.com
  584. * Add `<head>` tag to OPML export
  585. * Tighten Systemd sandboxing and update comments in `miniflux.service`
  586. * Add `RuntimeDirectory` to Systemd service
  587. * Order disabled feeds at the end of the list
  588. * Add support for theme color based on preferred color scheme of OS
  589. * Bump `github.com/lib/pq` from 1.10.3 to 1.10.4
  590. * Bump `github.com/PuerkitoBio/goquery` from 1.7.1 to 1.8.0
  591. * Fix typos in `model/icon.go`
  592. * Add `data-srcset` support to `add_dynamic_image rewrite` rewrite rule
  593. * Fix Docker Compose example files compatibility to v3
  594. * Added the `role="article"` to `<article>` elements for better accessibility with screen readers
  595. * Redact secrets shown on the about page
  596. * Handle `srcset` images with no space after comma
  597. * Hide the logout link when using auth proxy
  598. * Fix wrong CSS variable
  599. * Change `-config-dump` command to use `KEY=VALUE` format
  600. Version 2.0.33 (September 25, 2021)
  601. -----------------------------------
  602. * Build RPM and Debian package with PIE mode enabled
  603. * Add CSS rule to hide `<template>` tag in old browsers
  604. * Bump `github.com/tdewolff/minify/v2 from 2.9.21 to 2.9.22`
  605. * Bump `github.com/lib/pq from 1.10.2 to 1.10.3`
  606. * Remove `RequestURI()` hack
  607. * Improve `zh_CN` translation
  608. * Add ability to change entry sort order in the UI
  609. * Add minor improvements in integration package
  610. * Add Telegram integration
  611. * Add rewrite rule to remove DOM elements
  612. * Add proxy argument to `scraper.Fetch()`
  613. * Add mime type `application/feed+json` to discover JSON Feed v1.1
  614. * Update scraper rule for `theregister.com`
  615. * Add Go 1.17 to GitHub Actions
  616. * Display option to hide feed only when category is not already hidden
  617. * Add option to hide feeds from the global Unread list
  618. Version 2.0.32 (August 14, 2021)
  619. --------------------------------
  620. * Bump `github.com/tdewolff/minify/v2` from 2.9.17 to 2.9.21
  621. * Bump `mvdan.cc/xurls/v2` from 2.2.0 to 2.3.0
  622. * Bump `github.com/PuerkitoBio/goquery` from 1.6.1 to 1.7.1
  623. * Bump `github.com/prometheus/client_golang` from 1.10.0 to 1.11.0
  624. * Add `/rss/` to the list of well known URLs during feed discovery
  625. * Use `authors` entry for JSON 1.1 feeds
  626. * Added Greek translation
  627. * Added the ability to mark an entire category as read in the web ui
  628. * Added "in" in "logged in" for en_US `tooltip.logged_user`
  629. * Added option to hide categories from the global unread list
  630. * Show "saving" labels for entry status button
  631. * Golang client: Try to parse response body on `InternalServerError` errors
  632. * contrib: Add support for a $MINIFLUX_IMAGE env var in docker-compose
  633. * contrib: Bump docker-compose version to 3.4
  634. Version 2.0.31 (June 6, 2021)
  635. -----------------------------
  636. * Expose comments_url entry field in Golang API client
  637. * Use unique file names for cache busting instead of query string
  638. * Highlight and sort feeds with unread entries in feeds list
  639. * Mark items as read on click/middle click of external links
  640. * Fix: Firefox on Windows does not show the active link as bold
  641. * Avoid extra HTTP request for fetching custom stylesheet
  642. * Remove invalid CSRF HTML meta tag
  643. * Add lang attribute to root HTML tag
  644. * Use runes instead of bytes to truncate JSON feed titles (avoid breaking Unicode strings)
  645. * Expose changed_at time through the API
  646. * Add new config option CLEANUP_ARCHIVE_BATCH_SIZE
  647. * Add new option DATABASE_CONNECTION_LIFETIME
  648. * Add database stats to Prometheus exporter
  649. * Add Systemd watchdog
  650. * Avoid custom stylesheet to be cached by third-party CDN
  651. * Update a shared entry label translation in zh_CN
  652. * Bump github.com/tdewolff/minify/v2 from 2.9.16 to 2.9.17
  653. * Bump github.com/lib/pq from 1.10.1 to 1.10.2
  654. Version 2.0.30 (May 7, 2021)
  655. ----------------------------
  656. * Security fix: any user can delete any feed (Regression introduced in commit 51fb949)
  657. * Fix password reset via CLI
  658. * Increase default batch size value
  659. * Handle RSS feed title with encoded Unicode entities
  660. * Show number of unread per category in category list instead of number of feeds
  661. * Bump github.com/lib/pq from 1.10.0 to 1.10.1
  662. * Filtering doesn't work when selecting from multiple found feeds
  663. * Bump github.com/tdewolff/minify/v2 from 2.9.15 to 2.9.16
  664. * Use an appropriate color for visited links on dark theme
  665. * Fix typo in reader/json/doc.go
  666. * Create SECURITY.md
  667. * Setup golangci-lint Github Action
  668. * Add per feed cookies option
  669. * Bump github.com/prometheus/client_golang from 1.9.0 to 1.10.0
  670. * Bump github.com/tdewolff/minify/v2 from 2.9.13 to 2.9.15
  671. Version 2.0.29 (Mar 21, 2021)
  672. -----------------------------
  673. * Miniflux requires at least Go 1.16 now
  674. * Improved support of Atom text constructs
  675. - Improve handling of CDATA in text elements
  676. - Omit XHTML root element because it should not be part of the content
  677. - Fix incorrect parsing of HTML elements
  678. * Handle RDF feed with HTML encoded entry title
  679. * Add Turkish language
  680. * Improve deletion of feeds with lots of entries
  681. * Add support of Systemd readiness notification using the sd_notify protocol
  682. * Remove feed_icons service worker cache because it's causing more problems than it solves (and HTTP cache seems faster)
  683. * Add basic PWA offline page
  684. - Add basic offline mode when using the service worker
  685. - Starting in Chrome 93, offline mode is going to be a requirement to install the PWA
  686. * Replace icon for "Add to home screen" button
  687. * Use SVG icons for "toast" notifications
  688. * Use SVG sprite for icons instead of inline elements
  689. * Reset scroll position on mark page as read
  690. * Add link to mark all feed entries as read
  691. * Make web app display mode configurable (The change is visible after reinstalling the web app)
  692. * Handle RSS feeds with CDATA in author item element
  693. * Add read time on the article page
  694. * Avoid showing a broken image when there is no feed icon
  695. * Add option to allow self-signed or invalid certificates
  696. * Add new config option to scrape YouTube's website to get video duration as read time (disabled by default)
  697. * Send full article content to Wallabag
  698. * Add more extensive health check support
  699. - Improve endpoint to test database connection
  700. - Add new cli argument: -healthcheck
  701. - Update Docker Compose examples
  702. * Update iframe "allow list" to support Bilibili videos
  703. * Remove completely generated files and use embed package to bundle JS/CSS/Images/Translations files into the final binary
  704. * Remove deprecated io/ioutil package
  705. * Show Postgres version in "About" page
  706. Version 2.0.28 (Feb 15, 2021)
  707. -----------------------------
  708. * Add HTTP header "Referrer-Policy: no-referrer"
  709. * Handle entry title with double encoded entities
  710. * Add Open Containers annotations to Docker image
  711. * Remove iframe inner HTML contents (iframe element never has fallback content)
  712. * Update date parser to fix another time zone issue
  713. * Update German translation for blocklist and keeplist
  714. * Validate Keep list and Block list rules syntax
  715. * Add support for IPv6 with zone index
  716. * Allow images with data URLs
  717. * Limit full-text search indexation to first 500K characters (tsvector has a size limit of 1MB)
  718. * Change PWA display mode to standalone
  719. * ETag value is not set correctly in HTTP client (regression)
  720. * Add database backed Let's Encrypt certificate cache
  721. * Add global option POLLING_PARSING_ERROR_LIMIT
  722. * Update systemd service file comments to use `systemctl edit` for editing
  723. * Update Go version to 1.15 in go.mod
  724. * Don't discard the "Fetch via Proxy" option
  725. * Update man page to show the default values
  726. * Add PostgreSQL indices
  727. * Add API endpoints to get feeds and entries of a category
  728. * Create feed query builder
  729. * Bump github.com/PuerkitoBio/goquery from 1.6.0 to 1.6.1
  730. * Show global options in the about page
  731. * Update man page to mention -1 can be used for CLEANUP_ARCHIVE_* options
  732. Version 2.0.27 (Jan 9, 2021)
  733. ----------------------------
  734. * Add spellcheck="false" to input fields
  735. * Refactoring of entry, feed, category, and user validation
  736. * Avoid stripping tags for entry title
  737. * Add the possibility to subscribe to feeds with the Android Share menu
  738. * API improvements:
  739. - Change feed creation request to allow setting most fields via API
  740. - Allow regular users to change settings via API
  741. - Make user fields editable via API
  742. - Renaming non-existent category via API should return a 404
  743. * Update Systemd service file:
  744. - Add capability CAP_NET_BIND_SERVICE (allow the process to listen on privileged ports)
  745. - Enable a private /tmp for $CERT_CACHE (required when using Let's Encrypt)
  746. * Update read/star icons to SVGs
  747. * Add autocomplete="username" to HTML forms
  748. * Improve user mass delete to use fewer Goroutines
  749. * Use SQL transaction when creating user sessions and users
  750. * Remove extra column (HSTORE field) from users table and migrate key/value pairs to specific columns
  751. * Bump github.com/prometheus/client_golang from 1.8.0 to 1.9.0
  752. * Bump github.com/lib/pq from 1.8.0 to 1.9.0
  753. * Add styles for <abbr> HTML tag
  754. * Refactor SQL migrations:
  755. - Avoid embedding SQL files into binary
  756. - Allow more flexible changes by using Go functions
  757. * Add Server-Timing header to unread page
  758. * Show correct User Agent in input placeholders
  759. * Add autocomplete attribute to login form
  760. * Add Grafana dashboard in contrib folder
  761. Version 2.0.26 (Dec 5, 2020)
  762. ----------------------------
  763. * Use created_at instead of published_at for archiving entries
  764. * Add created_at field for entries
  765. * Handle invalid feeds with relative URLs
  766. * Add API routes for "mark all as read"
  767. * Add support for setting a global default User-Agent
  768. * Add rewrite rule "replace" for custom search and replace
  769. * Calculate reading time during feed processing
  770. * Handle various invalid dates
  771. * systemd: keep /run writeable
  772. * debian package: add missing post-install script
  773. * Do not follow redirects when trying known feed URLs
  774. * Trim spaces around icon URLs
  775. * Reinstate EXPOSE instruction in Dockerfile
  776. * Update German and Portuguese translations
  777. Version 2.0.25 (Nov 3, 2020)
  778. ----------------------------
  779. * Rename "original" link to be more explicit
  780. * Do not escape HTML for Atom 1.0 text content during parsing (Avoid HTML entities issues)
  781. * Do not use charset.NewReader if the body is a valid UTF-8 document
  782. * Restore the ability to use a proxy for all HTTP requests (see https://golang.org/pkg/net/http/#ProxyFromEnvironment)
  783. * Show Git commit in about page
  784. * Publish Docker images to GitHub Container Registry
  785. * Added few Docker Compose examples in contrib folder
  786. * Added Ansible Role + Playbook for Miniflux in contrib folder
  787. * Add rewrite rule to use noscript content for images rendered with Javascript
  788. * Bump github.com/prometheus/client_golang from 1.7.1 to 1.8.0
  789. * Update contributor link and Godoc badge for API client
  790. * Move Debian package builder to main repository
  791. * Move RPM build files to main repository
  792. * Add GitHub Action to generate Docker images
  793. * Build multi-platform images with Docker Buildx
  794. * Add keyboard shortcut to scroll current item to the top
  795. * Add feed filters (Keeplist and Blocklist)
  796. * Do not proxy image with a data URL
  797. * Bump github.com/PuerkitoBio/goquery from 1.5.1 to 1.6.0
  798. * Proxify articles crawled manually
  799. * Proxify images defined in srcset attribute
  800. * Remove plaintext Fever password from database
  801. * Add keyboard shortcut to jump to an item's feed page
  802. * Add option for swipe gesture on entries on mobile
  803. Version 2.0.24 (Oct 3, 2020)
  804. ----------------------------
  805. * Add rewrite rule to fix Medium.com images
  806. * Update sanitizer to support responsive images:
  807. - Add support for picture HTML tag
  808. - Add support for srcset, media, and sizes attributes to img and source tags
  809. * Enhance man page formatting
  810. * Add Prometheus exporter
  811. * Remove dependency on global config options in HTTP client
  812. * API:
  813. - Avoid database lookup if empty credentials are provided
  814. - Add the possibility to filter entries by category ID
  815. - Add the possibility to filter entries by a list of statuses
  816. * Add Feed ID in worker error logs
  817. * Tweak default HTTP client transport timeout values to reduce the number of file descriptors
  818. * CSS tweaks and optimizations:
  819. - Prevent sub and sup from affecting line-height
  820. - Set touch-action on .items to prevent browser navigation
  821. - Move font-family specific CSS to the appropriate file
  822. - Update primary font-family for UI to be even more compatible with various operating systems
  823. - Make .entry-content font-weight variable depending on font-family used
  824. * Avoid Javascript minifier to break keyboard shortcuts
  825. * Rename service worker script to avoid being blocked by uBlock
  826. * Update date parser to handle Pacific Daylight Time in addition to Pacific Standard Time
  827. * Create index to speed up bookmark page
  828. * Do not try to update a duplicated feed after a refresh
  829. * Use a transaction to refresh and create entries
  830. * Speed up entries clean up with an index and a goroutine
  831. * Avoid the accumulation of enclosures by keeping only what is referenced in the feed
  832. * Add workarounds for parsing an invalid date
  833. * Archive older entries first
  834. * Update API client to support more filters
  835. * Avoid duplication between get feed entries and get entries API endpoints
  836. * Enable strict slash to avoid a page not found (404) when using a trailing slash in the URLs
  837. * Add a submit button to each section of the integration page
  838. * Reload page after making page as read when showing unread entries
  839. * Add option to archive unread entries
  840. * Add option to enable maintenance mode
  841. * Add HTTP proxy option for subscriptions
  842. * Make add_invidious_video rule applicable for different invidious instances
  843. * Fix reading time for jp, ko and zh languages
  844. * Update POLLING_SCHEDULER description in man page
  845. * Bump gorilla/mux from 1.7.4 to 1.8.0
  846. * Add link to mark a feed as read
  847. Version 2.0.23 (Aug 15, 2020)
  848. -----------------------------
  849. * Try known URLs when discovering subscriptions
  850. * Add workarounds to find YouTube channel feeds (YouTube doesn't expose RSS links anymore for new-style URLs)
  851. * Increase HTTP server timeout values
  852. * Use stdlib constants for HTTP methods instead of strings
  853. * Add support for RTL feed content
  854. * Ignore <media:title> to avoid overriding the default title if they are different
  855. * Add support for secret keys exposed as a file (useful for containerized environments)
  856. * Display recent entries first in search results
  857. * Do not archive shared items
  858. * Add option to change the number of entries per page
  859. * Add Brazilian Portuguese (pt_BR) translation
  860. * Add reading time for entries
  861. * Redirect to login page if CSRF token is expired
  862. * Fever API:
  863. - Use getEntryIDs instead of getEntries to reduce memory consumption
  864. - Fix max_id argument logic to follow the specs
  865. - Improve logging
  866. - Do not send articles to external services when unsaving an item
  867. - Create index to speed up API calls
  868. - Log client IP in middleware
  869. * API client: Do not return body for response with no content
  870. * REST API:
  871. - Delete users asynchronously (Deleting large users might lock the tables)
  872. - Add CORS support
  873. * Align entry actions to the left
  874. - Attempt to avoid awkward alignment on smartphone screens
  875. - Keep the read/star actions aligned to the left
  876. - Remove CSS flex to allow easier override with custom CSS
  877. * Upgrade Postgres client library
  878. * Upgrade CI checks to Go 1.15
  879. Version 2.0.22 (Jun 19, 2020)
  880. -----------------------------
  881. * Remove child-src CSP policy (deprecated)
  882. * Add /version endpoint
  883. * Add the ability to use custom css
  884. * Handle more invalid dates
  885. * Add CSS styles for textarea
  886. * Add index to speed up slow query
  887. * Speed up feed list page rendering
  888. * Add alternative scheduler based on the number of entries
  889. * Setup Dependabot on GitHub
  890. * Update Docker image to Alpine 3.12
  891. * Add feed option to ignore HTTP cache
  892. * Fix some Italian and German translations
  893. * Added scraper rule for RayWenderlich.com, TheOatmeal.com, financialsamurai.com, dilbert.com and turnoff.us
  894. * Replace link to categories by a link to the list of entries in "Category > Feeds" page
  895. * Change feed title to a link to the original website
  896. * Add icons to feeds and categories list
  897. * Update dependencies and remove vendor folder
  898. Version 2.0.21 (Mar 28, 2020)
  899. -----------------------------
  900. * Add SVG icons to entry actions
  901. * Add support for Invidious
  902. - Embed Invidious player for invidio.us feeds
  903. - Add new rewrite rule to use Invidious player for Youtube feeds
  904. * Check during application startup if the database schema is up to date
  905. * Change default theme for public pages to "System Serif"
  906. * Add feature to share an article (create a public link of a feed entry)
  907. * Fix SQL injection in full-text search rank ordering
  908. * Add generic OpenID Connect provider (OAuth2)
  909. * Use more secure TLS configuration for autocert server (increase SSL Labs score from B to A+)
  910. * Add feature to create per-application API Keys
  911. * Add Go 1.14 to GitHub Actions
  912. * Add scraper rule for wdwnt.com
  913. * Add API client function to refresh all feeds
  914. * Add API endpoint to refresh all feeds
  915. * Add Auth Proxy authentication
  916. * Use rel=prev/next on pagination links
  917. Version 2.0.20 (Feb 15, 2020)
  918. -----------------------------
  919. * Add Japanese translation
  920. * History: show entries in the order in which they were read
  921. * Add button to add to Home screen
  922. * Ignore enclosures without URL
  923. * Correct spelling of "toggle"
  924. * List view: align information to the left side, and the actionable buttons to the right
  925. * Redirect to /unread when getting a 404 for an unread expired entry
  926. * Do not advance to the next item when using the 'v' shortcut on the list of starred items
  927. * Wrap around when navigating with keyboard shortcuts on a list view
  928. * Remove unused Feed.Entries and Entry.Category from API client
  929. * Add comments link keyboard shortcut
  930. * Allow application/xhtml+xml links as comments URL in Atom replies
  931. * Allow only absolute URLs in comments URL
  932. * Use internal XML workarounds to detect feed format
  933. * Make menu consistent across feed pages
  934. * Make sure external URLs are not encoded incorrectly by Go template engine
  935. * Make sure whitelisted URI schemes are handled properly by the sanitizer
  936. * Use white background for favicon (Improve legibility when using a dark theme)
  937. * Remove dependency on Sed to build Docker images
  938. * Normalize URL query string before executing HTTP requests
  939. * Improve Dublin Core support for RDF feeds
  940. * Improve Podcast support (iTunes and Google Play feeds)
  941. * Add support for Atom 0.3
  942. * Add support for Atom "replies" link relation
  943. * Return outer HTML when scraping elements
  944. * Update scraper rule for "Le Monde"
  945. * Filter valid XML characters for UTF-8 XML documents before decoding
  946. * Trim spaces for RDF entry links
  947. Version 2.0.19 (Dec 1, 2019)
  948. ----------------------------
  949. * Add shortcut "V" to open original link in current tab
  950. * Add the possibility to add rules during feed creation
  951. * Wrap attachments into <details> disclosure element
  952. * Show attachment size on entry page
  953. * Add support of RSS Media elements (group, description, peer link, and thumbnails)
  954. * Add rewrite functions: convert_text_link and nl2br
  955. * Add scraper rule for openingsource.org
  956. * Add Makefile target to build only amd64 Docker image
  957. * Make sure to remove integration settings when removing a user
  958. * Add API parameter to filter entries by category
  959. * Display list of feeds per category
  960. * Show the number of read and unread entries for each feed
  961. * Make sure settings menu is consistent
  962. * Remove fixed table-layout for entry content
  963. * Update autocert lib because ACME v1 is EOL
  964. * Do not lighten blockquote font color
  965. * Update de_DE translation
  966. * Send a response when changing status of removed entries in Fever API
  967. * Add meta tag to disable Google Translate
  968. * Improve storage module
  969. * Improve XML decoder to remove illegal characters
  970. * Compare Fever token case-insensitively
  971. * Make sure integration tests are marked as failed in Github Actions
  972. * Add new formats to date parser
  973. * Add notification message when using keyboard shortcuts: f, s, and m.
  974. * Avoid keyboard shortcuts to conflict with Firefox’s "Find as you type" feature
  975. Version 2.0.18 (Sep 25, 2019)
  976. -----------------------------
  977. * Add Docker image variant for arm32v7
  978. * Add theme variants
  979. - Use CSS variables instead of inherence
  980. - Rename default theme to "Light - Serif"
  981. - Rename Black theme to "Dark - Serif"
  982. - Rename "Sans-Serif" theme to "Light - Sans Serif"
  983. - Add "System" theme that use system preferences: Dark or Light
  984. - Add Serif and Sans-Serif variants for each color theme
  985. * Avoid constraint error when having duplicate entries during feed creation
  986. * Disable strict XML parsing
  987. * Ignore invalid content type
  988. * Update man page
  989. * Replace Travis by GitHub Actions
  990. * Rename cleanup config variables and deprecate old ones
  991. - CLEANUP_FREQUENCY_HOURS instead of CLEANUP_FREQUENCY
  992. - CLEANUP_ARCHIVE_READ_DAYS instead of ARCHIVE_READ_DAYS
  993. * Make configurable the number of days to remove old sessions
  994. * Add native lazy loading for images and iframes
  995. * Do not buffer responses in the image proxy
  996. * Update dependencies
  997. * Add Go 1.13 to test matrix
  998. * Replace link border by outline to avoid slight content shift
  999. * New rewrite function: add_mailto_subject
  1000. * Import OPML from URL
  1001. * Fix HTML injection in addImageTitle
  1002. * Accept HTML entities when parsing XML
  1003. Version 2.0.17 (Aug 3, 2019)
  1004. ----------------------------
  1005. * Update Docker image to Alpine Linux 3.10.1
  1006. * Pass auth header to manifest request (crossorigin attribute)
  1007. * Sort feed categories before serialization
  1008. * Fix syntax errors in man page
  1009. * Add .search margin-right
  1010. * Ask for confirmation before flushing history, marking page as read, and mark all as read
  1011. * Add option to disable feeds
  1012. Version 2.0.16 (Jun 8, 2019)
  1013. ----------------------------
  1014. * Add option to toggle date/time in log messages
  1015. * Add optional config file parser in addition to environment variables
  1016. * Make HTTP Client timeout and max body size configurable
  1017. * Refactor config package:
  1018. - Parse configuration only once during startup time
  1019. - Store configuration values in a global variable
  1020. * Flip behavior of j and k keyboard shortcuts
  1021. * Bump Postgresql client library to v1.1.1 to bring in SCRAM-SHA-256 authentication
  1022. * Add option to enable/disable keyboard shortcuts
  1023. * Add missing translation
  1024. * Improve page reload when showing unread/all entries:
  1025. - Show only unread entries = refresh current page
  1026. - Show all entries = go to next page
  1027. * Always display feed entries even when there is a feed error
  1028. * Use loading label instead of saving when submitting login form
  1029. * Add OPML v1 support during importation
  1030. * Add 'allow-popups' to iframe sandbox permissions
  1031. Version 2.0.15 (Mar 16, 2019)
  1032. -----------------------------
  1033. * Move Dockerfile to main repo
  1034. * Change location of the binary from /usr/local/bin to /usr/bin in Docker image
  1035. * Add double tap detection for next/previous page navigation
  1036. * Allow users to disable auto-remove
  1037. * Make parser compatible with Go 1.12
  1038. * Add Golang 1.12 to CI
  1039. * Use feed ID instead of user ID to check entry URLs presence
  1040. * Fix typo in stylesheet
  1041. * Sort search results by relevance
  1042. * Use preferably the published date for Atom feeds
  1043. * Add Spanish translation
  1044. * Rename session cookies
  1045. * Handle the case when application session is expired and not user session
  1046. Version 2.0.14 (Jan 13, 2019)
  1047. -----------------------------
  1048. * Only attempt to change password if the confirmation field is filled in (Firefox)
  1049. * Remove URL from client user agent
  1050. * Make the feed list order case-insensitive
  1051. * Handle XHTML Summary elements for Atom feeds
  1052. * Make UTF-8 the default encoding for XML feeds
  1053. * Add more targets to Makefile
  1054. * Add -mod=vendor in Makefile
  1055. * Move health check endpoint from ui package to httpd service
  1056. * Add workaround for non GMT dates (RFC822, RFC850, and RFC1123)
  1057. * Make sure `<strong>` elements are bold
  1058. * Show scrollbars only when necessary for <pre> elements
  1059. * Add Italian translation
  1060. * Allow to switch between unread only and all entries on category/feed views
  1061. * Add function storage.UpdateFeedError()
  1062. * Add BBC News scraping rule
  1063. * Ignore JSON feeds from EnsureUnicode()
  1064. * Preserve category selection when no feed is found
  1065. * Update XML encoding regex to take single quotes into consideration
  1066. * Send cli errors to stderr
  1067. * Update dependencies
  1068. * Make password prompt compatible with Windows
  1069. * Make configurable the number of days to archive read items
  1070. * Change log level to debug when starting workers
  1071. * Do not show $DATABASE_URL warning when showing application info
  1072. * Move image proxy filter to template functions
  1073. * Update scraper rule for lemonde.fr
  1074. * Refactor manual entry scraper
  1075. * Apply rewriter rules on manual "Fetch Original Content"
  1076. * Add Makefile target for current OS and architecture
  1077. * Improve Makefile
  1078. Version 2.0.13 (Nov 25, 2018)
  1079. -----------------------------
  1080. * Add man page
  1081. * Add support for Systemd Socket Activation (experimental)
  1082. * Add the possibility to listen on Unix sockets
  1083. * Add config options to disable HTTP and scheduler services
  1084. * Archive more read entries in cleanup job
  1085. * Change default database connection string (backward compatible)
  1086. * Improve logging messages in ui package
  1087. * Improve overall Simplified Chinese translations
  1088. * Improve time since post date displays:
  1089. - "15 days" now is "15 days" rather than "3 weeks" ago
  1090. - "32 days" is now "1 month" rather than "2 months" ago
  1091. - "366 days" is now "1 year" rather than "2 years" ago
  1092. * Allow the scraper to parse XHTML documents
  1093. * Remove charset=utf-8 from JSON responses
  1094. * Ignore hotkeys containing Control, Alt or Meta keys
  1095. * Handle more encoding conversion edge cases
  1096. * Disable go test caching
  1097. * Avoid duplication of ldflags in Makefile
  1098. * Fix wrong translation key for category pages
  1099. * Code refactoring:
  1100. - Simplify application HTTP middlewares
  1101. - Replace daemon and scheduler package with service package
  1102. - Move UI middlewares and routes to ui package
  1103. - Move API middleware and routes to api package
  1104. - Move Fever middleware and routes to fever package
  1105. Version 2.0.12 (Oct 26, 2018)
  1106. -----------------------------
  1107. * Add OpenBSD build
  1108. * Improve logging for OAuth2 callback
  1109. * Make "g f" go to feed, or list of feeds
  1110. * Add more details in feed storage errors to facilitate debugging
  1111. * Add entries storage error to feed errors count
  1112. * Set arbitrary maximum size for tsvector column
  1113. * Unsubscribe from feed through link or "#"
  1114. * Simplify feed entries filtering
  1115. * Simplify feed fetcher
  1116. * Simplify feed parser and format detection
  1117. * Improve unit tests in url package
  1118. * Add short cli flags -i and -v
  1119. * Convert text links and line feeds to HTML in YouTube channels
  1120. * Change link state when marking all entries as read
  1121. * Add missing package descriptions for GoDoc
  1122. * Fix typo in license header
  1123. * Refactor HTTP response builder
  1124. * Improve Fever API performances when marking a feed or group as read
  1125. * Set focus on article link when pressing prev/next hotkeys
  1126. * Improve request package and add more unit tests
  1127. * Add more unit tests for config package
  1128. * Simplify locale package usage (refactoring)
  1129. * Translate application in Russian
  1130. * Use disclosure widget <details> for advanced feed options
  1131. * Use unique translation IDs instead of English text as key
  1132. * Add more unit tests for template functions
  1133. * Fix invalid output when truncating Unicode text in templates
  1134. * Add the possibility to override default user agent for each feed
  1135. * Split Makefile linux targets by architecture
  1136. * Add compiler, Arch, and OS to info command
  1137. * Avoid line break between emoji and (un)read/(un)star links
  1138. * Build Docker image for multiple architectures (amd64, arm32v6, arm64v8)
  1139. Version 2.0.11 (Sep 11, 2018)
  1140. -----------------------------
  1141. * Set cookie flag `SameSite` to Lax mode
  1142. * Use predefined ciphers when TLS is configured
  1143. * Avoid displaying an error when shutting down the daemon
  1144. * Add "Mark this page as read" to the bottom
  1145. * Store client IP address in request context
  1146. * Refactor HTTP context handling
  1147. * Make user creation via environment variables idempotent
  1148. * Use regular text version of ✔︎ instead of emoji version on iOS
  1149. * Add toggle status button to entry page
  1150. * Migrate to Go Modules and Go 1.11
  1151. * Show count of feeds with permanent errors in header menu
  1152. * Display remote client IP in logs when having a login failure (Fail2Ban)
  1153. * Add remove button in feed edit page
  1154. * Split integration tests into multiple files
  1155. * Update scraper rule for heise.de
  1156. * Expose real error messages for internal server API errors
  1157. * Move Golang API client in project source tree (the separate project is deprecated)
  1158. * Use canonical imports
  1159. * Add Procfile
  1160. * Create database package (refactoring)
  1161. * Update user agent with new website URL
  1162. * Update German translation
  1163. Version 2.0.10 (July 22, 2018)
  1164. ------------------------------
  1165. * Avoid browser caching issues when assets changes
  1166. * Add Gzip/Deflate compression for HTML, JSON, CSS and Javascript responses
  1167. * Improve themes handling
  1168. * Store user theme in session
  1169. * Logged out users will keep their theme
  1170. * Add theme background color to web manifest and meta tag
  1171. * Update application icon with different sizes
  1172. * Add support for published tag in Atom feeds
  1173. * Add tooltip to feed domain in feeds list (title attribute)
  1174. * Prevent vertical scrolling on swipe
  1175. * Show feed title instead of domain in items list
  1176. * Add service worker to cache feed icons
  1177. * Make image proxy configurable via IMAGE_PROXY environment variable:
  1178. * none = No proxy
  1179. * http-only = Proxy only non-HTTPS images (default)
  1180. * all = Proxy everything
  1181. * Add alt attribute for feed icons
  1182. * Update CI jshint check
  1183. * Add embedly.com to iframe whitelist
  1184. * Use passive event listeners for touch events
  1185. * Add `add_dynamic_image` rewriter for JavaScript-loaded images
  1186. * Change feed password field type to text to avoid auto-completion with Firefox
  1187. * Using autocomplete="off" or autocomplete="new-password" doesn't change anything
  1188. * Changing the input ID doesn't change anything
  1189. * Using a different input name doesn't change anything
  1190. * Only Chrome supports autocomplete="new-password"
  1191. * Add base URL validation
  1192. * Update default stylesheet name in HTML layout
  1193. * Pre-generate themes stylesheets at build time
  1194. * Update vendor dependencies
  1195. * Refactor assets bundler and split Javascript files
  1196. * Run sanitizer after all processing and entry content rewrite
  1197. * Remove timestamp from generated files
  1198. * Add support for protocol relative YouTube URLs
  1199. * Add Postgres full-text search for entries
  1200. * Add search form in user interface
  1201. * Add search parameter to the API
  1202. * Improve Dutch locales
  1203. * Sandbox iframes when sanitizing
  1204. * Keep consistent text size on mobile orientation change
  1205. * Change permission of /etc/miniflux.conf to 600 instead of 644 in RPM package
  1206. * Add tzdata package to Docker image
  1207. * Update Docker image to Alpine Linux 3.8
  1208. Version 2.0.9 (July 1, 2018)
  1209. ----------------------------
  1210. * Avoid Chrome to autocomplete no-login password fields
  1211. * Add cli flag to reset all feed errors
  1212. * Do not ignore errored feeds when a user refresh feeds manually
  1213. * Add specific 404 and 401 error messages
  1214. * Strip binaries to reduce size
  1215. * Make sure we always get the pagination in unread mode
  1216. * Fix incorrect data value when toggling bookmark flag on entry page
  1217. * Set opener to null when opening original URL with JavaScript
  1218. * Remove unnecessary style
  1219. * Refactor AddImageTitle rewriter
  1220. * Only processes images with `src` **and** `title` attributes (others are ignored)
  1221. * Processes **all** images in the document (not just the first one)
  1222. * Wraps the image and its title attribute in a `figure` tag with the title attribute's contents in a `figcaption` tag
  1223. * Improve sanitizer to remove `style`, `noscript` and `script` tag contents
  1224. * Improve feed and user API updates with optional values
  1225. * Add new fields for feed username/password
  1226. * Improve memory usage debug log
  1227. * Disable keep-alive for HTTP client
  1228. * Close HTTP response body even for failed requests
  1229. * Add Sans-Serif theme
  1230. * Rewrite iframe Youtube URLs to https://www.youtube-nocookie.com
  1231. * Add more filters for API call `/entries`:
  1232. * before (unix timestamp)
  1233. * before_entry_id (int64)
  1234. * after (unix timestamp)
  1235. * after_entry_id (int64)
  1236. * starred (boolean)
  1237. * Rewrite individual entry pagination SQL queries
  1238. * Simplify entry query builder
  1239. * Prevent items from sticking on touchend
  1240. * Extended horizontal overflow to feed and category views
  1241. * Translate missing strings
  1242. * Update German translation
  1243. Version 2.0.8 (June 4, 2018)
  1244. ----------------------------
  1245. * Add Pocket integration
  1246. * Rewrite RealIP() to avoid returning an empty string
  1247. * Convert IP field from text to inet type
  1248. * Improve error handling in integration clients
  1249. * Make unread counter clickable
  1250. * Archive read entries automatically after 60 days
  1251. * Hide horizontal overflow when swiping articles on touch devices
  1252. * Add API endpoint to get logged user
  1253. * Fever API: Return response with an empty list if there is no item
  1254. * Handle feeds with dates formatted as Unix timestamp
  1255. Version 2.0.7 (May 7, 2018)
  1256. ---------------------------
  1257. * Add API endpoint to import OPML file
  1258. * Make sure to close request body in HTTP client
  1259. * Do not show save link if no integration is configured
  1260. * Make sure integrations are configured before to make any HTTP requests
  1261. * Avoid people to unlink their OAuth2 account without having a local password
  1262. * Do not use shared variable to translate templates (avoid concurrency issue)
  1263. * Use vanilla HTTP handlers (refactoring)
  1264. * Move HTTP client to its own package (refactoring)
  1265. * Add middleware to read X-Forwarded-Proto header (refactoring)
  1266. * Use Gorilla middleware (refactoring)
  1267. * Scrape parent element for iframe
  1268. * Add SoundCloud and Bandcamp iframe sources
  1269. Version 2.0.6 (Apr 20, 2018)
  1270. ----------------------------
  1271. * Improve graceful shutdown
  1272. * Simplify Heroku deployment
  1273. * Display memory usage and some metrics in logs
  1274. * Increase read/write timeout for HTTP server
  1275. * Add support for Dublin Core date in RDF feeds
  1276. * Do not return an error if the user session is not found
  1277. * Handle some non-english date formats
  1278. * Add missing French translation
  1279. * Rename RSS parser getters
  1280. * Get the right comments URL when having multiple namespaces
  1281. * Ignore caching headers for feeds that send "Expires: 0"
  1282. * Update translations
  1283. Version 2.0.5 (Apr 7, 2018)
  1284. ---------------------------
  1285. * Avoid unread counter to be off by one when reading an entry
  1286. * Add Comments URL to entries
  1287. * Add FreeBSD build target
  1288. * Handle RSS author elements with inner HTML
  1289. * Fix typo in translations
  1290. * Add Dutch translation
  1291. * Convert enclosure size field to bigint
  1292. * Switch CI to Go v1.10
  1293. * Fix broken OPML import when compiling with Go 1.10
  1294. Version 2.0.4 (Mar 5, 2018)
  1295. ---------------------------
  1296. * Add Simplified Chinese translation
  1297. * Add Nunux Keeper integration
  1298. * Filter the list of timezones
  1299. * Add timezone to entries dates for REST and Fever API
  1300. * Show last login and session creation date in current timezone
  1301. * Fix typo in edit user template
  1302. * Improve parser error messages
  1303. * Remove parentheses around feed error messages
  1304. * Support localized feed errors generated by background workers
  1305. * Print info message if DATABASE_URL is not set
  1306. Version 2.0.3 (Feb 19, 2018)
  1307. ----------------------------
  1308. * Add Polish translation
  1309. * Change color of <q> tags for black theme
  1310. * Add database indexes (don't forget to run database migrations)
  1311. * Handle Atom feeds with HTML title
  1312. * Strip invalid XML characters to avoid parsing errors
  1313. * Improve error handling for HTTP client
  1314. Version 2.0.2 (Feb 5, 2018)
  1315. ---------------------------
  1316. * Add support for Let's Encrypt http-01 challenge
  1317. * Move template functions outside engine (refactoring)
  1318. * Take timezone into consideration when calculating relative time
  1319. * Add support for HTTP Strict Transport Security header
  1320. * Add support for base URLs with subfolders
  1321. * Add missing about menu in settings
  1322. * Show API URL endpoints in user interface
  1323. * Do not update entry date while refreshing a feed
  1324. * Add flag to toggle debug logging
  1325. * Improve unread counter updates
  1326. Version 2.0.1 (Jan 22, 2018)
  1327. ----------------------------
  1328. * Change user agent (People are blocking the crawler with mod_security)
  1329. * Move environment variables to config package (refactoring)
  1330. * Add build targets for all ARM architectures
  1331. * Do not crawl existing entry URLs
  1332. * Show translated login page in user language when logged out
  1333. * Handle more encoding edge cases:
  1334. - Feeds with charset specified only in Content-Type header and not in XML document
  1335. - Feeds with charset specified in both places
  1336. - Feeds with charset specified only in XML document and not in HTTP header
  1337. * Add German translation
  1338. * Add mark as read/unread link on list items
  1339. * Add API endpoint for OPML export
  1340. Version 2.0.0 (Jan 11, 2018)
  1341. ----------------------------
  1342. * Initial release of Miniflux 2.