diff --git a/CHANGELOG b/CHANGELOG index 85e9bc4..46be40b 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -508,3 +508,14 @@ * Update Gitea to 1.12.2 * [Full changelog](https://github.com/go-gitea/gitea/releases/tag/v1.12.2) +[1.18.2] +* Update Gitea to 1.12.3 +* [Full changelog](https://github.com/go-gitea/gitea/releases/tag/v1.12.3) +* Don't change creation date when updating Release (#12343) (#12351) +* Show 404 page when release not found (#12328) (#12332) +* Fix emoji detection in certain cases (#12320) (#12327) +* Reduce emoji size (#12317) (#12327) +* Fix double-indirection bug in logging IDs (#12294) (#12308) +* Link to pull list page on sidebar when view pr (#12256) (#12263) +* Extend Notifications API and return pinned notifications by default (#12164) (#12232) + diff --git a/CloudronManifest.json b/CloudronManifest.json index fbf0711..faeaa1b 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.18.1", + "version": "1.18.2", "healthCheckPath": "/healthcheck", "httpPort": 3000, "memoryLimit": 536870912, diff --git a/DESCRIPTION.md b/DESCRIPTION.md index ae7360a..fb8151b 100644 --- a/DESCRIPTION.md +++ b/DESCRIPTION.md @@ -1,4 +1,4 @@ -This app packages Gitea 1.12.2 +This app packages Gitea 1.12.3 Gitea is a painless self-hosted Git service. It is similar to GitHub, Bitbucket or Gitlab. diff --git a/Dockerfile b/Dockerfile index 8229c5d..6b6d80c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM cloudron/base:2.0.0@sha256:f9fea80513aa7c92fe2e7bf3978b54c8ac5222f47a9a32a7f8833edf0eb5a4f4 -ARG VERSION=1.12.2 +ARG VERSION=1.12.3 RUN apt-get update && \ apt-get install -y openssh-server git && \