You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by hu...@apache.org on 2018/07/18 13:38:44 UTC

[incubator-dubbo] branch master updated (588214b -> f6f0e84)

This is an automated email from the ASF dual-hosted git repository.

huxing pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git.


    from 588214b  [Issue-303] Add the tag corethreads to <dubbo:protocol> in dubbo.xsd (#1989)
     new 30f54e9  Polish README.
     new f6f0e84  Add FAQ.

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 FAQ.md    | 25 +++++++++++++++++++++++++
 README.md |  2 +-
 2 files changed, 26 insertions(+), 1 deletion(-)
 create mode 100644 FAQ.md


[incubator-dubbo] 02/02: Add FAQ.

Posted by hu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

huxing pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git

commit f6f0e84ebe7b5aeaca2bc4164b428435ff7ba9b3
Author: Huxing Zhang <hu...@gmail.com>
AuthorDate: Wed Jul 18 21:37:30 2018 +0800

    Add FAQ.
---
 FAQ.md | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/FAQ.md b/FAQ.md
new file mode 100644
index 0000000..dca1e02
--- /dev/null
+++ b/FAQ.md
@@ -0,0 +1,25 @@
+### Where is dubbo-admin?
+
+dubbo-admin has been moved from core repository to https://github.com/apache/incubator-dubbo-ops since 2.6.1
+
+### Which version should I choose?
+
+Currently, dubbo keeps 3 versions evolve in parallel:
+
+* 2.7.x (master): requires Java 1.8, major feature branch
+
+* 2.6.x: requires Java 1.6, minor feature & bugfix branch, GA, production ready.
+
+* 2.5.x: requires Java 1.6, maintainance branch, only accept security vulnerbility and critical bugfix, expected to be EOL soon
+
+check [this](https://github.com/apache/incubator-dubbo/issues/1208) for detailed version management plan.
+
+For contributors, please make sure all changes on the right branch, that is, most of the pull request should go to 2.7.x, and be backported to 2.6.x and 2.5.x if necessary. If the fix is specific to a branch, please make sure your pull request goes to the right branch.
+
+For committers, make sure select the right label and target branch for every PR, and don't forget to back port the fix to lower version is necessary.
+
+####  How to register ip correctly in docker?  
+
+[Example question](https://github.com/alibaba/dubbo/issues/742)  
+
+Dubbo support to specify ip/port via system environment varialbles, examples can be found [here](https://github.com/dubbo/dubbo-samples/tree/master/dubbo-samples-docker).
\ No newline at end of file


[incubator-dubbo] 01/02: Polish README.

Posted by hu...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

huxing pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-dubbo.git

commit 30f54e96b9a319118e4e02bfe9720280db53b0de
Author: Huxing Zhang <hu...@gmail.com>
AuthorDate: Wed Jul 18 21:19:59 2018 +0800

    Polish README.
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 6c8518b..8a41ea5 100644
--- a/README.md
+++ b/README.md
@@ -126,7 +126,7 @@ SeeĀ [CONTRIBUTING](https://github.com/apache/incubator-dubbo/blob/master/CONTRI
 
 ### How can I contribute?
 
-* Take a look at issues with tag called [`Good first issue`](https://github.com/apache/incubator-dubbo/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22).
+* Take a look at issues with tag called [`Good first issue`](https://github.com/apache/incubator-dubbo/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22) or [`Help wanted`](https://github.com/apache/incubator-dubbo/issues?q=is%3Aopen+is%3Aissue+label%3A%22help+wanted%22).
 * Join the discussion on mailing list, subscription [guide](https://github.com/apache/incubator-dubbo/wiki/Mailing-list-subscription-guide).
 * Answer questions on [issues](https://github.com/apache/incubator-dubbo/issues).
 * Fix bugs reported on [issues](https://github.com/apache/incubator-dubbo/issues), and send us pull request.