Merge branch 'stable-2.14' into stable-2.15

* stable-2.14:
  setup_gjf.sh: Add support for multiple version
  Set 2.13.12-SNAPSHOT in pom.xml and plugin documentation
  Clarify behavior of ownerin: and reviewerin: predicates
  AbstractElasticIndex: Open XContentBuilder in try-with-resource
  Docs: Clarify that for external groups the name in GroupInfo can be missing
  AccountGroupAuditLogScreen: Display group UUID if group name is missing
  GetAuditLog: Fix NPE if group UUID cannot be resolved
  Add ProjectCache.remove(Project.NameKey name) method
  Set version to 2.13.12-SNAPSHOT

Change-Id: I0f88a469f021abec24125cbb5c56415a26acb383
This commit is contained in:
David Pursehouse
2018-04-18 00:01:11 +02:00
4 changed files with 38 additions and 17 deletions

View File

@@ -748,6 +748,7 @@ public abstract class AbstractQueryChangesTest extends GerritServerTests {
assertQuery("ownerin:Administrators", change1);
assertQuery("ownerin:\"Registered Users\"", change2, change1);
assertQuery("ownerin:\"Registered Users\" project:repo", change3, change2, change1);
assertQuery("ownerin:\"Registered Users\" status:merged", change3);
}
@@ -1989,6 +1990,7 @@ public abstract class AbstractQueryChangesTest extends GerritServerTests {
gApi.changes().id(change2.getId().get()).current().submit();
assertQuery("reviewerin:" + group);
assertQuery("project:repo reviewerin:" + group, change2);
assertQuery("status:merged reviewerin:" + group, change2);
}