pivotal-cf / java-cfenv

Apache License 2.0
91 stars 56 forks source link

Bump com.cedarsoftware:json-io from 4.19.1 to 4.19.5 #257

Closed dependabot[bot] closed 3 months ago

dependabot[bot] commented 3 months ago

Bumps com.cedarsoftware:json-io from 4.19.1 to 4.19.5.

Changelog

Sourced from com.cedarsoftware:json-io's changelog.

  • 4.19.5
    • Updated JsonReader for backwards compatibility by adding jsonToJava(), jsonToMaps(), jsonObjectsToJava() static APIs.
  • 4.19.4
    • In ReadOptionsBuilder and WriteOptionsBuilder, when loading dynamic items (class names, aliases, etc.) from resources, output warnings as opposed to throwing exceptions.
  • 4.19.3
    • Remove ReflectionUtils from json-io as it is part of java-util.
    • Updated java-util from 2.4.4 to 2.4.5.
  • 4.19.2
    • Moved more settings/properties from source code to resource files.

      Example changes required due to this update: Before

      A. Employee e = (Employee) JsonReader.jsonObjectsToJava(JsonObject employee, readOptions)
      

      After

      A. Employee e = JsonIo.toObjects(JsonObject, readOptions, Employee.class)
      
Commits
  • fafb7fc Updated JsonReader for backwards compatibility by adding `jsonToJava(), jso...
  • 6d40e01 Merge pull request #272 from jdereg/converter-based
  • 502654b In ReadOptionsBuilder and WriteOptionsBuilder, when loading dynamic items...
  • 2cb43ea In ReadOptionsBuilder and WriteOptionsBuilder, when loading dynamic items...
  • cc16949 Merge pull request #271 from jdereg/converter-based
  • ef551f6 Merge branch 'master' into converter-based
  • b359199 Removed ReflectionUtils from json-io as it exists in java-util
  • 09eed28 updated changelog and readme
  • e0d46be updated version number
  • 21d1b5f Updated to use java-util 2.4.3
  • Additional commits viewable in compare view


Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
dependabot[bot] commented 3 months ago

Superseded by #258.