mirror of
https://git.cloudron.io/cloudron/gitea-app
synced 2025-09-25 14:37:44 +00:00
Compare commits
5 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
1e9964fe49 | ||
|
23fa45cbc8 | ||
|
572226155c | ||
|
50ec10f0ae | ||
|
a99dfc8e2a |
24
CHANGELOG.md
24
CHANGELOG.md
@@ -1114,7 +1114,7 @@
|
|||||||
* Restore function to "Show more" buttons (#22399) (#22426)
|
* Restore function to "Show more" buttons (#22399) (#22426)
|
||||||
* Continue GCing other repos on error in one repo (#22422) (#22425)
|
* Continue GCing other repos on error in one repo (#22422) (#22425)
|
||||||
* Allow HOST has no port (#22280) (#22409)
|
* Allow HOST has no port (#22280) (#22409)
|
||||||
* Fix omit avatar_url in discord payload when empty (#22393) (#22394)
|
* Fix omit `avatar_url` in discord payload when empty (#22393) (#22394)
|
||||||
* Don't display stop watch top bar icon when disabled and hidden when click other place (#22374) (#22387)
|
* Don't display stop watch top bar icon when disabled and hidden when click other place (#22374) (#22387)
|
||||||
* Don't lookup mail server when using sendmail (#22300) (#22383)
|
* Don't lookup mail server when using sendmail (#22300) (#22383)
|
||||||
* Fix gravatar disable bug (#22337)
|
* Fix gravatar disable bug (#22337)
|
||||||
@@ -1134,7 +1134,7 @@
|
|||||||
* Fix invalid issue branch reference if not specified in template (#22513) (#22520)
|
* Fix invalid issue branch reference if not specified in template (#22513) (#22520)
|
||||||
* Fix 500 error viewing pull request when fork has pull requests disabled (#22512) (#22515)
|
* Fix 500 error viewing pull request when fork has pull requests disabled (#22512) (#22515)
|
||||||
* Reliable selection of admin user (#22509) (#22511)
|
* Reliable selection of admin user (#22509) (#22511)
|
||||||
* Set disable_gravatar/enable_federated_avatar when offline mode is true (#22479) (#22496)
|
* Set `disable_gravatar`/`enable_federated_avatar` when offline mode is true (#22479) (#22496)
|
||||||
|
|
||||||
[1.26.3]
|
[1.26.3]
|
||||||
* Update Gitea to 1.18.3
|
* Update Gitea to 1.18.3
|
||||||
@@ -1143,3 +1143,23 @@
|
|||||||
* Truncate commit summary on repo files table. (#22551) (#22552)
|
* Truncate commit summary on repo files table. (#22551) (#22552)
|
||||||
* Mute all links in issue timeline (#22534)
|
* Mute all links in issue timeline (#22534)
|
||||||
|
|
||||||
|
[1.26.4]
|
||||||
|
* Update Gitea to 1.18.4
|
||||||
|
* [Full changelog](https://github.com/go-gitea/gitea/releases/tag/v1.18.4)
|
||||||
|
* SECURITY
|
||||||
|
* Provide the ability to set password hash algorithm parameters (#22942) (#22943)
|
||||||
|
* Add command to bulk set must-change-password (#22823) (#22928)
|
||||||
|
* ENHANCEMENTS
|
||||||
|
* Use import of OCI structs (#22765) (#22805)
|
||||||
|
* Fix color of tertiary button on dark theme (#22739) (#22744)
|
||||||
|
* Link issue and pull requests status change in UI notifications directly to their event in the timelined view. (#22627) (#22642)
|
||||||
|
* BUGFIXES
|
||||||
|
* Notify on container image create (#22806) (#22965)
|
||||||
|
* Fix blame view missing lines (#22826) (#22929)
|
||||||
|
* Fix incorrect role labels for migrated issues and comments (#22914) (#22923)
|
||||||
|
* Fix PR file tree folders no longer collapsing (#22864) (#22872)
|
||||||
|
* Escape filename when assemble URL (#22850) (#22871)
|
||||||
|
|
||||||
|
[1.27.0]
|
||||||
|
* Email display name support
|
||||||
|
|
||||||
|
@@ -4,15 +4,15 @@
|
|||||||
"author": "Gitea developers",
|
"author": "Gitea developers",
|
||||||
"description": "file://DESCRIPTION.md",
|
"description": "file://DESCRIPTION.md",
|
||||||
"tagline": "A painless self-hosted Git Service",
|
"tagline": "A painless self-hosted Git Service",
|
||||||
"version": "1.26.3",
|
"version": "1.27.0",
|
||||||
"upstreamVersion": "1.18.3",
|
"upstreamVersion": "1.18.4",
|
||||||
"healthCheckPath": "/explore",
|
"healthCheckPath": "/explore",
|
||||||
"httpPort": 3000,
|
"httpPort": 3000,
|
||||||
"memoryLimit": 536870912,
|
"memoryLimit": 536870912,
|
||||||
"addons": {
|
"addons": {
|
||||||
"mysql": { },
|
"mysql": { },
|
||||||
"sendmail": { },
|
"sendmail": { },
|
||||||
"localstorage": { },
|
"localstorage": { "supportsDisplayName": true },
|
||||||
"ldap": { }
|
"ldap": { }
|
||||||
},
|
},
|
||||||
"tcpPorts": {
|
"tcpPorts": {
|
||||||
@@ -37,7 +37,7 @@
|
|||||||
"tags": [ "version control", "git", "code hosting", "development", "github", "bitbucket", "gitlab" ],
|
"tags": [ "version control", "git", "code hosting", "development", "github", "bitbucket", "gitlab" ],
|
||||||
"changelog": "file://CHANGELOG.md",
|
"changelog": "file://CHANGELOG.md",
|
||||||
"postInstallMessage": "file://POSTINSTALL.md",
|
"postInstallMessage": "file://POSTINSTALL.md",
|
||||||
"minBoxVersion": "7.2.0",
|
"minBoxVersion": "7.3.0",
|
||||||
"forumUrl": "https://forum.cloudron.io/category/19/gitea",
|
"forumUrl": "https://forum.cloudron.io/category/19/gitea",
|
||||||
"documentationUrl": "https://docs.cloudron.io/apps/gitea/"
|
"documentationUrl": "https://docs.cloudron.io/apps/gitea/"
|
||||||
}
|
}
|
||||||
|
@@ -19,7 +19,7 @@ WORKDIR /home/git
|
|||||||
# for autosign feature
|
# for autosign feature
|
||||||
ENV GNUPGHOME="/app/data/gnupg"
|
ENV GNUPGHOME="/app/data/gnupg"
|
||||||
|
|
||||||
ARG VERSION=1.18.3
|
ARG VERSION=1.18.4
|
||||||
|
|
||||||
RUN curl -L https://dl.gitea.io/gitea/${VERSION}/gitea-${VERSION}-linux-amd64 -o /home/git/gitea/gitea \
|
RUN curl -L https://dl.gitea.io/gitea/${VERSION}/gitea-${VERSION}-linux-amd64 -o /home/git/gitea/gitea \
|
||||||
&& chmod +x /home/git/gitea/gitea
|
&& chmod +x /home/git/gitea/gitea
|
||||||
|
2
start.sh
2
start.sh
@@ -114,7 +114,7 @@ crudini --set "/run/gitea/app.ini" repository.upload TEMP_PATH "/run/gitea/tmp/u
|
|||||||
crudini --set "/run/gitea/app.ini" mailer HOST "${CLOUDRON_MAIL_SMTP_SERVER}:${CLOUDRON_MAIL_SMTPS_PORT}"
|
crudini --set "/run/gitea/app.ini" mailer HOST "${CLOUDRON_MAIL_SMTP_SERVER}:${CLOUDRON_MAIL_SMTPS_PORT}"
|
||||||
crudini --set "/run/gitea/app.ini" mailer USER "${CLOUDRON_MAIL_SMTP_USERNAME}"
|
crudini --set "/run/gitea/app.ini" mailer USER "${CLOUDRON_MAIL_SMTP_USERNAME}"
|
||||||
crudini --set "/run/gitea/app.ini" mailer PASSWD "${CLOUDRON_MAIL_SMTP_PASSWORD}"
|
crudini --set "/run/gitea/app.ini" mailer PASSWD "${CLOUDRON_MAIL_SMTP_PASSWORD}"
|
||||||
crudini --set "/run/gitea/app.ini" mailer FROM "${CLOUDRON_MAIL_FROM}"
|
crudini --set "/run/gitea/app.ini" mailer FROM "${CLOUDRON_MAIL_FROM_DISPLAY_NAME:-Gitea} <${CLOUDRON_MAIL_FROM}>"
|
||||||
crudini --set "/run/gitea/app.ini" mailer SKIP_VERIFY "true"
|
crudini --set "/run/gitea/app.ini" mailer SKIP_VERIFY "true"
|
||||||
crudini --set "/run/gitea/app.ini" security INSTALL_LOCK "true"
|
crudini --set "/run/gitea/app.ini" security INSTALL_LOCK "true"
|
||||||
crudini --set "/run/gitea/app.ini" security REVERSE_PROXY_LIMIT 1
|
crudini --set "/run/gitea/app.ini" security REVERSE_PROXY_LIMIT 1
|
||||||
|
@@ -9,10 +9,10 @@
|
|||||||
"author": "",
|
"author": "",
|
||||||
"license": "ISC",
|
"license": "ISC",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"chromedriver": "^109.0.0",
|
"chromedriver": "^110.0.0",
|
||||||
"expect.js": "^0.3.1",
|
"expect.js": "^0.3.1",
|
||||||
"mocha": "^10.2.0",
|
"mocha": "^10.2.0",
|
||||||
"selenium-webdriver": "^4.8.0",
|
"selenium-webdriver": "^4.8.1",
|
||||||
"superagent": "^8.0.8"
|
"superagent": "^8.0.9"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user