from pull-request 1425
* refs/heads/issue-1981:
Renamed _onChangeBranch to _checkMergeResult
Fixed to check state for only open pull-request
Reviewed-by: 이응준
* Issue
When one user is not a project member and manager and is a group member or manager, `Assign to me` and `Create by me` do not work. Because current user is not listed on assignee's and author's combo box.
* Solution
Current user will be listed on assignee's and author's combo box.
Private-issue: 1849
* Yobi users who upgraded to Play 2.3.x will have a problem when running the Yobi with a bug
which is originated from H2 1.3.175v (https://code.google.com/p/h2database/issues/detail?id=543)
* Added H2's the latest version 1.4.184 to build.sbt,
and It works well without editing PlayFramework modules's dependency files.
* As the latest version of H2 suggests, you may have to update application.conf's 'db.default.url' value
to not to use implicit relative path.
* If you use implicit relative path, then you have to change it to use explicite relative path like this:
jdbc:h2:file:yobi;MODE=PostgreSQL -> jdbc:h2:file:~/yobi;MODE=PostgreSQL
'@' character in email address causes an exception. This bug is same
with the bug fixed by 117d9e8.
This bug is reported from https://github.com/naver/yobi/issues/836
CallAction should be called after the app starts.
This test seems to be broken since we start to use play-2.3. I wonder
why this test passed when we used play-2.1.
* ArrayIndexOutOfBoundsException can be occurred if a user's notifications are smaller then
the size of notifications to get.
* This prevents the exception and the user will not see error page.
from pull-request 1377
* refs/heads/upgrade/play-2.3:
Upgrade Play from 2.2.6 to 2.3.6
ProjectApp: Fix the incorrect status code for label
test: Fix url encoding bug
test: Fix RuntimeExceptions
Upgrade Play from 2.1.0 to 2.2.6
Reviewed-by: 이희구