Bump version for 1.13.4
This commit is contained in:
parent
11800518cb
commit
65a87ede58
|
@ -657,3 +657,12 @@
|
||||||
* Accept multiple SSH keys in single LDAP SSHPublicKey attribute (#13989) (#14607)
|
* Accept multiple SSH keys in single LDAP SSHPublicKey attribute (#13989) (#14607)
|
||||||
* Fix bug about ListOptions and stars/watchers pagnation (#14556) (#14573)
|
* Fix bug about ListOptions and stars/watchers pagnation (#14556) (#14573)
|
||||||
* Fix GPG key deletion during account deletion (#14561) (#14569)
|
* Fix GPG key deletion during account deletion (#14561) (#14569)
|
||||||
|
|
||||||
|
[1.20.2]
|
||||||
|
* Update Gitea to 1.13.4
|
||||||
|
* Fix issue popups (#14898) (#14899)
|
||||||
|
* Fix race in LFS ContentStore.Put(...) (#14895) (#14913)
|
||||||
|
* Fix a couple of issues with a feeds (#14897) (#14903)
|
||||||
|
* When transfering repository and database transaction failed, rollback the renames (#14864) (#14902)
|
||||||
|
* Fix race in local storage (#14888) (#14901)
|
||||||
|
* Fix 500 on pull view page if user is not loged in (#14885) (#14886)
|
||||||
|
|
|
@ -4,7 +4,7 @@
|
||||||
"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.20.1",
|
"version": "1.20.2",
|
||||||
"healthCheckPath": "/healthcheck",
|
"healthCheckPath": "/healthcheck",
|
||||||
"httpPort": 3000,
|
"httpPort": 3000,
|
||||||
"memoryLimit": 536870912,
|
"memoryLimit": 536870912,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
This app packages Gitea <upstream>1.13.3</upstream>
|
This app packages Gitea <upstream>1.13.4</upstream>
|
||||||
|
|
||||||
Gitea is a painless self-hosted Git service. It is similar to GitHub, Bitbucket or Gitlab.
|
Gitea is a painless self-hosted Git service. It is similar to GitHub, Bitbucket or Gitlab.
|
||||||
|
|
||||||
|
|
|
@ -15,7 +15,7 @@ RUN passwd -d git
|
||||||
RUN mkdir -p /home/git/gitea
|
RUN mkdir -p /home/git/gitea
|
||||||
WORKDIR /home/git
|
WORKDIR /home/git
|
||||||
|
|
||||||
ARG VERSION=1.13.3
|
ARG VERSION=1.13.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
|
||||||
|
|
Loading…
Reference in New Issue