[GitHub] [servicecomb-toolkit] kakulisen opened a new pull request #30: SCB-1487 add support for general jax-rs

2019-09-09 Thread GitBox
kakulisen opened a new pull request #30: SCB-1487 add support for general jax-rs
URL: https://github.com/apache/servicecomb-toolkit/pull/30
 
 
   add support for general jax-rs


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [servicecomb-java-chassis] johnyannj commented on issue #1324: HttpServerFilter的afterReceiveRequest无法支持异步

2019-09-09 Thread GitBox
johnyannj commented on issue #1324: HttpServerFilter的afterReceiveRequest无法支持异步
URL: 
https://github.com/apache/servicecomb-java-chassis/issues/1324#issuecomment-529724984
 
 
   @yhs0092 
   
   HttpServerFilter.afterReceiveRequest 返回值是Response, 没有返回值,程序是不能往下走的。
   
   
   
   
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [servicecomb-java-chassis] luhuaitong commented on issue #1324: HttpServerFilter的afterReceiveRequest无法支持异步

2019-09-09 Thread GitBox
luhuaitong commented on issue #1324: HttpServerFilter的afterReceiveRequest无法支持异步
URL: 
https://github.com/apache/servicecomb-java-chassis/issues/1324#issuecomment-529722682
 
 
   大哥,你哪里做鉴权了吗,有没有文档或者鉴权实现的思路参考一下啊


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [servicecomb-toolkit] kakulisen opened a new pull request #29: SCB-1486 Fix bug that generated public class name is inconsistent wit…

2019-09-09 Thread GitBox
kakulisen opened a new pull request #29: SCB-1486 Fix bug that generated public 
class name is inconsistent wit…
URL: https://github.com/apache/servicecomb-toolkit/pull/29
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[servicecomb-java-chassis] branch master updated: [SCB-1475] ServiceCombServerStats.getFailedRate and getSuccessRate may arise an  exception of java.lang.ArithmeticException: / by zero under concurre

2019-09-09 Thread yaohaishi
This is an automated email from the ASF dual-hosted git repository.

yaohaishi pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/servicecomb-java-chassis.git


The following commit(s) were added to refs/heads/master by this push:
 new e351e6d  [SCB-1475] ServiceCombServerStats.getFailedRate and 
getSuccessRate  may arise an  exception of java.lang.ArithmeticException: / by 
zero under concurrency scenarios
e351e6d is described below

commit e351e6df66d93aace7d8187963d533efe1590d2b
Author: Liu Huaizhou 
AuthorDate: Mon Sep 2 16:53:24 2019 +0800

[SCB-1475] ServiceCombServerStats.getFailedRate and getSuccessRate  may 
arise an  exception of java.lang.ArithmeticException: / by zero under 
concurrency scenarios
---
 .../servicecomb/loadbalance/ServiceCombServerStats.java| 14 --
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git 
a/handlers/handler-loadbalance/src/main/java/org/apache/servicecomb/loadbalance/ServiceCombServerStats.java
 
