1
0
mirror of https://git.cloudron.io/cloudron/freshrss-app synced 2026-06-20 15:15:50 +00:00

Compare commits

..

3 Commits

Author SHA1 Message Date
Package Updates 0826aa325c Update package version to 1.28.1 2026-05-21 08:10:43 +00:00
Renovate Bot 38d1d40f73 chore(deps): update dependency freshrss/freshrss to v1.29.1
| datasource      | package           | from   | to     |
| --------------- | ----------------- | ------ | ------ |
| github-releases | FreshRSS/FreshRSS | 1.29.0 | 1.29.1 |
2026-05-21 05:19:20 +00:00
Girish Ramakrishnan 7656977d62 test: make test/test.js non-executable and remove shebang 2026-05-19 15:32:44 +02:00
4 changed files with 15 additions and 4 deletions
+12
View File
@@ -483,3 +483,15 @@
* New Webhook extension for automated RSS notifications [Extensions#456](https://github.com/FreshRSS/Extensions/pull/456)
* New `cli/purge.php` to apply purge policy [#8740](https://github.com/FreshRSS/FreshRSS/pull/8740)
[1.28.1]
* Update FreshRSS to 1.29.1
* [Full Changelog](https://github.com/FreshRSS/FreshRSS/releases/tag/1.29.1)
* Accept `.txt` import of feed URLs in additional to e.g. OPML [#8818](https://github.com/FreshRSS/FreshRSS/pull/8818), [#8837](https://github.com/FreshRSS/FreshRSS/pull/8837)
* New CLI for automatic periodic SQLite export with retention [#8819](https://github.com/FreshRSS/FreshRSS/pull/8819)
* More feed info: last received date, publication date [#8799](https://github.com/FreshRSS/FreshRSS/pull/8799)
* Fix cookies with some browsers [#8867](https://github.com/FreshRSS/FreshRSS/pull/8867)
* Fix search in shared user queries with empty results [#8863](https://github.com/FreshRSS/FreshRSS/pull/8863)
* Fix XML errors with loading invalid OPML in `lib_opml` library [#8652](https://github.com/FreshRSS/FreshRSS/pull/8652), [#8853](https://github.com/FreshRSS/FreshRSS/pull/8853), [lib_opml#48](https://framagit.org/marienfressinaud/lib_opml/-/merge_requests/48), [lib_opml#51](https://framagit.org/marienfressinaud/lib_opml/-/merge_requests/51)
* Fix ensure maximum number of feeds also with Dynamic OPML [#8832](https://github.com/FreshRSS/FreshRSS/pull/8832)
* Fix click mark as read [#8817](https://github.com/FreshRSS/FreshRSS/pull/8817)
+2 -2
View File
@@ -5,8 +5,8 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG.md",
"tagline": "RSS feed reader",
"version": "1.28.0",
"upstreamVersion": "1.29.0",
"version": "1.28.1",
"upstreamVersion": "1.29.1",
"healthCheckPath": "/",
"httpPort": 8000,
"addons": {
+1 -1
View File
@@ -6,7 +6,7 @@ RUN mkdir -p /app/code
WORKDIR /app/code
# renovate: datasource=github-releases depName=FreshRSS/FreshRSS versioning=semver
ARG FRESHRSS_VERSION=1.29.0
ARG FRESHRSS_VERSION=1.29.1
RUN curl -L https://github.com/FreshRSS/FreshRSS/archive/${FRESHRSS_VERSION}.tar.gz | tar -zxvf - --strip-components=1 && \
mv data data-orig && ln -s /app/data data
-1
View File
@@ -1,4 +1,3 @@
#!/usr/bin/env node
import assert from 'node:assert/strict';
import superagent from '@cloudron/superagent';