Skip to content

Releases: damnhandy/Handy-URI-Templates

v2.1.8

26 May 01:41
Compare
Choose a tag to compare

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

10 Jun 21:43
Compare
Choose a tag to compare

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

03 Jul 14:25
Compare
Choose a tag to compare

Added fixes for issues #51 and #52. Update your pom.xml to

<dependency>
  <groupId>com.damnhandy</groupId>
  <artifactId>handy-uri-templates</artifactId>
  <version>2.1.6</version>
</dependency>

v2.1.5

19 Apr 02:15
Compare
Choose a tag to compare

Adds support for arrays and lists in POJOs with the explode modifier (see issue #27)

Cleaned up how arrays and lists are rendered (#50) instead of relying on toString()

v2.1.4

05 Feb 12:41
Compare
Choose a tag to compare

Fixes issue #49 and adds some code quality improvements

v2.1.3

17 Dec 21:45
Compare
Choose a tag to compare

Includes enhancements from pull request #45 and #43

v2.1.2

15 Nov 03:30
Compare
Choose a tag to compare

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

13 Nov 12:20
Compare
Choose a tag to compare

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

08 Nov 20:48
Compare
Choose a tag to compare

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.