Ver código fonte

Version 0.8.25

Thomas Fanninger 10 anos atrás
pai
commit
5e4a9bc0e0
6 arquivos alterados com 35 adições e 35 exclusões
  1. 5 3
      .SRCINFO
  2. 2 2
      PKGBUILD
  3. 6 6
      app.ini.patch
  4. 2 12
      app_new.ini
  5. 2 12
      app_old.ini
  6. 18 0
      gogs.changelog

+ 5 - 3
.SRCINFO

@@ -1,6 +1,8 @@
+# Generated by mksrcinfo v8
+# Sun Jan 31 12:56:07 UTC 2016
 pkgbase = gogs
 	pkgdesc = Gogs(Go Git Service) is a Self Hosted Git Service in the Go Programming Language.
-	pkgver = 0.8.10
+	pkgver = 0.8.25
 	pkgrel = 1
 	epoch = 1
 	url = http://gogs.io/
@@ -30,9 +32,9 @@ pkgbase = gogs
 	source = gogs.service.patch
 	source = app.ini.patch
 	source = helper.sh
-	source = gogs::git+https://github.com/gogits/gogs.git#tag=v0.8.10
+	source = gogs::git+https://github.com/gogits/gogs.git#tag=v0.8.25
 	sha512sums = 834e95fe9bcfa291a573ad1fa43f41bbed844658a918ff4fcf53ab8a44a296206ee4003eab1d9a2785c9126be077022f4907846d2eb6c5d64050b5e81ce47f44
-	sha512sums = b83b488f08d9ac04070d75c583bfe94d028a73380fff3b6fcd9b4e2efb766eaf99618feab86a8970868f295d863d2583a97ede3acbc138340a7a88f678fb71d7
+	sha512sums = 659fe35845d729034efdb9e647850bfd2d8e53d95cd14a4d17dcd947e4d9719ed608bd254e1578d63aa2f7cb07234f7316a6c2d15deb0fd82bd7e2b27b4252da
 	sha512sums = e45775adafeecad5deaf24a98cd85b25a8383cb0e89905b2927c13fe7f0ec9918a42071ce43eabc429d8a826db93bb75ffb1927dce9c431ed88b0b5c619fd60d
 	sha512sums = SKIP
 

+ 2 - 2
PKGBUILD

@@ -3,7 +3,7 @@
 
 pkgname=gogs
 _pkgname=${pkgname}
-pkgver=0.8.10
+pkgver=0.8.25
 pkgrel=1
 epoch=1
 pkgdesc="Gogs(Go Git Service) is a Self Hosted Git Service in the Go Programming Language."
@@ -32,7 +32,7 @@ source=('gogs.service.patch'
         "$_pkgname::git+https://${_gourl}.git#tag=v${pkgver}")
 
 sha512sums=(834e95fe9bcfa291a573ad1fa43f41bbed844658a918ff4fcf53ab8a44a296206ee4003eab1d9a2785c9126be077022f4907846d2eb6c5d64050b5e81ce47f44
-            b83b488f08d9ac04070d75c583bfe94d028a73380fff3b6fcd9b4e2efb766eaf99618feab86a8970868f295d863d2583a97ede3acbc138340a7a88f678fb71d7
+            659fe35845d729034efdb9e647850bfd2d8e53d95cd14a4d17dcd947e4d9719ed608bd254e1578d63aa2f7cb07234f7316a6c2d15deb0fd82bd7e2b27b4252da
             e45775adafeecad5deaf24a98cd85b25a8383cb0e89905b2927c13fe7f0ec9918a42071ce43eabc429d8a826db93bb75ffb1927dce9c431ed88b0b5c619fd60d
             'SKIP')
 

+ 6 - 6
app.ini.patch

@@ -6,27 +6,27 @@
 < ROOT =
 ---
 > ROOT = /srv/gogs/repo
-74c74
+76c76
 < STATIC_ROOT_PATH =
 ---
 > STATIC_ROOT_PATH = /usr/share/themes/gogs/default
-90c90
+92c92
 < PATH = data/gogs.db
 ---
 > PATH = /srv/gogs/sqlite/gogs.db
