diff --git a/CHANGELOG b/CHANGELOG index f3f4a43..8cca7d2 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -174,3 +174,16 @@ * Emoji Autocomplete (#3433) * Implements generator cli for secrets (#3531) +[1.6.1] +* Update Gitea to 1.5.1 +* Security + * Don't disclose emails of all users when sending out emails (#4784) + * Improve URL validation for external wiki and external issues (#4710) (#4740) + * Make cookies HttpOnly and obey COOKIE_SECURE flag (#4706) (#4707) +* Bugfixes + * Fix missing release title in webhook (#4783) (#4800) + * Make sure to reset commit count in the cache on mirror syncing (#4770) + * Fixed bug where team with admin privelege type doesn't get any unit (#4759) + * Fix failure on creating pull request with assignees (#4583) (#4727) + * Hide org/create menu item in Dashboard if user has no rights (#4678) (#4686) + diff --git a/CloudronManifest.json b/CloudronManifest.json index f444bbd..2f5063a 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.6.0", + "version": "1.6.1", "healthCheckPath": "/healthcheck", "httpPort": 3000, "addons": { diff --git a/DESCRIPTION.md b/DESCRIPTION.md index dc3a0ad..4e928a7 100644 --- a/DESCRIPTION.md +++ b/DESCRIPTION.md @@ -1,4 +1,4 @@ -This app packages Gitea 1.5.0 +This app packages Gitea 1.5.1 Gitea is a painless self-hosted Git service. It is similar to GitHub, Bitbucket or Gitlab. diff --git a/Dockerfile b/Dockerfile index 5262665..44198b2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM cloudron/base:0.10.0 -ENV VERSION 1.5.0 +ENV VERSION 1.5.1 RUN apt-get update && \ apt-get install -y openssh-server git && \