diff --git a/CHANGELOG b/CHANGELOG index 1a7091c..d92eb7e 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -400,3 +400,23 @@ * Update Gitea to 1.10.0 * [Full changelog](https://github.com/go-gitea/gitea/releases/tag/v1.10.0) +[1.14.1] +* Update Gitea to 1.10.1 +* Fix max length check and limit in multiple repo forms (#9148) (#9204) +* Properly fix displaying virtual session provider in admin panel (#9137) (#9203) +* Upgrade levelqueue to 0.1.0 (#9192) (#9199) +* Fix panic when diff (#9187) (#9193) +* Smtp logger configuration sendTos should be an array (#9154) (#9157) +* Always Show Password Field on Link Account Sign-in Page (#9150) +* Create PR on Current Repository by Default (#8670) (#9141) +* Fix race on indexer (#9136) (#9139) +* Fix reCAPTCHA URL (#9119) +* Hide migrated credentials (#9098) +* Update golang.org/x/crypto vendor to use acme v2 (#9056) (#9085) +* Fix password checks on admin create/edit user (#9076) (#9081) +* Fix add search as a reserved username (#9063) (#9065) +* Fix permission checks for close/reopen from commit (#8875) (#9033) +* Ensure Written is set in GZIP ProxyResponseWriter (#9018) (#9025) +* Fix broken link to branch from issue list (#9003) (#9021) +* Fix wrong system notice when repository is empty (#9020) +* Shadow password correctly for session config (#8984) (#9002) \ No newline at end of file diff --git a/CloudronManifest.json b/CloudronManifest.json index 15a2288..d73232e 100644 --- a/CloudronManifest.json +++ b/CloudronManifest.json @@ -4,7 +4,7 @@ "author": "Gitea developers", "description": "file://DESCRIPTION.md", "tagline": "A painless self-hosted Git Service", - "version": "1.14.0", + "version": "1.14.1", "healthCheckPath": "/healthcheck", "httpPort": 3000, "addons": { diff --git a/DESCRIPTION.md b/DESCRIPTION.md index dee5361..9cf2c2b 100644 --- a/DESCRIPTION.md +++ b/DESCRIPTION.md @@ -1,4 +1,4 @@ -This app packages Gitea 1.10.0 +This app packages Gitea 1.10.1 Gitea is a painless self-hosted Git service. It is similar to GitHub, Bitbucket or Gitlab. diff --git a/Dockerfile b/Dockerfile index 07be0de..d8b7d69 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM cloudron/base:1.0.0@sha256:147a648a068a2e746644746bbfb42eb7a50d682437cead3c67c933c546357617 -ARG VERSION=1.10.0 +ARG VERSION=1.10.1 RUN apt-get update && \ apt-get install -y openssh-server git && \