Skip to content
GitLab
    • Explore Projects Groups Snippets
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • O openapi-generator
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 3,476
    • Issues 3,476
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 402
    • Merge requests 402
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Package Registry
    • Infrastructure Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • OpenAPI Tools
  • openapi-generator
  • Merge requests
  • !12698

Update jackson databind to 2.12.6.1

  • Review changes

  • Download
  • Email patches
  • Plain diff
Merged William Cheng requested to merge update-databind3 into master 3 years ago
  • Overview 0
  • Commits 4
  • Pipelines 0
  • Changes 45

PR checklist

  • Read the contribution guidelines.
  • Pull Request title clearly describes the work in the pull request and Pull Request description provides details about how to validate the work. Missing information here may result in delayed response from the community.
  • Run the following to build the project and update samples:
    ./mvnw clean package 
    ./bin/generate-samples.sh
    ./bin/utils/export_docs_generators.sh
    Commit all changed files. This is important, as CI jobs will verify all generator outputs of your HEAD commit as it would merge with master. These must match the expectations made by your contribution. You may regenerate an individual generator by passing the relevant config(s) as an argument to the script, for example ./bin/generate-samples.sh bin/configs/java*. For Windows users, please run the script in Git BASH.
  • File the PR against the correct branch: master (6.0.1) (patch release), 6.1.x (breaking changes with fallbacks), 7.0.x (breaking changes without fallbacks)
  • If your PR is targeting a particular programming language, @mention the technical committee members, so they are more likely to review the pull request.

cc @bbdouglas (2017/07) @sreeshas (2017/08) @jfiala (2017/08) @lukoyanov (2017/09) @cbornet (2017/09) @jeff9finger (2018/01) @karismann (2019/03) @Zomzog (2019/04) @lwlee2608 (2019/10)

Compare
  • master (base)

and
  • latest version
    5c49533b
    4 commits, 2 years ago

45 files
+ 83
- 79

    Preferences

    File browser
    Compare changes
modules/…/…/…‎/…/…/libraries‎
fe‎ign‎
build.grad‎le.mustache‎ +2 -2
build.sbt‎.mustache‎ +3 -3
pom.mu‎stache‎ +2 -2
google-a‎pi-client‎
build.grad‎le.mustache‎ +1 -1
build.sbt‎.mustache‎ +2 -2
pom.mu‎stache‎ +3 -3
rest-a‎ssured‎
build.grad‎le.mustache‎ +2 -2
build.sbt‎.mustache‎ +6 -6
pom.mu‎stache‎ +2 -1
rest‎easy‎
build.grad‎le.mustache‎ +1 -1
build.sbt‎.mustache‎ +1 -1
pom.mu‎stache‎ +1 -1
restte‎mplate‎
build.grad‎le.mustache‎ +1 -1
pom.mu‎stache‎ +1 -1
retr‎ofit2‎
build.grad‎le.mustache‎ +2 -2
build.sbt‎.mustache‎ +3 -3
pom.mu‎stache‎ +2 -1
ve‎rtx‎
build.grad‎le.mustache‎ +1 -1
pom.mu‎stache‎ +1 -1
samples/client‎/petstore/java‎
fe‎ign‎
build.‎gradle‎ +2 -2
buil‎d.sbt‎ +3 -3
pom‎.xml‎ +2 -2
feign-no‎-nullable‎
build.‎gradle‎ +2 -2
buil‎d.sbt‎ +3 -3
pom‎.xml‎ +2 -2
google-a‎pi-client‎
build.‎gradle‎ +1 -1
buil‎d.sbt‎ +2 -2
pom‎.xml‎ +3 -3
rest-assur‎ed-jackson‎
build.‎gradle‎ +2 -2
buil‎d.sbt‎ +4 -4
pom‎.xml‎ +2 -1
rest‎easy‎
build.‎gradle‎ +1 -1
buil‎d.sbt‎ +1 -1
pom‎.xml‎ +1 -1
restte‎mplate‎
build.‎gradle‎ +1 -1
pom‎.xml‎ +1 -1
resttempla‎te-withXml‎
build.‎gradle‎ +1 -1
pom‎.xml‎ +1 -1
retrofit‎2-play26‎
build.‎gradle‎ +2 -2
buil‎d.sbt‎ +3 -3
pom‎.xml‎ +2 -1
ve‎rtx‎
build.‎gradle‎ +1 -1
pom‎.xml‎ +1 -1
vertx-no‎-nullable‎
build.‎gradle‎ +1 -1
pom‎.xml‎ +1 -1
modules/openapi-generator/src/main/resources/Java/libraries/feign/build.gradle.mustache
+ 2
- 2
  • View file @ 5c49533b

  • Edit in single-file editor

  • Open in Web IDE


