diff options
author | James Moger <james.moger@gitblit.com> | 2013-01-15 22:48:58 -0500 |
---|---|---|
committer | James Moger <james.moger@gitblit.com> | 2013-01-15 22:48:58 -0500 |
commit | 4bef084c6396cb9d73479d4934012fb9c6b9e831 (patch) | |
tree | 42ab6dc26768e9637b255be803b0572d4a9aa921 | |
parent | 93d506581010cdb6308ae3d282a8bc513966d70d (diff) | |
download | gitblit-4bef084c6396cb9d73479d4934012fb9c6b9e831.tar.gz gitblit-4bef084c6396cb9d73479d4934012fb9c6b9e831.zip |
Include missing model classes in api library (issue-184)
-rw-r--r-- | build.xml | 3 | ||||
-rw-r--r-- | docs/04_releases.mkd | 1 |
2 files changed, 4 insertions, 0 deletions
@@ -926,6 +926,9 @@ <genjar jarfile="${project.target.dir}/gbapi-${gb.version}.jar">
<class name="com.gitblit.Keys" />
<class name="com.gitblit.client.GitblitClient" />
+ <class name="com.gitblit.models.FederationModel" />
+ <class name="com.gitblit.models.FederationProposal" />
+ <class name="com.gitblit.models.FederationSet" />
<classpath refid="master-classpath" />
<classfilter>
<exclude name="com.google.gson." />
diff --git a/docs/04_releases.mkd b/docs/04_releases.mkd index a76e3c79..ea71d413 100644 --- a/docs/04_releases.mkd +++ b/docs/04_releases.mkd @@ -18,6 +18,7 @@ Because there are now several types of files and folders that must be considered - Added nullchecking when concurrently forking a repository and trying to display it's fork network (issue-187)
- Fixed bug where permission changes were not visible in the web ui to a logged-in user until the user logged-out and then logged back in again (issue-186)
- Fixed nullpointer on creating a repository with mixed case (issue 185)
+- Include missing model classes in api library (issue-184)
- Fixed nullpointer when using *web.allowForking = true* && *git.cacheRepositoryList = false* (issue 182)
- Likely fix for commit and commitdiff page failures when a submodule reference changes (issue 178)
- Build project models from the repository model cache, when possible, to reduce page load time (issue 172)
|