Releases: damnhandy/Handy-URI-Templates
v2.1.8
This is a minor release that verifies that the code is functional with Java 11. Also updated some dependencies to resolve some CVE's.
Gradle Users:
implementation 'com.damnhandy:handy-uri-templates:2.1.8'
Maven Users:
<dependency>
<groupId>com.damnhandy</groupId>
<artifactId>handy-uri-templates</artifactId>
<version>2.1.8</version>
</dependency>
v2.1.7
This is a minor release that verifies that the code is functional with Java 9 and 10. This release includes some minor JavaDocs issues and addresses some Spotbugs issues.
<dependency>
<groupId>com.damnhandy</groupId>
<artifactId>handy-uri-templates</artifactId>
<version>2.1.7</version>
</dependency>
v2.1.6
v2.1.5
v2.1.4
v2.1.3
v2.1.2
Fixed a number of issues around the stability of the UriTemplateBuilder
and significantly improved test coverage. Details here:
https://github.com/damnhandy/Handy-URI-Templates/issues?q=milestone%3A2.1.2+is%3Aclosed
v2.1.1
Fixes issue #38 when an underscore is included in a template variable when using the UriTemplateBuilder
Hat tip to @petejohanson for the PR
http://search.maven.org/#artifactdetails%7Ccom.damnhandy%7Chandy-uri-templates%7C2.1.1%7C
v2.1.0
Fixes the following issues:
- #26 Some issues with custom VarExpander
- #30 Replace SimpleDateFormat with Joda Time to Improve Performance
- #34 Seems to be an issue with expanding UUID value
- #35 Expanding enums
Please note that the changes for Issue #26 have removed the use of the java.beans.*
package and have been replaced by a custom implementation. This was necessary in order for this library to function on Android. As a result, behavior may differ slightly. Please file an issue something isn't working out for you.