@@ -102,8 +102,8 @@ test {
ext {
swagger_annotations_version = "1.5.24"
jackson_version = "2.10.3"
jackson_databind_version = "2.10.3"
jackson_version = "2.12.6.1"
jackson_databind_version = "2.12.6.1"
{{#openApiNullable}}
jackson_databind_nullable_version = "0.2.3"
{{/openApiNullable}}
modules/openapi-generator/src/main/resources/Java/libraries/feign/build.sbt.mustache
+ 3
- 3
  • View file @ 5c49533b

  • Edit in single-file editor

  • Open in Web IDE


@@ -16,9 +16,9 @@ lazy val root = (project in file(".")).
"io.github.openfeign" % "feign-slf4j" % "10.11" % "compile",
"io.github.openfeign.form" % "feign-form" % "3.8.0" % "compile",
"io.github.openfeign" % "feign-okhttp" % "10.11" % "compile",
"com.fasterxml.jackson.core" % "jackson-core" % "2.10.3" % "compile",
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.10.3" % "compile",
"com.fasterxml.jackson.core" % "jackson-databind" % "2.10.3" % "compile",
"com.fasterxml.jackson.core" % "jackson-core" % "2.12.6.1" % "compile",
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.12.6.1" % "compile",
"com.fasterxml.jackson.core" % "jackson-databind" % "2.12.6.1" % "compile",
"com.fasterxml.jackson.datatype" % "jackson-datatype-jsr310" % "2.9.10" % "compile",
"com.github.joschi.jackson" % "jackson-datatype-threetenbp" % "2.9.10" % "compile",
"com.github.scribejava" % "scribejava-core" % "8.0.0" % "compile",
modules/openapi-generator/src/main/resources/Java/libraries/feign/pom.mustache
+ 2
- 2
  • View file @ 5c49533b

  • Edit in single-file editor

  • Open in Web IDE


@@ -354,11 +354,11 @@
<swagger-annotations-version>1.5.24</swagger-annotations-version>
<feign-version>10.11</feign-version>
<feign-form-version>3.8.0</feign-form-version>
<jackson-version>2.10.3</jackson-version>
<jackson-version>2.12.5</jackson-version>
{{#openApiNullable}}
<jackson-databind-nullable-version>0.2.3</jackson-databind-nullable-version>
{{/openApiNullable}}
<jackson-databind-version>2.10.3</jackson-databind-version>
<jackson-databind-version>2.12.6.1</jackson-databind-version>
<jakarta-annotation-version>1.3.5</jakarta-annotation-version>
<junit-version>5.7.0</junit-version>
<maven-plugin-version>1.0.0</maven-plugin-version>
modules/openapi-generator/src/main/resources/Java/libraries/google-api-client/build.gradle.mustache
+ 1
- 1
  • View file @ 5c49533b

  • Edit in single-file editor

  • Open in Web IDE


@@ -99,7 +99,7 @@ if(hasProperty('target') && target == 'android') {
ext {
swagger_annotations_version = "1.6.3"
jackson_version = "2.12.5"
jackson_databind_version = "2.10.5.1"
jackson_databind_version = "2.12.6.1"
{{#openApiNullable}}
jackson_databind_nullable_version = "0.2.3"
{{/openApiNullable}}
modules/openapi-generator/src/main/resources/Java/libraries/google-api-client/build.sbt.mustache
+ 2
- 2
  • View file @ 5c49533b

  • Edit in single-file editor

  • Open in Web IDE


@@ -12,9 +12,9 @@ lazy val root = (project in file(".")).
"io.swagger" % "swagger-annotations" % "1.5.22",
"com.google.api-client" % "google-api-client" % "1.23.0",
"org.glassfish.jersey.core" % "jersey-common" % "2.25.1",
"com.fasterxml.jackson.core" % "jackson-core" % "2.12.1" % "compile",
"com.fasterxml.jackson.core" % "jackson-core" % "2.12.6.1" % "compile",
"com.fasterxml.jackson.core" % "jackson-annotations" % "2.10.1" % "compile",
"com.fasterxml.jackson.core" % "jackson-databind" % "2.10.5.1" % "compile",
"com.fasterxml.jackson.core" % "jackson-databind" % "2.12.6.1" % "compile",
{{#withXml}}
"com.fasterxml.jackson.dataformat" % "jackson-dataformat-xml" % "2.9.10" % "compile",
{{/withXml}}
0 Assignees
None
Assign to
0 Reviewers
Request review from
Labels
0
None
0
None
    Assign labels
  • Manage project labels

Milestone
No milestone
None
None
Time tracking
Lock merge request
Unlocked
0
0 participants
Reference:
Source branch: update-databind3

Menu

Explore Projects Groups Snippets