From 792889a9287e24d1b642bfb21de79d47e1ce18e6 Mon Sep 17 00:00:00 2001 From: "A. G." Date: Sun, 23 Jun 2024 17:10:12 +0100 Subject: [PATCH] update to SFDC API v61 --- build.sbt | 5 +++-- src/main/scala/com/neowit/apex/AppVersion.scala | 4 ++-- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/build.sbt b/build.sbt index 6533dbc..3cd47d0 100644 --- a/build.sbt +++ b/build.sbt @@ -37,9 +37,10 @@ resolvers ++= Seq( "Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/" ) -val sfdcAPIVersion = "58.0.0" +val sfdcAPIVersion = "61.1.0" +//see: https://central.sonatype.com/namespace/com.force.api libraryDependencies ++= Seq( - "com.force.api" % "force-wsc" % "58.0.0", + "com.force.api" % "force-wsc" % "61.1.0", "com.force.api" % "force-partner-api" % sfdcAPIVersion, "com.force.api" % "force-metadata-api" % sfdcAPIVersion, "com.force.api" % "force-apex-api" % sfdcAPIVersion diff --git a/src/main/scala/com/neowit/apex/AppVersion.scala b/src/main/scala/com/neowit/apex/AppVersion.scala index 5813b6b..f1f1b82 100644 --- a/src/main/scala/com/neowit/apex/AppVersion.scala +++ b/src/main/scala/com/neowit/apex/AppVersion.scala @@ -26,8 +26,8 @@ import scala.concurrent.{ExecutionContext, Future} object AppVersion { val APP_NAME = "tooling-force.com" - val VERSION = "0.5.8.1" - val SFDC_API_VERSION:Double = 58.0 + val VERSION = "0.6.1.0" + val SFDC_API_VERSION:Double = 61.0 } class AppVersion extends ApexAction { protected override def act()(implicit ec: ExecutionContext): Future[ActionResult] = {