diff --git a/CHANGELOG.md b/CHANGELOG.md index a4ecf4ac..078ad145 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## [7.2.0] + +- Add support for icons declared in feeds. This is useful for feeds exposed by RSS bridges (#2048) +- Search now also works for starred entries (#2217) +- The error message when subscribing to a feed is now properly displayed again +- Small performance improvements to the feed refresh engine +- Removed the Pocket sharing feature because the Pocket service has been discontinued +- Prevent the image proxy feature to access any URL to avoid SSRF attacks +- Strengthened the SSRF protection by also blocking ULA and CGNAT ranges +- Prevent DDOS attacks by filtering OPML files during imports + ## [7.1.0] - Display the unread count in the header on mobile, since the tree is hidden by default and the unread count is not visible otherwise (#2055) diff --git a/commafeed-client/pom.xml b/commafeed-client/pom.xml index bb60f57b..6df47791 100644 --- a/commafeed-client/pom.xml +++ b/commafeed-client/pom.xml @@ -6,7 +6,7 @@ com.commafeed commafeed - 7.1.0 + 7.2.0 commafeed-client CommaFeed Client diff --git a/commafeed-server/pom.xml b/commafeed-server/pom.xml index ab5a15af..b47dd644 100644 --- a/commafeed-server/pom.xml +++ b/commafeed-server/pom.xml @@ -6,7 +6,7 @@ com.commafeed commafeed - 7.1.0 + 7.2.0 commafeed-server CommaFeed Server @@ -298,7 +298,7 @@ com.commafeed commafeed-client - 7.1.0 + 7.2.0 diff --git a/pom.xml b/pom.xml index 5389944f..f95935cf 100644 --- a/pom.xml +++ b/pom.xml @@ -5,7 +5,7 @@ com.commafeed commafeed - 7.1.0 + 7.2.0 CommaFeed pom diff --git a/release.sh b/release.sh old mode 100644 new mode 100755