mirror of
https://git.cloudron.io/cloudron/gitea-app
synced 2025-09-26 15:07:25 +00:00
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
|
e10793d421 | ||
|
9eea9fe0be | ||
|
298cb33e86 |
11
CHANGELOG.md
11
CHANGELOG.md
@@ -1066,3 +1066,14 @@
|
|||||||
[1.24.5]
|
[1.24.5]
|
||||||
* Support autosigning via gnupg
|
* Support autosigning via gnupg
|
||||||
|
|
||||||
|
[1.25.0]
|
||||||
|
* Update Gitea to 1.17.4
|
||||||
|
* [Full changelog](https://github.com/go-gitea/gitea/releases/tag/v1.17.4)
|
||||||
|
* Do not allow Ghost access to limited visible user/org (#21849) (#21875)
|
||||||
|
* Fix package access for admins and inactive users (#21580) (#21592)
|
||||||
|
* Fix button in branch list, avoid unexpected page jump before restore branch actually done (#21562) (#21927)
|
||||||
|
* Fix vertical align of committer avatar rendered by email address (#21884) (#21919)
|
||||||
|
* Fix setting HTTP headers after write (#21833) (#21874)
|
||||||
|
* Ignore line anchor links with leading zeroes (#21728) (#21777)
|
||||||
|
* Enable Monaco automaticLayout (#21516)
|
||||||
|
|
||||||
|
@@ -4,8 +4,8 @@
|
|||||||
"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.24.5",
|
"version": "1.25.0",
|
||||||
"upstreamVersion": "1.17.3",
|
"upstreamVersion": "1.17.4",
|
||||||
"healthCheckPath": "/explore",
|
"healthCheckPath": "/explore",
|
||||||
"httpPort": 3000,
|
"httpPort": 3000,
|
||||||
"memoryLimit": 536870912,
|
"memoryLimit": 536870912,
|
||||||
|
@@ -1,4 +1,4 @@
|
|||||||
FROM cloudron/base:3.2.0@sha256:ba1d566164a67c266782545ea9809dc611c4152e27686fd14060332dd88263ea
|
FROM cloudron/base:4.0.0@sha256:31b195ed0662bdb06a6e8a5ddbedb6f191ce92e8bee04c03fb02dd4e9d0286df
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y openssh-server git asciidoctor pandoc && \
|
apt-get install -y openssh-server git asciidoctor pandoc && \
|
||||||
@@ -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.17.3
|
ARG VERSION=1.17.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
|
||||||
|
Reference in New Issue
Block a user