Bump version for 1.13.3
This commit is contained in:
parent
32c5507674
commit
731be1ccf8
20
CHANGELOG
20
CHANGELOG
|
@ -637,3 +637,23 @@
|
||||||
[1.20.0]
|
[1.20.0]
|
||||||
* Use base image v3
|
* Use base image v3
|
||||||
|
|
||||||
|
[1.20.1]
|
||||||
|
* Update Gitea to 1.13.3
|
||||||
|
* Turn default hash password algorithm back to pbkdf2 from argon2 until we find a better one (#14673) (#14675)
|
||||||
|
* Fix paging of file commit logs (#14831) (#14879)
|
||||||
|
* Print useful error if SQLite is used in settings but not supported (#14476) (#14874)
|
||||||
|
* Fix display since time round (#14226) (#14873)
|
||||||
|
* When Deleting Repository only explicitly close PRs whose base is not this repository (#14823) (#14842)
|
||||||
|
* Set HCaptchaSiteKey on Link Account pages (#14834) (#14839)
|
||||||
|
* Fix a couple of CommentAsPatch issues. (#14804) (#14820)
|
||||||
|
* Disable broken OAuth2 providers at startup (#14802) (#14811)
|
||||||
|
* Repo Transfer permission checks (#14792) (#14794)
|
||||||
|
* Fix double alert in oauth2 application edit view (#14764) (#14768)
|
||||||
|
* Fix broken spans in diffs (#14678) (#14683)
|
||||||
|
* Prevent race in PersistableChannelUniqueQueue.Has (#14651) (#14676)
|
||||||
|
* HasPreviousCommit causes recursive load of commits unnecessarily (#14598) (#14649)
|
||||||
|
* Do not assume all 40 char strings are SHA1s (#14624) (#14648)
|
||||||
|
* Allow org labels to be set with issue templates (#14593) (#14647)
|
||||||
|
* Accept multiple SSH keys in single LDAP SSHPublicKey attribute (#13989) (#14607)
|
||||||
|
* Fix bug about ListOptions and stars/watchers pagnation (#14556) (#14573)
|
||||||
|
* Fix GPG key deletion during account deletion (#14561) (#14569)
|
||||||
|
|
|
@ -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.0",
|
"version": "1.20.1",
|
||||||
"healthCheckPath": "/healthcheck",
|
"healthCheckPath": "/healthcheck",
|
||||||
"httpPort": 3000,
|
"httpPort": 3000,
|
||||||
"memoryLimit": 536870912,
|
"memoryLimit": 536870912,
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
This app packages Gitea <upstream>1.13.2</upstream>
|
This app packages Gitea <upstream>1.13.3</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.
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,5 @@
|
||||||
FROM cloudron/base:3.0.0@sha256:455c70428723e3a823198c57472785437eb6eab082e79b3ff04ea584faf46e92
|
FROM cloudron/base:3.0.0@sha256:455c70428723e3a823198c57472785437eb6eab082e79b3ff04ea584faf46e92
|
||||||
|
|
||||||
ARG VERSION=1.13.2
|
|
||||||
|
|
||||||
RUN apt-get update && \
|
RUN apt-get update && \
|
||||||
apt-get install -y openssh-server git && \
|
apt-get install -y openssh-server git && \
|
||||||
rm -rf /etc/ssh_host_* && \
|
rm -rf /etc/ssh_host_* && \
|
||||||
|
@ -16,6 +14,9 @@ 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
|
||||||
|
|
||||||
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