b/handlers/handler-loadbalance/src/main/java/org/apache/servicecomb/loadbalance/ServiceCombServerStats.java
index b41e2da..5c50c74 100644
--- 
a/handlers/handler-loadbalance/src/main/java/org/apache/servicecomb/loadbalance/ServiceCombServerStats.java
+++ 
b/handlers/handler-loadbalance/src/main/java/org/apache/servicecomb/loadbalance/ServiceCombServerStats.java
@@ -147,17 +147,19 @@ public class ServiceCombServerStats {
   }
 
   public int getSuccessRate() {
-if (totalRequests.get() == 0L) {
-  return 0;
-}
-return (int) (successRequests.get() * 100 / totalRequests.get());
+return calcRequestRate(successRequests);
   }
 
   public int getFailedRate() {
-if (totalRequests.get() == 0L) {
+return calcRequestRate(failedRequests);
+  }
+
+  private int calcRequestRate(AtomicLong requestCnt) {
+long totalReqs = totalRequests.get();
+if (totalReqs == 0L) {
   return 0;
 }
-return (int) (failedRequests.get() * 100 / totalRequests.get());
+return (int) (requestCnt.get() * 100 / totalReqs);
   }
 
   public boolean isIsolated() {



[GitHub] [servicecomb-java-chassis] yhs0092 merged pull request #1316: [SCB-1475] ServiceCombServerStats.getFailedRate and getSuccessRate m…

2019-09-09 Thread GitBox
yhs0092 merged pull request #1316: [SCB-1475] 
ServiceCombServerStats.getFailedRate and getSuccessRate  m…
URL: https://github.com/apache/servicecomb-java-chassis/pull/1316
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [servicecomb-java-chassis] yhs0092 commented on issue #1324: HttpServerFilter的afterReceiveRequest无法支持异步

2019-09-09 Thread GitBox
yhs0092 commented on issue #1324: HttpServerFilter的afterReceiveRequest无法支持异步
URL: 
https://github.com/apache/servicecomb-java-chassis/issues/1324#issuecomment-529521574
 
 
   这种情况推荐把调用其他服务的方式改为reactive的,这样就能在reactive模式下在HttpServerFilter里做调用了。


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [servicecomb-java-chassis] johnyannj opened a new issue #1324: HttpServerFilter的afterReceiveRequest无法支持异步

2019-09-09 Thread GitBox
johnyannj opened a new issue #1324: HttpServerFilter的afterReceiveRequest无法支持异步
URL: https://github.com/apache/servicecomb-java-chassis/issues/1324
 
 
   
   异步编程模型前提下
   
   如果想在HttpServerFilter完成鉴权等访问其它微服务的逻辑,无法使用异步。
   
   期望:HttpServerFilter的afterReceiveRequest支持异步


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[servicecomb-service-center] branch master updated: Use local time in backup log files (#585)

2019-09-09 Thread tianxiaoliang
This is an automated email from the ASF dual-hosted git repository.

tianxiaoliang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new 0633244  Use local time in backup log files (#585)
0633244 is described below

commit 0633244987aee4b532e9a375fe20d4e6e3f790e6
Author: humingcheng 
AuthorDate: Mon Sep 9 15:29:57 2019 +0800

Use local time in backup log files (#585)
---
 pkg/log/zap.go | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pkg/log/zap.go b/pkg/log/zap.go
index 2c417fc..e5e9fc1 100644
--- a/pkg/log/zap.go
+++ b/pkg/log/zap.go
@@ -119,7 +119,7 @@ func toZapConfig(c Config) zapcore.Core {
MaxSize:c.LogRotateSize,
MaxBackups: c.LogBackupCount,
MaxAge: c.LogBackupAge,
-   LocalTime:  false,
+   LocalTime:  true,
Compress:   true,
})
} else {



[GitHub] [servicecomb-java-chassis] ltp217 commented on issue #1253: Springboot集成的问题

2019-09-09 Thread GitBox
ltp217 commented on issue #1253: Springboot集成的问题
URL: 
https://github.com/apache/servicecomb-java-chassis/issues/1253#issuecomment-529334846
 
 
   同遇到了,把这个org.apache.servicecomb.spring-boot2-starter删掉就好了,不知道具体啥原因。


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [servicecomb-pack] Fxdemon commented on issue #555: org.springframework.kafka.KafkaException: Timed out waiting to get existing topics;

2019-09-09 Thread GitBox
Fxdemon commented on issue #555: org.springframework.kafka.KafkaException: 
Timed out waiting to get existing topics;
URL: 
https://github.com/apache/servicecomb-pack/issues/555#issuecomment-529326647
 
 
   kafka版本问题。


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[servicecomb-website] branch asf-site updated: Publish the website

2019-09-09 Thread ningjiang
This is an automated email from the ASF dual-hosted git repository.

ningjiang pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/servicecomb-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new c7b6eb1  Publish the website
c7b6eb1 is described below

commit c7b6eb10d58d771123a86ebf845c157c8206b0cb
Author: Willem Jiang 
AuthorDate: Mon Sep 9 14:44:12 2019 +0800

Publish the website
---
 .gitignore |   1 -
 content/cn/release/compatibleversion.html  |  28 +
 content/cn/release/index.html  |  31 ++
 .../cn/release/java-chassis-downloads/index.html   |  28 +
 .../release/java-chassis-release-notes/index.html  |  28 +
 .../index.html |  89 ++-
 .../index.html |  86 ---
 content/cn/release/pack-downloads/index.html   |  28 +
 content/cn/release/pack-release-notes/index.html   |  28 +
 .../cn/release/saga-actuator-downloads/index.html  |  28 +
 .../release/saga-actuator-release-notes/index.html |  28 +
 content/cn/release/saga-downloads/index.html   |  28 +
 content/cn/release/saga-release-notes/index.html   |  28 +
 .../cn/release/service-center-downloads/index.html |  28 +
 .../service-center-release-notes/index.html|  28 +
 content/cn/release/toolkit-downloads/index.html|  28 +
 .../cn/release/toolkit-release-notes/index.html|  28 +
 content/feed.xml   |   2 +-
 content/release/compatibleversion.html |  28 +
 content/release/index.html |  31 ++
 content/release/java-chassis-downloads/index.html  |  28 +
 .../release/java-chassis-release-notes/index.html  |  28 +
 .../index.html |  80 ++
 .../mesher-release-notes/index.html}   | 115 +++
 content/release/pack-downloads/index.html  |  28 +
 content/release/pack-release-notes/index.html  |  28 +
 content/release/saga-actuator-downloads/index.html |  28 +
 .../release/saga-actuator-release-notes/index.html |  28 +
 content/release/saga-downloads/index.html  |  28 +
 content/release/saga-release-notes/index.html  |  28 +
 .../release/service-center-downloads/index.html|  28 +
 .../service-center-release-notes/index.html|  28 +
 content/release/toolkit-downloads/index.html   |  28 +
 content/release/toolkit-release-notes/index.html   |  28 +
 content/sitemap.xml| 122 -
 35 files changed, 1096 insertions(+), 189 deletions(-)

diff --git a/.gitignore b/.gitignore
index a564800..655583d 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,4 +2,3 @@
 .DS_Store
 Gemfile.lock
 _site
-content
\ No newline at end of file
diff --git a/content/cn/release/compatibleversion.html 
b/content/cn/release/compatibleversion.html
index 184ba44..d9cf91a 100644
--- a/content/cn/release/compatibleversion.html
+++ b/content/cn/release/compatibleversion.html
@@ -313,6 +313,34 @@
 
   
 
+  Mesher
+
+
+
+
+  
+
+
+
+
+
+
+Release 
Notes
+  
+
+
+
+
+
+
+Downloads
+  
+
+
+  
+
+  
+
   Pack
 
 
diff --git a/content/cn/release/index.html b/content/cn/release/index.html
index 8b3ebbb..67827fb 100644
--- a/content/cn/release/index.html
+++ b/content/cn/release/index.html
@@ -314,6 +314,34 @@
 
   
 
+  Mesher
+
+
+
+
+  
+
+
+
+
+
+
+发布说明
+  
+
+
+
+
+
+
+发布包
+  
+
+
+  
+
+  
+
   Pack
 
 
@@ -476,6 +504,9 @@
   
 https://apache.org/dyn/closer.cgi/servicecomb/servicecomb-saga/0.2.1/; 
target="_blank">ServiceComb Saga 0.2.1 (released on 2018-11-23)
   
+  
+https://apache.org/dyn/closer.cgi/servicecomb/servicecomb-mesher/1.6.3/; 
target="_blank">ServiceComb Mesher 1.6.3 (released on 2019-9-9)
+  
 
 
 先前发行版本 :
diff --git a/content/cn/release/java-chassis-downloads/index.html 
b/content/cn/release/java-chassis-downloads/index.html
index 17c6981..9d40c4e 100644
--- a/content/cn/release/java-chassis-downloads/index.html
+++ b/content/cn/release/java-chassis-downloads/index.html
@@ -314,6 +314,34 @@
 
   
 
+  Mesher
+
+
+
+
+  
+
+
+
+
+
+
+发布说明
+  
+
+
+
+  

[servicecomb-website] branch master updated: add mesher release

2019-09-09 Thread ningjiang
This is an automated email from the ASF dual-hosted git repository.

ningjiang pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/servicecomb-website.git


The following commit(s) were added to refs/heads/master by this push:
 new 4cc22a7  add mesher release
4cc22a7 is described below

commit 4cc22a73a5a8c15b40812b3e11b2aef7ad9e893b
Author: tian 
AuthorDate: Mon Sep 9 11:47:00 2019 +0800

add mesher release
---
 _data/navigation.yml   | 12 +
 _release/cn/mesher_downloads.md| 51 ++
 _release/cn/mesher_releaseNotes.md | 35 ++
 _release/cn/release.md |  1 +
 _release/mesher_downloads.md   | 51 ++
 _release/mesher_releaseNotes.md| 35 ++
 _release/release.md|  2 ++
 7 files changed, 187 insertions(+)

diff --git a/_data/navigation.yml b/_data/navigation.yml
index 0403923..e6ab76f 100755
--- a/_data/navigation.yml
+++ b/_data/navigation.yml
@@ -102,6 +102,12 @@ t:
 url: /release/java-chassis-release-notes/
   - title: "Downloads"
 url: /release/java-chassis-downloads/
+  - title: "Mesher"
+children:
+  - title: "Release Notes"
+url: /release/mesher-release-notes/
+  - title: "Downloads"
+url: /release/mesher-downloads/
   - title: "Pack"
 children:
   - title: "Release Notes"
@@ -237,6 +243,12 @@ t:
 url: /cn/release/java-chassis-release-notes/
   - title: "发布包"
 url: /cn/release/java-chassis-downloads/
+  - title: "Mesher"
+children:
+  - title: "发布说明"
+url: /cn/release/mesher-release-notes/
+  - title: "发布包"
+url: /cn/release/mesher-downloads/
   - title: "Pack"
 children:
   - title: "发布说明"
diff --git a/_release/cn/mesher_downloads.md b/_release/cn/mesher_downloads.md
new file mode 100644
index 000..c3594c7
--- /dev/null
+++ b/_release/cn/mesher_downloads.md
@@ -0,0 +1,51 @@
+---
+title: "ServiceComb Mesher Downloads"
+lang: cn
+ref: release
+permalink: /cn/release/mesher-downloads/
+excerpt: "ServiceComb Mesher Downloads"
+last_modified_at: 2019-09-09T00:50:43-55:00
+---
+
+## 发布包
+
+
+| Release   | Source|   Windows |  
 Linux   |   Darwin  |  
+| -- | - | 
- | - | 
- |
+| **Apache ServiceComb Mesher 1.6.3 (LATEST)**
|[[src]](https://apache.org/dyn/closer.cgi/servicecomb/servicecomb-mesher/1.6.3/apache-servicecomb-mesher-1.6.3-src.tar.gz)
 
[[asc]](https://www.apache.org/dist/servicecomb/servicecomb-mesher/1.6.3/apache-servicecomb-mesher-1.6.3-src.tar.gz.asc)
 
[[sha512]](https://www.apache.org/dist/servicecomb/servicecomb-mesher/1.6.3/apache-servicecomb-mesher-1.6.3-src.tar.gz.sha512)
 | [[Binary]](https://apache.org/dyn/closer.cgi/servicecomb/service [...]
+
+**发布包验证**
+
+使用PGP或SHA签名验证下载文件的完整性是很有必要的。PGP签名可以使用GPG或PGP进行验证,
+请下载 [KEYS](https://www.apache.org/dist/servicecomb/KEYS)以及相关发行的asc签名文件。
+建议从主发行[目录](https://www.apache.org/dist/servicecomb/servicecomb-mesher/){:target="_blank"}
 中获取这些文件,
+而不是从镜像中获取这些文件。
+ ```
+ gpg --import KEYS
+
+ or
+
+ pgpk -a KEYS
+
+ or
+
+ pgp -ka KEYS
+
+```
+
+要验证二进制文件或源代码,您可以从主发行目录下载相关的asc文件并按照以下指南进行操作。
+```
+gpg --verify apache-servicecomb-mesher-.asc 
apache-servicecomb-mesher-*
+
+or
+
+pgpv apache-servicecomb-mesher-.asc
+
+or
+
+pgp apache-servicecomb-mesher-.asc
+
+
+```
+
+另外,您也可以从主发行[仓库](https://www.apache.org/dist/servicecomb/servicecomb-mesher/){:target="_blank"}
 下载SHA签名并使用sha512sum验证。
diff --git a/_release/cn/mesher_releaseNotes.md 
b/_release/cn/mesher_releaseNotes.md
new file mode 100644
index 000..f4bd070
--- /dev/null
+++ b/_release/cn/mesher_releaseNotes.md
@@ -0,0 +1,35 @@
+---
+title: "Release Notes"
+lang: cn
+ref: release
+permalink: /cn/release/mesher-release-notes/
+excerpt: "Release Notes"
+last_modified_at: 2019-04-06T00:50:43-55:00
+---
+
+
+Release Notes - Apache ServiceComb - Version mesher-1.6.3
+
+Bug
+
+
+[SCB-1410] -  
   Mersher config for tracing didnt work.
+
+[SCB-1415] -  
   Mersher relies on go-chassis/go-chassis-plugins.But go-chassis-plugins 
can not compile because of dependent packages missing 
+
+
+
+New Feature
+
+
+[SCB-1477] -  
   add release script to release mesher
+
+
+
+Improvement
+
+
+[SCB-1404] -  
   GRPCDefaultDestinationResolver name was miswritten as 
GPRCDefaultDestinationResolver.
+
+
+   
 
\ No newline 

[servicecomb-website] branch asf-site updated: add mesher release

2019-09-09 Thread ningjiang
This is an automated email from the ASF dual-hosted git repository.

ningjiang pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/servicecomb-website.git


The following commit(s) were added to refs/heads/asf-site by this push:
 new 20c60bd  add mesher release
20c60bd is described below

commit 20c60bdc2a0d7fa2c904a6bf15765b8aa57f9257
Author: tian 
AuthorDate: Mon Sep 9 11:47:00 2019 +0800

add mesher release
---
 .gitignore |  1 +
 _data/navigation.yml   | 12 +
 _release/cn/mesher_downloads.md| 51 ++
 _release/cn/mesher_releaseNotes.md | 35 ++
 _release/cn/release.md |  1 +
 _release/mesher_downloads.md   | 51 ++
 _release/mesher_releaseNotes.md| 35 ++
 _release/release.md|  2 ++
 8 files changed, 188 insertions(+)

diff --git a/.gitignore b/.gitignore
index 655583d..a564800 100644
--- a/.gitignore
+++ b/.gitignore
@@ -2,3 +2,4 @@
 .DS_Store
 Gemfile.lock
 _site
+content
\ No newline at end of file
diff --git a/_data/navigation.yml b/_data/navigation.yml
index 0403923..e6ab76f 100755
--- a/_data/navigation.yml
+++ b/_data/navigation.yml
@@ -102,6 +102,12 @@ t:
 url: /release/java-chassis-release-notes/
   - title: "Downloads"
 url: /release/java-chassis-downloads/
+  - title: "Mesher"
+children:
+  - title: "Release Notes"
+url: /release/mesher-release-notes/
+  - title: "Downloads"
+url: /release/mesher-downloads/
   - title: "Pack"
 children:
   - title: "Release Notes"
@@ -237,6 +243,12 @@ t:
 url: /cn/release/java-chassis-release-notes/
   - title: "发布包"
 url: /cn/release/java-chassis-downloads/
+  - title: "Mesher"
+children:
+  - title: "发布说明"
+url: /cn/release/mesher-release-notes/
+  - title: "发布包"
+url: /cn/release/mesher-downloads/
   - title: "Pack"
 children:
   - title: "发布说明"
diff --git a/_release/cn/mesher_downloads.md b/_release/cn/mesher_downloads.md
new file mode 100644
index 000..c3594c7
--- /dev/null
+++ b/_release/cn/mesher_downloads.md
@@ -0,0 +1,51 @@
+---
+title: "ServiceComb Mesher Downloads"
+lang: cn
+ref: release
+permalink: /cn/release/mesher-downloads/
+excerpt: "ServiceComb Mesher Downloads"
+last_modified_at: 2019-09-09T00:50:43-55:00
+---
+
+## 发布包
+
+
+| Release   | Source|   Windows |  
 Linux   |   Darwin  |  
+| -- | - | 
- | - | 
- |
+| **Apache ServiceComb Mesher 1.6.3 (LATEST)**
|[[src]](https://apache.org/dyn/closer.cgi/servicecomb/servicecomb-mesher/1.6.3/apache-servicecomb-mesher-1.6.3-src.tar.gz)
 
[[asc]](https://www.apache.org/dist/servicecomb/servicecomb-mesher/1.6.3/apache-servicecomb-mesher-1.6.3-src.tar.gz.asc)
 
[[sha512]](https://www.apache.org/dist/servicecomb/servicecomb-mesher/1.6.3/apache-servicecomb-mesher-1.6.3-src.tar.gz.sha512)
 | [[Binary]](https://apache.org/dyn/closer.cgi/servicecomb/service [...]
+
+**发布包验证**
+
+使用PGP或SHA签名验证下载文件的完整性是很有必要的。PGP签名可以使用GPG或PGP进行验证,
+请下载 [KEYS](https://www.apache.org/dist/servicecomb/KEYS)以及相关发行的asc签名文件。
+建议从主发行[目录](https://www.apache.org/dist/servicecomb/servicecomb-mesher/){:target="_blank"}
 中获取这些文件,
+而不是从镜像中获取这些文件。
+ ```
+ gpg --import KEYS
+
+ or
+
+ pgpk -a KEYS
+
+ or
+
+ pgp -ka KEYS
+
+```
+
+要验证二进制文件或源代码,您可以从主发行目录下载相关的asc文件并按照以下指南进行操作。
+```
+gpg --verify apache-servicecomb-mesher-.asc 
apache-servicecomb-mesher-*
+
+or
+
+pgpv apache-servicecomb-mesher-.asc
+
+or
+
+pgp apache-servicecomb-mesher-.asc
+
+
+```
+
+另外,您也可以从主发行[仓库](https://www.apache.org/dist/servicecomb/servicecomb-mesher/){:target="_blank"}
 下载SHA签名并使用sha512sum验证。
diff --git a/_release/cn/mesher_releaseNotes.md 
b/_release/cn/mesher_releaseNotes.md
new file mode 100644
index 000..f4bd070
--- /dev/null
+++ b/_release/cn/mesher_releaseNotes.md
@@ -0,0 +1,35 @@
+---
+title: "Release Notes"
+lang: cn
+ref: release
+permalink: /cn/release/mesher-release-notes/
+excerpt: "Release Notes"
+last_modified_at: 2019-04-06T00:50:43-55:00
+---
+
+
+Release Notes - Apache ServiceComb - Version mesher-1.6.3
+
+Bug
+
+
+[SCB-1410] -  
   Mersher config for tracing didnt work.
+
+[SCB-1415] -  
   Mersher relies on go-chassis/go-chassis-plugins.But go-chassis-plugins 
can not compile because of dependent packages missing 
+
+
+
+New Feature
+
+
+[SCB-1477] -  
   add release script to release mesher
+
+
+
+Improvement
+
+
+[SCB-1404] -  
   

[GitHub] [servicecomb-website] WillemJiang merged pull request #194: add mesher release

2019-09-09 Thread GitBox
WillemJiang merged pull request #194: add mesher release
URL: https://github.com/apache/servicecomb-website/pull/194
 
 
   


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services


[GitHub] [servicecomb-website] WillemJiang commented on issue #194: add mesher release

2019-09-09 Thread GitBox
WillemJiang commented on issue #194: add mesher release
URL: 
https://github.com/apache/servicecomb-website/pull/194#issuecomment-529317486
 
 
   @tianxiaoliang  Please send the request to master next time.


This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services