Ver código fonte

Bump version for upstream 0.11.53

Johannes Zellner 7 anos atrás
pai
commit
1d9f0316d0
4 arquivos alterados com 19 adições e 3 exclusões
  1. 16 0
      CHANGELOG
  2. 1 1
      CloudronManifest.json
  3. 1 1
      DESCRIPTION.md
  4. 1 1
      Dockerfile

+ 16 - 0
CHANGELOG

@@ -153,3 +153,19 @@
     * Once branch was protected "Lock" icon will never be removed #5053
     * SVG support in IPython notebook #5077
 
+[1.5.0]
+* Update Gogs to 0.11.53
+* Bug fixes
+    * The branch name contains '#' not work correctly #4601
+    * Issue mention does not render with square brackets #4706
+    * 500 when merge branch when the base branch is not the default branch #5138
+    * Gravatar URLs are badly generated #5157
+    * Able to reuse two factor passcode
+    * Config option [git] GC_ARGS does not take effect
+* Improvements
+    * Show mirror updates in activity timeline #2017
+    * Support authentication source config file #3142
+    * Trigger webhook after mirror sync #4528
+    * Changed import path from "gogits/gogs" to "gogs/gogs"
+    * Security fixes
+    * Add new languages support: Vietnamese

+ 1 - 1
CloudronManifest.json

@@ -4,7 +4,7 @@
   "author": "Gogs developers",
   "description": "file://DESCRIPTION.md",
   "tagline": "A painless self-hosted Git Service",
-  "version": "1.4.0",
+  "version": "1.5.0",
   "healthCheckPath": "/healthcheck",
   "httpPort": 3000,
   "addons": {

+ 1 - 1
DESCRIPTION.md

@@ -1,6 +1,6 @@
 Gogs (Go Git Service) is a painless self-hosted Git service.
 
-This app packages Gogs <upstream>0.11.43</upstream>
+This app packages Gogs <upstream>0.11.53</upstream>
 
 ### Purpose
 

+ 1 - 1
Dockerfile

@@ -15,7 +15,7 @@ RUN passwd -d git
 RUN mkdir -p /home/git/gogs
 ## TODO: use redis as well
 RUN cd /home/git/gogs && \
-    curl -L https://github.com/gogits/gogs/releases/download/v0.11.43/linux_amd64.tar.gz | tar zxvf - --strip-components 1
+    curl -L https://github.com/gogits/gogs/releases/download/v0.11.53/linux_amd64.tar.gz | tar zxvf - --strip-components 1
 
 # setup config paths
 ADD app.ini.template /home/git/app.ini.template