Skip to content

Commit

Permalink
Bump com.fasterxml.jackson.core:jackson-databind from 2.16.2 to 2.17.0 (
Browse files Browse the repository at this point in the history
#147)

* Bump com.fasterxml.jackson.core:jackson-databind from 2.16.2 to 2.17.0

Bumps [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson) from 2.16.2 to 2.17.0.
- [Commits](https://github.com/FasterXML/jackson/commits)

---
updated-dependencies:
- dependency-name: com.fasterxml.jackson.core:jackson-databind
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* Fix tests broken by new escaping changes in jackson

---------

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Rishi Baldawa <baldawar@amazon.com>
  • Loading branch information
dependabot[bot] and baldawar committed Apr 23, 2024
1 parent 48db0b0 commit 3f3614f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<properties>
<jdk.version>1.8</jdk.version>
<jackson.version>2.16.2</jackson.version>
<jackson.version>2.17.0</jackson.version>
<jsr.version>3.0.2</jsr.version>
<junit.version>4.13.2</junit.version>
<compiler.plugin.version>3.13.0</compiler.plugin.version>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -627,7 +627,7 @@ public void testWildcardInvalidEscapeCharacter() throws IOException {
fail("Expected JSONParseException");
} catch (JsonParseException e) {
assertEquals("Unrecognized character escape 'd' (code 100)\n" +
" at [Source: (String)\"{\"key\": [{\"wildcard\": \"a*c\\def\"}]}\"; line: 1, column: 29]",
" at [Source: (String)\"{\"key\": [{\"wildcard\": \"a*c\\def\"}]}\"; line: 1, column: 28]",
e.getMessage());
}
}
Expand Down
2 changes: 1 addition & 1 deletion src/test/software/amazon/event/ruler/RuleCompilerTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -579,7 +579,7 @@ public void testWildcardInvalidEscapeCharacter() throws IOException {
fail("Expected JSONParseException");
} catch (JsonParseException e) {
assertEquals("Unrecognized character escape 'd' (code 100)\n" +
" at [Source: (String)\"{\"key\": [{\"wildcard\": \"a*c\\def\"}]}\"; line: 1, column: 29]",
" at [Source: (String)\"{\"key\": [{\"wildcard\": \"a*c\\def\"}]}\"; line: 1, column: 28]",
e.getMessage());
}
}
Expand Down

0 comments on commit 3f3614f

Please sign in to comment.