-191c191
+181c181
 < PROVIDER_CONFIG = data/sessions
 ---
 > PROVIDER_CONFIG = /srv/gogs/sessions
-206c206
+196c196
 < AVATAR_UPLOAD_PATH = data/avatars
 ---
 > AVATAR_UPLOAD_PATH = /srv/gogs/data/avatars
-216c216
+206c206
 < PATH = data/attachments
 ---
 > PATH = /srv/gogs/data/attachments
-231c231
+221c221
 < ROOT_PATH =
 ---
 > ROOT_PATH = /var/log/gogs

+ 2 - 12
app_new.ini

@@ -57,6 +57,8 @@ DISABLE_SSH = false
 ; Whether use builtin SSH server or not.
 START_SSH_SERVER = false
 SSH_PORT = 22
+; Root path of SSH directory
+SSH_ROOT_PATH = 
 ; Disable CDN even in "prod" mode
 OFFLINE_MODE = false
 DISABLE_ROUTER_LOG = false
@@ -118,21 +120,9 @@ ENABLE_NOTIFY_MAIL = false
 ; More detail: https://github.com/gogits/gogs/issues/165
 ENABLE_REVERSE_PROXY_AUTHENTICATION = false
 ENABLE_REVERSE_PROXY_AUTO_REGISTRATION = false
-; Do not check minimum key size with corresponding type
-DISABLE_MINIMUM_KEY_SIZE_CHECK = false
 ; Enable captcha validation for registration
 ENABLE_CAPTCHA = true
 
-; used to filter keys which are too short
-[service.minimum_key_sizes]
-ED25519 = 256
-ECDSA   = 256
-NTRU    = 1087
-MCE     = 1702
-McE     = 1702
-RSA     = 1024
-DSA     = 1024
-
 [webhook]
 ; Hook task queue length
 QUEUE_LENGTH = 1000

+ 2 - 12
app_old.ini

@@ -57,6 +57,8 @@ DISABLE_SSH = false
 ; Whether use builtin SSH server or not.
 START_SSH_SERVER = false
 SSH_PORT = 22
+; Root path of SSH directory
+SSH_ROOT_PATH = 
 ; Disable CDN even in "prod" mode
 OFFLINE_MODE = false
 DISABLE_ROUTER_LOG = false
@@ -118,21 +120,9 @@ ENABLE_NOTIFY_MAIL = false
 ; More detail: https://github.com/gogits/gogs/issues/165
 ENABLE_REVERSE_PROXY_AUTHENTICATION = false
 ENABLE_REVERSE_PROXY_AUTO_REGISTRATION = false
-; Do not check minimum key size with corresponding type
-DISABLE_MINIMUM_KEY_SIZE_CHECK = false
 ; Enable captcha validation for registration
 ENABLE_CAPTCHA = true
 
-; used to filter keys which are too short
-[service.minimum_key_sizes]
-ED25519 = 256
-ECDSA   = 256
-NTRU    = 1087
-MCE     = 1702
-McE     = 1702
-RSA     = 1024
-DSA     = 1024
-
 [webhook]
 ; Hook task queue length
 QUEUE_LENGTH = 1000

+ 18 - 0
gogs.changelog

@@ -1,3 +1,21 @@
+2015-01-30
+
+	* V0.8.25
+	Bug fix: Pull request can not change branch when both sides are organizations #2014
+	Bug fix: Duplicate of files' name in directory #2254
+	Bug fix: Rename organization redirects to old name #2268
+	Bug fix: HTML pages are rendered in raw mode #2283
+	Bug fix: Allow access to non-home pages of empty repository #2345
+	Bug fix: 500 when viewing authentication-related pages #2349
+	Bug fix: 500 when filename starts with ':' #2373
+	Improvement: Add config option [server] SSH_ROOT_PATH to indicate directory of authorized_keys file #1436
+	Improvement: Commit IDs use monospace fonts #2264
+	Improvement: Truncate repository name if too long #2287
+	Features: Support GitHub style Markdown checklist #1048
+	Features: Add more APIs: user followers #1692
+	Features: Support side-by-side diff view #1925 #2296
+	Features: Support highlight inline diff #2335
+
 2015-12-18
 
 	* V0.8.10