1
0
mirror of https://git.cloudron.io/cloudron/freshrss-app synced 2025-09-18 11:19:08 +00:00

Compare commits

...

3 Commits

Author SHA1 Message Date
Package Updates
5bdce48281 Update package version to 1.23.0 2024-12-24 07:59:16 +00:00
Renovate Bot
ecd914b78f chore(deps): update dependency freshrss/freshrss to v1.25.0
| datasource      | package           | from   | to     |
| --------------- | ----------------- | ------ | ------ |
| github-releases | FreshRSS/FreshRSS | 1.24.3 | 1.25.0 |
2024-12-24 06:20:11 +00:00
Vladimir D
924a98f8da "CLOUDRON_OIDC_PROVIDER_NAME is not supported" comment added 2024-12-10 14:32:21 +04:00
6 changed files with 773 additions and 155 deletions

View File

@@ -344,3 +344,18 @@
[1.22.0]
* checklist added to CloudronManifest
[1.23.0]
* Update FreshRSS to 1.25.0
* [Full Changelog](https://github.com/FreshRSS/FreshRSS/releases/tag/1.25.0)
* Features
* Bug fixing
* API
* Compatibility
* Deployment
* SimplePie
* Security
* UI
* Extensions
* I18n
* Misc.

View File

@@ -5,8 +5,8 @@
"description": "file://DESCRIPTION.md",
"changelog": "file://CHANGELOG.md",
"tagline": "RSS feed reader",
"version": "1.22.0",
"upstreamVersion": "1.24.3",
"version": "1.23.0",
"upstreamVersion": "1.25.0",
"healthCheckPath": "/",
"httpPort": 8000,
"addons": {

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.24.3
ARG FRESHRSS_VERSION=1.25.0
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

View File

@@ -36,6 +36,9 @@ ServerName %{HTTP_HOST}
<IfDefine OIDC_ENABLED>
# CLOUDRON_OIDC_PROVIDER_NAME is not supported
OIDCProviderMetadataURL ${CLOUDRON_OIDC_DISCOVERY_URL}
OIDCClientID ${CLOUDRON_OIDC_CLIENT_ID}
OIDCClientSecret ${CLOUDRON_OIDC_CLIENT_SECRET}

896
test/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -9,10 +9,10 @@
"author": "",
"license": "ISC",
"dependencies": {
"chromedriver": "^128.0.1",
"chromedriver": "^131.0.4",
"expect.js": "^0.3.1",
"mocha": "^10.7.3",
"selenium-webdriver": "^4.24.0",
"superagent": "^10.1.0"
"mocha": "^11.0.1",
"selenium-webdriver": "^4.27.0",
"superagent": "^10.1.1"
}
}