-
Notifications
You must be signed in to change notification settings - Fork 27
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
CORE-12539 - Update to latest version of jackson and mockito #3702
CORE-12539 - Update to latest version of jackson and mockito #3702
Conversation
…ransitive dependency and is not a valid OSGi bundle.
…ransitive dependency and is not a valid OSGi bundle.
This is triggered by an Jackson update. See FasterXML/jackson-modules-java8#204 and FasterXML/jackson-modules-java8#267
@@ -360,7 +365,7 @@ class RestServerRequestsTest : RestServerTestBase() { | |||
val timeCallResponse = client.call(POST, WebRequest<Any>("health/timecall", """ { "time": { "time": "$time" } } """), userName, password) | |||
|
|||
assertEquals(HttpStatus.SC_OK, timeCallResponse.responseStatus) | |||
assertEquals("2020-01-01T11:00Z[UTC]", timeCallResponse.body) | |||
assertEquals("2020-01-01T11:00Z", timeCallResponse.body) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This change is triggered by an Jackson update. See FasterXML/jackson-modules-java8#204 and FasterXML/jackson-modules-java8#267
I think this change is ok as the new format is ISO-8601 compatible.
@mnesbit , do you agree this change is ok?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yes it is fine and indeed probably more canonical
Jenkins build for PR 3702 build 4 Build Successful: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
OK
@@ -56,7 +56,7 @@ felixSecurityVersion=2.8.3 | |||
guavaVersion=30.1.1-jre | |||
hibernateVersion=5.6.15.Final | |||
hikariCpVersion=5.0.1 | |||
jacksonVersion=2.14.2 | |||
jacksonVersion=2.15.0 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Probably as a separate PR, but it would be worth upgrading SnakeYaml version to eliminate reported C1 vulnerability.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
No description provided.