From 877be9476e7f5ee8850be4d06a5282a6a66a6193 Mon Sep 17 00:00:00 2001 From: xerial-bot Date: Fri, 20 Oct 2023 21:33:14 -0700 Subject: [PATCH] Update trino-main to 430 (#3252) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit ## About this PR 📦 Updates [io.trino:trino-main](https://github.com/trinodb/trino) from `429` to `430` 📜 [GitHub Release Notes](https://github.com/trinodb/trino/releases/tag/430) - [Version Diff](https://github.com/trinodb/trino/compare/429...430) ## 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!_
🔍 Files still referring to the old version number The following files still refer to the old version number (429). You might want to review and update them manually. ``` airframe-benchmark/src/main/resources/twitter.json airframe-http/.jvm/src/test/scala/wvlet/airframe/http/HttpClientTest.scala airframe-http/src/main/scala/wvlet/airframe/http/GrpcStatus.scala airframe-http/src/main/scala/wvlet/airframe/http/HttpClientException.scala airframe-http/src/main/scala/wvlet/airframe/http/HttpStatus.scala airframe-http/src/main/scala/wvlet/airframe/http/RPCStatus.scala airframe-http/src/main/scala/wvlet/airframe/http/RPCStatusType.scala airframe-http/src/test/scala/wvlet/airframe/http/GrpcStatusTest.scala airframe-json/src/test/resources/twitter.json airframe-sql/src/test/resources/wvlet/airframe/sql/tpc-ds/q8.sql docs/airframe-rpc.md docs/release-notes.md website/static/img/features/Fluentd_square.svg website/static/img/features/undraw_online_transactions_02ka.svg website/static/img/features/undraw_process_e90d.svg website/static/img/features/undraw_server_down_s4lk.svg website/static/img/undraw_code_review.svg website/static/img/undraw_online.svg website/static/img/undraw_open_source.svg ```
⚙ Adjust future updates Add this to your `.scala-steward.conf` file to ignore future updates of this dependency: ``` updates.ignore = [ { groupId = "io.trino", artifactId = "trino-main" } ] ``` Or, add this to slow down future updates of this dependency: ``` dependencyOverrides = [{ pullRequests = { frequency = "30 days" }, dependency = { groupId = "io.trino", artifactId = "trino-main" } }] ```
labels: test-library-update --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 50a3d36ba9..a17bd794e2 100644 --- a/build.sbt +++ b/build.sbt @@ -882,7 +882,7 @@ def sqlRefLib = { scalaVersion: String => // Include Spark just as a reference implementation "org.apache.spark" %% "spark-sql" % "3.5.0" % Test, // Include Trino as a reference implementation - "io.trino" % "trino-main" % "429" % Test + "io.trino" % "trino-main" % "430" % Test ) } else { Seq.empty