Skip to content
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

[DCJ-400-gradle]: Bump the minor-patch-dependencies group across 1 directory with 8 updates #1769

Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Downgrade swagger codegen 3.0.60 -> 3.0.56
Instruct Dependabot to ignore 3.0.x changes in the hopes that the next minor or major version upgrade might include a fix to the logged issue.
  • Loading branch information
okotsopoulos committed Aug 8, 2024
commit d3fd4b13f0226a9d2400cecf7315ed430bed1545
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -41,3 +41,9 @@ updates:
# (outside of semver major, minor, and patch designations) and will attempt to update
# to the latest published version.
- dependency-name: "io.kubernetes:client-java"
# Version 3.0.57 of the Swagger codegen plugin pulls in the newest version of the Java
# generator which adds @NotNull unless nullable is set to true in the Swagger spec, even if
# the field is not required.
# Issue: https://github.com/swagger-api/swagger-codegen-generators/issues/1295
- dependency-name: "io.swagger.codegen.v3:swagger-codegen*"
update-types: [ "3.0.x" ]
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath('io.swagger.codegen.v3:swagger-codegen:3.0.60')
classpath('io.swagger.codegen.v3:swagger-codegen:3.0.56')
// Required for gradle liquibase plugin
classpath ('org.liquibase:liquibase-core:4.29.1')
}
@@ -61,7 +61,7 @@ allprojects {
}
dependencies {
dependency 'io.swagger.core.v3:swagger-annotations:2.2.22'
dependency 'io.swagger.codegen.v3:swagger-codegen-cli:3.0.60'
dependency 'io.swagger.codegen.v3:swagger-codegen-cli:3.0.56'
}
}
}
Loading