Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: auth0/auth0-java
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 1.14.0
Choose a base ref
...
head repository: auth0/auth0-java
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 1.14.1
Choose a head ref
  • 4 commits
  • 3 files changed
  • 2 contributors

Commits on Jul 2, 2019

  1. Merge pull request #216 from auth0/perform-release

    Release 1.14.0
    lbalmaceda authored Jul 2, 2019

    Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    f31d4ea View commit details

Commits on Jul 3, 2019

  1. Copy the full SHA
    a42acad View commit details
  2. Merge pull request #217 from jimmyjames/bump-jackson-dep

    Update jackson-databind dependency to fix security vulnerability
    jimmyjames authored Jul 3, 2019
    Copy the full SHA
    9ad7023 View commit details
  3. Release 1.14.1

    jimmyjames committed Jul 3, 2019
    Copy the full SHA
    1882751 View commit details
Showing with 9 additions and 3 deletions.
  1. +6 −0 CHANGELOG.md
  2. +2 −2 README.md
  3. +1 −1 build.gradle
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Change Log

## [1.14.1](https://github.com/auth0/auth0-java/tree/1.14.1) (2019-07-03)
[Full Changelog](https://github.com/auth0/auth0-java/compare/1.14.0...1.14.1)

**Security**
- Update jackson-databind dependency to fix security vulnerability [\#217](https://github.com/auth0/auth0-java/pull/217) ([jimmyjames](https://github.com/jimmyjames))

## [1.14.0](https://github.com/auth0/auth0-java/tree/1.14.0) (2019-07-02)
[Full Changelog](https://github.com/auth0/auth0-java/compare/1.13.3...1.14.0)

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -16,14 +16,14 @@ Get Auth0 Java via Maven:
<dependency>
<groupId>com.auth0</groupId>
<artifactId>auth0</artifactId>
<version>1.14.0</version>
<version>1.14.1</version>
</dependency>
```

or Gradle:

```gradle
implementation 'com.auth0:auth0:1.14.0'
implementation 'com.auth0:auth0:1.14.1'
```


2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -62,7 +62,7 @@ test {
dependencies {
implementation 'com.squareup.okhttp3:okhttp:3.9.1'
implementation 'com.squareup.okhttp3:logging-interceptor:3.9.1'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.9.9'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.9.9.1'
implementation 'commons-codec:commons-codec:1.11'

testImplementation 'org.mockito:mockito-core:2.18.3'