forked from taskadapter/redmine-java-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Release notes
Alexey edited this page May 10, 2013
·
16 revisions
Release notes.
- Bug fixed. Issue 88: "limit" parameter is ignored when calling getChildEntries()
- Build system: switched from Maven to Gradle. Maven's pom.xml file will be eventually deleted.
- New feature: Get journal details
- CRUD operations for user groups
- javadoc fixed
Tested with Redmine 2.2.0 and 2.3.0
- Support for date format used by Redmine 2.3.
- Add/Remove operations for Issue Watchers
- a few other bugfixes. see https://github.com/taskadapter/redmine-java-api/issues?milestone=10
Bug fixed:
- Authentication issue in some cases. https://github.com/taskadapter/redmine-java-api/pull/77
New Features:
- Issue #2 : load priorities list - requires Redmine 2.2.0+
New Features:
- Issue #53 , #36 add users To groups (Redmine 2.1.0+)
Bugs fixed:
- #64 Wrong attribute name in time entry serialization: "comment" instead of "comments"
- #54 JSONBuilder does not write all the values of a custom field when the field is a list.
- #55 testAttachmentUploads test fails with Redmine 2.1.0
Minor improvements:
- #63 Tracker doesn't implement Identifiable and Serializable
- No new functionality. Support for newer JSon library. See https://github.com/taskadapter/redmine-java-api/issues/47 for details.
- Support for invalid SSL certificates. Before this, the API would refuse to work with servers using self-signed certificates (which seems to be the absolute majority of all the SSL certificates in the world).
- Using SLF4J as a logging facility. You need to add some SLF4J binding to your project to control Redmine Java API logging. See http://www.slf4j.org/codes.html#StaticLoggerBinder
- Support for Redmine 2.0.2 (it's using a different date format from the one in Redmine 1.4.x)
- Package names were changed: "org.redmine.ta.*" -> "com.taskadapter.redmineapi". also "org.redmine.ta.beans" -> "com.taskadapter.redmineapi.bean". the old package names didn't make any sense. this project is not a part of "official" Redmine development.
- All changes in 1.12.0: https://github.com/taskadapter/redmine-java-api/issues?milestone=3&state=closed
- Replace "com.googlecode" Maven group Id with "com.taskadapter" in your Maven pom.xml file (if you use Maven to get Redmine Java API dependency).
<dependency>
<groupId>com.taskadapter</groupId>
<artifactId>redmine-java-api</artifactId>
<version>1.11.0</version>
</dependency>
- Replace AuthenticationException with RedmineSecurityException or its subclasses RedmineAuthenticationException, NotAuthorizedException