From 597543cea0575a32adf27048b64097377f8de605 Mon Sep 17 00:00:00 2001 From: Jim Anderson Date: Fri, 24 Apr 2020 13:55:55 -0500 Subject: [PATCH] Release 1.16.0 (#251) --- CHANGELOG.md | 21 +++++++++++++++++++++ README.md | 4 ++-- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 045915e8..3ff14aa6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,26 @@ # Change Log +## [1.16.0](https://github.com/auth0/auth0-java/tree/1.16.0) (2020-04-24) +[Full Changelog](https://github.com/auth0/auth0-java/compare/1.15.0...1.16.0) + +**Added** +- Add Job "POST User Imports" endpoint [\#249](https://github.com/auth0/auth0-java/pull/249) ([lbalmaceda](https://github.com/lbalmaceda)) +- Add a new class to handle Multipart requests [\#248](https://github.com/auth0/auth0-java/pull/248) ([lbalmaceda](https://github.com/lbalmaceda)) +- Add Job "GET Status" endpoint [\#247](https://github.com/auth0/auth0-java/pull/247) ([lbalmaceda](https://github.com/lbalmaceda)) +- Add missing "initiate_login_uri" property to Client [\#244](https://github.com/auth0/auth0-java/pull/244) ([lbalmaceda](https://github.com/lbalmaceda)) +- Use char array for passwords [\#242](https://github.com/auth0/auth0-java/pull/242) ([jimmyjames](https://github.com/jimmyjames)) +- Add Job "POST User Exports" endpoint [\#241](https://github.com/auth0/auth0-java/pull/241) ([lbalmaceda](https://github.com/lbalmaceda)) +- Add Rules Configs entity [\#240](https://github.com/auth0/auth0-java/pull/240) ([lbalmaceda](https://github.com/lbalmaceda)) + +**Deprecated** +- deprecated string password APIs [\#243](https://github.com/auth0/auth0-java/pull/243) ([jimmyjames](https://github.com/jimmyjames)) + +**Fixed** +- Make CreatedUser take the id from different properties [\#245](https://github.com/auth0/auth0-java/pull/245) ([lbalmaceda](https://github.com/lbalmaceda)) + +**Security** +- Use char array for passwords [\#242](https://github.com/auth0/auth0-java/pull/242) ([jimmyjames](https://github.com/jimmyjames)) + ## [1.15.0](https://github.com/auth0/auth0-java/tree/1.15.0) (2019-11-12) [Full Changelog](https://github.com/auth0/auth0-java/compare/1.14.3...1.15.0) diff --git a/README.md b/README.md index 5d3e3439..0dbe8a12 100644 --- a/README.md +++ b/README.md @@ -16,14 +16,14 @@ Get Auth0 Java via Maven: com.auth0 auth0 - 1.15.0 + 1.16.0 ``` or Gradle: ```gradle -implementation 'com.auth0:auth0:1.15.0' +implementation 'com.auth0:auth0:1.16.0' ```