mirror of
https://git.cloudron.io/cloudron/freshrss-app
synced 2025-09-17 10:49:06 +00:00
Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
2c8ed386ca | ||
|
81bd749001 | ||
|
4f96317a75 | ||
|
f5dc0cef24 | ||
|
143d4a80b9 | ||
|
50172402be | ||
|
7935b892bd |
18
CHANGELOG.md
18
CHANGELOG.md
@@ -295,3 +295,21 @@
|
|||||||
* Soft require Apache 2.4+ (but repair minimal compatibility with Apache 2.2)
|
* Soft require Apache 2.4+ (but repair minimal compatibility with Apache 2.2)
|
||||||
* Upgraded extensions require FreshRSS 1.23.0+ Extensions#181
|
* Upgraded extensions require FreshRSS 1.23.0+ Extensions#181
|
||||||
|
|
||||||
|
[1.20.1]
|
||||||
|
* Update FreshRSS to 1.23.1
|
||||||
|
* [Full Changelog](https://github.com/FreshRSS/FreshRSS/releases/tag/1.23.0)
|
||||||
|
* Fix crash regression with the option Max number of tags shown #5978
|
||||||
|
* Fix crash regression when enabling extensions defined by old FreshRSS installations #5979
|
||||||
|
* Fix crash regression during export when using MySQL #5988
|
||||||
|
* More robust assignment of categories to feeds #5986
|
||||||
|
|
||||||
|
[1.21.0]
|
||||||
|
* Update FreshRSS to 1.24.0
|
||||||
|
* [Full Changelog](https://github.com/FreshRSS/FreshRSS/releases/tag/1.24.0)
|
||||||
|
* New shareable user query mechanism to share lists of articles by HTML, RSS, OPML
|
||||||
|
* New CLI for database backup & restore
|
||||||
|
* New JSON scraping mode to consume JSON data and JSON Feeds
|
||||||
|
* New support for HTTP POST
|
||||||
|
* New option to automatically add labels to incoming articles
|
||||||
|
* New button to download a feed configuration as OPML
|
||||||
|
|
||||||
|
@@ -5,8 +5,8 @@
|
|||||||
"description": "file://DESCRIPTION.md",
|
"description": "file://DESCRIPTION.md",
|
||||||
"changelog": "file://CHANGELOG.md",
|
"changelog": "file://CHANGELOG.md",
|
||||||
"tagline": "RSS feed reader",
|
"tagline": "RSS feed reader",
|
||||||
"version": "1.20.0-1",
|
"version": "1.21.0",
|
||||||
"upstreamVersion": "1.23.0",
|
"upstreamVersion": "1.24.0",
|
||||||
"healthCheckPath": "/",
|
"healthCheckPath": "/",
|
||||||
"httpPort": 8000,
|
"httpPort": 8000,
|
||||||
"addons": {
|
"addons": {
|
||||||
|
@@ -5,12 +5,12 @@ RUN apt-get update && apt-get install --no-install-recommends -y libapache2-mod-
|
|||||||
RUN mkdir -p /app/code
|
RUN mkdir -p /app/code
|
||||||
WORKDIR /app/code
|
WORKDIR /app/code
|
||||||
|
|
||||||
ARG VERSION=1.23.0
|
ARG VERSION=1.24.0
|
||||||
RUN curl -L https://github.com/FreshRSS/FreshRSS/archive/${VERSION}.tar.gz | tar -zxvf - --strip-components=1 && \
|
RUN curl -L https://github.com/FreshRSS/FreshRSS/archive/${VERSION}.tar.gz | tar -zxvf - --strip-components=1 && \
|
||||||
mv data data-orig && ln -s /app/data data
|
mv data data-orig && ln -s /app/data data
|
||||||
|
|
||||||
# official extensions (https://github.com/FreshRSS/Extensions/commits/master)
|
# official extensions (https://github.com/FreshRSS/Extensions/commits/master)
|
||||||
RUN wget https://github.com/FreshRSS/Extensions/archive/8af0d55265ffa03de22ee62b2ae175b3cb038a3c.tar.gz -O - | tar -xz --strip-components=1 -C /app/code/extensions && \
|
RUN wget https://github.com/FreshRSS/Extensions/archive/a82e080a1e68eb34539959a852fc5e800b7346dd.tar.gz -O - | tar -xz --strip-components=1 -C /app/code/extensions && \
|
||||||
mv /app/code/extensions /app/code/extensions-orig && \
|
mv /app/code/extensions /app/code/extensions-orig && \
|
||||||
ln -s /app/data/extensions /app/code/extensions
|
ln -s /app/data/extensions /app/code/extensions
|
||||||
|
|
||||||
|
1346
test/package-lock.json
generated
1346
test/package-lock.json
generated
File diff suppressed because it is too large
Load Diff
@@ -9,10 +9,10 @@
|
|||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"chromedriver": "^120.0.1",
|
"chromedriver": "^125.0.1",
|
||||||
"expect.js": "^0.3.1",
|
"expect.js": "^0.3.1",
|
||||||
"mocha": "^10.2.0",
|
"mocha": "^10.4.0",
|
||||||
"selenium-webdriver": "^4.16.0",
|
"selenium-webdriver": "^4.21.0",
|
||||||
"superagent": "^8.1.2"
|
"superagent": "^9.0.2"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@@ -211,7 +211,7 @@ describe('Application life cycle test', function () {
|
|||||||
it('uninstall app', function () { execSync('cloudron uninstall --app ' + app.id, EXEC_ARGS); });
|
it('uninstall app', function () { execSync('cloudron uninstall --app ' + app.id, EXEC_ARGS); });
|
||||||
|
|
||||||
// test update
|
// test update
|
||||||
it('can install app', function () { execSync('cloudron install --appstore-id org.freshrss.cloudronapp --location ' + LOCATION, EXEC_ARGS); });
|
it('can install app for update', function () { execSync('cloudron install --appstore-id org.freshrss.cloudronapp --location ' + LOCATION, EXEC_ARGS); });
|
||||||
|
|
||||||
it('can get app information', getAppInfo);
|
it('can get app information', getAppInfo);
|
||||||
it('can login OIDC', loginOIDC.bind(null, USERNAME, PASSWORD));
|
it('can login OIDC', loginOIDC.bind(null, USERNAME, PASSWORD));
|
||||||
|
Reference in New Issue
Block a user