diff --git a/CHANGELOG.md b/CHANGELOG.md index d41e804..684a2c5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -252,3 +252,13 @@ [1.15.3] * Update FreshRSS extensions repo to f66efcf5f +[1.16.0] +* Update FreshRSS to 1.21.1 +* [Full Changelog](https://github.com/FreshRSS/FreshRSS/releases/tag/1.21.0) +* New XML+XPath mode for fetching XML documents when there is no RSS/ATOM feed #5076 +* Better support of feed enclosures (image / audio / video attachments) #4944 +* User-defined time-zone #4906 +* New CLI script cli/sensitive-log.sh to help e.g. Apache clear logs for sensitive information such as credentials #5001 +* Mark some themes as tentatively deprecated: BlueLagoon, Flat, Screwdriver #4807 +* Many UI improvements + diff --git a/CloudronManifest.json b/CloudronManifest.json index b265ad2..46beb02 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -5,8 +5,8 @@ "description": "file://DESCRIPTION.md", "changelog": "file://CHANGELOG.md", "tagline": "RSS feed reader", - "version": "1.15.3", - "upstreamVersion": "1.20.2", + "version": "1.16.0", + "upstreamVersion": "1.21.0", "healthCheckPath": "/", "httpPort": 8000, "addons": { diff --git a/Dockerfile b/Dockerfile index f1c3867..7ffb75d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM cloudron/base:4.0.0@sha256:31b195ed0662bdb06a6e8a5ddbedb6f191ce92e8bee04c03 RUN mkdir -p /app/code WORKDIR /app/code -ARG VERSION=1.20.2 +ARG VERSION=1.21.0 RUN curl -L https://github.com/FreshRSS/FreshRSS/archive/${VERSION}.tar.gz | tar -zxvf - --strip-components=1 RUN mv data data-orig && ln -s /app/data data