From d91956050edb39fcbb9437cd88c3a1464b864251 Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Tue, 17 Oct 2023 05:37:12 -0700 Subject: [PATCH] Update swagger-parser to 2.1.18 (#3249) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates [io.swagger.parser.v3:swagger-parser](https://github.com/swagger-api/swagger-parser) from `2.1.16` to `2.1.18` 📜 [GitHub Release Notes](https://github.com/swagger-api/swagger-parser/releases/tag/v2.1.18) - [Version Diff](https://github.com/swagger-api/swagger-parser/compare/v2.1.16...v2.1.18) ## Usage ✅ **Please merge!** I'll automatically update this PR to resolve conflicts as long as you don't change it yourself. If you'd like to skip this version, you can just close this PR. If you have any feedback, just mention me in the comments below. Configure Scala Steward for your repository with a [`.scala-steward.conf`](https://github.com/scala-steward-org/scala-steward/blob/b83aae55d9dd000548c3b3c9b63d79636e7b3c8b/docs/repo-specific-configuration.md) file. _Have a fantastic day writing Scala!_
âš™ Adjust future updates Add this to your `.scala-steward.conf` file to ignore future updates of this dependency: ``` updates.ignore = [ { groupId = "io.swagger.parser.v3", artifactId = "swagger-parser" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "io.swagger.parser.v3", artifactId = "swagger-parser" } }] ```
labels: test-library-update --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 06ea35b923..1305b75bdf 100644 --- a/build.sbt +++ b/build.sbt @@ -711,7 +711,7 @@ lazy val httpCodeGen = packExcludeLibJars := Seq("airspec_2.12", "airspec_2.13", "airspec_3"), libraryDependencies ++= Seq( // Use swagger-parser only for validating YAML format in tests - "io.swagger.parser.v3" % "swagger-parser" % "2.1.16" % Test, + "io.swagger.parser.v3" % "swagger-parser" % "2.1.18" % Test, // Swagger includes dependency to SLF4J, so redirect slf4j logs to airframe-log "org.slf4j" % "slf4j-jdk14" % SLF4J_VERSION % Test, // For gRPC route scanner test