From 7ad2e0d72ed81c6ba97c3056f429ce61a5c3840f Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Tue, 7 Nov 2023 20:29:38 +0100 Subject: [PATCH 01/12] Gather information about used build tool --- .github/actions/build-project/action.yaml | 9 ++++++++- project-builder/build-revision.sh | 4 ++++ project-builder/feed-elastic.sh | 6 ++++-- 3 files changed, 16 insertions(+), 3 deletions(-) diff --git a/.github/actions/build-project/action.yaml b/.github/actions/build-project/action.yaml index d2d8b21b..3871ec6a 100644 --- a/.github/actions/build-project/action.yaml +++ b/.github/actions/build-project/action.yaml @@ -43,6 +43,10 @@ runs: ConfigFile=".github/workflows/buildConfig.json" DefaultJDK=11 javaVersion=$(jq -r ".\"${{ inputs.project-name }}\".config.java.version // ${DefaultJDK}" $ConfigFile) + if [[ $javaVersion -ge 21 && ! "$scalaVersion" = 3.3.* ]]; then + echo "Force Java 17, Java 21 is only supported since 3.3.x" + javaVersion=17 + fi echo "java-version=$javaVersion" >> $GITHUB_ENV echo "JavaVersion set to $javaVersion" @@ -119,6 +123,7 @@ runs: touch build-logs.txt build-summary.txt # Assume failure unless overwritten by a successful build echo 'failure' > build-status.txt + echo 'unknown' > build-tool.txt /build/build-revision.sh \ "$(config .project)" \ @@ -137,6 +142,7 @@ runs: mv build-logs.txt /opencb/ mv build-status.txt /opencb/ mv build-summary.txt /opencb/ + mv build-tool.txt /opencb/ - name: Check status id: check-status @@ -211,7 +217,8 @@ runs: "$(config .version)" \ "${{ inputs.scala-version }}" \ "${{ github.run_id }}" \ - "${{ steps.job-info.outputs.build-url }}" + "${{ steps.job-info.outputs.build-url }}" \ + "$(cat build-tool.txt)" if [ $? != 0 ]; then echo "::warning title=Indexing failure::Indexing results of ${{ inputs.project-name }} failed" fi diff --git a/project-builder/build-revision.sh b/project-builder/build-revision.sh index 1f789b56..5467ba41 100755 --- a/project-builder/build-revision.sh +++ b/project-builder/build-revision.sh @@ -22,19 +22,23 @@ scriptDir="$(cd "$(dirname "${BASH_SOURCE[0]}")" &>/dev/null && pwd)" export OPENCB_SCRIPT_DIR=$scriptDir $scriptDir/checkout.sh "$repoUrl" "$rev" repo +buildToolFile="build-tool.txt" if [ -f "repo/mill" ] || [ -f "repo/build.sc" ]; then echo "Mill project found: ${isMillProject}" + echo "mill" > $buildToolFile $scriptDir/mill/prepare-project.sh "$project" repo "$scalaVersion" "$version" "$projectConfig" $scriptDir/mill/build.sh repo "$scalaVersion" "$version" "$targets" "$mvnRepoUrl" "$projectConfig" "$extraScalacOptions" "$disabledScalacOption" elif [ -f "repo/build.sbt" ]; then echo "sbt project found: ${isSbtProject}" + echo "sbt" > $buildToolFile $scriptDir/sbt/prepare-project.sh "$project" repo "$enforcedSbtVersion" "$scalaVersion" "$projectConfig" $scriptDir/sbt/build.sh repo "$scalaVersion" "$version" "$targets" "$mvnRepoUrl" "$projectConfig" "$extraScalacOptions" "$disabledScalacOption" else echo "Not found sbt or mill build files, assuming scala-cli project" ls -l repo/ + echo "scala-cli" > $buildToolFile scala-cli clean $scriptDir/scala-cli/ scala-cli clean repo scala-cli $scriptDir/scala-cli/build.scala -- repo "$scalaVersion" "$projectConfig" "$mvnRepoUrl" diff --git a/project-builder/feed-elastic.sh b/project-builder/feed-elastic.sh index a8505500..9467c2b2 100755 --- a/project-builder/feed-elastic.sh +++ b/project-builder/feed-elastic.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -e -if [ $# -ne 10 ]; then +if [ $# -ne 11 ]; then echo "Wrong number of script arguments, got $#, expected 7" exit 1 fi @@ -16,6 +16,7 @@ version="$7" scalaVersion="$8" buildId="$9" buildUrl="${10}" +buildTool="${11}" buildSummary="$(cat ${buildSummaryFile})" if [[ -z "${buildSummary}" ]]; then @@ -30,9 +31,10 @@ json=$(jq -n \ --arg scVer "$scalaVersion" \ --arg buildId "$buildId" \ --arg buildURL "$buildUrl" \ + --arg buildTool "$buildTool" \ --argjson sum "$buildSummary" \ --rawfile logs "$logsFile" \ - '{projectName: $pn, version: $ver, scalaVersion: $scVer, status: $res, timestamp: $ts, buildId: $buildId, buildURL: $buildURL, summary: $sum, logs: $logs}') + '{projectName: $pn, version: $ver, scalaVersion: $scVer, status: $res, timestamp: $ts, buildId: $buildId, buildURL: $buildURL, buildTool: $buildTool, summary: $sum, logs: $logs}') jsonFile=$(mktemp /tmp/feed-elastic-tmp.XXXXXX) From 48f7d829b11a37965dcced8cbfca4376d0b56c5b Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Tue, 7 Nov 2023 20:29:52 +0100 Subject: [PATCH 02/12] Allow to checkout commit when building --- project-builder/checkout.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project-builder/checkout.sh b/project-builder/checkout.sh index ad058f2a..79457f5c 100755 --- a/project-builder/checkout.sh +++ b/project-builder/checkout.sh @@ -20,4 +20,4 @@ if [ -n "$rev" ]; then branch="-b $rev" fi git clone --quiet --recurse-submodules "$repo" "$repoDir" $branch || - ( git clone --quiet --recurse-submodules "$repo" "$repoDir" && cd $repoDir && git checkout $rev ) + ( git clone --quiet --recurse-submodules "$repo" "$repoDir" && cd $repoDir && git fetch --shallow-since=2021-05-13 && git fetch --tags && git checkout $rev ) From e3a5f035d8e5119dd68590e2fcbcf69d3885f2cd Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Tue, 7 Nov 2023 20:30:09 +0100 Subject: [PATCH 03/12] Update config for lichess projects --- coordinator/configs/projects-config.conf | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/coordinator/configs/projects-config.conf b/coordinator/configs/projects-config.conf index a302c831..d380a0ae 100644 --- a/coordinator/configs/projects-config.conf +++ b/coordinator/configs/projects-config.conf @@ -419,7 +419,8 @@ laserdisc-io_fs2-aws{ tests = compile-only sbt.commands = ["disableFatalWarnings"] } -lichess-org_lila.java.version = 17 +lichess-org_lila.java.version = 21 +lichess-org_playframework-lila.java.version = 21 lichess-org_scalachess.tests = compile-only // Deadlocks in containers linyxus_papiers-core.tests = compile-only // flaky lloydmeta_enumeratum{ From c33e644c9de9640074965d689ba87862bfdc2ab7 Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Tue, 7 Nov 2023 20:31:27 +0100 Subject: [PATCH 04/12] Allow to specify cutoff-date for project version. Can be used to test old versions of compiler while ensuring that projects would not use forward-binary incompatible versions of dependencies (becouse they would not be published yet) --- coordinator/src/main/scala/GitOps.scala | 102 +++++++++++++ .../main/scala/ProjectConfigDiscovery.scala | 78 +++------- coordinator/src/main/scala/Scaladex.scala | 37 +++-- coordinator/src/main/scala/build.scala | 4 +- coordinator/src/main/scala/buildPlan.scala | 140 +++++++++++++++--- coordinator/src/main/scala/cache.scala | 14 +- coordinator/src/main/scala/core.scala | 29 +++- coordinator/src/main/scala/deps.scala | 56 +++++-- coordinator/src/main/scala/encoding.scala | 10 +- 9 files changed, 345 insertions(+), 125 deletions(-) create mode 100644 coordinator/src/main/scala/GitOps.scala diff --git a/coordinator/src/main/scala/GitOps.scala b/coordinator/src/main/scala/GitOps.scala new file mode 100644 index 00000000..64f70269 --- /dev/null +++ b/coordinator/src/main/scala/GitOps.scala @@ -0,0 +1,102 @@ +import scala.annotation.tailrec +import scala.concurrent.duration._ + +object Git { + enum Revision: + case Branch(name: String) + case Tag(version: String) + case Commit(sha: String) + def stringValue = this match + case Branch(name) => name + case Tag(version) => version + case Commit(sha) => sha + end Revision + + def unshallowSinceDottyRelease(projectDir: os.Path): Unit = + // unshallow commits done after release Scala 3.0.0 + os.proc("git", "fetch", s"--shallow-since=2021-05-13", "--quiet") + .call(cwd = projectDir, check = false) + .exitCode + + def fetchTags(projectDir: os.Path): Unit = + os.proc("git", "fetch", "--tags", "--quiet") + .call(cwd = projectDir, check = false) + .exitCode + + def checkout( + repoUrl: String, + projectName: String, + revision: Option[Revision], + depth: Option[Int] + ): Option[os.Path] = { + val branchOpt = revision.flatMap { + case Revision.Branch(name) => Some(s"--branch=$name") + case _ => None + } + val depthOpt = depth.map(s"--depth=" + _) + + @tailrec def tryClone[T]( + retries: Int, + backoffSeconds: Int = 1 + ): Option[os.Path] = { + val projectDir = os.temp.dir(prefix = s"repo-$projectName") + val proc = os + .proc( + "git", + "clone", + repoUrl, + projectDir, + "--quiet", + branchOpt, + depthOpt + ) + .call(stderr = os.Pipe, check = false, timeout = 10.minutes.toMillis) + + if proc.exitCode == 0 then Some(projectDir) + else if retries > 0 then + Console.err.println( + s"Failed to clone $repoUrl at revision ${revision}, backoff ${backoffSeconds}s" + ) + proc.err.lines().foreach(Console.err.println) + Thread.sleep(backoffSeconds * 1000) + tryClone(retries - 1, (backoffSeconds * 2).min(60)) + else + Console.err.println( + s"Failed to clone $repoUrl at revision ${revision}:" + ) + proc.err.lines().foreach(Console.err.println) + None + } + + def checkoutRevision(projectDir: os.Path): Boolean = revision match { + case None | Some(_: Revision.Branch) => true // no need to checkout + case Some(Revision.Tag("master" | "main")) => true + case Some(revision: (Revision.Commit | Revision.Tag)) => + val rev = revision match + case Revision.Commit(sha) => + unshallowSinceDottyRelease(projectDir) + sha + case Revision.Tag(tag) => + fetchTags(projectDir) + s"tags/$tag" + + val proc = os + .proc("git", "checkout", rev, "--quiet") + .call( + cwd = projectDir, + check = false, + timeout = 15.seconds.toMillis, + mergeErrIntoOut = true + ) + if (proc.exitCode != 0) + System.err.println( + s"Failed to checkout revision $revision: " + proc.out + .lines() + .mkString + ) + proc.exitCode == 0 + } + + tryClone(retries = 10).filter(checkoutRevision(_)) + } +} diff --git a/coordinator/src/main/scala/ProjectConfigDiscovery.scala b/coordinator/src/main/scala/ProjectConfigDiscovery.scala index fa29fd02..eac17463 100644 --- a/coordinator/src/main/scala/ProjectConfigDiscovery.scala +++ b/coordinator/src/main/scala/ProjectConfigDiscovery.scala @@ -9,11 +9,12 @@ class ProjectConfigDiscovery(internalProjectConfigsPath: java.io.File) { def apply( project: ProjectVersion, repoUrl: String, - tagOrRevision: Option[String] + revision: Option[Git.Revision] ): Option[ProjectBuildConfig] = { val name = project.showName - checkout(repoUrl, name, tagOrRevision) + Git + .checkout(repoUrl, name, revision, depth = Some(1)) .flatMap { projectDir => try { readProjectConfig(projectDir, repoUrl) @@ -21,10 +22,15 @@ class ProjectConfigDiscovery(internalProjectConfigsPath: java.io.File) { .orElse(Some(ProjectBuildConfig.empty)) .map { c => if c.java.version.nonEmpty then c - else c.copy(java = c.java.copy(version = discoverJavaVersion(projectDir))) + else + c.copy(java = + c.java.copy(version = discoverJavaVersion(projectDir)) + ) } .map { c => - c.copy(sourcePatches = c.sourcePatches ::: discoverSourcePatches(projectDir)) + c.copy(sourcePatches = + c.sourcePatches ::: discoverSourcePatches(projectDir) + ) } .filter(_ != ProjectBuildConfig.empty) } catch { @@ -37,46 +43,6 @@ class ProjectConfigDiscovery(internalProjectConfigsPath: java.io.File) { } } - private def checkout( - repoUrl: String, - projectName: String, - tagOrRevision: Option[String] - ): Option[os.Path] = { - @tailrec def retry[T]( - retries: Int, - backoffSeconds: Int = 1 - ): Option[os.Path] = { - val projectDir = os.temp.dir(prefix = s"repo-$projectName") - val proc = os - .proc( - "git", - "clone", - repoUrl, - projectDir, - "--quiet", - tagOrRevision.map("--branch=" + _).toList, - "--depth=1" - ) - .call(stderr = os.Pipe, check = false) - - if proc.exitCode == 0 then Some(projectDir) - else if retries > 0 then - Console.err.println( - s"Failed to checkout $repoUrl at revision ${tagOrRevision}, backoff ${backoffSeconds}s" - ) - proc.err.lines().foreach(Console.err.println) - Thread.sleep(backoffSeconds * 1000) - retry(retries - 1, (backoffSeconds * 2).min(60)) - else - Console.err.println( - s"Failed to checkout $repoUrl at revision ${tagOrRevision}:" - ) - proc.err.lines().foreach(Console.err.println) - None - } - retry(retries = 10) - } - private def githubWorkflows(projectDir: os.Path) = { val workflowsDir = projectDir / ".github" / "workflows" if !os.exists(workflowsDir) then Nil @@ -167,7 +133,8 @@ class ProjectConfigDiscovery(internalProjectConfigsPath: java.io.File) { // release is used by oracle-actions/setup-java@v1 val JavaVersion = raw"(?:java-version|jdk|jvm|release):\s*(.*)".r val JavaVersionNumber = raw"$OptQuote(\d+)$OptQuote".r - val JavaVersionDistroVer = raw"$OptQuote(\w+)[@:]([\d\.]*[\w\-\_\.]*)$OptQuote".r + val JavaVersionDistroVer = + raw"$OptQuote(\w+)[@:]([\d\.]*[\w\-\_\.]*)$OptQuote".r val MatrixEntry = raw"(\w+):\s*\[(.*)\]".r // We can only supported this versions val allowedVersions = Seq(8, 11, 17, 21) @@ -180,14 +147,16 @@ class ProjectConfigDiscovery(internalProjectConfigsPath: java.io.File) { tryReadLines(path) .map(_.trim) .flatMap { - case MatrixEntry(key, valuesList) if isJavaVersionMatrixEntry(key) => + case MatrixEntry(key, valuesList) + if isJavaVersionMatrixEntry(key) => valuesList.split(",").map(_.trim) case JavaVersion(value) => Option(value) case _ => Nil } .flatMap { case JavaVersionNumber(version) => Option(version) - case JavaVersionDistroVer(distro, version) if !distro.contains("graal") => + case JavaVersionDistroVer(distro, version) + if !distro.contains("graal") => version .stripPrefix("1.") .split('.') @@ -214,7 +183,7 @@ class ProjectConfigDiscovery(internalProjectConfigsPath: java.io.File) { "scala3Version", // https://github.com/47degrees/fetch/blob/c4732a827816c58ce84013e9580120bdc3f64bc6/build.sbt#L10 "Scala_3", // https://github.dev/kubukoz/sup/blob/644848c03173c726f19a40e6dd439b6905d42967/build.sbt#L10-L11 "scala_3", - "`Scala-3`", + "`Scala-3`", "`scala-3`" // https://github.com/rolang/dumbo/blob/7cc7f22ee45632b45bb1092418a3498ede8226da/build.sbt#L3 ) val Scala3VersionNamesAlt = matchEnclosed( @@ -274,12 +243,13 @@ class ProjectConfigDiscovery(internalProjectConfigsPath: java.io.File) { def scala3VersionDefs = commonBuildFiles(projectDir).flatMap { file => import Scala3VersionDef.Replecement - tryReadLines(file).collect { case Scala3VersionDef(toMatch, replecement) => - SourcePatch( - path = file.relativeTo(projectDir).toString, - pattern = toMatch, - replaceWith = replecement - ) + tryReadLines(file).collect { + case Scala3VersionDef(toMatch, replecement) => + SourcePatch( + path = file.relativeTo(projectDir).toString, + pattern = toMatch, + replaceWith = replecement + ) } } end scala3VersionDefs diff --git a/coordinator/src/main/scala/Scaladex.scala b/coordinator/src/main/scala/Scaladex.scala index 42b1ef2e..fef497cd 100644 --- a/coordinator/src/main/scala/Scaladex.scala +++ b/coordinator/src/main/scala/Scaladex.scala @@ -5,8 +5,14 @@ import scala.concurrent.* object Scaladex { case class Pagination(current: Int, pageCount: Int, totalSize: Int) // releaseDate is always UTC zoned - case class ArtifactMetadata(version: String, releaseDate: java.time.OffsetDateTime) - case class ArtifactMetadataResponse(pagination: Pagination, items: List[ArtifactMetadata]) + case class ArtifactMetadata( + version: String, + releaseDate: java.time.OffsetDateTime + ) + case class ArtifactMetadataResponse( + pagination: Pagination, + items: List[ArtifactMetadata] + ) case class ProjectSummary( groupId: String, artifacts: List[String], // List of artifacts with suffixes @@ -20,20 +26,21 @@ object Scaladex { groupId: String, artifactId: String ): AsyncResponse[ArtifactMetadataResponse] = { - def tryFetch(backoffSeconds: Int): AsyncResponse[ArtifactMetadataResponse] = Future { - val response = requests.get( - url = s"$ScaladexUrl/api/artifacts/$groupId/$artifactId" - ) - fromJson[ArtifactMetadataResponse](response.text()) - }.recoverWith { - case err: org.jsoup.HttpStatusException - if err.getStatusCode == 503 && !Thread.interrupted() => - Console.err.println( - s"Failed to fetch artifact metadata, Scaladex unavailable, retry with backoff ${backoffSeconds}s for $groupId:$artifactId" + def tryFetch(backoffSeconds: Int): AsyncResponse[ArtifactMetadataResponse] = + Future { + val response = requests.get( + url = s"$ScaladexUrl/api/artifacts/$groupId/$artifactId" ) - SECONDS.sleep(backoffSeconds) - tryFetch((backoffSeconds * 2).min(60)) - } + fromJson[ArtifactMetadataResponse](response.text()) + }.recoverWith { + case err: org.jsoup.HttpStatusException + if err.getStatusCode == 503 && !Thread.interrupted() => + Console.err.println( + s"Failed to fetch artifact metadata, Scaladex unavailable, retry with backoff ${backoffSeconds}s for $groupId:$artifactId" + ) + SECONDS.sleep(backoffSeconds) + tryFetch((backoffSeconds * 2).min(60)) + } tryFetch(1) } diff --git a/coordinator/src/main/scala/build.scala b/coordinator/src/main/scala/build.scala index 42e77e7a..7354123f 100644 --- a/coordinator/src/main/scala/build.scala +++ b/coordinator/src/main/scala/build.scala @@ -1,10 +1,10 @@ //> using scala "3.2" //> using lib "com.novocode:junit-interface:0.11" -//> using lib "org.jsoup:jsoup:1.16.1" +//> using lib "org.jsoup:jsoup:1.16.2" //> using lib "org.json4s::json4s-native:4.0.6" //> using lib "org.json4s::json4s-ext:4.0.6" //> using lib "com.github.pureconfig::pureconfig-core:0.17.4" -//> using lib "com.lihaoyi::os-lib:0.9.1" +//> using lib "com.lihaoyi::os-lib:0.9.2" //> using lib "com.lihaoyi::requests:0.8.0" //> using resourceDir "../resources" diff --git a/coordinator/src/main/scala/buildPlan.scala b/coordinator/src/main/scala/buildPlan.scala index f96be83b..22c4efc6 100644 --- a/coordinator/src/main/scala/buildPlan.scala +++ b/coordinator/src/main/scala/buildPlan.scala @@ -14,6 +14,8 @@ import os.write import scala.collection.mutable import scala.collection.SortedMap import os.CommandResult +import java.time.LocalDate +import java.time.format.DateTimeFormatter class ConfigFiles(path: os.Path) { val projectsConfig: os.Path = path / "projects-config.conf" @@ -31,14 +33,30 @@ val ForReproducer = sys.props.contains("opencb.coordinator.reproducer-mode") maxProjectsInConfig: Int, maxProjectsInBuildPlan: Int, requiredProjects: Seq[Project], - configsPath: os.Path + configsPath: os.Path, + varargs: String* ) = { + val releaseCutOffDate = varargs.collectFirst { + case s"--release-cutoff=${date}" => + Try(LocalDate.parse(date)).fold[Option[LocalDate]]( + ex => + System.err.println( + s"Failed to parse cutoff date: `$date` - ${ex.getMessage()}" + ) + None + , + parsed => + println(s"Would apply release cutoff date: $parsed") + Some(parsed) + ) + }.flatten given confFiles: ConfigFiles = ConfigFiles(configsPath) // Most of the time is spend in IO, though we can use higher parallelism val threadPool = new ForkJoinPool( Runtime.getRuntime().availableProcessors() * 4 ) - val customProjects = readNormalized(confFiles.customProjects).map(Project.load) + val customProjects = + readNormalized(confFiles.customProjects).map(Project.load) given ExecutionContext = ExecutionContext.fromExecutor(threadPool) val task = for { @@ -48,15 +66,22 @@ val ForReproducer = sys.props.contains("opencb.coordinator.reproducer-mode") maxProjectsCount = Option(maxProjectsInConfig).filter(_ >= 0), requiredProjects = requiredProjects, customProjects = customProjects, - filterPatterns = loadFilters + filterPatterns = loadFilters, + releaseCutOffDate = releaseCutOffDate + ) + _ = println( + s"Loaded dependency graph: ${dependencyGraph.projects.size} projects" + ) + fullBuildPlan <- makeDependenciesBasedBuildPlan( + dependencyGraph, + releaseCutOffDate ) - _ = println(s"Loaded dependency graph: ${dependencyGraph.projects.size} projects") - fullBuildPlan <- makeDependenciesBasedBuildPlan(dependencyGraph) _ = println("Generated build plan") } yield { // Build config if !ForReproducer then { - val configMap = SortedMap.from(fullBuildPlan.map(p => p.project.coordinates -> p)) + val configMap = + SortedMap.from(fullBuildPlan.map(p => p.project.coordinates -> p)) os.write.over( workflowsDir / "buildConfig.json", toJson(configMap, pretty = true), @@ -110,7 +135,10 @@ val ForReproducer = sys.props.contains("opencb.coordinator.reproducer-mode") } case class SplittedBuildPlan(projects: Array[ProjectBuildDef], index: Int = 0) -def splitBuildPlan(buildPlan: Array[ProjectBuildDef], limit: Int): List[SplittedBuildPlan] = { +def splitBuildPlan( + buildPlan: Array[ProjectBuildDef], + limit: Int +): List[SplittedBuildPlan] = { // Sort ascending by ammount of starts, required projects have highest priority buildPlan .sortBy { @@ -210,7 +238,10 @@ def buildPlanCommons(depGraph: DependencyGraph) = (topLevelData, fullInfo, projectsDeps) -def makeDependenciesBasedBuildPlan(depGraph: DependencyGraph)(using +def makeDependenciesBasedBuildPlan( + depGraph: DependencyGraph, + cutOffDate: Option[LocalDate] +)(using confFiles: ConfigFiles ): AsyncResponse[Array[ProjectBuildDef]] = val (topLevelData, fullInfo, projectsDeps) = buildPlanCommons(depGraph) @@ -220,7 +251,9 @@ def makeDependenciesBasedBuildPlan(depGraph: DependencyGraph)(using val replacementPattern = raw"(\S+)/(\S+) (\S+)/(\S+) ?(\S+)?".r val replacements = - if !os.exists(confFiles.replacedProjects) || os.isDir(confFiles.replacedProjects) + if !os.exists(confFiles.replacedProjects) || os.isDir( + confFiles.replacedProjects + ) then Map.empty else readNormalized(confFiles.replacedProjects).map { @@ -236,16 +269,63 @@ def makeDependenciesBasedBuildPlan(depGraph: DependencyGraph)(using def getRevision(project: Project) = val originalCoords = (project.org, project.name) - replacements.get(originalCoords).map(_._2).flatten + replacements + .get(originalCoords) + .map(_._2) + .flatten + .map(Git.Revision.Tag(_)) val projects = projectsDeps.keys.map(_.p).toList + def findCutOffCommit( + project: Project, + repoUrl: String, + cutOffDate: Option[LocalDate] + ): Option[String] = + for + cutOffDate <- cutOffDate + repoDir <- Git.checkout( + repoUrl, + project.name, + revision = None, + depth = Some(1) + ) + _ = Git.unshallowSinceDottyRelease(repoDir) + lastCommit <- os + .proc( + "git", + "--no-pager", + "log", + s"--before=${cutOffDate.format(DateTimeFormatter.ISO_DATE)}", + "--pretty=format:%H", + "--max-count=1" + ) + .call(cwd = repoDir, check = false, timeout = 5.minutes.toMillis) + .out + .lines() + .headOption + _ = os.remove.all(repoDir) // best-effort, it's tmp dir anyway + yield + lastCommit.trim() + Future .traverse(projectsDeps.toList) { (project, deps) => Future { val repoUrl = projectRepoUrl(project.p) - val tag = - getRevision(project.p).orElse(findTag(repoUrl, project.v)) + val revision: Option[Git.Revision] = + getRevision(project.p) + .orElse( + findTag(repoUrl, project.v) + .tapEach(v => println(s"Would use tag: $v for ${project.p.coordinates} @ ${project.v}")) + .headOption + .map(Git.Revision.Tag(_)) + ) + .orElse( + findCutOffCommit(project.p, repoUrl, cutOffDate) + .tapEach(v => println(s"Would use commit: $v for ${project.p.coordinates} @ ${project.v}")) + .headOption + .map(Git.Revision.Commit(_)) + ) val self = project.p val dependencies = deps .map(_.p) @@ -259,7 +339,7 @@ def makeDependenciesBasedBuildPlan(depGraph: DependencyGraph)(using project = project.p, dependencies = dependencies.toArray, repoUrl = repoUrl, - revision = tag.getOrElse(""), + revision = revision.map(_.stringValue).getOrElse(""), version = project.v, targets = fullInfo(project.p).targets .map { @@ -267,20 +347,25 @@ def makeDependenciesBasedBuildPlan(depGraph: DependencyGraph)(using case t => stripScala3Suffix(t.id.asMvnStr) } .mkString(" "), - config = configDiscovery(project, repoUrl, tag) + config = configDiscovery(project, repoUrl, revision) ) } } .map(_.filter(_.project != DottyProject).toArray) -private def loadFilters(using confFiles: ConfigFiles): Seq[String] = readNormalized( - confFiles.filteredProjects -) -private def loadLongBuildingProjects()(using confFiles: ConfigFiles): Seq[Project] = +private def loadFilters(using confFiles: ConfigFiles): Seq[String] = + readNormalized( + confFiles.filteredProjects + ) +private def loadLongBuildingProjects()(using + confFiles: ConfigFiles +): Seq[Project] = readNormalized(confFiles.slowProjects).flatMap { case s"$org/$repo" => Some(Project(org, repo)) case malformed => - System.err.println(s"Malformed project long building project name: $malformed ") + System.err.println( + s"Malformed project long building project name: $malformed " + ) None } @@ -321,7 +406,9 @@ def splitIntoStages( } if currentStage.isEmpty then { def hasCyclicDependencies(p: ProjectBuildDef) = - p.dependencies.exists(deps.get(_).fold(false)(_.dependencies.contains(p.project))) + p.dependencies.exists( + deps.get(_).fold(false)(_.dependencies.contains(p.project)) + ) val cyclicDeps = newRemainings.filter(hasCyclicDependencies) if cyclicDeps.nonEmpty then { currentStage ++= cyclicDeps @@ -329,7 +416,7 @@ def splitIntoStages( cyclicDeps.foreach(v => println( s"Mitigated cyclic dependency in ${v.project} -> ${v.dependencies.toList - .filterNot(done.contains)}" + .filterNot(done.contains)}" ) ) } else { @@ -338,7 +425,8 @@ def splitIntoStages( .toSeq .sortBy { (depsCount, _) => depsCount } .head - def showCurrent = tieBreakers.map(_.project.coordinates).mkString(", ") + def showCurrent = + tieBreakers.map(_.project.coordinates).mkString(", ") System.err.println( s"Not found projects without already resolved dependencies, using [${tieBreakers.size}] projects with minimal dependency size=$minDeps : ${showCurrent}" ) @@ -499,8 +587,12 @@ def createGithubActionJob( }) println(" with:") println(" project-name: ${{ matrix.name }}") - println(" extra-scalac-options: ${{ inputs.extra-scalac-options }}") - println(" disabled-scalac-options: ${{ inputs.disabled-scalac-options }}") + println( + " extra-scalac-options: ${{ inputs.extra-scalac-options }}" + ) + println( + " disabled-scalac-options: ${{ inputs.disabled-scalac-options }}" + ) println(s" scala-version: $${{ $setupOutputs.scala-version }}") println(s" maven-repo-url: $${{ $setupOutputs.maven-repo-url }}") println(" elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }}") diff --git a/coordinator/src/main/scala/cache.scala b/coordinator/src/main/scala/cache.scala index 5164634d..cfdd5a52 100644 --- a/coordinator/src/main/scala/cache.scala +++ b/coordinator/src/main/scala/cache.scala @@ -15,7 +15,8 @@ def cachedSingle[V](dest: String)(op: => V)(using CacheDriver[String, V]): V = def cached[V, K](op: K => V)(using cacheDriver: CacheDriver[K, V]): K => V = (k: K) => val dest = cacheDriver.dest(k) - if Files.exists(dest) then cacheDriver.load(String(Files.readAllBytes(dest)), k) + if Files.exists(dest) then + cacheDriver.load(String(Files.readAllBytes(dest)), k) else val res = op(k) Files.createDirectories(dest.getParent) @@ -27,7 +28,8 @@ def cachedAsync[V, K](op: K => AsyncResponse[V])(using ): K => AsyncResponse[V] = (k: K) => val dest = cacheDriver.dest(k) - if Files.exists(dest) then Future { cacheDriver.load(String(Files.readAllBytes(dest)), k) } + if Files.exists(dest) then + Future { cacheDriver.load(String(Files.readAllBytes(dest)), k) } else op(k).map { res => Files.createDirectories(dest.getParent) @@ -56,7 +58,10 @@ given CacheDriver[String, Seq[StarredProject]] with v.map(_.serialize).mkString("\n") def load(data: String, k: String): Seq[StarredProject] = - data.linesIterator.map (Project.load).collect{case sp :StarredProject => sp}.toSeq + data.linesIterator + .map(Project.load) + .collect { case sp: StarredProject => sp } + .toSeq def dest(v: String): Path = dataPath.resolve(v) @@ -71,7 +76,8 @@ given CacheDriver[ModuleVersion, Target] with (Dep(v.id, "_") +: v.deps).map(DepOps.write).mkString("\n"): @unchecked def load(data: String, key: ModuleVersion): Target = - val Dep(id, _) +: deps = data.linesIterator.toSeq.map(DepOps.load): @unchecked + val Dep(id, _) +: deps = + data.linesIterator.toSeq.map(DepOps.load): @unchecked Target(id, deps) def dest(v: ModuleVersion): Path = diff --git a/coordinator/src/main/scala/core.scala b/coordinator/src/main/scala/core.scala index c01ee5be..33511d51 100644 --- a/coordinator/src/main/scala/core.scala +++ b/coordinator/src/main/scala/core.scala @@ -19,7 +19,8 @@ sealed case class Project(org: String, name: String): case _: StarredProject => Project(org, name) case _ => this -class StarredProject(org: String, name: String)(val stars: Int) extends Project(org, name) { +class StarredProject(org: String, name: String)(val stars: Int) + extends Project(org, name) { override def serialize = s"$org;$name;$stars" } @@ -38,7 +39,12 @@ case class ProjectVersion(p: Project, v: String) { def showName = p.show } -case class MvnMapping(name: String, version: String, mvn: String, deps: Seq[String]): +case class MvnMapping( + name: String, + version: String, + mvn: String, + deps: Seq[String] +): def show = (Seq(name, version, mvn) ++ deps).mkString(",") object MvnMapping: @@ -85,15 +91,18 @@ enum TestingMode derives EnumConfigReader: // Community projects configs case class JavaConfig(version: Option[String] = None) derives ConfigReader -case class SbtConfig(commands: List[String] = Nil, options: List[String] = Nil) derives ConfigReader +case class SbtConfig(commands: List[String] = Nil, options: List[String] = Nil) + derives ConfigReader case class MillConfig(options: List[String] = Nil) derives ConfigReader -case class ProjectOverrides(tests: Option[TestingMode] = None) derives ConfigReader +case class ProjectOverrides(tests: Option[TestingMode] = None) + derives ConfigReader case class ProjectsConfig( exclude: List[String] = Nil, overrides: Map[String, ProjectOverrides] = Map.empty ) derives ConfigReader // Describes a simple textual replecement performed on path (relative Unix-style path to the file -case class SourcePatch(path: String, pattern: String, replaceWith: String) derives ConfigReader +case class SourcePatch(path: String, pattern: String, replaceWith: String) + derives ConfigReader case class ProjectBuildConfig( projects: ProjectsConfig = ProjectsConfig(), java: JavaConfig = JavaConfig(), @@ -108,13 +117,19 @@ object ProjectBuildConfig { val empty = ProjectBuildConfig() } -case class SemVersion(major: Int, minor: Int, patch: Int, milestone: Option[String]) +case class SemVersion( + major: Int, + minor: Int, + patch: Int, + milestone: Option[String] +) given Conversion[String, SemVersion] = version => // There are multiple projects that don't follow standarnd naming convention, especially in snpashots // becouse of that it needs to be more flexible, e.g to handle: x.y-z-, x.y, x.y-milestone val parts = version.split('.').flatMap(_.split('-')).filter(_.nonEmpty) val versionNums = parts.take(3).takeWhile(_.forall(_.isDigit)) - def versionPart(idx: Int) = versionNums.lift(idx).flatMap(_.toIntOption).getOrElse(0) + def versionPart(idx: Int) = + versionNums.lift(idx).flatMap(_.toIntOption).getOrElse(0) val milestone = Some(parts.drop(versionNums.size)) .filter(_.nonEmpty) .map(_.mkString("-")) diff --git a/coordinator/src/main/scala/deps.scala b/coordinator/src/main/scala/deps.scala index 7f901326..9a233f21 100644 --- a/coordinator/src/main/scala/deps.scala +++ b/coordinator/src/main/scala/deps.scala @@ -4,7 +4,7 @@ import java.nio.file._ import scala.sys.process._ import scala.concurrent.* import scala.concurrent.duration.* -import java.time.OffsetDateTime +import java.time.{OffsetDateTime, LocalDate} import java.util.concurrent.TimeUnit.SECONDS import java.net.SocketTimeoutException import java.net.UnknownHostException @@ -33,7 +33,9 @@ def loadProjects(scalaBinaryVersion: String): Seq[StarredProject] = val texts = e.select("h4").get(0).text().split("/") val stars = e.select(".stats [title=Stars]").asScala.map(_.text) Option.unless(texts.isEmpty || stars.isEmpty) { - StarredProject(texts.head, texts.drop(1).mkString("/"))(stars.head.toInt) + StarredProject(texts.head, texts.drop(1).mkString("/"))( + stars.head.toInt + ) } } LazyList @@ -50,7 +52,10 @@ enum CandidateProject: case BuildSelected(project: Project, mvs: Seq[ModuleInVersion]) case class ProjectModules(project: Project, mvs: Seq[ModuleInVersion]) -def loadScaladexProject(scalaBinaryVersion: String)( +def loadScaladexProject( + scalaBinaryVersion: String, + releaseCutOffDate: Option[LocalDate] +)( project: Project ): AsyncResponse[ProjectModules] = import util.* @@ -82,6 +87,10 @@ def loadScaladexProject(scalaBinaryVersion: String)( // Order versions based on their release date, it should be more stable in case of hash-based pre-releases // Previous approach with sorting SemVersion was not stable and could lead to runtime erros (due to not transitive order of elements) val versions = response.items + .filter(v => + releaseCutOffDate + .forall(_.isAfter(v.releaseDate.toLocalDate())) + ) .tapEach(v => releaseDates += v.version -> v.releaseDate) .map(_.version) artifact -> versions @@ -90,7 +99,9 @@ def loadScaladexProject(scalaBinaryVersion: String)( .map(_.toMap) orderedVersions = projectSummary.versions .flatMap(v => releaseDates.get(v).map(VersionRelease(v, _))) - .sortBy(_.releaseDate)(using summon[Ordering[OffsetDateTime]].reverse) + .sortBy(_.releaseDate)(using + summon[Ordering[OffsetDateTime]].reverse + ) .map(_.version) yield for version <- orderedVersions yield ModuleInVersion( @@ -186,7 +197,8 @@ def loadMavenInfo(scalaBinaryVersion: String)( .map(LoadedProject(projectModules.project, version, _)) /** @param scalaBinaryVersion - * Scala binary version name (major.minor) or `3` for scala 3 - following scaladex's convention + * Scala binary version name (major.minor) or `3` for scala 3 - following + * scaladex's convention */ def loadDepenenecyGraph( scalaBinaryVersion: String, @@ -194,16 +206,20 @@ def loadDepenenecyGraph( maxProjectsCount: Option[Int] = None, requiredProjects: Seq[Project] = Nil, customProjects: Seq[Project] = Nil, - filterPatterns: Seq[String] = Nil + filterPatterns: Seq[String] = Nil, + releaseCutOffDate: Option[LocalDate] = None ): AsyncResponse[DependencyGraph] = val patterns = filterPatterns.map(_.r) def loadProject(p: Project): AsyncResponse[CandidateProject] = - if customProjects.contains(p) then Future.successful(CandidateProject.BuildAll(p)) + if customProjects.contains(p) then + Future.successful(CandidateProject.BuildAll(p)) else cachedAsync { (p: Project) => - loadScaladexProject(scalaBinaryVersion)(p) + loadScaladexProject(scalaBinaryVersion, releaseCutOffDate)(p) .map(projectModulesFilter(patterns)) - }(p).map { case ProjectModules(project, mvs) => CandidateProject.BuildSelected(project, mvs) } + }(p).map { case ProjectModules(project, mvs) => + CandidateProject.BuildSelected(project, mvs) + } val required = LazyList .from(requiredProjects) @@ -231,7 +247,9 @@ def loadDepenenecyGraph( mvnInfo <- project match case CandidateProject.BuildAll(project) => - Future.successful(Some(LoadedProject(project, "HEAD", Seq(Target.BuildAll)))) + Future.successful( + Some(LoadedProject(project, "HEAD", Seq(Target.BuildAll))) + ) case candidate @ CandidateProject.BuildSelected(project, mvs) => if mvs.isEmpty then Future.successful(None) @@ -242,8 +260,11 @@ def loadDepenenecyGraph( Option(result) } .recover { - case ex: org.jsoup.HttpStatusException if ex.getStatusCode() == 404 => - System.err.println(s"Missing Maven info: ${ex.getUrl()}") + case ex: org.jsoup.HttpStatusException + if ex.getStatusCode() == 404 => + System.err.println( + s"Missing Maven info: ${ex.getUrl()}" + ) None } yield mvnInfo @@ -253,7 +274,9 @@ def loadDepenenecyGraph( load( required #::: optional( from = 0, - limit = maxProjectsCount.map(_ - requiredProjects.length - customProjects.length).map(_ max 0) + limit = maxProjectsCount + .map(_ - requiredProjects.length - customProjects.length) + .map(_ max 0) ) ).flatMap { loaded => val available = loaded.flatten @@ -264,8 +287,11 @@ def loadDepenenecyGraph( else { val continueFrom = loaded.size - required.size // Load '10 < 1/2n < 50' more projects then number of remaining slots to filter out possibly empty entries - val toLoad = remainingSlots + (remainingSlots * 0.5).toInt.max(10).min(50) - println(s"Filling remaining ${remainingSlots} slots, trying to load $toLoad next projects") + val toLoad = + remainingSlots + (remainingSlots * 0.5).toInt.max(10).min(50) + println( + s"Filling remaining ${remainingSlots} slots, trying to load $toLoad next projects" + ) load(optional(from = continueFrom, limit = Some(remainingSlots))) .map(available ++ _.flatten.take(remainingSlots)) } diff --git a/coordinator/src/main/scala/encoding.scala b/coordinator/src/main/scala/encoding.scala index e9be8508..3f0f9474 100644 --- a/coordinator/src/main/scala/encoding.scala +++ b/coordinator/src/main/scala/encoding.scala @@ -16,8 +16,9 @@ object ProjectBuildDefSerializer class ProjectSerializer extends CustomSerializer[Project](format => { - def deserialize: PartialFunction[JValue, Project] = { case JString(stringValue) => - Project.load(stringValue) + def deserialize: PartialFunction[JValue, Project] = { + case JString(stringValue) => + Project.load(stringValue) } def serialize: PartialFunction[Any, JValue] = { case p: Project => JString(p.coordinates) @@ -55,8 +56,9 @@ def fromJson[T: Manifest](json: String): T = Serialization.read(json) // Custom serializer in org.json4s.ext does not handle 2022-04-29T03:39:03Z class UTCOffsetDateTimeSerializer extends CustomSerializer[OffsetDateTime](format => { - def deserialize: PartialFunction[JValue, OffsetDateTime] = { case JString(value) => - OffsetDateTime.parse(value) + def deserialize: PartialFunction[JValue, OffsetDateTime] = { + case JString(value) => + OffsetDateTime.parse(value) } def serialize: PartialFunction[Any, JValue] = { case v: OffsetDateTime => JString(v.toString()) From 3cb041b85ab76852833f998c03d3a69b50142034 Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Tue, 7 Nov 2023 20:32:20 +0100 Subject: [PATCH 05/12] format coordinator --- coordinator/.scalafmt.conf | 3 ++ .../main/scala/ProjectConfigDiscovery.scala | 28 +++++-------- coordinator/src/main/scala/buildPlan.scala | 40 +++++++++++-------- coordinator/src/main/scala/cache.scala | 6 +-- coordinator/src/main/scala/core.scala | 12 ++---- coordinator/src/main/scala/deps.scala | 9 ++--- coordinator/src/main/scala/encoding.scala | 10 ++--- 7 files changed, 49 insertions(+), 59 deletions(-) create mode 100644 coordinator/.scalafmt.conf diff --git a/coordinator/.scalafmt.conf b/coordinator/.scalafmt.conf new file mode 100644 index 00000000..3d593eb9 --- /dev/null +++ b/coordinator/.scalafmt.conf @@ -0,0 +1,3 @@ +version = "3.7.14" +runner.dialect = scala3 +maxColumn=100 \ No newline at end of file diff --git a/coordinator/src/main/scala/ProjectConfigDiscovery.scala b/coordinator/src/main/scala/ProjectConfigDiscovery.scala index eac17463..69f3a1bd 100644 --- a/coordinator/src/main/scala/ProjectConfigDiscovery.scala +++ b/coordinator/src/main/scala/ProjectConfigDiscovery.scala @@ -22,15 +22,10 @@ class ProjectConfigDiscovery(internalProjectConfigsPath: java.io.File) { .orElse(Some(ProjectBuildConfig.empty)) .map { c => if c.java.version.nonEmpty then c - else - c.copy(java = - c.java.copy(version = discoverJavaVersion(projectDir)) - ) + else c.copy(java = c.java.copy(version = discoverJavaVersion(projectDir))) } .map { c => - c.copy(sourcePatches = - c.sourcePatches ::: discoverSourcePatches(projectDir) - ) + c.copy(sourcePatches = c.sourcePatches ::: discoverSourcePatches(projectDir)) } .filter(_ != ProjectBuildConfig.empty) } catch { @@ -147,16 +142,14 @@ class ProjectConfigDiscovery(internalProjectConfigsPath: java.io.File) { tryReadLines(path) .map(_.trim) .flatMap { - case MatrixEntry(key, valuesList) - if isJavaVersionMatrixEntry(key) => + case MatrixEntry(key, valuesList) if isJavaVersionMatrixEntry(key) => valuesList.split(",").map(_.trim) case JavaVersion(value) => Option(value) case _ => Nil } .flatMap { case JavaVersionNumber(version) => Option(version) - case JavaVersionDistroVer(distro, version) - if !distro.contains("graal") => + case JavaVersionDistroVer(distro, version) if !distro.contains("graal") => version .stripPrefix("1.") .split('.') @@ -243,13 +236,12 @@ class ProjectConfigDiscovery(internalProjectConfigsPath: java.io.File) { def scala3VersionDefs = commonBuildFiles(projectDir).flatMap { file => import Scala3VersionDef.Replecement - tryReadLines(file).collect { - case Scala3VersionDef(toMatch, replecement) => - SourcePatch( - path = file.relativeTo(projectDir).toString, - pattern = toMatch, - replaceWith = replecement - ) + tryReadLines(file).collect { case Scala3VersionDef(toMatch, replecement) => + SourcePatch( + path = file.relativeTo(projectDir).toString, + pattern = toMatch, + replaceWith = replecement + ) } } end scala3VersionDefs diff --git a/coordinator/src/main/scala/buildPlan.scala b/coordinator/src/main/scala/buildPlan.scala index 22c4efc6..638bc6cd 100644 --- a/coordinator/src/main/scala/buildPlan.scala +++ b/coordinator/src/main/scala/buildPlan.scala @@ -36,19 +36,18 @@ val ForReproducer = sys.props.contains("opencb.coordinator.reproducer-mode") configsPath: os.Path, varargs: String* ) = { - val releaseCutOffDate = varargs.collectFirst { - case s"--release-cutoff=${date}" => - Try(LocalDate.parse(date)).fold[Option[LocalDate]]( - ex => - System.err.println( - s"Failed to parse cutoff date: `$date` - ${ex.getMessage()}" - ) - None - , - parsed => - println(s"Would apply release cutoff date: $parsed") - Some(parsed) - ) + val releaseCutOffDate = varargs.collectFirst { case s"--release-cutoff=${date}" => + Try(LocalDate.parse(date)).fold[Option[LocalDate]]( + ex => + System.err.println( + s"Failed to parse cutoff date: `$date` - ${ex.getMessage()}" + ) + None + , + parsed => + println(s"Would apply release cutoff date: $parsed") + Some(parsed) + ) }.flatten given confFiles: ConfigFiles = ConfigFiles(configsPath) // Most of the time is spend in IO, though we can use higher parallelism @@ -305,8 +304,7 @@ def makeDependenciesBasedBuildPlan( .lines() .headOption _ = os.remove.all(repoDir) // best-effort, it's tmp dir anyway - yield - lastCommit.trim() + yield lastCommit.trim() Future .traverse(projectsDeps.toList) { (project, deps) => @@ -316,13 +314,21 @@ def makeDependenciesBasedBuildPlan( getRevision(project.p) .orElse( findTag(repoUrl, project.v) - .tapEach(v => println(s"Would use tag: $v for ${project.p.coordinates} @ ${project.v}")) + .tapEach(v => + println( + s"Would use tag: $v for ${project.p.coordinates} @ ${project.v}" + ) + ) .headOption .map(Git.Revision.Tag(_)) ) .orElse( findCutOffCommit(project.p, repoUrl, cutOffDate) - .tapEach(v => println(s"Would use commit: $v for ${project.p.coordinates} @ ${project.v}")) + .tapEach(v => + println( + s"Would use commit: $v for ${project.p.coordinates} @ ${project.v}" + ) + ) .headOption .map(Git.Revision.Commit(_)) ) diff --git a/coordinator/src/main/scala/cache.scala b/coordinator/src/main/scala/cache.scala index cfdd5a52..4652c891 100644 --- a/coordinator/src/main/scala/cache.scala +++ b/coordinator/src/main/scala/cache.scala @@ -15,8 +15,7 @@ def cachedSingle[V](dest: String)(op: => V)(using CacheDriver[String, V]): V = def cached[V, K](op: K => V)(using cacheDriver: CacheDriver[K, V]): K => V = (k: K) => val dest = cacheDriver.dest(k) - if Files.exists(dest) then - cacheDriver.load(String(Files.readAllBytes(dest)), k) + if Files.exists(dest) then cacheDriver.load(String(Files.readAllBytes(dest)), k) else val res = op(k) Files.createDirectories(dest.getParent) @@ -28,8 +27,7 @@ def cachedAsync[V, K](op: K => AsyncResponse[V])(using ): K => AsyncResponse[V] = (k: K) => val dest = cacheDriver.dest(k) - if Files.exists(dest) then - Future { cacheDriver.load(String(Files.readAllBytes(dest)), k) } + if Files.exists(dest) then Future { cacheDriver.load(String(Files.readAllBytes(dest)), k) } else op(k).map { res => Files.createDirectories(dest.getParent) diff --git a/coordinator/src/main/scala/core.scala b/coordinator/src/main/scala/core.scala index 33511d51..e0979af7 100644 --- a/coordinator/src/main/scala/core.scala +++ b/coordinator/src/main/scala/core.scala @@ -19,8 +19,7 @@ sealed case class Project(org: String, name: String): case _: StarredProject => Project(org, name) case _ => this -class StarredProject(org: String, name: String)(val stars: Int) - extends Project(org, name) { +class StarredProject(org: String, name: String)(val stars: Int) extends Project(org, name) { override def serialize = s"$org;$name;$stars" } @@ -91,18 +90,15 @@ enum TestingMode derives EnumConfigReader: // Community projects configs case class JavaConfig(version: Option[String] = None) derives ConfigReader -case class SbtConfig(commands: List[String] = Nil, options: List[String] = Nil) - derives ConfigReader +case class SbtConfig(commands: List[String] = Nil, options: List[String] = Nil) derives ConfigReader case class MillConfig(options: List[String] = Nil) derives ConfigReader -case class ProjectOverrides(tests: Option[TestingMode] = None) - derives ConfigReader +case class ProjectOverrides(tests: Option[TestingMode] = None) derives ConfigReader case class ProjectsConfig( exclude: List[String] = Nil, overrides: Map[String, ProjectOverrides] = Map.empty ) derives ConfigReader // Describes a simple textual replecement performed on path (relative Unix-style path to the file -case class SourcePatch(path: String, pattern: String, replaceWith: String) - derives ConfigReader +case class SourcePatch(path: String, pattern: String, replaceWith: String) derives ConfigReader case class ProjectBuildConfig( projects: ProjectsConfig = ProjectsConfig(), java: JavaConfig = JavaConfig(), diff --git a/coordinator/src/main/scala/deps.scala b/coordinator/src/main/scala/deps.scala index 9a233f21..0a18db34 100644 --- a/coordinator/src/main/scala/deps.scala +++ b/coordinator/src/main/scala/deps.scala @@ -197,8 +197,7 @@ def loadMavenInfo(scalaBinaryVersion: String)( .map(LoadedProject(projectModules.project, version, _)) /** @param scalaBinaryVersion - * Scala binary version name (major.minor) or `3` for scala 3 - following - * scaladex's convention + * Scala binary version name (major.minor) or `3` for scala 3 - following scaladex's convention */ def loadDepenenecyGraph( scalaBinaryVersion: String, @@ -211,8 +210,7 @@ def loadDepenenecyGraph( ): AsyncResponse[DependencyGraph] = val patterns = filterPatterns.map(_.r) def loadProject(p: Project): AsyncResponse[CandidateProject] = - if customProjects.contains(p) then - Future.successful(CandidateProject.BuildAll(p)) + if customProjects.contains(p) then Future.successful(CandidateProject.BuildAll(p)) else cachedAsync { (p: Project) => loadScaladexProject(scalaBinaryVersion, releaseCutOffDate)(p) @@ -260,8 +258,7 @@ def loadDepenenecyGraph( Option(result) } .recover { - case ex: org.jsoup.HttpStatusException - if ex.getStatusCode() == 404 => + case ex: org.jsoup.HttpStatusException if ex.getStatusCode() == 404 => System.err.println( s"Missing Maven info: ${ex.getUrl()}" ) diff --git a/coordinator/src/main/scala/encoding.scala b/coordinator/src/main/scala/encoding.scala index 3f0f9474..e9be8508 100644 --- a/coordinator/src/main/scala/encoding.scala +++ b/coordinator/src/main/scala/encoding.scala @@ -16,9 +16,8 @@ object ProjectBuildDefSerializer class ProjectSerializer extends CustomSerializer[Project](format => { - def deserialize: PartialFunction[JValue, Project] = { - case JString(stringValue) => - Project.load(stringValue) + def deserialize: PartialFunction[JValue, Project] = { case JString(stringValue) => + Project.load(stringValue) } def serialize: PartialFunction[Any, JValue] = { case p: Project => JString(p.coordinates) @@ -56,9 +55,8 @@ def fromJson[T: Manifest](json: String): T = Serialization.read(json) // Custom serializer in org.json4s.ext does not handle 2022-04-29T03:39:03Z class UTCOffsetDateTimeSerializer extends CustomSerializer[OffsetDateTime](format => { - def deserialize: PartialFunction[JValue, OffsetDateTime] = { - case JString(value) => - OffsetDateTime.parse(value) + def deserialize: PartialFunction[JValue, OffsetDateTime] = { case JString(value) => + OffsetDateTime.parse(value) } def serialize: PartialFunction[Any, JValue] = { case v: OffsetDateTime => JString(v.toString()) From 1466f0e7f299741cd1ed86d8c96166027e60ec52 Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Tue, 7 Nov 2023 20:43:41 +0100 Subject: [PATCH 06/12] Use fixed version of scala-cli in CI --- .github/workflows/ci.yaml | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index abcacb5e..ea2f95af 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -37,15 +37,7 @@ jobs: - uses: coursier/setup-action@v1 with: - apps: scala sbt mill:0.10.10 - - - name: Install scala-cli - run: | - curl -s --compressed "https://virtuslab.github.io/scala-cli-packages/KEY.gpg" | sudo apt-key add - - sudo curl -s --compressed -o /etc/apt/sources.list.d/scala_cli_packages.list "https://virtuslab.github.io/scala-cli-packages/debian/scala_cli_packages.list" - sudo apt-get update && \ - sudo apt-get install scala-cli && \ - scala-cli --version + apps: scala sbt mill:0.10.10 scala-cli:1.0.4 - name: Start minikube run: minikube start From 24efa8f13f928fb105e579fade9ee520c224b15f Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Tue, 7 Nov 2023 21:04:14 +0100 Subject: [PATCH 07/12] Update versions in CI test-cli --- scripts/test-cli.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/test-cli.sh b/scripts/test-cli.sh index 28760179..6bca67b9 100755 --- a/scripts/test-cli.sh +++ b/scripts/test-cli.sh @@ -10,9 +10,9 @@ cd $scriptDir/../cli testNamespace=scala3-community-build-test cliRunCmd="run scb-cli.scala --jvm=11 --java-prop communitybuild.version=test --java-prop communitybuild.forced-java-version=11 --java-prop communitybuild.local.dir=$scriptDir/.. -- " commonOpts="--namespace=$testNamespace --noRedirectLogs" -sbtProject="typelevel/shapeless-3 --revision=v3.1.0" -millProject="com-lihaoyi/os-lib --revision=0.8.1" -scalaVersion=3.1.1 +sbtProject="typelevel/shapeless-3 --revision=v3.3.0" +millProject="com-lihaoyi/os-lib --revision=0.9.2" +scalaVersion=3.3.0 #echo "Test sbt custom build in minikube" #scala-cli $cliRunCmd run $sbtProject $scalaVersion $commonOpts From 3e34abf065322ff65e3e0e51ae1ee067d5bb6b6e Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Tue, 7 Nov 2023 21:32:52 +0100 Subject: [PATCH 08/12] revert change to os-lib version --- scripts/test-cli.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test-cli.sh b/scripts/test-cli.sh index 6bca67b9..465bd859 100755 --- a/scripts/test-cli.sh +++ b/scripts/test-cli.sh @@ -11,7 +11,7 @@ testNamespace=scala3-community-build-test cliRunCmd="run scb-cli.scala --jvm=11 --java-prop communitybuild.version=test --java-prop communitybuild.forced-java-version=11 --java-prop communitybuild.local.dir=$scriptDir/.. -- " commonOpts="--namespace=$testNamespace --noRedirectLogs" sbtProject="typelevel/shapeless-3 --revision=v3.3.0" -millProject="com-lihaoyi/os-lib --revision=0.9.2" +millProject="com-lihaoyi/os-lib --revision=0.8.1" scalaVersion=3.3.0 #echo "Test sbt custom build in minikube" From 0565ed97947e537509276ecee547bd21ba579032 Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Tue, 7 Nov 2023 21:49:38 +0100 Subject: [PATCH 09/12] Create build plan for the state of ecosystem at the day of Scala 3.3.0 release --- .github/workflows/buildConfig.json | 21489 ++++++++-------------- .github/workflows/buildPlan-A.yaml | 796 +- .github/workflows/buildPlan-B.yaml | 448 +- coordinator/src/main/scala/GitOps.scala | 2 +- 4 files changed, 7654 insertions(+), 15081 deletions(-) diff --git a/.github/workflows/buildConfig.json b/.github/workflows/buildConfig.json index 37c62aae..60f5f083 100644 --- a/.github/workflows/buildConfig.json +++ b/.github/workflows/buildConfig.json @@ -76,8 +76,8 @@ "47degrees/github4s":{ "project":"47degrees/github4s", "repoUrl":"https://github.com/47degrees/github4s.git", - "revision":"v0.32.1", - "version":"0.32.1", + "revision":"v0.32.0", + "version":"0.32.0", "targets":"com.47deg%github4s", "config":{ "projects":{ @@ -277,9 +277,9 @@ "7mind/izumi":{ "project":"7mind/izumi", "repoUrl":"https://github.com/7mind/izumi.git", - "revision":"v1.2.0", - "version":"1.2.0", - "targets":"io.7mind.izumi%distage-framework io.7mind.izumi%idealingua-v1-runtime-rpc-csharp io.7mind.izumi%distage-extension-plugins io.7mind.izumi%distage-testkit-core io.7mind.izumi%idealingua-v1-runtime-rpc-typescript io.7mind.izumi%fundamentals-functional io.7mind.izumi%fundamentals-platform io.7mind.izumi%distage-framework-docker io.7mind.izumi%distage-framework-api io.7mind.izumi%fundamentals-collections io.7mind.izumi%logstage-core io.7mind.izumi%distage-core-proxy-bytebuddy io.7mind.izumi%idealingua-v1-test-defs io.7mind.izumi%distage-extension-config io.7mind.izumi%fundamentals-reflection io.7mind.izumi%fundamentals-literals io.7mind.izumi%fundamentals-language io.7mind.izumi%distage-extension-logstage io.7mind.izumi%distage-core-api io.7mind.izumi%idealingua-v1-runtime-rpc-http4s io.7mind.izumi%fundamentals-bio io.7mind.izumi%idealingua-v1-runtime-rpc-scala io.7mind.izumi%logstage-adapter-slf4j io.7mind.izumi%logstage-rendering-circe io.7mind.izumi%fundamentals-json-circe io.7mind.izumi%idealingua-v1-runtime-rpc-go io.7mind.izumi%fundamentals-orphans io.7mind.izumi%distage-testkit-scalatest io.7mind.izumi%idealingua-v1-model io.7mind.izumi%distage-core io.7mind.izumi%logstage-sink-slf4j", + "revision":"v1.1.0-M23", + "version":"1.1.0-M23", + "targets":"io.7mind.izumi%distage-framework io.7mind.izumi%distage-extension-plugins io.7mind.izumi%distage-testkit-core io.7mind.izumi%fundamentals-functional io.7mind.izumi%fundamentals-platform io.7mind.izumi%distage-framework-docker io.7mind.izumi%distage-framework-api io.7mind.izumi%fundamentals-collections io.7mind.izumi%logstage-core io.7mind.izumi%distage-core-proxy-bytebuddy io.7mind.izumi%distage-extension-config io.7mind.izumi%fundamentals-reflection io.7mind.izumi%fundamentals-literals io.7mind.izumi%fundamentals-language io.7mind.izumi%distage-extension-logstage io.7mind.izumi%distage-core-api io.7mind.izumi%fundamentals-bio io.7mind.izumi%logstage-adapter-slf4j io.7mind.izumi%logstage-rendering-circe io.7mind.izumi%fundamentals-json-circe io.7mind.izumi%fundamentals-orphans io.7mind.izumi%distage-testkit-scalatest io.7mind.izumi%distage-core io.7mind.izumi%logstage-sink-slf4j", "config":{ "projects":{ "exclude":[ @@ -382,8 +382,8 @@ "ablearthy/td-types":{ "project":"ablearthy/td-types", "repoUrl":"https://github.com/ablearthy/td-types.git", - "revision":"v1.8.10-2", - "version":"1.8.10-2", + "revision":"v1.8.10", + "version":"1.8.10", "targets":"io.github.ablearthy%td-types", "config":{ "projects":{ @@ -461,47 +461,10 @@ ] } }, - "absaoss/absa-shaded-jackson-module-scala":{ - "project":"absaoss/absa-shaded-jackson-module-scala", - "repoUrl":"https://github.com/absaoss/absa-shaded-jackson-module-scala.git", - "revision":"v0.0.2", - "version":"0.0.2", - "targets":"za.co.absa.shaded%absa-shaded-jackson-module-scala", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"disabled", - "sourcePatches":[ - - ] - } - }, "acsgh/scala-common":{ "project":"acsgh/scala-common", "repoUrl":"https://github.com/acsgh/scala-common.git", - "revision":"", + "revision":"60e60a7abf2de8cf61acc010754772028b8bfb4b", "version":"1.3.0", "targets":"com.github.acsgh.common.scala%core" }, @@ -515,8 +478,8 @@ "ahjohannessen/sec":{ "project":"ahjohannessen/sec", "repoUrl":"https://github.com/ahjohannessen/sec.git", - "revision":"v0.40.0", - "version":"0.40.0", + "revision":"v0.26.0", + "version":"0.26.0", "targets":"io.github.ahjohannessen%sec-core io.github.ahjohannessen%sec-fs2 io.github.ahjohannessen%sec-fs2-client io.github.ahjohannessen%sec-tsc", "config":{ "projects":{ @@ -547,7 +510,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.1\"", + "pattern":"val Scala3 = \"3.2.2\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -597,8 +560,8 @@ "ahjohannessen/unum":{ "project":"ahjohannessen/unum", "repoUrl":"https://github.com/ahjohannessen/unum.git", - "revision":"v1.2.0", - "version":"1.2.0", + "revision":"v1.1.1", + "version":"1.1.1", "targets":"io.github.ahjohannessen%unum", "config":{ "projects":{ @@ -629,19 +592,12 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", + "pattern":"val Scala3 = \"3.2.1\"", "replaceWith":"val Scala3 = \"\"" } ] } }, - "aholland/aholland-scala-utils":{ - "project":"aholland/aholland-scala-utils", - "repoUrl":"https://github.com/aholland/aholland-scala-utils.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"io.github.aholland%utils" - }, "aiyanbo/scala-i18n":{ "project":"aiyanbo/scala-i18n", "repoUrl":"https://github.com/aiyanbo/scala-i18n.git", @@ -683,48 +639,11 @@ ] } }, - "ajozwik/pekko-smtp-server":{ - "project":"ajozwik/pekko-smtp-server", - "repoUrl":"https://github.com/ajozwik/pekko-smtp-server.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.github.ajozwik%pekko-smtp com.github.ajozwik%smtp-util", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, "ajozwik/protoquill-generic":{ "project":"ajozwik/protoquill-generic", "repoUrl":"https://github.com/ajozwik/protoquill-generic.git", - "revision":"v0.5.8", - "version":"0.5.8", + "revision":"v0.5.6", + "version":"0.5.6", "targets":"com.github.ajozwik%repository-monad com.github.ajozwik%repository com.github.ajozwik%repository-jdbc-monad com.github.ajozwik%repository-doobie com.github.ajozwik%repository-cassandra com.github.ajozwik%quill-jdbc-zio", "config":{ "projects":{ @@ -761,8 +680,8 @@ "akiomik/cats-nio-file":{ "project":"akiomik/cats-nio-file", "repoUrl":"https://github.com/akiomik/cats-nio-file.git", - "revision":"v1.10.0", - "version":"1.10.0", + "revision":"v1.7.0", + "version":"1.7.0", "targets":"io.github.akiomik%cats-nio-file", "config":{ "projects":{ @@ -835,8 +754,8 @@ "akka/akka":{ "project":"akka/akka", "repoUrl":"https://github.com/akka/akka.git", - "revision":"v2.9.0-M2", - "version":"2.9.0-M2", + "revision":"v2.8.2", + "version":"2.8.2", "targets":"com.typesafe.akka%akka-multi-node-testkit com.typesafe.akka%akka-bom com.typesafe.akka%akka-coordination com.typesafe.akka%akka-persistence-tck com.typesafe.akka%akka-actor com.typesafe.akka%akka-cluster-sharding-typed com.typesafe.akka%akka-cluster com.typesafe.akka%akka-protobuf-v3 com.typesafe.akka%akka-distributed-data com.typesafe.akka%akka-stream com.typesafe.akka%akka-pki com.typesafe.akka%akka-stream-typed com.typesafe.akka%akka-persistence com.typesafe.akka%akka-cluster-sharding com.typesafe.akka%akka-cluster-metrics com.typesafe.akka%akka-discovery com.typesafe.akka%akka-actor-typed com.typesafe.akka%akka-persistence-query com.typesafe.akka%akka-slf4j com.typesafe.akka%akka-persistence-typed com.typesafe.akka%akka-remote com.typesafe.akka%akka-persistence-testkit com.typesafe.akka%akka-cluster-typed com.typesafe.akka%akka-actor-testkit-typed com.typesafe.akka%akka-testkit com.typesafe.akka%akka-serialization-jackson com.typesafe.akka%akka-stream-testkit com.typesafe.akka%akka-cluster-tools", "config":{ "projects":{ @@ -868,7 +787,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3Version = \"3.3.1\"", + "pattern":"val scala3Version = \"3.2.2\"", "replaceWith":"val scala3Version = \"\"" } ] @@ -877,8 +796,8 @@ "akka/akka-diagnostics":{ "project":"akka/akka-diagnostics", "repoUrl":"https://github.com/akka/akka-diagnostics.git", - "revision":"v2.0.1", - "version":"2.0.1", + "revision":"v2.0.0", + "version":"2.0.0", "targets":"com.lightbend.akka%akka-diagnostics", "config":{ "projects":{ @@ -918,8 +837,8 @@ "akka/akka-grpc":{ "project":"akka/akka-grpc", "repoUrl":"https://github.com/akka/akka-grpc.git", - "revision":"v2.3.4", - "version":"2.3.4", + "revision":"v2.3.2", + "version":"2.3.2", "targets":"com.lightbend.akka.grpc%akka-grpc-interop-tests com.lightbend.akka.grpc%akka-grpc-runtime", "config":{ "projects":{ @@ -959,8 +878,8 @@ "akka/akka-http":{ "project":"akka/akka-http", "repoUrl":"https://github.com/akka/akka-http.git", - "revision":"v10.5.3", - "version":"10.5.3", + "revision":"v10.5.2", + "version":"10.5.2", "targets":"com.typesafe.akka%akka-http-spray-json com.typesafe.akka%akka-parsing com.typesafe.akka%akka-http2-support com.typesafe.akka%akka-http-testkit com.typesafe.akka%akka-http-xml com.typesafe.akka%akka-http com.typesafe.akka%akka-http-bom com.typesafe.akka%akka-http-core com.typesafe.akka%akka-http-caching com.typesafe.akka%akka-http-jackson", "config":{ "projects":{ @@ -1000,8 +919,8 @@ "akka/akka-management":{ "project":"akka/akka-management", "repoUrl":"https://github.com/akka/akka-management.git", - "revision":"v1.5.0-M1", - "version":"1.5.0-M1", + "revision":"v1.4.0", + "version":"1.4.0", "targets":"com.lightbend.akka.management%akka-management-pki com.lightbend.akka.management%akka-rolling-update-kubernetes com.lightbend.akka.management%akka-management-loglevels-logback com.lightbend.akka.management%akka-management-loglevels-log4j2 com.lightbend.akka.management%akka-lease-kubernetes com.lightbend.akka.management%akka-management com.lightbend.akka.management%akka-management-cluster-http com.lightbend.akka.management%akka-management-cluster-bootstrap", "config":{ "projects":{ @@ -1032,7 +951,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val Scala3 = \"3.3.1\"", + "pattern":"val Scala3 = \"3.2.2\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -1082,8 +1001,8 @@ "akka/akka-persistence-r2dbc":{ "project":"akka/akka-persistence-r2dbc", "repoUrl":"https://github.com/akka/akka-persistence-r2dbc.git", - "revision":"v1.2.0-M5", - "version":"1.2.0-M5", + "revision":"v1.1.0", + "version":"1.1.0", "targets":"com.lightbend.akka%akka-persistence-r2dbc", "config":{ "projects":{ @@ -1123,9 +1042,9 @@ "akka/akka-projection":{ "project":"akka/akka-projection", "repoUrl":"https://github.com/akka/akka-projection.git", - "revision":"v1.5.0-M4", - "version":"1.5.0-M4", - "targets":"com.lightbend.akka%akka-projection-jdbc com.lightbend.akka%akka-projection-r2dbc com.lightbend.akka%akka-projection-kafka com.lightbend.akka%akka-projection-eventsourced com.lightbend.akka%akka-projection-core com.lightbend.akka%akka-projection-grpc com.lightbend.akka%akka-projection-durable-state com.lightbend.akka%akka-projection-testkit com.lightbend.akka%akka-projection-cassandra", + "revision":"v1.4.0", + "version":"1.4.0", + "targets":"com.lightbend.akka%akka-projection-jdbc com.lightbend.akka%akka-projection-r2dbc com.lightbend.akka%akka-projection-kafka com.lightbend.akka%akka-projection-eventsourced com.lightbend.akka%akka-projection-core com.lightbend.akka%akka-projection-grpc com.lightbend.akka%akka-projection-durable-state com.lightbend.akka%akka-projection-testkit", "config":{ "projects":{ "exclude":[ @@ -1164,8 +1083,8 @@ "akka/alpakka":{ "project":"akka/alpakka", "repoUrl":"https://github.com/akka/alpakka.git", - "revision":"v6.0.2", - "version":"6.0.2", + "revision":"v6.0.1", + "version":"6.0.1", "targets":"com.lightbend.akka%akka-stream-alpakka-amqp com.lightbend.akka%akka-stream-alpakka-avroparquet com.lightbend.akka%akka-stream-alpakka-s3 com.lightbend.akka%akka-stream-alpakka-cassandra com.lightbend.akka%akka-stream-alpakka-csv", "config":{ "projects":{ @@ -1246,8 +1165,8 @@ "alejandrohdezma/dummy":{ "project":"alejandrohdezma/dummy", "repoUrl":"https://github.com/alejandrohdezma/dummy.git", - "revision":"v0.5.1", - "version":"0.5.1", + "revision":"v0.4.0", + "version":"0.4.0", "targets":"com.alejandrohdezma%dummy", "config":{ "projects":{ @@ -1287,8 +1206,8 @@ "alejandrohdezma/http4s-munit":{ "project":"alejandrohdezma/http4s-munit", "repoUrl":"https://github.com/alejandrohdezma/http4s-munit.git", - "revision":"v0.15.1", - "version":"0.15.1", + "revision":"v0.15.0", + "version":"0.15.0", "targets":"com.alejandrohdezma%http4s-munit", "config":{ "projects":{ @@ -1319,7 +1238,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", + "pattern":"val Scala3 = \"3.1.3\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -1328,8 +1247,8 @@ "alejandrohdezma/sbt-mdoc-toc":{ "project":"alejandrohdezma/sbt-mdoc-toc", "repoUrl":"https://github.com/alejandrohdezma/sbt-mdoc-toc.git", - "revision":"v0.4.1", - "version":"0.4.1", + "revision":"v0.4.0", + "version":"0.4.0", "targets":"com.alejandrohdezma%mdoc-toc-generator", "config":{ "projects":{ @@ -1365,8 +1284,8 @@ "alejandrohdezma/sbt-propagate":{ "project":"alejandrohdezma/sbt-propagate", "repoUrl":"https://github.com/alejandrohdezma/sbt-propagate.git", - "revision":"v0.2.1", - "version":"0.2.1", + "revision":"v0.2.0", + "version":"0.2.0", "targets":"com.alejandrohdezma%resource-generator", "config":{ "projects":{ @@ -1402,8 +1321,8 @@ "alexarchambault/case-app":{ "project":"alexarchambault/case-app", "repoUrl":"https://github.com/alexarchambault/case-app.git", - "revision":"v2.1.0-M26", - "version":"2.1.0-M26", + "revision":"v2.1.0-M24", + "version":"2.1.0-M24", "targets":"com.github.alexarchambault%case-app-annotations com.github.alexarchambault%case-app-cats-effect-2 com.github.alexarchambault%case-app com.github.alexarchambault%case-app-cats com.github.alexarchambault%case-app-util", "config":{ "projects":{ @@ -1434,7 +1353,7 @@ "sourcePatches":[ { "path":"project/Settings.scala", - "pattern":"def scala3 = \"3.3.1\"", + "pattern":"def scala3 = \"3.2.1\"", "replaceWith":"def scala3 = \"\"" } ] @@ -1457,7 +1376,7 @@ "alexdupre/coinpayments-scala":{ "project":"alexdupre/coinpayments-scala", "repoUrl":"https://github.com/alexdupre/coinpayments-scala.git", - "revision":"", + "revision":"199178811017ae2bc9b0832edc7f9e54cf15853f", "version":"1.3", "targets":"com.alexdupre%coinpayments" }, @@ -1471,46 +1390,9 @@ "almond-sh/almond":{ "project":"almond-sh/almond", "repoUrl":"https://github.com/almond-sh/almond.git", - "revision":"v0.14.0-RC14", - "version":"0.14.0-RC14", - "targets":"sh.almond%shared-directives sh.almond%logger sh.almond%coursier-logger sh.almond%toree-hooks sh.almond%launcher", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "alterationx10/opinionated-zio":{ - "project":"alterationx10/opinionated-zio", - "repoUrl":"https://github.com/alterationx10/opinionated-zio.git", - "revision":"v0.0.4", - "version":"0.0.4", - "targets":"com.alterationx10%opinionated-zio com.alterationx10%opinionated-zio-test", + "revision":"v0.13.14", + "version":"0.13.14", + "targets":"sh.almond%logger sh.almond%toree-hooks", "config":{ "projects":{ "exclude":[ @@ -1521,7 +1403,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -1545,8 +1427,8 @@ "altoo-ag/akka-kryo-serialization":{ "project":"altoo-ag/akka-kryo-serialization", "repoUrl":"https://github.com/altoo-ag/akka-kryo-serialization.git", - "revision":"v2.5.1", - "version":"2.5.1", + "revision":"v2.5.0", + "version":"2.5.0", "targets":"io.altoo%akka-kryo-serialization io.altoo%akka-kryo-serialization-typed", "config":{ "projects":{ @@ -1579,80 +1461,6 @@ ] } }, - "altoo-ag/pekko-kryo-serialization":{ - "project":"altoo-ag/pekko-kryo-serialization", - "repoUrl":"https://github.com/altoo-ag/pekko-kryo-serialization.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"io.altoo%pekko-kryo-serialization io.altoo%pekko-kryo-serialization-typed", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"21" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "altoo-ag/scala-kryo-serialization":{ - "project":"altoo-ag/scala-kryo-serialization", - "repoUrl":"https://github.com/altoo-ag/scala-kryo-serialization.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"io.altoo%scala-kryo-serialization", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"21" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, "analogweb/analogweb-scala":{ "project":"analogweb/analogweb-scala", "repoUrl":"https://github.com/analogweb/analogweb-scala.git", @@ -1690,13 +1498,6 @@ ] } }, - "andimiller/decline-completion":{ - "project":"andimiller/decline-completion", - "repoUrl":"https://github.com/andimiller/decline-completion.git", - "revision":"0.0.3", - "version":"0.0.3", - "targets":"net.andimiller%decline-completion" - }, "andimiller/hedgehogs":{ "project":"andimiller/hedgehogs", "repoUrl":"https://github.com/andimiller/hedgehogs.git", @@ -1783,8 +1584,8 @@ "ant8e/uuid4cats-effect":{ "project":"ant8e/uuid4cats-effect", "repoUrl":"https://github.com/ant8e/uuid4cats-effect.git", - "revision":"v0.3.1", - "version":"0.3.1", + "revision":"v0.2.0", + "version":"0.2.0", "targets":"tech.ant8e%uuid4cats-effect", "config":{ "projects":{ @@ -1817,43 +1618,6 @@ ] } }, - "antognini/type-safe-equality":{ - "project":"antognini/type-safe-equality", - "repoUrl":"https://github.com/antognini/type-safe-equality.git", - "revision":"0.6.0", - "version":"0.6.0", - "targets":"ch.produs%type-safe-equality", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, "aoiroaoino/nanolens":{ "project":"aoiroaoino/nanolens", "repoUrl":"https://github.com/aoiroaoino/nanolens.git", @@ -1891,12 +1655,12 @@ ] } }, - "apache/incubator-pekko":{ - "project":"apache/incubator-pekko", - "repoUrl":"https://github.com/apache/incubator-pekko.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"org.apache.pekko%pekko-stream-typed org.apache.pekko%pekko-persistence org.apache.pekko%pekko-slf4j org.apache.pekko%pekko-actor org.apache.pekko%pekko-cluster-sharding-typed org.apache.pekko%pekko-persistence-query org.apache.pekko%pekko-cluster-tools org.apache.pekko%pekko-actor-typed org.apache.pekko%pekko-actor-testkit-typed org.apache.pekko%pekko-stream-testkit org.apache.pekko%pekko-persistence-testkit org.apache.pekko%pekko-bom org.apache.pekko%pekko-protobuf-v3 org.apache.pekko%pekko-persistence-typed org.apache.pekko%pekko-serialization-jackson org.apache.pekko%pekko-remote org.apache.pekko%pekko-persistence-tck org.apache.pekko%pekko-testkit org.apache.pekko%pekko-discovery org.apache.pekko%pekko-cluster-metrics org.apache.pekko%pekko-stream org.apache.pekko%pekko-osgi org.apache.pekko%pekko-coordination org.apache.pekko%pekko-distributed-data org.apache.pekko%pekko-cluster-sharding org.apache.pekko%pekko-multi-node-testkit org.apache.pekko%pekko-protobuf org.apache.pekko%pekko-cluster-typed org.apache.pekko%pekko-pki org.apache.pekko%pekko-cluster", + "apache/incubator-pekko-persistence-dynamodb":{ + "project":"apache/incubator-pekko-persistence-dynamodb", + "repoUrl":"https://github.com/apache/incubator-pekko-persistence-dynamodb.git", + "revision":"e4a7eb0aa2b088ac97710aaf6904088512c5807c", + "version":"HEAD", + "targets":"*%*", "config":{ "projects":{ "exclude":[ @@ -1907,7 +1671,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -1924,61 +1688,23 @@ }, "tests":"compile-only", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3Version = \"3.3.0\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "apache/incubator-pekko-connectors":{ - "project":"apache/incubator-pekko-connectors", - "repoUrl":"https://github.com/apache/incubator-pekko-connectors.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"org.apache.pekko%pekko-connectors-s3 org.apache.pekko%pekko-connectors-mqtt org.apache.pekko%pekko-connectors-avroparquet org.apache.pekko%pekko-connectors-hdfs org.apache.pekko%pekko-connectors-huawei-push-kit org.apache.pekko%pekko-connectors-google-cloud-pub-sub-grpc org.apache.pekko%pekko-connectors-geode org.apache.pekko%pekko-connectors-ironmq org.apache.pekko%pekko-connectors-google-cloud-bigquery-storage org.apache.pekko%pekko-connectors-xml org.apache.pekko%pekko-connectors-solr org.apache.pekko%pekko-connectors-kinesis org.apache.pekko%pekko-connectors-mqtt-streaming org.apache.pekko%pekko-connectors-udp org.apache.pekko%pekko-connectors-google-common org.apache.pekko%pekko-connectors-orientdb org.apache.pekko%pekko-connectors-couchbase org.apache.pekko%pekko-connectors-unix-domain-socket org.apache.pekko%pekko-connectors-azure-storage-queue org.apache.pekko%pekko-connectors-google-cloud-pub-sub org.apache.pekko%pekko-connectors-influxdb org.apache.pekko%pekko-connectors-csv org.apache.pekko%pekko-connectors-jms org.apache.pekko%pekko-connectors-pravega org.apache.pekko%pekko-connectors-spring-web org.apache.pekko%pekko-connectors-sns org.apache.pekko%pekko-connectors-ftp org.apache.pekko%pekko-connectors-hbase org.apache.pekko%pekko-connectors-aws-event-bridge org.apache.pekko%pekko-connectors-google-fcm org.apache.pekko%pekko-connectors-elasticsearch org.apache.pekko%pekko-connectors-awslambda org.apache.pekko%pekko-connectors-google-cloud-storage org.apache.pekko%pekko-connectors-cassandra org.apache.pekko%pekko-connectors-kudu org.apache.pekko%pekko-connectors-simple-codecs org.apache.pekko%pekko-connectors-sqs org.apache.pekko%pekko-connectors-file org.apache.pekko%pekko-connectors-amqp org.apache.pekko%pekko-connectors-google-cloud-bigquery org.apache.pekko%pekko-connectors-dynamodb org.apache.pekko%pekko-connectors-json-streaming org.apache.pekko%pekko-connectors-text org.apache.pekko%pekko-connectors-sse", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val Scala3 = \"3.3.0\"", - "replaceWith":"val Scala3 = \"\"" - } - ] - } + "aparo/zio-json-extra":{ + "project":"aparo/zio-json-extra", + "repoUrl":"https://github.com/aparo/zio-json-extra.git", + "revision":"4f53bdeac3f570e1c01714ee123339619b8aedd4", + "version":"0.5.0", + "targets":"io.megl%zio-json-extra io.megl%zio-json-diffson io.megl%zio-json-exception" }, - "apache/incubator-pekko-connectors-kafka":{ - "project":"apache/incubator-pekko-connectors-kafka", - "repoUrl":"https://github.com/apache/incubator-pekko-connectors-kafka.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"org.apache.pekko%pekko-connectors-kafka org.apache.pekko%pekko-connectors-kafka-cluster-sharding org.apache.pekko%pekko-connectors-kafka-testkit", + "apimorphism/telegramium":{ + "project":"apimorphism/telegramium", + "repoUrl":"https://github.com/apimorphism/telegramium.git", + "revision":"7.67.1", + "version":"7.67.1", + "targets":"io.github.apimorphism%telegramium-core io.github.apimorphism%telegramium-high", "config":{ "projects":{ "exclude":[ @@ -1989,7 +1715,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -2007,19 +1733,19 @@ "tests":"compile-only", "sourcePatches":[ { - "path":"project/Versions.scala", - "pattern":"val Scala3 = \"3.3.0\"", - "replaceWith":"val Scala3 = \"\"" + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "apache/incubator-pekko-grpc":{ - "project":"apache/incubator-pekko-grpc", - "repoUrl":"https://github.com/apache/incubator-pekko-grpc.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"org.apache.pekko%pekko-grpc-codegen org.apache.pekko%pekko-grpc-runtime", + "arainko/ducktape":{ + "project":"arainko/ducktape", + "repoUrl":"https://github.com/arainko/ducktape.git", + "revision":"v0.1.8", + "version":"0.1.8", + "targets":"io.github.arainko%ducktape", "config":{ "projects":{ "exclude":[ @@ -2030,7 +1756,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -2047,36 +1773,34 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "apache/incubator-pekko-http":{ - "project":"apache/incubator-pekko-http", - "repoUrl":"https://github.com/apache/incubator-pekko-http.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"org.apache.pekko%pekko-http org.apache.pekko%pekko-http-core org.apache.pekko%pekko-http-spray-json org.apache.pekko%pekko-http-xml org.apache.pekko%pekko-http-jackson org.apache.pekko%pekko-http-caching org.apache.pekko%pekko-http-testkit org.apache.pekko%pekko-http-bom org.apache.pekko%pekko-parsing org.apache.pekko%pekko-http-cors", + "argonaut-io/argonaut":{ + "project":"argonaut-io/argonaut", + "repoUrl":"https://github.com/argonaut-io/argonaut.git", + "revision":"v6.2.6", + "version":"6.2.6", + "targets":"io.argonaut%argonaut io.argonaut%argonaut-cats io.argonaut%argonaut-scalaz" + }, + "ariskk/burner4s":{ + "project":"ariskk/burner4s", + "repoUrl":"https://github.com/ariskk/burner4s.git", + "revision":"ed43d5da1a1274a482371727dc7199f4f3437ab0", + "version":"0.1.7", + "targets":"com.ariskk%burner4s", "config":{ "projects":{ "exclude":[ - "pekko-http-scalafix-rules", - "pekko-http-scalafix-tests", - "http-scalafix-test-input", - "http-scalafix-test-output", - "pekko-http-tests", - "pekko-http-docs" + ], "overrides":{ } }, "java":{ - "version":"21" + }, "sbt":{ "commands":[ @@ -2094,19 +1818,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/Dependencies.scala", - "pattern":"val scala3Version = \"3.3.0\"", - "replaceWith":"val scala3Version = \"\"" + "path":"build.sbt", + "pattern":"val scala3 = \"3.0.0\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "apache/incubator-pekko-management":{ - "project":"apache/incubator-pekko-management", - "repoUrl":"https://github.com/apache/incubator-pekko-management.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"org.apache.pekko%pekko-lease-kubernetes org.apache.pekko%pekko-discovery-aws-api org.apache.pekko%pekko-management-cluster-bootstrap org.apache.pekko%pekko-management-loglevels-logback org.apache.pekko%pekko-discovery-consul org.apache.pekko%pekko-management-loglevels-log4j2 org.apache.pekko%pekko-discovery-kubernetes-api org.apache.pekko%pekko-management org.apache.pekko%pekko-management-pki org.apache.pekko%pekko-management-cluster-http org.apache.pekko%pekko-discovery-marathon-api org.apache.pekko%pekko-discovery-aws-api-async", + "ariskk/flink4s":{ + "project":"ariskk/flink4s", + "repoUrl":"https://github.com/ariskk/flink4s.git", + "revision":"f27cf2d24400f1c8d8353f66593d00f6f64052da", + "version":"1.15.2", + "targets":"com.ariskk%flink4s", "config":{ "projects":{ "exclude":[ @@ -2135,19 +1859,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/Dependencies.scala", - "pattern":"val scala3Version = \"3.3.0\"", + "path":"build.sbt", + "pattern":"val scala3Version = \"3.1.2\"", "replaceWith":"val scala3Version = \"\"" } ] } }, - "apache/incubator-pekko-persistence-cassandra":{ - "project":"apache/incubator-pekko-persistence-cassandra", - "repoUrl":"https://github.com/apache/incubator-pekko-persistence-cassandra.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"org.apache.pekko%pekko-persistence-cassandra org.apache.pekko%pekko-persistence-cassandra-launcher", + "armanbilge/bayou":{ + "project":"armanbilge/bayou", + "repoUrl":"https://github.com/armanbilge/bayou.git", + "revision":"5b9bc5de97400b744dd2d7d458157d2be0438f8e", + "version":"0.1-2df94c0", + "targets":"com.armanbilge%bayou", "config":{ "projects":{ "exclude":[ @@ -2158,7 +1882,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -2175,20 +1899,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3Version = \"3.3.0\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "apache/incubator-pekko-persistence-dynamodb":{ - "project":"apache/incubator-pekko-persistence-dynamodb", - "repoUrl":"https://github.com/apache/incubator-pekko-persistence-dynamodb.git", - "revision":"", - "version":"HEAD", - "targets":"*%*", + "armanbilge/calico":{ + "project":"armanbilge/calico", + "repoUrl":"https://github.com/armanbilge/calico.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"com.armanbilge%calico-frp", "config":{ "projects":{ "exclude":[ @@ -2199,7 +1919,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -2214,18 +1934,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "apache/incubator-pekko-projection":{ - "project":"apache/incubator-pekko-projection", - "repoUrl":"https://github.com/apache/incubator-pekko-projection.git", - "revision":"v1.0.0-RC1", - "version":"1.0.0", - "targets":"org.apache.pekko%pekko-projection-core org.apache.pekko%pekko-projection-jdbc org.apache.pekko%pekko-projection-cassandra org.apache.pekko%pekko-projection-testkit org.apache.pekko%pekko-projection-kafka org.apache.pekko%pekko-projection-eventsourced org.apache.pekko%pekko-projection-durable-state", + "armanbilge/cheshire":{ + "project":"armanbilge/cheshire", + "repoUrl":"https://github.com/armanbilge/cheshire.git", + "revision":"ab305040f5c12cd396b7715a08fcc6b817b67fba", + "version":"0.0-ab30504", + "targets":"com.armanbilge%cheshire com.armanbilge%cheshire-likelihood com.armanbilge%cheshire-likelihood-laws", "config":{ "projects":{ "exclude":[ @@ -2236,7 +1956,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -2254,26 +1974,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/Dependencies.scala", - "pattern":"val Scala3 = \"3.3.1\"", + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.1\"", "replaceWith":"val Scala3 = \"\"" } ] } }, - "aparo/zio-json-extra":{ - "project":"aparo/zio-json-extra", - "repoUrl":"https://github.com/aparo/zio-json-extra.git", - "revision":"", - "version":"0.6.2", - "targets":"io.megl%zio-json-extra io.megl%zio-json-diffson io.megl%zio-json-exception" - }, - "apimorphism/telegramium":{ - "project":"apimorphism/telegramium", - "repoUrl":"https://github.com/apimorphism/telegramium.git", - "revision":"8.69.0", - "version":"8.69.0", - "targets":"io.github.apimorphism%telegramium-core io.github.apimorphism%telegramium-high", + "armanbilge/circe-scala-yaml":{ + "project":"armanbilge/circe-scala-yaml", + "repoUrl":"https://github.com/armanbilge/circe-scala-yaml.git", + "revision":"v0.0.4", + "version":"0.0.4", + "targets":"com.armanbilge%circe-scala-yaml", "config":{ "projects":{ "exclude":[ @@ -2284,7 +1997,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -2299,33 +2012,31 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "arainko/ducktape":{ - "project":"arainko/ducktape", - "repoUrl":"https://github.com/arainko/ducktape.git", - "revision":"v0.1.11", - "version":"0.1.11", - "targets":"io.github.arainko%ducktape", + "armanbilge/feral":{ + "project":"armanbilge/feral", + "repoUrl":"https://github.com/armanbilge/feral.git", + "revision":"1fcb47a4cc0b59d931b19ec2048b0061e9130618", + "version":"0.0-a75a626", + "targets":"com.armanbilge%feral-lambda-cloudformation-custom-resource com.armanbilge%feral-lambda com.armanbilge%feral-core com.armanbilge%feral-lambda-events com.armanbilge%feral-lambda-natchez com.armanbilge%feral-lambda-api-gateway-proxy-http4s", "config":{ "projects":{ "exclude":[ - + "com.armanbilge%feral-lambda-events", + "com.armanbilge%feral-lambda-natchez", + "com.armanbilge%feral-lambda-api-gateway-proxy-http4s" ], "overrides":{ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -2342,16 +2053,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "argonaut-io/argonaut":{ - "project":"argonaut-io/argonaut", - "repoUrl":"https://github.com/argonaut-io/argonaut.git", - "revision":"v6.3.9", - "version":"6.3.9", - "targets":"io.argonaut%argonaut io.argonaut%argonaut-cats io.argonaut%argonaut-jawn io.argonaut%argonaut-scalaz io.argonaut%argonaut-monocle3", + "armanbilge/fs2":{ + "project":"armanbilge/fs2", + "repoUrl":"https://github.com/armanbilge/fs2.git", + "revision":"2efbedeb8316bf7b83f01964733089df7a883291", + "version":"3.0-136-4a257e0", + "targets":"com.armanbilge%fs2-core com.armanbilge%fs2-io com.armanbilge%fs2-reactive-streams", "config":{ "projects":{ "exclude":[ @@ -2362,7 +2077,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -2379,20 +2094,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/ScalaSettings.scala", - "pattern":"def Scala3 = \"3.3.1\"", - "replaceWith":"def Scala3 = \"\"" - } + ] } }, - "ariskk/burner4s":{ - "project":"ariskk/burner4s", - "repoUrl":"https://github.com/ariskk/burner4s.git", - "revision":"", - "version":"0.1.7", - "targets":"com.ariskk%burner4s", + "armanbilge/gcp4s":{ + "project":"armanbilge/gcp4s", + "repoUrl":"https://github.com/armanbilge/gcp4s.git", + "revision":"c18587974c17cfb5d90520ed444ba1c0a6995447", + "version":"0.1-2e738ad", + "targets":"com.armanbilge%gcp4s com.armanbilge%gcp4s-bigquery com.armanbilge%gcp4s-trace", "config":{ "projects":{ "exclude":[ @@ -2403,7 +2114,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -2418,22 +2129,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.0.0\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "ariskk/flink4s":{ - "project":"ariskk/flink4s", - "repoUrl":"https://github.com/ariskk/flink4s.git", - "revision":"", - "version":"1.15.2", - "targets":"com.ariskk%flink4s", + "armanbilge/ip4s":{ + "project":"armanbilge/ip4s", + "repoUrl":"https://github.com/armanbilge/ip4s.git", + "revision":"b7fbffad0ed4257d1bafd60c33535a3189a55a52", + "version":"3.1.3-83-cfa2ec1", + "targets":"com.armanbilge%ip4s-core com.armanbilge%ip4s-test-kit", "config":{ "projects":{ "exclude":[ @@ -2444,7 +2155,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -2461,20 +2172,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.1.2\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "armanbilge/bayou":{ - "project":"armanbilge/bayou", - "repoUrl":"https://github.com/armanbilge/bayou.git", - "revision":"", - "version":"0.1-2df94c0", - "targets":"com.armanbilge%bayou", + "armanbilge/jawn-fs2":{ + "project":"armanbilge/jawn-fs2", + "repoUrl":"https://github.com/armanbilge/jawn-fs2.git", + "revision":"a6cd60b78e66321c54af7137861f61780325248a", + "version":"2.2.0-129-fdba7f4", + "targets":"org.typelevel%jawn-fs2", "config":{ "projects":{ "exclude":[ @@ -2506,12 +2213,12 @@ ] } }, - "armanbilge/calico":{ - "project":"armanbilge/calico", - "repoUrl":"https://github.com/armanbilge/calico.git", - "revision":"v0.2.1", - "version":"0.2.1", - "targets":"com.armanbilge%calico-frp", + "armanbilge/litter":{ + "project":"armanbilge/litter", + "repoUrl":"https://github.com/armanbilge/litter.git", + "revision":"v0.1.1", + "version":"0.1.1", + "targets":"com.armanbilge%litter com.armanbilge%litter-laws", "config":{ "projects":{ "exclude":[ @@ -2522,11 +2229,11 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ - + "set every Test/classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat" ], "options":[ @@ -2539,16 +2246,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.0.0\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "armanbilge/cheshire":{ - "project":"armanbilge/cheshire", - "repoUrl":"https://github.com/armanbilge/cheshire.git", - "revision":"", - "version":"0.0-ab30504", - "targets":"com.armanbilge%cheshire com.armanbilge%cheshire-likelihood com.armanbilge%cheshire-likelihood-laws", + "armanbilge/log4cats":{ + "project":"armanbilge/log4cats", + "repoUrl":"https://github.com/armanbilge/log4cats.git", + "revision":"36bfbb6bd8d89e5f81575f85c78b0f8616de5c0b", + "version":"2.5-a595fcf", + "targets":"org.typelevel%log4cats-core org.typelevel%log4cats-noop org.typelevel%log4cats-slf4j org.typelevel%log4cats-testing", "config":{ "projects":{ "exclude":[ @@ -2559,7 +2270,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -2578,18 +2289,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.1\"", + "pattern":"val Scala3 = \"3.2.2\"", "replaceWith":"val Scala3 = \"\"" } ] } }, - "armanbilge/circe-scala-yaml":{ - "project":"armanbilge/circe-scala-yaml", - "repoUrl":"https://github.com/armanbilge/circe-scala-yaml.git", - "revision":"v0.0.4", - "version":"0.0.4", - "targets":"com.armanbilge%circe-scala-yaml", + "armanbilge/munit-cats-effect":{ + "project":"armanbilge/munit-cats-effect", + "repoUrl":"https://github.com/armanbilge/munit-cats-effect.git", + "revision":"7588d4db0551310848147ae980c90b69ed52d6d3", + "version":"2.0-5e03bfc", + "targets":"org.typelevel%munit-cats-effect", "config":{ "projects":{ "exclude":[ @@ -2621,25 +2332,60 @@ ] } }, - "armanbilge/feral":{ - "project":"armanbilge/feral", - "repoUrl":"https://github.com/armanbilge/feral.git", - "revision":"", - "version":"0.0-a75a626", - "targets":"com.armanbilge%feral-lambda-cloudformation-custom-resource com.armanbilge%feral-lambda com.armanbilge%feral-core com.armanbilge%feral-lambda-events com.armanbilge%feral-lambda-natchez com.armanbilge%feral-lambda-api-gateway-proxy-http4s", + "armanbilge/porcupine":{ + "project":"armanbilge/porcupine", + "repoUrl":"https://github.com/armanbilge/porcupine.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"com.armanbilge%porcupine", "config":{ "projects":{ "exclude":[ - "com.armanbilge%feral-lambda-events", - "com.armanbilge%feral-lambda-natchez", - "com.armanbilge%feral-lambda-api-gateway-proxy-http4s" + ], "overrides":{ } }, "java":{ - "version":"11" + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "armanbilge/sadalsuud":{ + "project":"armanbilge/sadalsuud", + "repoUrl":"https://github.com/armanbilge/sadalsuud.git", + "revision":"0e896bf8bb7f1357c49da21021fc03866f99e030", + "version":"0.0-0e896bf", + "targets":"com.armanbilge%sadalsuud", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" }, "sbt":{ "commands":[ @@ -2658,18 +2404,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", + "pattern":"val Scala3 = \"3.2.2\"", "replaceWith":"val Scala3 = \"\"" } ] } }, - "armanbilge/fs2":{ - "project":"armanbilge/fs2", - "repoUrl":"https://github.com/armanbilge/fs2.git", - "revision":"", - "version":"3.0-136-4a257e0", - "targets":"com.armanbilge%fs2-core com.armanbilge%fs2-io com.armanbilge%fs2-reactive-streams", + "armanbilge/saslprep":{ + "project":"armanbilge/saslprep", + "repoUrl":"https://github.com/armanbilge/saslprep.git", + "revision":"v0.1.1", + "version":"0.1.1", + "targets":"com.armanbilge%saslprep", "config":{ "projects":{ "exclude":[ @@ -2680,7 +2426,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -2701,12 +2447,12 @@ ] } }, - "armanbilge/gcp4s":{ - "project":"armanbilge/gcp4s", - "repoUrl":"https://github.com/armanbilge/gcp4s.git", - "revision":"", - "version":"0.1-2ac68bb", - "targets":"com.armanbilge%gcp4s com.armanbilge%gcp4s-bigquery com.armanbilge%gcp4s-trace", + "armanbilge/scala-native-config-brew":{ + "project":"armanbilge/scala-native-config-brew", + "repoUrl":"https://github.com/armanbilge/scala-native-config-brew.git", + "revision":"v0.1.3", + "version":"0.1.3", + "targets":"com.armanbilge%scala-native-config-brew", "config":{ "projects":{ "exclude":[ @@ -2732,22 +2478,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.1\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "armanbilge/ip4s":{ - "project":"armanbilge/ip4s", - "repoUrl":"https://github.com/armanbilge/ip4s.git", - "revision":"", - "version":"3.1.3-83-cfa2ec1", - "targets":"com.armanbilge%ip4s-core com.armanbilge%ip4s-test-kit", + "armanbilge/scalacheck-effect":{ + "project":"armanbilge/scalacheck-effect", + "repoUrl":"https://github.com/armanbilge/scalacheck-effect.git", + "revision":"66e864e975973e5873b2b86d7d5af06102c95a67", + "version":"2.0-9366e44", + "targets":"org.typelevel%scalacheck-effect org.typelevel%scalacheck-effect-munit", "config":{ "projects":{ "exclude":[ @@ -2779,12 +2525,12 @@ ] } }, - "armanbilge/jawn-fs2":{ - "project":"armanbilge/jawn-fs2", - "repoUrl":"https://github.com/armanbilge/jawn-fs2.git", - "revision":"", - "version":"2.2.0-129-fdba7f4", - "targets":"org.typelevel%jawn-fs2", + "armanbilge/schrodinger":{ + "project":"armanbilge/schrodinger", + "repoUrl":"https://github.com/armanbilge/schrodinger.git", + "revision":"v0.3.0-M2", + "version":"0.3.0-M2", + "targets":"com.armanbilge%schrodinger com.armanbilge%schrodinger-kernel-testkit com.armanbilge%schrodinger-laws com.armanbilge%schrodinger-random com.armanbilge%schrodinger-stats com.armanbilge%schrodinger-monte-carlo com.armanbilge%schrodinger-math com.armanbilge%schrodinger-kernel com.armanbilge%schrodinger-testkit", "config":{ "projects":{ "exclude":[ @@ -2795,7 +2541,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -2812,16 +2558,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.1.1-RC1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "armanbilge/litter":{ - "project":"armanbilge/litter", - "repoUrl":"https://github.com/armanbilge/litter.git", - "revision":"v0.1.1", - "version":"0.1.1", - "targets":"com.armanbilge%litter com.armanbilge%litter-laws", + "armanbilge/stratus":{ + "project":"armanbilge/stratus", + "repoUrl":"https://github.com/armanbilge/stratus.git", + "revision":"20bb7469dc774c41a70485040c80a3b23abbf05f", + "version":"0.0-20bb746", + "targets":"com.armanbilge%stratus-core", "config":{ "projects":{ "exclude":[ @@ -2832,11 +2582,11 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ - "set every Test/classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat" + ], "options":[ @@ -2849,20 +2599,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.0.0\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "armanbilge/log4cats":{ - "project":"armanbilge/log4cats", - "repoUrl":"https://github.com/armanbilge/log4cats.git", - "revision":"", - "version":"2.5-a595fcf", - "targets":"org.typelevel%log4cats-core org.typelevel%log4cats-noop org.typelevel%log4cats-slf4j org.typelevel%log4cats-testing", + "armanbilge/van-cats":{ + "project":"armanbilge/van-cats", + "repoUrl":"https://github.com/armanbilge/van-cats.git", + "revision":"b9d385f66ca469475c001652aa274ec4d384f11e", + "version":"0.0-b9d385f", + "targets":"com.armanbilge%van-cats", "config":{ "projects":{ "exclude":[ @@ -2873,7 +2619,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -2892,18 +2638,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", + "pattern":"val Scala3 = \"3.1.2\"", "replaceWith":"val Scala3 = \"\"" } ] } }, - "armanbilge/munit-cats-effect":{ - "project":"armanbilge/munit-cats-effect", - "repoUrl":"https://github.com/armanbilge/munit-cats-effect.git", - "revision":"", - "version":"2.0-5e03bfc", - "targets":"org.typelevel%munit-cats-effect", + "arturopala/buffer-and-slice":{ + "project":"arturopala/buffer-and-slice", + "repoUrl":"https://github.com/arturopala/buffer-and-slice.git", + "revision":"v1.58.0", + "version":"1.58.0", + "targets":"com.github.arturopala%buffer-and-slice", "config":{ "projects":{ "exclude":[ @@ -2914,7 +2660,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -2931,16 +2677,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "armanbilge/porcupine":{ - "project":"armanbilge/porcupine", - "repoUrl":"https://github.com/armanbilge/porcupine.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"com.armanbilge%porcupine", + "arturopala/gitignore":{ + "project":"arturopala/gitignore", + "repoUrl":"https://github.com/arturopala/gitignore.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"com.github.arturopala%gitignore", "config":{ "projects":{ "exclude":[ @@ -2951,7 +2701,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -2968,16 +2718,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "armanbilge/sadalsuud":{ - "project":"armanbilge/sadalsuud", - "repoUrl":"https://github.com/armanbilge/sadalsuud.git", - "revision":"", - "version":"0.0-0e896bf", - "targets":"com.armanbilge%sadalsuud", + "arturopala/validator":{ + "project":"arturopala/validator", + "repoUrl":"https://github.com/arturopala/validator.git", + "revision":"v0.21.0", + "version":"0.21.0", + "targets":"com.github.arturopala%validator", "config":{ "projects":{ "exclude":[ @@ -2988,7 +2742,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -3007,18 +2761,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "armanbilge/saslprep":{ - "project":"armanbilge/saslprep", - "repoUrl":"https://github.com/armanbilge/saslprep.git", - "revision":"v0.1.1", - "version":"0.1.1", - "targets":"com.armanbilge%saslprep", + "asflierl/sglicko2":{ + "project":"asflierl/sglicko2", + "repoUrl":"https://github.com/asflierl/sglicko2.git", + "revision":"3.0.0", + "version":"3.0.0", + "targets":"eu.flierl%sglicko2", "config":{ "projects":{ "exclude":[ @@ -3029,7 +2783,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -3050,53 +2804,12 @@ ] } }, - "armanbilge/scala-native-config-brew":{ - "project":"armanbilge/scala-native-config-brew", - "repoUrl":"https://github.com/armanbilge/scala-native-config-brew.git", - "revision":"v0.2.0-RC1", - "version":"0.2.0-RC1", - "targets":"com.armanbilge%scala-native-config-brew", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "armanbilge/scalacheck-effect":{ - "project":"armanbilge/scalacheck-effect", - "repoUrl":"https://github.com/armanbilge/scalacheck-effect.git", - "revision":"", - "version":"2.0-9366e44", - "targets":"org.typelevel%scalacheck-effect org.typelevel%scalacheck-effect-munit", + "ashwinbhaskar/sight-scala":{ + "project":"ashwinbhaskar/sight-scala", + "repoUrl":"https://github.com/ashwinbhaskar/sight-scala.git", + "revision":"77073fe20b2010fc2f5045a7935912c717b2d97a", + "version":"0.1.2", + "targets":"io.github.ashwinbhaskar%sight-client", "config":{ "projects":{ "exclude":[ @@ -3107,11 +2820,11 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ - + "set root/Test/unmanagedSources/excludeFilter ~= { _ || \"IntegrationTest.scala\" }" ], "options":[ @@ -3128,12 +2841,12 @@ ] } }, - "armanbilge/schrodinger":{ - "project":"armanbilge/schrodinger", - "repoUrl":"https://github.com/armanbilge/schrodinger.git", - "revision":"v0.3.0-M2", - "version":"0.3.0-M2", - "targets":"com.armanbilge%schrodinger com.armanbilge%schrodinger-kernel-testkit com.armanbilge%schrodinger-laws com.armanbilge%schrodinger-random com.armanbilge%schrodinger-stats com.armanbilge%schrodinger-monte-carlo com.armanbilge%schrodinger-math com.armanbilge%schrodinger-kernel com.armanbilge%schrodinger-testkit", + "atedeg/mdm":{ + "project":"atedeg/mdm", + "repoUrl":"https://github.com/atedeg/mdm.git", + "revision":"v4.0.0", + "version":"4.0.0", + "targets":"dev.atedeg.mdm%production dev.atedeg.mdm%client-orders dev.atedeg.mdm%milk-planning dev.atedeg.mdm%stocking dev.atedeg.mdm%production-planning dev.atedeg.mdm%restocking dev.atedeg.mdm%pricing", "config":{ "projects":{ "exclude":[ @@ -3144,11 +2857,12 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -3163,18 +2877,25 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.1-RC1\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3Version = \"3.1.3\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "armanbilge/stratus":{ - "project":"armanbilge/stratus", - "repoUrl":"https://github.com/armanbilge/stratus.git", - "revision":"", - "version":"0.0-20bb746", - "targets":"com.armanbilge%stratus-core", + "atedeg/scala-release":{ + "project":"atedeg/scala-release", + "repoUrl":"https://github.com/atedeg/scala-release.git", + "revision":"v1.0.3", + "version":"1.0.3", + "targets":"dev.atedeg%scala-release-test" + }, + "atnos-org/eff":{ + "project":"atnos-org/eff", + "repoUrl":"https://github.com/atnos-org/eff.git", + "revision":"v6.0.3", + "version":"6.0.3", + "targets":"org.atnos%eff-doobie org.atnos%eff-cats-effect org.atnos%eff org.atnos%eff-twitter org.atnos%eff-monix", "config":{ "projects":{ "exclude":[ @@ -3185,11 +2906,11 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ - + "set monixJVM/Test/unmanagedSources ~= (_.filterNot(_.getName == \"TaskEffectSpec.scala\"))" ], "options":[ @@ -3206,12 +2927,12 @@ ] } }, - "armanbilge/van-cats":{ - "project":"armanbilge/van-cats", - "repoUrl":"https://github.com/armanbilge/van-cats.git", - "revision":"", - "version":"0.0-b9d385f", - "targets":"com.armanbilge%van-cats", + "atry/futurebinding.scala":{ + "project":"atry/futurebinding.scala", + "repoUrl":"https://github.com/atry/futurebinding.scala.git", + "revision":"v12.1.1", + "version":"12.1.1", + "targets":"com.thoughtworks.binding%futurebinding", "config":{ "projects":{ "exclude":[ @@ -3222,7 +2943,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -3239,20 +2960,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.2\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "arturaz/doobie-typesafe":{ - "project":"arturaz/doobie-typesafe", - "repoUrl":"https://github.com/arturaz/doobie-typesafe.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.github.arturaz%doobie-typesafe", + "atry/html.scala":{ + "project":"atry/html.scala", + "repoUrl":"https://github.com/atry/html.scala.git", + "revision":"v3.0.3", + "version":"3.0.3", + "targets":"com.yang-bo%html-interpolationparser", "config":{ "projects":{ "exclude":[ @@ -3263,7 +2980,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -3284,12 +3001,12 @@ ] } }, - "arturopala/buffer-and-slice":{ - "project":"arturopala/buffer-and-slice", - "repoUrl":"https://github.com/arturopala/buffer-and-slice.git", - "revision":"v1.63.0", - "version":"1.63.0", - "targets":"com.github.arturopala%buffer-and-slice", + "augustjune/canoe":{ + "project":"augustjune/canoe", + "repoUrl":"https://github.com/augustjune/canoe.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"org.augustjune%canoe", "config":{ "projects":{ "exclude":[ @@ -3300,11 +3017,11 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ - + "set core.jvm/Test/unmanagedSources/excludeFilter ~= { _ || \"BroadcastSpec.scala\" || \"BotSpec.scala\" }" ], "options":[ @@ -3319,18 +3036,25 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", + "pattern":"val scala3 = \"3.1.2\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "arturopala/gitignore":{ - "project":"arturopala/gitignore", - "repoUrl":"https://github.com/arturopala/gitignore.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"com.github.arturopala%gitignore", + "autodeployai/pmml4s":{ + "project":"autodeployai/pmml4s", + "repoUrl":"https://github.com/autodeployai/pmml4s.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"org.pmml4s%pmml4s" + }, + "avast/datadog4s":{ + "project":"avast/datadog4s", + "repoUrl":"https://github.com/avast/datadog4s.git", + "revision":"v0.31.3", + "version":"0.31.3", + "targets":"com.avast.cloud%datadog4s-http4s com.avast.cloud%datadog4s com.avast.cloud%datadog4s-common com.avast.cloud%datadog4s-jvm com.avast.cloud%datadog4s-playground com.avast.cloud%datadog4s-statsd com.avast.cloud%datadog4s-api", "config":{ "projects":{ "exclude":[ @@ -3341,7 +3065,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -3359,19 +3083,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", + "path":"project/BuildSupport.scala", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "arturopala/validator":{ - "project":"arturopala/validator", - "repoUrl":"https://github.com/arturopala/validator.git", - "revision":"v0.22.0", - "version":"0.22.0", - "targets":"com.github.arturopala%validator", + "avast/scala-server-toolkit":{ + "project":"avast/scala-server-toolkit", + "repoUrl":"https://github.com/avast/scala-server-toolkit.git", + "revision":"v0.18.4", + "version":"0.18.4", + "targets":"com.avast%sst-bundle-monix-http4s-ember com.avast%sst-cassandra-datastax-driver com.avast%sst-http4s-server-blaze com.avast%sst-jvm-micrometer com.avast%sst-http4s-server-ember com.avast%sst-doobie-hikari-pureconfig com.avast%sst-micrometer-prometheus-pureconfig com.avast%sst-bundle-zio-http4s-blaze com.avast%sst-http4s-server com.avast%sst-micrometer-jmx-pureconfig com.avast%sst-sentry com.avast%sst-lettuce com.avast%sst-http4s-client-ember com.avast%sst-jdk-http-client com.avast%sst-micrometer-prometheus com.avast%sst-jvm-pureconfig com.avast%sst-flyway-pureconfig com.avast%sst-http4s-server-ember-pureconfig com.avast%sst-jvm com.avast%sst-monix-catnap-micrometer com.avast%sst-micrometer-statsd-pureconfig com.avast%sst-micrometer com.avast%sst-micrometer-jmx com.avast%sst-fs2-kafka-pureconfig com.avast%sst-http4s-server-blaze-pureconfig com.avast%sst-monix-catnap com.avast%sst-http4s-server-micrometer com.avast%sst-cassandra-datastax-driver-pureconfig com.avast%sst-http4s-client-blaze-pureconfig com.avast%sst-pureconfig com.avast%sst-flyway com.avast%sst-doobie-hikari com.avast%sst-micrometer-statsd com.avast%sst-grpc-server-micrometer com.avast%sst-lettuce-pureconfig com.avast%sst-app-monix com.avast%sst-bundle-monix-http4s-blaze com.avast%sst-monix-catnap-pureconfig com.avast%sst-http4s-client-monix-catnap com.avast%sst-fs2-kafka com.avast%sst-ssl-config com.avast%sst-http4s-client-ember-pureconfig com.avast%sst-grpc-server com.avast%sst-cats-effect com.avast%sst-sentry-pureconfig com.avast%sst-app-zio com.avast%sst-bundle-zio-http4s-ember com.avast%sst-jdk-http-client-pureconfig com.avast%sst-grpc-server-pureconfig com.avast%sst-http4s-client-blaze", "config":{ "projects":{ "exclude":[ @@ -3382,7 +3106,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -3400,19 +3124,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", + "path":"project/BuildSettings.scala", + "pattern":"val scala3 = \"3.1.1\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "asflierl/sglicko2":{ - "project":"asflierl/sglicko2", - "repoUrl":"https://github.com/asflierl/sglicko2.git", - "revision":"3.0.0", - "version":"3.0.0", - "targets":"eu.flierl%sglicko2", + "azhur/kafka-serde-scala":{ + "project":"azhur/kafka-serde-scala", + "repoUrl":"https://github.com/azhur/kafka-serde-scala.git", + "revision":"v0.8.1", + "version":"0.8.1", + "targets":"io.github.azhur%kafka-serde-upickle io.github.azhur%kafka-serde-zio-json io.github.azhur%kafka-serde-scalapb io.github.azhur%kafka-serde-json4s io.github.azhur%kafka-serde-jsoniter-scala io.github.azhur%kafka-serde-circe", "config":{ "projects":{ "exclude":[ @@ -3423,7 +3147,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -3444,12 +3168,12 @@ ] } }, - "ashwinbhaskar/sight-scala":{ - "project":"ashwinbhaskar/sight-scala", - "repoUrl":"https://github.com/ashwinbhaskar/sight-scala.git", - "revision":"", - "version":"0.1.2", - "targets":"io.github.ashwinbhaskar%sight-client", + "babylonhealth/lit-fhir":{ + "project":"babylonhealth/lit-fhir", + "repoUrl":"https://github.com/babylonhealth/lit-fhir.git", + "revision":"g0.14.17", + "version":"0.14.17", + "targets":"com.babylonhealth.lit%generator com.babylonhealth.lit%hl7 com.babylonhealth.lit%common com.babylonhealth.lit%macros com.babylonhealth.lit%core com.babylonhealth.lit%protoshim com.babylonhealth.lit%usbase com.babylonhealth.lit%fhirpath com.babylonhealth.lit%ukcore com.babylonhealth.lit%uscore", "config":{ "projects":{ "exclude":[ @@ -3460,11 +3184,11 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ - "set root/Test/unmanagedSources/excludeFilter ~= { _ || \"IntegrationTest.scala\" }" + ], "options":[ @@ -3475,18 +3199,22 @@ ] }, - "tests":"full", + "tests":"disabled", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.2.0\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "asragab/unstructured4s":{ - "project":"asragab/unstructured4s", - "repoUrl":"https://github.com/asragab/unstructured4s.git", - "revision":"v0.1.5", - "version":"0.1.5", - "targets":"org.twelvehart%unstructured4s-core", + "banno/cosmos4s":{ + "project":"banno/cosmos4s", + "repoUrl":"https://github.com/banno/cosmos4s.git", + "revision":"v1.0.0-RC5", + "version":"1.0.0-RC5", + "targets":"com.banno%cosmos4s", "config":{ "projects":{ "exclude":[ @@ -3497,7 +3225,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -3514,16 +3242,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.3\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "assist-iot-sripas/scala-mqtt-wrapper":{ - "project":"assist-iot-sripas/scala-mqtt-wrapper", - "repoUrl":"https://github.com/assist-iot-sripas/scala-mqtt-wrapper.git", - "revision":"v4.0.0", - "version":"4.0.0", - "targets":"io.github.assist-iot-sripas%scala-mqtt-wrapper-pekko io.github.assist-iot-sripas%scala-mqtt-wrapper-utils", + "banno/vault4s":{ + "project":"banno/vault4s", + "repoUrl":"https://github.com/banno/vault4s.git", + "revision":"v9.1.0", + "version":"9.1.0", + "targets":"com.banno%vault4s", "config":{ "projects":{ "exclude":[ @@ -3534,12 +3266,11 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -3554,18 +3285,25 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val Scala3 = \"3.0.2\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "atedeg/mdm":{ - "project":"atedeg/mdm", - "repoUrl":"https://github.com/atedeg/mdm.git", - "revision":"v4.0.0", - "version":"4.0.0", - "targets":"dev.atedeg.mdm%production dev.atedeg.mdm%client-orders dev.atedeg.mdm%milk-planning dev.atedeg.mdm%stocking dev.atedeg.mdm%production-planning dev.atedeg.mdm%restocking dev.atedeg.mdm%pricing", + "barnardb/tinyplate":{ + "project":"barnardb/tinyplate", + "repoUrl":"https://github.com/barnardb/tinyplate.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"io.github.barnardb%tinyplate" + }, + "bcarter97/id-generator":{ + "project":"bcarter97/id-generator", + "repoUrl":"https://github.com/bcarter97/id-generator.git", + "revision":"v0.5.1", + "version":"0.5.1", + "targets":"io.github.bcarter97%id-generator", "config":{ "projects":{ "exclude":[ @@ -3576,12 +3314,11 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -3596,25 +3333,25 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.1.3\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val scala3 = \"3.1.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "atedeg/scala-release":{ - "project":"atedeg/scala-release", - "repoUrl":"https://github.com/atedeg/scala-release.git", - "revision":"v1.0.3", - "version":"1.0.3", - "targets":"dev.atedeg%scala-release-test" + "beangle/db":{ + "project":"beangle/db", + "repoUrl":"https://github.com/beangle/db.git", + "revision":"v0.0.22", + "version":"0.0.22", + "targets":"org.beangle.db%beangle-db-lint org.beangle.db%beangle-db-report org.beangle.db%beangle-db-transport" }, - "atnos-org/eff":{ - "project":"atnos-org/eff", - "repoUrl":"https://github.com/atnos-org/eff.git", - "revision":"v7.0.1", - "version":"7.0.1", - "targets":"org.atnos%eff-batch org.atnos%eff-core org.atnos%eff-either org.atnos%eff-validate org.atnos%eff-doobie org.atnos%eff-safe org.atnos%eff-list org.atnos%eff-reader org.atnos%eff-error org.atnos%eff-writer org.atnos%eff-cats-effect org.atnos%eff-eval org.atnos%eff-choose org.atnos%eff org.atnos%eff-twitter org.atnos%eff-state org.atnos%eff-option org.atnos%eff-monix org.atnos%eff-future", + "beangle/doc":{ + "project":"beangle/doc", + "repoUrl":"https://github.com/beangle/doc.git", + "revision":"v0.1.5", + "version":"0.1.5", + "targets":"org.beangle.doc%beangle-doc-docx org.beangle.doc%beangle-doc-pdf", "config":{ "projects":{ "exclude":[ @@ -3625,11 +3362,11 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ - "set monixJVM/Test/unmanagedSources ~= (_.filterNot(_.getName == \"TaskEffectSpec.scala\"))" + "styleFormat" ], "options":[ @@ -3646,12 +3383,26 @@ ] } }, - "atry/futurebinding.scala":{ - "project":"atry/futurebinding.scala", - "repoUrl":"https://github.com/atry/futurebinding.scala.git", - "revision":"v12.1.1", - "version":"12.1.1", - "targets":"com.thoughtworks.binding%futurebinding", + "beangle/ids":{ + "project":"beangle/ids", + "repoUrl":"https://github.com/beangle/ids.git", + "revision":"v0.3.8", + "version":"0.3.8", + "targets":"org.beangle.ids%beangle-ids-cas org.beangle.ids%beangle-ids-web" + }, + "beangle/notify":{ + "project":"beangle/notify", + "repoUrl":"https://github.com/beangle/notify.git", + "revision":"v0.1.1", + "version":"0.1.1", + "targets":"org.beangle.notify%beangle-notify-core" + }, + "beangle/otk":{ + "project":"beangle/otk", + "repoUrl":"https://github.com/beangle/otk.git", + "revision":"v0.0.6", + "version":"0.0.6", + "targets":"org.beangle.otk%beangle-otk-ws org.beangle.otk%beangle-otk-doc org.beangle.otk%beangle-otk-captcha org.beangle.otk%beangle-otk-code org.beangle.otk%beangle-otk-sns", "config":{ "projects":{ "exclude":[ @@ -3662,7 +3413,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -3683,12 +3434,12 @@ ] } }, - "atry/html.scala":{ - "project":"atry/html.scala", - "repoUrl":"https://github.com/atry/html.scala.git", - "revision":"v3.0.3", - "version":"3.0.3", - "targets":"com.yang-bo%html-interpolationparser", + "benhutchison/scalaswingcontrib":{ + "project":"benhutchison/scalaswingcontrib", + "repoUrl":"https://github.com/benhutchison/scalaswingcontrib.git", + "revision":"1cc806b06fb3ce824dfee4fa4522893878551740", + "version":"1.9", + "targets":"com.github.benhutchison%scalaswingcontrib", "config":{ "projects":{ "exclude":[ @@ -3699,7 +3450,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -3714,18 +3465,18 @@ ] }, - "tests":"full", + "tests":"disabled", "sourcePatches":[ ] } }, - "augustjune/canoe":{ - "project":"augustjune/canoe", - "repoUrl":"https://github.com/augustjune/canoe.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"org.augustjune%canoe", + "benoitlouy/tele":{ + "project":"benoitlouy/tele", + "repoUrl":"https://github.com/benoitlouy/tele.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"io.github.benoitlouy%tele", "config":{ "projects":{ "exclude":[ @@ -3736,11 +3487,11 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ - "set core.jvm/Test/unmanagedSources/excludeFilter ~= { _ || \"BroadcastSpec.scala\" || \"BotSpec.scala\" }" + ], "options":[ @@ -3755,39 +3506,25 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.1.2\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val Scala3 = \"3.1.0\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "augustnagro/form-url-codec":{ - "project":"augustnagro/form-url-codec", - "repoUrl":"https://github.com/augustnagro/form-url-codec.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.augustnagro%form-url-codec" - }, - "augustnagro/magnum":{ - "project":"augustnagro/magnum", - "repoUrl":"https://github.com/augustnagro/magnum.git", - "revision":"v1.1.0", - "version":"1.1.0", - "targets":"com.augustnagro%magnum com.augustnagro%magnumpg" - }, - "autodeployai/pmml4s":{ - "project":"autodeployai/pmml4s", - "repoUrl":"https://github.com/autodeployai/pmml4s.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"org.pmml4s%pmml4s" + "besselstudio/coingecko":{ + "project":"besselstudio/coingecko", + "repoUrl":"https://github.com/besselstudio/coingecko.git", + "revision":"v3.1.0", + "version":"3.1.0", + "targets":"com.besselstudio%coingecko" }, - "automorph-org/automorph":{ - "project":"automorph-org/automorph", - "repoUrl":"https://github.com/automorph-org/automorph.git", - "revision":"v0.2.3", - "version":"0.2.3", - "targets":"org.automorph%automorph-rabbitmq org.automorph%automorph-jetty org.automorph%automorph-scalaz-effect org.automorph%automorph-core org.automorph%automorph-monix org.automorph%automorph-argonaut org.automorph%automorph-cats-effect org.automorph%automorph-zio org.automorph%automorph-circe org.automorph%automorph-upickle org.automorph%automorph-default org.automorph%automorph-finagle org.automorph%automorph-vertx org.automorph%automorph-standard org.automorph%automorph-tapir org.automorph%automorph-sttp org.automorph%automorph-jackson org.automorph%automorph-akka-http org.automorph%automorph-meta org.automorph%automorph-undertow", + "bilal-fazlani/akka-http-jwt-auth":{ + "project":"bilal-fazlani/akka-http-jwt-auth", + "repoUrl":"https://github.com/bilal-fazlani/akka-http-jwt-auth.git", + "revision":"v0.0.6", + "version":"0.0.6", + "targets":"com.bilal-fazlani%akka-http-jwt-auth com.bilal-fazlani%akka-http-client-circe com.bilal-fazlani%akka-http-oidc-client", "config":{ "projects":{ "exclude":[ @@ -3813,18 +3550,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "avast/datadog4s":{ - "project":"avast/datadog4s", - "repoUrl":"https://github.com/avast/datadog4s.git", - "revision":"v0.31.3", - "version":"0.31.3", - "targets":"com.avast.cloud%datadog4s-http4s com.avast.cloud%datadog4s com.avast.cloud%datadog4s-common com.avast.cloud%datadog4s-jvm com.avast.cloud%datadog4s-playground com.avast.cloud%datadog4s-statsd com.avast.cloud%datadog4s-api", + "bilal-fazlani/circe-json-schema":{ + "project":"bilal-fazlani/circe-json-schema", + "repoUrl":"https://github.com/bilal-fazlani/circe-json-schema.git", + "revision":"v0.4.3", + "version":"0.4.3", + "targets":"com.bilal-fazlani%circe-json-schema", "config":{ "projects":{ "exclude":[ @@ -3850,22 +3587,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"project/BuildSupport.scala", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "avast/scala-server-toolkit":{ - "project":"avast/scala-server-toolkit", - "repoUrl":"https://github.com/avast/scala-server-toolkit.git", - "revision":"v0.18.4", - "version":"0.18.4", - "targets":"com.avast%sst-bundle-monix-http4s-ember com.avast%sst-cassandra-datastax-driver com.avast%sst-http4s-server-blaze com.avast%sst-jvm-micrometer com.avast%sst-http4s-server-ember com.avast%sst-doobie-hikari-pureconfig com.avast%sst-micrometer-prometheus-pureconfig com.avast%sst-bundle-zio-http4s-blaze com.avast%sst-http4s-server com.avast%sst-micrometer-jmx-pureconfig com.avast%sst-sentry com.avast%sst-lettuce com.avast%sst-http4s-client-ember com.avast%sst-jdk-http-client com.avast%sst-micrometer-prometheus com.avast%sst-jvm-pureconfig com.avast%sst-flyway-pureconfig com.avast%sst-http4s-server-ember-pureconfig com.avast%sst-jvm com.avast%sst-monix-catnap-micrometer com.avast%sst-micrometer-statsd-pureconfig com.avast%sst-micrometer com.avast%sst-micrometer-jmx com.avast%sst-fs2-kafka-pureconfig com.avast%sst-http4s-server-blaze-pureconfig com.avast%sst-monix-catnap com.avast%sst-http4s-server-micrometer com.avast%sst-cassandra-datastax-driver-pureconfig com.avast%sst-http4s-client-blaze-pureconfig com.avast%sst-pureconfig com.avast%sst-flyway com.avast%sst-doobie-hikari com.avast%sst-micrometer-statsd com.avast%sst-grpc-server-micrometer com.avast%sst-lettuce-pureconfig com.avast%sst-app-monix com.avast%sst-bundle-monix-http4s-blaze com.avast%sst-monix-catnap-pureconfig com.avast%sst-http4s-client-monix-catnap com.avast%sst-fs2-kafka com.avast%sst-ssl-config com.avast%sst-http4s-client-ember-pureconfig com.avast%sst-grpc-server com.avast%sst-cats-effect com.avast%sst-sentry-pureconfig com.avast%sst-app-zio com.avast%sst-bundle-zio-http4s-ember com.avast%sst-jdk-http-client-pureconfig com.avast%sst-grpc-server-pureconfig com.avast%sst-http4s-client-blaze", + "bilal-fazlani/csv-schema":{ + "project":"bilal-fazlani/csv-schema", + "repoUrl":"https://github.com/bilal-fazlani/csv-schema.git", + "revision":"v1.1.2", + "version":"1.1.2", + "targets":"com.bilal-fazlani%csv-schema", "config":{ "projects":{ "exclude":[ @@ -3893,20 +3626,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/BuildSettings.scala", - "pattern":"val scala3 = \"3.1.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "avokka/avokka":{ - "project":"avokka/avokka", - "repoUrl":"https://github.com/avokka/avokka.git", + "bilal-fazlani/jslt-parser":{ + "project":"bilal-fazlani/jslt-parser", + "repoUrl":"https://github.com/bilal-fazlani/jslt-parser.git", "revision":"v0.0.8", "version":"0.0.8", - "targets":"com.bicou%avokka-arangodb-akka com.bicou%avokka-arangodb com.bicou%avokka-arangodb-fs2 com.bicou%avokka-velocypack-enumeratum com.bicou%avokka-velocypack com.bicou%avokka-velocystream com.bicou%avokka-velocypack-circe", + "targets":"com.bilal-fazlani%jslt-parser", "config":{ "projects":{ "exclude":[ @@ -3917,7 +3646,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -3936,18 +3665,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0\"", + "pattern":"val scala3Version = \"3.2.0\"", "replaceWith":"val scala3Version = \"\"" } ] } }, - "azhur/kafka-serde-scala":{ - "project":"azhur/kafka-serde-scala", - "repoUrl":"https://github.com/azhur/kafka-serde-scala.git", - "revision":"v0.8.2", - "version":"0.8.2", - "targets":"io.github.azhur%kafka-serde-upickle io.github.azhur%kafka-serde-zio-json io.github.azhur%kafka-serde-scalapb io.github.azhur%kafka-serde-json4s io.github.azhur%kafka-serde-jsoniter-scala io.github.azhur%kafka-serde-circe", + "bilal-fazlani/rainbowcli":{ + "project":"bilal-fazlani/rainbowcli", + "repoUrl":"https://github.com/bilal-fazlani/rainbowcli.git", + "revision":"v3.0.1", + "version":"3.0.1", + "targets":"com.bilal-fazlani%rainbowcli", "config":{ "projects":{ "exclude":[ @@ -3958,7 +3687,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -3979,12 +3708,12 @@ ] } }, - "babylonhealth/lit-fhir":{ - "project":"babylonhealth/lit-fhir", - "repoUrl":"https://github.com/babylonhealth/lit-fhir.git", - "revision":"g0.14.17", - "version":"0.14.17", - "targets":"com.babylonhealth.lit%generator com.babylonhealth.lit%hl7 com.babylonhealth.lit%common com.babylonhealth.lit%macros com.babylonhealth.lit%core com.babylonhealth.lit%protoshim com.babylonhealth.lit%usbase com.babylonhealth.lit%fhirpath com.babylonhealth.lit%ukcore com.babylonhealth.lit%uscore", + "bilal-fazlani/swiftbar4s":{ + "project":"bilal-fazlani/swiftbar4s", + "repoUrl":"https://github.com/bilal-fazlani/swiftbar4s.git", + "revision":"v0.2.2", + "version":"0.2.2", + "targets":"com.bilal-fazlani%swiftbar4s", "config":{ "projects":{ "exclude":[ @@ -4010,29 +3739,18 @@ ] }, - "tests":"disabled", + "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.0\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "bahmanm/persianutils":{ - "project":"bahmanm/persianutils", - "repoUrl":"https://github.com/bahmanm/persianutils.git", - "revision":"v5.0", - "version":"5.0", - "targets":"com.bahmanm%persianutils" - }, - "banno/cosmos4s":{ - "project":"banno/cosmos4s", - "repoUrl":"https://github.com/banno/cosmos4s.git", - "revision":"v1.0.0-RC8", - "version":"1.0.0-RC8", - "targets":"com.banno%cosmos4s", + "bilal-fazlani/zio-mongo":{ + "project":"bilal-fazlani/zio-mongo", + "repoUrl":"https://github.com/bilal-fazlani/zio-mongo.git", + "revision":"v0.6.1", + "version":"0.6.1", + "targets":"com.bilal-fazlani.zio-mongo%zio-mongo com.bilal-fazlani.zio-mongo%circe-codec com.bilal-fazlani.zio-mongo%zio-json-codec", "config":{ "projects":{ "exclude":[ @@ -4043,7 +3761,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -4060,20 +3778,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "banno/vault4s":{ - "project":"banno/vault4s", - "repoUrl":"https://github.com/banno/vault4s.git", - "revision":"v9.1.0", - "version":"9.1.0", - "targets":"com.banno%vault4s", + "bilal-fazlani/zio-ulid":{ + "project":"bilal-fazlani/zio-ulid", + "repoUrl":"https://github.com/bilal-fazlani/zio-ulid.git", + "revision":"v1.3.0", + "version":"1.3.0", + "targets":"com.bilal-fazlani%zio-ulid", "config":{ "projects":{ "exclude":[ @@ -4084,7 +3798,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -4103,25 +3817,25 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.0.2\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "barnardb/tinyplate":{ - "project":"barnardb/tinyplate", - "repoUrl":"https://github.com/barnardb/tinyplate.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"io.github.barnardb%tinyplate" + "billzabob/fordeckmacia":{ + "project":"billzabob/fordeckmacia", + "repoUrl":"https://github.com/billzabob/fordeckmacia.git", + "revision":"v1.1.0", + "version":"1.1.0", + "targets":"com.github.billzabob%fordeckmacia" }, - "bcarter97/id-generator":{ - "project":"bcarter97/id-generator", - "repoUrl":"https://github.com/bcarter97/id-generator.git", - "revision":"v0.5.1", - "version":"0.5.1", - "targets":"io.github.bcarter97%id-generator", + "bitlap/rolls":{ + "project":"bitlap/rolls", + "repoUrl":"https://github.com/bitlap/rolls.git", + "revision":"v0.2.9", + "version":"0.2.9", + "targets":"org.bitlap%rolls-compiler-plugin org.bitlap%rolls-core org.bitlap%rolls-csv", "config":{ "projects":{ "exclude":[ @@ -4132,7 +3846,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -4151,25 +3865,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.1.2\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val scala3Version = \"3.2.0\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "beangle/db":{ - "project":"beangle/db", - "repoUrl":"https://github.com/beangle/db.git", - "revision":"v0.0.26", - "version":"0.0.26", - "targets":"org.beangle.db%beangle-db-lint org.beangle.db%beangle-db-report org.beangle.db%beangle-db-transport" - }, - "beangle/doc":{ - "project":"beangle/doc", - "repoUrl":"https://github.com/beangle/doc.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"org.beangle.doc%beangle-doc-docx org.beangle.doc%beangle-doc-pdf", + "bitmarck-service/base32check-scala":{ + "project":"bitmarck-service/base32check-scala", + "repoUrl":"https://github.com/bitmarck-service/base32check-scala.git", + "revision":"0.1.0", + "version":"0.1.0", + "targets":"de.bitmarck.bms%base32check-scala", "config":{ "projects":{ "exclude":[ @@ -4184,7 +3891,7 @@ }, "sbt":{ "commands":[ - "styleFormat" + ], "options":[ @@ -4201,26 +3908,12 @@ ] } }, - "beangle/ids":{ - "project":"beangle/ids", - "repoUrl":"https://github.com/beangle/ids.git", - "revision":"v0.3.12", - "version":"0.3.12", - "targets":"org.beangle.ids%beangle-ids-cas org.beangle.ids%beangle-ids-sms org.beangle.ids%beangle-ids-web" - }, - "beangle/notify":{ - "project":"beangle/notify", - "repoUrl":"https://github.com/beangle/notify.git", - "revision":"v0.1.2", - "version":"0.1.2", - "targets":"org.beangle.notify%beangle-notify-core" - }, - "beangle/otk":{ - "project":"beangle/otk", - "repoUrl":"https://github.com/beangle/otk.git", - "revision":"v0.0.9", - "version":"0.0.9", - "targets":"org.beangle.otk%beangle-otk-ws org.beangle.otk%beangle-otk-sys org.beangle.otk%beangle-otk-doc org.beangle.otk%beangle-otk-captcha org.beangle.otk%beangle-otk-code org.beangle.otk%beangle-otk-sns", + "bitmarck-service/fs2-secon":{ + "project":"bitmarck-service/fs2-secon", + "repoUrl":"https://github.com/bitmarck-service/fs2-secon.git", + "revision":"0.2.0", + "version":"0.2.0", + "targets":"de.bitmarck.bms%fs2-secon de.bitmarck.bms%http4s-secon", "config":{ "projects":{ "exclude":[ @@ -4252,12 +3945,12 @@ ] } }, - "benhutchison/scalaswingcontrib":{ - "project":"benhutchison/scalaswingcontrib", - "repoUrl":"https://github.com/benhutchison/scalaswingcontrib.git", - "revision":"", - "version":"1.9", - "targets":"com.github.benhutchison%scalaswingcontrib", + "bkirwi/decline":{ + "project":"bkirwi/decline", + "repoUrl":"https://github.com/bkirwi/decline.git", + "revision":"v2.4.1", + "version":"2.4.1", + "targets":"com.monovore%decline com.monovore%decline-effect com.monovore%decline-refined", "config":{ "projects":{ "exclude":[ @@ -4268,7 +3961,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -4283,18 +3976,29 @@ ] }, - "tests":"disabled", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "benoitlouy/tele":{ - "project":"benoitlouy/tele", - "repoUrl":"https://github.com/benoitlouy/tele.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"io.github.benoitlouy%tele", + "blackdoor/jose":{ + "project":"blackdoor/jose", + "repoUrl":"https://github.com/blackdoor/jose.git", + "revision":"0.4.6", + "version":"0.4.6", + "targets":"black.door%jose black.door%jose-json-circe" + }, + "blemale/scaffeine":{ + "project":"blemale/scaffeine", + "repoUrl":"https://github.com/blemale/scaffeine.git", + "revision":"v5.2.1", + "version":"5.2.1", + "targets":"com.github.blemale%scaffeine", "config":{ "projects":{ "exclude":[ @@ -4305,7 +4009,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -4322,27 +4026,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.0\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "besselstudio/coingecko":{ - "project":"besselstudio/coingecko", - "repoUrl":"https://github.com/besselstudio/coingecko.git", - "revision":"v3.1.0", - "version":"3.1.0", - "targets":"com.besselstudio%coingecko" - }, - "bilal-fazlani/akka-http-jwt-auth":{ - "project":"bilal-fazlani/akka-http-jwt-auth", - "repoUrl":"https://github.com/bilal-fazlani/akka-http-jwt-auth.git", - "revision":"v0.0.6", - "version":"0.0.6", - "targets":"com.bilal-fazlani%akka-http-jwt-auth com.bilal-fazlani%akka-http-client-circe com.bilal-fazlani%akka-http-oidc-client", + "bot4s/zmatrix":{ + "project":"bot4s/zmatrix", + "repoUrl":"https://github.com/bot4s/zmatrix.git", + "revision":"v0.3.0", + "version":"0.3.0", + "targets":"com.bot4s%zmatrix", "config":{ "projects":{ "exclude":[ @@ -4353,11 +4046,11 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ - + "excludeLibraryDependency com.github.ghik:zerowaste_{scalaVersion}" ], "options":[ @@ -4368,18 +4061,25 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "bilal-fazlani/circe-json-schema":{ - "project":"bilal-fazlani/circe-json-schema", - "repoUrl":"https://github.com/bilal-fazlani/circe-json-schema.git", - "revision":"v0.4.3", - "version":"0.4.3", - "targets":"com.bilal-fazlani%circe-json-schema", + "bp3r/jsonrpc2":{ + "project":"bp3r/jsonrpc2", + "repoUrl":"https://github.com/bp3r/jsonrpc2.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.github.bp3r%jsonrpc2" + }, + "bpholt/java-time-literals":{ + "project":"bpholt/java-time-literals", + "repoUrl":"https://github.com/bpholt/java-time-literals.git", + "revision":"v1.1.1", + "version":"1.1.1", + "targets":"dev.holt%java-time-literals", "config":{ "projects":{ "exclude":[ @@ -4390,7 +4090,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -4405,18 +4105,39 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "bilal-fazlani/csv-codec":{ - "project":"bilal-fazlani/csv-codec", - "repoUrl":"https://github.com/bilal-fazlani/csv-codec.git", - "revision":"v0.2.2", - "version":"0.2.2", - "targets":"com.bilal-fazlani%csv-codec", + "camunda-community-hub/camunda-dmn-tester":{ + "project":"camunda-community-hub/camunda-dmn-tester", + "repoUrl":"https://github.com/camunda-community-hub/camunda-dmn-tester.git", + "revision":"0.17.9", + "version":"0.17.9", + "targets":"io.github.pme123%camunda-dmn-tester-shared" + }, + "carlos-verdes/zio-arangodb":{ + "project":"carlos-verdes/zio-arangodb", + "repoUrl":"https://github.com/carlos-verdes/zio-arangodb.git", + "revision":"v0.2.3", + "version":"0.2.3", + "targets":"io.funkode%zio-arangodb io.funkode%arangodb-docker io.funkode%zio-arangodb-http io.funkode%zio-velocypack" + }, + "carlos-verdes/zio-resource":{ + "project":"carlos-verdes/zio-resource", + "repoUrl":"https://github.com/carlos-verdes/zio-resource.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"io.funkode%zio-resource" + }, + "carlosedp/riscvassembler":{ + "project":"carlosedp/riscvassembler", + "repoUrl":"https://github.com/carlosedp/riscvassembler.git", + "revision":"v1.7.1", + "version":"1.7.1", + "targets":"com.carlosedp%riscvassembler", "config":{ "projects":{ "exclude":[ @@ -4445,19 +4166,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" + "path":"build.sc", + "pattern":"val scala3 = \"3.2.1\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "bilal-fazlani/csv-schema":{ - "project":"bilal-fazlani/csv-schema", - "repoUrl":"https://github.com/bilal-fazlani/csv-schema.git", - "revision":"v1.1.2", - "version":"1.1.2", - "targets":"com.bilal-fazlani%csv-schema", + "carlosedp/scalautils":{ + "project":"carlosedp/scalautils", + "repoUrl":"https://github.com/carlosedp/scalautils.git", + "revision":"v0.10.2", + "version":"0.10.2", + "targets":"com.carlosedp%scalautils", "config":{ "projects":{ "exclude":[ @@ -4468,7 +4189,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -4489,12 +4210,12 @@ ] } }, - "bilal-fazlani/jslt-parser":{ - "project":"bilal-fazlani/jslt-parser", - "repoUrl":"https://github.com/bilal-fazlani/jslt-parser.git", - "revision":"v0.0.8", - "version":"0.0.8", - "targets":"com.bilal-fazlani%jslt-parser", + "carlosedp/zio-channel":{ + "project":"carlosedp/zio-channel", + "repoUrl":"https://github.com/carlosedp/zio-channel.git", + "revision":"0.2.1", + "version":"0.2.1", + "targets":"com.carlosedp%zio-channel", "config":{ "projects":{ "exclude":[ @@ -4505,7 +4226,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -4522,20 +4243,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.0\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "bilal-fazlani/rainbowcli":{ - "project":"bilal-fazlani/rainbowcli", - "repoUrl":"https://github.com/bilal-fazlani/rainbowcli.git", - "revision":"v3.0.1", - "version":"3.0.1", - "targets":"com.bilal-fazlani%rainbowcli", + "carueda/tscfg":{ + "project":"carueda/tscfg", + "repoUrl":"https://github.com/carueda/tscfg.git", + "revision":"v1.0.2", + "version":"1.0.2", + "targets":"com.github.carueda%tscfg", "config":{ "projects":{ "exclude":[ @@ -4546,11 +4263,11 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ - + "genCode" ], "options":[ @@ -4567,12 +4284,12 @@ ] } }, - "bilal-fazlani/scala-aql":{ - "project":"bilal-fazlani/scala-aql", - "repoUrl":"https://github.com/bilal-fazlani/scala-aql.git", - "revision":"v0.0.4", - "version":"0.0.4", - "targets":"com.bilal-fazlani%scala-aql", + "casehubdk/hxl":{ + "project":"casehubdk/hxl", + "repoUrl":"https://github.com/casehubdk/hxl.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.github.casehubdk%hxl", "config":{ "projects":{ "exclude":[ @@ -4583,7 +4300,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -4600,20 +4317,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "bilal-fazlani/swiftbar4s":{ - "project":"bilal-fazlani/swiftbar4s", - "repoUrl":"https://github.com/bilal-fazlani/swiftbar4s.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"com.bilal-fazlani%swiftbar4s", + "catap/scala-blake3":{ + "project":"catap/scala-blake3", + "repoUrl":"https://github.com/catap/scala-blake3.git", + "revision":"v2.9.0", + "version":"2.9.0", + "targets":"ky.korins%blake3", "config":{ "projects":{ "exclude":[ @@ -4641,16 +4354,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.0.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "bilal-fazlani/zio-maelstrom":{ - "project":"bilal-fazlani/zio-maelstrom", - "repoUrl":"https://github.com/bilal-fazlani/zio-maelstrom.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"com.bilal-fazlani%zio-maelstrom", + "catap/scala-sha":{ + "project":"catap/scala-sha", + "repoUrl":"https://github.com/catap/scala-sha.git", + "revision":"v1.2.1", + "version":"1.2.1", + "targets":"ky.korins%sha", "config":{ "projects":{ "exclude":[ @@ -4661,7 +4378,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -4680,18 +4397,25 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val scala3 = \"3.0.1\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "bilal-fazlani/zio-mongo":{ - "project":"bilal-fazlani/zio-mongo", - "repoUrl":"https://github.com/bilal-fazlani/zio-mongo.git", - "revision":"v0.6.1", - "version":"0.6.1", - "targets":"com.bilal-fazlani.zio-mongo%zio-mongo com.bilal-fazlani.zio-mongo%circe-codec com.bilal-fazlani.zio-mongo%zio-json-codec", + "cb372/cats-retry":{ + "project":"cb372/cats-retry", + "repoUrl":"https://github.com/cb372/cats-retry.git", + "revision":"v3.1.0", + "version":"3.1.0", + "targets":"com.github.cb372%cats-retry com.github.cb372%alleycats-retry com.github.cb372%cats-retry-mtl" + }, + "cb372/scalacache":{ + "project":"cb372/scalacache", + "repoUrl":"https://github.com/cb372/scalacache.git", + "revision":"v1.0.0-M6", + "version":"1.0.0-M6", + "targets":"com.github.cb372%scalacache-circe com.github.cb372%scalacache-caffeine com.github.cb372%scalacache-redis com.github.cb372%scalacache-core com.github.cb372%scalacache-memcached", "config":{ "projects":{ "exclude":[ @@ -4723,12 +4447,19 @@ ] } }, - "bilal-fazlani/zio-ulid":{ - "project":"bilal-fazlani/zio-ulid", - "repoUrl":"https://github.com/bilal-fazlani/zio-ulid.git", - "revision":"v1.3.1", - "version":"1.3.1", - "targets":"com.bilal-fazlani%zio-ulid", + "cchantep/acolyte":{ + "project":"cchantep/acolyte", + "repoUrl":"https://github.com/cchantep/acolyte.git", + "revision":"1.2.7", + "version":"1.2.7", + "targets":"org.eu.acolyte%jdbc-scala org.eu.acolyte%play-jdbc org.eu.acolyte%play-reactive-mongo org.eu.acolyte%reactive-mongo" + }, + "cequence-io/openai-scala-client":{ + "project":"cequence-io/openai-scala-client", + "repoUrl":"https://github.com/cequence-io/openai-scala-client.git", + "revision":"v0.3.2", + "version":"0.3.2", + "targets":"io.cequence%openai-scala-client io.cequence%openai-scala-client-stream io.cequence%openai-scala-core", "config":{ "projects":{ "exclude":[ @@ -4739,7 +4470,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -4758,32 +4489,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "billzabob/fordeckmacia":{ - "project":"billzabob/fordeckmacia", - "repoUrl":"https://github.com/billzabob/fordeckmacia.git", - "revision":"v1.1.0", - "version":"1.1.0", - "targets":"com.github.billzabob%fordeckmacia" - }, - "bishabosha/enum-extensions":{ - "project":"bishabosha/enum-extensions", - "repoUrl":"https://github.com/bishabosha/enum-extensions.git", - "revision":"v0.1.1", - "version":"0.1.1", - "targets":"io.github.bishabosha%enum-extensions" - }, - "bitlap/rolls":{ - "project":"bitlap/rolls", - "repoUrl":"https://github.com/bitlap/rolls.git", - "revision":"v0.3.4", - "version":"0.3.4", - "targets":"org.bitlap%rolls-compiler-plugin org.bitlap%rolls-core org.bitlap%rolls-csv org.bitlap%rolls-zio", + "cequence-io/pinecone-scala":{ + "project":"cequence-io/pinecone-scala", + "repoUrl":"https://github.com/cequence-io/pinecone-scala.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.cequence%pinecone-scala-client io.cequence%pinecone-scala-core", "config":{ "projects":{ "exclude":[ @@ -4794,7 +4511,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -4813,18 +4530,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "bitmarck-service/base32check-scala":{ - "project":"bitmarck-service/base32check-scala", - "repoUrl":"https://github.com/bitmarck-service/base32check-scala.git", - "revision":"0.1.0", - "version":"0.1.0", - "targets":"de.bitmarck.bms%base32check-scala", + "changvvb/scala-protobuf-java":{ + "project":"changvvb/scala-protobuf-java", + "repoUrl":"https://github.com/changvvb/scala-protobuf-java.git", + "revision":"v0.3.0", + "version":"0.3.0", + "targets":"com.github.changvvb%scala-protobuf-java", "config":{ "projects":{ "exclude":[ @@ -4835,7 +4552,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -4852,16 +4569,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "bitmarck-service/fs2-secon":{ - "project":"bitmarck-service/fs2-secon", - "repoUrl":"https://github.com/bitmarck-service/fs2-secon.git", - "revision":"0.2.1", - "version":"0.2.1", - "targets":"de.bitmarck.bms%fs2-secon de.bitmarck.bms%http4s-secon", + "chatwork/scala-jwk":{ + "project":"chatwork/scala-jwk", + "repoUrl":"https://github.com/chatwork/scala-jwk.git", + "revision":"v1.2.24", + "version":"1.2.24", + "targets":"com.chatwork%scala-jwk", "config":{ "projects":{ "exclude":[ @@ -4889,16 +4610,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val scala3Version = \"3.0.2\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "bkirwi/decline":{ - "project":"bkirwi/decline", - "repoUrl":"https://github.com/bkirwi/decline.git", - "revision":"v2.4.1", - "version":"2.4.1", - "targets":"com.monovore%decline com.monovore%decline-effect com.monovore%decline-refined", + "cheleb/zio-pravega":{ + "project":"cheleb/zio-pravega", + "repoUrl":"https://github.com/cheleb/zio-pravega.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"dev.cheleb%zio-pravega", "config":{ "projects":{ "exclude":[ @@ -4909,11 +4634,13 @@ } }, "java":{ - "version":"11" + "version":"21" }, "sbt":{ "commands":[ - + "set pravega/Test/unmanagedSources/excludeFilter ~= {_ || \"CreateResourcesExample.scala\" }", + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -4924,29 +4651,25 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "blackdoor/jose":{ - "project":"blackdoor/jose", - "repoUrl":"https://github.com/blackdoor/jose.git", - "revision":"0.4.6", - "version":"0.4.6", - "targets":"black.door%jose black.door%jose-json-circe" + "chrisokasaki/hwtest":{ + "project":"chrisokasaki/hwtest", + "repoUrl":"https://github.com/chrisokasaki/hwtest.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"org.okasaki%hwtest" }, - "blemale/scaffeine":{ - "project":"blemale/scaffeine", - "repoUrl":"https://github.com/blemale/scaffeine.git", - "revision":"v5.2.1", - "version":"5.2.1", - "targets":"com.github.blemale%scaffeine", + "christian-schlichtherle/circe-kafka":{ + "project":"christian-schlichtherle/circe-kafka", + "repoUrl":"https://github.com/christian-schlichtherle/circe-kafka.git", + "revision":"v3.0.0", + "version":"3.0.0", + "targets":"global.namespace.circe-kafka%circe-kafka", "config":{ "projects":{ "exclude":[ @@ -4957,7 +4680,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -4978,12 +4701,12 @@ ] } }, - "bot4s/zmatrix":{ - "project":"bot4s/zmatrix", - "repoUrl":"https://github.com/bot4s/zmatrix.git", - "revision":"v0.3.4", - "version":"0.3.4", - "targets":"com.bot4s%zmatrix", + "chronoscala/chronoscala":{ + "project":"chronoscala/chronoscala", + "repoUrl":"https://github.com/chronoscala/chronoscala.git", + "revision":"2.0.8", + "version":"2.0.8", + "targets":"io.github.chronoscala%chronoscala", "config":{ "projects":{ "exclude":[ @@ -4994,11 +4717,11 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ - "excludeLibraryDependency com.github.ghik:zerowaste_{scalaVersion}" + ], "options":[ @@ -5015,19 +4738,19 @@ ] } }, - "bp3r/jsonrpc2":{ - "project":"bp3r/jsonrpc2", - "repoUrl":"https://github.com/bp3r/jsonrpc2.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.github.bp3r%jsonrpc2" + "ciaraobrien/dottytags":{ + "project":"ciaraobrien/dottytags", + "repoUrl":"https://github.com/ciaraobrien/dottytags.git", + "revision":"4a7917641bb2af1ef90f5adcbfac505db52d3bb9", + "version":"1.1.0", + "targets":"io.github.ciaraobrien%dottytags" }, - "bpholt/java-time-literals":{ - "project":"bpholt/java-time-literals", - "repoUrl":"https://github.com/bpholt/java-time-literals.git", - "revision":"v1.1.1", - "version":"1.1.1", - "targets":"dev.holt%java-time-literals", + "circe/circe":{ + "project":"circe/circe", + "repoUrl":"https://github.com/circe/circe.git", + "revision":"v0.14.5", + "version":"0.14.5", + "targets":"io.circe%circe-refined io.circe%circe-numbers io.circe%circe-pointer-literal io.circe%circe-scodec io.circe%circe-numbers-testing io.circe%circe-testing io.circe%circe-jawn io.circe%circe-literal io.circe%circe-generic io.circe%circe-parser io.circe%circe-pointer io.circe%circe-core", "config":{ "projects":{ "exclude":[ @@ -5059,12 +4782,12 @@ ] } }, - "cake-lier/tuples-space-client":{ - "project":"cake-lier/tuples-space-client", - "repoUrl":"https://github.com/cake-lier/tuples-space-client.git", - "revision":"v1.0.2", - "version":"1.0.2", - "targets":"io.github.cake-lier%tuples-space-client", + "circe/circe-config":{ + "project":"circe/circe-config", + "repoUrl":"https://github.com/circe/circe-config.git", + "revision":"v0.10.0", + "version":"0.10.0", + "targets":"io.circe%circe-config", "config":{ "projects":{ "exclude":[ @@ -5079,8 +4802,7 @@ }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -5093,16 +4815,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "cake-lier/tuples-space-core":{ - "project":"cake-lier/tuples-space-core", - "repoUrl":"https://github.com/cake-lier/tuples-space-core.git", - "revision":"v1.0.2", - "version":"1.0.2", - "targets":"io.github.cake-lier%tuples-space-core", + "circe/circe-fs2":{ + "project":"circe/circe-fs2", + "repoUrl":"https://github.com/circe/circe-fs2.git", + "revision":"v0.14.1", + "version":"0.14.1", + "targets":"io.circe%circe-fs2", "config":{ "projects":{ "exclude":[ @@ -5117,8 +4843,7 @@ }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -5135,33 +4860,19 @@ ] } }, - "camunda-community-hub/camunda-dmn-tester":{ - "project":"camunda-community-hub/camunda-dmn-tester", - "repoUrl":"https://github.com/camunda-community-hub/camunda-dmn-tester.git", - "revision":"0.17.9", - "version":"0.17.9", - "targets":"io.github.pme123%camunda-dmn-tester-shared" - }, - "carlos-verdes/zio-arangodb":{ - "project":"carlos-verdes/zio-arangodb", - "repoUrl":"https://github.com/carlos-verdes/zio-arangodb.git", - "revision":"v0.3.6", - "version":"0.3.6", - "targets":"io.funkode%zio-arangodb io.funkode%arangodb-docker io.funkode%zio-arangodb-http io.funkode%zio-velocypack" - }, - "carlos-verdes/zio-resource":{ - "project":"carlos-verdes/zio-resource", - "repoUrl":"https://github.com/carlos-verdes/zio-resource.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"io.funkode%zio-resource" + "circe/circe-jackson":{ + "project":"circe/circe-jackson", + "repoUrl":"https://github.com/circe/circe-jackson.git", + "revision":"v0.14.0", + "version":"0.14.0", + "targets":"io.circe%circe-jackson28 io.circe%circe-jackson212 io.circe%circe-jackson29 io.circe%circe-jackson211 io.circe%circe-jackson26 io.circe%circe-jackson210 io.circe%circe-jackson25 io.circe%circe-jackson27" }, - "carlosedp/riscvassembler":{ - "project":"carlosedp/riscvassembler", - "repoUrl":"https://github.com/carlosedp/riscvassembler.git", - "revision":"v1.9.1", - "version":"1.9.1", - "targets":"com.carlosedp%riscvassembler", + "circe/circe-yaml":{ + "project":"circe/circe-yaml", + "repoUrl":"https://github.com/circe/circe-yaml.git", + "revision":"v0.15.0-RC1", + "version":"0.15.0-RC1", + "targets":"io.circe%circe-yaml io.circe%circe-yaml-common io.circe%circe-yaml-v12", "config":{ "projects":{ "exclude":[ @@ -5190,19 +4901,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sc", - "pattern":"val scala3 = \"3.3.0\"", + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.1\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "carlosedp/scalautils":{ - "project":"carlosedp/scalautils", - "repoUrl":"https://github.com/carlosedp/scalautils.git", - "revision":"v0.10.2", - "version":"0.10.2", - "targets":"com.carlosedp%scalautils", + "clevercloud/pulsar4s":{ + "project":"clevercloud/pulsar4s", + "repoUrl":"https://github.com/clevercloud/pulsar4s.git", + "revision":"v2.9.0", + "version":"2.9.0", + "targets":"com.clever-cloud.pulsar4s%pulsar4s-play-json com.clever-cloud.pulsar4s%pulsar4s-monix com.clever-cloud.pulsar4s%pulsar4s-zio com.clever-cloud.pulsar4s%pulsar4s-scalaz com.clever-cloud.pulsar4s%pulsar4s-akka-streams com.clever-cloud.pulsar4s%pulsar4s-json4s com.clever-cloud.pulsar4s%pulsar4s-core com.clever-cloud.pulsar4s%pulsar4s-spray-json com.clever-cloud.pulsar4s%pulsar4s-jackson com.clever-cloud.pulsar4s%pulsar4s-fs2 com.clever-cloud.pulsar4s%pulsar4s-cats-effect com.clever-cloud.pulsar4s%pulsar4s-avro com.clever-cloud.pulsar4s%pulsar4s-circe", "config":{ "projects":{ "exclude":[ @@ -5213,7 +4924,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -5228,18 +4939,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "carlosedp/zio-channel":{ - "project":"carlosedp/zio-channel", - "repoUrl":"https://github.com/carlosedp/zio-channel.git", - "revision":"0.5.5", - "version":"0.5.5", - "targets":"com.carlosedp%zio-channel", + "clockworkconsulting/csexp":{ + "project":"clockworkconsulting/csexp", + "repoUrl":"https://github.com/clockworkconsulting/csexp.git", + "revision":"v3.2.0", + "version":"3.2.0", + "targets":"dk.cwconsult%csexp", "config":{ "projects":{ "exclude":[ @@ -5250,7 +4961,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -5268,19 +4979,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sc", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" + "path":"build.sbt", + "pattern":"val scala_3 = \"3.1.0\"", + "replaceWith":"val scala_3 = \"\"" } ] } }, - "carueda/tscfg":{ - "project":"carueda/tscfg", - "repoUrl":"https://github.com/carueda/tscfg.git", - "revision":"v1.0.2", - "version":"1.0.2", - "targets":"com.github.carueda%tscfg", + "clockworkconsulting/peregrin":{ + "project":"clockworkconsulting/peregrin", + "repoUrl":"https://github.com/clockworkconsulting/peregrin.git", + "revision":"v9.0.0", + "version":"9.0.0", + "targets":"dk.cwconsult.peregrin%peregrin-core", "config":{ "projects":{ "exclude":[ @@ -5291,11 +5002,11 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ - "genCode" + ], "options":[ @@ -5306,18 +5017,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala_3 = \"3.1.1\"", + "replaceWith":"val scala_3 = \"\"" + } ] } }, - "casehubdk/hxl":{ - "project":"casehubdk/hxl", - "repoUrl":"https://github.com/casehubdk/hxl.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"io.github.casehubdk%hxl io.github.casehubdk%hxl-natchez", + "clulab/fatdynet":{ + "project":"clulab/fatdynet", + "repoUrl":"https://github.com/clulab/fatdynet.git", + "revision":"v0.4.4", + "version":"0.4.4", + "targets":"org.clulab%fatdynet", "config":{ "projects":{ "exclude":[ @@ -5328,7 +5043,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -5343,18 +5058,29 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "catap/scala-blake3":{ - "project":"catap/scala-blake3", - "repoUrl":"https://github.com/catap/scala-blake3.git", - "revision":"v2.9.0", - "version":"2.9.0", - "targets":"ky.korins%blake3", + "clulab/processors":{ + "project":"clulab/processors", + "repoUrl":"https://github.com/clulab/processors.git", + "revision":"v8.5.3", + "version":"8.5.3", + "targets":"org.clulab%processors-corenlp org.clulab%processors-main org.clulab%processors-openie" + }, + "codacy/codacy-plugins-api":{ + "project":"codacy/codacy-plugins-api", + "repoUrl":"https://github.com/codacy/codacy-plugins-api.git", + "revision":"7.2.0", + "version":"7.2.0", + "targets":"com.codacy%codacy-plugins-api", "config":{ "projects":{ "exclude":[ @@ -5365,7 +5091,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -5384,18 +5110,25 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.0.1\"", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "catap/scala-sha":{ - "project":"catap/scala-sha", - "repoUrl":"https://github.com/catap/scala-sha.git", - "revision":"v1.2.1", - "version":"1.2.1", - "targets":"ky.korins%sha", + "codedx/mapk":{ + "project":"codedx/mapk", + "repoUrl":"https://github.com/codedx/mapk.git", + "revision":"1.2.0", + "version":"1.2.0", + "targets":"com.codedx%mapk" + }, + "codingwell/scala-guice":{ + "project":"codingwell/scala-guice", + "repoUrl":"https://github.com/codingwell/scala-guice.git", + "revision":"v7.0.0", + "version":"7.0.0", + "targets":"net.codingwell%scala-guice", "config":{ "projects":{ "exclude":[ @@ -5406,7 +5139,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -5425,25 +5158,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.0.1\"", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "cb372/cats-retry":{ - "project":"cb372/cats-retry", - "repoUrl":"https://github.com/cb372/cats-retry.git", - "revision":"v3.1.0", - "version":"3.1.0", - "targets":"com.github.cb372%cats-retry com.github.cb372%alleycats-retry com.github.cb372%cats-retry-mtl" - }, - "cb372/scalacache":{ - "project":"cb372/scalacache", - "repoUrl":"https://github.com/cb372/scalacache.git", - "revision":"v1.0.0-M6", - "version":"1.0.0-M6", - "targets":"com.github.cb372%scalacache-circe com.github.cb372%scalacache-caffeine com.github.cb372%scalacache-redis com.github.cb372%scalacache-core com.github.cb372%scalacache-memcached", + "cognitedata/cognite-sdk-scala":{ + "project":"cognitedata/cognite-sdk-scala", + "repoUrl":"https://github.com/cognitedata/cognite-sdk-scala.git", + "revision":"0b3aecb6ef50c9de6832064bebe78f8339d2f37d", + "version":"2.5.2", + "targets":"com.cognite%cognite-sdk-scala", "config":{ "projects":{ "exclude":[ @@ -5454,11 +5180,12 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -5469,25 +5196,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "cchantep/acolyte":{ - "project":"cchantep/acolyte", - "repoUrl":"https://github.com/cchantep/acolyte.git", - "revision":"1.2.9", - "version":"1.2.9", - "targets":"org.eu.acolyte%jdbc-scala org.eu.acolyte%play-jdbc org.eu.acolyte%play-reactive-mongo org.eu.acolyte%reactive-mongo" - }, - "cequence-io/openai-scala-client":{ - "project":"cequence-io/openai-scala-client", - "repoUrl":"https://github.com/cequence-io/openai-scala-client.git", - "revision":"v0.5.0", - "version":"0.5.0", - "targets":"io.cequence%openai-scala-client io.cequence%openai-scala-client-stream io.cequence%openai-scala-core io.cequence%openai-scala-guice", + "com-lihaoyi/cask":{ + "project":"com-lihaoyi/cask", + "repoUrl":"https://github.com/com-lihaoyi/cask.git", + "revision":"0.9.1", + "version":"0.9.1", + "targets":"com.lihaoyi%cask com.lihaoyi%cask-util", "config":{ "projects":{ "exclude":[ @@ -5498,7 +5218,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -5516,19 +5236,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", + "path":"build.sc", "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "cequence-io/pinecone-scala":{ - "project":"cequence-io/pinecone-scala", - "repoUrl":"https://github.com/cequence-io/pinecone-scala.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.cequence%pinecone-scala-client io.cequence%pinecone-scala-core", + "com-lihaoyi/castor":{ + "project":"com-lihaoyi/castor", + "repoUrl":"https://github.com/com-lihaoyi/castor.git", + "revision":"0.3.0", + "version":"0.3.0", + "targets":"com.lihaoyi%castor", "config":{ "projects":{ "exclude":[ @@ -5539,7 +5259,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -5557,19 +5277,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", + "path":"build.sc", + "pattern":"val scala3 = \"3.1.3\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "changvvb/scala-protobuf-java":{ - "project":"changvvb/scala-protobuf-java", - "repoUrl":"https://github.com/changvvb/scala-protobuf-java.git", - "revision":"v0.3.0", - "version":"0.3.0", - "targets":"com.github.changvvb%scala-protobuf-java", + "com-lihaoyi/fansi":{ + "project":"com-lihaoyi/fansi", + "repoUrl":"https://github.com/com-lihaoyi/fansi.git", + "revision":"0.4.0", + "version":"0.4.0", + "targets":"com.lihaoyi%fansi", "config":{ "projects":{ "exclude":[ @@ -5580,7 +5300,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -5597,31 +5317,27 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "chatwork/scala-jwk":{ - "project":"chatwork/scala-jwk", - "repoUrl":"https://github.com/chatwork/scala-jwk.git", - "revision":"v1.2.24", - "version":"1.2.24", - "targets":"com.chatwork%scala-jwk", + "com-lihaoyi/fastparse":{ + "project":"com-lihaoyi/fastparse", + "repoUrl":"https://github.com/com-lihaoyi/fastparse.git", + "revision":"3.0.1", + "version":"3.0.1", + "targets":"com.lihaoyi%fastparse com.lihaoyi%cssparse com.lihaoyi%pythonparse com.lihaoyi%scalaparse", "config":{ "projects":{ "exclude":[ - + "com.lihaoyi%pythonparse" ], "overrides":{ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -5638,20 +5354,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3Version = \"3.0.2\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "cheleb/zio-pravega":{ - "project":"cheleb/zio-pravega", - "repoUrl":"https://github.com/cheleb/zio-pravega.git", - "revision":"v0.6.3", - "version":"0.6.3", - "targets":"dev.cheleb%zio-pravega", + "com-lihaoyi/geny":{ + "project":"com-lihaoyi/geny", + "repoUrl":"https://github.com/com-lihaoyi/geny.git", + "revision":"1.0.0", + "version":"1.0.0", + "targets":"com.lihaoyi%geny", "config":{ "projects":{ "exclude":[ @@ -5662,13 +5374,11 @@ } }, "java":{ - "version":"21" + "version":"17" }, "sbt":{ "commands":[ - "set pravega/Test/unmanagedSources/excludeFilter ~= {_ || \"CreateResourcesExample.scala\" }", - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -5679,25 +5389,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "chrisokasaki/hwtest":{ - "project":"chrisokasaki/hwtest", - "repoUrl":"https://github.com/chrisokasaki/hwtest.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"org.okasaki%hwtest" - }, - "christian-schlichtherle/circe-kafka":{ - "project":"christian-schlichtherle/circe-kafka", - "repoUrl":"https://github.com/christian-schlichtherle/circe-kafka.git", - "revision":"v3.0.0", - "version":"3.0.0", - "targets":"global.namespace.circe-kafka%circe-kafka", + "com-lihaoyi/mainargs":{ + "project":"com-lihaoyi/mainargs", + "repoUrl":"https://github.com/com-lihaoyi/mainargs.git", + "revision":"0.5.0", + "version":"0.5.0", + "targets":"com.lihaoyi%mainargs", "config":{ "projects":{ "exclude":[ @@ -5708,7 +5411,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -5725,16 +5428,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sc", + "pattern":"val scala3 = \"3.1.3\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "chronoscala/chronoscala":{ - "project":"chronoscala/chronoscala", - "repoUrl":"https://github.com/chronoscala/chronoscala.git", - "revision":"2.0.9", - "version":"2.0.9", - "targets":"io.github.chronoscala%chronoscala", + "com-lihaoyi/os-lib":{ + "project":"com-lihaoyi/os-lib", + "repoUrl":"https://github.com/com-lihaoyi/os-lib.git", + "revision":"0.9.1", + "version":"0.9.1", + "targets":"com.lihaoyi%os-lib com.lihaoyi%os-lib-watch", "config":{ "projects":{ "exclude":[ @@ -5745,7 +5452,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -5766,19 +5473,12 @@ ] } }, - "ciaraobrien/dottytags":{ - "project":"ciaraobrien/dottytags", - "repoUrl":"https://github.com/ciaraobrien/dottytags.git", - "revision":"", - "version":"1.1.0", - "targets":"io.github.ciaraobrien%dottytags" - }, - "circe/circe":{ - "project":"circe/circe", - "repoUrl":"https://github.com/circe/circe.git", - "revision":"v0.14.6", - "version":"0.14.6", - "targets":"io.circe%circe-refined io.circe%circe-numbers io.circe%circe-pointer-literal io.circe%circe-scodec io.circe%circe-numbers-testing io.circe%circe-testing io.circe%circe-jawn io.circe%circe-literal io.circe%circe-generic io.circe%circe-parser io.circe%circe-pointer io.circe%circe-core", + "com-lihaoyi/pprint":{ + "project":"com-lihaoyi/pprint", + "repoUrl":"https://github.com/com-lihaoyi/pprint.git", + "revision":"0.8.1", + "version":"0.8.1", + "targets":"com.lihaoyi%pprint", "config":{ "projects":{ "exclude":[ @@ -5810,12 +5510,12 @@ ] } }, - "circe/circe-config":{ - "project":"circe/circe-config", - "repoUrl":"https://github.com/circe/circe-config.git", - "revision":"v0.10.0", - "version":"0.10.0", - "targets":"io.circe%circe-config", + "com-lihaoyi/requests-scala":{ + "project":"com-lihaoyi/requests-scala", + "repoUrl":"https://github.com/com-lihaoyi/requests-scala.git", + "revision":"0.8.0", + "version":"0.8.0", + "targets":"com.lihaoyi%requests", "config":{ "projects":{ "exclude":[ @@ -5841,22 +5541,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "circe/circe-fs2":{ - "project":"circe/circe-fs2", - "repoUrl":"https://github.com/circe/circe-fs2.git", - "revision":"v0.14.1", - "version":"0.14.1", - "targets":"io.circe%circe-fs2", + "com-lihaoyi/scalatags":{ + "project":"com-lihaoyi/scalatags", + "repoUrl":"https://github.com/com-lihaoyi/scalatags.git", + "revision":"0.12.0", + "version":"0.12.0", + "targets":"com.lihaoyi%scalatags", "config":{ "projects":{ "exclude":[ @@ -5882,25 +5578,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "circe/circe-jackson":{ - "project":"circe/circe-jackson", - "repoUrl":"https://github.com/circe/circe-jackson.git", - "revision":"v0.14.0", - "version":"0.14.0", - "targets":"io.circe%circe-jackson28 io.circe%circe-jackson212 io.circe%circe-jackson29 io.circe%circe-jackson211 io.circe%circe-jackson26 io.circe%circe-jackson210 io.circe%circe-jackson25 io.circe%circe-jackson27" - }, - "circe/circe-optics":{ - "project":"circe/circe-optics", - "repoUrl":"https://github.com/circe/circe-optics.git", - "revision":"v0.15.0", - "version":"0.15.0", - "targets":"io.circe%circe-optics", + "com-lihaoyi/sourcecode":{ + "project":"com-lihaoyi/sourcecode", + "repoUrl":"https://github.com/com-lihaoyi/sourcecode.git", + "revision":"0.3.0", + "version":"0.3.0", + "targets":"com.lihaoyi%sourcecode", "config":{ "projects":{ "exclude":[ @@ -5928,20 +5617,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "circe/circe-yaml":{ - "project":"circe/circe-yaml", - "repoUrl":"https://github.com/circe/circe-yaml.git", - "revision":"v0.15.0-RC1", - "version":"0.15.0-RC1", - "targets":"io.circe%circe-yaml io.circe%circe-yaml-common io.circe%circe-yaml-v12", + "com-lihaoyi/upickle":{ + "project":"com-lihaoyi/upickle", + "repoUrl":"https://github.com/com-lihaoyi/upickle.git", + "revision":"3.1.0", + "version":"3.1.0", + "targets":"com.lihaoyi%ujson com.lihaoyi%ujson-circe com.lihaoyi%upickle com.lihaoyi%upickle-core com.lihaoyi%upack com.lihaoyi%ujson-json4s com.lihaoyi%upickle-implicits", "config":{ "projects":{ "exclude":[ @@ -5970,19 +5655,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.1\"", + "path":"build.sc", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "cjmx/cjmx":{ - "project":"cjmx/cjmx", - "repoUrl":"https://github.com/cjmx/cjmx.git", - "revision":"v3.0.0-RC1", - "version":"3.0.0-RC1", - "targets":"com.github.cjmx%cjmx", + "com-lihaoyi/utest":{ + "project":"com-lihaoyi/utest", + "repoUrl":"https://github.com/com-lihaoyi/utest.git", + "revision":"0.8.1", + "version":"0.8.1", + "targets":"com.lihaoyi%utest", "config":{ "projects":{ "exclude":[ @@ -6014,12 +5699,12 @@ ] } }, - "clevercloud/pulsar4s":{ - "project":"clevercloud/pulsar4s", - "repoUrl":"https://github.com/clevercloud/pulsar4s.git", - "revision":"v2.9.0", - "version":"2.9.0", - "targets":"com.clever-cloud.pulsar4s%pulsar4s-play-json com.clever-cloud.pulsar4s%pulsar4s-monix com.clever-cloud.pulsar4s%pulsar4s-zio com.clever-cloud.pulsar4s%pulsar4s-scalaz com.clever-cloud.pulsar4s%pulsar4s-akka-streams com.clever-cloud.pulsar4s%pulsar4s-json4s com.clever-cloud.pulsar4s%pulsar4s-core com.clever-cloud.pulsar4s%pulsar4s-spray-json com.clever-cloud.pulsar4s%pulsar4s-jackson com.clever-cloud.pulsar4s%pulsar4s-fs2 com.clever-cloud.pulsar4s%pulsar4s-cats-effect com.clever-cloud.pulsar4s%pulsar4s-avro com.clever-cloud.pulsar4s%pulsar4s-circe", + "comcast/ip4s":{ + "project":"comcast/ip4s", + "repoUrl":"https://github.com/comcast/ip4s.git", + "revision":"v3.3.0", + "version":"3.3.0", + "targets":"com.comcast%ip4s-core com.comcast%ip4s-test-kit", "config":{ "projects":{ "exclude":[ @@ -6030,7 +5715,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -6045,29 +5730,31 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "clockworkconsulting/csexp":{ - "project":"clockworkconsulting/csexp", - "repoUrl":"https://github.com/clockworkconsulting/csexp.git", - "revision":"v3.2.1", - "version":"3.2.1", - "targets":"dk.cwconsult%csexp", + "coralogix/zio-k8s":{ + "project":"coralogix/zio-k8s", + "repoUrl":"https://github.com/coralogix/zio-k8s.git", + "revision":"v2.0.2", + "version":"2.0.2", + "targets":"com.coralogix%zio-k8s-client com.coralogix%zio-k8s-client-optics com.coralogix%zio-k8s-client-quicklens com.coralogix%zio-k8s-operator", "config":{ "projects":{ "exclude":[ ], "overrides":{ - + "zio-k8s-client-quicklens":{ + "tests":"disabled" + } } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -6086,18 +5773,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala_3 = \"3.3.0\"", - "replaceWith":"val scala_3 = \"\"" + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "clockworkconsulting/peregrin":{ - "project":"clockworkconsulting/peregrin", - "repoUrl":"https://github.com/clockworkconsulting/peregrin.git", - "revision":"v9.0.0", - "version":"9.0.0", - "targets":"dk.cwconsult.peregrin%peregrin-core", + "cornerman/chameleon":{ + "project":"cornerman/chameleon", + "repoUrl":"https://github.com/cornerman/chameleon.git", + "revision":"v0.3.5", + "version":"0.3.5", + "targets":"com.github.cornerman%chameleon", "config":{ "projects":{ "exclude":[ @@ -6108,7 +5795,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -6123,22 +5810,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala_3 = \"3.1.1\"", - "replaceWith":"val scala_3 = \"\"" - } + ] } }, - "clulab/fatdynet":{ - "project":"clulab/fatdynet", - "repoUrl":"https://github.com/clulab/fatdynet.git", - "revision":"v0.4.5", - "version":"0.4.5", - "targets":"org.clulab%fatdynet", + "cornerman/scala-cuid":{ + "project":"cornerman/scala-cuid", + "repoUrl":"https://github.com/cornerman/scala-cuid.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.github.cornerman%scala-cuid", "config":{ "projects":{ "exclude":[ @@ -6149,7 +5832,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -6164,18 +5847,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "clulab/processors":{ - "project":"clulab/processors", - "repoUrl":"https://github.com/clulab/processors.git", - "revision":"v8.5.3", - "version":"8.5.3", - "targets":"org.clulab%processors-corenlp org.clulab%processors-main org.clulab%processors-openie", + "cornerman/simple-scalajs-requests":{ + "project":"cornerman/simple-scalajs-requests", + "repoUrl":"https://github.com/cornerman/simple-scalajs-requests.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.github.cornerman%simple-scalajs-requests", "config":{ "projects":{ "exclude":[ @@ -6186,7 +5869,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -6201,18 +5884,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "codacy/codacy-plugins-api":{ - "project":"codacy/codacy-plugins-api", - "repoUrl":"https://github.com/codacy/codacy-plugins-api.git", - "revision":"8.0.0", - "version":"8.0.0", - "targets":"com.codacy%codacy-plugins-api", + "cornerman/sloth":{ + "project":"cornerman/sloth", + "repoUrl":"https://github.com/cornerman/sloth.git", + "revision":"v0.6.7", + "version":"0.6.7", + "targets":"com.github.cornerman%sloth-types", "config":{ "projects":{ "exclude":[ @@ -6223,7 +5906,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -6240,27 +5923,23 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "codedx/mapk":{ - "project":"codedx/mapk", - "repoUrl":"https://github.com/codedx/mapk.git", - "revision":"1.2.0", - "version":"1.2.0", - "targets":"com.codedx%mapk" + "coursier/class-path-util":{ + "project":"coursier/class-path-util", + "repoUrl":"https://github.com/coursier/class-path-util.git", + "revision":"v0.1.4", + "version":"0.1.4", + "targets":"io.get-coursier%class-path-util" }, - "codingwell/scala-guice":{ - "project":"codingwell/scala-guice", - "repoUrl":"https://github.com/codingwell/scala-guice.git", - "revision":"v7.0.0", - "version":"7.0.0", - "targets":"net.codingwell%scala-guice", + "cozydev-pink/snakecase":{ + "project":"cozydev-pink/snakecase", + "repoUrl":"https://github.com/cozydev-pink/snakecase.git", + "revision":"v0.0.2", + "version":"0.0.2", + "targets":"pink.cozydev%snakecase", "config":{ "projects":{ "exclude":[ @@ -6271,7 +5950,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -6288,20 +5967,23 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "cognitedata/cognite-sdk-scala":{ - "project":"cognitedata/cognite-sdk-scala", - "repoUrl":"https://github.com/cognitedata/cognite-sdk-scala.git", - "revision":"", - "version":"2.5.2", - "targets":"com.cognite%cognite-sdk-scala", + "cquiroz/sbt-locales":{ + "project":"cquiroz/sbt-locales", + "repoUrl":"https://github.com/cquiroz/sbt-locales.git", + "revision":"v4.2.0", + "version":"4.2.0", + "targets":"io.github.cquiroz%cldr-api" + }, + "cquiroz/scala-java-locales":{ + "project":"cquiroz/scala-java-locales", + "repoUrl":"https://github.com/cquiroz/scala-java-locales.git", + "revision":"v1.5.1", + "version":"1.5.1", + "targets":"io.github.cquiroz%scala-java-locales", "config":{ "projects":{ "exclude":[ @@ -6312,12 +5994,11 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -6328,18 +6009,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "com-lihaoyi/cask":{ - "project":"com-lihaoyi/cask", - "repoUrl":"https://github.com/com-lihaoyi/cask.git", - "revision":"0.9.1", - "version":"0.9.1", - "targets":"com.lihaoyi%cask com.lihaoyi%cask-util", + "cquiroz/scala-java-time":{ + "project":"cquiroz/scala-java-time", + "repoUrl":"https://github.com/cquiroz/scala-java-time.git", + "revision":"v2.5.0", + "version":"2.5.0", + "targets":"io.github.cquiroz%scala-java-time io.github.cquiroz%scala-java-time-tzdb", "config":{ "projects":{ "exclude":[ @@ -6350,7 +6031,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -6368,19 +6049,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sc", - "pattern":"val scala3 = \"3.2.2\"", + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.1\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "com-lihaoyi/castor":{ - "project":"com-lihaoyi/castor", - "repoUrl":"https://github.com/com-lihaoyi/castor.git", - "revision":"0.3.0", - "version":"0.3.0", - "targets":"com.lihaoyi%castor", + "creativescala/doodle":{ + "project":"creativescala/doodle", + "repoUrl":"https://github.com/creativescala/doodle.git", + "revision":"v0.18.0", + "version":"0.18.0", + "targets":"org.creativescala%doodle-turtle org.creativescala%doodle-docs org.creativescala%doodle-image org.creativescala%doodle-reactor org.creativescala%doodle-interact org.creativescala%doodle-examples org.creativescala%doodle-plot org.creativescala%doodle-golden org.creativescala%doodle org.creativescala%doodle-java2d org.creativescala%doodle-core", "config":{ "projects":{ "exclude":[ @@ -6391,7 +6072,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -6409,19 +6090,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sc", - "pattern":"val scala3 = \"3.1.3\"", + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.1\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "com-lihaoyi/fansi":{ - "project":"com-lihaoyi/fansi", - "repoUrl":"https://github.com/com-lihaoyi/fansi.git", - "revision":"0.4.0", - "version":"0.4.0", - "targets":"com.lihaoyi%fansi", + "creativescala/doodle-explore":{ + "project":"creativescala/doodle-explore", + "repoUrl":"https://github.com/creativescala/doodle-explore.git", + "revision":"v0.14.0", + "version":"0.14.0", + "targets":"org.creativescala%doodle-explore org.creativescala%doodle-explore-core org.creativescala%doodle-explore-java2d", "config":{ "projects":{ "exclude":[ @@ -6432,7 +6113,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -6449,20 +6130,24 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.3\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "com-lihaoyi/fastparse":{ - "project":"com-lihaoyi/fastparse", - "repoUrl":"https://github.com/com-lihaoyi/fastparse.git", - "revision":"3.0.2", - "version":"3.0.2", - "targets":"com.lihaoyi%fastparse com.lihaoyi%cssparse com.lihaoyi%pythonparse com.lihaoyi%scalaparse", + "creativescala/doodle-svg":{ + "project":"creativescala/doodle-svg", + "repoUrl":"https://github.com/creativescala/doodle-svg.git", + "revision":"v0.15.0", + "version":"0.15.0", + "targets":"org.creativescala%doodle-svg org.creativescala%doodle-svg-docs", "config":{ "projects":{ "exclude":[ - "com.lihaoyi%pythonparse" + ], "overrides":{ @@ -6486,16 +6171,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "com-lihaoyi/geny":{ - "project":"com-lihaoyi/geny", - "repoUrl":"https://github.com/com-lihaoyi/geny.git", - "revision":"1.0.0", - "version":"1.0.0", - "targets":"com.lihaoyi%geny", + "cric96/distributed-frp":{ + "project":"cric96/distributed-frp", + "repoUrl":"https://github.com/cric96/distributed-frp.git", + "revision":"v0.1.4", + "version":"0.1.4", + "targets":"io.github.cric96%distributed-frp", "config":{ "projects":{ "exclude":[ @@ -6506,7 +6195,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -6527,12 +6216,12 @@ ] } }, - "com-lihaoyi/mainargs":{ - "project":"com-lihaoyi/mainargs", - "repoUrl":"https://github.com/com-lihaoyi/mainargs.git", - "revision":"0.5.4", - "version":"0.5.4", - "targets":"com.lihaoyi%mainargs", + "cucumber/action-publish-sbt":{ + "project":"cucumber/action-publish-sbt", + "repoUrl":"https://github.com/cucumber/action-publish-sbt.git", + "revision":"315d09c123f986aab02e49d4596c7e14cccb2f90", + "version":"0.0.30", + "targets":"io.cucumber%test-release-automation-sbt", "config":{ "projects":{ "exclude":[ @@ -6543,7 +6232,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -6560,20 +6249,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sc", - "pattern":"val scala3 = \"3.1.3\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "com-lihaoyi/os-lib":{ - "project":"com-lihaoyi/os-lib", - "repoUrl":"https://github.com/com-lihaoyi/os-lib.git", - "revision":"0.9.1", - "version":"0.9.1", - "targets":"com.lihaoyi%os-lib com.lihaoyi%os-lib-watch", + "cucumber/cucumber-jvm-scala":{ + "project":"cucumber/cucumber-jvm-scala", + "repoUrl":"https://github.com/cucumber/cucumber-jvm-scala.git", + "revision":"v8.15.0", + "version":"8.15.0", + "targets":"io.cucumber%cucumber-scala", "config":{ "projects":{ "exclude":[ @@ -6584,7 +6269,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -6601,16 +6286,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "com-lihaoyi/pprint":{ - "project":"com-lihaoyi/pprint", - "repoUrl":"https://github.com/com-lihaoyi/pprint.git", - "revision":"0.8.1", - "version":"0.8.1", - "targets":"com.lihaoyi%pprint", + "dacr/code-examples-manager":{ + "project":"dacr/code-examples-manager", + "repoUrl":"https://github.com/dacr/code-examples-manager.git", + "revision":"v2.3.3", + "version":"2.3.3", + "targets":"fr.janalyse%code-examples-manager", "config":{ "projects":{ "exclude":[ @@ -6621,7 +6310,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -6642,12 +6331,19 @@ ] } }, - "com-lihaoyi/requests-scala":{ - "project":"com-lihaoyi/requests-scala", - "repoUrl":"https://github.com/com-lihaoyi/requests-scala.git", - "revision":"0.8.0", - "version":"0.8.0", - "targets":"com.lihaoyi%requests", + "dacr/drools-scripting":{ + "project":"dacr/drools-scripting", + "repoUrl":"https://github.com/dacr/drools-scripting.git", + "revision":"v1.0.16", + "version":"1.0.16", + "targets":"fr.janalyse%drools-scripting" + }, + "dacr/jassh":{ + "project":"dacr/jassh", + "repoUrl":"https://github.com/dacr/jassh.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"fr.janalyse%janalyse-ssh", "config":{ "projects":{ "exclude":[ @@ -6658,7 +6354,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -6679,12 +6375,26 @@ ] } }, - "com-lihaoyi/scalatags":{ - "project":"com-lihaoyi/scalatags", - "repoUrl":"https://github.com/com-lihaoyi/scalatags.git", - "revision":"0.12.0", - "version":"0.12.0", - "targets":"com.lihaoyi%scalatags", + "dacr/json2props":{ + "project":"dacr/json2props", + "repoUrl":"https://github.com/dacr/json2props.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"fr.janalyse%json2props" + }, + "dacr/naturalsort":{ + "project":"dacr/naturalsort", + "repoUrl":"https://github.com/dacr/naturalsort.git", + "revision":"v1.0.2", + "version":"1.0.2", + "targets":"fr.janalyse%naturalsort" + }, + "dacr/primes":{ + "project":"dacr/primes", + "repoUrl":"https://github.com/dacr/primes.git", + "revision":"v1.2.10", + "version":"1.2.10", + "targets":"fr.janalyse%primes", "config":{ "projects":{ "exclude":[ @@ -6695,7 +6405,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -6710,18 +6420,32 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "com-lihaoyi/sourcecode":{ - "project":"com-lihaoyi/sourcecode", - "repoUrl":"https://github.com/com-lihaoyi/sourcecode.git", - "revision":"0.3.1", - "version":"0.3.1", - "targets":"com.lihaoyi%sourcecode", + "dacr/split":{ + "project":"dacr/split", + "repoUrl":"https://github.com/dacr/split.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"fr.janalyse%split" + }, + "dacr/unittools":{ + "project":"dacr/unittools", + "repoUrl":"https://github.com/dacr/unittools.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"fr.janalyse%unittools" + }, + "dacr/zio-lmdb":{ + "project":"dacr/zio-lmdb", + "repoUrl":"https://github.com/dacr/zio-lmdb.git", + "revision":"v1.1.0", + "version":"1.1.0", + "targets":"fr.janalyse%zio-lmdb", "config":{ "projects":{ "exclude":[ @@ -6753,12 +6477,12 @@ ] } }, - "com-lihaoyi/upickle":{ - "project":"com-lihaoyi/upickle", - "repoUrl":"https://github.com/com-lihaoyi/upickle.git", - "revision":"3.1.3", - "version":"3.1.3", - "targets":"com.lihaoyi%ujson com.lihaoyi%ujson-circe com.lihaoyi%upickle com.lihaoyi%upickle-core com.lihaoyi%upack com.lihaoyi%ujson-json4s com.lihaoyi%upickle-implicits", + "dacr/zio-worksheet":{ + "project":"dacr/zio-worksheet", + "repoUrl":"https://github.com/dacr/zio-worksheet.git", + "revision":"v2.0.13.0", + "version":"2.0.13.0", + "targets":"fr.janalyse%zio-worksheet", "config":{ "projects":{ "exclude":[ @@ -6769,7 +6493,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -6786,24 +6510,34 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sc", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "com-lihaoyi/utest":{ - "project":"com-lihaoyi/utest", - "repoUrl":"https://github.com/com-lihaoyi/utest.git", - "revision":"0.8.1", - "version":"0.8.1", - "targets":"com.lihaoyi%utest", + "daghemberg/paut-program":{ + "project":"daghemberg/paut-program", + "repoUrl":"https://github.com/daghemberg/paut-program.git", + "revision":"fb6d4e9f6fc1489fd0c157decbf13d08d9b8c6d7", + "version":"0.1.4", + "targets":"io.github.daghemberg%paut-program" + }, + "daghemberg/problemutils":{ + "project":"daghemberg/problemutils", + "repoUrl":"https://github.com/daghemberg/problemutils.git", + "revision":"a8ad8c6b0546b86b8d99daded7a78aa021982aac", + "version":"0.1.1", + "targets":"io.github.daghemberg%problemutils" + }, + "danslapman/morphling":{ + "project":"danslapman/morphling", + "repoUrl":"https://github.com/danslapman/morphling.git", + "revision":"v3.1.0", + "version":"3.1.0", + "targets":"com.github.danslapman%morphling-reactivemongo com.github.danslapman%morphling-scalacheck com.github.danslapman%morphling com.github.danslapman%morphling-tapir com.github.danslapman%morphling-circe", "config":{ "projects":{ "exclude":[ - + "morphling-circe" ], "overrides":{ @@ -6831,12 +6565,12 @@ ] } }, - "comcast/ip4s":{ - "project":"comcast/ip4s", - "repoUrl":"https://github.com/comcast/ip4s.git", - "revision":"v3.3.0", - "version":"3.3.0", - "targets":"com.comcast%ip4s-core com.comcast%ip4s-test-kit", + "dapperware/zio-slack":{ + "project":"dapperware/zio-slack", + "repoUrl":"https://github.com/dapperware/zio-slack.git", + "revision":"v1.0.0-RC1", + "version":"1.0.0-RC1", + "targets":"com.github.dapperware%zio-slack-api-web com.github.dapperware%zio-slack-core", "config":{ "projects":{ "exclude":[ @@ -6847,7 +6581,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -6868,25 +6602,23 @@ ] } }, - "coralogix/zio-k8s":{ - "project":"coralogix/zio-k8s", - "repoUrl":"https://github.com/coralogix/zio-k8s.git", - "revision":"v2.1.0", - "version":"2.1.0", - "targets":"com.coralogix%zio-k8s-client com.coralogix%zio-k8s-client-optics com.coralogix%zio-k8s-client-quicklens com.coralogix%zio-k8s-operator", + "darrenjw/scala-glm":{ + "project":"darrenjw/scala-glm", + "repoUrl":"https://github.com/darrenjw/scala-glm.git", + "revision":"v0.8", + "version":"0.8", + "targets":"com.github.darrenjw%scala-glm", "config":{ "projects":{ "exclude":[ ], "overrides":{ - "zio-k8s-client-quicklens":{ - "tests":"disabled" - } + } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -6901,22 +6633,25 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "cornerman/chameleon":{ - "project":"cornerman/chameleon", - "repoUrl":"https://github.com/cornerman/chameleon.git", - "revision":"v0.3.7", - "version":"0.3.7", - "targets":"com.github.cornerman%chameleon", + "darrenjw/scala-smfsb":{ + "project":"darrenjw/scala-smfsb", + "repoUrl":"https://github.com/darrenjw/scala-smfsb.git", + "revision":"v1.0", + "version":"1.0", + "targets":"com.github.darrenjw%scala-smfsb" + }, + "data-tools/big-data-types":{ + "project":"data-tools/big-data-types", + "repoUrl":"https://github.com/data-tools/big-data-types.git", + "revision":"v1.3.0", + "version":"1.3.0", + "targets":"io.github.data-tools%big-data-types-bigquery io.github.data-tools%big-data-types-cassandra io.github.data-tools%big-data-types-circe io.github.data-tools%big-data-types-core", "config":{ "projects":{ "exclude":[ @@ -6944,16 +6679,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "cornerman/scala-cuid":{ - "project":"cornerman/scala-cuid", - "repoUrl":"https://github.com/cornerman/scala-cuid.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.github.cornerman%scala-cuid", + "davegurnell/unindent":{ + "project":"davegurnell/unindent", + "repoUrl":"https://github.com/davegurnell/unindent.git", + "revision":"v1.8.0", + "version":"1.8.0", + "targets":"com.davegurnell%unindent", "config":{ "projects":{ "exclude":[ @@ -6964,7 +6703,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -6985,12 +6724,12 @@ ] } }, - "cornerman/simple-scalajs-requests":{ - "project":"cornerman/simple-scalajs-requests", - "repoUrl":"https://github.com/cornerman/simple-scalajs-requests.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.github.cornerman%simple-scalajs-requests", + "davenverse/cats-effect-time":{ + "project":"davenverse/cats-effect-time", + "repoUrl":"https://github.com/davenverse/cats-effect-time.git", + "revision":"v0.2.1", + "version":"0.2.1", + "targets":"io.chrisdavenport%cats-effect-time", "config":{ "projects":{ "exclude":[ @@ -7022,12 +6761,12 @@ ] } }, - "cornerman/sloth":{ - "project":"cornerman/sloth", - "repoUrl":"https://github.com/cornerman/sloth.git", - "revision":"v0.7.1", - "version":"0.7.1", - "targets":"com.github.cornerman%sloth com.github.cornerman%sloth-types", + "davenverse/cats-scalacheck":{ + "project":"davenverse/cats-scalacheck", + "repoUrl":"https://github.com/davenverse/cats-scalacheck.git", + "revision":"v0.3.2", + "version":"0.3.2", + "targets":"io.chrisdavenport%cats-scalacheck", "config":{ "projects":{ "exclude":[ @@ -7038,7 +6777,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -7059,19 +6798,12 @@ ] } }, - "coursier/class-path-util":{ - "project":"coursier/class-path-util", - "repoUrl":"https://github.com/coursier/class-path-util.git", - "revision":"v0.1.4", - "version":"0.1.4", - "targets":"io.get-coursier%class-path-util" - }, - "cozydev-pink/lucille":{ - "project":"cozydev-pink/lucille", - "repoUrl":"https://github.com/cozydev-pink/lucille.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"pink.cozydev%lucille", + "davenverse/catscript":{ + "project":"davenverse/catscript", + "repoUrl":"https://github.com/davenverse/catscript.git", + "revision":"v0.1.1", + "version":"0.1.1", + "targets":"io.chrisdavenport%catscript", "config":{ "projects":{ "exclude":[ @@ -7082,7 +6814,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -7103,12 +6835,12 @@ ] } }, - "cozydev-pink/snakecase":{ - "project":"cozydev-pink/snakecase", - "repoUrl":"https://github.com/cozydev-pink/snakecase.git", - "revision":"v0.0.3", - "version":"0.0.3", - "targets":"pink.cozydev%snakecase", + "davenverse/circuit":{ + "project":"davenverse/circuit", + "repoUrl":"https://github.com/davenverse/circuit.git", + "revision":"v0.5.1", + "version":"0.5.1", + "targets":"io.chrisdavenport%circuit", "config":{ "projects":{ "exclude":[ @@ -7140,19 +6872,12 @@ ] } }, - "cquiroz/sbt-locales":{ - "project":"cquiroz/sbt-locales", - "repoUrl":"https://github.com/cquiroz/sbt-locales.git", - "revision":"v4.2.0", - "version":"4.2.0", - "targets":"io.github.cquiroz%cldr-api" - }, - "cquiroz/scala-java-locales":{ - "project":"cquiroz/scala-java-locales", - "repoUrl":"https://github.com/cquiroz/scala-java-locales.git", - "revision":"v1.5.1", - "version":"1.5.1", - "targets":"io.github.cquiroz%scala-java-locales", + "davenverse/circuit-http4s":{ + "project":"davenverse/circuit-http4s", + "repoUrl":"https://github.com/davenverse/circuit-http4s.git", + "revision":"v0.5.1", + "version":"0.5.1", + "targets":"io.chrisdavenport%circuit-http4s-client io.chrisdavenport%circuit-http4s-server", "config":{ "projects":{ "exclude":[ @@ -7163,7 +6888,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -7184,12 +6909,12 @@ ] } }, - "cquiroz/scala-java-time":{ - "project":"cquiroz/scala-java-time", - "repoUrl":"https://github.com/cquiroz/scala-java-time.git", - "revision":"v2.5.0", - "version":"2.5.0", - "targets":"io.github.cquiroz%scala-java-time io.github.cquiroz%scala-java-time-tzdb", + "davenverse/clippette":{ + "project":"davenverse/clippette", + "repoUrl":"https://github.com/davenverse/clippette.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.chrisdavenport%clippette", "config":{ "projects":{ "exclude":[ @@ -7217,20 +6942,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "creativescala/doodle":{ - "project":"creativescala/doodle", - "repoUrl":"https://github.com/creativescala/doodle.git", - "revision":"v0.20.0", - "version":"0.20.0", - "targets":"org.creativescala%doodle-turtle org.creativescala%doodle-docs org.creativescala%doodle-image org.creativescala%doodle-svg org.creativescala%doodle-reactor org.creativescala%doodle-interact org.creativescala%doodle-examples org.creativescala%doodle-golden org.creativescala%doodle org.creativescala%doodle-java2d org.creativescala%doodle-core", + "davenverse/condemned":{ + "project":"davenverse/condemned", + "repoUrl":"https://github.com/davenverse/condemned.git", + "revision":"v0.0.2", + "version":"0.0.2", + "targets":"io.chrisdavenport%condemned", "config":{ "projects":{ "exclude":[ @@ -7241,7 +6962,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -7258,20 +6979,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "creativescala/doodle-explore":{ - "project":"creativescala/doodle-explore", - "repoUrl":"https://github.com/creativescala/doodle-explore.git", - "revision":"v0.14.0", - "version":"0.14.0", - "targets":"org.creativescala%doodle-explore org.creativescala%doodle-explore-core org.creativescala%doodle-explore-java2d", + "davenverse/crossplatformioapp":{ + "project":"davenverse/crossplatformioapp", + "repoUrl":"https://github.com/davenverse/crossplatformioapp.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.chrisdavenport%crossplatformioapp", "config":{ "projects":{ "exclude":[ @@ -7299,20 +7016,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.3\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "creativescala/doodle-svg":{ - "project":"creativescala/doodle-svg", - "repoUrl":"https://github.com/creativescala/doodle-svg.git", - "revision":"v0.16.1", - "version":"0.16.1", - "targets":"org.creativescala%doodle-svg org.creativescala%doodle-svg-docs", + "davenverse/env":{ + "project":"davenverse/env", + "repoUrl":"https://github.com/davenverse/env.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.chrisdavenport%env", "config":{ "projects":{ "exclude":[ @@ -7323,7 +7036,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -7340,20 +7053,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "creativescala/krop":{ - "project":"creativescala/krop", - "repoUrl":"https://github.com/creativescala/krop.git", - "revision":"v0.4.1", - "version":"0.4.1", - "targets":"org.creativescala%krop org.creativescala%krop-core org.creativescala%krop-docs org.creativescala%krop-examples", + "davenverse/epimetheus":{ + "project":"davenverse/epimetheus", + "repoUrl":"https://github.com/davenverse/epimetheus.git", + "revision":"v0.5.0", + "version":"0.5.0", + "targets":"io.chrisdavenport%epimetheus", "config":{ "projects":{ "exclude":[ @@ -7364,7 +7073,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -7381,20 +7090,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "cric96/distributed-frp":{ - "project":"cric96/distributed-frp", - "repoUrl":"https://github.com/cric96/distributed-frp.git", - "revision":"v0.1.7", - "version":"0.1.7", - "targets":"io.github.cric96%distributed-frp", + "davenverse/epimetheus-circuit":{ + "project":"davenverse/epimetheus-circuit", + "repoUrl":"https://github.com/davenverse/epimetheus-circuit.git", + "revision":"v0.5.0-M2", + "version":"0.5.0-M2", + "targets":"io.chrisdavenport%epimetheus-circuit", "config":{ "projects":{ "exclude":[ @@ -7426,12 +7131,12 @@ ] } }, - "cucumber/action-publish-sbt":{ - "project":"cucumber/action-publish-sbt", - "repoUrl":"https://github.com/cucumber/action-publish-sbt.git", - "revision":"", - "version":"0.0.52", - "targets":"io.cucumber%test-release-automation-sbt", + "davenverse/epimetheus-http4s":{ + "project":"davenverse/epimetheus-http4s", + "repoUrl":"https://github.com/davenverse/epimetheus-http4s.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"io.chrisdavenport%epimetheus-http4s io.chrisdavenport%epimetheus-http4s-pushgateway", "config":{ "projects":{ "exclude":[ @@ -7442,7 +7147,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -7463,12 +7168,12 @@ ] } }, - "cucumber/cucumber-jvm-scala":{ - "project":"cucumber/cucumber-jvm-scala", - "repoUrl":"https://github.com/cucumber/cucumber-jvm-scala.git", - "revision":"v8.17.0", - "version":"8.17.0", - "targets":"io.cucumber%cucumber-scala", + "davenverse/epimetheus-log4cats":{ + "project":"davenverse/epimetheus-log4cats", + "repoUrl":"https://github.com/davenverse/epimetheus-log4cats.git", + "revision":"v0.6.0-M1", + "version":"0.6.0-M1", + "targets":"io.chrisdavenport%epimetheus-log4cats", "config":{ "projects":{ "exclude":[ @@ -7496,20 +7201,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "dacr/code-examples-manager":{ - "project":"dacr/code-examples-manager", - "repoUrl":"https://github.com/dacr/code-examples-manager.git", - "revision":"v2.4.2", - "version":"2.4.2", - "targets":"fr.janalyse%code-examples-manager", + "davenverse/epimetheus-rediculous":{ + "project":"davenverse/epimetheus-rediculous", + "repoUrl":"https://github.com/davenverse/epimetheus-rediculous.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"io.chrisdavenport%epimetheus-rediculous", "config":{ "projects":{ "exclude":[ @@ -7520,7 +7221,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -7537,16 +7238,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "dacr/drools-scripting":{ - "project":"dacr/drools-scripting", - "repoUrl":"https://github.com/dacr/drools-scripting.git", - "revision":"v1.1.0", - "version":"1.1.0", - "targets":"fr.janalyse%drools-scripting", + "davenverse/epimetheus-redis4cats":{ + "project":"davenverse/epimetheus-redis4cats", + "repoUrl":"https://github.com/davenverse/epimetheus-redis4cats.git", + "revision":"v0.2.0-M2", + "version":"0.2.0-M2", + "targets":"io.chrisdavenport%epimetheus-redis4cats", "config":{ "projects":{ "exclude":[ @@ -7578,12 +7283,12 @@ ] } }, - "dacr/jassh":{ - "project":"dacr/jassh", - "repoUrl":"https://github.com/dacr/jassh.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"fr.janalyse%janalyse-ssh", + "davenverse/fiberlocal":{ + "project":"davenverse/fiberlocal", + "repoUrl":"https://github.com/davenverse/fiberlocal.git", + "revision":"v0.1.2", + "version":"0.1.2", + "targets":"io.chrisdavenport%fiberlocal", "config":{ "projects":{ "exclude":[ @@ -7594,7 +7299,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -7609,25 +7314,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "dacr/json2props":{ - "project":"dacr/json2props", - "repoUrl":"https://github.com/dacr/json2props.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"fr.janalyse%json2props" - }, - "dacr/naturalsort":{ - "project":"dacr/naturalsort", - "repoUrl":"https://github.com/dacr/naturalsort.git", - "revision":"v1.0.4", - "version":"1.0.4", - "targets":"fr.janalyse%naturalsort", + "davenverse/fuuid":{ + "project":"davenverse/fuuid", + "repoUrl":"https://github.com/davenverse/fuuid.git", + "revision":"v0.8.0-M2", + "version":"0.8.0-M2", + "targets":"io.chrisdavenport%fuuid io.chrisdavenport%fuuid-circe io.chrisdavenport%fuuid-doobie io.chrisdavenport%fuuid-http4s", "config":{ "projects":{ "exclude":[ @@ -7642,7 +7340,7 @@ }, "sbt":{ "commands":[ - + "set doobie/Test/unmanagedSources/excludeFilter ~= {_ || \"PostgresInstanceSpec.scala\" || \"PostgresTraversalSpec.scala\"} " ], "options":[ @@ -7655,16 +7353,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.0.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "dacr/primes":{ - "project":"dacr/primes", - "repoUrl":"https://github.com/dacr/primes.git", - "revision":"v1.2.12", - "version":"1.2.12", - "targets":"fr.janalyse%primes", + "davenverse/github":{ + "project":"davenverse/github", + "repoUrl":"https://github.com/davenverse/github.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"io.chrisdavenport%github", "config":{ "projects":{ "exclude":[ @@ -7675,7 +7377,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -7696,12 +7398,12 @@ ] } }, - "dacr/split":{ - "project":"dacr/split", - "repoUrl":"https://github.com/dacr/split.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"fr.janalyse%split", + "davenverse/googleapis-http4s":{ + "project":"davenverse/googleapis-http4s", + "repoUrl":"https://github.com/davenverse/googleapis-http4s.git", + "revision":"93591c96ed4b93a677da27c3fd84cb4279be7a71", + "version":"6.42.1+0.0.5", + "targets":"io.chrisdavenport%http4s-grpc-google-cloud-spanner-v1", "config":{ "projects":{ "exclude":[ @@ -7712,7 +7414,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -7733,12 +7435,12 @@ ] } }, - "dacr/unittools":{ - "project":"dacr/unittools", - "repoUrl":"https://github.com/dacr/unittools.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"fr.janalyse%unittools", + "davenverse/http4s-grpc":{ + "project":"davenverse/http4s-grpc", + "repoUrl":"https://github.com/davenverse/http4s-grpc.git", + "revision":"v0.0.3", + "version":"0.0.3", + "targets":"io.chrisdavenport%http4s-grpc", "config":{ "projects":{ "exclude":[ @@ -7749,7 +7451,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -7770,12 +7472,12 @@ ] } }, - "dacr/zio-lmdb":{ - "project":"dacr/zio-lmdb", - "repoUrl":"https://github.com/dacr/zio-lmdb.git", - "revision":"v1.5.0", - "version":"1.5.0", - "targets":"fr.janalyse%zio-lmdb", + "davenverse/keysemaphore":{ + "project":"davenverse/keysemaphore", + "repoUrl":"https://github.com/davenverse/keysemaphore.git", + "revision":"v0.3.0-M1", + "version":"0.3.0-M1", + "targets":"io.chrisdavenport%keysemaphore", "config":{ "projects":{ "exclude":[ @@ -7786,7 +7488,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -7807,12 +7509,12 @@ ] } }, - "dacr/zio-worksheet":{ - "project":"dacr/zio-worksheet", - "repoUrl":"https://github.com/dacr/zio-worksheet.git", - "revision":"v2.0.18.0", - "version":"2.0.18.0", - "targets":"fr.janalyse%zio-worksheet", + "davenverse/lock":{ + "project":"davenverse/lock", + "repoUrl":"https://github.com/davenverse/lock.git", + "revision":"v0.0.2", + "version":"0.0.2", + "targets":"io.chrisdavenport%lock", "config":{ "projects":{ "exclude":[ @@ -7844,12 +7546,12 @@ ] } }, - "daenyth/cats-effect-guava":{ - "project":"daenyth/cats-effect-guava", - "repoUrl":"https://github.com/daenyth/cats-effect-guava.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"io.github.daenyth%cats-effect-guava", + "davenverse/mapref":{ + "project":"davenverse/mapref", + "repoUrl":"https://github.com/davenverse/mapref.git", + "revision":"v0.2.1", + "version":"0.2.1", + "targets":"io.chrisdavenport%mapref", "config":{ "projects":{ "exclude":[ @@ -7860,7 +7562,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -7881,26 +7583,12 @@ ] } }, - "daghemberg/paut-program":{ - "project":"daghemberg/paut-program", - "repoUrl":"https://github.com/daghemberg/paut-program.git", - "revision":"", - "version":"0.1.4", - "targets":"io.github.daghemberg%paut-program" - }, - "daghemberg/problemutils":{ - "project":"daghemberg/problemutils", - "repoUrl":"https://github.com/daghemberg/problemutils.git", - "revision":"", - "version":"0.2.0", - "targets":"io.github.daghemberg%problemutils" - }, - "damon-v79/cassandra-migration":{ - "project":"damon-v79/cassandra-migration", - "repoUrl":"https://github.com/damon-v79/cassandra-migration.git", - "revision":"v1.0.2", - "version":"1.0.2", - "targets":"org.scalacloud%cassandra-migration org.scalacloud%cassandra-migration-testcontainers", + "davenverse/mules":{ + "project":"davenverse/mules", + "repoUrl":"https://github.com/davenverse/mules.git", + "revision":"v0.7.0", + "version":"0.7.0", + "targets":"io.chrisdavenport%mules io.chrisdavenport%mules-caffeine io.chrisdavenport%mules-noop io.chrisdavenport%mules-reload", "config":{ "projects":{ "exclude":[ @@ -7911,7 +7599,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -7928,31 +7616,27 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "danslapman/morphling":{ - "project":"danslapman/morphling", - "repoUrl":"https://github.com/danslapman/morphling.git", - "revision":"v3.2.0", - "version":"3.2.0", - "targets":"com.github.danslapman%morphling-reactivemongo com.github.danslapman%morphling-scalacheck com.github.danslapman%morphling com.github.danslapman%morphling-tapir com.github.danslapman%morphling-circe", + "davenverse/mules-http4s":{ + "project":"davenverse/mules-http4s", + "repoUrl":"https://github.com/davenverse/mules-http4s.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"io.chrisdavenport%mules-http4s io.chrisdavenport%mules-http4s-scodec", "config":{ "projects":{ "exclude":[ - "morphling-circe" + ], "overrides":{ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -7973,12 +7657,12 @@ ] } }, - "dapperware/zio-slack":{ - "project":"dapperware/zio-slack", - "repoUrl":"https://github.com/dapperware/zio-slack.git", - "revision":"v1.0.0-RC1", - "version":"1.0.0-RC1", - "targets":"com.github.dapperware%zio-slack-api-web com.github.dapperware%zio-slack-core", + "davenverse/namecase":{ + "project":"davenverse/namecase", + "repoUrl":"https://github.com/davenverse/namecase.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.chrisdavenport%namecase", "config":{ "projects":{ "exclude":[ @@ -7989,7 +7673,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -8010,12 +7694,12 @@ ] } }, - "darrenjw/scala-glm":{ - "project":"darrenjw/scala-glm", - "repoUrl":"https://github.com/darrenjw/scala-glm.git", - "revision":"v0.8", - "version":"0.8", - "targets":"com.github.darrenjw%scala-glm", + "davenverse/natchez-http4s-otel":{ + "project":"davenverse/natchez-http4s-otel", + "repoUrl":"https://github.com/davenverse/natchez-http4s-otel.git", + "revision":"v0.2.2", + "version":"0.2.2", + "targets":"io.chrisdavenport%natchez-http4s-otel", "config":{ "projects":{ "exclude":[ @@ -8026,7 +7710,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -8041,25 +7725,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "darrenjw/scala-smfsb":{ - "project":"darrenjw/scala-smfsb", - "repoUrl":"https://github.com/darrenjw/scala-smfsb.git", - "revision":"v1.0", - "version":"1.0", - "targets":"com.github.darrenjw%scala-smfsb" - }, - "data-tools/big-data-types":{ - "project":"data-tools/big-data-types", - "repoUrl":"https://github.com/data-tools/big-data-types.git", - "revision":"v1.3.1", - "version":"1.3.1", - "targets":"io.github.data-tools%big-data-types-bigquery io.github.data-tools%big-data-types-cassandra io.github.data-tools%big-data-types-circe io.github.data-tools%big-data-types-core", + "davenverse/natchez-local":{ + "project":"davenverse/natchez-local", + "repoUrl":"https://github.com/davenverse/natchez-local.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.chrisdavenport%natchez-local", "config":{ "projects":{ "exclude":[ @@ -8087,27 +7764,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "datastrophic-games/dice":{ - "project":"datastrophic-games/dice", - "repoUrl":"https://github.com/datastrophic-games/dice.git", - "revision":"0.3.0", - "version":"0.3.0", - "targets":"games.datastrophic%dice" - }, - "davegurnell/unindent":{ - "project":"davegurnell/unindent", - "repoUrl":"https://github.com/davegurnell/unindent.git", - "revision":"v1.8.0", - "version":"1.8.0", - "targets":"com.davegurnell%unindent", + "davenverse/natchez-rediculous":{ + "project":"davenverse/natchez-rediculous", + "repoUrl":"https://github.com/davenverse/natchez-rediculous.git", + "revision":"v0.0.2", + "version":"0.0.2", + "targets":"io.chrisdavenport%natchez-rediculous", "config":{ "projects":{ "exclude":[ @@ -8118,7 +7784,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -8139,12 +7805,12 @@ ] } }, - "davenverse/cats-effect-time":{ - "project":"davenverse/cats-effect-time", - "repoUrl":"https://github.com/davenverse/cats-effect-time.git", - "revision":"v0.2.1", - "version":"0.2.1", - "targets":"io.chrisdavenport%cats-effect-time", + "davenverse/os-detect":{ + "project":"davenverse/os-detect", + "repoUrl":"https://github.com/davenverse/os-detect.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.chrisdavenport%os-detect", "config":{ "projects":{ "exclude":[ @@ -8155,7 +7821,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -8176,12 +7842,12 @@ ] } }, - "davenverse/cats-scalacheck":{ - "project":"davenverse/cats-scalacheck", - "repoUrl":"https://github.com/davenverse/cats-scalacheck.git", - "revision":"v0.3.2", - "version":"0.3.2", - "targets":"io.chrisdavenport%cats-scalacheck", + "davenverse/process":{ + "project":"davenverse/process", + "repoUrl":"https://github.com/davenverse/process.git", + "revision":"v0.0.2", + "version":"0.0.2", + "targets":"io.chrisdavenport%process", "config":{ "projects":{ "exclude":[ @@ -8213,12 +7879,12 @@ ] } }, - "davenverse/catscript":{ - "project":"davenverse/catscript", - "repoUrl":"https://github.com/davenverse/catscript.git", - "revision":"v0.1.1", - "version":"0.1.1", - "targets":"io.chrisdavenport%catscript", + "davenverse/publicsuffix":{ + "project":"davenverse/publicsuffix", + "repoUrl":"https://github.com/davenverse/publicsuffix.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"io.chrisdavenport%publicsuffix io.chrisdavenport%publicsuffix-retrieval io.chrisdavenport%publicsuffix-retrieval-client", "config":{ "projects":{ "exclude":[ @@ -8250,12 +7916,12 @@ ] } }, - "davenverse/circuit":{ - "project":"davenverse/circuit", - "repoUrl":"https://github.com/davenverse/circuit.git", - "revision":"v0.5.1", - "version":"0.5.1", - "targets":"io.chrisdavenport%circuit", + "davenverse/rediculous":{ + "project":"davenverse/rediculous", + "repoUrl":"https://github.com/davenverse/rediculous.git", + "revision":"v0.5.0", + "version":"0.5.0", + "targets":"io.chrisdavenport%rediculous", "config":{ "projects":{ "exclude":[ @@ -8281,18 +7947,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "davenverse/circuit-http4s":{ - "project":"davenverse/circuit-http4s", - "repoUrl":"https://github.com/davenverse/circuit-http4s.git", - "revision":"v0.5.1", - "version":"0.5.1", - "targets":"io.chrisdavenport%circuit-http4s-client io.chrisdavenport%circuit-http4s-server", + "davenverse/rediculous-concurrent":{ + "project":"davenverse/rediculous-concurrent", + "repoUrl":"https://github.com/davenverse/rediculous-concurrent.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"io.chrisdavenport%rediculous-concurrent io.chrisdavenport%rediculous-concurrent-http4s", "config":{ "projects":{ "exclude":[ @@ -8318,18 +7984,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "davenverse/clippette":{ - "project":"davenverse/clippette", - "repoUrl":"https://github.com/davenverse/clippette.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.chrisdavenport%clippette", + "davenverse/single-fibered":{ + "project":"davenverse/single-fibered", + "repoUrl":"https://github.com/davenverse/single-fibered.git", + "revision":"v0.1.1", + "version":"0.1.1", + "targets":"io.chrisdavenport%single-fibered", "config":{ "projects":{ "exclude":[ @@ -8340,7 +8006,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -8361,12 +8027,12 @@ ] } }, - "davenverse/condemned":{ - "project":"davenverse/condemned", - "repoUrl":"https://github.com/davenverse/condemned.git", - "revision":"v0.0.2", - "version":"0.0.2", - "targets":"io.chrisdavenport%condemned", + "davenverse/snickerdoodle":{ + "project":"davenverse/snickerdoodle", + "repoUrl":"https://github.com/davenverse/snickerdoodle.git", + "revision":"v0.0.4", + "version":"0.0.4", + "targets":"io.chrisdavenport%snickerdoodle", "config":{ "projects":{ "exclude":[ @@ -8377,7 +8043,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -8394,16 +8060,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.1.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "davenverse/crossplatformioapp":{ - "project":"davenverse/crossplatformioapp", - "repoUrl":"https://github.com/davenverse/crossplatformioapp.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.chrisdavenport%crossplatformioapp", + "davenverse/whale-tail":{ + "project":"davenverse/whale-tail", + "repoUrl":"https://github.com/davenverse/whale-tail.git", + "revision":"v0.0.9", + "version":"0.0.9", + "targets":"io.chrisdavenport%whale-tail io.chrisdavenport%whale-tail-manager", "config":{ "projects":{ "exclude":[ @@ -8414,7 +8084,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -8429,18 +8099,25 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "davenverse/env":{ - "project":"davenverse/env", - "repoUrl":"https://github.com/davenverse/env.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.chrisdavenport%env", + "davidledwards/scalop":{ + "project":"davidledwards/scalop", + "repoUrl":"https://github.com/davidledwards/scalop.git", + "revision":"release-2.3.1", + "version":"2.3.1", + "targets":"com.loopfor.scalop%scalop" + }, + "delimobil/cabbit":{ + "project":"delimobil/cabbit", + "repoUrl":"https://github.com/delimobil/cabbit.git", + "revision":"0.2.0-RC3", + "version":"0.2.0-RC3", + "targets":"ru.delimobil%cabbit ru.delimobil%cabbit-circe ru.delimobil%cabbit-core ru.delimobil%cabbit_ce2", "config":{ "projects":{ "exclude":[ @@ -8466,18 +8143,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "davenverse/epimetheus":{ - "project":"davenverse/epimetheus", - "repoUrl":"https://github.com/davenverse/epimetheus.git", - "revision":"v0.5.0", - "version":"0.5.0", - "targets":"io.chrisdavenport%epimetheus", + "delimobil/fs2-hbase":{ + "project":"delimobil/fs2-hbase", + "repoUrl":"https://github.com/delimobil/fs2-hbase.git", + "revision":"0.1.0-RC10", + "version":"0.1.0-RC10", + "targets":"ru.delimobil%fs2-hbase", "config":{ "projects":{ "exclude":[ @@ -8488,7 +8165,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -8503,18 +8180,18 @@ ] }, - "tests":"full", + "tests":"disabled", "sourcePatches":[ ] } }, - "davenverse/epimetheus-circuit":{ - "project":"davenverse/epimetheus-circuit", - "repoUrl":"https://github.com/davenverse/epimetheus-circuit.git", - "revision":"v0.5.0", - "version":"0.5.0", - "targets":"io.chrisdavenport%epimetheus-circuit", + "devlaam/leucine":{ + "project":"devlaam/leucine", + "repoUrl":"https://github.com/devlaam/leucine.git", + "revision":"v0.4.1", + "version":"0.4.1", + "targets":"com.sense2act%leucine", "config":{ "projects":{ "exclude":[ @@ -8525,7 +8202,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -8546,12 +8223,12 @@ ] } }, - "davenverse/epimetheus-community":{ - "project":"davenverse/epimetheus-community", - "repoUrl":"https://github.com/davenverse/epimetheus-community.git", - "revision":"", - "version":"0.6.0", - "targets":"io.chrisdavenport%epimetheus-log4cats", + "devsisters/shardcake":{ + "project":"devsisters/shardcake", + "repoUrl":"https://github.com/devsisters/shardcake.git", + "revision":"v2.0.6", + "version":"2.0.6", + "targets":"com.devsisters%shardcake-serialization-kryo com.devsisters%shardcake-manager com.devsisters%shardcake-core com.devsisters%shardcake-entities com.devsisters%shardcake-storage-redis com.devsisters%shardcake-health-k8s com.devsisters%shardcake-protocol-grpc", "config":{ "projects":{ "exclude":[ @@ -8562,7 +8239,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -8581,18 +8258,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.1\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3 = \"3.2.1\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "davenverse/epimetheus-http4s":{ - "project":"davenverse/epimetheus-http4s", - "repoUrl":"https://github.com/davenverse/epimetheus-http4s.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"io.chrisdavenport%epimetheus-http4s io.chrisdavenport%epimetheus-http4s-pushgateway", + "dieproht/matr":{ + "project":"dieproht/matr", + "repoUrl":"https://github.com/dieproht/matr.git", + "revision":"v0.0.3", + "version":"0.0.3", + "targets":"io.github.dieproht%matr-dflt-data io.github.dieproht%matr-bundle io.github.dieproht%matr-api io.github.dieproht%matr-std io.github.dieproht%matr-dflt-ops", "config":{ "projects":{ "exclude":[ @@ -8603,7 +8280,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -8624,12 +8301,12 @@ ] } }, - "davenverse/epimetheus-log4cats":{ - "project":"davenverse/epimetheus-log4cats", - "repoUrl":"https://github.com/davenverse/epimetheus-log4cats.git", - "revision":"v0.6.0-M1", - "version":"0.6.0-M1", - "targets":"io.chrisdavenport%epimetheus-log4cats", + "disneystreaming/alloy":{ + "project":"disneystreaming/alloy", + "repoUrl":"https://github.com/disneystreaming/alloy.git", + "revision":"v0.1.21", + "version":"0.1.21", + "targets":"com.disneystreaming.alloy%alloy-openapi", "config":{ "projects":{ "exclude":[ @@ -8661,23 +8338,25 @@ ] } }, - "davenverse/epimetheus-rediculous":{ - "project":"davenverse/epimetheus-rediculous", - "repoUrl":"https://github.com/davenverse/epimetheus-rediculous.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"io.chrisdavenport%epimetheus-rediculous", + "disneystreaming/smithy4s":{ + "project":"disneystreaming/smithy4s", + "repoUrl":"https://github.com/disneystreaming/smithy4s.git", + "revision":"v0.17.6", + "version":"0.17.6", + "targets":"com.disneystreaming.smithy4s%smithy4s-json com.disneystreaming.smithy4s%smithy4s-dynamic com.disneystreaming.smithy4s%smithy4s-tests com.disneystreaming.smithy4s%smithy4s-core com.disneystreaming.smithy4s%smithy4s-compliance-tests com.disneystreaming.smithy4s%smithy4s-http4s-swagger com.disneystreaming.smithy4s%smithy4s-decline com.disneystreaming.smithy4s%smithy4s-aws-http4s com.disneystreaming.smithy4s%smithy4s-http4s com.disneystreaming.smithy4s%smithy4s-aws-kernel com.disneystreaming.smithy4s%smithy4s-aws", "config":{ "projects":{ "exclude":[ ], "overrides":{ - + "smithy4s-dynamic":{ + "tests":"compile-only" + } } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -8695,19 +8374,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", + "path":"project/Smithy4sBuildPlugin.scala", + "pattern":"val Scala3 = \"3.2.1\"", "replaceWith":"val Scala3 = \"\"" } ] } }, - "davenverse/epimetheus-redis4cats":{ - "project":"davenverse/epimetheus-redis4cats", - "repoUrl":"https://github.com/davenverse/epimetheus-redis4cats.git", - "revision":"v0.2.0-M2", - "version":"0.2.0-M2", - "targets":"io.chrisdavenport%epimetheus-redis4cats", + "disneystreaming/weaver-test":{ + "project":"disneystreaming/weaver-test", + "repoUrl":"https://github.com/disneystreaming/weaver-test.git", + "revision":"v0.8.3", + "version":"0.8.3", + "targets":"com.disneystreaming%weaver-core com.disneystreaming%weaver-cats com.disneystreaming%weaver-framework com.disneystreaming%weaver-cats-core com.disneystreaming%weaver-scalacheck com.disneystreaming%weaver-discipline", "config":{ "projects":{ "exclude":[ @@ -8718,14 +8397,14 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ ], "options":[ - + "-Dcommunitybuild.dualVersion=minor:+1" ] }, "mill":{ @@ -8735,16 +8414,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/WeaverPlugin.scala", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "davenverse/fiberlocal":{ - "project":"davenverse/fiberlocal", - "repoUrl":"https://github.com/davenverse/fiberlocal.git", - "revision":"v0.1.2", - "version":"0.1.2", - "targets":"io.chrisdavenport%fiberlocal", + "dobrynya/zio-jms":{ + "project":"dobrynya/zio-jms", + "repoUrl":"https://github.com/dobrynya/zio-jms.git", + "revision":"v0.2", + "version":"0.2", + "targets":"io.github.dobrynya%zio-jms", "config":{ "projects":{ "exclude":[ @@ -8755,7 +8438,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -8770,18 +8453,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "davenverse/fuuid":{ - "project":"davenverse/fuuid", - "repoUrl":"https://github.com/davenverse/fuuid.git", - "revision":"v0.8.0-M2", - "version":"0.8.0-M2", - "targets":"io.chrisdavenport%fuuid io.chrisdavenport%fuuid-circe io.chrisdavenport%fuuid-doobie io.chrisdavenport%fuuid-http4s", + "dragonfly-ai/cliviz":{ + "project":"dragonfly-ai/cliviz", + "repoUrl":"https://github.com/dragonfly-ai/cliviz.git", + "revision":"v0.1", + "version":"0.1", + "targets":"ai.dragonfly%cliviz", "config":{ "projects":{ "exclude":[ @@ -8792,11 +8475,11 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ - "set doobie/Test/unmanagedSources/excludeFilter ~= {_ || \"PostgresInstanceSpec.scala\" || \"PostgresTraversalSpec.scala\"} " + ], "options":[ @@ -8809,20 +8492,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.0.1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "davenverse/github":{ - "project":"davenverse/github", - "repoUrl":"https://github.com/davenverse/github.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"io.chrisdavenport%github", + "dragonfly-ai/democrossy":{ + "project":"dragonfly-ai/democrossy", + "repoUrl":"https://github.com/dragonfly-ai/democrossy.git", + "revision":"v0.102", + "version":"0.102", + "targets":"ai.dragonfly%democrossy", "config":{ "projects":{ "exclude":[ @@ -8854,12 +8533,12 @@ ] } }, - "davenverse/googleapis-http4s":{ - "project":"davenverse/googleapis-http4s", - "repoUrl":"https://github.com/davenverse/googleapis-http4s.git", - "revision":"", - "version":"3.25.0+0.0.6", - "targets":"", + "dragonfly-ai/narr":{ + "project":"dragonfly-ai/narr", + "repoUrl":"https://github.com/dragonfly-ai/narr.git", + "revision":"v0.101", + "version":"0.101", + "targets":"ai.dragonfly%narr", "config":{ "projects":{ "exclude":[ @@ -8870,7 +8549,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -8891,12 +8570,12 @@ ] } }, - "davenverse/http4s-grpc":{ - "project":"davenverse/http4s-grpc", - "repoUrl":"https://github.com/davenverse/http4s-grpc.git", - "revision":"v0.0.4", - "version":"0.0.4", - "targets":"io.chrisdavenport%http4s-grpc", + "dragonfly-ai/slash":{ + "project":"dragonfly-ai/slash", + "repoUrl":"https://github.com/dragonfly-ai/slash.git", + "revision":"v0.1", + "version":"0.1", + "targets":"ai.dragonfly%vector", "config":{ "projects":{ "exclude":[ @@ -8928,12 +8607,12 @@ ] } }, - "davenverse/http4s-log4cats-contextlog":{ - "project":"davenverse/http4s-log4cats-contextlog", - "repoUrl":"https://github.com/davenverse/http4s-log4cats-contextlog.git", - "revision":"v0.0.11", - "version":"0.0.11", - "targets":"io.chrisdavenport%http4s-log4cats-contextlog", + "durban/choam":{ + "project":"durban/choam", + "repoUrl":"https://github.com/durban/choam.git", + "revision":"v0.3.0-RC5", + "version":"0.3.0-RC5", + "targets":"dev.tauri%choam-docs dev.tauri%choam-stream dev.tauri%choam-data dev.tauri%choam-async dev.tauri%choam-skiplist dev.tauri%choam-laws dev.tauri%choam-mcas dev.tauri%choam-core", "config":{ "projects":{ "exclude":[ @@ -8944,7 +8623,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -8963,18 +8642,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "davenverse/keysemaphore":{ - "project":"davenverse/keysemaphore", - "repoUrl":"https://github.com/davenverse/keysemaphore.git", - "revision":"v0.3.0-M1", - "version":"0.3.0-M1", - "targets":"io.chrisdavenport%keysemaphore", + "dvgica/managerial":{ + "project":"dvgica/managerial", + "repoUrl":"https://github.com/dvgica/managerial.git", + "revision":"v0.8.0", + "version":"0.8.0", + "targets":"ca.dvgi%managerial ca.dvgi%managerial-twitter-util", "config":{ "projects":{ "exclude":[ @@ -8985,7 +8664,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -9002,53 +8681,41 @@ }, "tests":"full", "sourcePatches":[ - - ] - } - }, - "davenverse/lock":{ - "project":"davenverse/lock", - "repoUrl":"https://github.com/davenverse/lock.git", - "revision":"v0.0.2", - "version":"0.0.2", - "targets":"io.chrisdavenport%lock", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.0.2\"", + "replaceWith":"val scala3Version = \"\"" } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - ] } }, - "davenverse/mapref":{ - "project":"davenverse/mapref", - "repoUrl":"https://github.com/davenverse/mapref.git", - "revision":"v0.2.1", - "version":"0.2.1", - "targets":"io.chrisdavenport%mapref", + "dvreeze/tqa":{ + "project":"dvreeze/tqa", + "repoUrl":"https://github.com/dvreeze/tqa.git", + "revision":"tqa_3-0.13.0", + "version":"0.13.0", + "targets":"eu.cdevreeze.tqa%tqa" + }, + "dvreeze/xpathparser":{ + "project":"dvreeze/xpathparser", + "repoUrl":"https://github.com/dvreeze/xpathparser.git", + "revision":"0.8.0", + "version":"0.8.0", + "targets":"eu.cdevreeze.xpathparser%xpathparser" + }, + "dvreeze/yaidom":{ + "project":"dvreeze/yaidom", + "repoUrl":"https://github.com/dvreeze/yaidom.git", + "revision":"yaidom_3-1.13.0", + "version":"1.13.0", + "targets":"eu.cdevreeze.yaidom%yaidom" + }, + "dwickern/scala-nameof":{ + "project":"dwickern/scala-nameof", + "repoUrl":"https://github.com/dwickern/scala-nameof.git", + "revision":"v4.0.0", + "version":"4.0.0", + "targets":"com.github.dwickern%scala-nameof", "config":{ "projects":{ "exclude":[ @@ -9059,7 +8726,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -9076,16 +8743,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.0.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "davenverse/mules":{ - "project":"davenverse/mules", - "repoUrl":"https://github.com/davenverse/mules.git", - "revision":"v0.7.0", - "version":"0.7.0", - "targets":"io.chrisdavenport%mules io.chrisdavenport%mules-caffeine io.chrisdavenport%mules-noop io.chrisdavenport%mules-reload", + "dwolla/epimetheus-server":{ + "project":"dwolla/epimetheus-server", + "repoUrl":"https://github.com/dwolla/epimetheus-server.git", + "revision":"v7.1.0", + "version":"7.1.0", + "targets":"com.dwolla%epimetheus-server-root com.dwolla%monitoring-server", "config":{ "projects":{ "exclude":[ @@ -9096,7 +8767,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -9113,27 +8784,40 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.0\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "davenverse/mules-http4s":{ - "project":"davenverse/mules-http4s", - "repoUrl":"https://github.com/davenverse/mules-http4s.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"io.chrisdavenport%mules-http4s io.chrisdavenport%mules-http4s-scodec", + "dylemma/xml-spac":{ + "project":"dylemma/xml-spac", + "repoUrl":"https://github.com/dylemma/xml-spac.git", + "revision":"0.12.0", + "version":"0.12.0", + "targets":"io.dylemma%json-spac io.dylemma%spac-interop-fs2 io.dylemma%spac-core io.dylemma%xml-spac io.dylemma%xml-spac-javax io.dylemma%json-spac-jackson io.dylemma%xml-spac-fs2-data io.dylemma%json-spac-fs2-data" + }, + "earogov/ordset":{ + "project":"earogov/ordset", + "repoUrl":"https://github.com/earogov/ordset.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.github.earogov%ordset io.github.earogov%ordset-commonsRandom", "config":{ "projects":{ "exclude":[ ], "overrides":{ - + "ordset":{ + "tests":"disabled" + } } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -9150,16 +8834,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sc", + "pattern":"\"-comment-syntax\", \"wiki\"", + "replaceWith":"\"-comment-syntax:wiki\"" + } ] } }, - "davenverse/namecase":{ - "project":"davenverse/namecase", - "repoUrl":"https://github.com/davenverse/namecase.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.chrisdavenport%namecase", + "eed3si9n/expecty":{ + "project":"eed3si9n/expecty", + "repoUrl":"https://github.com/eed3si9n/expecty.git", + "revision":"v0.16.0", + "version":"0.16.0", + "targets":"com.eed3si9n.expecty%expecty", "config":{ "projects":{ "exclude":[ @@ -9187,16 +8875,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "davenverse/natchez-http4s-otel":{ - "project":"davenverse/natchez-http4s-otel", - "repoUrl":"https://github.com/davenverse/natchez-http4s-otel.git", - "revision":"v0.3.0", - "version":"0.3.0", - "targets":"io.chrisdavenport%natchez-http4s-otel", + "eed3si9n/gigahorse":{ + "project":"eed3si9n/gigahorse", + "repoUrl":"https://github.com/eed3si9n/gigahorse.git", + "revision":"v0.7.0", + "version":"0.7.0", + "targets":"com.eed3si9n%gigahorse-apache-http com.eed3si9n%gigahorse-asynchttpclient com.eed3si9n%gigahorse-core com.eed3si9n%gigahorse-okhttp", "config":{ "projects":{ "exclude":[ @@ -9207,7 +8899,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -9224,16 +8916,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.1.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "davenverse/natchez-local":{ - "project":"davenverse/natchez-local", - "repoUrl":"https://github.com/davenverse/natchez-local.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"io.chrisdavenport%natchez-local", + "eed3si9n/sjson-new":{ + "project":"eed3si9n/sjson-new", + "repoUrl":"https://github.com/eed3si9n/sjson-new.git", + "revision":"v0.13.0", + "version":"0.13.0", + "targets":"com.eed3si9n%sjson-new-core com.eed3si9n%sjson-new-murmurhash com.eed3si9n%sjson-new-spray com.eed3si9n%sjson-new-msgpack com.eed3si9n%sjson-new-scalajson", "config":{ "projects":{ "exclude":[ @@ -9244,7 +8940,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -9261,16 +8957,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "davenverse/natchez-rediculous":{ - "project":"davenverse/natchez-rediculous", - "repoUrl":"https://github.com/davenverse/natchez-rediculous.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.chrisdavenport%natchez-rediculous", + "eed3si9n/verify":{ + "project":"eed3si9n/verify", + "repoUrl":"https://github.com/eed3si9n/verify.git", + "revision":"main", + "version":"1.0.0", + "targets":"com.eed3si9n.verify%verify", "config":{ "projects":{ "exclude":[ @@ -9281,7 +8981,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -9298,16 +8998,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.1.3\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "davenverse/os-detect":{ - "project":"davenverse/os-detect", - "repoUrl":"https://github.com/davenverse/os-detect.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.chrisdavenport%os-detect", + "eikek/binny":{ + "project":"eikek/binny", + "repoUrl":"https://github.com/eikek/binny.git", + "revision":"v0.9.1", + "version":"0.9.1", + "targets":"com.github.eikek%binny-pglo com.github.eikek%binny-minio com.github.eikek%binny-core com.github.eikek%binny-tika-detect com.github.eikek%binny-jdbc com.github.eikek%binny-fs", "config":{ "projects":{ "exclude":[ @@ -9333,18 +9037,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "davenverse/process":{ - "project":"davenverse/process", - "repoUrl":"https://github.com/davenverse/process.git", - "revision":"v0.0.2", - "version":"0.0.2", - "targets":"io.chrisdavenport%process", + "eikek/bitpeace":{ + "project":"eikek/bitpeace", + "repoUrl":"https://github.com/eikek/bitpeace.git", + "revision":"v0.9.0-M3", + "version":"0.9.0-M3", + "targets":"com.github.eikek%bitpeace-core", "config":{ "projects":{ "exclude":[ @@ -9355,7 +9063,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -9372,16 +9080,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.0.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "davenverse/publicsuffix":{ - "project":"davenverse/publicsuffix", - "repoUrl":"https://github.com/davenverse/publicsuffix.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"io.chrisdavenport%publicsuffix io.chrisdavenport%publicsuffix-retrieval io.chrisdavenport%publicsuffix-retrieval-client", + "eikek/calev":{ + "project":"eikek/calev", + "repoUrl":"https://github.com/eikek/calev.git", + "revision":"v0.6.4", + "version":"0.6.4", + "targets":"com.github.eikek%calev-circe com.github.eikek%calev-core com.github.eikek%calev-doobie com.github.eikek%calev-fs2", "config":{ "projects":{ "exclude":[ @@ -9392,7 +9104,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -9409,16 +9121,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.3\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "davenverse/rediculous":{ - "project":"davenverse/rediculous", - "repoUrl":"https://github.com/davenverse/rediculous.git", - "revision":"v0.5.0", - "version":"0.5.0", - "targets":"io.chrisdavenport%rediculous", + "eikek/emil":{ + "project":"eikek/emil", + "repoUrl":"https://github.com/eikek/emil.git", + "revision":"v0.13.0", + "version":"0.13.0", + "targets":"com.github.eikek%emil-common com.github.eikek%emil-javamail com.github.eikek%emil-jsoup com.github.eikek%emil-tnef com.github.eikek%emil-doobie com.github.eikek%emil-markdown", "config":{ "projects":{ "exclude":[ @@ -9429,7 +9145,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -9444,18 +9160,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "davenverse/rediculous-concurrent":{ - "project":"davenverse/rediculous-concurrent", - "repoUrl":"https://github.com/davenverse/rediculous-concurrent.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"io.chrisdavenport%rediculous-concurrent io.chrisdavenport%rediculous-concurrent-http4s", + "eikek/yamusca":{ + "project":"eikek/yamusca", + "repoUrl":"https://github.com/eikek/yamusca.git", + "revision":"v0.10.0", + "version":"0.10.0", + "targets":"com.github.eikek%yamusca-circe com.github.eikek%yamusca-core com.github.eikek%yamusca-derive", "config":{ "projects":{ "exclude":[ @@ -9466,7 +9186,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -9481,18 +9201,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.2.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "davenverse/single-fibered":{ - "project":"davenverse/single-fibered", - "repoUrl":"https://github.com/davenverse/single-fibered.git", - "revision":"v0.1.1", - "version":"0.1.1", - "targets":"io.chrisdavenport%single-fibered", + "ekrich/sconfig":{ + "project":"ekrich/sconfig", + "repoUrl":"https://github.com/ekrich/sconfig.git", + "revision":"v1.5.0", + "version":"1.5.0", + "targets":"org.ekrich%sconfig", "config":{ "projects":{ "exclude":[ @@ -9503,7 +9227,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -9520,16 +9244,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "davenverse/snickerdoodle":{ - "project":"davenverse/snickerdoodle", - "repoUrl":"https://github.com/davenverse/snickerdoodle.git", - "revision":"v0.0.4", - "version":"0.0.4", - "targets":"io.chrisdavenport%snickerdoodle", + "eltherion/http4s-timer":{ + "project":"eltherion/http4s-timer", + "repoUrl":"https://github.com/eltherion/http4s-timer.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"pl.datart%http4s-timer-core pl.datart%http4s-timer-newrelic", "config":{ "projects":{ "exclude":[ @@ -9540,7 +9268,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -9559,18 +9287,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.1\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "davenverse/tsec":{ - "project":"davenverse/tsec", - "repoUrl":"https://github.com/davenverse/tsec.git", - "revision":"v0.5.0", - "version":"0.5.0", - "targets":"io.github.jmcardon%tsec-bouncy io.github.jmcardon%tsec-password io.github.jmcardon%tsec-mac io.github.jmcardon%tsec-cipher-bouncy io.github.jmcardon%tsec-jwt-core io.github.jmcardon%tsec-http4s io.github.jmcardon%tsec-signatures io.github.jmcardon%tsec-cipher-jca io.github.jmcardon%tsec-hash-bouncy io.github.jmcardon%tsec-cipher-core io.github.jmcardon%tsec-jwt-sig io.github.jmcardon%tsec-common io.github.jmcardon%tsec-jwt-mac io.github.jmcardon%tsec-hash-jca", + "embeddedkafka/embedded-kafka":{ + "project":"embeddedkafka/embedded-kafka", + "repoUrl":"https://github.com/embeddedkafka/embedded-kafka.git", + "revision":"v3.4.0.1", + "version":"3.4.0.1", + "targets":"io.github.embeddedkafka%embedded-kafka io.github.embeddedkafka%embedded-kafka-connect io.github.embeddedkafka%embedded-kafka-streams", "config":{ "projects":{ "exclude":[ @@ -9598,16 +9326,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "davenverse/whale-tail":{ - "project":"davenverse/whale-tail", - "repoUrl":"https://github.com/davenverse/whale-tail.git", - "revision":"v0.0.10", - "version":"0.0.10", - "targets":"io.chrisdavenport%whale-tail io.chrisdavenport%whale-tail-manager", + "embeddedkafka/embedded-kafka-schema-registry":{ + "project":"embeddedkafka/embedded-kafka-schema-registry", + "repoUrl":"https://github.com/embeddedkafka/embedded-kafka-schema-registry.git", + "revision":"v7.4.0", + "version":"7.4.0", + "targets":"io.github.embeddedkafka%embedded-kafka-schema-registry io.github.embeddedkafka%embedded-kafka-schema-registry-streams", "config":{ "projects":{ "exclude":[ @@ -9633,25 +9365,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "davidledwards/scalop":{ - "project":"davidledwards/scalop", - "repoUrl":"https://github.com/davidledwards/scalop.git", - "revision":"release-2.3.1", - "version":"2.3.1", - "targets":"com.loopfor.scalop%scalop" - }, - "delimobil/cabbit":{ - "project":"delimobil/cabbit", - "repoUrl":"https://github.com/delimobil/cabbit.git", - "revision":"0.2.0-RC3", - "version":"0.2.0-RC3", - "targets":"ru.delimobil%cabbit ru.delimobil%cabbit-circe ru.delimobil%cabbit-core ru.delimobil%cabbit_ce2", + "emergentorder/onnx-scala":{ + "project":"emergentorder/onnx-scala", + "repoUrl":"https://github.com/emergentorder/onnx-scala.git", + "revision":"v0.17.0", + "version":"0.17.0", + "targets":"org.emergent-order%onnx-scala org.emergent-order%onnx-scala-backends org.emergent-order%onnx-scala-common org.emergent-order%onnx-scala-proto", "config":{ "projects":{ "exclude":[ @@ -9662,7 +9391,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -9677,29 +9406,31 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "delimobil/fs2-hbase":{ - "project":"delimobil/fs2-hbase", - "repoUrl":"https://github.com/delimobil/fs2-hbase.git", - "revision":"0.1.0-RC10", - "version":"0.1.0-RC10", - "targets":"ru.delimobil%fs2-hbase", + "endpoints4s/endpoints4s":{ + "project":"endpoints4s/endpoints4s", + "repoUrl":"https://github.com/endpoints4s/endpoints4s.git", + "revision":"v1.10.0", + "version":"1.10.0", + "targets":"org.endpoints4s%json-schema-generic org.endpoints4s%algebra org.endpoints4s%algebra-json-schema org.endpoints4s%json-schema-playjson", "config":{ "projects":{ "exclude":[ ], "overrides":{ - + "http4s-server":{ + "tests":"disabled" + } } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -9714,18 +9445,18 @@ ] }, - "tests":"disabled", + "tests":"full", "sourcePatches":[ ] } }, - "devlaam/leucine":{ - "project":"devlaam/leucine", - "repoUrl":"https://github.com/devlaam/leucine.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"com.sense2act%leucine", + "enragedginger/akka-quartz-scheduler":{ + "project":"enragedginger/akka-quartz-scheduler", + "repoUrl":"https://github.com/enragedginger/akka-quartz-scheduler.git", + "revision":"release-1.9.3-akka-2.6.x", + "version":"1.9.3-akka-2.6.x", + "targets":"com.enragedginger%akka-quartz-scheduler", "config":{ "projects":{ "exclude":[ @@ -9736,7 +9467,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -9751,18 +9482,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3Version = \"3.1.3\"", + "replaceWith":"val Scala3Version = \"\"" + } ] } }, - "devsisters/shardcake":{ - "project":"devsisters/shardcake", - "repoUrl":"https://github.com/devsisters/shardcake.git", - "revision":"v2.1.0", - "version":"2.1.0", - "targets":"com.devsisters%shardcake-serialization-kryo com.devsisters%shardcake-manager com.devsisters%shardcake-core com.devsisters%shardcake-entities com.devsisters%shardcake-storage-redis com.devsisters%shardcake-health-k8s com.devsisters%shardcake-protocol-grpc", + "enriquerodbe/borsh4s":{ + "project":"enriquerodbe/borsh4s", + "repoUrl":"https://github.com/enriquerodbe/borsh4s.git", + "revision":"v3.0.0", + "version":"3.0.0", + "targets":"io.github.enriquerodbe%borsh4s", "config":{ "projects":{ "exclude":[ @@ -9773,11 +9508,12 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -9790,31 +9526,29 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "devsisters/zio-agones":{ - "project":"devsisters/zio-agones", - "repoUrl":"https://github.com/devsisters/zio-agones.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.devsisters%zio-agones", + "epfl-lara/lisa":{ + "project":"epfl-lara/lisa", + "repoUrl":"https://github.com/epfl-lara/lisa.git", + "revision":"5e6f10e91d311b38f1293e2b2d5b979e1360c04e", + "version":"HEAD", + "targets":"*%*", "config":{ "projects":{ "exclude":[ - + "scallion", + "scallion-examples", + "scallion-benchmarks" ], "overrides":{ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -9833,29 +9567,29 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "dfianthdl/dfiant":{ - "project":"dfianthdl/dfiant", - "repoUrl":"https://github.com/dfianthdl/dfiant.git", - "revision":"v0.3.5", - "version":"0.3.5", - "targets":"io.github.dfianthdl%dfhdl-compiler-stages io.github.dfianthdl%dfhdl io.github.dfianthdl%dfhdl-internals io.github.dfianthdl%dfhdl-compiler-ir io.github.dfianthdl%dfhdl-core", + "erikerlandson/coulomb":{ + "project":"erikerlandson/coulomb", + "repoUrl":"https://github.com/erikerlandson/coulomb.git", + "revision":"v0.7.3", + "version":"0.7.3", + "targets":"com.manyangled%coulomb-units com.manyangled%coulomb-core com.manyangled%coulomb-docs com.manyangled%coulomb-testkit com.manyangled%coulomb-spire com.manyangled%coulomb-refined", "config":{ "projects":{ "exclude":[ - + "com.manyangled%coulomb-docs" ], "overrides":{ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -9876,12 +9610,12 @@ ] } }, - "dieproht/matr":{ - "project":"dieproht/matr", - "repoUrl":"https://github.com/dieproht/matr.git", - "revision":"v0.0.3", - "version":"0.0.3", - "targets":"io.github.dieproht%matr-dflt-data io.github.dieproht%matr-bundle io.github.dieproht%matr-api io.github.dieproht%matr-std io.github.dieproht%matr-dflt-ops", + "erikvanoosten/metrics-scala":{ + "project":"erikvanoosten/metrics-scala", + "repoUrl":"https://github.com/erikvanoosten/metrics-scala.git", + "revision":"v4.2.9", + "version":"4.2.9", + "targets":"nl.grons%metrics4-scala nl.grons%metrics4-akka_a26 nl.grons%metrics4-scala-hdr", "config":{ "projects":{ "exclude":[ @@ -9913,12 +9647,12 @@ ] } }, - "dieproht/molly":{ - "project":"dieproht/molly", - "repoUrl":"https://github.com/dieproht/molly.git", - "revision":"v0.1.3", - "version":"0.1.3", - "targets":"io.github.dieproht%molly-core", + "errors4s/errors4s-core":{ + "project":"errors4s/errors4s-core", + "repoUrl":"https://github.com/errors4s/errors4s-core.git", + "revision":"v1.0.0.0", + "version":"1.0.0.0", + "targets":"org.errors4s%errors4s-core org.errors4s%errors4s-core-cats org.errors4s%errors4s-core-root org.errors4s%errors4s-core-scalacheck", "config":{ "projects":{ "exclude":[ @@ -9946,16 +9680,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.0.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "disneystreaming/alloy":{ - "project":"disneystreaming/alloy", - "repoUrl":"https://github.com/disneystreaming/alloy.git", - "revision":"v0.2.8", - "version":"0.2.8", - "targets":"com.disneystreaming.alloy%alloy-openapi", + "errors4s/errors4s-core-cats":{ + "project":"errors4s/errors4s-core-cats", + "repoUrl":"https://github.com/errors4s/errors4s-core-cats.git", + "revision":"12708325a94686e750039fc1f1f3ea4759c61977", + "version":"1.0.0.0-RC0", + "targets":"org.errors4s%errors4s-core-cats org.errors4s%errors4s-core-cats-root", "config":{ "projects":{ "exclude":[ @@ -9966,7 +9704,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -9987,21 +9725,19 @@ ] } }, - "disneystreaming/smithy4s":{ - "project":"disneystreaming/smithy4s", - "repoUrl":"https://github.com/disneystreaming/smithy4s.git", - "revision":"v0.18.3", - "version":"0.18.3", - "targets":"com.disneystreaming.smithy4s%smithy4s-cats com.disneystreaming.smithy4s%smithy4s-json com.disneystreaming.smithy4s%smithy4s-dynamic com.disneystreaming.smithy4s%smithy4s-tests com.disneystreaming.smithy4s%smithy4s-core com.disneystreaming.smithy4s%smithy4s-compliance-tests com.disneystreaming.smithy4s%smithy4s-http4s-swagger com.disneystreaming.smithy4s%smithy4s-http4s-kernel com.disneystreaming.smithy4s%smithy4s-decline com.disneystreaming.smithy4s%smithy4s-aws-http4s com.disneystreaming.smithy4s%smithy4s-fs2 com.disneystreaming.smithy4s%smithy4s-http4s com.disneystreaming.smithy4s%smithy4s-aws-kernel com.disneystreaming.smithy4s%smithy4s-xml", + "errors4s/errors4s-core-scalacheck":{ + "project":"errors4s/errors4s-core-scalacheck", + "repoUrl":"https://github.com/errors4s/errors4s-core-scalacheck.git", + "revision":"79df227a9b79b032a185f8d74138f0ef697c0100", + "version":"1.0.0.0-RC0", + "targets":"org.errors4s%errors4s-core-scalacheck org.errors4s%errors4s-core-scalacheck-root", "config":{ "projects":{ "exclude":[ ], "overrides":{ - "smithy4s-dynamic":{ - "tests":"compile-only" - } + } }, "java":{ @@ -10022,20 +9758,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Smithy4sBuildPlugin.scala", - "pattern":"val Scala3 = \"3.3.1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "disneystreaming/weaver-test":{ - "project":"disneystreaming/weaver-test", - "repoUrl":"https://github.com/disneystreaming/weaver-test.git", - "revision":"v0.8.3", - "version":"0.8.3", - "targets":"com.disneystreaming%weaver-core com.disneystreaming%weaver-cats com.disneystreaming%weaver-framework com.disneystreaming%weaver-cats-core com.disneystreaming%weaver-scalacheck com.disneystreaming%weaver-discipline", + "errors4s/errors4s-http":{ + "project":"errors4s/errors4s-http", + "repoUrl":"https://github.com/errors4s/errors4s-http.git", + "revision":"v3.0.0.0", + "version":"3.0.0.0", + "targets":"org.errors4s%errors4s-http4s-circe org.errors4s%errors4s-http org.errors4s%errors4s-http-root org.errors4s%errors4s-http4s org.errors4s%errors4s-http-circe", "config":{ "projects":{ "exclude":[ @@ -10046,14 +9778,14 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ ], "options":[ - "-Dcommunitybuild.dualVersion=minor:+1" + ] }, "mill":{ @@ -10063,35 +9795,44 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/WeaverPlugin.scala", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "dobrynya/zio-jms":{ - "project":"dobrynya/zio-jms", - "repoUrl":"https://github.com/dobrynya/zio-jms.git", - "revision":"v0.2", - "version":"0.2", - "targets":"io.github.dobrynya%zio-jms", + "estrondo/sweet-mockito":{ + "project":"estrondo/sweet-mockito", + "repoUrl":"https://github.com/estrondo/sweet-mockito.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"one.estrondo%sweet-mockito one.estrondo%sweet-mockito-root one.estrondo%sweet-mockito-zio" + }, + "etorreborre/specs2":{ + "project":"etorreborre/specs2", + "repoUrl":"https://github.com/etorreborre/specs2.git", + "revision":"SPECS2-4.20.0", + "version":"4.20.0", + "targets":"org.specs2%specs2-common org.specs2%specs2-cats org.specs2%specs2-matcher-extra org.specs2%specs2-markdown org.specs2%specs2-tests org.specs2%specs2-matcher org.specs2%specs2-html org.specs2%specs2-junit org.specs2%specs2-scalaz org.specs2%specs2-form org.specs2%specs2-scalacheck org.specs2%specs2-fp org.specs2%xml org.specs2%specs2-core", "config":{ "projects":{ "exclude":[ - + "specs2-guide", + "specs2-cats", + "specs2-scalaz", + "xml" ], "overrides":{ - + "specs2-form":{ + "tests":"compile-only" + } } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ - + "set core.jvm/Test/unmanagedSources/excludeFilter ~= { _ || \"TimeoutSpec.scala\" || \"ThrowablexSpec.scala\"}", + "set tests.jvm/Test/unmanagedSources/excludeFilter ~= { _ || \"FileMatchersSpec.scala\" || \"TerminationMatchersSpec.scala\"} " ], "options":[ @@ -10102,18 +9843,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "donderom/llm4s":{ - "project":"donderom/llm4s", - "repoUrl":"https://github.com/donderom/llm4s.git", - "revision":"", - "version":"0.10.0", - "targets":"com.donderom%llm4s", + "etspaceman/kinesis4cats":{ + "project":"etspaceman/kinesis4cats", + "repoUrl":"https://github.com/etspaceman/kinesis4cats.git", + "revision":"v0.0.18", + "version":"0.0.18", + "targets":"io.github.etspaceman%kinesis4cats-compat io.github.etspaceman%kinesis4cats-smithy4s-client-logging-circe io.github.etspaceman%kinesis4cats-smithy4s-client-localstack io.github.etspaceman%kinesis4cats-shared-circe io.github.etspaceman%kinesis4cats-kinesis-client io.github.etspaceman%kinesis4cats-kcl io.github.etspaceman%kinesis4cats-kpl io.github.etspaceman%kinesis4cats-aws-v2-localstack io.github.etspaceman%kinesis4cats-shared-localstack io.github.etspaceman%kinesis4cats-shared-ciris io.github.etspaceman%kinesis4cats-kcl-logging-circe io.github.etspaceman%kinesis4cats-kcl-ciris io.github.etspaceman%kinesis4cats-kcl-http4s io.github.etspaceman%kinesis4cats-kcl-localstack io.github.etspaceman%kinesis4cats-kinesis-client-logging-circe io.github.etspaceman%kinesis4cats-kpl-logging-circe io.github.etspaceman%kinesis4cats-smithy4s-client io.github.etspaceman%kinesis4cats-kpl-localstack io.github.etspaceman%kinesis4cats-aws-v1-localstack io.github.etspaceman%kinesis4cats-kinesis-client-localstack io.github.etspaceman%kinesis4cats-shared io.github.etspaceman%kinesis4cats-kpl-ciris", "config":{ "projects":{ "exclude":[ @@ -10142,26 +9883,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0\"", - "replaceWith":"val scala3Version = \"\"" + "path":"project/Kinesis4CatsPlugin.scala", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "doriordan/skuber":{ - "project":"doriordan/skuber", - "repoUrl":"https://github.com/doriordan/skuber.git", - "revision":"v3.0.0-beta3", - "version":"3.0.0-beta3", - "targets":"io.skuber%skuber-akka-bsl io.skuber%skuber-core io.skuber%skuber-examples io.skuber%skuber-pekko" - }, - "dragonfly-ai/cliviz":{ - "project":"dragonfly-ai/cliviz", - "repoUrl":"https://github.com/dragonfly-ai/cliviz.git", - "revision":"v0.102", - "version":"0.102", - "targets":"ai.dragonfly%cliviz", + "eventstore/eventstore.akka.persistence":{ + "project":"eventstore/eventstore.akka.persistence", + "repoUrl":"https://github.com/eventstore/eventstore.akka.persistence.git", + "revision":"v8.0.0", + "version":"8.0.0", + "targets":"com.geteventstore%akka-persistence-eventstore", "config":{ "projects":{ "exclude":[ @@ -10193,12 +9927,12 @@ ] } }, - "dragonfly-ai/democrossy":{ - "project":"dragonfly-ai/democrossy", - "repoUrl":"https://github.com/dragonfly-ai/democrossy.git", - "revision":"v0.102", - "version":"0.102", - "targets":"ai.dragonfly%democrossy", + "eventstore/eventstore.jvm":{ + "project":"eventstore/eventstore.jvm", + "repoUrl":"https://github.com/eventstore/eventstore.jvm.git", + "revision":"v8.0.0", + "version":"8.0.0", + "targets":"com.geteventstore%eventstore-client com.geteventstore%eventstore-client-core", "config":{ "projects":{ "exclude":[ @@ -10230,12 +9964,12 @@ ] } }, - "dragonfly-ai/matrix":{ - "project":"dragonfly-ai/matrix", - "repoUrl":"https://github.com/dragonfly-ai/matrix.git", - "revision":"v0.101", - "version":"0.101", - "targets":"ai.dragonfly%matrix", + "evolution-gaming/derivation":{ + "project":"evolution-gaming/derivation", + "repoUrl":"https://github.com/evolution-gaming/derivation.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"com.evolution%derivation-play-json com.evolution%derivation-core com.evolution%derivation-circe com.evolution%derivation-circe-compat213 com.evolution%derivation-tapir com.evolution%derivation-cats", "config":{ "projects":{ "exclude":[ @@ -10246,7 +9980,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -10267,12 +10001,12 @@ ] } }, - "dragonfly-ai/mesh":{ - "project":"dragonfly-ai/mesh", - "repoUrl":"https://github.com/dragonfly-ai/mesh.git", - "revision":"v0.12", - "version":"0.12", - "targets":"ai.dragonfly%mesh", + "fabiopinheiro/scala-did":{ + "project":"fabiopinheiro/scala-did", + "repoUrl":"https://github.com/fabiopinheiro/scala-did.git", + "revision":"v0.1.0-M2", + "version":"0.1.0-M2", + "targets":"app.fmgp%did app.fmgp%did-imp app.fmgp%did-method-peer app.fmgp%multiformats", "config":{ "projects":{ "exclude":[ @@ -10283,7 +10017,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -10304,12 +10038,12 @@ ] } }, - "dragonfly-ai/narr":{ - "project":"dragonfly-ai/narr", - "repoUrl":"https://github.com/dragonfly-ai/narr.git", - "revision":"v0.103", - "version":"0.103", - "targets":"ai.dragonfly%narr", + "failurewall/failurewall":{ + "project":"failurewall/failurewall", + "repoUrl":"https://github.com/failurewall/failurewall.git", + "revision":"v0.5.0", + "version":"0.5.0", + "targets":"com.okumin%failurewall-akka com.okumin%failurewall-core", "config":{ "projects":{ "exclude":[ @@ -10341,12 +10075,12 @@ ] } }, - "dragonfly-ai/slash":{ - "project":"dragonfly-ai/slash", - "repoUrl":"https://github.com/dragonfly-ai/slash.git", - "revision":"v0.2", - "version":"0.2", - "targets":"ai.dragonfly%slash", + "fasterxml/jackson-module-scala":{ + "project":"fasterxml/jackson-module-scala", + "repoUrl":"https://github.com/fasterxml/jackson-module-scala.git", + "revision":"v2.15.1", + "version":"2.15.1", + "targets":"com.fasterxml.jackson.module%jackson-module-scala", "config":{ "projects":{ "exclude":[ @@ -10357,7 +10091,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -10372,18 +10106,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "durban/choam":{ - "project":"durban/choam", - "repoUrl":"https://github.com/durban/choam.git", - "revision":"v0.4.0-RC1", - "version":"0.4.0-RC1", - "targets":"dev.tauri%choam-docs dev.tauri%choam-stream dev.tauri%choam-data dev.tauri%choam-async dev.tauri%choam-skiplist dev.tauri%choam-laws dev.tauri%choam-mcas dev.tauri%choam-core", + "fd4s/fs2-kafka":{ + "project":"fd4s/fs2-kafka", + "repoUrl":"https://github.com/fd4s/fs2-kafka.git", + "revision":"v3.0.1", + "version":"3.0.1", + "targets":"com.github.fd4s%fs2-kafka com.github.fd4s%fs2-kafka-vulcan com.github.fd4s%fs2-kafka-vulcan-testkit-munit", "config":{ "projects":{ "exclude":[ @@ -10394,11 +10128,11 @@ } }, "java":{ - "version":"21" + "version":"17" }, "sbt":{ "commands":[ - + "set core/Test/unmanagedSources/excludeFilter ~= {_ || \"KafkaProducerConnectionSpec.scala\" || \"KafkaConsumerSpec.scala\" || \"KafkaProducerSpec.scala\" || \"TransactionalKafkaProducerSpec.scala\" || \"TransactionalKafkaProducerTimeoutSpec.scala\" || \"KafkaAdminClientSpec.scala\"} " ], "options":[ @@ -10413,18 +10147,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "dvgica/healthful":{ - "project":"dvgica/healthful", - "repoUrl":"https://github.com/dvgica/healthful.git", - "revision":"v0.1.1", - "version":"0.1.1", - "targets":"ca.dvgi%healthful", + "fd4s/vulcan":{ + "project":"fd4s/vulcan", + "repoUrl":"https://github.com/fd4s/vulcan.git", + "revision":"v1.9.0", + "version":"1.9.0", + "targets":"com.github.fd4s%vulcan com.github.fd4s%vulcan-generic com.github.fd4s%vulcan-refined", "config":{ "projects":{ "exclude":[ @@ -10435,7 +10169,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -10454,18 +10188,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "dvgica/managerial":{ - "project":"dvgica/managerial", - "repoUrl":"https://github.com/dvgica/managerial.git", - "revision":"v0.9.1", - "version":"0.9.1", - "targets":"ca.dvgi%managerial ca.dvgi%managerial-twitter-util", + "fdietze/formidable":{ + "project":"fdietze/formidable", + "repoUrl":"https://github.com/fdietze/formidable.git", + "revision":"v0.1.5", + "version":"0.1.5", + "targets":"com.github.fdietze%formidable", "config":{ "projects":{ "exclude":[ @@ -10476,7 +10210,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -10493,20 +10227,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.0.2\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "dvgica/periodic":{ - "project":"dvgica/periodic", - "repoUrl":"https://github.com/dvgica/periodic.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"ca.dvgi%periodic-core ca.dvgi%periodic-pekko-stream", + "fehu/opentracing-scala":{ + "project":"fehu/opentracing-scala", + "repoUrl":"https://github.com/fehu/opentracing-scala.git", + "revision":"0.7.0", + "version":"0.7.0", + "targets":"io.github.fehu%opentracing-scala-akka io.github.fehu%opentracing-scala-jaeger io.github.fehu%opentracing-scala-core io.github.fehu%opentracing-scala-fs2 io.github.fehu%opentracing-scala-noop", "config":{ "projects":{ "exclude":[ @@ -10536,80 +10266,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.1\"", - "replaceWith":"val scala3Version = \"\"" - } - ] - } - }, - "dvreeze/tqa":{ - "project":"dvreeze/tqa", - "repoUrl":"https://github.com/dvreeze/tqa.git", - "revision":"tqa_3-0.13.0", - "version":"0.13.0", - "targets":"eu.cdevreeze.tqa%tqa" - }, - "dvreeze/xpathparser":{ - "project":"dvreeze/xpathparser", - "repoUrl":"https://github.com/dvreeze/xpathparser.git", - "revision":"0.8.0", - "version":"0.8.0", - "targets":"eu.cdevreeze.xpathparser%xpathparser" - }, - "dvreeze/yaidom":{ - "project":"dvreeze/yaidom", - "repoUrl":"https://github.com/dvreeze/yaidom.git", - "revision":"yaidom_3-1.13.0", - "version":"1.13.0", - "targets":"eu.cdevreeze.yaidom%yaidom" - }, - "dwickern/scala-nameof":{ - "project":"dwickern/scala-nameof", - "repoUrl":"https://github.com/dwickern/scala-nameof.git", - "revision":"v4.0.0", - "version":"4.0.0", - "targets":"com.github.dwickern%scala-nameof", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.0.2\"", + "pattern":"val scala3 = \"3.1.3\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "dwolla/epimetheus-server":{ - "project":"dwolla/epimetheus-server", - "repoUrl":"https://github.com/dwolla/epimetheus-server.git", - "revision":"v7.1.0", - "version":"7.1.0", - "targets":"com.dwolla%epimetheus-server-root com.dwolla%monitoring-server", + "fgrutsch/akka-persistence-mapdb":{ + "project":"fgrutsch/akka-persistence-mapdb", + "repoUrl":"https://github.com/fgrutsch/akka-persistence-mapdb.git", + "revision":"v0.3.2", + "version":"0.3.2", + "targets":"com.fgrutsch%akka-persistence-mapdb", "config":{ "projects":{ "exclude":[ @@ -10620,7 +10288,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -10637,20 +10305,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.0\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "dwolla/fs2-aws":{ - "project":"dwolla/fs2-aws", - "repoUrl":"https://github.com/dwolla/fs2-aws.git", - "revision":"v3.0.0-RC2", - "version":"3.0.0-RC2", - "targets":"com.dwolla%fs2-aws-java-sdk2 com.dwolla%fs2-utils", + "fgrutsch/emergence":{ + "project":"fgrutsch/emergence", + "repoUrl":"https://github.com/fgrutsch/emergence.git", + "revision":"v0.5.1", + "version":"0.5.1", + "targets":"com.fgrutsch.emergence%core", "config":{ "projects":{ "exclude":[ @@ -10661,7 +10325,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -10682,12 +10346,12 @@ ] } }, - "dylemma/xml-spac":{ - "project":"dylemma/xml-spac", - "repoUrl":"https://github.com/dylemma/xml-spac.git", - "revision":"0.12.1", - "version":"0.12.1", - "targets":"io.dylemma%json-spac io.dylemma%spac-interop-fs2 io.dylemma%spac-core io.dylemma%xml-spac io.dylemma%xml-spac-javax io.dylemma%json-spac-jackson io.dylemma%xml-spac-fs2-data io.dylemma%json-spac-fs2-data", + "fiatjaf/nlog":{ + "project":"fiatjaf/nlog", + "repoUrl":"https://github.com/fiatjaf/nlog.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.fiatjaf%nlog", "config":{ "projects":{ "exclude":[ @@ -10698,7 +10362,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -10719,25 +10383,23 @@ ] } }, - "earogov/ordset":{ - "project":"earogov/ordset", - "repoUrl":"https://github.com/earogov/ordset.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.github.earogov%ordset io.github.earogov%ordset-commonsRandom", + "fiatjaf/scoin":{ + "project":"fiatjaf/scoin", + "repoUrl":"https://github.com/fiatjaf/scoin.git", + "revision":"v0.7.0", + "version":"0.7.0", + "targets":"com.fiatjaf%scoin", "config":{ "projects":{ "exclude":[ ], "overrides":{ - "ordset":{ - "tests":"disabled" - } + } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -10754,20 +10416,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sc", - "pattern":"\"-comment-syntax\", \"wiki\"", - "replaceWith":"\"-comment-syntax:wiki\"" - } + ] } }, - "eed3si9n/expecty":{ - "project":"eed3si9n/expecty", - "repoUrl":"https://github.com/eed3si9n/expecty.git", - "revision":"v0.16.0", - "version":"0.16.0", - "targets":"com.eed3si9n.expecty%expecty", + "filosganga/batcher":{ + "project":"filosganga/batcher", + "repoUrl":"https://github.com/filosganga/batcher.git", + "revision":"v0.0.8", + "version":"0.0.8", + "targets":"com.filippodeluca%batcher", "config":{ "projects":{ "exclude":[ @@ -10778,7 +10436,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -10795,20 +10453,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "eed3si9n/gigahorse":{ - "project":"eed3si9n/gigahorse", - "repoUrl":"https://github.com/eed3si9n/gigahorse.git", - "revision":"v0.7.0", - "version":"0.7.0", - "targets":"com.eed3si9n%gigahorse-apache-http com.eed3si9n%gigahorse-asynchttpclient com.eed3si9n%gigahorse-core com.eed3si9n%gigahorse-okhttp", + "filosganga/jsonpath":{ + "project":"filosganga/jsonpath", + "repoUrl":"https://github.com/filosganga/jsonpath.git", + "revision":"v0.0.18", + "version":"0.0.18", + "targets":"com.filippodeluca%jsonpath-ast com.filippodeluca%jsonpath-circe com.filippodeluca%jsonpath-literal com.filippodeluca%jsonpath-parser", "config":{ "projects":{ "exclude":[ @@ -10819,7 +10473,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -10836,20 +10490,23 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.1.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "eed3si9n/ifdef":{ - "project":"eed3si9n/ifdef", - "repoUrl":"https://github.com/eed3si9n/ifdef.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"com.eed3si9n.ifdef%ifdef-annotation com.eed3si9n.ifdef%ifdef-plugin", + "findify/flink-adt":{ + "project":"findify/flink-adt", + "repoUrl":"https://github.com/WojciechMazur/flink-adt.git", + "revision":"fix/compilation-scala-3.3.x", + "version":"0.6.1", + "targets":"io.findify%flink-adt" + }, + "findify/flink-scala-api":{ + "project":"findify/flink-scala-api", + "repoUrl":"https://github.com/flink-extended/flink-scala-api.git", + "revision":"master", + "version":"1.15-2", + "targets":"io.findify%flink-scala-api", "config":{ "projects":{ "exclude":[ @@ -10860,7 +10517,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -10875,22 +10532,25 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "eed3si9n/sjson-new":{ - "project":"eed3si9n/sjson-new", - "repoUrl":"https://github.com/eed3si9n/sjson-new.git", - "revision":"v0.13.0", - "version":"0.13.0", - "targets":"com.eed3si9n%sjson-new-core com.eed3si9n%sjson-new-murmurhash com.eed3si9n%sjson-new-spray com.eed3si9n%sjson-new-msgpack com.eed3si9n%sjson-new-scalajson", + "fingo/spata":{ + "project":"fingo/spata", + "repoUrl":"https://github.com/fingo/spata.git", + "revision":"v3.0.0", + "version":"3.0.0", + "targets":"info.fingo%spata" + }, + "flink-extended/flink-scala-api":{ + "project":"flink-extended/flink-scala-api", + "repoUrl":"https://github.com/flink-extended/flink-scala-api.git", + "revision":"v1.16.1.2", + "version":"1.16.1.2", + "targets":"org.flinkextended%flink-scala-api", "config":{ "projects":{ "exclude":[ @@ -10901,7 +10561,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -10918,31 +10578,34 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "eed3si9n/verify":{ - "project":"eed3si9n/verify", - "repoUrl":"https://github.com/eed3si9n/verify.git", - "revision":"main", - "version":"1.0.0", - "targets":"com.eed3si9n.verify%verify", + "folone/poi.scala":{ + "project":"folone/poi.scala", + "repoUrl":"https://github.com/folone/poi.scala.git", + "revision":"v0.23", + "version":"0.23", + "targets":"info.folone%poi-scala" + }, + "fomkin/korolev":{ + "project":"fomkin/korolev", + "repoUrl":"https://github.com/fomkin/korolev.git", + "revision":"v1.16.0-M4", + "version":"1.16.0-M4", + "targets":"org.fomkin%korolev-web-dsl org.fomkin%korolev-zio2-streams org.fomkin%korolev-testkit org.fomkin%korolev-fs2-ce3 org.fomkin%korolev-ce3 org.fomkin%korolev-effect org.fomkin%korolev-http4s org.fomkin%korolev-zio-streams org.fomkin%korolev org.fomkin%korolev-web org.fomkin%korolev-zio2 org.fomkin%korolev-zio org.fomkin%korolev-ce2 org.fomkin%korolev-http org.fomkin%korolev-zio-http org.fomkin%korolev-bytes org.fomkin%korolev-akka org.fomkin%korolev-standalone org.fomkin%korolev-monix org.fomkin%korolev-scodec org.fomkin%korolev-slf4j org.fomkin%korolev-fs2-ce2", "config":{ "projects":{ "exclude":[ - + "org.fomkin%korolev-http4s" ], "overrides":{ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -10957,22 +10620,43 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.3\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3Version = \"3.1.1\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "eikek/binny":{ - "project":"eikek/binny", - "repoUrl":"https://github.com/eikek/binny.git", - "revision":"v0.10.0", - "version":"0.10.0", - "targets":"com.github.eikek%binny-pglo com.github.eikek%binny-minio com.github.eikek%binny-core com.github.eikek%binny-tika-detect com.github.eikek%binny-jdbc com.github.eikek%binny-fs", + "fomkin/levsha":{ + "project":"fomkin/levsha", + "repoUrl":"https://github.com/fomkin/levsha.git", + "revision":"v1.4.0-M2", + "version":"1.4.0-M2", + "targets":"com.github.fomkin%levsha-core com.github.fomkin%levsha-events" + }, + "fommil/jzon":{ + "project":"fommil/jzon", + "repoUrl":"https://github.com/fommil/jzon.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"com.fommil%jzon" + }, + "foundweekends/knockoff":{ + "project":"foundweekends/knockoff", + "repoUrl":"https://github.com/foundweekends/knockoff.git", + "revision":"v0.9.0", + "version":"0.9.0", + "targets":"org.foundweekends%knockoff" + }, + "foundweekends/pamflet":{ + "project":"foundweekends/pamflet", + "repoUrl":"https://github.com/foundweekends/pamflet.git", + "revision":"v0.12.0", + "version":"0.12.0", + "targets":"org.foundweekends%pamflet-app org.foundweekends%pamflet-knockoff org.foundweekends%pamflet-library", "config":{ "projects":{ "exclude":[ @@ -11000,20 +10684,16 @@ }, "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "eikek/bitpeace":{ - "project":"eikek/bitpeace", - "repoUrl":"https://github.com/eikek/bitpeace.git", - "revision":"v0.9.0-M3", - "version":"0.9.0-M3", - "targets":"com.github.eikek%bitpeace-core", + "frawa/inline-files":{ + "project":"frawa/inline-files", + "repoUrl":"https://github.com/frawa/inline-files.git", + "revision":"v0.1.2", + "version":"0.1.2", + "targets":"io.github.frawa%inline-files", "config":{ "projects":{ "exclude":[ @@ -11024,7 +10704,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -11041,31 +10721,29 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.0.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "eikek/calev":{ - "project":"eikek/calev", - "repoUrl":"https://github.com/eikek/calev.git", - "revision":"v0.7.0", - "version":"0.7.0", - "targets":"com.github.eikek%calev-circe com.github.eikek%calev-core com.github.eikek%calev-doobie com.github.eikek%calev-fs2", + "frawa/typed-json":{ + "project":"frawa/typed-json", + "repoUrl":"https://github.com/frawa/typed-json.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.github.frawa%typed-json-parser io.github.frawa%typed-json-parser-jawn io.github.frawa%typed-json-macros io.github.frawa%typed-json-parser-zio io.github.frawa%typed-json", "config":{ "projects":{ "exclude":[ ], "overrides":{ - + "typed-json":{ + "tests":"disabled" + } } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -11082,20 +10760,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "eikek/emil":{ - "project":"eikek/emil", - "repoUrl":"https://github.com/eikek/emil.git", - "revision":"v0.14.0", - "version":"0.14.0", - "targets":"com.github.eikek%emil-common com.github.eikek%emil-javamail com.github.eikek%emil-jsoup com.github.eikek%emil-tnef com.github.eikek%emil-doobie com.github.eikek%emil-markdown", + "frugalmechanic/scala-optparse":{ + "project":"frugalmechanic/scala-optparse", + "repoUrl":"https://github.com/frugalmechanic/scala-optparse.git", + "revision":"v1.2.0", + "version":"1.2.0", + "targets":"com.frugalmechanic%scala-optparse", "config":{ "projects":{ "exclude":[ @@ -11123,20 +10797,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "eikek/yamusca":{ - "project":"eikek/yamusca", - "repoUrl":"https://github.com/eikek/yamusca.git", - "revision":"v0.10.0", - "version":"0.10.0", - "targets":"com.github.eikek%yamusca-circe com.github.eikek%yamusca-core com.github.eikek%yamusca-derive", + "fs2-blobstore/fs2-blobstore":{ + "project":"fs2-blobstore/fs2-blobstore", + "repoUrl":"https://github.com/fs2-blobstore/fs2-blobstore.git", + "revision":"v0.9.8", + "version":"0.9.8", + "targets":"com.github.fs2-blobstore%s3 com.github.fs2-blobstore%gcs com.github.fs2-blobstore%url com.github.fs2-blobstore%azure com.github.fs2-blobstore%sftp com.github.fs2-blobstore%box com.github.fs2-blobstore%core", "config":{ "projects":{ "exclude":[ @@ -11147,7 +10817,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -11162,22 +10832,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.2.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "ekrich/sconfig":{ - "project":"ekrich/sconfig", - "repoUrl":"https://github.com/ekrich/sconfig.git", - "revision":"v1.5.1", - "version":"1.5.1", - "targets":"org.ekrich%sconfig", + "fthomas/fs2-cron":{ + "project":"fthomas/fs2-cron", + "repoUrl":"https://github.com/fthomas/fs2-cron.git", + "revision":"v0.8.3", + "version":"0.8.3", + "targets":"eu.timepit%fs2-cron-calev eu.timepit%fs2-cron-core eu.timepit%fs2-cron-cron-utils", "config":{ "projects":{ "exclude":[ @@ -11188,7 +10854,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -11207,18 +10873,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val Scala_3 = \"3.2.2\"", + "replaceWith":"val Scala_3 = \"\"" } ] } }, - "eltherion/http4s-timer":{ - "project":"eltherion/http4s-timer", - "repoUrl":"https://github.com/eltherion/http4s-timer.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"pl.datart%http4s-timer-core pl.datart%http4s-timer-newrelic", + "fthomas/refined":{ + "project":"fthomas/refined", + "repoUrl":"https://github.com/fthomas/refined.git", + "revision":"v0.10.3", + "version":"0.10.3", + "targets":"eu.timepit%refined eu.timepit%refined-cats eu.timepit%refined-scalacheck eu.timepit%refined-scopt eu.timepit%refined-pureconfig eu.timepit%refined-jsonpath", "config":{ "projects":{ "exclude":[ @@ -11229,7 +10895,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -11248,18 +10914,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val Scala_3 = \"3.2.2\"", + "replaceWith":"val Scala_3 = \"\"" } ] } }, - "embeddedkafka/embedded-kafka":{ - "project":"embeddedkafka/embedded-kafka", - "repoUrl":"https://github.com/embeddedkafka/embedded-kafka.git", - "revision":"v3.6.0", - "version":"3.6.0", - "targets":"io.github.embeddedkafka%embedded-kafka io.github.embeddedkafka%embedded-kafka-connect io.github.embeddedkafka%embedded-kafka-streams", + "fthomas/status-page":{ + "project":"fthomas/status-page", + "repoUrl":"https://github.com/fthomas/status-page.git", + "revision":"v0.3.2", + "version":"0.3.2", + "targets":"eu.timepit%status-page-cats eu.timepit%status-page-core", "config":{ "projects":{ "exclude":[ @@ -11288,19 +10954,26 @@ "tests":"full", "sourcePatches":[ { - "path":"project/Dependencies.scala", - "pattern":"val Scala3 = \"3.3.1\"", - "replaceWith":"val Scala3 = \"\"" + "path":"build.sbt", + "pattern":"val Scala_3 = \"3.2.2\"", + "replaceWith":"val Scala_3 = \"\"" } ] } }, - "embeddedkafka/embedded-kafka-schema-registry":{ - "project":"embeddedkafka/embedded-kafka-schema-registry", - "repoUrl":"https://github.com/embeddedkafka/embedded-kafka-schema-registry.git", - "revision":"v7.5.1", - "version":"7.5.1", - "targets":"io.github.embeddedkafka%embedded-kafka-schema-registry io.github.embeddedkafka%embedded-kafka-schema-registry-streams", + "funkode-io/web3-auth":{ + "project":"funkode-io/web3-auth", + "repoUrl":"https://github.com/funkode-io/web3-auth.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"io.funkode%web3-auth" + }, + "gaeljw/typetrees":{ + "project":"gaeljw/typetrees", + "repoUrl":"https://github.com/gaeljw/typetrees.git", + "revision":"v0.5.0", + "version":"0.5.0", + "targets":"io.github.gaeljw%typetrees", "config":{ "projects":{ "exclude":[ @@ -11311,7 +10984,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -11329,19 +11002,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/Dependencies.scala", - "pattern":"val Scala3 = \"3.3.1\"", - "replaceWith":"val Scala3 = \"\"" + "path":"build.sbt", + "pattern":"val scala3Version = \"3.0.0\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "emergentorder/onnx-scala":{ - "project":"emergentorder/onnx-scala", - "repoUrl":"https://github.com/emergentorder/onnx-scala.git", - "revision":"v0.17.0", - "version":"0.17.0", - "targets":"org.emergent-order%onnx-scala org.emergent-order%onnx-scala-backends org.emergent-order%onnx-scala-common org.emergent-order%onnx-scala-proto", + "gaelrenoux/tranzactio":{ + "project":"gaelrenoux/tranzactio", + "repoUrl":"https://github.com/gaelrenoux/tranzactio.git", + "revision":"v4.1.0", + "version":"4.1.0", + "targets":"io.github.gaelrenoux%tranzactio", "config":{ "projects":{ "exclude":[ @@ -11369,29 +11042,31 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.1.3\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "endpoints4s/endpoints4s":{ - "project":"endpoints4s/endpoints4s", - "repoUrl":"https://github.com/endpoints4s/endpoints4s.git", - "revision":"v1.10.0", - "version":"1.10.0", - "targets":"org.endpoints4s%json-schema-generic org.endpoints4s%algebra org.endpoints4s%algebra-json-schema org.endpoints4s%json-schema-playjson", + "gchudnov/bscript":{ + "project":"gchudnov/bscript", + "repoUrl":"https://github.com/gchudnov/bscript.git", + "revision":"v1.3.5", + "version":"1.3.5", + "targets":"com.github.gchudnov%bscript-builder com.github.gchudnov%bscript-translator com.github.gchudnov%bscript-inspector com.github.gchudnov%bscript-serde com.github.gchudnov%bscript-interpreter com.github.gchudnov%bscript-rewriter com.github.gchudnov%bscript-b1 com.github.gchudnov%bscript-lang", "config":{ "projects":{ "exclude":[ ], "overrides":{ - "http4s-server":{ - "tests":"disabled" - } + } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -11412,12 +11087,12 @@ ] } }, - "enragedginger/akka-quartz-scheduler":{ - "project":"enragedginger/akka-quartz-scheduler", - "repoUrl":"https://github.com/enragedginger/akka-quartz-scheduler.git", - "revision":"release-1.9.3-akka-2.6.x", - "version":"1.9.3-akka-2.6.x", - "targets":"com.enragedginger%akka-quartz-scheduler", + "gchudnov/mindthegap":{ + "project":"gchudnov/mindthegap", + "repoUrl":"https://github.com/gchudnov/mindthegap.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"com.github.gchudnov%mtg", "config":{ "projects":{ "exclude":[ @@ -11428,7 +11103,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -11443,22 +11118,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3Version = \"3.1.3\"", - "replaceWith":"val Scala3Version = \"\"" - } + ] } }, - "enriquerodbe/borsh4s":{ - "project":"enriquerodbe/borsh4s", - "repoUrl":"https://github.com/enriquerodbe/borsh4s.git", - "revision":"v3.0.0", - "version":"3.0.0", - "targets":"io.github.enriquerodbe%borsh4s", + "gchudnov/swearwolf":{ + "project":"gchudnov/swearwolf", + "repoUrl":"https://github.com/gchudnov/swearwolf.git", + "revision":"v2.1.0", + "version":"2.1.0", + "targets":"com.github.gchudnov%swearwolf-term-zio com.github.gchudnov%swearwolf-rich com.github.gchudnov%swearwolf-util-zio com.github.gchudnov%swearwolf-term com.github.gchudnov%swearwolf-shapes-zio com.github.gchudnov%swearwolf-shapes com.github.gchudnov%swearwolf-util com.github.gchudnov%swearwolf-rich-zio", "config":{ "projects":{ "exclude":[ @@ -11473,8 +11144,7 @@ }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + "disableFatalWarnings" ], "options":[ @@ -11491,25 +11161,23 @@ ] } }, - "epfl-lara/lisa":{ - "project":"epfl-lara/lisa", - "repoUrl":"https://github.com/epfl-lara/lisa.git", - "revision":"", - "version":"HEAD", - "targets":"*%*", + "geirolz/advxml":{ + "project":"geirolz/advxml", + "repoUrl":"https://github.com/geirolz/advxml.git", + "revision":"v2.5.1", + "version":"2.5.1", + "targets":"com.github.geirolz%advxml-core com.github.geirolz%advxml-xpath", "config":{ "projects":{ "exclude":[ - "scallion", - "scallion-examples", - "scallion-benchmarks" + ], "overrides":{ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -11526,31 +11194,27 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "erikerlandson/coulomb":{ - "project":"erikerlandson/coulomb", - "repoUrl":"https://github.com/erikerlandson/coulomb.git", - "revision":"v0.8.0", - "version":"0.8.0", - "targets":"com.manyangled%coulomb-parser com.manyangled%coulomb-units com.manyangled%coulomb-core com.manyangled%coulomb-docs com.manyangled%coulomb-pureconfig com.manyangled%coulomb-testkit com.manyangled%coulomb-runtime com.manyangled%coulomb-spire com.manyangled%coulomb-refined", + "geirolz/cats-xml":{ + "project":"geirolz/cats-xml", + "repoUrl":"https://github.com/geirolz/cats-xml.git", + "revision":"v0.0.9", + "version":"0.0.9", + "targets":"com.github.geirolz%cats-xml-standard com.github.geirolz%cats-xml-effect com.github.geirolz%cats-xml-internal-utils com.github.geirolz%cats-xml-core com.github.geirolz%cats-xml-generic com.github.geirolz%cats-xml-xpath", "config":{ "projects":{ "exclude":[ - "com.manyangled%coulomb-docs" + ], "overrides":{ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -11571,12 +11235,12 @@ ] } }, - "erikvanoosten/metrics-scala":{ - "project":"erikvanoosten/metrics-scala", - "repoUrl":"https://github.com/erikvanoosten/metrics-scala.git", - "revision":"v4.2.9", - "version":"4.2.9", - "targets":"nl.grons%metrics4-scala nl.grons%metrics4-akka_a26 nl.grons%metrics4-scala-hdr", + "geirolz/erules":{ + "project":"geirolz/erules", + "repoUrl":"https://github.com/geirolz/erules.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.github.geirolz%erules-circe com.github.geirolz%erules-core com.github.geirolz%erules-cats-xml com.github.geirolz%erules-scalatest com.github.geirolz%erules-generic", "config":{ "projects":{ "exclude":[ @@ -11587,7 +11251,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -11608,12 +11272,12 @@ ] } }, - "errors4s/errors4s-core":{ - "project":"errors4s/errors4s-core", - "repoUrl":"https://github.com/errors4s/errors4s-core.git", - "revision":"v1.0.0.0", - "version":"1.0.0.0", - "targets":"org.errors4s%errors4s-core org.errors4s%errors4s-core-cats org.errors4s%errors4s-core-root org.errors4s%errors4s-core-scalacheck", + "geirolz/fluent-copy":{ + "project":"geirolz/fluent-copy", + "repoUrl":"https://github.com/geirolz/fluent-copy.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"com.github.geirolz%fluent-copy", "config":{ "projects":{ "exclude":[ @@ -11641,20 +11305,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.0.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "errors4s/errors4s-core-cats":{ - "project":"errors4s/errors4s-core-cats", - "repoUrl":"https://github.com/errors4s/errors4s-core-cats.git", - "revision":"", - "version":"1.0.0.0-RC0", - "targets":"org.errors4s%errors4s-core-cats org.errors4s%errors4s-core-cats-root", + "geirolz/fly4s":{ + "project":"geirolz/fly4s", + "repoUrl":"https://github.com/geirolz/fly4s.git", + "revision":"v0.0.17", + "version":"0.0.17", + "targets":"com.github.geirolz%fly4s-core", "config":{ "projects":{ "exclude":[ @@ -11680,18 +11340,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "errors4s/errors4s-core-scalacheck":{ - "project":"errors4s/errors4s-core-scalacheck", - "repoUrl":"https://github.com/errors4s/errors4s-core-scalacheck.git", - "revision":"", - "version":"1.0.0.0-RC0", - "targets":"org.errors4s%errors4s-core-scalacheck org.errors4s%errors4s-core-scalacheck-root", + "geirolz/scope":{ + "project":"geirolz/scope", + "repoUrl":"https://github.com/geirolz/scope.git", + "revision":"v0.0.7", + "version":"0.0.7", + "targets":"com.github.geirolz%scope-core com.github.geirolz%scope-generic", "config":{ "projects":{ "exclude":[ @@ -11717,18 +11377,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "errors4s/errors4s-http":{ - "project":"errors4s/errors4s-http", - "repoUrl":"https://github.com/errors4s/errors4s-http.git", - "revision":"v3.0.0.0", - "version":"3.0.0.0", - "targets":"org.errors4s%errors4s-http4s-circe org.errors4s%errors4s-http org.errors4s%errors4s-http-root org.errors4s%errors4s-http4s org.errors4s%errors4s-http-circe", + "geirolz/toolkit":{ + "project":"geirolz/toolkit", + "repoUrl":"https://github.com/geirolz/toolkit.git", + "revision":"v0.0.5", + "version":"0.0.5", + "targets":"com.github.geirolz%app-toolkit-config-pureconfig com.github.geirolz%app-toolkit-core com.github.geirolz%app-toolkit-odin com.github.geirolz%app-toolkit-log4cats com.github.geirolz%app-toolkit-config", "config":{ "projects":{ "exclude":[ @@ -11760,47 +11420,48 @@ ] } }, - "estrondo/farango":{ - "project":"estrondo/farango", - "repoUrl":"https://github.com/estrondo/farango.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"one.estrondo%farango-ducktape one.estrondo%farango one.estrondo%farango-cats-effect one.estrondo%farango-zio" + "gekomad/itto-csv":{ + "project":"gekomad/itto-csv", + "repoUrl":"https://github.com/gekomad/itto-csv.git", + "revision":"fc82df4cfeed832dde1fd8f490dc234e974b6ed1", + "version":"2.0.0", + "targets":"com.github.gekomad%itto-csv" }, - "estrondo/sweet-mockito":{ - "project":"estrondo/sweet-mockito", - "repoUrl":"https://github.com/estrondo/sweet-mockito.git", - "revision":"v1.0.0", + "gekomad/scala-compress":{ + "project":"gekomad/scala-compress", + "repoUrl":"https://github.com/gekomad/scala-compress.git", + "revision":"1.0.0", "version":"1.0.0", - "targets":"one.estrondo%sweet-mockito one.estrondo%sweet-mockito-root one.estrondo%sweet-mockito-zio" + "targets":"com.github.gekomad%scala-compress" }, - "etorreborre/specs2":{ - "project":"etorreborre/specs2", - "repoUrl":"https://github.com/etorreborre/specs2.git", - "revision":"SPECS2-5.3.2", - "version":"5.3.2", - "targets":"org.specs2%specs2-common org.specs2%specs2-examples org.specs2%specs2-xml org.specs2%specs2-matcher-extra org.specs2%specs2-markdown org.specs2%specs2-tests org.specs2%specs2-matcher org.specs2%specs2-html org.specs2%specs2-junit org.specs2%specs2-form org.specs2%specs2-scalacheck org.specs2%specs2-fp org.specs2%specs2-guide org.specs2%specs2-core", + "gekomad/scala-regex-collection":{ + "project":"gekomad/scala-regex-collection", + "repoUrl":"https://github.com/gekomad/scala-regex-collection.git", + "revision":"2.0.0", + "version":"2.0.0", + "targets":"com.github.gekomad%scala-regex-collection" + }, + "gemini-hlsw/clue":{ + "project":"gemini-hlsw/clue", + "repoUrl":"https://github.com/gemini-hlsw/clue.git", + "revision":"v0.31.0", + "version":"0.31.0", + "targets":"edu.gemini%clue-core edu.gemini%clue-http4s edu.gemini%clue-model", "config":{ "projects":{ "exclude":[ - "specs2-guide", - "specs2-cats", - "specs2-scalaz", - "xml" + ], "overrides":{ - "specs2-form":{ - "tests":"compile-only" - } + } }, "java":{ - "version":"21" + "version":"17" }, "sbt":{ "commands":[ - "set core.jvm/Test/unmanagedSources/excludeFilter ~= { _ || \"TimeoutSpec.scala\" || \"ThrowablexSpec.scala\"}", - "set tests.jvm/Test/unmanagedSources/excludeFilter ~= { _ || \"FileMatchersSpec.scala\" || \"TerminationMatchersSpec.scala\"} " + ], "options":[ @@ -11815,18 +11476,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "etspaceman/kinesis4cats":{ - "project":"etspaceman/kinesis4cats", - "repoUrl":"https://github.com/etspaceman/kinesis4cats.git", - "revision":"v0.0.25", - "version":"0.0.25", - "targets":"io.github.etspaceman%kinesis4cats-compat io.github.etspaceman%kinesis4cats-smithy4s-client-logging-circe io.github.etspaceman%kinesis4cats-smithy4s-client-localstack io.github.etspaceman%kinesis4cats-shared-circe io.github.etspaceman%kinesis4cats-kinesis-client io.github.etspaceman%kinesis4cats-feral io.github.etspaceman%kinesis4cats-kcl io.github.etspaceman%kinesis4cats-kpl io.github.etspaceman%kinesis4cats-aws-v2-localstack io.github.etspaceman%kinesis4cats-shared-localstack io.github.etspaceman%kinesis4cats-shared-ciris io.github.etspaceman%kinesis4cats-kcl-logging-circe io.github.etspaceman%kinesis4cats-kcl-ciris io.github.etspaceman%kinesis4cats-kcl-http4s io.github.etspaceman%kinesis4cats-kcl-localstack io.github.etspaceman%kinesis4cats-kinesis-client-logging-circe io.github.etspaceman%kinesis4cats-kpl-logging-circe io.github.etspaceman%kinesis4cats-smithy4s-client io.github.etspaceman%kinesis4cats-kpl-localstack io.github.etspaceman%kinesis4cats-aws-v1-localstack io.github.etspaceman%kinesis4cats-kinesis-client-localstack io.github.etspaceman%kinesis4cats-shared io.github.etspaceman%kinesis4cats-kpl-ciris", + "gemini-hlsw/crystal":{ + "project":"gemini-hlsw/crystal", + "repoUrl":"https://github.com/gemini-hlsw/crystal.git", + "revision":"v0.33.12", + "version":"0.33.12", + "targets":"edu.gemini%crystal", "config":{ "projects":{ "exclude":[ @@ -11854,20 +11515,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Kinesis4CatsPlugin.scala", - "pattern":"val Scala3 = \"3.3.1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "etspaceman/scalacheck-faker":{ - "project":"etspaceman/scalacheck-faker", - "repoUrl":"https://github.com/etspaceman/scalacheck-faker.git", - "revision":"v8.0.2", - "version":"8.0.2", - "targets":"io.github.etspaceman%scalacheck-faker", + "gemini-hlsw/lucuma-catalog":{ + "project":"gemini-hlsw/lucuma-catalog", + "repoUrl":"https://github.com/gemini-hlsw/lucuma-catalog.git", + "revision":"v0.40.5", + "version":"0.40.5", + "targets":"edu.gemini%lucuma-catalog edu.gemini%lucuma-ags edu.gemini%lucuma-catalog-testkit", "config":{ "projects":{ "exclude":[ @@ -11895,20 +11552,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "eventstore/eventstore.akka.persistence":{ - "project":"eventstore/eventstore.akka.persistence", - "repoUrl":"https://github.com/eventstore/eventstore.akka.persistence.git", - "revision":"v8.0.0", - "version":"8.0.0", - "targets":"com.geteventstore%akka-persistence-eventstore", + "gemini-hlsw/lucuma-core":{ + "project":"gemini-hlsw/lucuma-core", + "repoUrl":"https://github.com/gemini-hlsw/lucuma-core.git", + "revision":"v0.76.0", + "version":"0.76.0", + "targets":"edu.gemini%lucuma-core edu.gemini%lucuma-core-testkit", "config":{ "projects":{ "exclude":[ @@ -11919,7 +11572,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -11940,12 +11593,12 @@ ] } }, - "eventstore/eventstore.jvm":{ - "project":"eventstore/eventstore.jvm", - "repoUrl":"https://github.com/eventstore/eventstore.jvm.git", - "revision":"v8.0.0", - "version":"8.0.0", - "targets":"com.geteventstore%eventstore-client com.geteventstore%eventstore-client-core", + "gemini-hlsw/lucuma-graphql-routes":{ + "project":"gemini-hlsw/lucuma-graphql-routes", + "repoUrl":"https://github.com/gemini-hlsw/lucuma-graphql-routes.git", + "revision":"v0.6.4", + "version":"0.6.4", + "targets":"edu.gemini%lucuma-graphql-routes-core edu.gemini%lucuma-graphql-routes-grackle edu.gemini%lucuma-graphql-routes-sangria", "config":{ "projects":{ "exclude":[ @@ -11956,7 +11609,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -11977,12 +11630,12 @@ ] } }, - "evolution-gaming/derivation":{ - "project":"evolution-gaming/derivation", - "repoUrl":"https://github.com/evolution-gaming/derivation.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"com.evolution%derivation-play-json com.evolution%derivation-core com.evolution%derivation-circe com.evolution%derivation-circe-compat213 com.evolution%derivation-tapir com.evolution%derivation-cats", + "gemini-hlsw/lucuma-itc":{ + "project":"gemini-hlsw/lucuma-itc", + "repoUrl":"https://github.com/gemini-hlsw/lucuma-itc.git", + "revision":"v0.13.0", + "version":"0.13.0", + "targets":"edu.gemini%lucuma-itc-testkit edu.gemini%lucuma-itc-client edu.gemini%lucuma-itc edu.gemini%lucuma-itc-service", "config":{ "projects":{ "exclude":[ @@ -12014,12 +11667,12 @@ ] } }, - "evolution-gaming/random":{ - "project":"evolution-gaming/random", - "repoUrl":"https://github.com/evolution-gaming/random.git", - "revision":"v1.0.4", - "version":"1.0.4", - "targets":"com.evolution%random", + "gemini-hlsw/lucuma-jts":{ + "project":"gemini-hlsw/lucuma-jts", + "repoUrl":"https://github.com/gemini-hlsw/lucuma-jts.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"edu.gemini%lucuma-jts edu.gemini%lucuma-jts-awt", "config":{ "projects":{ "exclude":[ @@ -12051,12 +11704,12 @@ ] } }, - "evolution-gaming/scache":{ - "project":"evolution-gaming/scache", - "repoUrl":"https://github.com/evolution-gaming/scache.git", - "revision":"v5.1.2", - "version":"5.1.2", - "targets":"com.evolution%scache", + "gemini-hlsw/lucuma-refined":{ + "project":"gemini-hlsw/lucuma-refined", + "repoUrl":"https://github.com/gemini-hlsw/lucuma-refined.git", + "revision":"v0.1.1", + "version":"0.1.1", + "targets":"edu.gemini%lucuma-refined", "config":{ "projects":{ "exclude":[ @@ -12088,12 +11741,12 @@ ] } }, - "fabiopinheiro/scala-did":{ - "project":"fabiopinheiro/scala-did", - "repoUrl":"https://github.com/fabiopinheiro/scala-did.git", - "revision":"v0.1.0-M12", - "version":"0.1.0-M12", - "targets":"app.fmgp%did app.fmgp%did-imp app.fmgp%did-method-peer app.fmgp%multiformats", + "gemini-hlsw/lucuma-schemas":{ + "project":"gemini-hlsw/lucuma-schemas", + "repoUrl":"https://github.com/gemini-hlsw/lucuma-schemas.git", + "revision":"v0.52.1", + "version":"0.52.1", + "targets":"edu.gemini%lucuma-schemas edu.gemini%lucuma-schemas-model edu.gemini%lucuma-schemas-testkit", "config":{ "projects":{ "exclude":[ @@ -12104,7 +11757,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -12125,12 +11778,12 @@ ] } }, - "failurewall/failurewall":{ - "project":"failurewall/failurewall", - "repoUrl":"https://github.com/failurewall/failurewall.git", - "revision":"v0.5.0", - "version":"0.5.0", - "targets":"com.okumin%failurewall-akka com.okumin%failurewall-core", + "gemini-hlsw/lucuma-sso":{ + "project":"gemini-hlsw/lucuma-sso", + "repoUrl":"https://github.com/gemini-hlsw/lucuma-sso.git", + "revision":"v0.5.10", + "version":"0.5.10", + "targets":"edu.gemini%lucuma-sso-backend-client edu.gemini%lucuma-sso-frontend-client", "config":{ "projects":{ "exclude":[ @@ -12141,7 +11794,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -12162,12 +11815,12 @@ ] } }, - "fasterxml/jackson-module-scala":{ - "project":"fasterxml/jackson-module-scala", - "repoUrl":"https://github.com/fasterxml/jackson-module-scala.git", - "revision":"v2.15.3", - "version":"2.15.3", - "targets":"com.fasterxml.jackson.module%jackson-module-scala", + "gemini-hlsw/refined-algebra":{ + "project":"gemini-hlsw/refined-algebra", + "repoUrl":"https://github.com/gemini-hlsw/refined-algebra.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"edu.gemini%refined-algebra", "config":{ "projects":{ "exclude":[ @@ -12193,18 +11846,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "fd4s/fs2-kafka":{ - "project":"fd4s/fs2-kafka", - "repoUrl":"https://github.com/fd4s/fs2-kafka.git", - "revision":"v3.2.0", - "version":"3.2.0", - "targets":"com.github.fd4s%fs2-kafka com.github.fd4s%fs2-kafka-vulcan com.github.fd4s%fs2-kafka-vulcan-testkit-munit", + "getkyo/kyo":{ + "project":"getkyo/kyo", + "repoUrl":"https://github.com/getkyo/kyo.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"io.getkyo%kyo-core io.getkyo%kyo-chatgpt io.getkyo%kyo-zio io.getkyo%kyo-core-opt2 io.getkyo%kyo-bench io.getkyo%kyo-direct io.getkyo%kyo-core-opt3 io.getkyo%kyo-core-opt1 io.getkyo%kyo-sttp", "config":{ "projects":{ "exclude":[ @@ -12219,7 +11872,7 @@ }, "sbt":{ "commands":[ - "set core/Test/unmanagedSources/excludeFilter ~= {_ || \"KafkaProducerConnectionSpec.scala\" || \"KafkaConsumerSpec.scala\" || \"KafkaProducerSpec.scala\" || \"TransactionalKafkaProducerSpec.scala\" || \"TransactionalKafkaProducerTimeoutSpec.scala\" || \"KafkaAdminClientSpec.scala\"} " + ], "options":[ @@ -12234,18 +11887,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "fd4s/vulcan":{ - "project":"fd4s/vulcan", - "repoUrl":"https://github.com/fd4s/vulcan.git", - "revision":"v1.9.0", - "version":"1.9.0", - "targets":"com.github.fd4s%vulcan com.github.fd4s%vulcan-generic com.github.fd4s%vulcan-refined", + "getshaka-org/native-converter":{ + "project":"getshaka-org/native-converter", + "repoUrl":"https://github.com/getshaka-org/native-converter.git", + "revision":"v0.8.0", + "version":"0.8.0", + "targets":"org.getshaka%native-converter", "config":{ "projects":{ "exclude":[ @@ -12256,7 +11909,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -12273,20 +11926,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "fdietze/formidable":{ - "project":"fdietze/formidable", - "repoUrl":"https://github.com/fdietze/formidable.git", - "revision":"v0.1.5", - "version":"0.1.5", - "targets":"com.github.fdietze%formidable", + "ghik/anodi":{ + "project":"ghik/anodi", + "repoUrl":"https://github.com/ghik/anodi.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.github.ghik%anodi com.github.ghik%anodi-macros", "config":{ "projects":{ "exclude":[ @@ -12318,12 +11967,12 @@ ] } }, - "fehu/opentracing-scala":{ - "project":"fehu/opentracing-scala", - "repoUrl":"https://github.com/fehu/opentracing-scala.git", - "revision":"0.7.0", - "version":"0.7.0", - "targets":"io.github.fehu%opentracing-scala-akka io.github.fehu%opentracing-scala-jaeger io.github.fehu%opentracing-scala-core io.github.fehu%opentracing-scala-fs2 io.github.fehu%opentracing-scala-noop", + "ghostdogpr/caliban":{ + "project":"ghostdogpr/caliban", + "repoUrl":"https://github.com/ghostdogpr/caliban.git", + "revision":"v2.2.1", + "version":"2.2.1", + "targets":"com.github.ghostdogpr%caliban-reporting com.github.ghostdogpr%caliban-monix com.github.ghostdogpr%caliban-tapir com.github.ghostdogpr%caliban-tools com.github.ghostdogpr%caliban-macros com.github.ghostdogpr%caliban-tracing com.github.ghostdogpr%caliban com.github.ghostdogpr%caliban-cats com.github.ghostdogpr%caliban-federation com.github.ghostdogpr%caliban-client com.github.ghostdogpr%caliban-http4s com.github.ghostdogpr%caliban-zio-http", "config":{ "projects":{ "exclude":[ @@ -12334,7 +11983,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -12353,25 +12002,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.1.3\"", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "fenixedu/fenixedu-scala-sdk":{ - "project":"fenixedu/fenixedu-scala-sdk", - "repoUrl":"https://github.com/fenixedu/fenixedu-scala-sdk.git", - "revision":"master", - "version":"0.5.0", - "targets":"org.fenixedu%fenixedu-scala-sdk" - }, - "fgrutsch/akka-persistence-mapdb":{ - "project":"fgrutsch/akka-persistence-mapdb", - "repoUrl":"https://github.com/fgrutsch/akka-persistence-mapdb.git", - "revision":"v0.3.2", - "version":"0.3.2", - "targets":"com.fgrutsch%akka-persistence-mapdb", + "giabao/asm-flow":{ + "project":"giabao/asm-flow", + "repoUrl":"https://github.com/giabao/asm-flow.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.sandinh%asm-flow", "config":{ "projects":{ "exclude":[ @@ -12382,7 +12024,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -12397,18 +12039,18 @@ ] }, - "tests":"full", + "tests":"disabled", "sourcePatches":[ ] } }, - "fgrutsch/emergence":{ - "project":"fgrutsch/emergence", - "repoUrl":"https://github.com/fgrutsch/emergence.git", - "revision":"v0.5.1", - "version":"0.5.1", - "targets":"com.fgrutsch.emergence%core", + "giabao/paho-akka":{ + "project":"giabao/paho-akka", + "repoUrl":"https://github.com/giabao/paho-akka.git", + "revision":"v1.6.1", + "version":"1.6.1", + "targets":"com.sandinh%paho-akka", "config":{ "projects":{ "exclude":[ @@ -12434,18 +12076,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "fiatjaf/nlog":{ - "project":"fiatjaf/nlog", - "repoUrl":"https://github.com/fiatjaf/nlog.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.fiatjaf%nlog", + "giiita/refuel":{ + "project":"giiita/refuel", + "repoUrl":"https://github.com/giiita/refuel.git", + "revision":"v2.0.2", + "version":"2.0.2", + "targets":"com.phylage%refuel-container-macro com.phylage%refuel-json-macro com.phylage%refuel-json com.phylage%refuel-container com.phylage%refuel-cipher com.phylage%refuel-util", "config":{ "projects":{ "exclude":[ @@ -12456,7 +12098,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -12471,18 +12113,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "fiatjaf/scoin":{ - "project":"fiatjaf/scoin", - "repoUrl":"https://github.com/fiatjaf/scoin.git", - "revision":"v0.7.0", - "version":"0.7.0", - "targets":"com.fiatjaf%scoin", + "gmethvin/directory-watcher":{ + "project":"gmethvin/directory-watcher", + "repoUrl":"https://github.com/gmethvin/directory-watcher.git", + "revision":"v0.18.0", + "version":"0.18.0", + "targets":"io.methvin%directory-watcher-better-files", "config":{ "projects":{ "exclude":[ @@ -12493,7 +12135,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -12508,18 +12150,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "filosganga/batcher":{ - "project":"filosganga/batcher", - "repoUrl":"https://github.com/filosganga/batcher.git", - "revision":"v0.0.8", - "version":"0.0.8", - "targets":"com.filippodeluca%batcher", + "gnieh/diffson":{ + "project":"gnieh/diffson", + "repoUrl":"https://github.com/gnieh/diffson.git", + "revision":"v4.4.0", + "version":"4.4.0", + "targets":"org.gnieh%diffson-circe org.gnieh%diffson-core org.gnieh%diffson-play-json org.gnieh%diffson-testkit", "config":{ "projects":{ "exclude":[ @@ -12530,7 +12172,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -12547,16 +12189,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "filosganga/jsonpath":{ - "project":"filosganga/jsonpath", - "repoUrl":"https://github.com/filosganga/jsonpath.git", - "revision":"v0.0.19", - "version":"0.0.19", - "targets":"com.filippodeluca%jsonpath-ast com.filippodeluca%jsonpath-circe com.filippodeluca%jsonpath-literal com.filippodeluca%jsonpath-parser", + "gnieh/fs2-data":{ + "project":"gnieh/fs2-data", + "repoUrl":"https://github.com/gnieh/fs2-data.git", + "revision":"v1.7.1", + "version":"1.7.1", + "targets":"org.gnieh%fs2-data-json-diffson org.gnieh%fs2-data-json-play org.gnieh%fs2-data-csv org.gnieh%fs2-data-json-interpolators org.gnieh%fs2-data-xml org.gnieh%fs2-data-cbor-json org.gnieh%fs2-data-text org.gnieh%fs2-data-json org.gnieh%fs2-data-csv-generic org.gnieh%fs2-data-json-circe org.gnieh%fs2-data-xml-scala org.gnieh%fs2-data-cbor org.gnieh%fs2-data-finite-state", "config":{ "projects":{ "exclude":[ @@ -12584,16 +12230,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "findify/flink-adt":{ - "project":"findify/flink-adt", - "repoUrl":"https://github.com/WojciechMazur/flink-adt.git", - "revision":"fix/compilation-scala-3.3.x", - "version":"0.6.1", - "targets":"io.findify%flink-adt", + "gnieh/geo-scala":{ + "project":"gnieh/geo-scala", + "repoUrl":"https://github.com/gnieh/geo-scala.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"org.gnieh%geo-scala-circe org.gnieh%geo-scala-core org.gnieh%geo-scala-jsoniter-scala org.gnieh%geo-scala-polyline", "config":{ "projects":{ "exclude":[ @@ -12604,7 +12254,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -12621,16 +12271,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "findify/flink-scala-api":{ - "project":"findify/flink-scala-api", - "repoUrl":"https://github.com/flink-extended/flink-scala-api.git", - "revision":"master", - "version":"1.15-2", - "targets":"io.findify%flink-scala-api", + "gnp/zio-data-streams":{ + "project":"gnp/zio-data-streams", + "repoUrl":"https://github.com/gnp/zio-data-streams.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.gregorpurdy%zio-data-streams", "config":{ "projects":{ "exclude":[ @@ -12656,25 +12310,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "fingo/spata":{ - "project":"fingo/spata", - "repoUrl":"https://github.com/fingo/spata.git", - "revision":"v3.1.0", - "version":"3.1.0", - "targets":"info.fingo%spata" - }, - "firstbirdtech/emergence":{ - "project":"firstbirdtech/emergence", - "repoUrl":"https://github.com/firstbirdtech/emergence.git", - "revision":"v0.3.9", - "version":"0.3.9", - "targets":"com.firstbird.emergence%core", + "gochaorg/json4s3":{ + "project":"gochaorg/json4s3", + "repoUrl":"https://github.com/gochaorg/json4s3.git", + "revision":"526fde20009a0e75d62aa7a2ffd1f02b0efa9ca8", + "version":"2.1.0", + "targets":"xyz.cofe%json4s3", "config":{ "projects":{ "exclude":[ @@ -12685,7 +12336,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -12702,16 +12353,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.2.0\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "flink-extended/flink-scala-api":{ - "project":"flink-extended/flink-scala-api", - "repoUrl":"https://github.com/flink-extended/flink-scala-api.git", - "revision":"v1.16.1.3", - "version":"1.16.1.3", - "targets":"org.flinkextended%flink-scala-api", + "gonzih/cats-nats":{ + "project":"gonzih/cats-nats", + "repoUrl":"https://github.com/gonzih/cats-nats.git", + "revision":"0.1.0", + "version":"0.1.0", + "targets":"io.github.gonzih%cats-nats", "config":{ "projects":{ "exclude":[ @@ -12722,7 +12377,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -12737,18 +12392,25 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "flyway/flyway-play":{ - "project":"flyway/flyway-play", - "repoUrl":"https://github.com/flyway/flyway-play.git", - "revision":"9.0.0", - "version":"9.0.0", - "targets":"org.flywaydb%flyway-play", + "greenfossil/commons-i18n":{ + "project":"greenfossil/commons-i18n", + "repoUrl":"https://github.com/greenfossil/commons-i18n.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"com.greenfossil%commons-i18n" + }, + "greenfossil/commons-json":{ + "project":"greenfossil/commons-json", + "repoUrl":"https://github.com/greenfossil/commons-json.git", + "revision":"v1.0.2", + "version":"1.0.2", + "targets":"com.greenfossil%commons-json", "config":{ "projects":{ "exclude":[ @@ -12759,7 +12421,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -12774,18 +12436,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "fmonniot/scala3mock":{ - "project":"fmonniot/scala3mock", - "repoUrl":"https://github.com/fmonniot/scala3mock.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"eu.monniot%scala3mock eu.monniot%scala3mock-scalatest", + "greenfossil/data-mapping":{ + "project":"greenfossil/data-mapping", + "repoUrl":"https://github.com/greenfossil/data-mapping.git", + "revision":"v1.0.2", + "version":"1.0.2", + "targets":"com.greenfossil%data-mapping", "config":{ "projects":{ "exclude":[ @@ -12796,7 +12458,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -12813,16 +12475,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "foldables-io/skunk-tables":{ - "project":"foldables-io/skunk-tables", - "repoUrl":"https://github.com/foldables-io/skunk-tables.git", - "revision":"v0.0.2", - "version":"0.0.2", - "targets":"io.foldables%skunk-tables", + "greenfossil/thorium":{ + "project":"greenfossil/thorium", + "repoUrl":"https://github.com/greenfossil/thorium.git", + "revision":"v0.6.5", + "version":"0.6.5", + "targets":"com.greenfossil%thorium", "config":{ "projects":{ "exclude":[ @@ -12833,7 +12499,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -12848,36 +12514,33 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "folone/poi.scala":{ - "project":"folone/poi.scala", - "repoUrl":"https://github.com/folone/poi.scala.git", - "revision":"v0.23", - "version":"0.23", - "targets":"info.folone%poi-scala" - }, - "fomkin/korolev":{ - "project":"fomkin/korolev", - "repoUrl":"https://github.com/fomkin/korolev.git", - "revision":"v1.6.0-M1", - "version":"1.6.0", - "targets":"org.fomkin%korolev-web-dsl org.fomkin%korolev-zio2-streams org.fomkin%korolev-testkit org.fomkin%korolev-fs2-ce3 org.fomkin%korolev-ce3 org.fomkin%korolev-effect org.fomkin%korolev-zio-streams org.fomkin%korolev org.fomkin%korolev-web org.fomkin%korolev-zio2 org.fomkin%korolev-zio org.fomkin%korolev-ce2 org.fomkin%korolev-http org.fomkin%korolev-zio-http org.fomkin%korolev-bytes org.fomkin%korolev-akka org.fomkin%korolev-standalone org.fomkin%korolev-monix org.fomkin%korolev-pekko org.fomkin%korolev-scodec org.fomkin%korolev-slf4j org.fomkin%korolev-fs2-ce2", + "greenfossil/typesafe-config-ext":{ + "project":"greenfossil/typesafe-config-ext", + "repoUrl":"https://github.com/greenfossil/typesafe-config-ext.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"com.greenfossil%typesafe-config-ext", "config":{ "projects":{ "exclude":[ - "org.fomkin%korolev-http4s" + ], "overrides":{ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -12892,43 +12555,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.1.1\"", + "pattern":"val scala3Version = \"3.2.0\"", "replaceWith":"val scala3Version = \"\"" } ] } }, - "fomkin/levsha":{ - "project":"fomkin/levsha", - "repoUrl":"https://github.com/fomkin/levsha.git", - "revision":"v1.4.0-M2", - "version":"1.4.0-M2", - "targets":"com.github.fomkin%levsha-core com.github.fomkin%levsha-events" - }, - "fommil/jzon":{ - "project":"fommil/jzon", - "repoUrl":"https://github.com/fommil/jzon.git", - "revision":"v1.1.0", - "version":"1.1.0", - "targets":"com.fommil%jzon" - }, - "foundweekends/knockoff":{ - "project":"foundweekends/knockoff", - "repoUrl":"https://github.com/foundweekends/knockoff.git", - "revision":"v0.9.0", - "version":"0.9.0", - "targets":"org.foundweekends%knockoff" - }, - "foundweekends/pamflet":{ - "project":"foundweekends/pamflet", - "repoUrl":"https://github.com/foundweekends/pamflet.git", - "revision":"v0.12.0", - "version":"0.12.0", - "targets":"org.foundweekends%pamflet-app org.foundweekends%pamflet-knockoff org.foundweekends%pamflet-library", + "greenleafoss/green-leaf-mongo":{ + "project":"greenleafoss/green-leaf-mongo", + "repoUrl":"https://github.com/greenleafoss/green-leaf-mongo.git", + "revision":"0.1.13", + "version":"0.1.13", + "targets":"io.github.greenleafoss%green-leaf-mongo", "config":{ "projects":{ "exclude":[ @@ -12960,12 +12602,12 @@ ] } }, - "frawa/inline-files":{ - "project":"frawa/inline-files", - "repoUrl":"https://github.com/frawa/inline-files.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"io.github.frawa%inline-files", + "guardian/fastly-api-client":{ + "project":"guardian/fastly-api-client", + "repoUrl":"https://github.com/guardian/fastly-api-client.git", + "revision":"v0.5.0", + "version":"0.5.0", + "targets":"com.gu%fastly-api-client", "config":{ "projects":{ "exclude":[ @@ -12976,7 +12618,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -12991,31 +12633,29 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "frawa/typed-json":{ - "project":"frawa/typed-json", - "repoUrl":"https://github.com/frawa/typed-json.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.github.frawa%typed-json-parser io.github.frawa%typed-json-parser-jawn io.github.frawa%typed-json-macros io.github.frawa%typed-json-parser-zio io.github.frawa%typed-json", + "guardian/pa-football-client":{ + "project":"guardian/pa-football-client", + "repoUrl":"https://github.com/guardian/pa-football-client.git", + "revision":"v7.0.7", + "version":"7.0.7", + "targets":"com.gu%pa-client", "config":{ "projects":{ "exclude":[ ], "overrides":{ - "typed-json":{ - "tests":"disabled" - } + } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -13032,72 +12672,27 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala_3: String = \"3.2.2\"", + "replaceWith":"val scala_3: String = \"\"" + } ] } }, - "frugalmechanic/fm-common":{ - "project":"frugalmechanic/fm-common", - "repoUrl":"https://github.com/frugalmechanic/fm-common.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"com.frugalmechanic%fm-common" - }, - "frugalmechanic/fm-flatfile":{ - "project":"frugalmechanic/fm-flatfile", - "repoUrl":"https://github.com/frugalmechanic/fm-flatfile.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"com.frugalmechanic%fm-flatfile" - }, - "frugalmechanic/fm-html":{ - "project":"frugalmechanic/fm-html", - "repoUrl":"https://github.com/frugalmechanic/fm-html.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"com.frugalmechanic%fm-html" - }, - "frugalmechanic/fm-http":{ - "project":"frugalmechanic/fm-http", - "repoUrl":"https://github.com/frugalmechanic/fm-http.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"com.frugalmechanic%fm-http" - }, - "frugalmechanic/fm-json":{ - "project":"frugalmechanic/fm-json", - "repoUrl":"https://github.com/frugalmechanic/fm-json.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"com.frugalmechanic%fm-json" - }, - "frugalmechanic/fm-lazyseq":{ - "project":"frugalmechanic/fm-lazyseq", - "repoUrl":"https://github.com/frugalmechanic/fm-lazyseq.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"com.frugalmechanic%fm-lazyseq" - }, - "frugalmechanic/fm-serializer":{ - "project":"frugalmechanic/fm-serializer", - "repoUrl":"https://github.com/frugalmechanic/fm-serializer.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"com.frugalmechanic%fm-serializer" + "guidoschmidt17/zio-pgcopy":{ + "project":"guidoschmidt17/zio-pgcopy", + "repoUrl":"https://github.com/guidoschmidt17/zio-pgcopy.git", + "revision":"658f5c74c0c91803a62c81d5e5d0dd246453e1b4", + "version":"0.1.0-RC1", + "targets":"com.guidoschmidt17%zio-pgcopy" }, - "frugalmechanic/fm-xml":{ - "project":"frugalmechanic/fm-xml", - "repoUrl":"https://github.com/frugalmechanic/fm-xml.git", + "guymers/ceesvee":{ + "project":"guymers/ceesvee", + "repoUrl":"https://github.com/guymers/ceesvee.git", "revision":"v1.0.0", "version":"1.0.0", - "targets":"com.frugalmechanic%fm-xml" - }, - "frugalmechanic/scala-optparse":{ - "project":"frugalmechanic/scala-optparse", - "repoUrl":"https://github.com/frugalmechanic/scala-optparse.git", - "revision":"v1.2.1", - "version":"1.2.1", - "targets":"com.frugalmechanic%scala-optparse", + "targets":"io.github.guymers%ceesvee-core io.github.guymers%ceesvee-fs2 io.github.guymers%ceesvee-zio", "config":{ "projects":{ "exclude":[ @@ -13108,11 +12703,12 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -13123,18 +12719,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "fs2-blobstore/fs2-blobstore":{ - "project":"fs2-blobstore/fs2-blobstore", - "repoUrl":"https://github.com/fs2-blobstore/fs2-blobstore.git", - "revision":"v0.9.12", - "version":"0.9.12", - "targets":"com.github.fs2-blobstore%s3 com.github.fs2-blobstore%gcs com.github.fs2-blobstore%url com.github.fs2-blobstore%azure com.github.fs2-blobstore%sftp com.github.fs2-blobstore%box com.github.fs2-blobstore%core", + "guymers/foobie":{ + "project":"guymers/foobie", + "repoUrl":"https://github.com/guymers/foobie.git", + "revision":"v0.14.3", + "version":"0.14.3", + "targets":"io.github.guymers%foobie-specs2 io.github.guymers%foobie-h2 io.github.guymers%zoobie io.github.guymers%foobie-weaver io.github.guymers%foobie-h2-circe io.github.guymers%foobie-refined io.github.guymers%foobie-postgres io.github.guymers%foobie-hikari io.github.guymers%foobie-postgres-circe io.github.guymers%foobie-mysql io.github.guymers%foobie-munit io.github.guymers%foobie-postgis io.github.guymers%foobie-scalatest io.github.guymers%foobie-free io.github.guymers%foobie-core", "config":{ "projects":{ "exclude":[ @@ -13145,11 +12745,12 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -13160,18 +12761,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "fthomas/fs2-cron":{ - "project":"fthomas/fs2-cron", - "repoUrl":"https://github.com/fthomas/fs2-cron.git", - "revision":"v0.8.3", - "version":"0.8.3", - "targets":"eu.timepit%fs2-cron-calev eu.timepit%fs2-cron-core eu.timepit%fs2-cron-cron-utils", + "gvolpe/trading":{ + "project":"gvolpe/trading", + "repoUrl":"https://github.com/gvolpe/trading.git", + "revision":"5d710a63bf7aec36130d23b7353968cb8edf9522", + "version":"HEAD", + "targets":"*%*", "config":{ "projects":{ "exclude":[ @@ -13182,11 +12787,11 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ - + "excludeLibraryDependency com.github.ghik:zerowaste_{scalaVersion}" ], "options":[ @@ -13199,20 +12804,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala_3 = \"3.2.2\"", - "replaceWith":"val Scala_3 = \"\"" - } + ] } }, - "fthomas/refined":{ - "project":"fthomas/refined", - "repoUrl":"https://github.com/fthomas/refined.git", - "revision":"v0.11.0", - "version":"0.11.0", - "targets":"eu.timepit%refined eu.timepit%refined-cats eu.timepit%refined-scalacheck eu.timepit%refined-scopt eu.timepit%refined-pureconfig eu.timepit%refined-jsonpath", + "gzoller/deploysample":{ + "project":"gzoller/deploysample", + "repoUrl":"https://github.com/gzoller/deploysample.git", + "revision":"0.1.5", + "version":"0.1.5", + "targets":"co.blocke%ds_core co.blocke%ds_lib", "config":{ "projects":{ "exclude":[ @@ -13223,7 +12824,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -13240,20 +12841,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala_3 = \"3.3.0\"", - "replaceWith":"val Scala_3 = \"\"" - } + ] } }, - "fthomas/status-page":{ - "project":"fthomas/status-page", - "repoUrl":"https://github.com/fthomas/status-page.git", - "revision":"v0.3.2", - "version":"0.3.2", - "targets":"eu.timepit%status-page-cats eu.timepit%status-page-core", + "gzoller/scalajack":{ + "project":"gzoller/scalajack", + "repoUrl":"https://github.com/gzoller/scalajack.git", + "revision":"7.0.3", + "version":"7.0.3", + "targets":"co.blocke%scalajack co.blocke%scalajack_dynamo co.blocke%scalajack_mongo", "config":{ "projects":{ "exclude":[ @@ -13264,11 +12861,11 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ - + "set scalajack/Test/unmanagedSources/excludeFilter ~= { _ || \"AnyPrim.scala\" || \"Arrays.scala\" || \"AnyColl.scala\" }" ], "options":[ @@ -13283,36 +12880,31 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala_3 = \"3.2.2\"", - "replaceWith":"val Scala_3 = \"\"" + "pattern":"val scala3 = \"3.2.1\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "funkode-io/web3-auth":{ - "project":"funkode-io/web3-auth", - "repoUrl":"https://github.com/funkode-io/web3-auth.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"io.funkode%web3-auth" - }, - "gaeljw/typetrees":{ - "project":"gaeljw/typetrees", - "repoUrl":"https://github.com/gaeljw/typetrees.git", - "revision":"v0.5.0", - "version":"0.5.0", - "targets":"io.github.gaeljw%typetrees", + "h8io/borscht":{ + "project":"h8io/borscht", + "repoUrl":"https://github.com/h8io/borscht.git", + "revision":"v1.2.11", + "version":"1.2.11", + "targets":"io.h8.borscht%borscht-template-st4 io.h8.borscht%borscht-jackson-toml io.h8.borscht%borscht-jackson io.h8.borscht%borscht-core io.h8.borscht%borscht-classic io.h8.borscht%borscht-jackson-yaml io.h8.borscht%borscht-template-core io.h8.borscht%borscht-template-apache-commons-text io.h8.borscht%borscht-typesafe", "config":{ "projects":{ "exclude":[ ], "overrides":{ - + "template-apache-commons-text":{ + "tests":"compile-only" + } } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -13329,20 +12921,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.0.0\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "gaelrenoux/tranzactio":{ - "project":"gaelrenoux/tranzactio", - "repoUrl":"https://github.com/gaelrenoux/tranzactio.git", - "revision":"v5.0.1", - "version":"5.0.1", - "targets":"io.github.gaelrenoux%tranzactio-anorm io.github.gaelrenoux%tranzactio-core io.github.gaelrenoux%tranzactio-doobie", + "hagay3/skuber":{ + "project":"hagay3/skuber", + "repoUrl":"https://github.com/hagay3/skuber.git", + "revision":"v3.0.6", + "version":"3.0.6", + "targets":"io.github.hagay3%skuber io.github.hagay3%skuber-examples", "config":{ "projects":{ "exclude":[ @@ -13353,7 +12941,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -13371,19 +12959,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/BuildHelper.scala", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" + "path":"build.sbt", + "pattern":"val scala3Version = \"3.2.0\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "gchudnov/bscript":{ - "project":"gchudnov/bscript", - "repoUrl":"https://github.com/gchudnov/bscript.git", - "revision":"v1.3.5", - "version":"1.3.5", - "targets":"com.github.gchudnov%bscript-builder com.github.gchudnov%bscript-translator com.github.gchudnov%bscript-inspector com.github.gchudnov%bscript-serde com.github.gchudnov%bscript-interpreter com.github.gchudnov%bscript-rewriter com.github.gchudnov%bscript-b1 com.github.gchudnov%bscript-lang", + "hamnis/dataclass-scalafix":{ + "project":"hamnis/dataclass-scalafix", + "repoUrl":"https://github.com/hamnis/dataclass-scalafix.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"net.hamnaberg%dataclass-annotation", "config":{ "projects":{ "exclude":[ @@ -13394,7 +12982,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -13411,16 +12999,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.1.3\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "gchudnov/mindthegap":{ - "project":"gchudnov/mindthegap", - "repoUrl":"https://github.com/gchudnov/mindthegap.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"com.github.gchudnov%mtg", + "hamnis/jsonschema":{ + "project":"hamnis/jsonschema", + "repoUrl":"https://github.com/hamnis/jsonschema.git", + "revision":"v0.3.0", + "version":"0.3.0", + "targets":"net.hamnaberg%openapi-schema-core", "config":{ "projects":{ "exclude":[ @@ -13431,7 +13023,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -13452,15 +13044,22 @@ ] } }, - "gchudnov/swearwolf":{ - "project":"gchudnov/swearwolf", - "repoUrl":"https://github.com/gchudnov/swearwolf.git", - "revision":"v2.1.0", - "version":"2.1.0", - "targets":"com.github.gchudnov%swearwolf-term-zio com.github.gchudnov%swearwolf-rich com.github.gchudnov%swearwolf-util-zio com.github.gchudnov%swearwolf-term com.github.gchudnov%swearwolf-shapes-zio com.github.gchudnov%swearwolf-shapes com.github.gchudnov%swearwolf-util com.github.gchudnov%swearwolf-rich-zio", - "config":{ - "projects":{ - "exclude":[ + "hamnis/jwk":{ + "project":"hamnis/jwk", + "repoUrl":"https://github.com/hamnis/jwk.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"net.hamnaberg.jwk%jwk-core net.hamnaberg.jwk%jwk-http4s net.hamnaberg.jwk%jwk-sttp3" + }, + "hedgehogqa/scala-hedgehog":{ + "project":"hedgehogqa/scala-hedgehog", + "repoUrl":"https://github.com/hedgehogqa/scala-hedgehog.git", + "revision":"v0.10.1", + "version":"0.10.1", + "targets":"qa.hedgehog%hedgehog-minitest qa.hedgehog%hedgehog-core qa.hedgehog%hedgehog-munit qa.hedgehog%hedgehog-sbt qa.hedgehog%hedgehog-runner", + "config":{ + "projects":{ + "exclude":[ ], "overrides":{ @@ -13489,12 +13088,12 @@ ] } }, - "geirolz/advxml":{ - "project":"geirolz/advxml", - "repoUrl":"https://github.com/geirolz/advxml.git", - "revision":"v2.5.1", - "version":"2.5.1", - "targets":"com.github.geirolz%advxml-core com.github.geirolz%advxml-xpath", + "herminiogg/dmaog":{ + "project":"herminiogg/dmaog", + "repoUrl":"https://github.com/herminiogg/dmaog.git", + "revision":"v0.1.4", + "version":"0.1.4", + "targets":"com.herminiogarcia%dmaog", "config":{ "projects":{ "exclude":[ @@ -13520,18 +13119,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "geirolz/cats-xml":{ - "project":"geirolz/cats-xml", - "repoUrl":"https://github.com/geirolz/cats-xml.git", - "revision":"v0.0.14", - "version":"0.0.14", - "targets":"com.github.geirolz%cats-xml-standard com.github.geirolz%cats-xml-effect com.github.geirolz%cats-xml-internal-utils com.github.geirolz%cats-xml-core com.github.geirolz%cats-xml-generic com.github.geirolz%cats-xml-xpath", + "herminiogg/label2thesaurus":{ + "project":"herminiogg/label2thesaurus", + "repoUrl":"https://github.com/herminiogg/label2thesaurus.git", + "revision":"v0.1.1", + "version":"0.1.1", + "targets":"com.herminiogarcia%label2thesaurus", "config":{ "projects":{ "exclude":[ @@ -13542,7 +13141,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -13557,18 +13156,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "geirolz/erules":{ - "project":"geirolz/erules", - "repoUrl":"https://github.com/geirolz/erules.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.github.geirolz%erules-circe com.github.geirolz%erules-core com.github.geirolz%erules-cats-xml com.github.geirolz%erules-scalatest com.github.geirolz%erules-generic", + "herminiogg/shexml":{ + "project":"herminiogg/shexml", + "repoUrl":"https://github.com/herminiogg/shexml.git", + "revision":"v0.3.2", + "version":"0.3.2", + "targets":"com.herminiogarcia%shexml", "config":{ "projects":{ "exclude":[ @@ -13579,7 +13178,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -13594,18 +13193,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "geirolz/fluent-copy":{ - "project":"geirolz/fluent-copy", - "repoUrl":"https://github.com/geirolz/fluent-copy.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"com.github.geirolz%fluent-copy", + "higherkindness/droste":{ + "project":"higherkindness/droste", + "repoUrl":"https://github.com/higherkindness/droste.git", + "revision":"v0.9.0", + "version":"0.9.0", + "targets":"io.higherkindness%droste io.higherkindness%droste-core io.higherkindness%droste-scalacheck io.higherkindness%droste-reftree io.higherkindness%droste-macros io.higherkindness%droste-meta io.higherkindness%droste-laws", "config":{ "projects":{ "exclude":[ @@ -13616,11 +13215,11 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ - + "disableFatalWarnings" ], "options":[ @@ -13637,12 +13236,12 @@ ] } }, - "geirolz/fly4s":{ - "project":"geirolz/fly4s", - "repoUrl":"https://github.com/geirolz/fly4s.git", - "revision":"v0.0.19", - "version":"0.0.19", - "targets":"com.github.geirolz%fly4s-core", + "higherkindness/mu-scala":{ + "project":"higherkindness/mu-scala", + "repoUrl":"https://github.com/higherkindness/mu-scala.git", + "revision":"v0.30.3", + "version":"0.30.3", + "targets":"io.higherkindness%mu-rpc-client-netty io.higherkindness%mu-rpc-server io.higherkindness%mu-rpc-dropwizard io.higherkindness%mu-rpc-prometheus io.higherkindness%mu-rpc-health-check io.higherkindness%mu-rpc-client-okhttp io.higherkindness%mu-rpc-client-cache io.higherkindness%mu-rpc-testing io.higherkindness%mu-rpc-service io.higherkindness%mu-rpc-netty-ssl io.higherkindness%mu-rpc-fs2", "config":{ "projects":{ "exclude":[ @@ -13653,7 +13252,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -13668,18 +13267,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "geirolz/scope":{ - "project":"geirolz/scope", - "repoUrl":"https://github.com/geirolz/scope.git", - "revision":"v0.0.9", - "version":"0.0.9", - "targets":"com.github.geirolz%scope-core com.github.geirolz%scope-generic", + "hireproof/screening":{ + "project":"hireproof/screening", + "repoUrl":"https://github.com/hireproof/screening.git", + "revision":"0.0.17", + "version":"0.0.17", + "targets":"io.hireproof%screening io.hireproof%screening-core", "config":{ "projects":{ "exclude":[ @@ -13690,7 +13293,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -13705,22 +13308,26 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.1.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "geirolz/toolkit":{ - "project":"geirolz/toolkit", - "repoUrl":"https://github.com/geirolz/toolkit.git", - "revision":"v0.0.11", - "version":"0.0.11", - "targets":"com.github.geirolz%toolkit-testing com.github.geirolz%toolkit-config com.github.geirolz%toolkit-log4cats com.github.geirolz%toolkit-odin com.github.geirolz%toolkit-pureconfig com.github.geirolz%toolkit com.github.geirolz%toolkit-fly4s", + "hnaderi/edomata":{ + "project":"hnaderi/edomata", + "repoUrl":"https://github.com/hnaderi/edomata.git", + "revision":"v0.10.1", + "version":"0.10.1", + "targets":"dev.hnaderi%edomata-munit dev.hnaderi%edomata-skunk-jsoniter dev.hnaderi%edomata-skunk-upickle dev.hnaderi%edomata-skunk dev.hnaderi%edomata-doobie dev.hnaderi%edomata-core dev.hnaderi%edomata-doobie-circe dev.hnaderi%edomata-postgres dev.hnaderi%edomata-docs dev.hnaderi%edomata-doobie-jsoniter dev.hnaderi%edomata-skunk-circe dev.hnaderi%edomata-backend dev.hnaderi%edomata-doobie-upickle", "config":{ "projects":{ "exclude":[ - + "edomata-docs" ], "overrides":{ @@ -13742,39 +13349,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "gekomad/itto-csv":{ - "project":"gekomad/itto-csv", - "repoUrl":"https://github.com/gekomad/itto-csv.git", - "revision":"", - "version":"2.0.0", - "targets":"com.github.gekomad%itto-csv" - }, - "gekomad/scala-compress":{ - "project":"gekomad/scala-compress", - "repoUrl":"https://github.com/gekomad/scala-compress.git", - "revision":"1.0.0", - "version":"1.0.0", - "targets":"com.github.gekomad%scala-compress" - }, - "gekomad/scala-regex-collection":{ - "project":"gekomad/scala-regex-collection", - "repoUrl":"https://github.com/gekomad/scala-regex-collection.git", - "revision":"2.0.0", - "version":"2.0.0", - "targets":"com.github.gekomad%scala-regex-collection" - }, - "gemini-hlsw/clue":{ - "project":"gemini-hlsw/clue", - "repoUrl":"https://github.com/gemini-hlsw/clue.git", - "revision":"v0.34.0", - "version":"0.34.0", - "targets":"edu.gemini%clue-core edu.gemini%clue-http4s edu.gemini%clue-model", + "hnaderi/lepus":{ + "project":"hnaderi/lepus", + "repoUrl":"https://github.com/hnaderi/lepus.git", + "revision":"v0.3.0", + "version":"0.3.0", + "targets":"dev.hnaderi%lepus-circe dev.hnaderi%lepus-client dev.hnaderi%lepus-protocol-testkit dev.hnaderi%lepus-docs dev.hnaderi%lepus-wire dev.hnaderi%lepus-std dev.hnaderi%lepus-protocol", "config":{ "projects":{ "exclude":[ @@ -13804,29 +13394,29 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.1\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "gemini-hlsw/crystal":{ - "project":"gemini-hlsw/crystal", - "repoUrl":"https://github.com/gemini-hlsw/crystal.git", - "revision":"v0.35.1", - "version":"0.35.1", - "targets":"edu.gemini%crystal", + "hnaderi/named-codec":{ + "project":"hnaderi/named-codec", + "repoUrl":"https://github.com/hnaderi/named-codec.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"dev.hnaderi%named-codec dev.hnaderi%named-codec-circe dev.hnaderi%named-codec-docs", "config":{ "projects":{ "exclude":[ - + "named-codec-docs" ], "overrides":{ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -13843,16 +13433,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "gemini-hlsw/giapi-scala":{ - "project":"gemini-hlsw/giapi-scala", - "repoUrl":"https://github.com/gemini-hlsw/giapi-scala.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"edu.gemini%giapi", + "hnaderi/portainer-client":{ + "project":"hnaderi/portainer-client", + "repoUrl":"https://github.com/hnaderi/portainer-client.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"dev.hnaderi%portainer-client", "config":{ "projects":{ "exclude":[ @@ -13863,7 +13457,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -13880,16 +13474,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.0\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "gemini-hlsw/lucuma-catalog":{ - "project":"gemini-hlsw/lucuma-catalog", - "repoUrl":"https://github.com/gemini-hlsw/lucuma-catalog.git", - "revision":"v0.44.1", - "version":"0.44.1", - "targets":"edu.gemini%lucuma-catalog edu.gemini%lucuma-ags edu.gemini%lucuma-catalog-testkit", + "hnaderi/scala-k8s":{ + "project":"hnaderi/scala-k8s", + "repoUrl":"https://github.com/hnaderi/scala-k8s.git", + "revision":"v0.12.0", + "version":"0.12.0", + "targets":"dev.hnaderi%scala-k8s-manifests dev.hnaderi%scala-k8s-java-ssl dev.hnaderi%scala-k8s-play-json dev.hnaderi%scala-k8s-objects dev.hnaderi%scala-k8s-docs dev.hnaderi%scala-k8s-zio dev.hnaderi%scala-k8s-scalacheck dev.hnaderi%scala-k8s-sttp dev.hnaderi%scala-k8s-http4s-jdk dev.hnaderi%scala-k8s-zio-json dev.hnaderi%scala-k8s-client dev.hnaderi%scala-k8s-spray-json dev.hnaderi%scala-k8s-json4s dev.hnaderi%scala-k8s-jawn dev.hnaderi%scala-k8s-circe dev.hnaderi%scala-k8s-http4s-ember dev.hnaderi%scala-k8s-http4s-netty dev.hnaderi%scala-k8s-http4s-blaze dev.hnaderi%scala-k8s-http4s", "config":{ "projects":{ "exclude":[ @@ -13917,16 +13515,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "gemini-hlsw/lucuma-core":{ - "project":"gemini-hlsw/lucuma-core", - "repoUrl":"https://github.com/gemini-hlsw/lucuma-core.git", - "revision":"v0.88.0", - "version":"0.88.0", - "targets":"edu.gemini%lucuma-core edu.gemini%lucuma-core-testkit", + "hnaderi/scala-readpass":{ + "project":"hnaderi/scala-readpass", + "repoUrl":"https://github.com/hnaderi/scala-readpass.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"dev.hnaderi%readpassword", "config":{ "projects":{ "exclude":[ @@ -13937,7 +13539,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -13958,12 +13560,12 @@ ] } }, - "gemini-hlsw/lucuma-graphql-routes":{ - "project":"gemini-hlsw/lucuma-graphql-routes", - "repoUrl":"https://github.com/gemini-hlsw/lucuma-graphql-routes.git", - "revision":"v0.8.0", - "version":"0.8.0", - "targets":"edu.gemini%lucuma-graphql-routes", + "hnaderi/yaml4s":{ + "project":"hnaderi/yaml4s", + "repoUrl":"https://github.com/hnaderi/yaml4s.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"dev.hnaderi%yaml4s-backend dev.hnaderi%yaml4s-zio-json dev.hnaderi%yaml4s-json4s dev.hnaderi%yaml4s-spray-json dev.hnaderi%yaml4s-snake dev.hnaderi%yaml4s-docs dev.hnaderi%yaml4s-core dev.hnaderi%yaml4s-circe dev.hnaderi%yaml4s-play-json", "config":{ "projects":{ "exclude":[ @@ -13974,7 +13576,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -13991,16 +13593,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "gemini-hlsw/lucuma-itc":{ - "project":"gemini-hlsw/lucuma-itc", - "repoUrl":"https://github.com/gemini-hlsw/lucuma-itc.git", - "revision":"v0.20.3", - "version":"0.20.3", - "targets":"edu.gemini%lucuma-itc-testkit edu.gemini%lucuma-itc-client edu.gemini%lucuma-itc edu.gemini%lucuma-itc-service", + "hsci-r/lucene-perfieldpostingsformatordtermvectorscodec":{ + "project":"hsci-r/lucene-perfieldpostingsformatordtermvectorscodec", + "repoUrl":"https://github.com/hsci-r/lucene-perfieldpostingsformatordtermvectorscodec.git", + "revision":"765becc92b139a0e648e3ed85a2bca0f33ec9ad0", + "version":"1.2.11", + "targets":"io.github.hsci-r%lucene-perfieldpostingsformatordtermvectorscodec", "config":{ "projects":{ "exclude":[ @@ -14011,7 +13617,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -14026,18 +13632,25 @@ ] }, - "tests":"full", + "tests":"disabled", "sourcePatches":[ ] } }, - "gemini-hlsw/lucuma-jts":{ - "project":"gemini-hlsw/lucuma-jts", - "repoUrl":"https://github.com/gemini-hlsw/lucuma-jts.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"edu.gemini%lucuma-jts edu.gemini%lucuma-jts-awt", + "hsci-r/octavo-indexer":{ + "project":"hsci-r/octavo-indexer", + "repoUrl":"https://github.com/hsci-r/octavo-indexer.git", + "revision":"78a33d9cfbda8ddce0fee91a9b2f57332b204505", + "version":"1.2.7", + "targets":"io.github.hsci-r%octavo-indexer" + }, + "hseeberger/slf4s":{ + "project":"hseeberger/slf4s", + "repoUrl":"https://github.com/hseeberger/slf4s.git", + "revision":"v0.3.0", + "version":"0.3.0", + "targets":"rocks.heikoseeberger%slf4s", "config":{ "projects":{ "exclude":[ @@ -14048,7 +13661,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -14069,12 +13682,12 @@ ] } }, - "gemini-hlsw/lucuma-odb":{ - "project":"gemini-hlsw/lucuma-odb", - "repoUrl":"https://github.com/gemini-hlsw/lucuma-odb.git", - "revision":"v0.7.0", - "version":"0.7.0", - "targets":"edu.gemini%lucuma-odb edu.gemini%lucuma-odb-schema", + "http4s/blaze":{ + "project":"http4s/blaze", + "repoUrl":"https://github.com/http4s/blaze.git", + "revision":"v0.23.15", + "version":"0.23.15", + "targets":"org.http4s%http4s-blaze-client org.http4s%http4s-blaze-server org.http4s%blaze-http org.http4s%blaze-core org.http4s%http4s-blaze-core", "config":{ "projects":{ "exclude":[ @@ -14100,18 +13713,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "gemini-hlsw/lucuma-refined":{ - "project":"gemini-hlsw/lucuma-refined", - "repoUrl":"https://github.com/gemini-hlsw/lucuma-refined.git", - "revision":"v0.1.2", - "version":"0.1.2", - "targets":"edu.gemini%lucuma-refined", + "http4s/hpack":{ + "project":"http4s/hpack", + "repoUrl":"https://github.com/http4s/hpack.git", + "revision":"531e1e25cb4e85459675be165ec8c88453401ab3", + "version":"1.0.1-56-fcf3848", + "targets":"com.armanbilge%hpack", "config":{ "projects":{ "exclude":[ @@ -14122,7 +13739,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -14143,12 +13760,12 @@ ] } }, - "gemini-hlsw/lucuma-schemas":{ - "project":"gemini-hlsw/lucuma-schemas", - "repoUrl":"https://github.com/gemini-hlsw/lucuma-schemas.git", - "revision":"v0.63.0", - "version":"0.63.0", - "targets":"edu.gemini%lucuma-schemas edu.gemini%lucuma-schemas-model edu.gemini%lucuma-schemas-testkit", + "http4s/http4s":{ + "project":"http4s/http4s", + "repoUrl":"https://github.com/http4s/http4s.git", + "revision":"v0.23.19", + "version":"0.23.19", + "targets":"org.http4s%http4s-client-testkit org.http4s%http4s-server org.http4s%http4s-dsl org.http4s%http4s-laws org.http4s%http4s-ember-client org.http4s%http4s-client org.http4s%http4s-jawn org.http4s%http4s-circe org.http4s%http4s-docs org.http4s%http4s-scalafix-internal org.http4s%http4s-ember-server org.http4s%http4s-ember-core org.http4s%http4s-core", "config":{ "projects":{ "exclude":[ @@ -14163,7 +13780,7 @@ }, "sbt":{ "commands":[ - + "set every unidoc/unidocAllSources := Nil" ], "options":[ @@ -14176,16 +13793,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Http4sPlugin.scala", + "pattern":"val scala_3 = \"3.2.2\"", + "replaceWith":"val scala_3 = \"\"" + } ] } }, - "gemini-hlsw/lucuma-sso":{ - "project":"gemini-hlsw/lucuma-sso", - "repoUrl":"https://github.com/gemini-hlsw/lucuma-sso.git", - "revision":"v0.6.8", - "version":"0.6.8", - "targets":"edu.gemini%lucuma-sso-backend-client edu.gemini%lucuma-sso-frontend-client", + "http4s/http4s-armeria":{ + "project":"http4s/http4s-armeria", + "repoUrl":"https://github.com/http4s/http4s-armeria.git", + "revision":"v1.0.0-M2", + "version":"1.0.0-M2", + "targets":"org.http4s%http4s-armeria-client org.http4s%http4s-armeria-server", "config":{ "projects":{ "exclude":[ @@ -14217,12 +13838,12 @@ ] } }, - "gemini-hlsw/refined-algebra":{ - "project":"gemini-hlsw/refined-algebra", - "repoUrl":"https://github.com/gemini-hlsw/refined-algebra.git", - "revision":"v0.1.1", - "version":"0.1.1", - "targets":"edu.gemini%refined-algebra", + "http4s/http4s-crypto":{ + "project":"http4s/http4s-crypto", + "repoUrl":"https://github.com/http4s/http4s-crypto.git", + "revision":"v0.2.4", + "version":"0.2.4", + "targets":"org.http4s%http4s-crypto", "config":{ "projects":{ "exclude":[ @@ -14254,12 +13875,12 @@ ] } }, - "getkyo/kyo":{ - "project":"getkyo/kyo", - "repoUrl":"https://github.com/getkyo/kyo.git", - "revision":"v0.6.6", - "version":"0.6.6", - "targets":"io.getkyo%kyo-core io.getkyo%kyo-chatgpt io.getkyo%kyo-bench io.getkyo%kyo-direct io.getkyo%kyo-core-opt io.getkyo%readme io.getkyo%kyo-stats-otel io.getkyo%kyo-sttp io.getkyo%kyo-tapir", + "http4s/http4s-fabric":{ + "project":"http4s/http4s-fabric", + "repoUrl":"https://github.com/http4s/http4s-fabric.git", + "revision":"v1.0.0-M32", + "version":"1.0.0-M32", + "targets":"org.http4s%http4s-fabric", "config":{ "projects":{ "exclude":[ @@ -14289,18 +13910,25 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.1\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val scala3 = \"3.1.1\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "getshaka-org/native-converter":{ - "project":"getshaka-org/native-converter", - "repoUrl":"https://github.com/getshaka-org/native-converter.git", - "revision":"v0.9.0", - "version":"0.9.0", - "targets":"org.getshaka%native-converter", + "http4s/http4s-finagle":{ + "project":"http4s/http4s-finagle", + "repoUrl":"https://github.com/http4s/http4s-finagle.git", + "revision":"v0.21.31-21.12.0", + "version":"0.21.31-21.12.0", + "targets":"org.http4s%http4s-finagle" + }, + "http4s/http4s-fs2-data":{ + "project":"http4s/http4s-fs2-data", + "repoUrl":"https://github.com/http4s/http4s-fs2-data.git", + "revision":"v1.0.0-M39", + "version":"1.0.0-M39", + "targets":"org.http4s%http4s-fs2-data-xml org.http4s%http4s-fs2-data-xml-scala", "config":{ "projects":{ "exclude":[ @@ -14332,12 +13960,12 @@ ] } }, - "ghik/anodi":{ - "project":"ghik/anodi", - "repoUrl":"https://github.com/ghik/anodi.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.github.ghik%anodi com.github.ghik%anodi-macros", + "http4s/http4s-jdk-http-client":{ + "project":"http4s/http4s-jdk-http-client", + "repoUrl":"https://github.com/http4s/http4s-jdk-http-client.git", + "revision":"v0.9.1", + "version":"0.9.1", + "targets":"org.http4s%http4s-jdk-http-client", "config":{ "projects":{ "exclude":[ @@ -14369,12 +13997,12 @@ ] } }, - "ghostdogpr/caliban":{ - "project":"ghostdogpr/caliban", - "repoUrl":"https://github.com/ghostdogpr/caliban.git", - "revision":"v2.4.1", - "version":"2.4.1", - "targets":"com.github.ghostdogpr%caliban-reporting com.github.ghostdogpr%caliban-monix com.github.ghostdogpr%caliban-tapir com.github.ghostdogpr%caliban-tools com.github.ghostdogpr%caliban-pekko-http com.github.ghostdogpr%caliban-macros com.github.ghostdogpr%caliban-tracing com.github.ghostdogpr%caliban com.github.ghostdogpr%caliban-cats com.github.ghostdogpr%caliban-federation com.github.ghostdogpr%caliban-client com.github.ghostdogpr%caliban-http4s com.github.ghostdogpr%caliban-zio-http", + "http4s/http4s-jetty":{ + "project":"http4s/http4s-jetty", + "repoUrl":"https://github.com/http4s/http4s-jetty.git", + "revision":"v0.25.0-M1", + "version":"0.25.0-M1", + "targets":"org.http4s%http4s-jetty-client org.http4s%http4s-jetty-server", "config":{ "projects":{ "exclude":[ @@ -14401,58 +14029,17 @@ ] }, "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "giabao/asm-flow":{ - "project":"giabao/asm-flow", - "repoUrl":"https://github.com/giabao/asm-flow.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.sandinh%asm-flow", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"disabled", "sourcePatches":[ ] } }, - "giabao/paho-akka":{ - "project":"giabao/paho-akka", - "repoUrl":"https://github.com/giabao/paho-akka.git", - "revision":"v1.6.1", - "version":"1.6.1", - "targets":"com.sandinh%paho-akka", + "http4s/http4s-netty":{ + "project":"http4s/http4s-netty", + "repoUrl":"https://github.com/http4s/http4s-netty.git", + "revision":"v0.5.7", + "version":"0.5.7", + "targets":"org.http4s%http4s-netty-client org.http4s%http4s-netty-core org.http4s%http4s-netty-server", "config":{ "projects":{ "exclude":[ @@ -14478,18 +14065,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "giiita/refuel":{ - "project":"giiita/refuel", - "repoUrl":"https://github.com/giiita/refuel.git", - "revision":"v2.1.0", - "version":"2.1.0", - "targets":"com.phylage%refuel-container-macro com.phylage%refuel-json-macro com.phylage%refuel-json com.phylage%refuel-container com.phylage%refuel-cipher com.phylage%refuel-util", + "http4s/http4s-prometheus-metrics":{ + "project":"http4s/http4s-prometheus-metrics", + "repoUrl":"https://github.com/http4s/http4s-prometheus-metrics.git", + "revision":"v1.0.0-M38", + "version":"1.0.0-M38", + "targets":"org.http4s%http4s-prometheus-metrics", "config":{ "projects":{ "exclude":[ @@ -14500,7 +14087,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -14515,18 +14102,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "gitbucket/blocking-slick":{ - "project":"gitbucket/blocking-slick", - "repoUrl":"https://github.com/gitbucket/blocking-slick.git", - "revision":"0.0.14", - "version":"0.0.14", - "targets":"com.github.takezoe%blocking-slick", + "http4s/http4s-scala-xml":{ + "project":"http4s/http4s-scala-xml", + "repoUrl":"https://github.com/http4s/http4s-scala-xml.git", + "revision":"v1.0.0-M38", + "version":"1.0.0-M38", + "targets":"org.http4s%http4s-scala-xml", "config":{ "projects":{ "exclude":[ @@ -14558,12 +14145,12 @@ ] } }, - "gmethvin/directory-watcher":{ - "project":"gmethvin/directory-watcher", - "repoUrl":"https://github.com/gmethvin/directory-watcher.git", - "revision":"v0.18.0", - "version":"0.18.0", - "targets":"io.methvin%directory-watcher-better-files", + "http4s/http4s-scalatags":{ + "project":"http4s/http4s-scalatags", + "repoUrl":"https://github.com/http4s/http4s-scalatags.git", + "revision":"v1.0.0-M38", + "version":"1.0.0-M38", + "targets":"org.http4s%http4s-scalatags", "config":{ "projects":{ "exclude":[ @@ -14589,18 +14176,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "gnieh/diffson":{ - "project":"gnieh/diffson", - "repoUrl":"https://github.com/gnieh/diffson.git", - "revision":"v4.4.0", - "version":"4.4.0", - "targets":"org.gnieh%diffson-circe org.gnieh%diffson-core org.gnieh%diffson-play-json org.gnieh%diffson-testkit", + "http4s/http4s-servlet":{ + "project":"http4s/http4s-servlet", + "repoUrl":"https://github.com/http4s/http4s-servlet.git", + "revision":"v1.0.0-M38", + "version":"1.0.0-M38", + "targets":"org.http4s%http4s-servlet", "config":{ "projects":{ "exclude":[ @@ -14611,7 +14198,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -14628,20 +14215,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "gnieh/fs2-data":{ - "project":"gnieh/fs2-data", - "repoUrl":"https://github.com/gnieh/fs2-data.git", - "revision":"v1.9.1", - "version":"1.9.1", - "targets":"org.gnieh%fs2-data-json-diffson org.gnieh%fs2-data-json-play org.gnieh%fs2-data-csv org.gnieh%fs2-data-json-interpolators org.gnieh%fs2-data-xml org.gnieh%fs2-data-docs org.gnieh%fs2-data-cbor-json org.gnieh%fs2-data-text org.gnieh%fs2-data-json org.gnieh%fs2-data-csv-generic org.gnieh%fs2-data-json-circe org.gnieh%fs2-data-xml-scala org.gnieh%fs2-data-cbor org.gnieh%fs2-data-finite-state", + "http4s/http4s-tomcat":{ + "project":"http4s/http4s-tomcat", + "repoUrl":"https://github.com/http4s/http4s-tomcat.git", + "revision":"v0.25.0-M1", + "version":"0.25.0-M1", + "targets":"org.http4s%http4s-tomcat-server", "config":{ "projects":{ "exclude":[ @@ -14652,7 +14235,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -14667,22 +14250,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "gnieh/geo-scala":{ - "project":"gnieh/geo-scala", - "repoUrl":"https://github.com/gnieh/geo-scala.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"org.gnieh%geo-scala-circe org.gnieh%geo-scala-core org.gnieh%geo-scala-jsoniter-scala org.gnieh%geo-scala-polyline", + "http4s/http4s-twirl":{ + "project":"http4s/http4s-twirl", + "repoUrl":"https://github.com/http4s/http4s-twirl.git", + "revision":"v1.0.0-M38", + "version":"1.0.0-M38", + "targets":"org.http4s%http4s-twirl", "config":{ "projects":{ "exclude":[ @@ -14693,7 +14272,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -14710,20 +14289,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "gnp/ident":{ - "project":"gnp/ident", - "repoUrl":"https://github.com/gnp/ident.git", - "revision":"v0.3.0", - "version":"0.3.0", - "targets":"com.gregorpurdy%ident-circe com.gregorpurdy%ident-zio-config com.gregorpurdy%ident-zio-json com.gregorpurdy%ident-zio-schema com.gregorpurdy%ident", + "hughsimpson/scalameter":{ + "project":"hughsimpson/scalameter", + "repoUrl":"https://github.com/hughsimpson/scalameter.git", + "revision":"v0.22.1", + "version":"0.22.1", + "targets":"io.github.hughsimpson%scalameter io.github.hughsimpson%scalameter-core", "config":{ "projects":{ "exclude":[ @@ -14734,7 +14309,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -14749,22 +14324,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3Version = \"3.3.0\"", - "replaceWith":"val Scala3Version = \"\"" - } + ] } }, - "gnp/zio-data-streams":{ - "project":"gnp/zio-data-streams", - "repoUrl":"https://github.com/gnp/zio-data-streams.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.gregorpurdy%zio-data-streams", + "i10416/cssminifier":{ + "project":"i10416/cssminifier", + "repoUrl":"https://github.com/i10416/cssminifier.git", + "revision":"v0.0.3", + "version":"0.0.3", + "targets":"dev.i10416%cssminifier", "config":{ "projects":{ "exclude":[ @@ -14775,7 +14346,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -14794,18 +14365,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", + "pattern":"val scala3 = \"3.1.2\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "gochaorg/json4s3":{ - "project":"gochaorg/json4s3", - "repoUrl":"https://github.com/gochaorg/json4s3.git", - "revision":"", - "version":"2.1.0", - "targets":"xyz.cofe%json4s3", + "i10416/munkres":{ + "project":"i10416/munkres", + "repoUrl":"https://github.com/i10416/munkres.git", + "revision":"v0.0.4", + "version":"0.0.4", + "targets":"dev.i10416%munkres", "config":{ "projects":{ "exclude":[ @@ -14835,18 +14406,25 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.0\"", + "pattern":"val scala3Version = \"3.1.2\"", "replaceWith":"val scala3Version = \"\"" } ] } }, - "gonzih/cats-nats":{ - "project":"gonzih/cats-nats", - "repoUrl":"https://github.com/gonzih/cats-nats.git", - "revision":"0.1.0", - "version":"0.1.0", - "targets":"io.github.gonzih%cats-nats", + "ichoran/kse3":{ + "project":"ichoran/kse3", + "repoUrl":"https://github.com/ichoran/kse3.git", + "revision":"59d8ffa365166bc3c815f185b6502df7a24867cc", + "version":"0.1.4", + "targets":"com.github.ichoran%kse3-eio com.github.ichoran%kse3-flow com.github.ichoran%kse3-maths com.github.ichoran%kse3-testing" + }, + "iheartradio/ficus":{ + "project":"iheartradio/ficus", + "repoUrl":"https://github.com/iheartradio/ficus.git", + "revision":"v1.5.2", + "version":"1.5.2", + "targets":"com.iheart%ficus", "config":{ "projects":{ "exclude":[ @@ -14857,7 +14435,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -14872,25 +14450,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"def Scala3 = \"3.1.1\"", + "replaceWith":"def Scala3 = \"\"" + } ] } }, - "greenfossil/commons-i18n":{ - "project":"greenfossil/commons-i18n", - "repoUrl":"https://github.com/greenfossil/commons-i18n.git", - "revision":"v1.0.2", - "version":"1.0.2", - "targets":"com.greenfossil%commons-i18n" - }, - "greenfossil/commons-json":{ - "project":"greenfossil/commons-json", - "repoUrl":"https://github.com/greenfossil/commons-json.git", - "revision":"v1.0.5", - "version":"1.0.5", - "targets":"com.greenfossil%commons-json", + "ij-plugins/ijp-color":{ + "project":"ij-plugins/ijp-color", + "repoUrl":"https://github.com/ij-plugins/ijp-color.git", + "revision":"v.0.12.2", + "version":"0.12.2", + "targets":"net.sf.ij-plugins%ijp-color net.sf.ij-plugins%ijp-color-ui", "config":{ "projects":{ "exclude":[ @@ -14918,16 +14493,20 @@ }, "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.3.0-RC3\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "greenfossil/data-mapping":{ - "project":"greenfossil/data-mapping", - "repoUrl":"https://github.com/greenfossil/data-mapping.git", - "revision":"v1.0.9", - "version":"1.0.9", - "targets":"com.greenfossil%data-mapping", + "ij-plugins/ijp-debayer2sx":{ + "project":"ij-plugins/ijp-debayer2sx", + "repoUrl":"https://github.com/ij-plugins/ijp-debayer2sx.git", + "revision":"v.1.3.4", + "version":"1.3.4", + "targets":"net.sf.ij-plugins%ijp-debayer2sx-core net.sf.ij-plugins%ijp-debayer2sx-plugins", "config":{ "projects":{ "exclude":[ @@ -14938,7 +14517,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -14955,20 +14534,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "greenfossil/thorium":{ - "project":"greenfossil/thorium", - "repoUrl":"https://github.com/greenfossil/thorium.git", - "revision":"v0.7.8", - "version":"0.7.8", - "targets":"com.greenfossil%thorium", + "ij-plugins/ijp-javacv":{ + "project":"ij-plugins/ijp-javacv", + "repoUrl":"https://github.com/ij-plugins/ijp-javacv.git", + "revision":"v.0.5.0", + "version":"0.5.0", + "targets":"net.sf.ij-plugins%ijp-javacv-core net.sf.ij-plugins%ijp-javacv-plugins", "config":{ "projects":{ "exclude":[ @@ -14979,7 +14554,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -14996,20 +14571,16 @@ }, "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "greenfossil/typesafe-config-ext":{ - "project":"greenfossil/typesafe-config-ext", - "repoUrl":"https://github.com/greenfossil/typesafe-config-ext.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"com.greenfossil%typesafe-config-ext", + "ij-plugins/ijp-scala-console":{ + "project":"ij-plugins/ijp-scala-console", + "repoUrl":"https://github.com/ij-plugins/ijp-scala-console.git", + "revision":"v.1.8.0", + "version":"1.8.0", + "targets":"net.sf.ij-plugins%scala-console net.sf.ij-plugins%scala-console-plugins", "config":{ "projects":{ "exclude":[ @@ -15020,7 +14591,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -15037,20 +14608,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "greenleafoss/green-leaf-mongo":{ - "project":"greenleafoss/green-leaf-mongo", - "repoUrl":"https://github.com/greenleafoss/green-leaf-mongo.git", - "revision":"0.1.13", - "version":"0.1.13", - "targets":"io.github.greenleafoss%green-leaf-mongo", + "ij-plugins/ijp-toolkit":{ + "project":"ij-plugins/ijp-toolkit", + "repoUrl":"https://github.com/ij-plugins/ijp-toolkit.git", + "revision":"v.2.3.1", + "version":"2.3.1", + "targets":"net.sf.ij-plugins%ijp-toolkit", "config":{ "projects":{ "exclude":[ @@ -15061,7 +14628,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -15082,12 +14649,12 @@ ] } }, - "grouzen/zio-apache-arrow":{ - "project":"grouzen/zio-apache-arrow", - "repoUrl":"https://github.com/grouzen/zio-apache-arrow.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"me.mnedokushev%zio-apache-arrow-core me.mnedokushev%zio-apache-arrow-datafusion", + "imaxmelnyk/openai-scala":{ + "project":"imaxmelnyk/openai-scala", + "repoUrl":"https://github.com/imaxmelnyk/openai-scala.git", + "revision":"v0.3.0", + "version":"0.3.0", + "targets":"dev.maxmelnyk%openai-scala", "config":{ "projects":{ "exclude":[ @@ -15116,26 +14683,26 @@ "tests":"full", "sourcePatches":[ { - "path":"project/BuildHelper.scala", - "pattern":"val Scala3 = \"3.3.0\"", - "replaceWith":"val Scala3 = \"\"" + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "guardian/etag-caching":{ - "project":"guardian/etag-caching", - "repoUrl":"https://github.com/guardian/etag-caching.git", - "revision":"v1.0.7", - "version":"1.0.7", - "targets":"com.gu.etag-caching%aws-s3-base com.gu.etag-caching%aws-s3-sdk-v2 com.gu.etag-caching%core" + "imrafaelmerino/json-scala-values":{ + "project":"imrafaelmerino/json-scala-values", + "repoUrl":"https://github.com/imrafaelmerino/json-scala-values.git", + "revision":"v5.2.1", + "version":"5.2.1", + "targets":"com.github.imrafaelmerino%json-scala-values" }, - "guardian/fastly-api-client":{ - "project":"guardian/fastly-api-client", - "repoUrl":"https://github.com/guardian/fastly-api-client.git", - "revision":"v0.5.0", - "version":"0.5.0", - "targets":"com.gu%fastly-api-client", + "indoorvivants/detective":{ + "project":"indoorvivants/detective", + "repoUrl":"https://github.com/indoorvivants/detective.git", + "revision":"v0.0.2", + "version":"0.0.2", + "targets":"com.indoorvivants.detective%platform", "config":{ "projects":{ "exclude":[ @@ -15146,7 +14713,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -15161,18 +14728,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.1.3\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "guardian/mobile-apps-api-models":{ - "project":"guardian/mobile-apps-api-models", - "repoUrl":"https://github.com/guardian/mobile-apps-api-models.git", - "revision":"v0.0.27", - "version":"0.0.27", - "targets":"com.gu%mobile-apps-api-models-v0", + "indoorvivants/mdoc-d2":{ + "project":"indoorvivants/mdoc-d2", + "repoUrl":"https://github.com/indoorvivants/mdoc-d2.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"com.indoorvivants%mdoc-d2", "config":{ "projects":{ "exclude":[ @@ -15183,7 +14754,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -15200,16 +14771,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "guardian/pa-football-client":{ - "project":"guardian/pa-football-client", - "repoUrl":"https://github.com/guardian/pa-football-client.git", - "revision":"v7.0.7", - "version":"7.0.7", - "targets":"com.gu%pa-client", + "indoorvivants/mdoc-effect":{ + "project":"indoorvivants/mdoc-effect", + "repoUrl":"https://github.com/indoorvivants/mdoc-effect.git", + "revision":"v0.0.5", + "version":"0.0.5", + "targets":"com.indoorvivants%mdoc-effect-ce2 com.indoorvivants%mdoc-effect-ce3", "config":{ "projects":{ "exclude":[ @@ -15220,7 +14795,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -15239,18 +14814,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala_3: String = \"3.2.2\"", - "replaceWith":"val scala_3: String = \"\"" + "pattern":"val Scala3 = \"3.1.3\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "guardian/play-brotli-filter":{ - "project":"guardian/play-brotli-filter", - "repoUrl":"https://github.com/guardian/play-brotli-filter.git", - "revision":"", - "version":"0.12-RC2", - "targets":"com.gu%play-brotli-filter", + "indoorvivants/opaque-newtypes":{ + "project":"indoorvivants/opaque-newtypes", + "repoUrl":"https://github.com/indoorvivants/opaque-newtypes.git", + "revision":"v0.0.2", + "version":"0.0.2", + "targets":"com.indoorvivants%opaque-newtypes", "config":{ "projects":{ "exclude":[ @@ -15261,7 +14836,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -15278,23 +14853,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "guidoschmidt17/zio-pgcopy":{ - "project":"guidoschmidt17/zio-pgcopy", - "repoUrl":"https://github.com/guidoschmidt17/zio-pgcopy.git", - "revision":"", - "version":"0.1.0-RC1", - "targets":"com.guidoschmidt17%zio-pgcopy" - }, - "guizmaii-opensource/zio-aes":{ - "project":"guizmaii-opensource/zio-aes", - "repoUrl":"https://github.com/guizmaii-opensource/zio-aes.git", - "revision":"v0.3.0", - "version":"0.3.0", - "targets":"com.guizmaii%zio-aes", + "indoorvivants/rendition":{ + "project":"indoorvivants/rendition", + "repoUrl":"https://github.com/indoorvivants/rendition.git", + "revision":"v0.0.3", + "version":"0.0.3", + "targets":"com.indoorvivants%rendition", "config":{ "projects":{ "exclude":[ @@ -15322,16 +14894,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.0\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "guizmaii-opensource/zio-uuid":{ - "project":"guizmaii-opensource/zio-uuid", - "repoUrl":"https://github.com/guizmaii-opensource/zio-uuid.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"com.guizmaii%zio-uuid", + "indoorvivants/sn-bindgen":{ + "project":"indoorvivants/sn-bindgen", + "repoUrl":"https://github.com/indoorvivants/sn-bindgen.git", + "revision":"v0.0.17", + "version":"0.0.17", + "targets":"com.indoorvivants%bindgen-interface", "config":{ "projects":{ "exclude":[ @@ -15357,18 +14933,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "guntiso/mojoz":{ - "project":"guntiso/mojoz", - "repoUrl":"https://github.com/guntiso/mojoz.git", - "revision":"v5.0.0", - "version":"5.0.0", - "targets":"org.mojoz%mojoz", + "indoorvivants/sn-demangler":{ + "project":"indoorvivants/sn-demangler", + "repoUrl":"https://github.com/indoorvivants/sn-demangler.git", + "revision":"v0.0.6", + "version":"0.0.6", + "targets":"com.indoorvivants%sn-demangler com.indoorvivants%sn-demangler-core", "config":{ "projects":{ "exclude":[ @@ -15379,7 +14959,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -15396,16 +14976,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.1.3\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "guymers/ceesvee":{ - "project":"guymers/ceesvee", - "repoUrl":"https://github.com/guymers/ceesvee.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"io.github.guymers%ceesvee-core io.github.guymers%ceesvee-fs2 io.github.guymers%ceesvee-zio", + "indoorvivants/sn-vcpkg":{ + "project":"indoorvivants/sn-vcpkg", + "repoUrl":"https://github.com/indoorvivants/sn-vcpkg.git", + "revision":"v0.0.12", + "version":"0.0.12", + "targets":"com.indoorvivants.vcpkg%sn-vcpkg com.indoorvivants.vcpkg%vcpkg-core", "config":{ "projects":{ "exclude":[ @@ -15416,12 +15000,11 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -15432,22 +15015,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.1\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "guymers/foobie":{ - "project":"guymers/foobie", - "repoUrl":"https://github.com/guymers/foobie.git", - "revision":"v0.14.7", - "version":"0.14.7", - "targets":"io.github.guymers%foobie-h2 io.github.guymers%zoobie io.github.guymers%foobie-weaver io.github.guymers%foobie-h2-circe io.github.guymers%foobie-postgres io.github.guymers%foobie-hikari io.github.guymers%foobie-postgres-circe io.github.guymers%foobie-mysql io.github.guymers%foobie-munit io.github.guymers%foobie-postgis io.github.guymers%foobie-scalatest io.github.guymers%foobie-free io.github.guymers%foobie-core", + "indoorvivants/subatomic":{ + "project":"indoorvivants/subatomic", + "repoUrl":"https://github.com/indoorvivants/subatomic.git", + "revision":"v0.0.7", + "version":"0.0.7", + "targets":"com.indoorvivants%subatomic-search-indexer com.indoorvivants%subatomic-search-shared com.indoorvivants%subatomic-search-cli com.indoorvivants%subatomic-core com.indoorvivants%subatomic-search-retrieve com.indoorvivants%subatomic-builders com.indoorvivants%subatomic-search-frontend-pack", "config":{ "projects":{ "exclude":[ @@ -15458,12 +15041,12 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + "set every Test/unmanagedSources/excludeFilter := HiddenFileFilter || \"MdocJSTests.scala\"", + "disableFatalWarnings" ], "options":[ @@ -15474,22 +15057,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "gvolpe/trading":{ - "project":"gvolpe/trading", - "repoUrl":"https://github.com/gvolpe/trading.git", - "revision":"", - "version":"HEAD", - "targets":"*%*", + "indoorvivants/weaver-playwright":{ + "project":"indoorvivants/weaver-playwright", + "repoUrl":"https://github.com/indoorvivants/weaver-playwright.git", + "revision":"v0.0.5", + "version":"0.0.5", + "targets":"com.indoorvivants.playwright%core com.indoorvivants.playwright%weaver", "config":{ "projects":{ "exclude":[ @@ -15500,11 +15079,11 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ - "excludeLibraryDependency com.github.ghik:zerowaste_{scalaVersion}" + ], "options":[ @@ -15515,18 +15094,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.0\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "gzoller/deploysample":{ - "project":"gzoller/deploysample", - "repoUrl":"https://github.com/gzoller/deploysample.git", - "revision":"0.1.5", - "version":"0.1.5", - "targets":"co.blocke%ds_core co.blocke%ds_lib", + "indoorvivants/yank":{ + "project":"indoorvivants/yank", + "repoUrl":"https://github.com/indoorvivants/yank.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"com.indoorvivants%yank", "config":{ "projects":{ "exclude":[ @@ -15537,7 +15120,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -15554,16 +15137,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "gzoller/listzipper":{ - "project":"gzoller/listzipper", - "repoUrl":"https://github.com/gzoller/listzipper.git", - "revision":"v0.1.6", - "version":"0.1.6", - "targets":"co.blocke%listzipper", + "ingarabr/http4s-cloud-functions":{ + "project":"ingarabr/http4s-cloud-functions", + "repoUrl":"https://github.com/ingarabr/http4s-cloud-functions.git", + "revision":"v0.3.0", + "version":"0.3.0", + "targets":"com.github.ingarabr%http4s-cloud-functions", "config":{ "projects":{ "exclude":[ @@ -15591,16 +15178,27 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Versions.scala", + "pattern":"val scala3 = \"3.0.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "gzoller/scalajack":{ - "project":"gzoller/scalajack", - "repoUrl":"https://github.com/gzoller/scalajack.git", - "revision":"7.0.3", - "version":"7.0.3", - "targets":"co.blocke%scalajack co.blocke%scalajack_dynamo co.blocke%scalajack_mongo", + "inkytonik/kiama":{ + "project":"inkytonik/kiama", + "repoUrl":"https://github.com/inkytonik/kiama.git", + "revision":"v2.5.0", + "version":"2.5.0", + "targets":"org.bitbucket.inkytonik.kiama%kiama org.bitbucket.inkytonik.kiama%kiama-extras" + }, + "inoio/solrs":{ + "project":"inoio/solrs", + "repoUrl":"https://github.com/inoio/solrs.git", + "revision":"967791496d41d2a2fb22c8c264806bc5e47de070", + "version":"2.7.0", + "targets":"io.ino%solrs", "config":{ "projects":{ "exclude":[ @@ -15611,11 +15209,11 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ - "set scalajack/Test/unmanagedSources/excludeFilter ~= { _ || \"AnyPrim.scala\" || \"Arrays.scala\" || \"AnyColl.scala\" }" + ], "options":[ @@ -15628,33 +15226,27 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "h8io/borscht":{ - "project":"h8io/borscht", - "repoUrl":"https://github.com/h8io/borscht.git", - "revision":"v1.2.11", - "version":"1.2.11", - "targets":"io.h8.borscht%borscht-template-st4 io.h8.borscht%borscht-jackson-toml io.h8.borscht%borscht-jackson io.h8.borscht%borscht-core io.h8.borscht%borscht-classic io.h8.borscht%borscht-jackson-yaml io.h8.borscht%borscht-template-core io.h8.borscht%borscht-template-apache-commons-text io.h8.borscht%borscht-typesafe", + "irevive/union-derivation":{ + "project":"irevive/union-derivation", + "repoUrl":"https://github.com/irevive/union-derivation.git", + "revision":"v0.0.4", + "version":"0.0.4", + "targets":"io.github.irevive%union-derivation-core", "config":{ "projects":{ "exclude":[ ], "overrides":{ - "template-apache-commons-text":{ - "tests":"compile-only" - } + } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -15669,18 +15261,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "hagay3/skuber":{ - "project":"hagay3/skuber", - "repoUrl":"https://github.com/hagay3/skuber.git", + "ironcorelabs/cats-scalatest":{ + "project":"ironcorelabs/cats-scalatest", + "repoUrl":"https://github.com/ironcorelabs/cats-scalatest.git", "revision":"v4.0.0", "version":"4.0.0", - "targets":"io.github.hagay3%skuber io.github.hagay3%skuber-examples", + "targets":"com.ironcorelabs%cats-scalatest", "config":{ "projects":{ "exclude":[ @@ -15691,7 +15283,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -15708,20 +15300,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.0\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "haifengl/smile":{ - "project":"haifengl/smile", - "repoUrl":"https://github.com/haifengl/smile.git", - "revision":"v3.0.2", - "version":"3.0.2", - "targets":"com.github.haifengl%smile-scala com.github.haifengl%smile-json", + "itv/quartz4s":{ + "project":"itv/quartz4s", + "repoUrl":"https://github.com/itv/quartz4s.git", + "revision":"v1.0.4", + "version":"1.0.4", + "targets":"com.itv%quartz4s-core", "config":{ "projects":{ "exclude":[ @@ -15732,7 +15320,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -15753,12 +15341,26 @@ ] } }, - "hamnis/dataclass-scalafix":{ - "project":"hamnis/dataclass-scalafix", - "repoUrl":"https://github.com/hamnis/dataclass-scalafix.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"net.hamnaberg%dataclass-annotation", + "itv/scala-pact":{ + "project":"itv/scala-pact", + "repoUrl":"https://github.com/itv/scala-pact.git", + "revision":"v4.4.0", + "version":"4.4.0", + "targets":"com.itv%scalapact-http4s-0-23 com.itv%scalapact-scalatest com.itv%scalapact-core com.itv%scalapact-circe-0-14 com.itv%scalapact-scalatest-suite com.itv%scalapact-shared" + }, + "ivoah/vial":{ + "project":"ivoah/vial", + "repoUrl":"https://github.com/ivoah/vial.git", + "revision":"bcfb402f9e83cc23aab2f84dda5773f746ce2a37", + "version":"0.3.3", + "targets":"net.ivoah%vial" + }, + "j-mie6/parsley":{ + "project":"j-mie6/parsley", + "repoUrl":"https://github.com/j-mie6/parsley.git", + "revision":"v4.2.11-M1", + "version":"4.2.11-M1", + "targets":"com.github.j-mie6%parsley", "config":{ "projects":{ "exclude":[ @@ -15769,7 +15371,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -15788,18 +15390,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.1.3\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val Scala3 = \"3.2.1\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "hamnis/jsonschema":{ - "project":"hamnis/jsonschema", - "repoUrl":"https://github.com/hamnis/jsonschema.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"net.hamnaberg%jsonschema-core", + "j-mie6/parsley-cats":{ + "project":"j-mie6/parsley-cats", + "repoUrl":"https://github.com/j-mie6/parsley-cats.git", + "revision":"v1.2.0", + "version":"1.2.0", + "targets":"com.github.j-mie6%parsley-cats", "config":{ "projects":{ "exclude":[ @@ -15810,7 +15412,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -15827,23 +15429,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "hamnis/jwk":{ - "project":"hamnis/jwk", - "repoUrl":"https://github.com/hamnis/jwk.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"net.hamnaberg.jwk%jwk-core net.hamnaberg.jwk%jwk-http4s net.hamnaberg.jwk%jwk-sttp3" - }, - "hedgehogqa/scala-hedgehog":{ - "project":"hedgehogqa/scala-hedgehog", - "repoUrl":"https://github.com/hedgehogqa/scala-hedgehog.git", - "revision":"v0.10.1", - "version":"0.10.1", - "targets":"qa.hedgehog%hedgehog-minitest qa.hedgehog%hedgehog-core qa.hedgehog%hedgehog-munit qa.hedgehog%hedgehog-sbt qa.hedgehog%hedgehog-runner", + "j5ik2o/akka-persistence-s3":{ + "project":"j5ik2o/akka-persistence-s3", + "repoUrl":"https://github.com/j5ik2o/akka-persistence-s3.git", + "revision":"v1.2.177", + "version":"1.2.177", + "targets":"com.github.j5ik2o%akka-persistence-s3-base com.github.j5ik2o%akka-persistence-s3-journal com.github.j5ik2o%akka-persistence-s3-snapshot", "config":{ "projects":{ "exclude":[ @@ -15854,11 +15453,11 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ - "disableFatalWarnings" + ], "options":[ @@ -15869,18 +15468,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - - ] - } - }, - "herminiogg/dmaog":{ - "project":"herminiogg/dmaog", - "repoUrl":"https://github.com/herminiogg/dmaog.git", - "revision":"v0.1.5", - "version":"0.1.5", - "targets":"com.herminiogarcia%dmaog", + { + "path":"project/Dependencies.scala", + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" + } + ] + } + }, + "j5ik2o/base64scala":{ + "project":"j5ik2o/base64scala", + "repoUrl":"https://github.com/j5ik2o/base64scala.git", + "revision":"v1.0.55", + "version":"1.0.55", + "targets":"com.github.j5ik2o%base64scala com.github.j5ik2o%base64scala-example com.github.j5ik2o%base64scala-root", "config":{ "projects":{ "exclude":[ @@ -15891,7 +15494,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -15906,18 +15509,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "herminiogg/label2thesaurus":{ - "project":"herminiogg/label2thesaurus", - "repoUrl":"https://github.com/herminiogg/label2thesaurus.git", - "revision":"v0.1.1", - "version":"0.1.1", - "targets":"com.herminiogarcia%label2thesaurus", + "j5ik2o/docker-controller-scala":{ + "project":"j5ik2o/docker-controller-scala", + "repoUrl":"https://github.com/j5ik2o/docker-controller-scala.git", + "revision":"v1.10.89", + "version":"1.10.89", + "targets":"com.github.j5ik2o%docker-controller-scala-dynamodb-local com.github.j5ik2o%docker-controller-scala-zookeeper com.github.j5ik2o%docker-controller-scala-elasticsearch com.github.j5ik2o%docker-controller-scala-kafka com.github.j5ik2o%docker-controller-scala-scalatest com.github.j5ik2o%docker-controller-scala-localstack com.github.j5ik2o%docker-controller-scala-elasticmq com.github.j5ik2o%docker-controller-scala-core com.github.j5ik2o%docker-controller-scala-memcached com.github.j5ik2o%docker-controller-scala-minio com.github.j5ik2o%docker-controller-scala-postgresql com.github.j5ik2o%docker-controller-scala-flyway com.github.j5ik2o%docker-controller-scala-redis com.github.j5ik2o%docker-controller-scala-mysql com.github.j5ik2o%docker-controller-scala-root", "config":{ "projects":{ "exclude":[ @@ -15928,7 +15535,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -15945,16 +15552,20 @@ }, "tests":"compile-only", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val scala3Version = \"3.1.3\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "herminiogg/shexml":{ - "project":"herminiogg/shexml", - "repoUrl":"https://github.com/herminiogg/shexml.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"com.herminiogarcia%shexml", + "j5ik2o/intervals-scala":{ + "project":"j5ik2o/intervals-scala", + "repoUrl":"https://github.com/j5ik2o/intervals-scala.git", + "revision":"v1.0.59", + "version":"1.0.59", + "targets":"com.github.j5ik2o%intervals-scala", "config":{ "projects":{ "exclude":[ @@ -15980,18 +15591,36 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "higherkindness/droste":{ - "project":"higherkindness/droste", - "repoUrl":"https://github.com/higherkindness/droste.git", - "revision":"v0.9.0", - "version":"0.9.0", - "targets":"io.higherkindness%droste io.higherkindness%droste-core io.higherkindness%droste-scalacheck io.higherkindness%droste-reftree io.higherkindness%droste-macros io.higherkindness%droste-meta io.higherkindness%droste-laws", + "jandom-devel/scalafix":{ + "project":"jandom-devel/scalafix", + "repoUrl":"https://github.com/jandom-devel/scalafix.git", + "revision":"v0.10.0", + "version":"0.10.0", + "targets":"it.unich.scalafix%scalafix" + }, + "janlisse/zio-jwt-validator":{ + "project":"janlisse/zio-jwt-validator", + "repoUrl":"https://github.com/janlisse/zio-jwt-validator.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.github.janlisse%zio-jwt-validator" + }, + "janstenpickle/hotswap-ref":{ + "project":"janstenpickle/hotswap-ref", + "repoUrl":"https://github.com/janstenpickle/hotswap-ref.git", + "revision":"v0.2.2", + "version":"0.2.2", + "targets":"io.janstenpickle%hotswap-ref", "config":{ "projects":{ "exclude":[ @@ -16002,11 +15631,11 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ - "disableFatalWarnings" + ], "options":[ @@ -16019,16 +15648,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.1.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "higherkindness/mu-scala":{ - "project":"higherkindness/mu-scala", - "repoUrl":"https://github.com/higherkindness/mu-scala.git", - "revision":"v0.31.0", - "version":"0.31.0", - "targets":"io.higherkindness%mu-rpc-client-netty io.higherkindness%mu-rpc-server io.higherkindness%mu-rpc-dropwizard io.higherkindness%mu-rpc-prometheus io.higherkindness%mu-rpc-health-check io.higherkindness%mu-rpc-client-okhttp io.higherkindness%mu-rpc-client-cache io.higherkindness%mu-rpc-testing io.higherkindness%mu-rpc-service io.higherkindness%mu-rpc-netty-ssl io.higherkindness%mu-rpc-fs2", + "jap-company/fields":{ + "project":"jap-company/fields", + "repoUrl":"https://github.com/jap-company/fields.git", + "revision":"v0.4.16", + "version":"0.4.16", + "targets":"company.jap%fields-core company.jap%fields-cats company.jap%fields-zio", "config":{ "projects":{ "exclude":[ @@ -16039,7 +15672,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -16058,25 +15691,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val Scala3 = \"3.1.2\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "hinadt/hina-cloud-android-plugin":{ - "project":"hinadt/hina-cloud-android-plugin", - "repoUrl":"https://github.com/hinadt/hina-cloud-android-plugin.git", - "revision":"", - "version":"2.0.0", - "targets":"com.hinadt.hicloud.android%sa-agp-v7" - }, - "hireproof/screening":{ - "project":"hireproof/screening", - "repoUrl":"https://github.com/hireproof/screening.git", - "revision":"0.0.17", - "version":"0.0.17", - "targets":"io.hireproof%screening io.hireproof%screening-core", + "japgolly/clear-config":{ + "project":"japgolly/clear-config", + "repoUrl":"https://github.com/japgolly/clear-config.git", + "revision":"v3.1.0", + "version":"3.1.0", + "targets":"com.github.japgolly.clearconfig%core", "config":{ "projects":{ "exclude":[ @@ -16087,7 +15713,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -16102,22 +15728,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.2\"", - "replaceWith":"val Scala3 = \"\"" + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.1.3\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "hjfruit/scalikejdbc-helper":{ - "project":"hjfruit/scalikejdbc-helper", - "repoUrl":"https://github.com/hjfruit/scalikejdbc-helper.git", - "revision":"v0.3.1", - "version":"0.3.1", - "targets":"io.github.jxnu-liguobin%scalikejdbc-helper-core io.github.jxnu-liguobin%scalikejdbc-helper-postgres", + "japgolly/microlibs-scala":{ + "project":"japgolly/microlibs-scala", + "repoUrl":"https://github.com/japgolly/microlibs-scala.git", + "revision":"v4.2.1", + "version":"4.2.1", + "targets":"com.github.japgolly.microlibs%utils com.github.japgolly.microlibs%disjunction com.github.japgolly.microlibs%nonempty com.github.japgolly.microlibs%test-util com.github.japgolly.microlibs%adt-macros com.github.japgolly.microlibs%name-fn com.github.japgolly.microlibs%multimap com.github.japgolly.microlibs%stdlib-ext com.github.japgolly.microlibs%types com.github.japgolly.microlibs%cats-ext com.github.japgolly.microlibs%compile-time com.github.japgolly.microlibs%recursion", "config":{ "projects":{ "exclude":[ @@ -16128,7 +15754,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -16146,19 +15772,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0\"", - "replaceWith":"val scala3Version = \"\"" + "path":"project/Dependencies.scala", + "pattern":"def scala3 = \"3.1.3\"", + "replaceWith":"def scala3 = \"\"" } ] } }, - "hjfruit/zio-pulsar":{ - "project":"hjfruit/zio-pulsar", - "repoUrl":"https://github.com/hjfruit/zio-pulsar.git", - "revision":"v0.3.5", - "version":"0.3.5", - "targets":"io.github.jxnu-liguobin%zio-pulsar", + "japgolly/nyaya":{ + "project":"japgolly/nyaya", + "repoUrl":"https://github.com/japgolly/nyaya.git", + "revision":"v1.1.0", + "version":"1.1.0", + "targets":"com.github.japgolly.nyaya%nyaya-test com.github.japgolly.nyaya%nyaya-util com.github.japgolly.nyaya%nyaya-prop com.github.japgolly.nyaya%nyaya-gen com.github.japgolly.nyaya%nyaya-gen-circe", "config":{ "projects":{ "exclude":[ @@ -16169,7 +15795,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -16187,37 +15813,30 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.1.3\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "hmemcpy/zio-clippy":{ - "project":"hmemcpy/zio-clippy", - "repoUrl":"https://github.com/hmemcpy/zio-clippy.git", - "revision":"v0.0.5", - "version":"0.0.5", - "targets":"com.hmemcpy%zio-clippy" - }, - "hnaderi/edomata":{ - "project":"hnaderi/edomata", - "repoUrl":"https://github.com/hnaderi/edomata.git", - "revision":"v0.11.3", - "version":"0.11.3", - "targets":"dev.hnaderi%edomata-munit dev.hnaderi%edomata-skunk-jsoniter dev.hnaderi%edomata-skunk-upickle dev.hnaderi%edomata-skunk dev.hnaderi%edomata-doobie dev.hnaderi%edomata-core dev.hnaderi%edomata-doobie-circe dev.hnaderi%edomata-postgres dev.hnaderi%edomata-docs dev.hnaderi%edomata-doobie-jsoniter dev.hnaderi%edomata-skunk-circe dev.hnaderi%edomata-backend dev.hnaderi%edomata-doobie-upickle", + "japgolly/scala-graal":{ + "project":"japgolly/scala-graal", + "repoUrl":"https://github.com/japgolly/scala-graal.git", + "revision":"v2.1.0", + "version":"2.1.0", + "targets":"com.github.japgolly.scala-graal%core com.github.japgolly.scala-graal%core-js com.github.japgolly.scala-graal%ext-boopickle com.github.japgolly.scala-graal%ext-prometheus", "config":{ "projects":{ "exclude":[ - "edomata-docs" + ], "overrides":{ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -16235,19 +15854,19 @@ "tests":"compile-only", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.1.3\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "hnaderi/lepus":{ - "project":"hnaderi/lepus", - "repoUrl":"https://github.com/hnaderi/lepus.git", - "revision":"v0.4.1", - "version":"0.4.1", - "targets":"dev.hnaderi%lepus-circe dev.hnaderi%lepus-client dev.hnaderi%lepus-protocol-testkit dev.hnaderi%lepus-docs dev.hnaderi%lepus-wire dev.hnaderi%lepus-std dev.hnaderi%lepus-protocol", + "japgolly/scalacss":{ + "project":"japgolly/scalacss", + "repoUrl":"https://github.com/japgolly/scalacss.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"com.github.japgolly.scalacss%core", "config":{ "projects":{ "exclude":[ @@ -16258,7 +15877,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -16276,30 +15895,35 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.0.1\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "hnaderi/named-codec":{ - "project":"hnaderi/named-codec", - "repoUrl":"https://github.com/hnaderi/named-codec.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"dev.hnaderi%named-codec dev.hnaderi%named-codec-circe dev.hnaderi%named-codec-docs", + "japgolly/test-state":{ + "project":"japgolly/test-state", + "repoUrl":"https://github.com/japgolly/test-state.git", + "revision":"v3.1.0", + "version":"3.1.0", + "targets":"com.github.japgolly.test-state%dom-zipper com.github.japgolly.test-state%util com.github.japgolly.test-state%ext-selenium com.github.japgolly.test-state%dom-zipper-jsoup com.github.japgolly.test-state%util-selenium com.github.japgolly.test-state%ext-nyaya com.github.japgolly.test-state%dom-zipper-selenium com.github.japgolly.test-state%ext-cats com.github.japgolly.test-state%core", "config":{ "projects":{ "exclude":[ - "named-codec-docs" + ], "overrides":{ - + "ext-selenium":{ + "tests":"compile-only" + }, + "dom-zipper-selenium":{ + "tests":"compile-only" + } } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -16317,19 +15941,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", - "replaceWith":"val Scala3 = \"\"" + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.1.3\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "hnaderi/portainer-client":{ - "project":"hnaderi/portainer-client", - "repoUrl":"https://github.com/hnaderi/portainer-client.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"dev.hnaderi%portainer-client", + "japgolly/univeq":{ + "project":"japgolly/univeq", + "repoUrl":"https://github.com/japgolly/univeq.git", + "revision":"v2.0.1", + "version":"2.0.1", + "targets":"com.github.japgolly.univeq%univeq-cats com.github.japgolly.univeq%univeq", "config":{ "projects":{ "exclude":[ @@ -16340,7 +15964,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -16358,19 +15982,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.0\"", - "replaceWith":"val Scala3 = \"\"" + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.0.1\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "hnaderi/scala-k8s":{ - "project":"hnaderi/scala-k8s", - "repoUrl":"https://github.com/hnaderi/scala-k8s.git", - "revision":"v0.15.1", - "version":"0.15.1", - "targets":"dev.hnaderi%scala-k8s-manifests dev.hnaderi%scala-k8s-java-ssl dev.hnaderi%scala-k8s-play-json dev.hnaderi%scala-k8s-objects dev.hnaderi%scala-k8s-docs dev.hnaderi%scala-k8s-zio dev.hnaderi%scala-k8s-scalacheck dev.hnaderi%scala-k8s-sttp dev.hnaderi%scala-k8s-http4s-jdk dev.hnaderi%scala-k8s-zio-json dev.hnaderi%scala-k8s-client dev.hnaderi%scala-k8s-spray-json dev.hnaderi%scala-k8s-json4s dev.hnaderi%scala-k8s-jawn dev.hnaderi%scala-k8s-circe dev.hnaderi%scala-k8s-http4s-ember dev.hnaderi%scala-k8s-http4s-netty dev.hnaderi%scala-k8s-http4s-blaze dev.hnaderi%scala-k8s-http4s", + "japgolly/webapp-util":{ + "project":"japgolly/webapp-util", + "repoUrl":"https://github.com/japgolly/webapp-util.git", + "revision":"v2.0.0-RC12", + "version":"2.0.0-RC12", + "targets":"com.github.japgolly.webapp-util%test com.github.japgolly.webapp-util%core-circe com.github.japgolly.webapp-util%test-boopickle com.github.japgolly.webapp-util%test-cats-effect com.github.japgolly.webapp-util%db-postgres com.github.japgolly.webapp-util%core com.github.japgolly.webapp-util%test-circe com.github.japgolly.webapp-util%core-okhttp4 com.github.japgolly.webapp-util%core-boopickle com.github.japgolly.webapp-util%core-cats-effect com.github.japgolly.webapp-util%test-db-postgres", "config":{ "projects":{ "exclude":[ @@ -16381,7 +16005,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -16399,19 +16023,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" + "path":"project/Dependencies.scala", + "pattern":"def scala3 = \"3.1.3\"", + "replaceWith":"def scala3 = \"\"" } ] } }, - "hnaderi/scala-readpass":{ - "project":"hnaderi/scala-readpass", - "repoUrl":"https://github.com/hnaderi/scala-readpass.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"dev.hnaderi%readpassword", + "jatcwang/difflicious":{ + "project":"jatcwang/difflicious", + "repoUrl":"https://github.com/jatcwang/difflicious.git", + "revision":"v0.4.1", + "version":"0.4.1", + "targets":"com.github.jatcwang%difflicious-munit com.github.jatcwang%difflicious-scalatest com.github.jatcwang%difflicious-core com.github.jatcwang%difflicious-cats", "config":{ "projects":{ "exclude":[ @@ -16422,7 +16046,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -16439,16 +16063,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "hnaderi/yaml4s":{ - "project":"hnaderi/yaml4s", - "repoUrl":"https://github.com/hnaderi/yaml4s.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"dev.hnaderi%yaml4s-backend dev.hnaderi%yaml4s-zio-json dev.hnaderi%yaml4s-json4s dev.hnaderi%yaml4s-spray-json dev.hnaderi%yaml4s-snake dev.hnaderi%yaml4s-docs dev.hnaderi%yaml4s-core dev.hnaderi%yaml4s-circe dev.hnaderi%yaml4s-play-json", + "jbwheatley/pact4s":{ + "project":"jbwheatley/pact4s", + "repoUrl":"https://github.com/jbwheatley/pact4s.git", + "revision":"v0.9.0", + "version":"0.9.0", + "targets":"io.github.jbwheatley%pact4s-spray-json io.github.jbwheatley%pact4s-scalatest io.github.jbwheatley%pact4s-circe io.github.jbwheatley%pact4s-play-json io.github.jbwheatley%pact4s-munit-cats-effect io.github.jbwheatley%pact4s-models io.github.jbwheatley%pact4s-core io.github.jbwheatley%pact4s-weaver", "config":{ "projects":{ "exclude":[ @@ -16459,11 +16087,11 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ - + "set shared/scalacOptions --= Seq(\"-Wconf:cat=deprecation:i\", \"-Xfatal-warnings\") " ], "options":[ @@ -16478,18 +16106,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.1\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "hsci-r/lucene-perfieldpostingsformatordtermvectorscodec":{ - "project":"hsci-r/lucene-perfieldpostingsformatordtermvectorscodec", - "repoUrl":"https://github.com/hsci-r/lucene-perfieldpostingsformatordtermvectorscodec.git", - "revision":"", - "version":"1.2.11", - "targets":"io.github.hsci-r%lucene-perfieldpostingsformatordtermvectorscodec", + "jcouyang/dhall-generic":{ + "project":"jcouyang/dhall-generic", + "repoUrl":"https://github.com/jcouyang/dhall-generic.git", + "revision":"v0.3.90", + "version":"0.3.90", + "targets":"us.oyanglul%dhall-generic", "config":{ "projects":{ "exclude":[ @@ -16515,25 +16143,22 @@ ] }, - "tests":"disabled", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.3\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "hsci-r/octavo-indexer":{ - "project":"hsci-r/octavo-indexer", - "repoUrl":"https://github.com/hsci-r/octavo-indexer.git", - "revision":"", - "version":"1.2.7", - "targets":"io.github.hsci-r%octavo-indexer" - }, - "hseeberger/slf4s":{ - "project":"hseeberger/slf4s", - "repoUrl":"https://github.com/hseeberger/slf4s.git", - "revision":"v0.3.0", - "version":"0.3.0", - "targets":"rocks.heikoseeberger%slf4s", + "jcouyang/jujiu":{ + "project":"jcouyang/jujiu", + "repoUrl":"https://github.com/jcouyang/jujiu.git", + "revision":"v0.27.0", + "version":"0.27.0", + "targets":"us.oyanglul%jujiu", "config":{ "projects":{ "exclude":[ @@ -16544,7 +16169,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -16561,16 +16186,27 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.0.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "hshn/slick-codegen-patch":{ - "project":"hshn/slick-codegen-patch", - "repoUrl":"https://github.com/hshn/slick-codegen-patch.git", - "revision":"v0.2.0-M1", - "version":"0.2.0-M1", - "targets":"dev.hshn%slick-codegen-patch", + "jcouyang/meow":{ + "project":"jcouyang/meow", + "repoUrl":"https://github.com/jcouyang/meow.git", + "revision":"v0.4.14", + "version":"0.4.14", + "targets":"us.oyanglul%meow" + }, + "jczuchnowski/zio-pulsar":{ + "project":"jczuchnowski/zio-pulsar", + "repoUrl":"https://github.com/jczuchnowski/zio-pulsar.git", + "revision":"v0.2", + "version":"0.2", + "targets":"com.github.jczuchnowski%zio-pulsar", "config":{ "projects":{ "exclude":[ @@ -16581,7 +16217,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -16598,20 +16234,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "http4s/blaze":{ - "project":"http4s/blaze", - "repoUrl":"https://github.com/http4s/blaze.git", - "revision":"v1.0.0-M39", - "version":"1.0.0-M39", - "targets":"org.http4s%http4s-blaze-client org.http4s%http4s-blaze-server org.http4s%blaze-http org.http4s%blaze-core org.http4s%http4s-blaze-core", + "jd557/minart":{ + "project":"jd557/minart", + "repoUrl":"https://github.com/jd557/minart.git", + "revision":"v0.5.2", + "version":"0.5.2", + "targets":"eu.joaocosta%minart-backend eu.joaocosta%minart-image eu.joaocosta%minart-sound eu.joaocosta%minart-core eu.joaocosta%minart eu.joaocosta%minart-pure", "config":{ "projects":{ "exclude":[ @@ -16622,7 +16254,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -16637,22 +16269,39 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "http4s/hpack":{ - "project":"http4s/hpack", - "repoUrl":"https://github.com/http4s/hpack.git", - "revision":"", - "version":"1.0.1-56-fcf3848", - "targets":"com.armanbilge%hpack", + "jelly-rdf/jelly-jvm":{ + "project":"jelly-rdf/jelly-jvm", + "repoUrl":"https://github.com/jelly-rdf/jelly-jvm.git", + "revision":"v0.0.5", + "version":"0.0.5", + "targets":"eu.ostrzyciel.jelly%jelly-core eu.ostrzyciel.jelly%jelly-jvm eu.ostrzyciel.jelly%jelly-grpc eu.ostrzyciel.jelly%jelly-stream eu.ostrzyciel.jelly%jelly-jena eu.ostrzyciel.jelly%jelly-rdf4j" + }, + "jkobejs/cron":{ + "project":"jkobejs/cron", + "repoUrl":"https://github.com/jkobejs/cron.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"io.github.jkobejs%zio-cron io.github.jkobejs%zio1-cron" + }, + "jkugiya/aws-v4-signer-scala":{ + "project":"jkugiya/aws-v4-signer-scala", + "repoUrl":"https://github.com/jkugiya/aws-v4-signer-scala.git", + "revision":"0.14", + "version":"0.14", + "targets":"com.github.jkugiya%aws-v4-signer-scala" + }, + "jkugiya/ulid-scala":{ + "project":"jkugiya/ulid-scala", + "repoUrl":"https://github.com/jkugiya/ulid-scala.git", + "revision":"v1.0.3", + "version":"1.0.3", + "targets":"com.github.jkugiya%ulid-scala", "config":{ "projects":{ "exclude":[ @@ -16684,12 +16333,19 @@ ] } }, - "http4s/http4s":{ - "project":"http4s/http4s", - "repoUrl":"https://github.com/http4s/http4s.git", - "revision":"v0.23.23", - "version":"0.23.23", - "targets":"org.http4s%http4s-client-testkit org.http4s%http4s-server org.http4s%http4s-dsl org.http4s%http4s-laws org.http4s%http4s-ember-client org.http4s%http4s-client org.http4s%http4s-jawn org.http4s%http4s-circe org.http4s%http4s-docs org.http4s%http4s-scalafix-internal org.http4s%http4s-ember-server org.http4s%http4s-ember-core org.http4s%http4s-core", + "jmcardon/tsec":{ + "project":"jmcardon/tsec", + "repoUrl":"https://github.com/jmcardon/tsec.git", + "revision":"v0.3.0-M2", + "version":"0.3.0-M2", + "targets":"io.github.jmcardon%tsec-bouncy io.github.jmcardon%tsec-password io.github.jmcardon%tsec-mac io.github.jmcardon%tsec-cipher-bouncy io.github.jmcardon%tsec-jwt-core io.github.jmcardon%tsec-signatures io.github.jmcardon%tsec-cipher-jca io.github.jmcardon%tsec-hash-bouncy io.github.jmcardon%tsec-cipher-core io.github.jmcardon%tsec-jwt-sig io.github.jmcardon%tsec-common io.github.jmcardon%tsec-jwt-mac io.github.jmcardon%tsec-hash-jca" + }, + "joan38/kubernetes-client":{ + "project":"joan38/kubernetes-client", + "repoUrl":"https://github.com/joan38/kubernetes-client.git", + "revision":"v0.9.0", + "version":"0.9.0", + "targets":"com.goyeau%kubernetes-client", "config":{ "projects":{ "exclude":[ @@ -16700,11 +16356,11 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ - "set every unidoc/unidocAllSources := Nil" + ], "options":[ @@ -16715,33 +16371,29 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"project/Http4sPlugin.scala", - "pattern":"val scala_3 = \"3.3.0\"", - "replaceWith":"val scala_3 = \"\"" - } + ] } }, - "http4s/http4s-armeria":{ - "project":"http4s/http4s-armeria", - "repoUrl":"https://github.com/http4s/http4s-armeria.git", - "revision":"v1.0.0-M2", - "version":"1.0.0-M2", - "targets":"org.http4s%http4s-armeria-client org.http4s%http4s-armeria-server", + "jobial-io/scase":{ + "project":"jobial-io/scase", + "repoUrl":"https://github.com/jobial-io/scase.git", + "revision":"0.9.0", + "version":"0.9.0", + "targets":"io.jobial%scase-lambda-scala3-example", "config":{ "projects":{ "exclude":[ - + "io.jobial%scase-lambda-scala3-example" ], "overrides":{ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -16762,23 +16414,38 @@ ] } }, - "http4s/http4s-async-http-client":{ - "project":"http4s/http4s-async-http-client", - "repoUrl":"https://github.com/http4s/http4s-async-http-client.git", - "revision":"v0.23.12", - "version":"0.23.12", - "targets":"org.http4s%http4s-async-http-client", + "jodersky/identicon":{ + "project":"jodersky/identicon", + "repoUrl":"https://github.com/jodersky/identicon.git", + "revision":"0.4.0", + "version":"0.4.0", + "targets":"io.crashbox%identicon" + }, + "jodersky/redicl":{ + "project":"jodersky/redicl", + "repoUrl":"https://github.com/jodersky/redicl.git", + "revision":"0.1.2", + "version":"0.1.2", + "targets":"io.crashbox%redicl" + }, + "jodersky/scala-argparse":{ + "project":"jodersky/scala-argparse", + "repoUrl":"https://github.com/jodersky/scala-argparse.git", + "revision":"0.20.0", + "version":"0.20.0", + "targets":"io.crashbox%configparse io.crashbox%argparse-ini io.crashbox%argparse io.crashbox%configparse-core", "config":{ "projects":{ "exclude":[ - + "io.crashbox%configparse", + "io.crashbox%configparse-core" ], "overrides":{ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -16795,16 +16462,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sc", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "http4s/http4s-crypto":{ - "project":"http4s/http4s-crypto", - "repoUrl":"https://github.com/http4s/http4s-crypto.git", - "revision":"v0.2.4", - "version":"0.2.4", - "targets":"org.http4s%http4s-crypto", + "jodersky/scalapb-ujson":{ + "project":"jodersky/scalapb-ujson", + "repoUrl":"https://github.com/jodersky/scalapb-ujson.git", + "revision":"0.3.1", + "version":"0.3.1", + "targets":"io.crashbox%scalapb-ujson", "config":{ "projects":{ "exclude":[ @@ -16815,7 +16486,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -16830,18 +16501,25 @@ ] }, - "tests":"full", + "tests":"disabled", "sourcePatches":[ ] } }, - "http4s/http4s-fabric":{ - "project":"http4s/http4s-fabric", - "repoUrl":"https://github.com/http4s/http4s-fabric.git", - "revision":"v1.0.0-M32", - "version":"1.0.0-M32", - "targets":"org.http4s%http4s-fabric", + "jodersky/simplesql":{ + "project":"jodersky/simplesql", + "repoUrl":"https://github.com/jodersky/simplesql.git", + "revision":"0.2.2", + "version":"0.2.2", + "targets":"io.crashbox%simplesql" + }, + "jodersky/ustats":{ + "project":"jodersky/ustats", + "repoUrl":"https://github.com/jodersky/ustats.git", + "revision":"0.6.0", + "version":"0.6.0", + "targets":"io.crashbox%ustats io.crashbox%ustats-server", "config":{ "projects":{ "exclude":[ @@ -16852,7 +16530,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -16870,26 +16548,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.1\"", + "path":"build.sc", + "pattern":"val scala3 = \"3.1.2\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "http4s/http4s-finagle":{ - "project":"http4s/http4s-finagle", - "repoUrl":"https://github.com/http4s/http4s-finagle.git", - "revision":"v0.21.31-21.12.0", - "version":"0.21.31-21.12.0", - "targets":"org.http4s%http4s-finagle" - }, - "http4s/http4s-fs2-data":{ - "project":"http4s/http4s-fs2-data", - "repoUrl":"https://github.com/http4s/http4s-fs2-data.git", - "revision":"v1.0.0-M40", - "version":"1.0.0-M40", - "targets":"org.http4s%http4s-fs2-data-cbor org.http4s%http4s-fs2-data-csv org.http4s%http4s-fs2-data-xml org.http4s%http4s-fs2-data-xml-scala", + "jodersky/yamlesque":{ + "project":"jodersky/yamlesque", + "repoUrl":"https://github.com/jodersky/yamlesque.git", + "revision":"0.3.2", + "version":"0.3.2", + "targets":"io.crashbox%yamlesque io.crashbox%yamlesque-upickle", "config":{ "projects":{ "exclude":[ @@ -16900,7 +16571,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -16917,27 +16588,39 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sc", + "pattern":"val scala3 = \"3.0.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "http4s/http4s-jdk-http-client":{ - "project":"http4s/http4s-jdk-http-client", - "repoUrl":"https://github.com/http4s/http4s-jdk-http-client.git", - "revision":"v0.9.1", - "version":"0.9.1", - "targets":"org.http4s%http4s-jdk-http-client", + "joernio/joern":{ + "project":"joernio/joern", + "repoUrl":"https://github.com/joernio/joern.git", + "revision":"v1.1.1728", + "version":"1.1.1728", + "targets":"io.joern%c2cpg io.joern%jimple2cpg io.joern%semanticcpg io.joern%jssrc2cpg io.joern%rubysrc2cpg io.joern%php2cpg io.joern%x2cpg io.joern%pysrc2cpg io.joern%dataflowengineoss io.joern%macros io.joern%javasrc2cpg", "config":{ "projects":{ "exclude":[ - + "php2cpg" ], "overrides":{ - + "x2cpg":{ + "tests":"compile-only" + }, + "javasrc2cpg":{ + "tests":"compile-only" + }, + "jssrc2cpg":{ + "tests":"compile-only" + } } }, "java":{ - "version":"17" + "version":"21" }, "sbt":{ "commands":[ @@ -16958,12 +16641,19 @@ ] } }, - "http4s/http4s-jetty":{ - "project":"http4s/http4s-jetty", - "repoUrl":"https://github.com/http4s/http4s-jetty.git", - "revision":"v0.23.13", - "version":"0.23.13", - "targets":"org.http4s%http4s-jetty-client org.http4s%http4s-jetty-server", + "johnhungerford/generic-schema":{ + "project":"johnhungerford/generic-schema", + "repoUrl":"https://github.com/johnhungerford/generic-schema.git", + "revision":"v1.2.0", + "version":"1.2.0", + "targets":"io.github.johnhungerford.generic.schema%core io.github.johnhungerford.generic.schema%gs-circe io.github.johnhungerford.generic.schema%gs-tapir io.github.johnhungerford.generic.schema%gs-upickle" + }, + "johnspade/csv3s":{ + "project":"johnspade/csv3s", + "repoUrl":"https://github.com/johnspade/csv3s.git", + "revision":"v0.1.2", + "version":"0.1.2", + "targets":"ru.johnspade%csv3s", "config":{ "projects":{ "exclude":[ @@ -16974,7 +16664,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -16991,16 +16681,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "http4s/http4s-netty":{ - "project":"http4s/http4s-netty", - "repoUrl":"https://github.com/http4s/http4s-netty.git", - "revision":"v0.5.11", - "version":"0.5.11", - "targets":"org.http4s%http4s-netty-client org.http4s%http4s-netty-core org.http4s%http4s-netty-server", + "johnspade/tgbot-utils":{ + "project":"johnspade/tgbot-utils", + "repoUrl":"https://github.com/johnspade/tgbot-utils.git", + "revision":"v0.7.0", + "version":"0.7.0", + "targets":"ru.johnspade%tgbot-utils ru.johnspade%tgbot-callback-data ru.johnspade%tgbot-callback-queries ru.johnspade%tgbot-message-entities", "config":{ "projects":{ "exclude":[ @@ -17011,7 +16705,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -17028,16 +16722,34 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "http4s/http4s-play-json":{ - "project":"http4s/http4s-play-json", - "repoUrl":"https://github.com/http4s/http4s-play-json.git", - "revision":"v0.23.12", - "version":"0.23.12", - "targets":"org.http4s%http4s-play-json", + "joohnnie/retry":{ + "project":"joohnnie/retry", + "repoUrl":"https://github.com/joohnnie/retry.git", + "revision":"68f5e7e2dd43e05f5180c7709821f582d4e8eb9f", + "version":"1.0.1", + "targets":"fun.zyx%retry" + }, + "jozic/scalax-collection":{ + "project":"jozic/scalax-collection", + "repoUrl":"https://github.com/jozic/scalax-collection.git", + "revision":"v0.3.4", + "version":"0.3.4", + "targets":"com.daodecode%scalax-collection" + }, + "jphmrst/bps":{ + "project":"jphmrst/bps", + "repoUrl":"https://github.com/jphmrst/bps.git", + "revision":"9beee6cb49a630a8f1e2ee665c0919b4d1b092ba", + "version":"0.1.0", + "targets":"org.maraist%bps-scala", "config":{ "projects":{ "exclude":[ @@ -17048,7 +16760,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -17067,18 +16779,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.1\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3Version = \"3.1.0\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "http4s/http4s-prometheus-metrics":{ - "project":"http4s/http4s-prometheus-metrics", - "repoUrl":"https://github.com/http4s/http4s-prometheus-metrics.git", - "revision":"0.24.6", - "version":"0.24.6", - "targets":"org.http4s%http4s-prometheus-metrics", + "jphmrst/scala-automata":{ + "project":"jphmrst/scala-automata", + "repoUrl":"https://github.com/jphmrst/scala-automata.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"org.maraist%scala-automata", "config":{ "projects":{ "exclude":[ @@ -17089,7 +16801,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -17106,16 +16818,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.0.2\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "http4s/http4s-scala-xml":{ - "project":"http4s/http4s-scala-xml", - "repoUrl":"https://github.com/http4s/http4s-scala-xml.git", - "revision":"v1.0.0-M38", - "version":"1.0.0-M38", - "targets":"org.http4s%http4s-scala-xml", + "jphmrst/scala-latex":{ + "project":"jphmrst/scala-latex", + "repoUrl":"https://github.com/jphmrst/scala-latex.git", + "revision":"v1.1.2", + "version":"1.1.2", + "targets":"org.maraist%scala-latex", "config":{ "projects":{ "exclude":[ @@ -17126,7 +16842,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -17143,16 +16859,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.0.1\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "http4s/http4s-scalatags":{ - "project":"http4s/http4s-scalatags", - "repoUrl":"https://github.com/http4s/http4s-scalatags.git", - "revision":"v1.0.0-M38", - "version":"1.0.0-M38", - "targets":"org.http4s%http4s-scalatags", + "jphmrst/scalautils":{ + "project":"jphmrst/scalautils", + "repoUrl":"https://github.com/jphmrst/scalautils.git", + "revision":"0ed1ad6ea31d7f4289828531337f1a34f78a953e", + "version":"1.0.1", + "targets":"org.maraist%misc-utils", "config":{ "projects":{ "exclude":[ @@ -17163,7 +16883,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -17180,16 +16900,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.1.0\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "http4s/http4s-servlet":{ - "project":"http4s/http4s-servlet", - "repoUrl":"https://github.com/http4s/http4s-servlet.git", - "revision":"v0.24.0-RC1", - "version":"0.24.0-RC1", - "targets":"org.http4s%http4s-servlet", + "json4s/json4s":{ + "project":"json4s/json4s", + "repoUrl":"https://github.com/json4s/json4s.git", + "revision":"v4.1.0-M3", + "version":"4.1.0-M3", + "targets":"org.json4s%json4s-jackson org.json4s%json4s-core org.json4s%json4s-mongo org.json4s%json4s-native org.json4s%json4s-native-core org.json4s%json4s-xml org.json4s%json4s-scalaz org.json4s%json4s-scalap org.json4s%json4s-ext org.json4s%json4s-jackson-core org.json4s%json4s-ast", "config":{ "projects":{ "exclude":[ @@ -17200,7 +16924,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -17217,16 +16941,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/build.scala", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "http4s/http4s-session":{ - "project":"http4s/http4s-session", - "repoUrl":"https://github.com/http4s/http4s-session.git", + "juliano/pokeapi-scala":{ + "project":"juliano/pokeapi-scala", + "repoUrl":"https://github.com/juliano/pokeapi-scala.git", "revision":"v0.2.0", "version":"0.2.0", - "targets":"org.http4s%http4s-session", + "targets":"io.github.juliano%pokeapi-scala", "config":{ "projects":{ "exclude":[ @@ -17252,22 +16980,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3Version = \"3.2.0\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "http4s/http4s-tomcat":{ - "project":"http4s/http4s-tomcat", - "repoUrl":"https://github.com/http4s/http4s-tomcat.git", - "revision":"v0.25.0-M1", - "version":"0.25.0-M1", - "targets":"org.http4s%http4s-tomcat-server", + "jvican/dijon":{ + "project":"jvican/dijon", + "repoUrl":"https://github.com/jvican/dijon.git", + "revision":"07c69c34aef335d6b512c00686a9376339708106", + "version":"0.0.0+48-f17bfc3b", + "targets":"me.vican.jorge%monix-grpc-codegen me.vican.jorge%monix-grpc-runtime", "config":{ "projects":{ "exclude":[ @@ -17293,18 +17021,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "http4s/http4s-twirl":{ - "project":"http4s/http4s-twirl", - "repoUrl":"https://github.com/http4s/http4s-twirl.git", - "revision":"v1.0.0-M38", - "version":"1.0.0-M38", - "targets":"org.http4s%http4s-twirl", + "jwojnowski/fs2-aes":{ + "project":"jwojnowski/fs2-aes", + "repoUrl":"https://github.com/jwojnowski/fs2-aes.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"me.wojnowski%fs2-aes", "config":{ "projects":{ "exclude":[ @@ -17315,7 +17043,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -17332,16 +17060,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "hughsimpson/scalameter":{ - "project":"hughsimpson/scalameter", - "repoUrl":"https://github.com/hughsimpson/scalameter.git", - "revision":"v0.22.1", - "version":"0.22.1", - "targets":"io.github.hughsimpson%scalameter io.github.hughsimpson%scalameter-core", + "jwojnowski/googlecloud4s":{ + "project":"jwojnowski/googlecloud4s", + "repoUrl":"https://github.com/jwojnowski/googlecloud4s.git", + "revision":"v0.7.2", + "version":"0.7.2", + "targets":"me.wojnowski%googlecloud4s-core me.wojnowski%googlecloud4s-auth me.wojnowski%googlecloud4s-firestore me.wojnowski%googlecloud4s-pubsub me.wojnowski%googlecloud4s-logging-logback-circe me.wojnowski%googlecloud4s-storage", "config":{ "projects":{ "exclude":[ @@ -17352,7 +17084,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -17369,16 +17101,20 @@ }, "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "i10416/cssminifier":{ - "project":"i10416/cssminifier", - "repoUrl":"https://github.com/i10416/cssminifier.git", - "revision":"v0.0.3", - "version":"0.0.3", - "targets":"dev.i10416%cssminifier", + "jwojnowski/oidc4s":{ + "project":"jwojnowski/oidc4s", + "repoUrl":"https://github.com/jwojnowski/oidc4s.git", + "revision":"v0.7.0", + "version":"0.7.0", + "targets":"me.wojnowski%oidc4s-circe me.wojnowski%oidc4s-core me.wojnowski%oidc4s-quick-sttp-circe me.wojnowski%oidc4s-sttp", "config":{ "projects":{ "exclude":[ @@ -17408,18 +17144,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.1.2\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val Scala3 = \"3.2.1\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "i10416/munkres":{ - "project":"i10416/munkres", - "repoUrl":"https://github.com/i10416/munkres.git", - "revision":"v0.0.4", - "version":"0.0.4", - "targets":"dev.i10416%munkres", + "jwt-scala/jwt-scala":{ + "project":"jwt-scala/jwt-scala", + "repoUrl":"https://github.com/jwt-scala/jwt-scala.git", + "revision":"v9.3.0", + "version":"9.3.0", + "targets":"com.github.jwt-scala%jwt-json4s-jackson com.github.jwt-scala%jwt-circe com.github.jwt-scala%jwt-argonaut com.github.jwt-scala%jwt-zio-json com.github.jwt-scala%jwt-json4s-native com.github.jwt-scala%jwt-core com.github.jwt-scala%jwt-upickle com.github.jwt-scala%jwt-json-common com.github.jwt-scala%jwt-json4s-common", "config":{ "projects":{ "exclude":[ @@ -17430,7 +17166,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -17447,27 +17183,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.1.2\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "ichoran/kse3":{ - "project":"ichoran/kse3", - "repoUrl":"https://github.com/ichoran/kse3.git", - "revision":"", - "version":"0.1.8", - "targets":"com.github.ichoran%kse3-eio com.github.ichoran%kse3-flow com.github.ichoran%kse3-maths com.github.ichoran%kse3-testing" - }, - "iheartradio/ficus":{ - "project":"iheartradio/ficus", - "repoUrl":"https://github.com/iheartradio/ficus.git", - "revision":"v1.5.2", - "version":"1.5.2", - "targets":"com.iheart%ficus", + "kailuowang/mau":{ + "project":"kailuowang/mau", + "repoUrl":"https://github.com/kailuowang/mau.git", + "revision":"v0.3.2", + "version":"0.3.2", + "targets":"com.kailuowang%mau", "config":{ "projects":{ "exclude":[ @@ -17478,7 +17203,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -17495,20 +17220,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"def Scala3 = \"3.1.1\"", - "replaceWith":"def Scala3 = \"\"" - } + ] } }, - "ij-plugins/ijp-color":{ - "project":"ij-plugins/ijp-color", - "repoUrl":"https://github.com/ij-plugins/ijp-color.git", - "revision":"v.0.12.2", - "version":"0.12.2", - "targets":"net.sf.ij-plugins%ijp-color net.sf.ij-plugins%ijp-color-ui", + "kalin-rudnicki/harness":{ + "project":"kalin-rudnicki/harness", + "repoUrl":"https://github.com/kalin-rudnicki/harness.git", + "revision":"2.0.1", + "version":"2.0.1", + "targets":"io.github.kalin-rudnicki%harness-http-server io.github.kalin-rudnicki%harness-http-client io.github.kalin-rudnicki%harness-cli io.github.kalin-rudnicki%harness-xml io.github.kalin-rudnicki%harness-test io.github.kalin-rudnicki%harness-csv io.github.kalin-rudnicki%harness-web io.github.kalin-rudnicki%harness-zio io.github.kalin-rudnicki%harness-core io.github.kalin-rudnicki%harness-sql io.github.kalin-rudnicki%harness-http-server-test", "config":{ "projects":{ "exclude":[ @@ -17519,7 +17240,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -17534,22 +17255,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0-RC3\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val Scala_3 = \"3.2.2\"", + "replaceWith":"val Scala_3 = \"\"" } ] } }, - "ij-plugins/ijp-debayer2sx":{ - "project":"ij-plugins/ijp-debayer2sx", - "repoUrl":"https://github.com/ij-plugins/ijp-debayer2sx.git", - "revision":"v.1.3.4", - "version":"1.3.4", - "targets":"net.sf.ij-plugins%ijp-debayer2sx-core net.sf.ij-plugins%ijp-debayer2sx-plugins", + "kalin-rudnicki/slyce-zio":{ + "project":"kalin-rudnicki/slyce-zio", + "repoUrl":"https://github.com/kalin-rudnicki/slyce-zio.git", + "revision":"2.0.3", + "version":"2.0.3", + "targets":"io.github.kalin-rudnicki%slyce-core io.github.kalin-rudnicki%slyce-generate io.github.kalin-rudnicki%slyce-parse io.github.kalin-rudnicki%slyce-parse-exe", "config":{ "projects":{ "exclude":[ @@ -17560,7 +17281,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -17577,16 +17298,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala_3 = \"3.1.3-RC5\"", + "replaceWith":"val Scala_3 = \"\"" + } ] } }, - "ij-plugins/ijp-javacv":{ - "project":"ij-plugins/ijp-javacv", - "repoUrl":"https://github.com/ij-plugins/ijp-javacv.git", - "revision":"v.0.5.0", - "version":"0.5.0", - "targets":"net.sf.ij-plugins%ijp-javacv-core net.sf.ij-plugins%ijp-javacv-plugins", + "kamon-io/kamon":{ + "project":"kamon-io/kamon", + "repoUrl":"https://github.com/kamon-io/kamon.git", + "revision":"v2.6.1", + "version":"2.6.1", + "targets":"io.kamon%kamon-prometheus io.kamon%kamon-core io.kamon%kamon-testkit io.kamon%kamon-system-metrics io.kamon%kamon-annotation io.kamon%kamon-opentelemetry io.kamon%kamon-scala-future io.kamon%kamon-newrelic io.kamon%kamon-graphite io.kamon%kamon-apm-reporter io.kamon%kamon-caffeine io.kamon%kamon-kafka io.kamon%kamon-zipkin io.kamon%kamon-status-page io.kamon%kamon-executors io.kamon%kamon-cats-io-3 io.kamon%kamon-influxdb io.kamon%kamon-instrumentation-common io.kamon%kamon-redis io.kamon%kamon-datadog io.kamon%kamon-statsd io.kamon%kamon-jaeger", "config":{ "projects":{ "exclude":[ @@ -17597,7 +17322,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -17612,18 +17337,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "ij-plugins/ijp-scala-console":{ - "project":"ij-plugins/ijp-scala-console", - "repoUrl":"https://github.com/ij-plugins/ijp-scala-console.git", - "revision":"v.1.8.0", - "version":"1.8.0", - "targets":"net.sf.ij-plugins%scala-console net.sf.ij-plugins%scala-console-plugins", + "karazinscalausersgroup/mongo-literals":{ + "project":"karazinscalausersgroup/mongo-literals", + "repoUrl":"https://github.com/karazinscalausersgroup/mongo-literals.git", + "revision":"63a14d3a43224d9e483bdb3be516a055a187ee2b", + "version":"0.2.3", + "targets":"group.scala.karazin%mongo-literals", "config":{ "projects":{ "exclude":[ @@ -17634,7 +17359,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -17655,12 +17380,12 @@ ] } }, - "ij-plugins/ijp-toolkit":{ - "project":"ij-plugins/ijp-toolkit", - "repoUrl":"https://github.com/ij-plugins/ijp-toolkit.git", - "revision":"v.2.3.1", - "version":"2.3.1", - "targets":"net.sf.ij-plugins%ijp-toolkit", + "katrix/minejson":{ + "project":"katrix/minejson", + "repoUrl":"https://github.com/katrix/minejson.git", + "revision":"1e1d739a6d8b7de2e65d5e9d079df448b959bb77", + "version":"0.4.0", + "targets":"net.katsstuff%minejson-text", "config":{ "projects":{ "exclude":[ @@ -17686,18 +17411,32 @@ ] }, - "tests":"compile-only", + "tests":"disabled", "sourcePatches":[ ] } }, - "imaxmelnyk/openai-scala":{ - "project":"imaxmelnyk/openai-scala", - "repoUrl":"https://github.com/imaxmelnyk/openai-scala.git", - "revision":"v0.3.0", - "version":"0.3.0", - "targets":"dev.maxmelnyk%openai-scala", + "katrix/perspective":{ + "project":"katrix/perspective", + "repoUrl":"https://github.com/katrix/perspective.git", + "revision":"5243d8cd126141d7a26f79f4eb9222da0ada4adc", + "version":"0.1.0", + "targets":"net.katsstuff%perspective-derivation net.katsstuff%perspective" + }, + "katrix/typenbt":{ + "project":"katrix/typenbt", + "repoUrl":"https://github.com/katrix/typenbt.git", + "revision":"641dde8bf0878910ad456df7fd9274c995aa29c4", + "version":"0.6.0", + "targets":"net.katsstuff%typenbt net.katsstuff%typenbt-extra net.katsstuff%typenbt-mojangson" + }, + "kcrypt/scala-biginteger":{ + "project":"kcrypt/scala-biginteger", + "repoUrl":"https://github.com/kcrypt/scala-biginteger.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"pt.kcry%biginteger", "config":{ "projects":{ "exclude":[ @@ -17708,7 +17447,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -17725,27 +17464,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "imrafaelmerino/json-scala-values":{ - "project":"imrafaelmerino/json-scala-values", - "repoUrl":"https://github.com/imrafaelmerino/json-scala-values.git", - "revision":"v5.2.1", - "version":"5.2.1", - "targets":"com.github.imrafaelmerino%json-scala-values" - }, - "indoorvivants/detective":{ - "project":"indoorvivants/detective", - "repoUrl":"https://github.com/indoorvivants/detective.git", - "revision":"v0.0.2", - "version":"0.0.2", - "targets":"com.indoorvivants.detective%platform", + "kcrypt/scala-blake3":{ + "project":"kcrypt/scala-blake3", + "repoUrl":"https://github.com/kcrypt/scala-blake3.git", + "revision":"v3.1.1", + "version":"3.1.1", + "targets":"pt.kcry%blake3", "config":{ "projects":{ "exclude":[ @@ -17756,7 +17484,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -17773,20 +17501,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.3\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "indoorvivants/mdoc-d2":{ - "project":"indoorvivants/mdoc-d2", - "repoUrl":"https://github.com/indoorvivants/mdoc-d2.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"com.indoorvivants%mdoc-d2", + "kcrypt/scala-sha":{ + "project":"kcrypt/scala-sha", + "repoUrl":"https://github.com/kcrypt/scala-sha.git", + "revision":"v2.0.1", + "version":"2.0.1", + "targets":"pt.kcry%sha", "config":{ "projects":{ "exclude":[ @@ -17797,7 +17521,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -17814,20 +17538,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "indoorvivants/mdoc-effect":{ - "project":"indoorvivants/mdoc-effect", - "repoUrl":"https://github.com/indoorvivants/mdoc-effect.git", - "revision":"v0.0.5", - "version":"0.0.5", - "targets":"com.indoorvivants%mdoc-effect-ce2 com.indoorvivants%mdoc-effect-ce3", + "keirlawson/fs2-progress":{ + "project":"keirlawson/fs2-progress", + "repoUrl":"https://github.com/keirlawson/fs2-progress.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"io.github.keirlawson%fs2-progress", "config":{ "projects":{ "exclude":[ @@ -17838,7 +17558,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -17857,18 +17577,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.3\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3 = \"3.1.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "indoorvivants/opaque-newtypes":{ - "project":"indoorvivants/opaque-newtypes", - "repoUrl":"https://github.com/indoorvivants/opaque-newtypes.git", - "revision":"v0.0.2", - "version":"0.0.2", - "targets":"com.indoorvivants%opaque-newtypes", + "kevin-lee/effectie":{ + "project":"kevin-lee/effectie", + "repoUrl":"https://github.com/kevin-lee/effectie.git", + "revision":"v2.0.0-beta9", + "version":"2.0.0-beta9", + "targets":"io.kevinlee%effectie-syntax io.kevinlee%effectie-cats-effect2 io.kevinlee%effectie-test4cats io.kevinlee%effectie-cats-effect3 io.kevinlee%effectie-cats io.kevinlee%effectie-monix3 io.kevinlee%effectie-core", "config":{ "projects":{ "exclude":[ @@ -17879,7 +17599,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -17898,33 +17618,34 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.1\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val Scala3Version = \"3.0.2\"", + "replaceWith":"val Scala3Version = \"\"" } ] } }, - "indoorvivants/rendition":{ - "project":"indoorvivants/rendition", - "repoUrl":"https://github.com/indoorvivants/rendition.git", - "revision":"v0.0.3", - "version":"0.0.3", - "targets":"com.indoorvivants%rendition", + "kevin-lee/just-semver":{ + "project":"kevin-lee/just-semver", + "repoUrl":"https://github.com/kevin-lee/just-semver.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"io.kevinlee%just-semver io.kevinlee%just-semver-core", "config":{ "projects":{ "exclude":[ - + "io.kevinlee%just-semver" ], "overrides":{ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -17937,20 +17658,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.0\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "indoorvivants/sn-bindgen":{ - "project":"indoorvivants/sn-bindgen", - "repoUrl":"https://github.com/indoorvivants/sn-bindgen.git", - "revision":"v0.0.21", - "version":"0.0.21", - "targets":"com.indoorvivants%bindgen-interface", + "kevin-lee/just-sysprocess":{ + "project":"kevin-lee/just-sysprocess", + "repoUrl":"https://github.com/kevin-lee/just-sysprocess.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"io.kevinlee%just-sysprocess", "config":{ "projects":{ "exclude":[ @@ -17961,11 +17678,12 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion} com.olegpy:better-monadic-for_3", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -17976,22 +17694,25 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "indoorvivants/sn-demangler":{ - "project":"indoorvivants/sn-demangler", - "repoUrl":"https://github.com/indoorvivants/sn-demangler.git", - "revision":"v0.0.6", - "version":"0.0.6", - "targets":"com.indoorvivants%sn-demangler com.indoorvivants%sn-demangler-core", + "kevin-lee/logger-f":{ + "project":"kevin-lee/logger-f", + "repoUrl":"https://github.com/kevin-lee/logger-f.git", + "revision":"v2.0.0-beta12", + "version":"2.0.0-beta12", + "targets":"io.kevinlee%logger-f-slf4j io.kevinlee%logger-f-log4j io.kevinlee%logger-f-sbt-logging io.kevinlee%logger-f-test-kit io.kevinlee%logger-f-core io.kevinlee%logger-f-log4s io.kevinlee%logger-f-cats" + }, + "kiberstender/fjwt":{ + "project":"kiberstender/fjwt", + "repoUrl":"https://github.com/kiberstender/fjwt.git", + "revision":"v1.0.2", + "version":"1.0.2", + "targets":"io.github.kiberStender%fjwt", "config":{ "projects":{ "exclude":[ @@ -18002,7 +17723,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -18020,19 +17741,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.3\"", - "replaceWith":"val Scala3 = \"\"" + "path":"project/Common.scala", + "pattern":"val scala3Version = \"3.2.1\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "indoorvivants/sn-vcpkg":{ - "project":"indoorvivants/sn-vcpkg", - "repoUrl":"https://github.com/indoorvivants/sn-vcpkg.git", - "revision":"v0.0.16", - "version":"0.0.16", - "targets":"com.indoorvivants.vcpkg%sn-vcpkg com.indoorvivants.vcpkg%vcpkg-core", + "kierendavies/skunk-migrate":{ + "project":"kierendavies/skunk-migrate", + "repoUrl":"https://github.com/kierendavies/skunk-migrate.git", + "revision":"v0.3.0", + "version":"0.3.0", + "targets":"io.github.kierendavies%skunk-migrate", "config":{ "projects":{ "exclude":[ @@ -18058,22 +17779,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "indoorvivants/subatomic":{ - "project":"indoorvivants/subatomic", - "repoUrl":"https://github.com/indoorvivants/subatomic.git", - "revision":"v0.0.7", - "version":"0.0.7", - "targets":"com.indoorvivants%subatomic-search-indexer com.indoorvivants%subatomic-search-shared com.indoorvivants%subatomic-search-cli com.indoorvivants%subatomic-core com.indoorvivants%subatomic-search-retrieve com.indoorvivants%subatomic-builders com.indoorvivants%subatomic-search-frontend-pack", + "kijuky/enumeratum-scalikejdbc":{ + "project":"kijuky/enumeratum-scalikejdbc", + "repoUrl":"https://github.com/kijuky/enumeratum-scalikejdbc.git", + "revision":"v1.7.2.1", + "version":"1.7.2.1", + "targets":"io.github.kijuky%enumeratum-scalikejdbc4", "config":{ "projects":{ "exclude":[ @@ -18088,8 +17805,7 @@ }, "sbt":{ "commands":[ - "set every Test/unmanagedSources/excludeFilter := HiddenFileFilter || \"MdocJSTests.scala\"", - "disableFatalWarnings" + ], "options":[ @@ -18100,18 +17816,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "indoorvivants/weaver-playwright":{ - "project":"indoorvivants/weaver-playwright", - "repoUrl":"https://github.com/indoorvivants/weaver-playwright.git", - "revision":"v0.0.5", - "version":"0.0.5", - "targets":"com.indoorvivants.playwright%core com.indoorvivants.playwright%weaver", + "killaitis/http4s-cloud-functions":{ + "project":"killaitis/http4s-cloud-functions", + "repoUrl":"https://github.com/killaitis/http4s-cloud-functions.git", + "revision":"0.4.3", + "version":"0.4.3", + "targets":"de.killaitis%http4s-cloud-functions", "config":{ "projects":{ "exclude":[ @@ -18122,7 +17838,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -18137,22 +17853,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.0\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "indoorvivants/yank":{ - "project":"indoorvivants/yank", - "repoUrl":"https://github.com/indoorvivants/yank.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"com.indoorvivants%yank", + "kirill5k/mongo4cats":{ + "project":"kirill5k/mongo4cats", + "repoUrl":"https://github.com/kirill5k/mongo4cats.git", + "revision":"v0.6.11", + "version":"0.6.11", + "targets":"io.github.kirill5k%mongo4cats-zio io.github.kirill5k%mongo4cats-kernel io.github.kirill5k%mongo4cats-zio-json io.github.kirill5k%mongo4cats-embedded io.github.kirill5k%mongo4cats-circe io.github.kirill5k%mongo4cats-zio-embedded io.github.kirill5k%mongo4cats-core", "config":{ "projects":{ "exclude":[ @@ -18163,7 +17875,7 @@ } }, "java":{ - "version":"8" + "version":"21" }, "sbt":{ "commands":[ @@ -18178,22 +17890,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "ingarabr/gcs-lock":{ - "project":"ingarabr/gcs-lock", - "repoUrl":"https://github.com/ingarabr/gcs-lock.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.github.ingarabr%gcs-lock-cats-retry com.github.ingarabr%gcs-lock-core com.github.ingarabr%gcs-lock-http4s", + "kitlangton/animus":{ + "project":"kitlangton/animus", + "repoUrl":"https://github.com/kitlangton/animus.git", + "revision":"v0.3.4", + "version":"0.3.4", + "targets":"io.github.kitlangton%animus io.github.kitlangton%root", "config":{ "projects":{ "exclude":[ @@ -18225,12 +17937,12 @@ ] } }, - "ingarabr/http4s-cloud-functions":{ - "project":"ingarabr/http4s-cloud-functions", - "repoUrl":"https://github.com/ingarabr/http4s-cloud-functions.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"com.github.ingarabr%http4s-cloud-functions", + "kitlangton/neotype":{ + "project":"kitlangton/neotype", + "repoUrl":"https://github.com/kitlangton/neotype.git", + "revision":"v0.0.9", + "version":"0.0.9", + "targets":"io.github.kitlangton%neotype-zio-json io.github.kitlangton%neotype-zio-config io.github.kitlangton%neotype-zio-schema io.github.kitlangton%neotype-circe io.github.kitlangton%neotype-tapir io.github.kitlangton%neotype io.github.kitlangton%neotype-zio io.github.kitlangton%neotype-zio-quill", "config":{ "projects":{ "exclude":[ @@ -18241,7 +17953,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -18258,27 +17970,23 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Versions.scala", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "inkytonik/kiama":{ - "project":"inkytonik/kiama", - "repoUrl":"https://github.com/inkytonik/kiama.git", - "revision":"v2.5.1", - "version":"2.5.1", - "targets":"org.bitbucket.inkytonik.kiama%kiama org.bitbucket.inkytonik.kiama%kiama-extras" + "kitlangton/quotidian":{ + "project":"kitlangton/quotidian", + "repoUrl":"https://github.com/kitlangton/quotidian.git", + "revision":"v0.0.6", + "version":"0.0.6", + "targets":"io.github.kitlangton%quotidian" }, - "inoio/solrs":{ - "project":"inoio/solrs", - "repoUrl":"https://github.com/inoio/solrs.git", - "revision":"", - "version":"2.8.0", - "targets":"io.ino%solrs", + "kitlangton/zio-tui":{ + "project":"kitlangton/zio-tui", + "repoUrl":"https://github.com/kitlangton/zio-tui.git", + "revision":"v0.2.1", + "version":"0.2.1", + "targets":"io.github.kitlangton%zio-tui", "config":{ "projects":{ "exclude":[ @@ -18289,7 +17997,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -18306,16 +18014,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "irevive/union-derivation":{ - "project":"irevive/union-derivation", - "repoUrl":"https://github.com/irevive/union-derivation.git", + "kolemannix/spack":{ + "project":"kolemannix/spack", + "repoUrl":"https://github.com/kolemannix/spack.git", "revision":"v0.0.4", "version":"0.0.4", - "targets":"io.github.irevive%union-derivation-core", + "targets":"com.kolemannix%spack", "config":{ "projects":{ "exclude":[ @@ -18341,18 +18053,32 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "ironcorelabs/cats-scalatest":{ - "project":"ironcorelabs/cats-scalatest", - "repoUrl":"https://github.com/ironcorelabs/cats-scalatest.git", - "revision":"v4.0.0", - "version":"4.0.0", - "targets":"com.ironcorelabs%cats-scalatest", + "kordyjan/typelogger":{ + "project":"kordyjan/typelogger", + "repoUrl":"https://github.com/kordyjan/typelogger.git", + "revision":"0.1.0", + "version":"0.1.0", + "targets":"pro.kordyjan%typelogger" + }, + "kory33/s2mc-test":{ + "project":"kory33/s2mc-test", + "repoUrl":"https://github.com/kory33/s2mc-test.git", + "revision":"v0.2.3", + "version":"0.2.3", + "targets":"io.github.kory33%s2mc-protocol-core io.github.kory33%s2mc-client-core io.github.kory33%s2mc-test io.github.kory33%s2mc-client-examples io.github.kory33%s2mc-testing io.github.kory33%s2mc-client-impl io.github.kory33%s2mc-protocol-impl" + }, + "koterpillar/refinery":{ + "project":"koterpillar/refinery", + "repoUrl":"https://github.com/koterpillar/refinery.git", + "revision":"v0.0.8", + "version":"0.0.8", + "targets":"com.koterpillar%refinery", "config":{ "projects":{ "exclude":[ @@ -18363,7 +18089,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -18380,58 +18106,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.0.1\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "ist-dsi/scala-cinder-client":{ - "project":"ist-dsi/scala-cinder-client", - "repoUrl":"https://github.com/ist-dsi/scala-cinder-client.git", - "revision":"v0.8.1", - "version":"0.8.1", - "targets":"pt.tecnico.dsi%scala-cinder-client" - }, - "ist-dsi/scala-designate-client":{ - "project":"ist-dsi/scala-designate-client", - "repoUrl":"https://github.com/ist-dsi/scala-designate-client.git", - "revision":"v0.9.2", - "version":"0.9.2", - "targets":"pt.tecnico.dsi%scala-designate-client" - }, - "ist-dsi/scala-keystone-client":{ - "project":"ist-dsi/scala-keystone-client", - "repoUrl":"https://github.com/ist-dsi/scala-keystone-client.git", - "revision":"v0.12.2", - "version":"0.12.2", - "targets":"pt.tecnico.dsi%scala-keystone-client" - }, - "ist-dsi/scala-neutron-client":{ - "project":"ist-dsi/scala-neutron-client", - "repoUrl":"https://github.com/ist-dsi/scala-neutron-client.git", - "revision":"v0.9.1", - "version":"0.9.1", - "targets":"pt.tecnico.dsi%scala-neutron-client" - }, - "ist-dsi/scala-nova-client":{ - "project":"ist-dsi/scala-nova-client", - "repoUrl":"https://github.com/ist-dsi/scala-nova-client.git", - "revision":"v0.10.1", - "version":"0.10.1", - "targets":"pt.tecnico.dsi%scala-nova-client" - }, - "ist-dsi/scala-openstack-common-clients":{ - "project":"ist-dsi/scala-openstack-common-clients", - "repoUrl":"https://github.com/ist-dsi/scala-openstack-common-clients.git", - "revision":"v0.11.0", - "version":"0.11.0", - "targets":"pt.tecnico.dsi%scala-openstack-common-clients" - }, - "itv/quartz4s":{ - "project":"itv/quartz4s", - "repoUrl":"https://github.com/itv/quartz4s.git", - "revision":"v1.0.4", - "version":"1.0.4", - "targets":"com.itv%quartz4s-core", + "kovacshuni/circe-config":{ + "project":"kovacshuni/circe-config", + "repoUrl":"https://github.com/kovacshuni/circe-config.git", + "revision":"0.10.0", + "version":"0.10.0", + "targets":"com.hunorkovacs%circe-config", "config":{ "projects":{ "exclude":[ @@ -18442,7 +18130,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -18457,32 +18145,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "itv/scala-pact":{ - "project":"itv/scala-pact", - "repoUrl":"https://github.com/itv/scala-pact.git", - "revision":"v4.4.0", - "version":"4.4.0", - "targets":"com.itv%scalapact-http4s-0-23 com.itv%scalapact-scalatest com.itv%scalapact-core com.itv%scalapact-circe-0-14 com.itv%scalapact-scalatest-suite com.itv%scalapact-shared" - }, - "ivoah/vial":{ - "project":"ivoah/vial", - "repoUrl":"https://github.com/ivoah/vial.git", - "revision":"", - "version":"0.3.3", - "targets":"net.ivoah%vial" - }, - "j-mie6/parsley":{ - "project":"j-mie6/parsley", - "repoUrl":"https://github.com/j-mie6/parsley.git", - "revision":"v4.4.0", - "version":"4.4.0", - "targets":"com.github.j-mie6%parsley", + "kovstas/fs2-throttler":{ + "project":"kovstas/fs2-throttler", + "repoUrl":"https://github.com/kovstas/fs2-throttler.git", + "revision":"v1.0.6", + "version":"1.0.6", + "targets":"dev.kovstas%fs2-throttler", "config":{ "projects":{ "exclude":[ @@ -18510,20 +18184,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "j-mie6/parsley-cats":{ - "project":"j-mie6/parsley-cats", - "repoUrl":"https://github.com/j-mie6/parsley-cats.git", - "revision":"v1.3.0-M1", - "version":"1.3.0-M1", - "targets":"com.github.j-mie6%parsley-cats", + "krrrr38/protoquill-finagle-mysql":{ + "project":"krrrr38/protoquill-finagle-mysql", + "repoUrl":"https://github.com/krrrr38/protoquill-finagle-mysql.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"com.krrrr38%protoquill-finagle-mysql", "config":{ "projects":{ "exclude":[ @@ -18534,7 +18204,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -18553,25 +18223,25 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "j5ik2o/akka-persistence-dynamodb":{ - "project":"j5ik2o/akka-persistence-dynamodb", - "repoUrl":"https://github.com/j5ik2o/akka-persistence-dynamodb.git", - "revision":"v1.0.21", - "version":"1.0.21", - "targets":"com.github.j5ik2o%event-store-adapter-scala" + "kubukoz/debug-utils":{ + "project":"kubukoz/debug-utils", + "repoUrl":"https://github.com/kubukoz/debug-utils.git", + "revision":"v1.1.3", + "version":"1.1.3", + "targets":"com.kubukoz%debug-utils" }, - "j5ik2o/akka-persistence-s3":{ - "project":"j5ik2o/akka-persistence-s3", - "repoUrl":"https://github.com/j5ik2o/akka-persistence-s3.git", - "revision":"v1.2.177", - "version":"1.2.177", - "targets":"com.github.j5ik2o%akka-persistence-s3-base com.github.j5ik2o%akka-persistence-s3-journal com.github.j5ik2o%akka-persistence-s3-snapshot", + "kubukoz/drops":{ + "project":"kubukoz/drops", + "repoUrl":"https://github.com/kubukoz/drops.git", + "revision":"v0.0.5", + "version":"0.0.5", + "targets":"com.kubukoz%drops-core com.kubukoz%root", "config":{ "projects":{ "exclude":[ @@ -18582,11 +18252,11 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.polyvariant:better-tostring_{scalaVersion}" ], "options":[ @@ -18597,22 +18267,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "j5ik2o/base64scala":{ - "project":"j5ik2o/base64scala", - "repoUrl":"https://github.com/j5ik2o/base64scala.git", - "revision":"v1.0.55", - "version":"1.0.55", - "targets":"com.github.j5ik2o%base64scala com.github.j5ik2o%base64scala-example com.github.j5ik2o%base64scala-root", + "kubukoz/spotify-next":{ + "project":"kubukoz/spotify-next", + "repoUrl":"https://github.com/kubukoz/spotify-next.git", + "revision":"v1.11.3", + "version":"1.11.3", + "targets":"com.kubukoz%spotify-next", "config":{ "projects":{ "exclude":[ @@ -18623,11 +18289,11 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.polyvariant:better-tostring_{scalaVersion}" ], "options":[ @@ -18640,20 +18306,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "j5ik2o/docker-controller-scala":{ - "project":"j5ik2o/docker-controller-scala", - "repoUrl":"https://github.com/j5ik2o/docker-controller-scala.git", - "revision":"v1.15.34", - "version":"1.15.34", - "targets":"com.github.j5ik2o%docker-controller-scala-dynamodb-local com.github.j5ik2o%docker-controller-scala-zookeeper com.github.j5ik2o%docker-controller-scala-elasticsearch com.github.j5ik2o%docker-controller-scala-kafka com.github.j5ik2o%docker-controller-scala-scalatest com.github.j5ik2o%docker-controller-scala-localstack com.github.j5ik2o%docker-controller-scala-elasticmq com.github.j5ik2o%docker-controller-scala-core com.github.j5ik2o%docker-controller-scala-memcached com.github.j5ik2o%docker-controller-scala-minio com.github.j5ik2o%docker-controller-scala-postgresql com.github.j5ik2o%docker-controller-scala-flyway com.github.j5ik2o%docker-controller-scala-redis com.github.j5ik2o%docker-controller-scala-mysql com.github.j5ik2o%docker-controller-scala-root", + "kubukoz/sup":{ + "project":"kubukoz/sup", + "repoUrl":"https://github.com/kubukoz/sup.git", + "revision":"v0.9.0-M7", + "version":"0.9.0-M7", + "targets":"com.kubukoz%sup-doobie com.kubukoz%sup-fs2-kafka com.kubukoz%sup-circe com.kubukoz%sup-http4s-client com.kubukoz%sup-sttp com.kubukoz%sup-cassandra com.kubukoz%sup-http4s com.kubukoz%sup-log4cats com.kubukoz%sup-core com.kubukoz%sup-scalacache com.kubukoz%sup-redis", "config":{ "projects":{ "exclude":[ @@ -18664,11 +18326,11 @@ } }, "java":{ - "version":"21" + }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.polyvariant:better-tostring_{scalaVersion}" ], "options":[ @@ -18679,4607 +18341,29 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ { - "path":"project/Dependencies.scala", - "pattern":"val scala3Version = \"3.1.3\"", - "replaceWith":"val scala3Version = \"\"" + "path":"build.sbt", + "pattern":"val Scala_3 = \"3.1.3\"", + "replaceWith":"val Scala_3 = \"\"" } ] } }, - "j5ik2o/intervals-scala":{ - "project":"j5ik2o/intervals-scala", - "repoUrl":"https://github.com/j5ik2o/intervals-scala.git", - "revision":"v1.0.59", - "version":"1.0.59", - "targets":"com.github.j5ik2o%intervals-scala", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" - } - ] - } - }, - "j5ik2o/pekko-kinesis":{ - "project":"j5ik2o/pekko-kinesis", - "repoUrl":"https://github.com/j5ik2o/pekko-kinesis.git", - "revision":"v1.2.22", - "version":"1.2.22", - "targets":"com.github.j5ik2o%pekko-kinesis-kcl com.github.j5ik2o%pekko-kinesis-kcl-dynamodb-streams com.github.j5ik2o%pekko-kinesis-kpl com.github.j5ik2o%pekko-kinesis-root", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"21" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3Version = \"3.3.1\"", - "replaceWith":"val scala3Version = \"\"" - } - ] - } - }, - "j5ik2o/pekko-persistence-dynamodb":{ - "project":"j5ik2o/pekko-persistence-dynamodb", - "repoUrl":"https://github.com/j5ik2o/pekko-persistence-dynamodb.git", - "revision":"v1.0.42", - "version":"1.0.42", - "targets":"com.github.j5ik2o%pekko-persistence-dynamodb-state-v2 com.github.j5ik2o%pekko-persistence-dynamodb-base com.github.j5ik2o%pekko-persistence-dynamodb-journal-v1 com.github.j5ik2o%documents com.github.j5ik2o%pekko-persistence-dynamodb-journal-v2 com.github.j5ik2o%pekko-persistence-dynamodb-base-v2 com.github.j5ik2o%pekko-persistence-dynamodb-snapshot-v1 com.github.j5ik2o%pekko-persistence-dynamodb-snapshot-base com.github.j5ik2o%pekko-persistence-dynamodb-base-v1 com.github.j5ik2o%pekko-persistence-dynamodb-journal-base com.github.j5ik2o%pekko-persistence-dynamodb-test com.github.j5ik2o%pekko-persistence-dynamodb-state-v1 com.github.j5ik2o%pekko-persistence-dynamodb-snapshot-v2 com.github.j5ik2o%pekko-persistence-dynamodb-state-base", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"21" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3Version = \"3.3.1\"", - "replaceWith":"val scala3Version = \"\"" - } - ] - } - }, - "jamesward/zio-mavencentral":{ - "project":"jamesward/zio-mavencentral", - "repoUrl":"https://github.com/jamesward/zio-mavencentral.git", - "revision":"v0.0.7", - "version":"0.0.7", - "targets":"com.jamesward%zio-mavencentral", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "jandom-devel/scalafix":{ - "project":"jandom-devel/scalafix", - "repoUrl":"https://github.com/jandom-devel/scalafix.git", - "revision":"v0.10.0", - "version":"0.10.0", - "targets":"it.unich.scalafix%scalafix" - }, - "janlisse/zio-jwt-validator":{ - "project":"janlisse/zio-jwt-validator", - "repoUrl":"https://github.com/janlisse/zio-jwt-validator.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.github.janlisse%zio-jwt-validator" - }, - "janstenpickle/hotswap-ref":{ - "project":"janstenpickle/hotswap-ref", - "repoUrl":"https://github.com/janstenpickle/hotswap-ref.git", - "revision":"v0.2.2", - "version":"0.2.2", - "targets":"io.janstenpickle%hotswap-ref", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.1.1\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "jap-company/fields":{ - "project":"jap-company/fields", - "repoUrl":"https://github.com/jap-company/fields.git", - "revision":"v0.4.16", - "version":"0.4.16", - "targets":"company.jap%fields-core company.jap%fields-cats company.jap%fields-zio", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.2\"", - "replaceWith":"val Scala3 = \"\"" - } - ] - } - }, - "japgolly/clear-config":{ - "project":"japgolly/clear-config", - "repoUrl":"https://github.com/japgolly/clear-config.git", - "revision":"v3.1.0", - "version":"3.1.0", - "targets":"com.github.japgolly.clearconfig%core", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"compile-only", - "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.1.3\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "japgolly/microlibs-scala":{ - "project":"japgolly/microlibs-scala", - "repoUrl":"https://github.com/japgolly/microlibs-scala.git", - "revision":"v4.2.1", - "version":"4.2.1", - "targets":"com.github.japgolly.microlibs%utils com.github.japgolly.microlibs%disjunction com.github.japgolly.microlibs%nonempty com.github.japgolly.microlibs%test-util com.github.japgolly.microlibs%adt-macros com.github.japgolly.microlibs%name-fn com.github.japgolly.microlibs%multimap com.github.japgolly.microlibs%stdlib-ext com.github.japgolly.microlibs%types com.github.japgolly.microlibs%cats-ext com.github.japgolly.microlibs%compile-time com.github.japgolly.microlibs%recursion", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"def scala3 = \"3.1.3\"", - "replaceWith":"def scala3 = \"\"" - } - ] - } - }, - "japgolly/nyaya":{ - "project":"japgolly/nyaya", - "repoUrl":"https://github.com/japgolly/nyaya.git", - "revision":"v1.1.0", - "version":"1.1.0", - "targets":"com.github.japgolly.nyaya%nyaya-test com.github.japgolly.nyaya%nyaya-util com.github.japgolly.nyaya%nyaya-prop com.github.japgolly.nyaya%nyaya-gen com.github.japgolly.nyaya%nyaya-gen-circe", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.1.3\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "japgolly/scala-graal":{ - "project":"japgolly/scala-graal", - "repoUrl":"https://github.com/japgolly/scala-graal.git", - "revision":"v2.1.0", - "version":"2.1.0", - "targets":"com.github.japgolly.scala-graal%core com.github.japgolly.scala-graal%core-js com.github.japgolly.scala-graal%ext-boopickle com.github.japgolly.scala-graal%ext-prometheus", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"compile-only", - "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.1.3\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "japgolly/scalacss":{ - "project":"japgolly/scalacss", - "repoUrl":"https://github.com/japgolly/scalacss.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"com.github.japgolly.scalacss%core", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.0.1\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "japgolly/test-state":{ - "project":"japgolly/test-state", - "repoUrl":"https://github.com/japgolly/test-state.git", - "revision":"v3.1.0", - "version":"3.1.0", - "targets":"com.github.japgolly.test-state%dom-zipper com.github.japgolly.test-state%util com.github.japgolly.test-state%ext-selenium com.github.japgolly.test-state%dom-zipper-jsoup com.github.japgolly.test-state%util-selenium com.github.japgolly.test-state%ext-nyaya com.github.japgolly.test-state%dom-zipper-selenium com.github.japgolly.test-state%ext-cats com.github.japgolly.test-state%core", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - "ext-selenium":{ - "tests":"compile-only" - }, - "dom-zipper-selenium":{ - "tests":"compile-only" - } - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.1.3\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "japgolly/univeq":{ - "project":"japgolly/univeq", - "repoUrl":"https://github.com/japgolly/univeq.git", - "revision":"v2.0.1", - "version":"2.0.1", - "targets":"com.github.japgolly.univeq%univeq-cats com.github.japgolly.univeq%univeq", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.0.1\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "japgolly/webapp-util":{ - "project":"japgolly/webapp-util", - "repoUrl":"https://github.com/japgolly/webapp-util.git", - "revision":"v2.0.0-RC12", - "version":"2.0.0-RC12", - "targets":"com.github.japgolly.webapp-util%test com.github.japgolly.webapp-util%core-circe com.github.japgolly.webapp-util%test-boopickle com.github.japgolly.webapp-util%test-cats-effect com.github.japgolly.webapp-util%db-postgres com.github.japgolly.webapp-util%core com.github.japgolly.webapp-util%test-circe com.github.japgolly.webapp-util%core-okhttp4 com.github.japgolly.webapp-util%core-boopickle com.github.japgolly.webapp-util%core-cats-effect com.github.japgolly.webapp-util%test-db-postgres", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"def scala3 = \"3.1.3\"", - "replaceWith":"def scala3 = \"\"" - } - ] - } - }, - "jatcwang/difflicious":{ - "project":"jatcwang/difflicious", - "repoUrl":"https://github.com/jatcwang/difflicious.git", - "revision":"v0.4.2", - "version":"0.4.2", - "targets":"com.github.jatcwang%difflicious-munit com.github.jatcwang%difflicious-weaver com.github.jatcwang%difflicious-scalatest com.github.jatcwang%difflicious-core com.github.jatcwang%difflicious-cats", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "jbwheatley/pact4s":{ - "project":"jbwheatley/pact4s", - "repoUrl":"https://github.com/jbwheatley/pact4s.git", - "revision":"v0.10.1-java8", - "version":"0.10.1-java8", - "targets":"io.github.jbwheatley%pact4s-spray-json io.github.jbwheatley%pact4s-scalatest io.github.jbwheatley%pact4s-circe io.github.jbwheatley%pact4s-play-json io.github.jbwheatley%pact4s-munit-cats-effect io.github.jbwheatley%pact4s-models io.github.jbwheatley%pact4s-core io.github.jbwheatley%pact4s-weaver", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - "set shared/scalacOptions --= Seq(\"-Wconf:cat=deprecation:i\", \"-Xfatal-warnings\") " - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "jchapuis/fs2-kafka-mock":{ - "project":"jchapuis/fs2-kafka-mock", - "repoUrl":"https://github.com/jchapuis/fs2-kafka-mock.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"io.github.jchapuis%fs2-kafka-mock", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "jcouyang/dhall-generic":{ - "project":"jcouyang/dhall-generic", - "repoUrl":"https://github.com/jcouyang/dhall-generic.git", - "revision":"v0.3.95", - "version":"0.3.95", - "targets":"us.oyanglul%dhall-generic", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "jcouyang/jujiu":{ - "project":"jcouyang/jujiu", - "repoUrl":"https://github.com/jcouyang/jujiu.git", - "revision":"v0.27.0", - "version":"0.27.0", - "targets":"us.oyanglul%jujiu", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.0.0\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "jcouyang/meow":{ - "project":"jcouyang/meow", - "repoUrl":"https://github.com/jcouyang/meow.git", - "revision":"v0.4.14", - "version":"0.4.14", - "targets":"us.oyanglul%meow" - }, - "jczuchnowski/zio-pulsar":{ - "project":"jczuchnowski/zio-pulsar", - "repoUrl":"https://github.com/jczuchnowski/zio-pulsar.git", - "revision":"v0.2", - "version":"0.2", - "targets":"com.github.jczuchnowski%zio-pulsar", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "jd557/interim":{ - "project":"jd557/interim", - "repoUrl":"https://github.com/jd557/interim.git", - "revision":"v0.1.4", - "version":"0.1.4", - "targets":"eu.joaocosta%interim", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "jd557/minart":{ - "project":"jd557/minart", - "repoUrl":"https://github.com/jd557/minart.git", - "revision":"v0.5.3", - "version":"0.5.3", - "targets":"eu.joaocosta%minart-backend eu.joaocosta%minart-image eu.joaocosta%minart-sound eu.joaocosta%minart-core eu.joaocosta%minart eu.joaocosta%minart-pure", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "jelly-rdf/jelly-jvm":{ - "project":"jelly-rdf/jelly-jvm", - "repoUrl":"https://github.com/jelly-rdf/jelly-jvm.git", - "revision":"v0.5.3", - "version":"0.5.3", - "targets":"eu.ostrzyciel.jelly%jelly-core eu.ostrzyciel.jelly%jelly-jvm eu.ostrzyciel.jelly%jelly-grpc eu.ostrzyciel.jelly%jelly-stream eu.ostrzyciel.jelly%jelly-jena eu.ostrzyciel.jelly%jelly-rdf4j" - }, - "jilen/play-circe":{ - "project":"jilen/play-circe", - "repoUrl":"https://github.com/jilen/play-circe.git", - "revision":"v2814.4", - "version":"2814.4", - "targets":"com.dripower%play-circe", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "jkobejs/cron":{ - "project":"jkobejs/cron", - "repoUrl":"https://github.com/jkobejs/cron.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"io.github.jkobejs%zio-cron io.github.jkobejs%zio1-cron" - }, - "jkugiya/aws-v4-signer-scala":{ - "project":"jkugiya/aws-v4-signer-scala", - "repoUrl":"https://github.com/jkugiya/aws-v4-signer-scala.git", - "revision":"0.14", - "version":"0.14", - "targets":"com.github.jkugiya%aws-v4-signer-scala" - }, - "jkugiya/ulid-scala":{ - "project":"jkugiya/ulid-scala", - "repoUrl":"https://github.com/jkugiya/ulid-scala.git", - "revision":"v1.0.3", - "version":"1.0.3", - "targets":"com.github.jkugiya%ulid-scala", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "jmcardon/tsec":{ - "project":"jmcardon/tsec", - "repoUrl":"https://github.com/jmcardon/tsec.git", - "revision":"v0.3.0-M2", - "version":"0.3.0-M2", - "targets":"io.github.jmcardon%tsec-bouncy io.github.jmcardon%tsec-password io.github.jmcardon%tsec-mac io.github.jmcardon%tsec-cipher-bouncy io.github.jmcardon%tsec-jwt-core io.github.jmcardon%tsec-signatures io.github.jmcardon%tsec-cipher-jca io.github.jmcardon%tsec-hash-bouncy io.github.jmcardon%tsec-cipher-core io.github.jmcardon%tsec-jwt-sig io.github.jmcardon%tsec-common io.github.jmcardon%tsec-jwt-mac io.github.jmcardon%tsec-hash-jca" - }, - "joan38/kubernetes-client":{ - "project":"joan38/kubernetes-client", - "repoUrl":"https://github.com/joan38/kubernetes-client.git", - "revision":"v0.10.0", - "version":"0.10.0", - "targets":"com.goyeau%kubernetes-client", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"compile-only", - "sourcePatches":[ - - ] - } - }, - "jobial-io/scase":{ - "project":"jobial-io/scase", - "repoUrl":"https://github.com/jobial-io/scase.git", - "revision":"0.9.0", - "version":"0.9.0", - "targets":"io.jobial%scase-lambda-scala3-example", - "config":{ - "projects":{ - "exclude":[ - "io.jobial%scase-lambda-scala3-example" - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "jodersky/applib":{ - "project":"jodersky/applib", - "repoUrl":"https://github.com/jodersky/applib.git", - "revision":"", - "version":"0.3.0", - "targets":"io.crashbox%clam io.crashbox%clam-core io.crashbox%confuse", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sc", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "jodersky/cronic":{ - "project":"jodersky/cronic", - "repoUrl":"https://github.com/jodersky/cronic.git", - "revision":"", - "version":"0.1.0", - "targets":"io.crashbox%cronic" - }, - "jodersky/identicon":{ - "project":"jodersky/identicon", - "repoUrl":"https://github.com/jodersky/identicon.git", - "revision":"0.4.0", - "version":"0.4.0", - "targets":"io.crashbox%identicon" - }, - "jodersky/redicl":{ - "project":"jodersky/redicl", - "repoUrl":"https://github.com/jodersky/redicl.git", - "revision":"0.1.2", - "version":"0.1.2", - "targets":"io.crashbox%redicl" - }, - "jodersky/scala-argparse":{ - "project":"jodersky/scala-argparse", - "repoUrl":"https://github.com/jodersky/scala-argparse.git", - "revision":"0.20.0", - "version":"0.20.0", - "targets":"io.crashbox%configparse io.crashbox%argparse-ini io.crashbox%argparse io.crashbox%configparse-core", - "config":{ - "projects":{ - "exclude":[ - "io.crashbox%configparse", - "io.crashbox%configparse-core" - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sc", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "jodersky/scalapb-ujson":{ - "project":"jodersky/scalapb-ujson", - "repoUrl":"https://github.com/jodersky/scalapb-ujson.git", - "revision":"0.3.1", - "version":"0.3.1", - "targets":"io.crashbox%scalapb-ujson", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"disabled", - "sourcePatches":[ - - ] - } - }, - "jodersky/simplesql":{ - "project":"jodersky/simplesql", - "repoUrl":"https://github.com/jodersky/simplesql.git", - "revision":"0.2.2", - "version":"0.2.2", - "targets":"io.crashbox%simplesql" - }, - "jodersky/ustats":{ - "project":"jodersky/ustats", - "repoUrl":"https://github.com/jodersky/ustats.git", - "revision":"0.6.0", - "version":"0.6.0", - "targets":"io.crashbox%ustats io.crashbox%ustats-server", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sc", - "pattern":"val scala3 = \"3.1.2\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "jodersky/yamlesque":{ - "project":"jodersky/yamlesque", - "repoUrl":"https://github.com/jodersky/yamlesque.git", - "revision":"0.3.2", - "version":"0.3.2", - "targets":"io.crashbox%yamlesque io.crashbox%yamlesque-upickle", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sc", - "pattern":"val scala3 = \"3.0.2\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "joernio/joern":{ - "project":"joernio/joern", - "repoUrl":"https://github.com/joernio/joern.git", - "revision":"v2.0.142", - "version":"2.0.142", - "targets":"io.joern%querydb io.joern%c2cpg io.joern%ghidra2cpg io.joern%joern-cli io.joern%jimple2cpg io.joern%semanticcpg io.joern%jssrc2cpg io.joern%rubysrc2cpg io.joern%php2cpg io.joern%gosrc2cpg io.joern%console io.joern%kotlin2cpg io.joern%x2cpg io.joern%pysrc2cpg io.joern%dataflowengineoss io.joern%macros io.joern%javasrc2cpg", - "config":{ - "projects":{ - "exclude":[ - "php2cpg" - ], - "overrides":{ - "x2cpg":{ - "tests":"compile-only" - }, - "javasrc2cpg":{ - "tests":"compile-only" - }, - "jssrc2cpg":{ - "tests":"compile-only" - } - } - }, - "java":{ - "version":"21" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "johnhungerford/generic-schema":{ - "project":"johnhungerford/generic-schema", - "repoUrl":"https://github.com/johnhungerford/generic-schema.git", - "revision":"v1.2.0", - "version":"1.2.0", - "targets":"io.github.johnhungerford.generic.schema%core io.github.johnhungerford.generic.schema%gs-circe io.github.johnhungerford.generic.schema%gs-tapir io.github.johnhungerford.generic.schema%gs-upickle" - }, - "johnspade/csv3s":{ - "project":"johnspade/csv3s", - "repoUrl":"https://github.com/johnspade/csv3s.git", - "revision":"v0.1.3", - "version":"0.1.3", - "targets":"ru.johnspade%csv3s", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0\"", - "replaceWith":"val scala3Version = \"\"" - } - ] - } - }, - "johnspade/tgbot-utils":{ - "project":"johnspade/tgbot-utils", - "repoUrl":"https://github.com/johnspade/tgbot-utils.git", - "revision":"v0.7.1", - "version":"0.7.1", - "targets":"ru.johnspade%tgbot-utils ru.johnspade%tgbot-callback-data ru.johnspade%tgbot-callback-queries ru.johnspade%tgbot-message-entities", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "joohnnie/retry":{ - "project":"joohnnie/retry", - "repoUrl":"https://github.com/joohnnie/retry.git", - "revision":"", - "version":"1.0.1", - "targets":"fun.zyx%retry" - }, - "jozic/scalaj":{ - "project":"jozic/scalaj", - "repoUrl":"https://github.com/jozic/scalaj.git", - "revision":"v0.3.2", - "version":"0.3.2", - "targets":"com.daodecode%scalaj-collection com.daodecode%scalaj-googleoptional" - }, - "jozic/scalax-collection":{ - "project":"jozic/scalax-collection", - "repoUrl":"https://github.com/jozic/scalax-collection.git", - "revision":"v0.3.4", - "version":"0.3.4", - "targets":"com.daodecode%scalax-collection" - }, - "jphmrst/bps":{ - "project":"jphmrst/bps", - "repoUrl":"https://github.com/jphmrst/bps.git", - "revision":"", - "version":"0.1.0", - "targets":"org.maraist%bps-scala", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.1.0\"", - "replaceWith":"val scala3Version = \"\"" - } - ] - } - }, - "jphmrst/scala-automata":{ - "project":"jphmrst/scala-automata", - "repoUrl":"https://github.com/jphmrst/scala-automata.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"org.maraist%scala-automata", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.0.2\"", - "replaceWith":"val scala3Version = \"\"" - } - ] - } - }, - "jphmrst/scala-latex":{ - "project":"jphmrst/scala-latex", - "repoUrl":"https://github.com/jphmrst/scala-latex.git", - "revision":"v1.1.2", - "version":"1.1.2", - "targets":"org.maraist%scala-latex", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.0.1\"", - "replaceWith":"val scala3Version = \"\"" - } - ] - } - }, - "jphmrst/scalautils":{ - "project":"jphmrst/scalautils", - "repoUrl":"https://github.com/jphmrst/scalautils.git", - "revision":"", - "version":"1.0.1", - "targets":"org.maraist%misc-utils", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.1.0\"", - "replaceWith":"val scala3Version = \"\"" - } - ] - } - }, - "json4s/json4s":{ - "project":"json4s/json4s", - "repoUrl":"https://github.com/json4s/json4s.git", - "revision":"v4.1.0-M3", - "version":"4.1.0-M3", - "targets":"org.json4s%json4s-jackson org.json4s%json4s-core org.json4s%json4s-mongo org.json4s%json4s-native org.json4s%json4s-native-core org.json4s%json4s-xml org.json4s%json4s-scalaz org.json4s%json4s-scalap org.json4s%json4s-ext org.json4s%json4s-jackson-core org.json4s%json4s-ast", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"project/build.scala", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" - } - ] - } - }, - "juliano/pokeapi-scala":{ - "project":"juliano/pokeapi-scala", - "repoUrl":"https://github.com/juliano/pokeapi-scala.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"io.github.juliano%pokeapi-scala", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"compile-only", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.0\"", - "replaceWith":"val scala3Version = \"\"" - } - ] - } - }, - "julianpeeters/avrohugger":{ - "project":"julianpeeters/avrohugger", - "repoUrl":"https://github.com/julianpeeters/avrohugger.git", - "revision":"v2.8.0", - "version":"2.8.0", - "targets":"com.julianpeeters%avrohugger-core com.julianpeeters%avrohugger com.julianpeeters%avrohugger-filesorter com.julianpeeters%avrohugger-tools", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "julianpeeters/dc10":{ - "project":"julianpeeters/dc10", - "repoUrl":"https://github.com/julianpeeters/dc10.git", - "revision":"v0.3.0", - "version":"0.3.0", - "targets":"com.julianpeeters%dc10 com.julianpeeters%dc10-core com.julianpeeters%dc10-io", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "julianpeeters/dc10-cats":{ - "project":"julianpeeters/dc10-cats", - "repoUrl":"https://github.com/julianpeeters/dc10-cats.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.julianpeeters%dc10-cats", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "julianpeeters/dc10-cats-effect":{ - "project":"julianpeeters/dc10-cats-effect", - "repoUrl":"https://github.com/julianpeeters/dc10-cats-effect.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.julianpeeters%dc10-cats-effect", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "julianpeeters/dc10-scala":{ - "project":"julianpeeters/dc10-scala", - "repoUrl":"https://github.com/julianpeeters/dc10-scala.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"com.julianpeeters%dc10-scala", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "julianpeeters/schemabuilder4cats":{ - "project":"julianpeeters/schemabuilder4cats", - "repoUrl":"https://github.com/julianpeeters/schemabuilder4cats.git", - "revision":"v0.1.3", - "version":"0.1.3", - "targets":"com.julianpeeters%schemabuilder4cats", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "jvican/dijon":{ - "project":"jvican/dijon", - "repoUrl":"https://github.com/jvican/dijon.git", - "revision":"", - "version":"0.0.0+48-f17bfc3b", - "targets":"", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "jwojnowski/fs2-aes":{ - "project":"jwojnowski/fs2-aes", - "repoUrl":"https://github.com/jwojnowski/fs2-aes.git", - "revision":"v0.3.1", - "version":"0.3.1", - "targets":"me.wojnowski%fs2-aes", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", - "replaceWith":"val Scala3 = \"\"" - } - ] - } - }, - "jwojnowski/googlecloud4s":{ - "project":"jwojnowski/googlecloud4s", - "repoUrl":"https://github.com/jwojnowski/googlecloud4s.git", - "revision":"v0.8.1", - "version":"0.8.1", - "targets":"me.wojnowski%googlecloud4s-core me.wojnowski%googlecloud4s-auth me.wojnowski%googlecloud4s-firestore me.wojnowski%googlecloud4s-pubsub me.wojnowski%googlecloud4s-logging-logback-circe me.wojnowski%googlecloud4s-storage", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"compile-only", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" - } - ] - } - }, - "jwojnowski/oidc4s":{ - "project":"jwojnowski/oidc4s", - "repoUrl":"https://github.com/jwojnowski/oidc4s.git", - "revision":"v0.11.0", - "version":"0.11.0", - "targets":"me.wojnowski%oidc4s-circe me.wojnowski%oidc4s-core me.wojnowski%oidc4s-quick-sttp-circe me.wojnowski%oidc4s-sttp", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", - "replaceWith":"val Scala3 = \"\"" - } - ] - } - }, - "jwt-scala/jwt-scala":{ - "project":"jwt-scala/jwt-scala", - "repoUrl":"https://github.com/jwt-scala/jwt-scala.git", - "revision":"v9.4.4", - "version":"9.4.4", - "targets":"com.github.jwt-scala%jwt-json4s-jackson com.github.jwt-scala%jwt-circe com.github.jwt-scala%jwt-argonaut com.github.jwt-scala%jwt-zio-json com.github.jwt-scala%jwt-json4s-native com.github.jwt-scala%jwt-core com.github.jwt-scala%jwt-upickle com.github.jwt-scala%jwt-json-common com.github.jwt-scala%jwt-json4s-common", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "kailuowang/mau":{ - "project":"kailuowang/mau", - "repoUrl":"https://github.com/kailuowang/mau.git", - "revision":"v0.3.2", - "version":"0.3.2", - "targets":"com.kailuowang%mau", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "kaizen-solutions/trace4cats-zio-extras":{ - "project":"kaizen-solutions/trace4cats-zio-extras", - "repoUrl":"https://github.com/kaizen-solutions/trace4cats-zio-extras.git", - "revision":"v6.3.1", - "version":"6.3.1", - "targets":"io.kaizen-solutions%trace4cats-zio-extras-tapir io.kaizen-solutions%trace4cats-zio-extras-fs2 io.kaizen-solutions%trace4cats-zio-extras-virgil io.kaizen-solutions%trace4cats-zio-extras-zio-kafka io.kaizen-solutions%trace4cats-zio-extras-skunk io.kaizen-solutions%trace4cats-zio-extras-doobie io.kaizen-solutions%trace4cats-zio-extras-zio-http io.kaizen-solutions%trace4cats-zio-extras-http4s io.kaizen-solutions%trace4cats-zio-extras-fs2-kafka io.kaizen-solutions%trace4cats-zio-extras-core io.kaizen-solutions%trace4cats-zio-extras-sttp", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "kaizen-solutions/virgil":{ - "project":"kaizen-solutions/virgil", - "repoUrl":"https://github.com/kaizen-solutions/virgil.git", - "revision":"v1.0.4", - "version":"1.0.4", - "targets":"io.kaizen-solutions%virgil-cats-effect io.kaizen-solutions%virgil-core io.kaizen-solutions%virgil-zio", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "kalin-rudnicki/harness":{ - "project":"kalin-rudnicki/harness", - "repoUrl":"https://github.com/kalin-rudnicki/harness.git", - "revision":"2.2.2", - "version":"2.2.2", - "targets":"io.github.kalin-rudnicki%harness-http-server io.github.kalin-rudnicki%harness-archive-client io.github.kalin-rudnicki%harness-zio-test io.github.kalin-rudnicki%harness-http-client io.github.kalin-rudnicki%harness-cli io.github.kalin-rudnicki%harness-xml io.github.kalin-rudnicki%harness-test io.github.kalin-rudnicki%harness-csv io.github.kalin-rudnicki%harness-archive-model io.github.kalin-rudnicki%harness-web io.github.kalin-rudnicki%harness-zio io.github.kalin-rudnicki%harness-core io.github.kalin-rudnicki%harness-sql io.github.kalin-rudnicki%harness-http-server-test", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala_3 = \"3.3.0\"", - "replaceWith":"val Scala_3 = \"\"" - } - ] - } - }, - "kalin-rudnicki/slyce-zio":{ - "project":"kalin-rudnicki/slyce-zio", - "repoUrl":"https://github.com/kalin-rudnicki/slyce-zio.git", - "revision":"2.0.3", - "version":"2.0.3", - "targets":"io.github.kalin-rudnicki%slyce-core io.github.kalin-rudnicki%slyce-generate io.github.kalin-rudnicki%slyce-parse io.github.kalin-rudnicki%slyce-parse-exe", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala_3 = \"3.1.3-RC5\"", - "replaceWith":"val Scala_3 = \"\"" - } - ] - } - }, - "kamon-io/kamon":{ - "project":"kamon-io/kamon", - "repoUrl":"https://github.com/kamon-io/kamon.git", - "revision":"v2.6.5", - "version":"2.6.5", - "targets":"io.kamon%kamon-prometheus io.kamon%kamon-core io.kamon%kamon-testkit io.kamon%kamon-system-metrics io.kamon%kamon-annotation io.kamon%kamon-opentelemetry io.kamon%kamon-scala-future io.kamon%kamon-newrelic io.kamon%kamon-graphite io.kamon%kamon-apm-reporter io.kamon%kamon-caffeine io.kamon%kamon-kafka io.kamon%kamon-zipkin io.kamon%kamon-status-page io.kamon%kamon-executors io.kamon%kamon-cats-io-3 io.kamon%kamon-influxdb io.kamon%kamon-instrumentation-common io.kamon%kamon-redis io.kamon%kamon-datadog io.kamon%kamon-statsd io.kamon%kamon-jaeger", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "kamon-io/kamon-http4s":{ - "project":"kamon-io/kamon-http4s", - "repoUrl":"https://github.com/kamon-io/kamon-http4s.git", - "revision":"v2.6.1", - "version":"2.6.1", - "targets":"io.kamon%kamon-http4s-0.23 io.kamon%kamon-http4s-1.0" - }, - "karazinscalausersgroup/mongo-literals":{ - "project":"karazinscalausersgroup/mongo-literals", - "repoUrl":"https://github.com/karazinscalausersgroup/mongo-literals.git", - "revision":"", - "version":"0.2.3", - "targets":"group.scala.karazin%mongo-literals", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "katrix/minejson":{ - "project":"katrix/minejson", - "repoUrl":"https://github.com/katrix/minejson.git", - "revision":"", - "version":"0.4.0", - "targets":"net.katsstuff%minejson-text", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"disabled", - "sourcePatches":[ - - ] - } - }, - "katrix/perspective":{ - "project":"katrix/perspective", - "repoUrl":"https://github.com/katrix/perspective.git", - "revision":"", - "version":"0.1.0", - "targets":"net.katsstuff%perspective-derivation net.katsstuff%perspective" - }, - "katrix/typenbt":{ - "project":"katrix/typenbt", - "repoUrl":"https://github.com/katrix/typenbt.git", - "revision":"", - "version":"0.6.0", - "targets":"net.katsstuff%typenbt net.katsstuff%typenbt-extra net.katsstuff%typenbt-mojangson" - }, - "kcrypt/scala-biginteger":{ - "project":"kcrypt/scala-biginteger", - "repoUrl":"https://github.com/kcrypt/scala-biginteger.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"pt.kcry%biginteger", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "kcrypt/scala-blake3":{ - "project":"kcrypt/scala-blake3", - "repoUrl":"https://github.com/kcrypt/scala-blake3.git", - "revision":"v3.1.1", - "version":"3.1.1", - "targets":"pt.kcry%blake3", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "kcrypt/scala-sha":{ - "project":"kcrypt/scala-sha", - "repoUrl":"https://github.com/kcrypt/scala-sha.git", - "revision":"v2.0.1", - "version":"2.0.1", - "targets":"pt.kcry%sha", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "keirlawson/fs2-progress":{ - "project":"keirlawson/fs2-progress", - "repoUrl":"https://github.com/keirlawson/fs2-progress.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"io.github.keirlawson%fs2-progress", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.2\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "kevin-lee/effectie":{ - "project":"kevin-lee/effectie", - "repoUrl":"https://github.com/kevin-lee/effectie.git", - "revision":"v2.0.0-beta13", - "version":"2.0.0-beta13", - "targets":"io.kevinlee%effectie-syntax io.kevinlee%effectie-cats-effect2 io.kevinlee%effectie-test4cats io.kevinlee%effectie-cats-effect3 io.kevinlee%effectie-cats io.kevinlee%effectie-monix3 io.kevinlee%effectie-core", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3Version = \"3.0.2\"", - "replaceWith":"val Scala3Version = \"\"" - } - ] - } - }, - "kevin-lee/just-semver":{ - "project":"kevin-lee/just-semver", - "repoUrl":"https://github.com/kevin-lee/just-semver.git", - "revision":"v0.13.0", - "version":"0.13.0", - "targets":"io.kevinlee%just-semver io.kevinlee%just-semver-core", - "config":{ - "projects":{ - "exclude":[ - "io.kevinlee%just-semver" - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "kevin-lee/just-sysprocess":{ - "project":"kevin-lee/just-sysprocess", - "repoUrl":"https://github.com/kevin-lee/just-sysprocess.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"io.kevinlee%just-sysprocess", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion} com.olegpy:better-monadic-for_3", - "removeScalacOptionsStartingWith -P:wartremover" - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "kevin-lee/logger-f":{ - "project":"kevin-lee/logger-f", - "repoUrl":"https://github.com/kevin-lee/logger-f.git", - "revision":"v2.0.0-beta21", - "version":"2.0.0-beta21", - "targets":"io.kevinlee%logger-f-slf4j io.kevinlee%logger-f-log4j io.kevinlee%logger-f-sbt-logging io.kevinlee%logger-f-test-kit io.kevinlee%logger-f-core io.kevinlee%logger-f-log4s io.kevinlee%logger-f-logback-mdc-monix3 io.kevinlee%logger-f-cats" - }, - "kevin-lee/openai4s":{ - "project":"kevin-lee/openai4s", - "repoUrl":"https://github.com/kevin-lee/openai4s.git", - "revision":"v0.1.0-alpha5", - "version":"0.1.0-alpha5", - "targets":"io.kevinlee%openai4s-api io.kevinlee%openai4s-config io.kevinlee%openai4s-core io.kevinlee%openai4s-http4s", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3Version = \"3.3.0\"", - "replaceWith":"val Scala3Version = \"\"" - } - ] - } - }, - "kiberstender/fjwt":{ - "project":"kiberstender/fjwt", - "repoUrl":"https://github.com/kiberstender/fjwt.git", - "revision":"v1.0.2", - "version":"1.0.2", - "targets":"io.github.kiberStender%fjwt", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"project/Common.scala", - "pattern":"val scala3Version = \"3.2.1\"", - "replaceWith":"val scala3Version = \"\"" - } - ] - } - }, - "kierendavies/skunk-migrate":{ - "project":"kierendavies/skunk-migrate", - "repoUrl":"https://github.com/kierendavies/skunk-migrate.git", - "revision":"v0.3.0", - "version":"0.3.0", - "targets":"io.github.kierendavies%skunk-migrate", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"compile-only", - "sourcePatches":[ - - ] - } - }, - "kijuky/enumeratum-scalikejdbc":{ - "project":"kijuky/enumeratum-scalikejdbc", - "repoUrl":"https://github.com/kijuky/enumeratum-scalikejdbc.git", - "revision":"v1.7.3.0", - "version":"1.7.3.0", - "targets":"io.github.kijuky%enumeratum-scalikejdbc4", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "killaitis/http4s-cloud-functions":{ - "project":"killaitis/http4s-cloud-functions", - "repoUrl":"https://github.com/killaitis/http4s-cloud-functions.git", - "revision":"0.4.3", - "version":"0.4.3", - "targets":"de.killaitis%http4s-cloud-functions", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "kirill5k/mongo4cats":{ - "project":"kirill5k/mongo4cats", - "repoUrl":"https://github.com/kirill5k/mongo4cats.git", - "revision":"v0.6.16", - "version":"0.6.16", - "targets":"io.github.kirill5k%mongo4cats-zio io.github.kirill5k%mongo4cats-kernel io.github.kirill5k%mongo4cats-zio-json io.github.kirill5k%mongo4cats-embedded io.github.kirill5k%mongo4cats-circe io.github.kirill5k%mongo4cats-zio-embedded io.github.kirill5k%mongo4cats-core", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"compile-only", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "kitlangton/animus":{ - "project":"kitlangton/animus", - "repoUrl":"https://github.com/kitlangton/animus.git", - "revision":"v0.3.4", - "version":"0.3.4", - "targets":"io.github.kitlangton%animus io.github.kitlangton%root", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "kitlangton/neotype":{ - "project":"kitlangton/neotype", - "repoUrl":"https://github.com/kitlangton/neotype.git", - "revision":"v0.0.9", - "version":"0.0.9", - "targets":"io.github.kitlangton%neotype-zio-json io.github.kitlangton%neotype-zio-config io.github.kitlangton%neotype-zio-schema io.github.kitlangton%neotype-circe io.github.kitlangton%neotype-tapir io.github.kitlangton%neotype io.github.kitlangton%neotype-zio io.github.kitlangton%neotype-zio-quill", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "kitlangton/quotidian":{ - "project":"kitlangton/quotidian", - "repoUrl":"https://github.com/kitlangton/quotidian.git", - "revision":"v0.0.6", - "version":"0.0.6", - "targets":"io.github.kitlangton%quotidian" - }, - "kitlangton/zio-tui":{ - "project":"kitlangton/zio-tui", - "repoUrl":"https://github.com/kitlangton/zio-tui.git", - "revision":"v0.2.1", - "version":"0.2.1", - "targets":"io.github.kitlangton%zio-tui", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "kolemannix/spack":{ - "project":"kolemannix/spack", - "repoUrl":"https://github.com/kolemannix/spack.git", - "revision":"v0.0.4", - "version":"0.0.4", - "targets":"com.kolemannix%spack", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "kolotaev/ride":{ - "project":"kolotaev/ride", - "repoUrl":"https://github.com/kolotaev/ride.git", - "revision":"v1.2.0", - "version":"1.2.0", - "targets":"com.github.kolotaev%ride" - }, - "kordyjan/ogrodnik":{ - "project":"kordyjan/ogrodnik", - "repoUrl":"https://github.com/kordyjan/ogrodnik.git", - "revision":"0.2.0", - "version":"0.2.0", - "targets":"pro.kordyjan%ogrodnik" - }, - "kordyjan/pytanie":{ - "project":"kordyjan/pytanie", - "repoUrl":"https://github.com/kordyjan/pytanie.git", - "revision":"0.1.6", - "version":"0.1.6", - "targets":"pro.kordyjan%pytanie" - }, - "kordyjan/typelogger":{ - "project":"kordyjan/typelogger", - "repoUrl":"https://github.com/kordyjan/typelogger.git", - "revision":"0.1.0", - "version":"0.1.0", - "targets":"pro.kordyjan%typelogger" - }, - "kory33/s2mc-test":{ - "project":"kory33/s2mc-test", - "repoUrl":"https://github.com/kory33/s2mc-test.git", - "revision":"v0.2.3", - "version":"0.2.3", - "targets":"io.github.kory33%s2mc-protocol-core io.github.kory33%s2mc-client-core io.github.kory33%s2mc-test io.github.kory33%s2mc-client-examples io.github.kory33%s2mc-testing io.github.kory33%s2mc-client-impl io.github.kory33%s2mc-protocol-impl" - }, - "koterpillar/refinery":{ - "project":"koterpillar/refinery", - "repoUrl":"https://github.com/koterpillar/refinery.git", - "revision":"v0.0.8", - "version":"0.0.8", - "targets":"com.koterpillar%refinery", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.0.1\"", - "replaceWith":"val scala3Version = \"\"" - } - ] - } - }, - "kovacshuni/circe-config":{ - "project":"kovacshuni/circe-config", - "repoUrl":"https://github.com/kovacshuni/circe-config.git", - "revision":"0.10.0", - "version":"0.10.0", - "targets":"com.hunorkovacs%circe-config", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "kovstas/fs2-throttler":{ - "project":"kovstas/fs2-throttler", - "repoUrl":"https://github.com/kovstas/fs2-throttler.git", - "revision":"v1.0.8", - "version":"1.0.8", - "targets":"dev.kovstas%fs2-throttler", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "krrrr38/protoquill-finagle-mysql":{ - "project":"krrrr38/protoquill-finagle-mysql", - "repoUrl":"https://github.com/krrrr38/protoquill-finagle-mysql.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"com.krrrr38%protoquill-finagle-mysql", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.1\"", - "replaceWith":"val scala3Version = \"\"" - } - ] - } - }, - "kubukoz/debug-utils":{ - "project":"kubukoz/debug-utils", - "repoUrl":"https://github.com/kubukoz/debug-utils.git", - "revision":"v1.1.3", - "version":"1.1.3", - "targets":"com.kubukoz%debug-utils" - }, - "kubukoz/drops":{ - "project":"kubukoz/drops", - "repoUrl":"https://github.com/kubukoz/drops.git", - "revision":"v0.0.5", - "version":"0.0.5", - "targets":"com.kubukoz%drops-core com.kubukoz%root", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - "excludeLibraryDependency org.polyvariant:better-tostring_{scalaVersion}" - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "kubukoz/spotify-next":{ - "project":"kubukoz/spotify-next", - "repoUrl":"https://github.com/kubukoz/spotify-next.git", - "revision":"v1.11.3", - "version":"1.11.3", - "targets":"com.kubukoz%spotify-next", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - "excludeLibraryDependency org.polyvariant:better-tostring_{scalaVersion}" - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "kubukoz/sup":{ - "project":"kubukoz/sup", - "repoUrl":"https://github.com/kubukoz/sup.git", - "revision":"v0.9.0-M7", - "version":"0.9.0-M7", - "targets":"com.kubukoz%sup-doobie com.kubukoz%sup-fs2-kafka com.kubukoz%sup-circe com.kubukoz%sup-http4s-client com.kubukoz%sup-sttp com.kubukoz%sup-cassandra com.kubukoz%sup-http4s com.kubukoz%sup-log4cats com.kubukoz%sup-core com.kubukoz%sup-scalacache com.kubukoz%sup-redis", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - "excludeLibraryDependency org.polyvariant:better-tostring_{scalaVersion}" - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala_3 = \"3.1.3\"", - "replaceWith":"val Scala_3 = \"\"" - } - ] - } - }, - "kuceramartin/tyqu":{ - "project":"kuceramartin/tyqu", - "repoUrl":"https://github.com/kuceramartin/tyqu.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"ch.epfl.tyqu%tyqu" - }, - "kzmake/uuid7s":{ - "project":"kzmake/uuid7s", - "repoUrl":"https://github.com/kzmake/uuid7s.git", - "revision":"v0.1.3", - "version":"0.1.3", - "targets":"io.github.kzmake%uuid7s", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "l-space/types":{ - "project":"l-space/types", - "repoUrl":"https://github.com/l-space/types.git", - "revision":"v0.2.1", - "version":"0.2.1", - "targets":"eu.l-space%types eu.l-space%root", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "lambdaworks/scountries":{ - "project":"lambdaworks/scountries", - "repoUrl":"https://github.com/lambdaworks/scountries.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"io.lambdaworks%scountries", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3: String = \"3.2.2\"", - "replaceWith":"val Scala3: String = \"\"" - } - ] - } - }, - "lambdaworks/scurl-detector":{ - "project":"lambdaworks/scurl-detector", - "repoUrl":"https://github.com/lambdaworks/scurl-detector.git", - "revision":"v1.1.0", - "version":"1.1.0", - "targets":"io.lambdaworks%scurl-detector", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3: String = \"3.2.2\"", - "replaceWith":"val Scala3: String = \"\"" - } - ] - } - }, - "lambdaworks/zio-elasticsearch":{ - "project":"lambdaworks/zio-elasticsearch", - "repoUrl":"https://github.com/lambdaworks/zio-elasticsearch.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"io.lambdaworks%zio-elasticsearch", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"project/BuildHelper.scala", - "pattern":"val Scala3: String = \"3.3.0\"", - "replaceWith":"val Scala3: String = \"\"" - } - ] - } - }, - "lancewalton/treelog":{ - "project":"lancewalton/treelog", - "repoUrl":"https://github.com/lancewalton/treelog.git", - "revision":"v1.9.0", - "version":"1.9.0", - "targets":"com.casualmiracles%treelog-cats", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", - "replaceWith":"val Scala3 = \"\"" - } - ] - } - }, - "laserdisc-io/fs2-aws":{ - "project":"laserdisc-io/fs2-aws", - "repoUrl":"https://github.com/laserdisc-io/fs2-aws.git", - "revision":"v6.0.4", - "version":"6.0.4", - "targets":"io.laserdisc%fs2-aws-s3 io.laserdisc%pure-sqs-tagless io.laserdisc%pure-cloudwatch-tagless io.laserdisc%pure-sns-tagless io.laserdisc%fs2-aws-kinesis io.laserdisc%pure-dynamodb-tagless io.laserdisc%fs2-aws-dynamodb io.laserdisc%fs2-aws-sns io.laserdisc%fs2-aws-testkit io.laserdisc%pure-kinesis-tagless io.laserdisc%fs2-aws-core io.laserdisc%pure-s3-tagless io.laserdisc%fs2-aws-sqs", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - "disableFatalWarnings" - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"compile-only", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "laserdisc-io/log-effect":{ - "project":"laserdisc-io/log-effect", - "repoUrl":"https://github.com/laserdisc-io/log-effect.git", - "revision":"v0.17.0", - "version":"0.17.0", - "targets":"io.laserdisc%log-effect-core io.laserdisc%log-effect-fs2 io.laserdisc%log-effect-interop io.laserdisc%log-effect-zio", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala_3 = \"3.2.1\"", - "replaceWith":"val scala_3 = \"\"" - } - ] - } - }, - "laserdisc-io/scanamo-circe":{ - "project":"laserdisc-io/scanamo-circe", - "repoUrl":"https://github.com/laserdisc-io/scanamo-circe.git", - "revision":"v3.1.0", - "version":"3.1.0", - "targets":"io.laserdisc%scanamo-circe", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "laserdisc-io/slack4s":{ - "project":"laserdisc-io/slack4s", - "repoUrl":"https://github.com/laserdisc-io/slack4s.git", - "revision":"v3.0.0-M1", - "version":"3.0.0-M1", - "targets":"io.laserdisc%slack4s", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "lego/woof":{ - "project":"lego/woof", - "repoUrl":"https://github.com/lego/woof.git", - "revision":"v0.7.0", - "version":"0.7.0", - "targets":"org.legogroup%woof-http4s org.legogroup%woof-slf4j-common org.legogroup%woof-slf4j org.legogroup%woof-core org.legogroup%woof-slf4j-2", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "lemonlabsuk/scala-uri":{ - "project":"lemonlabsuk/scala-uri", - "repoUrl":"https://github.com/lemonlabsuk/scala-uri.git", - "revision":"4.0.3", - "version":"4.0.3", - "targets":"io.lemonlabs%scala-uri", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "leviysoft/oolong":{ - "project":"leviysoft/oolong", - "repoUrl":"https://github.com/leviysoft/oolong.git", - "revision":"v0.3.0", - "version":"0.3.0", - "targets":"io.github.leviysoft%oolong-bson io.github.leviysoft%oolong-core io.github.leviysoft%oolong-mongo", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "lhns/cats-effect-utils":{ - "project":"lhns/cats-effect-utils", - "repoUrl":"https://github.com/lhns/cats-effect-utils.git", - "revision":"0.3.0", - "version":"0.3.0", - "targets":"de.lolhens%cats-effect-utils" - }, - "lhns/doobie-flyway":{ - "project":"lhns/doobie-flyway", - "repoUrl":"https://github.com/lhns/doobie-flyway.git", - "revision":"0.4.1", - "version":"0.4.1", - "targets":"de.lhns%doobie-flyway", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "lhns/fs2-compress":{ - "project":"lhns/fs2-compress", - "repoUrl":"https://github.com/lhns/fs2-compress.git", - "revision":"1.0.0", - "version":"1.0.0", - "targets":"de.lhns%fs2-compress-bzip2 de.lhns%fs2-compress de.lhns%fs2-compress-zstd de.lhns%fs2-compress-tar de.lhns%fs2-compress-brotli de.lhns%fs2-compress-zip de.lhns%fs2-compress-gzip", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "lhns/fs2-functork":{ - "project":"lhns/fs2-functork", - "repoUrl":"https://github.com/lhns/fs2-functork.git", - "revision":"0.2.1", - "version":"0.2.1", - "targets":"de.lhns%fs2-functork de.lhns%fs2-functork-doobie", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "lhns/fs2-utils":{ - "project":"lhns/fs2-utils", - "repoUrl":"https://github.com/lhns/fs2-utils.git", - "revision":"0.4.0", - "version":"0.4.0", - "targets":"de.lhns%fs2-utils de.lhns%fs2-io-utils", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "lhns/http4s-errors":{ - "project":"lhns/http4s-errors", - "repoUrl":"https://github.com/lhns/http4s-errors.git", - "revision":"0.5.1", - "version":"0.5.1", - "targets":"de.lhns%http4s-errors", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "lhns/http4s-jwt-auth":{ - "project":"lhns/http4s-jwt-auth", - "repoUrl":"https://github.com/lhns/http4s-jwt-auth.git", - "revision":"0.5.0", - "version":"0.5.0", - "targets":"de.lhns%http4s-jwt-auth", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "lhns/http4s-spa":{ - "project":"lhns/http4s-spa", - "repoUrl":"https://github.com/lhns/http4s-spa.git", - "revision":"0.6.2", - "version":"0.6.2", - "targets":"de.lhns%http4s-spa", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "lhns/munit-tagless-final":{ - "project":"lhns/munit-tagless-final", - "repoUrl":"https://github.com/lhns/munit-tagless-final.git", - "revision":"0.2.1", - "version":"0.2.1", - "targets":"de.lhns%munit-tagless-final", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "lhns/nifi-scala":{ - "project":"lhns/nifi-scala", - "repoUrl":"https://github.com/lhns/nifi-scala.git", - "revision":"0.3.2", - "version":"0.3.2", - "targets":"de.lhns%nifi-scala", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "lhns/remote-io":{ - "project":"lhns/remote-io", - "repoUrl":"https://github.com/lhns/remote-io.git", - "revision":"0.0.1", - "version":"0.0.1", - "targets":"de.lolhens%remote-io-core de.lolhens%remote-io-http4s", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "lhns/scala-commandline":{ - "project":"lhns/scala-commandline", - "repoUrl":"https://github.com/lhns/scala-commandline.git", - "revision":"0.4.0", - "version":"0.4.0", - "targets":"de.lhns%scala-commandline", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "lhns/scala-edifact":{ - "project":"lhns/scala-edifact", - "repoUrl":"https://github.com/lhns/scala-edifact.git", - "revision":"0.1.0", - "version":"0.1.0", - "targets":"de.lolhens%scala-edifact", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "lhns/scala-trustmanager-utils":{ - "project":"lhns/scala-trustmanager-utils", - "repoUrl":"https://github.com/lhns/scala-trustmanager-utils.git", - "revision":"1.0.0", - "version":"1.0.0", - "targets":"de.lhns%scala-trustmanager-utils", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "lichess-org/lila":{ - "project":"lichess-org/lila", - "repoUrl":"https://github.com/lichess-org/lila.git", - "revision":"", - "version":"HEAD", - "targets":"*%*", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "lichess-org/lila-ws":{ - "project":"lichess-org/lila-ws", - "repoUrl":"https://github.com/lichess-org/lila-ws.git", - "revision":"", - "version":"HEAD", - "targets":"*%*", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"21" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "lichess-org/playframework-lila":{ - "project":"lichess-org/playframework-lila", - "repoUrl":"https://github.com/lichess-org/playframework-lila.git", - "revision":"", - "version":"HEAD", - "targets":"*%*" - }, - "lichess-org/scalachess":{ - "project":"lichess-org/scalachess", - "repoUrl":"https://github.com/lichess-org/scalachess.git", - "revision":"", - "version":"HEAD", - "targets":"*%*", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"21" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"compile-only", - "sourcePatches":[ - - ] - } - }, - "liewhite/common":{ - "project":"liewhite/common", - "repoUrl":"https://github.com/liewhite/common.git", + "kuceramartin/tyqu":{ + "project":"kuceramartin/tyqu", + "repoUrl":"https://github.com/kuceramartin/tyqu.git", "revision":"v0.0.2", "version":"0.0.2", - "targets":"io.github.liewhite%rpc4s", + "targets":"ch.epfl.tyqu%tyqu" + }, + "kzmake/uuid7s":{ + "project":"kzmake/uuid7s", + "repoUrl":"https://github.com/kzmake/uuid7s.git", + "revision":"v0.1.3", + "version":"0.1.3", + "targets":"io.github.kzmake%uuid7s", "config":{ "projects":{ "exclude":[ @@ -23290,7 +18374,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -23311,12 +18395,12 @@ ] } }, - "liewhite/swopen":{ - "project":"liewhite/swopen", - "repoUrl":"https://github.com/liewhite/swopen.git", - "revision":"v0.17.5", - "version":"0.17.5", - "targets":"io.github.liewhite%json io.github.liewhite%config io.github.liewhite%sqlx io.github.liewhite%common io.github.liewhite%web3", + "l-space/types":{ + "project":"l-space/types", + "repoUrl":"https://github.com/l-space/types.git", + "revision":"v0.2.1", + "version":"0.2.1", + "targets":"eu.l-space%types eu.l-space%root", "config":{ "projects":{ "exclude":[ @@ -23348,12 +18432,12 @@ ] } }, - "lightbend-labs/lightbend-emoji":{ - "project":"lightbend-labs/lightbend-emoji", - "repoUrl":"https://github.com/lightbend-labs/lightbend-emoji.git", - "revision":"1.3.0", - "version":"1.3.0", - "targets":"com.lightbend%emoji", + "lambdaworks/scountries":{ + "project":"lambdaworks/scountries", + "repoUrl":"https://github.com/lambdaworks/scountries.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"io.lambdaworks%scountries", "config":{ "projects":{ "exclude":[ @@ -23381,53 +18465,20 @@ }, "tests":"full", "sourcePatches":[ - - ] - } - }, - "lightbend-labs/scala-logging":{ - "project":"lightbend-labs/scala-logging", - "repoUrl":"https://github.com/lightbend-labs/scala-logging.git", - "revision":"v3.9.5", - "version":"3.9.5", - "targets":"com.typesafe.scala-logging%scala-logging", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - + { + "path":"build.sbt", + "pattern":"val Scala3: String = \"3.2.2\"", + "replaceWith":"val Scala3: String = \"\"" } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - ] } }, - "lightbend/mima":{ - "project":"lightbend/mima", - "repoUrl":"https://github.com/lightbend/mima.git", - "revision":"1.1.3", - "version":"1.1.3", - "targets":"com.typesafe%mima-core", + "lambdaworks/scurl-detector":{ + "project":"lambdaworks/scurl-detector", + "repoUrl":"https://github.com/lambdaworks/scurl-detector.git", + "revision":"v1.1.0", + "version":"1.1.0", + "targets":"io.lambdaworks%scurl-detector", "config":{ "projects":{ "exclude":[ @@ -23457,18 +18508,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val Scala3: String = \"3.2.2\"", + "replaceWith":"val Scala3: String = \"\"" } ] } }, - "lightbend/ssl-config":{ - "project":"lightbend/ssl-config", - "repoUrl":"https://github.com/lightbend/ssl-config.git", - "revision":"v0.6.1", - "version":"0.6.1", - "targets":"com.typesafe%ssl-config-core", + "lambdaworks/zio-elasticsearch":{ + "project":"lambdaworks/zio-elasticsearch", + "repoUrl":"https://github.com/lambdaworks/zio-elasticsearch.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.lambdaworks%zio-elasticsearch", "config":{ "projects":{ "exclude":[ @@ -23479,7 +18530,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -23497,26 +18548,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.0.2\"", - "replaceWith":"val scala3 = \"\"" + "path":"project/BuildHelper.scala", + "pattern":"val Scala3: String = \"3.2.2\"", + "replaceWith":"val Scala3: String = \"\"" } ] } }, - "likeligood-ab/scala-react":{ - "project":"likeligood-ab/scala-react", - "repoUrl":"https://github.com/likeligood-ab/scala-react.git", - "revision":"", - "version":"0.1.0", - "targets":"com.likeligood%scala-react" - }, - "linyxus/papiers-core":{ - "project":"linyxus/papiers-core", - "repoUrl":"https://github.com/linyxus/papiers-core.git", - "revision":"", - "version":"0.2.0", - "targets":"io.github.linyxus%papiers-core", + "lancewalton/treelog":{ + "project":"lancewalton/treelog", + "repoUrl":"https://github.com/lancewalton/treelog.git", + "revision":"v1.8.2", + "version":"1.8.2", + "targets":"com.casualmiracles%treelog-cats", "config":{ "projects":{ "exclude":[ @@ -23527,7 +18571,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -23542,22 +18586,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0-RC3\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val Scala3 = \"3.1.0\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "liquibase4s/liquibase4s":{ - "project":"liquibase4s/liquibase4s", - "repoUrl":"https://github.com/liquibase4s/liquibase4s.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"io.github.liquibase4s%liquibase4s-cats-effect io.github.liquibase4s%liquibase4s-core", + "laserdisc-io/fs2-aws":{ + "project":"laserdisc-io/fs2-aws", + "repoUrl":"https://github.com/laserdisc-io/fs2-aws.git", + "revision":"v6.0.0", + "version":"6.0.0", + "targets":"io.laserdisc%fs2-aws-s3 io.laserdisc%pure-sqs-tagless io.laserdisc%pure-cloudwatch-tagless io.laserdisc%pure-sns-tagless io.laserdisc%fs2-aws-kinesis io.laserdisc%pure-dynamodb-tagless io.laserdisc%fs2-aws-dynamodb io.laserdisc%fs2-aws-sns io.laserdisc%fs2-aws-testkit io.laserdisc%pure-kinesis-tagless io.laserdisc%fs2-aws-core io.laserdisc%pure-s3-tagless io.laserdisc%fs2-aws-sqs", "config":{ "projects":{ "exclude":[ @@ -23572,7 +18616,7 @@ }, "sbt":{ "commands":[ - + "disableFatalWarnings" ], "options":[ @@ -23583,76 +18627,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - - ] - } - }, - "lloydmeta/enumeratum":{ - "project":"lloydmeta/enumeratum", - "repoUrl":"https://github.com/lloydmeta/enumeratum.git", - "revision":"master", - "version":"1.7.3", - "targets":"com.beachape%enumeratum-argonaut com.beachape%enumeratum-quill com.beachape%enumeratum-scalacheck com.beachape%enumeratum com.beachape%enumeratum-play-json com.beachape%enumeratum-circe com.beachape%enumeratum-reactivemongo-bson com.beachape%enumeratum-doobie com.beachape%enumeratum-play com.beachape%enumeratum-test com.beachape%enumeratum-cats", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.1\"", + "replaceWith":"val scala3 = \"\"" } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - "-Denumeratum.useLocalVersion=true" - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - ] } }, - "lloydmeta/ltsv-logger":{ - "project":"lloydmeta/ltsv-logger", - "repoUrl":"https://github.com/lloydmeta/ltsv-logger.git", - "revision":"0.1.1", - "version":"0.1.1", - "targets":"com.beachape%ltsv-logger" - }, - "lloydmeta/play-csv":{ - "project":"lloydmeta/play-csv", - "repoUrl":"https://github.com/lloydmeta/play-csv.git", - "revision":"1.7", - "version":"1.7", - "targets":"com.beachape%play-csv" - }, - "log4s/log4s":{ - "project":"log4s/log4s", - "repoUrl":"https://github.com/log4s/log4s.git", - "revision":"v1.10.0", - "version":"1.10.0", - "targets":"org.log4s%log4s org.log4s%log4s-testing" - }, - "logging4s/logging4s":{ - "project":"logging4s/logging4s", - "repoUrl":"https://github.com/logging4s/logging4s.git", - "revision":"v0.2.3", - "version":"0.2.3", - "targets":"org.logging4s%logging4s-zio org.logging4s%logging4s-ce-2 org.logging4s%logging4s-json4s org.logging4s%logging4s-core org.logging4s%logging4s-jsoniter org.logging4s%logging4s-circe org.logging4s%logging4s-cats-core org.logging4s%logging4s-ce-3 org.logging4s%logging4s-argonaut org.logging4s%logging4s-play-json", + "laserdisc-io/log-effect":{ + "project":"laserdisc-io/log-effect", + "repoUrl":"https://github.com/laserdisc-io/log-effect.git", + "revision":"v0.17.0", + "version":"0.17.0", + "targets":"io.laserdisc%log-effect-core io.laserdisc%log-effect-fs2 io.laserdisc%log-effect-interop io.laserdisc%log-effect-zio", "config":{ "projects":{ "exclude":[ @@ -23681,19 +18671,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" + "path":"build.sbt", + "pattern":"val scala_3 = \"3.2.1\"", + "replaceWith":"val scala_3 = \"\"" } ] } }, - "lolgab/snunit":{ - "project":"lolgab/snunit", - "repoUrl":"https://github.com/lolgab/snunit.git", - "revision":"0.3.0", - "version":"0.3.0", - "targets":"com.github.lolgab%snunit com.github.lolgab%snunit-tapir", + "laserdisc-io/scanamo-circe":{ + "project":"laserdisc-io/scanamo-circe", + "repoUrl":"https://github.com/laserdisc-io/scanamo-circe.git", + "revision":"v3.0.0", + "version":"3.0.0", + "targets":"io.laserdisc%scanamo-circe", "config":{ "projects":{ "exclude":[ @@ -23704,44 +18694,7 @@ } }, "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - ] - } - }, - "lomigmegard/akka-http-cors":{ - "project":"lomigmegard/akka-http-cors", - "repoUrl":"https://github.com/lomigmegard/akka-http-cors.git", - "revision":"v1.2.0", - "version":"1.2.0", - "targets":"ch.megard%akka-http-cors", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" }, "sbt":{ "commands":[ @@ -23757,114 +18710,21 @@ ] }, "tests":"full", - "sourcePatches":[ - - ] - } - }, - "lorandszakacs/enclosure":{ - "project":"lorandszakacs/enclosure", - "repoUrl":"https://github.com/lorandszakacs/enclosure.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"com.lorandszakacs%enclosure", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - "set every Test/classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat" - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.1\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "losizm/bolster":{ - "project":"losizm/bolster", - "repoUrl":"https://github.com/losizm/bolster.git", - "revision":"v4.0.0", - "version":"4.0.0", - "targets":"com.github.losizm%bolster" - }, - "losizm/ergo":{ - "project":"losizm/ergo", - "repoUrl":"https://github.com/losizm/ergo.git", - "revision":"v1.1.0", - "version":"1.1.0", - "targets":"com.github.losizm%ergo" - }, - "losizm/grapple":{ - "project":"losizm/grapple", - "repoUrl":"https://github.com/losizm/grapple.git", - "revision":"v13.0.0", - "version":"13.0.0", - "targets":"com.github.losizm%grapple" - }, - "losizm/little-cli":{ - "project":"losizm/little-cli", - "repoUrl":"https://github.com/losizm/little-cli.git", - "revision":"v2.0.0", - "version":"2.0.0", - "targets":"com.github.losizm%little-cli" - }, - "losizm/little-config":{ - "project":"losizm/little-config", - "repoUrl":"https://github.com/losizm/little-config.git", - "revision":"v4.0.0", - "version":"4.0.0", - "targets":"com.github.losizm%little-config" - }, - "losizm/little-io":{ - "project":"losizm/little-io", - "repoUrl":"https://github.com/losizm/little-io.git", - "revision":"v9.0.0", - "version":"9.0.0", - "targets":"com.github.losizm%little-io" - }, - "losizm/little-json":{ - "project":"losizm/little-json", - "repoUrl":"https://github.com/losizm/little-json.git", - "revision":"v9.0.0", - "version":"9.0.0", - "targets":"com.github.losizm%little-json" - }, - "losizm/little-security":{ - "project":"losizm/little-security", - "repoUrl":"https://github.com/losizm/little-security.git", - "revision":"v1.1.0", - "version":"1.1.0", - "targets":"com.github.losizm%little-security" - }, - "losizm/little-sql":{ - "project":"losizm/little-sql", - "repoUrl":"https://github.com/losizm/little-sql.git", - "revision":"v8.0.0", - "version":"8.0.0", - "targets":"com.github.losizm%little-sql", + "lego/woof":{ + "project":"lego/woof", + "repoUrl":"https://github.com/lego/woof.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"org.legogroup%woof-http4s org.legogroup%woof-slf4j-common org.legogroup%woof-slf4j org.legogroup%woof-core org.legogroup%woof-slf4j-2", "config":{ "projects":{ "exclude":[ @@ -23875,7 +18735,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -23896,19 +18756,12 @@ ] } }, - "losizm/little-time":{ - "project":"losizm/little-time", - "repoUrl":"https://github.com/losizm/little-time.git", - "revision":"v4.0.2", - "version":"4.0.2", - "targets":"com.github.losizm%little-time" - }, - "losizm/scamper":{ - "project":"losizm/scamper", - "repoUrl":"https://github.com/losizm/scamper.git", - "revision":"v40.0.0", - "version":"40.0.0", - "targets":"com.github.losizm%scamper", + "lemonlabsuk/scala-uri":{ + "project":"lemonlabsuk/scala-uri", + "repoUrl":"https://github.com/lemonlabsuk/scala-uri.git", + "revision":"4.0.3", + "version":"4.0.3", + "targets":"io.lemonlabs%scala-uri", "config":{ "projects":{ "exclude":[ @@ -23919,7 +18772,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -23934,25 +18787,25 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "losizm/t2":{ - "project":"losizm/t2", - "repoUrl":"https://github.com/losizm/t2.git", - "revision":"v2.0.0", - "version":"2.0.0", - "targets":"com.github.losizm%t2" + "lhns/cats-effect-utils":{ + "project":"lhns/cats-effect-utils", + "repoUrl":"https://github.com/lhns/cats-effect-utils.git", + "revision":"0.3.0", + "version":"0.3.0", + "targets":"de.lolhens%cats-effect-utils" }, - "lowmelvin/formify-scala":{ - "project":"lowmelvin/formify-scala", - "repoUrl":"https://github.com/lowmelvin/formify-scala.git", - "revision":"v0.1.4", - "version":"0.1.4", - "targets":"com.melvinlow%formify", + "lhns/doobie-flyway":{ + "project":"lhns/doobie-flyway", + "repoUrl":"https://github.com/lhns/doobie-flyway.git", + "revision":"0.3.4", + "version":"0.3.4", + "targets":"de.lolhens%doobie-flyway", "config":{ "projects":{ "exclude":[ @@ -23984,12 +18837,12 @@ ] } }, - "lowmelvin/hammer-scala":{ - "project":"lowmelvin/hammer-scala", - "repoUrl":"https://github.com/lowmelvin/hammer-scala.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"com.melvinlow%hammer", + "lhns/fs2-compress":{ + "project":"lhns/fs2-compress", + "repoUrl":"https://github.com/lhns/fs2-compress.git", + "revision":"0.5.0", + "version":"0.5.0", + "targets":"de.lhns%fs2-compress-bzip2 de.lhns%fs2-compress de.lhns%fs2-compress-zstd de.lhns%fs2-compress-tar de.lhns%fs2-compress-brotli de.lhns%fs2-compress-zip de.lhns%fs2-compress-gzip", "config":{ "projects":{ "exclude":[ @@ -24021,12 +18874,12 @@ ] } }, - "lunatech-labs/lunatech-play-googleopenconnect":{ - "project":"lunatech-labs/lunatech-play-googleopenconnect", - "repoUrl":"https://github.com/lunatech-labs/lunatech-play-googleopenconnect.git", - "revision":"3.0.0", - "version":"3.0.0", - "targets":"com.lunatech%play-googleopenconnect", + "lhns/fs2-utils":{ + "project":"lhns/fs2-utils", + "repoUrl":"https://github.com/lhns/fs2-utils.git", + "revision":"0.4.0", + "version":"0.4.0", + "targets":"de.lhns%fs2-utils de.lhns%fs2-io-utils", "config":{ "projects":{ "exclude":[ @@ -24058,12 +18911,12 @@ ] } }, - "lunduniversity/introprog-scalalib":{ - "project":"lunduniversity/introprog-scalalib", - "repoUrl":"https://github.com/lunduniversity/introprog-scalalib.git", - "revision":"v1.3.1", - "version":"1.3.1", - "targets":"se.lth.cs%introprog", + "lhns/http4s-errors":{ + "project":"lhns/http4s-errors", + "repoUrl":"https://github.com/lhns/http4s-errors.git", + "revision":"0.5.1", + "version":"0.5.1", + "targets":"de.lhns%http4s-errors", "config":{ "projects":{ "exclude":[ @@ -24074,7 +18927,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -24091,20 +18944,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.0.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "m2-oss/calypso":{ - "project":"m2-oss/calypso", - "repoUrl":"https://github.com/m2-oss/calypso.git", - "revision":"v0.3.0", - "version":"0.3.0", - "targets":"ru.m2%calypso-core ru.m2%calypso-scalapb ru.m2%calypso-testing", + "lhns/http4s-jwt-auth":{ + "project":"lhns/http4s-jwt-auth", + "repoUrl":"https://github.com/lhns/http4s-jwt-auth.git", + "revision":"0.5.0", + "version":"0.5.0", + "targets":"de.lhns%http4s-jwt-auth", "config":{ "projects":{ "exclude":[ @@ -24115,7 +18964,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -24132,20 +18981,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.1.3\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "makiftutuncu/effect":{ - "project":"makiftutuncu/effect", - "repoUrl":"https://github.com/makiftutuncu/effect.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"dev.akif%effect-core", + "lhns/http4s-spa":{ + "project":"lhns/http4s-spa", + "repoUrl":"https://github.com/lhns/http4s-spa.git", + "revision":"0.6.2", + "version":"0.6.2", + "targets":"de.lhns%http4s-spa", "config":{ "projects":{ "exclude":[ @@ -24156,7 +19001,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -24171,18 +19016,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "makingthematrix/inject":{ - "project":"makingthematrix/inject", - "repoUrl":"https://github.com/makingthematrix/inject.git", - "revision":"1.0.0", - "version":"1.0.0", - "targets":"io.github.makingthematrix%inject", + "lhns/munit-tagless-final":{ + "project":"lhns/munit-tagless-final", + "repoUrl":"https://github.com/lhns/munit-tagless-final.git", + "revision":"0.2.1", + "version":"0.2.1", + "targets":"de.lhns%munit-tagless-final", "config":{ "projects":{ "exclude":[ @@ -24214,12 +19059,12 @@ ] } }, - "makingthematrix/signals3":{ - "project":"makingthematrix/signals3", - "repoUrl":"https://github.com/makingthematrix/signals3.git", - "revision":"1.1.1", - "version":"1.1.1", - "targets":"io.github.makingthematrix%signals3", + "lhns/nifi-scala":{ + "project":"lhns/nifi-scala", + "repoUrl":"https://github.com/lhns/nifi-scala.git", + "revision":"0.3.2", + "version":"0.3.2", + "targets":"de.lhns%nifi-scala", "config":{ "projects":{ "exclude":[ @@ -24251,12 +19096,12 @@ ] } }, - "malliina/mobile-push":{ - "project":"malliina/mobile-push", - "repoUrl":"https://github.com/malliina/mobile-push.git", - "revision":"v3.8.2", - "version":"3.8.2", - "targets":"com.malliina%mobile-push", + "lhns/remote-io":{ + "project":"lhns/remote-io", + "repoUrl":"https://github.com/lhns/remote-io.git", + "revision":"0.0.1", + "version":"0.0.1", + "targets":"de.lolhens%remote-io-core de.lolhens%remote-io-http4s", "config":{ "projects":{ "exclude":[ @@ -24288,12 +19133,12 @@ ] } }, - "malliina/sbt-utils":{ - "project":"malliina/sbt-utils", - "repoUrl":"https://github.com/malliina/sbt-utils.git", - "revision":"v1.6.29", - "version":"1.6.29", - "targets":"com.malliina%common-build", + "lhns/scala-commandline":{ + "project":"lhns/scala-commandline", + "repoUrl":"https://github.com/lhns/scala-commandline.git", + "revision":"0.4.0", + "version":"0.4.0", + "targets":"de.lhns%scala-commandline", "config":{ "projects":{ "exclude":[ @@ -24325,12 +19170,12 @@ ] } }, - "malliina/util-base":{ - "project":"malliina/util-base", - "repoUrl":"https://github.com/malliina/util-base.git", - "revision":"v3.1.0", - "version":"3.1.0", - "targets":"com.malliina%util-base", + "lhns/scala-edifact":{ + "project":"lhns/scala-edifact", + "repoUrl":"https://github.com/lhns/scala-edifact.git", + "revision":"0.1.0", + "version":"0.1.0", + "targets":"de.lolhens%scala-edifact", "config":{ "projects":{ "exclude":[ @@ -24341,7 +19186,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -24362,19 +19207,12 @@ ] } }, - "malyszaryczlowiek/foo-repo":{ - "project":"malyszaryczlowiek/foo-repo", - "repoUrl":"https://github.com/malyszaryczlowiek/foo-repo.git", - "revision":"", - "version":"0.1.1", - "targets":"io.github.malyszaryczlowiek%foo-repo" - }, - "malyszaryczlowiek/kessenger-lib":{ - "project":"malyszaryczlowiek/kessenger-lib", - "repoUrl":"https://github.com/malyszaryczlowiek/kessenger-lib.git", - "revision":"v0.3.28", - "version":"0.3.28", - "targets":"io.github.malyszaryczlowiek%kessenger-lib", + "lhns/scala-trustmanager-utils":{ + "project":"lhns/scala-trustmanager-utils", + "repoUrl":"https://github.com/lhns/scala-trustmanager-utils.git", + "revision":"0.3.5", + "version":"0.3.5", + "targets":"de.lhns%scala-trustmanager-utils", "config":{ "projects":{ "exclude":[ @@ -24385,7 +19223,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -24402,20 +19240,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "marchliu/jaskell-dotty":{ - "project":"marchliu/jaskell-dotty", - "repoUrl":"https://github.com/marchliu/jaskell-dotty.git", - "revision":"", - "version":"0.6.3", - "targets":"io.github.marchliu%jaskell-dotty", + "lichess-org/lila":{ + "project":"lichess-org/lila", + "repoUrl":"https://github.com/lichess-org/lila.git", + "revision":"b89249267ee7f34b4bbc2601382b19bf262edb3d", + "version":"HEAD", + "targets":"*%*", "config":{ "projects":{ "exclude":[ @@ -24426,11 +19260,11 @@ } }, "java":{ - + "version":"21" }, "sbt":{ "commands":[ - "set Compile/sources ~= (_.filter(_.getName != \"NewLine.scala\")) " + ], "options":[ @@ -24447,40 +19281,12 @@ ] } }, - "marcinzh/enterprise":{ - "project":"marcinzh/enterprise", - "repoUrl":"https://github.com/marcinzh/enterprise.git", - "revision":"", - "version":"0.2.0", - "targets":"io.github.marcinzh%enterprise-core" - }, - "marcinzh/turbolift":{ - "project":"marcinzh/turbolift", - "repoUrl":"https://github.com/marcinzh/turbolift.git", - "revision":"v0.56.0", - "version":"0.56.0", - "targets":"io.github.marcinzh%turbolift-core io.github.marcinzh%turbolift-extra-effects" - }, - "marcinzh/yamlike":{ - "project":"marcinzh/yamlike", - "repoUrl":"https://github.com/marcinzh/yamlike.git", - "revision":"", - "version":"0.1.0", - "targets":"io.github.marcinzh%yamlayer io.github.marcinzh%yamlist" - }, - "martinhh/scalacheck-derived":{ - "project":"martinhh/scalacheck-derived", - "repoUrl":"https://github.com/martinhh/scalacheck-derived.git", - "revision":"v0.4.2", - "version":"0.4.2", - "targets":"io.github.martinhh%scalacheck-derived" - }, - "massimosiani/monix-newtypes-cats":{ - "project":"massimosiani/monix-newtypes-cats", - "repoUrl":"https://github.com/massimosiani/monix-newtypes-cats.git", - "revision":"v0.0.4", - "version":"0.0.4", - "targets":"io.github.massimosiani%monix-newtypes-cats", + "lichess-org/lila-ws":{ + "project":"lichess-org/lila-ws", + "repoUrl":"https://github.com/lichess-org/lila-ws.git", + "revision":"af3d6cdf590681cd49fb59a8953efb9edb52e719", + "version":"HEAD", + "targets":"*%*", "config":{ "projects":{ "exclude":[ @@ -24491,7 +19297,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -24508,20 +19314,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "massimosiani/skunk":{ - "project":"massimosiani/skunk", - "repoUrl":"https://github.com/massimosiani/skunk.git", - "revision":"", - "version":"0.3.2", - "targets":"io.github.massimosiani%refined io.github.massimosiani%skunk-circe io.github.massimosiani%skunk-core", + "lichess-org/playframework-lila":{ + "project":"lichess-org/playframework-lila", + "repoUrl":"https://github.com/lichess-org/playframework-lila.git", + "revision":"fd39a114845feaca85d6547ce4840d6db29c2add", + "version":"HEAD", + "targets":"*%*", "config":{ "projects":{ "exclude":[ @@ -24532,7 +19334,7 @@ } }, "java":{ - "version":"11" + "version":"21" }, "sbt":{ "commands":[ @@ -24549,20 +19351,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val `scala-3` = \"3.3.0\"", - "replaceWith":"val `scala-3` = \"\"" - } + ] } }, - "mateuszkubuszok/pipez":{ - "project":"mateuszkubuszok/pipez", - "repoUrl":"https://github.com/mateuszkubuszok/pipez.git", - "revision":"v0.5.1", - "version":"0.5.1", - "targets":"com.kubuszok%pipez com.kubuszok%pipez-dsl", + "lichess-org/scalachess":{ + "project":"lichess-org/scalachess", + "repoUrl":"https://github.com/lichess-org/scalachess.git", + "revision":"08457af6849e485bb44ce02d42eace62a5376b37", + "version":"HEAD", + "targets":"*%*", "config":{ "projects":{ "exclude":[ @@ -24573,7 +19371,44 @@ } }, "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"compile-only", + "sourcePatches":[ + ] + } + }, + "liewhite/common":{ + "project":"liewhite/common", + "repoUrl":"https://github.com/liewhite/common.git", + "revision":"v0.0.2", + "version":"0.0.2", + "targets":"io.github.liewhite%rpc4s", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" }, "sbt":{ "commands":[ @@ -24590,20 +19425,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Settings.scala", - "pattern":"case Some((3, 2))", - "replaceWith":"case Some((3, _))" - } + ] } }, - "matsluni/aws-spi-akka-http":{ - "project":"matsluni/aws-spi-akka-http", - "repoUrl":"https://github.com/matsluni/aws-spi-akka-http.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"com.github.matsluni%aws-spi-akka-http", + "liewhite/swopen":{ + "project":"liewhite/swopen", + "repoUrl":"https://github.com/liewhite/swopen.git", + "revision":"v0.17.5", + "version":"0.17.5", + "targets":"io.github.liewhite%json io.github.liewhite%config io.github.liewhite%sqlx io.github.liewhite%common io.github.liewhite%web3", "config":{ "projects":{ "exclude":[ @@ -24614,7 +19445,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -24635,19 +19466,12 @@ ] } }, - "mattlangsenkamp/svgbounds":{ - "project":"mattlangsenkamp/svgbounds", - "repoUrl":"https://github.com/mattlangsenkamp/svgbounds.git", - "revision":"", - "version":"0.1.0", - "targets":"com.mattlangsenkamp.svgBounds%svgbounds" - }, - "max-leuthaeuser/scroll":{ - "project":"max-leuthaeuser/scroll", - "repoUrl":"https://github.com/max-leuthaeuser/scroll.git", - "revision":"", - "version":"3.0", - "targets":"com.github.max-leuthaeuser%scroll", + "lightbend-labs/lightbend-emoji":{ + "project":"lightbend-labs/lightbend-emoji", + "repoUrl":"https://github.com/lightbend-labs/lightbend-emoji.git", + "revision":"1.3.0", + "version":"1.3.0", + "targets":"com.lightbend%emoji", "config":{ "projects":{ "exclude":[ @@ -24679,12 +19503,12 @@ ] } }, - "mdedetrich/pekko-streams-circe":{ - "project":"mdedetrich/pekko-streams-circe", - "repoUrl":"https://github.com/mdedetrich/pekko-streams-circe.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"org.mdedetrich%pekko-http-circe org.mdedetrich%pekko-http-json org.mdedetrich%pekko-stream-circe org.mdedetrich%pekko-stream-json", + "lightbend-labs/scala-logging":{ + "project":"lightbend-labs/scala-logging", + "repoUrl":"https://github.com/lightbend-labs/scala-logging.git", + "revision":"v3.9.5", + "version":"3.9.5", + "targets":"com.typesafe.scala-logging%scala-logging", "config":{ "projects":{ "exclude":[ @@ -24712,20 +19536,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "mdedetrich/scalacheck":{ - "project":"mdedetrich/scalacheck", - "repoUrl":"https://github.com/mdedetrich/scalacheck.git", - "revision":"", - "version":"1.17.0", - "targets":"org.mdedetrich%scalacheck", + "lightbend/mima":{ + "project":"lightbend/mima", + "repoUrl":"https://github.com/lightbend/mima.git", + "revision":"1.1.2", + "version":"1.1.2", + "targets":"com.typesafe%mima-core", "config":{ "projects":{ "exclude":[ @@ -24736,7 +19556,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -24755,18 +19575,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.3\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "medeia/medeia":{ - "project":"medeia/medeia", - "repoUrl":"https://github.com/medeia/medeia.git", - "revision":"v0.11.0", - "version":"0.11.0", - "targets":"de.megaera%medeia de.megaera%medeia-enumeratum de.megaera%medeia-refined", + "lightbend/ssl-config":{ + "project":"lightbend/ssl-config", + "repoUrl":"https://github.com/lightbend/ssl-config.git", + "revision":"v0.6.1", + "version":"0.6.1", + "targets":"com.typesafe%ssl-config-core", "config":{ "projects":{ "exclude":[ @@ -24777,12 +19597,11 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -24795,23 +19614,27 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.0.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "mercurievv/minuscles":{ - "project":"mercurievv/minuscles", - "repoUrl":"https://github.com/mercurievv/minuscles.git", - "revision":"0.1.0", + "likeligood-ab/scala-react":{ + "project":"likeligood-ab/scala-react", + "repoUrl":"https://github.com/likeligood-ab/scala-react.git", + "revision":"68a8ef588dab05ccf0216f7dcaad39ac2cc3aff2", "version":"0.1.0", - "targets":"io.github.mercurievv.minuscles%conversions io.github.mercurievv.minuscles%tuples_plens" + "targets":"com.likeligood%scala-react" }, - "metarank/cfor":{ - "project":"metarank/cfor", - "repoUrl":"https://github.com/metarank/cfor.git", - "revision":"0.3", - "version":"0.3", - "targets":"io.github.metarank%cfor", + "linyxus/papiers-core":{ + "project":"linyxus/papiers-core", + "repoUrl":"https://github.com/linyxus/papiers-core.git", + "revision":"d239ad504cb40f74070338308c0460a2d6a3af4a", + "version":"0.2.0", + "targets":"io.github.linyxus%papiers-core", "config":{ "projects":{ "exclude":[ @@ -24822,7 +19645,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -24839,16 +19662,20 @@ }, "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.3.0-RC3\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "metarank/ltrlib":{ - "project":"metarank/ltrlib", - "repoUrl":"https://github.com/metarank/ltrlib.git", - "revision":"0.2.2", - "version":"0.2.2", - "targets":"io.github.metarank%ltrlib", + "liquibase4s/liquibase4s":{ + "project":"liquibase4s/liquibase4s", + "repoUrl":"https://github.com/liquibase4s/liquibase4s.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"io.github.liquibase4s%liquibase4s-cats-effect io.github.liquibase4s%liquibase4s-core", "config":{ "projects":{ "exclude":[ @@ -24859,7 +19686,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -24874,18 +19701,18 @@ ] }, - "tests":"disabled", + "tests":"full", "sourcePatches":[ ] } }, - "milessabin/shapeless":{ - "project":"milessabin/shapeless", - "repoUrl":"https://github.com/milessabin/shapeless.git", - "revision":"v3.0.0", - "version":"3.0.0", - "targets":"org.typelevel%shapeless3-deriving org.typelevel%shapeless3-test org.typelevel%shapeless3-typeable", + "lloydmeta/enumeratum":{ + "project":"lloydmeta/enumeratum", + "repoUrl":"https://github.com/lloydmeta/enumeratum.git", + "revision":"master", + "version":"1.7.3", + "targets":"com.beachape%enumeratum-doobie", "config":{ "projects":{ "exclude":[ @@ -24896,14 +19723,14 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ ], "options":[ - + "-Denumeratum.useLocalVersion=true" ] }, "mill":{ @@ -24917,19 +19744,26 @@ ] } }, - "mimoguz/layeredfonticon":{ - "project":"mimoguz/layeredfonticon", - "repoUrl":"https://github.com/mimoguz/layeredfonticon.git", - "revision":"", - "version":"0.2.0", - "targets":"io.github.mimoguz%layeredfonticon-basic io.github.mimoguz%layeredfonticon-core io.github.mimoguz%layeredfonticon-flat" + "lloydmeta/ltsv-logger":{ + "project":"lloydmeta/ltsv-logger", + "repoUrl":"https://github.com/lloydmeta/ltsv-logger.git", + "revision":"0.1.1", + "version":"0.1.1", + "targets":"com.beachape%ltsv-logger" }, - "minosiants/pencil":{ - "project":"minosiants/pencil", - "repoUrl":"https://github.com/minosiants/pencil.git", - "revision":"v2.1.0", - "version":"2.1.0", - "targets":"com.minosiants%pencil", + "log4s/log4s":{ + "project":"log4s/log4s", + "repoUrl":"https://github.com/log4s/log4s.git", + "revision":"v1.10.0", + "version":"1.10.0", + "targets":"org.log4s%log4s org.log4s%log4s-testing" + }, + "logging4s/logging4s":{ + "project":"logging4s/logging4s", + "repoUrl":"https://github.com/logging4s/logging4s.git", + "revision":"v0.1.7", + "version":"0.1.7", + "targets":"org.logging4s%logging4s-zio org.logging4s%logging4s-ce-2 org.logging4s%logging4s-json4s org.logging4s%logging4s-core org.logging4s%logging4s-jsoniter org.logging4s%logging4s-circe org.logging4s%logging4s-spray-json org.logging4s%logging4s-cats-core org.logging4s%logging4s-ce-3 org.logging4s%logging4s-argonaut org.logging4s%logging4s-play-json", "config":{ "projects":{ "exclude":[ @@ -24940,7 +19774,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -24957,16 +19791,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "mixql/mixql-core":{ - "project":"mixql/mixql-core", - "repoUrl":"https://github.com/mixql/mixql-core.git", - "revision":"v0.9.1", - "version":"0.9.1", - "targets":"org.mixql%mixql-core", + "lolgab/snunit":{ + "project":"lolgab/snunit", + "repoUrl":"https://github.com/lolgab/snunit.git", + "revision":"0.3.0", + "version":"0.3.0", + "targets":"com.github.lolgab%snunit com.github.lolgab%snunit-tapir", "config":{ "projects":{ "exclude":[ @@ -24977,7 +19815,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -24994,20 +19832,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.3\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "mixql/mixql-engine":{ - "project":"mixql/mixql-engine", - "repoUrl":"https://github.com/mixql/mixql-engine.git", - "revision":"v.0.1.0", - "version":"0.1.0", - "targets":"org.mixql%mixql-engine org.mixql%mixql-cluster", + "lomigmegard/akka-http-cors":{ + "project":"lomigmegard/akka-http-cors", + "repoUrl":"https://github.com/lomigmegard/akka-http-cors.git", + "revision":"v1.2.0", + "version":"1.2.0", + "targets":"ch.megard%akka-http-cors", "config":{ "projects":{ "exclude":[ @@ -25018,7 +19852,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -25035,27 +19869,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "mixql/mixql-engine-stub":{ - "project":"mixql/mixql-engine-stub", - "repoUrl":"https://github.com/mixql/mixql-engine-stub.git", - "revision":"", - "version":"0.9.1.1", - "targets":"org.mixql%mixql-engine-stub org.mixql%mixql-engine-sqlite org.mixql%mixql-engine-sqlite-local org.mixql%mixql-engine-stub-local" - }, - "mixql/mixql-protobuf":{ - "project":"mixql/mixql-protobuf", - "repoUrl":"https://github.com/mixql/mixql-protobuf.git", - "revision":"v.0.1.0", - "version":"0.1.0", - "targets":"org.mixql%mixql-protobuf", + "lorandszakacs/enclosure":{ + "project":"lorandszakacs/enclosure", + "repoUrl":"https://github.com/lorandszakacs/enclosure.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"com.lorandszakacs%enclosure", "config":{ "projects":{ "exclude":[ @@ -25066,11 +19889,11 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ - + "set every Test/classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat" ], "options":[ @@ -25085,18 +19908,74 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.1\"", + "pattern":"val Scala3 = \"3.1.1\"", "replaceWith":"val Scala3 = \"\"" } ] } }, - "mjakubowski84/parquet4s":{ - "project":"mjakubowski84/parquet4s", - "repoUrl":"https://github.com/mjakubowski84/parquet4s.git", - "revision":"v2.13.0", - "version":"2.13.0", - "targets":"com.github.mjakubowski84%parquet4s-akka com.github.mjakubowski84%parquet4s-core com.github.mjakubowski84%parquet4s-fs2 com.github.mjakubowski84%parquet4s-scalapb", + "losizm/bolster":{ + "project":"losizm/bolster", + "repoUrl":"https://github.com/losizm/bolster.git", + "revision":"v4.0.0", + "version":"4.0.0", + "targets":"com.github.losizm%bolster" + }, + "losizm/ergo":{ + "project":"losizm/ergo", + "repoUrl":"https://github.com/losizm/ergo.git", + "revision":"v1.1.0", + "version":"1.1.0", + "targets":"com.github.losizm%ergo" + }, + "losizm/grapple":{ + "project":"losizm/grapple", + "repoUrl":"https://github.com/losizm/grapple.git", + "revision":"v13.0.0", + "version":"13.0.0", + "targets":"com.github.losizm%grapple" + }, + "losizm/little-cli":{ + "project":"losizm/little-cli", + "repoUrl":"https://github.com/losizm/little-cli.git", + "revision":"v2.0.0", + "version":"2.0.0", + "targets":"com.github.losizm%little-cli" + }, + "losizm/little-config":{ + "project":"losizm/little-config", + "repoUrl":"https://github.com/losizm/little-config.git", + "revision":"v4.0.0", + "version":"4.0.0", + "targets":"com.github.losizm%little-config" + }, + "losizm/little-io":{ + "project":"losizm/little-io", + "repoUrl":"https://github.com/losizm/little-io.git", + "revision":"v9.0.0", + "version":"9.0.0", + "targets":"com.github.losizm%little-io" + }, + "losizm/little-json":{ + "project":"losizm/little-json", + "repoUrl":"https://github.com/losizm/little-json.git", + "revision":"v9.0.0", + "version":"9.0.0", + "targets":"com.github.losizm%little-json" + }, + "losizm/little-security":{ + "project":"losizm/little-security", + "repoUrl":"https://github.com/losizm/little-security.git", + "revision":"v1.1.0", + "version":"1.1.0", + "targets":"com.github.losizm%little-security" + }, + "losizm/little-sql":{ + "project":"losizm/little-sql", + "repoUrl":"https://github.com/losizm/little-sql.git", + "revision":"v8.0.0", + "version":"8.0.0", + "targets":"com.github.losizm%little-sql", "config":{ "projects":{ "exclude":[ @@ -25128,12 +20007,19 @@ ] } }, - "mkroli/dns4s":{ - "project":"mkroli/dns4s", - "repoUrl":"https://github.com/mkroli/dns4s.git", - "revision":"v0.21.0", - "version":"0.21.0", - "targets":"com.github.mkroli%dns4s-akka com.github.mkroli%dns4s-core com.github.mkroli%dns4s-fs2 com.github.mkroli%dns4s-netty", + "losizm/little-time":{ + "project":"losizm/little-time", + "repoUrl":"https://github.com/losizm/little-time.git", + "revision":"v4.0.0", + "version":"4.0.0", + "targets":"com.github.losizm%little-time" + }, + "losizm/scamper":{ + "project":"losizm/scamper", + "repoUrl":"https://github.com/losizm/scamper.git", + "revision":"v38.0.0", + "version":"38.0.0", + "targets":"com.github.losizm%scamper", "config":{ "projects":{ "exclude":[ @@ -25144,7 +20030,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -25165,19 +20051,19 @@ ] } }, - "mkroli/lpm":{ - "project":"mkroli/lpm", - "repoUrl":"https://github.com/mkroli/lpm.git", - "revision":"v0.8.0", - "version":"0.8.0", - "targets":"com.github.mkroli%lpm" + "losizm/t2":{ + "project":"losizm/t2", + "repoUrl":"https://github.com/losizm/t2.git", + "revision":"v2.0.0", + "version":"2.0.0", + "targets":"com.github.losizm%t2" }, - "mobimeo/fs2-gtfs":{ - "project":"mobimeo/fs2-gtfs", - "repoUrl":"https://github.com/mobimeo/fs2-gtfs.git", - "revision":"v0.4.1", - "version":"0.4.1", - "targets":"com.mobimeo%fs2-gtfs-core com.mobimeo%fs2-gtfs-rules com.mobimeo%fs2-gtfs-rules-syntax", + "lunduniversity/introprog-scalalib":{ + "project":"lunduniversity/introprog-scalalib", + "repoUrl":"https://github.com/lunduniversity/introprog-scalalib.git", + "revision":"v1.3.1", + "version":"1.3.1", + "targets":"se.lth.cs%introprog", "config":{ "projects":{ "exclude":[ @@ -25188,7 +20074,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -25207,18 +20093,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.1.2\"", + "pattern":"val scala3 = \"3.0.2\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "molarmanful/sclin":{ - "project":"molarmanful/sclin", - "repoUrl":"https://github.com/molarmanful/sclin.git", - "revision":"v0.2.4", - "version":"0.2.4", - "targets":"io.github.molarmanful%sclin", + "m2-oss/calypso":{ + "project":"m2-oss/calypso", + "repoUrl":"https://github.com/m2-oss/calypso.git", + "revision":"v0.3.0", + "version":"0.3.0", + "targets":"ru.m2%calypso-core ru.m2%calypso-scalapb ru.m2%calypso-testing", "config":{ "projects":{ "exclude":[ @@ -25229,7 +20115,7 @@ } }, "java":{ - "version":"21" + }, "sbt":{ "commands":[ @@ -25246,16 +20132,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.1.3\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "monix/implicitbox":{ - "project":"monix/implicitbox", - "repoUrl":"https://github.com/monix/implicitbox.git", - "revision":"v0.3.4", - "version":"0.3.4", - "targets":"io.monix%implicitbox", + "makiftutuncu/effect":{ + "project":"makiftutuncu/effect", + "repoUrl":"https://github.com/makiftutuncu/effect.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"dev.akif%effect-core", "config":{ "projects":{ "exclude":[ @@ -25266,11 +20156,11 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ - "set every Test/classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat" + ], "options":[ @@ -25281,18 +20171,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "monix/minitest":{ - "project":"monix/minitest", - "repoUrl":"https://github.com/monix/minitest.git", - "revision":"v2.9.6", - "version":"2.9.6", - "targets":"io.monix%minitest io.monix%minitest-laws", + "makingthematrix/signals3":{ + "project":"makingthematrix/signals3", + "repoUrl":"https://github.com/makingthematrix/signals3.git", + "revision":"1.1.0", + "version":"1.1.0", + "targets":"io.github.makingthematrix%signals3", "config":{ "projects":{ "exclude":[ @@ -25303,11 +20193,11 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ - "set every Test/classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat" + ], "options":[ @@ -25324,12 +20214,12 @@ ] } }, - "monix/monix":{ - "project":"monix/monix", - "repoUrl":"https://github.com/monix/monix.git", - "revision":"v3.4.1", - "version":"3.4.1", - "targets":"io.monix%monix-catnap io.monix%monix io.monix%monix-execution io.monix%monix-eval io.monix%monix-internal-jctools io.monix%monix-reactive io.monix%monix-tail io.monix%monix-java", + "malliina/mobile-push":{ + "project":"malliina/mobile-push", + "repoUrl":"https://github.com/malliina/mobile-push.git", + "revision":"v3.7.1", + "version":"3.7.1", + "targets":"com.malliina%mobile-push", "config":{ "projects":{ "exclude":[ @@ -25361,12 +20251,12 @@ ] } }, - "monix/monix-bio":{ - "project":"monix/monix-bio", - "repoUrl":"https://github.com/monix/monix-bio.git", - "revision":"v1.2.0", - "version":"1.2.0", - "targets":"io.monix%monix-bio", + "malliina/sbt-utils":{ + "project":"malliina/sbt-utils", + "repoUrl":"https://github.com/malliina/sbt-utils.git", + "revision":"v1.6.16", + "version":"1.6.16", + "targets":"com.malliina%common-build", "config":{ "projects":{ "exclude":[ @@ -25377,7 +20267,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -25398,12 +20288,12 @@ ] } }, - "monix/monix-connect":{ - "project":"monix/monix-connect", - "repoUrl":"https://github.com/monix/monix-connect.git", - "revision":"v0.9.0", - "version":"0.9.0", - "targets":"io.monix%monix-sqs io.monix%monix-s3 io.monix%monix-akka io.monix%monix-gcs io.monix%monix-aws-auth io.monix%monix-dynamodb io.monix%monix-elasticsearch io.monix%monix-redis io.monix%monix-hdfs", + "malliina/util-base":{ + "project":"malliina/util-base", + "repoUrl":"https://github.com/malliina/util-base.git", + "revision":"v3.1.0", + "version":"3.1.0", + "targets":"com.malliina%util-base", "config":{ "projects":{ "exclude":[ @@ -25429,18 +20319,25 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "monix/monix-testing":{ - "project":"monix/monix-testing", - "repoUrl":"https://github.com/monix/monix-testing.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"io.monix%monix-testing-minitest io.monix%monix-testing-scalatest io.monix%monix-testing-utest", + "malyszaryczlowiek/foo-repo":{ + "project":"malyszaryczlowiek/foo-repo", + "repoUrl":"https://github.com/malyszaryczlowiek/foo-repo.git", + "revision":"9cd6dd23fb3528ff8535f641d23ff91db5b01021", + "version":"0.1.1", + "targets":"io.github.malyszaryczlowiek%foo-repo" + }, + "malyszaryczlowiek/kessenger-lib":{ + "project":"malyszaryczlowiek/kessenger-lib", + "repoUrl":"https://github.com/malyszaryczlowiek/kessenger-lib.git", + "revision":"v0.3.23", + "version":"0.3.23", + "targets":"io.github.malyszaryczlowiek%kessenger-lib", "config":{ "projects":{ "exclude":[ @@ -25451,7 +20348,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -25468,23 +20365,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "mpollmeier/colordiff":{ - "project":"mpollmeier/colordiff", - "repoUrl":"https://github.com/mpollmeier/colordiff.git", - "revision":"v0.36", - "version":"0.36", - "targets":"com.michaelpollmeier%colordiff" - }, - "mpollmeier/scala-repl-pp":{ - "project":"mpollmeier/scala-repl-pp", - "repoUrl":"https://github.com/mpollmeier/scala-repl-pp.git", - "revision":"v0.0.42", - "version":"0.0.42", - "targets":"com.michaelpollmeier%scala-repl-pp-server com.michaelpollmeier%scala-repl-pp-all com.michaelpollmeier%scala-repl-pp", + "marchliu/jaskell-dotty":{ + "project":"marchliu/jaskell-dotty", + "repoUrl":"https://github.com/marchliu/jaskell-dotty.git", + "revision":"22af947d1a8590cd0d5a48891c4b86722053fe44", + "version":"0.6.3", + "targets":"io.github.marchliu%jaskell-dotty", "config":{ "projects":{ "exclude":[ @@ -25495,11 +20389,11 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ - + "set Compile/sources ~= (_.filter(_.getName != \"NewLine.scala\")) " ], "options":[ @@ -25510,18 +20404,39 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "mrdimosthenis/glicko2":{ - "project":"mrdimosthenis/glicko2", - "repoUrl":"https://github.com/mrdimosthenis/glicko2.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"com.github.mrdimosthenis%glicko2", + "marcinzh/turbolift":{ + "project":"marcinzh/turbolift", + "repoUrl":"https://github.com/marcinzh/turbolift.git", + "revision":"v0.25.0", + "version":"0.25.0", + "targets":"io.github.marcinzh%turbolift-core" + }, + "marcinzh/yamlike":{ + "project":"marcinzh/yamlike", + "repoUrl":"https://github.com/marcinzh/yamlike.git", + "revision":"97fbdead062c27fda03aa655af76b092cc7a12a9", + "version":"0.1.0", + "targets":"io.github.marcinzh%yamlayer io.github.marcinzh%yamlist" + }, + "martinhh/scalacheck-derived":{ + "project":"martinhh/scalacheck-derived", + "repoUrl":"https://github.com/martinhh/scalacheck-derived.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"io.github.martinhh%scalacheck-derived" + }, + "massimosiani/monix-newtypes-cats":{ + "project":"massimosiani/monix-newtypes-cats", + "repoUrl":"https://github.com/massimosiani/monix-newtypes-cats.git", + "revision":"v0.0.3", + "version":"0.0.3", + "targets":"io.github.massimosiani%monix-newtypes-cats", "config":{ "projects":{ "exclude":[ @@ -25532,7 +20447,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -25553,12 +20468,12 @@ ] } }, - "mrdimosthenis/scala-synapses":{ - "project":"mrdimosthenis/scala-synapses", - "repoUrl":"https://github.com/mrdimosthenis/scala-synapses.git", - "revision":"v8.0.0", - "version":"8.0.0", - "targets":"com.github.mrdimosthenis%synapses", + "massimosiani/skunk":{ + "project":"massimosiani/skunk", + "repoUrl":"https://github.com/massimosiani/skunk.git", + "revision":"cbc701015b93281c7b8f7da57541987d6c097cf2", + "version":"0.3.2", + "targets":"io.github.massimosiani%refined io.github.massimosiani%skunk-circe io.github.massimosiani%skunk-core", "config":{ "projects":{ "exclude":[ @@ -25588,18 +20503,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.0.1\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val `scala-3` = \"3.2.2\"", + "replaceWith":"val `scala-3` = \"\"" } ] } }, - "msgpack4z/msgpack4z-argonaut":{ - "project":"msgpack4z/msgpack4z-argonaut", - "repoUrl":"https://github.com/msgpack4z/msgpack4z-argonaut.git", - "revision":"v0.8.0", - "version":"0.8.0", - "targets":"com.github.xuwei-k%msgpack4z-argonaut", + "mateuszkubuszok/pipez":{ + "project":"mateuszkubuszok/pipez", + "repoUrl":"https://github.com/mateuszkubuszok/pipez.git", + "revision":"v0.5.1", + "version":"0.5.1", + "targets":"com.kubuszok%pipez com.kubuszok%pipez-dsl", "config":{ "projects":{ "exclude":[ @@ -25610,7 +20525,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -25628,19 +20543,26 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"def Scala3 = \"3.1.1\"", - "replaceWith":"def Scala3 = \"\"" + "path":"project/Settings.scala", + "pattern":"case Some((3, 2))", + "replaceWith":"case Some((3, _))" } ] } }, - "msgpack4z/msgpack4z-circe":{ - "project":"msgpack4z/msgpack4z-circe", - "repoUrl":"https://github.com/msgpack4z/msgpack4z-circe.git", - "revision":"v0.14.0", - "version":"0.14.0", - "targets":"com.github.xuwei-k%msgpack4z-circe", + "mattlangsenkamp/svgbounds":{ + "project":"mattlangsenkamp/svgbounds", + "repoUrl":"https://github.com/mattlangsenkamp/svgbounds.git", + "revision":"62e3642173d1ccf806af63768d45b32bfbdd2000", + "version":"0.1.0", + "targets":"com.mattlangsenkamp.svgBounds%svgbounds" + }, + "max-leuthaeuser/scroll":{ + "project":"max-leuthaeuser/scroll", + "repoUrl":"https://github.com/max-leuthaeuser/scroll.git", + "revision":"003693cb1bb24fed2715a2bf98594618be0d1141", + "version":"3.0", + "targets":"com.github.max-leuthaeuser%scroll", "config":{ "projects":{ "exclude":[ @@ -25651,7 +20573,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -25672,19 +20594,12 @@ ] } }, - "msgpack4z/msgpack4z-core":{ - "project":"msgpack4z/msgpack4z-core", - "repoUrl":"https://github.com/msgpack4z/msgpack4z-core.git", - "revision":"v0.6.1", - "version":"0.6.1", - "targets":"com.github.xuwei-k%msgpack4z-core" - }, - "msgpack4z/msgpack4z-jawn":{ - "project":"msgpack4z/msgpack4z-jawn", - "repoUrl":"https://github.com/msgpack4z/msgpack4z-jawn.git", - "revision":"v0.7.3", - "version":"0.7.3", - "targets":"com.github.xuwei-k%msgpack4z-jawn", + "mdedetrich/scalacheck":{ + "project":"mdedetrich/scalacheck", + "repoUrl":"https://github.com/mdedetrich/scalacheck.git", + "revision":"0d68f357b544705b3b9ebf1d914fd5a1e14a972b", + "version":"1.17.0", + "targets":"org.mdedetrich%scalacheck", "config":{ "projects":{ "exclude":[ @@ -25695,7 +20610,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -25714,18 +20629,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"def Scala3 = \"3.1.0\"", - "replaceWith":"def Scala3 = \"\"" + "pattern":"val Scala3 = \"3.1.3\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "msgpack4z/msgpack4z-play":{ - "project":"msgpack4z/msgpack4z-play", - "repoUrl":"https://github.com/msgpack4z/msgpack4z-play.git", - "revision":"v0.12.0", - "version":"0.12.0", - "targets":"com.github.xuwei-k%msgpack4z-play", + "medeia/medeia":{ + "project":"medeia/medeia", + "repoUrl":"https://github.com/medeia/medeia.git", + "revision":"v0.9.3", + "version":"0.9.3", + "targets":"de.megaera%medeia de.megaera%medeia-enumeratum de.megaera%medeia-refined", "config":{ "projects":{ "exclude":[ @@ -25740,7 +20655,8 @@ }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -25757,12 +20673,12 @@ ] } }, - "mutsuhiro6/ulid-scala3":{ - "project":"mutsuhiro6/ulid-scala3", - "repoUrl":"https://github.com/mutsuhiro6/ulid-scala3.git", - "revision":"v1.0.2", - "version":"1.0.2", - "targets":"io.github.mutsuhiro6%ulid-scala3", + "metarank/cfor":{ + "project":"metarank/cfor", + "repoUrl":"https://github.com/metarank/cfor.git", + "revision":"0.3", + "version":"0.3", + "targets":"io.github.metarank%cfor", "config":{ "projects":{ "exclude":[ @@ -25773,7 +20689,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -25788,22 +20704,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.1.1\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "mvv/sager":{ - "project":"mvv/sager", - "repoUrl":"https://github.com/mvv/sager.git", - "revision":"v0.2-M1", - "version":"0.2-M1", - "targets":"com.github.mvv.sager%sager com.github.mvv.sager%sager-zio com.github.mvv.sager%sager-zio-interop-cats", + "metarank/ltrlib":{ + "project":"metarank/ltrlib", + "repoUrl":"https://github.com/metarank/ltrlib.git", + "revision":"0.2.2", + "version":"0.2.2", + "targets":"io.github.metarank%ltrlib", "config":{ "projects":{ "exclude":[ @@ -25814,11 +20726,11 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ - "disableFatalWarnings" + ], "options":[ @@ -25829,18 +20741,18 @@ ] }, - "tests":"full", + "tests":"disabled", "sourcePatches":[ ] } }, - "mvv/typine":{ - "project":"mvv/typine", - "repoUrl":"https://github.com/mvv/typine.git", - "revision":"v0.1-M4", - "version":"0.1-M4", - "targets":"com.github.mvv.typine%typine", + "milessabin/shapeless":{ + "project":"milessabin/shapeless", + "repoUrl":"https://github.com/milessabin/shapeless.git", + "revision":"v3.0.0", + "version":"3.0.0", + "targets":"org.typelevel%shapeless3-deriving org.typelevel%shapeless3-test org.typelevel%shapeless3-typeable", "config":{ "projects":{ "exclude":[ @@ -25855,7 +20767,7 @@ }, "sbt":{ "commands":[ - "disableFatalWarnings" + ], "options":[ @@ -25872,12 +20784,19 @@ ] } }, - "nafg/cloud-logging-logback-scala":{ - "project":"nafg/cloud-logging-logback-scala", - "repoUrl":"https://github.com/nafg/cloud-logging-logback-scala.git", - "revision":"v0.5.0", - "version":"0.5.0", - "targets":"io.github.nafg.cloudlogging%appender io.github.nafg.cloudlogging%marker", + "mimoguz/layeredfonticon":{ + "project":"mimoguz/layeredfonticon", + "repoUrl":"https://github.com/mimoguz/layeredfonticon.git", + "revision":"a94a562ba3cc53c3b3b1b186c8b543b0777ad6a2", + "version":"0.2.0", + "targets":"io.github.mimoguz%layeredfonticon-basic io.github.mimoguz%layeredfonticon-core io.github.mimoguz%layeredfonticon-flat" + }, + "minosiants/pencil":{ + "project":"minosiants/pencil", + "repoUrl":"https://github.com/minosiants/pencil.git", + "revision":"v1.2.0", + "version":"1.2.0", + "targets":"com.minosiants%pencil", "config":{ "projects":{ "exclude":[ @@ -25909,23 +20828,23 @@ ] } }, - "nafg/css-dsl":{ - "project":"nafg/css-dsl", - "repoUrl":"https://github.com/nafg/css-dsl.git", - "revision":"v0.9.0", - "version":"0.9.0", - "targets":"io.github.nafg.css-dsl%bootstrap3_scalatags io.github.nafg.css-dsl%fomanticui_scalatags io.github.nafg.css-dsl%bootstrap4_scalatags io.github.nafg.css-dsl%bulma_scalatags io.github.nafg.css-dsl%fontawesome_scalatags io.github.nafg.css-dsl%semanticui_scalatags io.github.nafg.css-dsl%bootstrap5_scalatags", + "mixql/mixql-core":{ + "project":"mixql/mixql-core", + "repoUrl":"https://github.com/mixql/mixql-core.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"org.mixql%mixql-core", "config":{ "projects":{ "exclude":[ - "io.github.nafg.css-dsl%fomanticui_scalatags" + ], "overrides":{ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -25942,16 +20861,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.1.3\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "nafg/scala-phonenumber":{ - "project":"nafg/scala-phonenumber", - "repoUrl":"https://github.com/nafg/scala-phonenumber.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"io.github.nafg.scala-phonenumber%scala-phonenumber", + "mixql/mixql-engine":{ + "project":"mixql/mixql-engine", + "repoUrl":"https://github.com/mixql/mixql-engine.git", + "revision":"v.0.1.0", + "version":"0.1.0", + "targets":"org.mixql%mixql-engine org.mixql%mixql-cluster", "config":{ "projects":{ "exclude":[ @@ -25962,7 +20885,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -25979,16 +20902,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "nafg/scheduler":{ - "project":"nafg/scheduler", - "repoUrl":"https://github.com/nafg/scheduler.git", - "revision":"v2.0.2", - "version":"2.0.2", - "targets":"io.github.nafg.scheduler%scheduler", + "mixql/mixql-protobuf":{ + "project":"mixql/mixql-protobuf", + "repoUrl":"https://github.com/mixql/mixql-protobuf.git", + "revision":"v.0.1.0", + "version":"0.1.0", + "targets":"org.mixql%mixql-protobuf", "config":{ "projects":{ "exclude":[ @@ -25999,7 +20926,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -26016,16 +20943,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "nafg/simple-router":{ - "project":"nafg/simple-router", - "repoUrl":"https://github.com/nafg/simple-router.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"io.github.nafg.simple-router%simple-router io.github.nafg.simple-router%core", + "mjakubowski84/parquet4s":{ + "project":"mjakubowski84/parquet4s", + "repoUrl":"https://github.com/mjakubowski84/parquet4s.git", + "revision":"v2.11.0", + "version":"2.11.0", + "targets":"com.github.mjakubowski84%parquet4s-akka com.github.mjakubowski84%parquet4s-core com.github.mjakubowski84%parquet4s-fs2", "config":{ "projects":{ "exclude":[ @@ -26057,12 +20988,12 @@ ] } }, - "nafg/simpleivr":{ - "project":"nafg/simpleivr", - "repoUrl":"https://github.com/nafg/simpleivr.git", - "revision":"v0.8.2", - "version":"0.8.2", - "targets":"io.github.nafg.simpleivr%simpleivr-asterisk io.github.nafg.simpleivr%simpleivr-core io.github.nafg.simpleivr%simpleivr-testing", + "mkroli/dns4s":{ + "project":"mkroli/dns4s", + "repoUrl":"https://github.com/mkroli/dns4s.git", + "revision":"v0.21.0", + "version":"0.21.0", + "targets":"com.github.mkroli%dns4s-akka com.github.mkroli%dns4s-core com.github.mkroli%dns4s-fs2 com.github.mkroli%dns4s-netty", "config":{ "projects":{ "exclude":[ @@ -26073,7 +21004,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -26088,18 +21019,25 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "naoh87/lettucef":{ - "project":"naoh87/lettucef", - "repoUrl":"https://github.com/naoh87/lettucef.git", - "revision":"v0.1.8", - "version":"0.1.8", - "targets":"dev.naoh%lettucef-core dev.naoh%lettucef-extras dev.naoh%lettucef-streams", + "mkroli/lpm":{ + "project":"mkroli/lpm", + "repoUrl":"https://github.com/mkroli/lpm.git", + "revision":"v0.8.0", + "version":"0.8.0", + "targets":"com.github.mkroli%lpm" + }, + "mobimeo/fs2-gtfs":{ + "project":"mobimeo/fs2-gtfs", + "repoUrl":"https://github.com/mobimeo/fs2-gtfs.git", + "revision":"v0.4.1", + "version":"0.4.1", + "targets":"com.mobimeo%fs2-gtfs-core com.mobimeo%fs2-gtfs-rules com.mobimeo%fs2-gtfs-rules-syntax", "config":{ "projects":{ "exclude":[ @@ -26110,7 +21048,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -26125,18 +21063,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "narma/tranzactio":{ - "project":"narma/tranzactio", - "repoUrl":"https://github.com/narma/tranzactio.git", - "revision":"v4.2.0", - "version":"4.2.0", - "targets":"st.alzo%tranzactio", + "molarmanful/sclin":{ + "project":"molarmanful/sclin", + "repoUrl":"https://github.com/molarmanful/sclin.git", + "revision":"v0.1.8", + "version":"0.1.8", + "targets":"io.github.molarmanful%sclin", "config":{ "projects":{ "exclude":[ @@ -26147,7 +21089,7 @@ } }, "java":{ - "version":"17" + "version":"21" }, "sbt":{ "commands":[ @@ -26164,16 +21106,16 @@ }, "tests":"full", "sourcePatches":[ - - ] - } - }, - "narma/zio-docker":{ - "project":"narma/zio-docker", - "repoUrl":"https://github.com/narma/zio-docker.git", - "revision":"v2.0.1-M1", - "version":"2.0.1-M1", - "targets":"st.alzo%zio-docker", + + ] + } + }, + "monix/implicitbox":{ + "project":"monix/implicitbox", + "repoUrl":"https://github.com/monix/implicitbox.git", + "revision":"v0.3.4", + "version":"0.3.4", + "targets":"io.monix%implicitbox", "config":{ "projects":{ "exclude":[ @@ -26184,11 +21126,11 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ - + "set every Test/classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat" ], "options":[ @@ -26205,12 +21147,12 @@ ] } }, - "nationalarchives/dr2-preservica-client":{ - "project":"nationalarchives/dr2-preservica-client", - "repoUrl":"https://github.com/nationalarchives/dr2-preservica-client.git", - "revision":"v0.0.2", - "version":"0.0.2", - "targets":"uk.gov.nationalarchives%preservica-client-root uk.gov.nationalarchives%preservica-client-fs2 uk.gov.nationalarchives%preservica-client-zio", + "monix/minitest":{ + "project":"monix/minitest", + "repoUrl":"https://github.com/monix/minitest.git", + "revision":"v2.9.6", + "version":"2.9.6", + "targets":"io.monix%minitest io.monix%minitest-laws", "config":{ "projects":{ "exclude":[ @@ -26221,11 +21163,11 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ - + "set every Test/classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat" ], "options":[ @@ -26238,20 +21180,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0-RC4\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "nau/scalus":{ - "project":"nau/scalus", - "repoUrl":"https://github.com/nau/scalus.git", - "revision":"v0.3.0", - "version":"0.3.0", - "targets":"org.scalus%scalus org.scalus%scalus-plugin", + "monix/monix":{ + "project":"monix/monix", + "repoUrl":"https://github.com/monix/monix.git", + "revision":"v3.4.1", + "version":"3.4.1", + "targets":"io.monix%monix-catnap io.monix%monix io.monix%monix-execution io.monix%monix-eval io.monix%monix-internal-jctools io.monix%monix-reactive io.monix%monix-tail io.monix%monix-java", "config":{ "projects":{ "exclude":[ @@ -26262,7 +21200,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -26279,20 +21217,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "neandertech/langoustine":{ - "project":"neandertech/langoustine", - "repoUrl":"https://github.com/neandertech/langoustine.git", - "revision":"v0.0.21", - "version":"0.0.21", - "targets":"tech.neander%langoustine-app tech.neander%langoustine-lsp tech.neander%langoustine-meta tech.neander%langoustine-tracer tech.neander%langoustine-tracer-shared", + "monix/monix-bio":{ + "project":"monix/monix-bio", + "repoUrl":"https://github.com/monix/monix-bio.git", + "revision":"v1.2.0", + "version":"1.2.0", + "targets":"io.monix%monix-bio", "config":{ "projects":{ "exclude":[ @@ -26303,7 +21237,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -26324,12 +21258,12 @@ ] } }, - "nebula-contrib/testcontainers-nebula":{ - "project":"nebula-contrib/testcontainers-nebula", - "repoUrl":"https://github.com/nebula-contrib/testcontainers-nebula.git", - "revision":"v0.1.2", - "version":"0.1.2", - "targets":"io.github.jxnu-liguobin%testcontainers-nebula io.github.jxnu-liguobin%testcontainers-nebula-zio", + "monix/monix-connect":{ + "project":"monix/monix-connect", + "repoUrl":"https://github.com/monix/monix-connect.git", + "revision":"v0.9.0", + "version":"0.9.0", + "targets":"io.monix%monix-sqs io.monix%monix-s3 io.monix%monix-akka io.monix%monix-gcs io.monix%monix-aws-auth io.monix%monix-dynamodb io.monix%monix-elasticsearch io.monix%monix-redis io.monix%monix-hdfs", "config":{ "projects":{ "exclude":[ @@ -26355,18 +21289,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "nebula-contrib/zio-nebula":{ - "project":"nebula-contrib/zio-nebula", - "repoUrl":"https://github.com/nebula-contrib/zio-nebula.git", - "revision":"v0.1.1", - "version":"0.1.1", - "targets":"io.github.jxnu-liguobin%zio-nebula", + "monix/monix-testing":{ + "project":"monix/monix-testing", + "repoUrl":"https://github.com/monix/monix-testing.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"io.monix%monix-testing-minitest io.monix%monix-testing-scalatest io.monix%monix-testing-utest", "config":{ "projects":{ "exclude":[ @@ -26398,12 +21332,12 @@ ] } }, - "neotypes/neotypes":{ - "project":"neotypes/neotypes", - "repoUrl":"https://github.com/neotypes/neotypes.git", - "revision":"v1.0.0-M3", - "version":"1.0.0-M3", - "targets":"io.github.neotypes%neotypes-cats-effect io.github.neotypes%neotypes-cats-data io.github.neotypes%neotypes-fs2-stream io.github.neotypes%neotypes-zio io.github.neotypes%neotypes-generic io.github.neotypes%neotypes-monix-stream io.github.neotypes%neotypes-refined io.github.neotypes%neotypes-zio-stream io.github.neotypes%neotypes-akka-stream io.github.neotypes%neotypes-monix io.github.neotypes%neotypes-core io.github.neotypes%neotypes-enumeratum", + "mpollmeier/scala-repl-pp":{ + "project":"mpollmeier/scala-repl-pp", + "repoUrl":"https://github.com/mpollmeier/scala-repl-pp.git", + "revision":"v0.0.42", + "version":"0.0.42", + "targets":"com.michaelpollmeier%scala-repl-pp-server com.michaelpollmeier%scala-repl-pp-all com.michaelpollmeier%scala-repl-pp", "config":{ "projects":{ "exclude":[ @@ -26414,7 +21348,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -26429,22 +21363,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "nicolasfara/ecscala":{ - "project":"nicolasfara/ecscala", - "repoUrl":"https://github.com/nicolasfara/ecscala.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"dev.atedeg%ecscala", + "mrdimosthenis/glicko2":{ + "project":"mrdimosthenis/glicko2", + "repoUrl":"https://github.com/mrdimosthenis/glicko2.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"com.github.mrdimosthenis%glicko2", "config":{ "projects":{ "exclude":[ @@ -26455,7 +21385,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -26472,20 +21402,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.0.1\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "noelwelsh/mads":{ - "project":"noelwelsh/mads", - "repoUrl":"https://github.com/noelwelsh/mads.git", - "revision":"0.2.0", - "version":"0.2.0", - "targets":"org.creativescala%mads", + "mrdimosthenis/scala-synapses":{ + "project":"mrdimosthenis/scala-synapses", + "repoUrl":"https://github.com/mrdimosthenis/scala-synapses.git", + "revision":"v8.0.0", + "version":"8.0.0", + "targets":"com.github.mrdimosthenis%synapses", "config":{ "projects":{ "exclude":[ @@ -26496,11 +21422,11 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ - "disableFatalWarnings" + ], "options":[ @@ -26515,18 +21441,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.0.0\"", + "pattern":"val scala3Version = \"3.0.1\"", "replaceWith":"val scala3Version = \"\"" } ] } }, - "nomadblacky/scalatest-otel-reporter":{ - "project":"nomadblacky/scalatest-otel-reporter", - "repoUrl":"https://github.com/nomadblacky/scalatest-otel-reporter.git", - "revision":"v0.1.0-alpha", - "version":"0.1.0-alpha", - "targets":"dev.nomadblacky%scalatest-otel-reporter", + "msgpack4z/msgpack4z-argonaut":{ + "project":"msgpack4z/msgpack4z-argonaut", + "repoUrl":"https://github.com/msgpack4z/msgpack4z-argonaut.git", + "revision":"v0.8.0", + "version":"0.8.0", + "targets":"com.github.xuwei-k%msgpack4z-argonaut", "config":{ "projects":{ "exclude":[ @@ -26537,7 +21463,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -26556,18 +21482,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"def Scala3 = \"3.1.1\"", + "replaceWith":"def Scala3 = \"\"" } ] } }, - "norbert-radyk/spoiwo":{ - "project":"norbert-radyk/spoiwo", - "repoUrl":"https://github.com/norbert-radyk/spoiwo.git", - "revision":"", - "version":"2.2.1", - "targets":"com.norbitltd%spoiwo com.norbitltd%spoiwo-examples com.norbitltd%spoiwo-grids", + "msgpack4z/msgpack4z-circe":{ + "project":"msgpack4z/msgpack4z-circe", + "repoUrl":"https://github.com/msgpack4z/msgpack4z-circe.git", + "revision":"v0.14.0", + "version":"0.14.0", + "targets":"com.github.xuwei-k%msgpack4z-circe", "config":{ "projects":{ "exclude":[ @@ -26599,12 +21525,19 @@ ] } }, - "note/dhallj-magnolia":{ - "project":"note/dhallj-magnolia", - "repoUrl":"https://github.com/note/dhallj-magnolia.git", - "revision":"v0.1.3", - "version":"0.1.3", - "targets":"pl.msitko%dhallj-magnolia", + "msgpack4z/msgpack4z-core":{ + "project":"msgpack4z/msgpack4z-core", + "repoUrl":"https://github.com/msgpack4z/msgpack4z-core.git", + "revision":"v0.6.1", + "version":"0.6.1", + "targets":"com.github.xuwei-k%msgpack4z-core" + }, + "msgpack4z/msgpack4z-jawn":{ + "project":"msgpack4z/msgpack4z-jawn", + "repoUrl":"https://github.com/msgpack4z/msgpack4z-jawn.git", + "revision":"v0.7.3", + "version":"0.7.3", + "targets":"com.github.xuwei-k%msgpack4z-jawn", "config":{ "projects":{ "exclude":[ @@ -26615,7 +21548,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -26634,18 +21567,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"def Scala3 = \"3.1.0\"", + "replaceWith":"def Scala3 = \"\"" } ] } }, - "note/mini-refined":{ - "project":"note/mini-refined", - "repoUrl":"https://github.com/note/mini-refined.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"pl.msitko%mini-refined", + "msgpack4z/msgpack4z-play":{ + "project":"msgpack4z/msgpack4z-play", + "repoUrl":"https://github.com/msgpack4z/msgpack4z-play.git", + "revision":"v0.11.1", + "version":"0.11.1", + "targets":"com.github.xuwei-k%msgpack4z-play", "config":{ "projects":{ "exclude":[ @@ -26656,7 +21589,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -26677,26 +21610,12 @@ ] } }, - "nremond/pbkdf2-scala":{ - "project":"nremond/pbkdf2-scala", - "repoUrl":"https://github.com/nremond/pbkdf2-scala.git", - "revision":"v0.7.1", - "version":"0.7.1", - "targets":"io.github.nremond%pbkdf2-scala" - }, - "nrinaudo/kantan.parsers":{ - "project":"nrinaudo/kantan.parsers", - "repoUrl":"https://github.com/nrinaudo/kantan.parsers.git", - "revision":"v1.0.6", - "version":"1.0.6", - "targets":"com.nrinaudo%kantan-parsers" - }, - "nrkno/bigquery-scala":{ - "project":"nrkno/bigquery-scala", - "repoUrl":"https://github.com/nrkno/bigquery-scala.git", - "revision":"v0.11.0", - "version":"0.11.0", - "targets":"no.nrk.bigquery%bigquery-codegen no.nrk.bigquery%bigquery-testing no.nrk.bigquery%bigquery-zetasql no.nrk.bigquery%bigquery-core no.nrk.bigquery%bigquery-prometheus", + "mutsuhiro6/ulid-scala3":{ + "project":"mutsuhiro6/ulid-scala3", + "repoUrl":"https://github.com/mutsuhiro6/ulid-scala3.git", + "revision":"v1.0.2", + "version":"1.0.2", + "targets":"io.github.mutsuhiro6%ulid-scala3", "config":{ "projects":{ "exclude":[ @@ -26724,23 +21643,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.1.1\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "nscala-time/nscala-time":{ - "project":"nscala-time/nscala-time", - "repoUrl":"https://github.com/nscala-time/nscala-time.git", - "revision":"releases/2.32.0", - "version":"2.32.0", - "targets":"com.github.nscala-time%nscala-time" - }, - "nthportal/scala-platform":{ - "project":"nthportal/scala-platform", - "repoUrl":"https://github.com/nthportal/scala-platform.git", - "revision":"v1.0.2", - "version":"1.0.2", - "targets":"lgbt.princess%scala-platform lgbt.princess%platform", + "mvv/sager":{ + "project":"mvv/sager", + "repoUrl":"https://github.com/mvv/sager.git", + "revision":"v0.2-M1", + "version":"0.2-M1", + "targets":"com.github.mvv.sager%sager com.github.mvv.sager%sager-zio com.github.mvv.sager%sager-zio-interop-cats", "config":{ "projects":{ "exclude":[ @@ -26755,7 +21671,7 @@ }, "sbt":{ "commands":[ - + "disableFatalWarnings" ], "options":[ @@ -26768,20 +21684,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "nthportal/spaghetti":{ - "project":"nthportal/spaghetti", - "repoUrl":"https://github.com/nthportal/spaghetti.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"lgbt.princess%spaghetti", + "mvv/typine":{ + "project":"mvv/typine", + "repoUrl":"https://github.com/mvv/typine.git", + "revision":"v0.1-M4", + "version":"0.1-M4", + "targets":"com.github.mvv.typine%typine", "config":{ "projects":{ "exclude":[ @@ -26796,7 +21708,7 @@ }, "sbt":{ "commands":[ - + "disableFatalWarnings" ], "options":[ @@ -26813,26 +21725,12 @@ ] } }, - "nulab/play2-oauth2-provider":{ - "project":"nulab/play2-oauth2-provider", - "repoUrl":"https://github.com/nulab/play2-oauth2-provider.git", - "revision":"2.0.0", - "version":"2.0.0", - "targets":"com.nulab-inc%play2-oauth2-provider" - }, - "nulab/scala-oauth2-provider":{ - "project":"nulab/scala-oauth2-provider", - "repoUrl":"https://github.com/nulab/scala-oauth2-provider.git", - "revision":"1.6.0", - "version":"1.6.0", - "targets":"com.nulab-inc%scala-oauth2-core" - }, - "ocadotechnology/sttp-oauth2":{ - "project":"ocadotechnology/sttp-oauth2", - "repoUrl":"https://github.com/ocadotechnology/sttp-oauth2.git", - "revision":"v0.17.0-RC1", - "version":"0.17.0-RC1", - "targets":"com.ocadotechnology%sttp-oauth2 com.ocadotechnology%sttp-oauth2-cache-ce2 com.ocadotechnology%sttp-oauth2-cache-future com.ocadotechnology%sttp-oauth2-jsoniter com.ocadotechnology%sttp-oauth2-cache-cats com.ocadotechnology%sttp-oauth2-circe com.ocadotechnology%sttp-oauth2-cache-scalacache com.ocadotechnology%sttp-oauth2-cache", + "nafg/cloud-logging-logback-scala":{ + "project":"nafg/cloud-logging-logback-scala", + "repoUrl":"https://github.com/nafg/cloud-logging-logback-scala.git", + "revision":"v0.4.2", + "version":"0.4.2", + "targets":"io.github.nafg.cloudlogging%appender io.github.nafg.cloudlogging%marker", "config":{ "projects":{ "exclude":[ @@ -26843,7 +21741,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -26860,31 +21758,27 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "ohze/akka-guice":{ - "project":"ohze/akka-guice", - "repoUrl":"https://github.com/ohze/akka-guice.git", - "revision":"v3.3.1", - "version":"3.3.1", - "targets":"com.sandinh%akka-guice", + "nafg/css-dsl":{ + "project":"nafg/css-dsl", + "repoUrl":"https://github.com/nafg/css-dsl.git", + "revision":"v0.9.0", + "version":"0.9.0", + "targets":"io.github.nafg.css-dsl%bootstrap3_scalatags io.github.nafg.css-dsl%fomanticui_scalatags io.github.nafg.css-dsl%bootstrap4_scalatags io.github.nafg.css-dsl%bulma_scalatags io.github.nafg.css-dsl%fontawesome_scalatags io.github.nafg.css-dsl%semanticui_scalatags io.github.nafg.css-dsl%bootstrap5_scalatags", "config":{ "projects":{ "exclude":[ - + "io.github.nafg.css-dsl%fomanticui_scalatags" ], "overrides":{ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -26905,12 +21799,12 @@ ] } }, - "ohze/couchbase-scala":{ - "project":"ohze/couchbase-scala", - "repoUrl":"https://github.com/ohze/couchbase-scala.git", - "revision":"v9.2.0", - "version":"9.2.0", - "targets":"com.sandinh%couchbase-scala", + "nafg/scala-phonenumber":{ + "project":"nafg/scala-phonenumber", + "repoUrl":"https://github.com/nafg/scala-phonenumber.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"io.github.nafg.scala-phonenumber%scala-phonenumber", "config":{ "projects":{ "exclude":[ @@ -26921,7 +21815,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -26936,18 +21830,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "ohze/php-utils":{ - "project":"ohze/php-utils", - "repoUrl":"https://github.com/ohze/php-utils.git", - "revision":"v1.0.9", - "version":"1.0.9", - "targets":"com.sandinh%php-utils", + "nafg/scheduler":{ + "project":"nafg/scheduler", + "repoUrl":"https://github.com/nafg/scheduler.git", + "revision":"v2.0.2", + "version":"2.0.2", + "targets":"io.github.nafg.scheduler%scheduler", "config":{ "projects":{ "exclude":[ @@ -26958,7 +21852,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -26973,18 +21867,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "ohze/sd-util":{ - "project":"ohze/sd-util", - "repoUrl":"https://github.com/ohze/sd-util.git", - "revision":"v1.3.0", - "version":"1.3.0", - "targets":"com.sandinh%sd-util com.sandinh%env-hack", + "nafg/simple-router":{ + "project":"nafg/simple-router", + "repoUrl":"https://github.com/nafg/simple-router.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"io.github.nafg.simple-router%simple-router io.github.nafg.simple-router%core", "config":{ "projects":{ "exclude":[ @@ -26995,7 +21889,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -27016,12 +21910,12 @@ ] } }, - "olivierblanvillain/regsafe":{ - "project":"olivierblanvillain/regsafe", - "repoUrl":"https://github.com/olivierblanvillain/regsafe.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"in.nvilla%regsafe", + "nafg/simpleivr":{ + "project":"nafg/simpleivr", + "repoUrl":"https://github.com/nafg/simpleivr.git", + "revision":"v0.8.2", + "version":"0.8.2", + "targets":"io.github.nafg.simpleivr%simpleivr-asterisk io.github.nafg.simpleivr%simpleivr-core io.github.nafg.simpleivr%simpleivr-testing", "config":{ "projects":{ "exclude":[ @@ -27053,33 +21947,12 @@ ] } }, - "ollls/quartz-h2":{ - "project":"ollls/quartz-h2", - "repoUrl":"https://github.com/ollls/quartz-h2.git", - "revision":"v0.5.1", - "version":"0.5.1", - "targets":"io.github.ollls%quartz-h2" - }, - "ollls/zio-quartz-h2":{ - "project":"ollls/zio-quartz-h2", - "repoUrl":"https://github.com/ollls/zio-quartz-h2.git", - "revision":"v0.5.6", - "version":"0.5.6", - "targets":"io.github.ollls%zio-quartz-h2" - }, - "ollls/zio-tls-http":{ - "project":"ollls/zio-tls-http", - "repoUrl":"https://github.com/ollls/zio-tls-http.git", - "revision":"2.0.0", - "version":"2.0.0", - "targets":"io.github.ollls%zio-tls-http" - }, - "opaliasystems/opalia-commons-core":{ - "project":"opaliasystems/opalia-commons-core", - "repoUrl":"https://github.com/opaliasystems/opalia-commons-core.git", - "revision":"v3.1.0", - "version":"3.1.0", - "targets":"systems.opalia%commons-core", + "naoh87/lettucef":{ + "project":"naoh87/lettucef", + "repoUrl":"https://github.com/naoh87/lettucef.git", + "revision":"v0.1.7", + "version":"0.1.7", + "targets":"dev.naoh%lettucef-core dev.naoh%lettucef-extras dev.naoh%lettucef-streams", "config":{ "projects":{ "exclude":[ @@ -27090,7 +21963,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -27105,46 +21978,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "openmole/container":{ - "project":"openmole/container", - "repoUrl":"https://github.com/openmole/container.git", - "revision":"v1.27", - "version":"1.27", - "targets":"org.openmole%container" - }, - "openmole/gridscale":{ - "project":"openmole/gridscale", - "repoUrl":"https://github.com/openmole/gridscale.git", - "revision":"v2.50", - "version":"2.50", - "targets":"org.openmole.gridscale%webdav org.openmole.gridscale%local org.openmole.gridscale%ipfsexample org.openmole.gridscale%gridscale org.openmole.gridscale%qarnot org.openmole.gridscale%http org.openmole.gridscale%example-egi-cream org.openmole.gridscale%oar org.openmole.gridscale%example-ssh org.openmole.gridscale%example-egi-webdav org.openmole.gridscale%ssh org.openmole.gridscale%ipfs org.openmole.gridscale%pbs org.openmole.gridscale%example-local org.openmole.gridscale%effect org.openmole.gridscale%example-qarnot org.openmole.gridscale%example-oar org.openmole.gridscale%sge org.openmole.gridscale%example-slurm org.openmole.gridscale%cluster org.openmole.gridscale%example-http org.openmole.gridscale%example-sge org.openmole.gridscale%slurm org.openmole.gridscale%example-pbs org.openmole.gridscale%example-egi-dirac org.openmole.gridscale%condor org.openmole.gridscale%example-condor org.openmole.gridscale%egi org.openmole.gridscale%dirac" - }, - "openmole/mgo":{ - "project":"openmole/mgo", - "repoUrl":"https://github.com/openmole/mgo.git", - "revision":"v3.55", - "version":"3.55", - "targets":"org.openmole%mgo" - }, - "openmole/scaladget":{ - "project":"openmole/scaladget", - "repoUrl":"https://github.com/openmole/scaladget.git", - "revision":"v1.10.0", - "version":"1.10.0", - "targets":"org.openmole.scaladget%scaladget" - }, - "optics-dev/monocle":{ - "project":"optics-dev/monocle", - "repoUrl":"https://github.com/optics-dev/monocle.git", - "revision":"v3.2.0", - "version":"3.2.0", - "targets":"dev.optics%monocle-law dev.optics%monocle-refined dev.optics%monocle-state dev.optics%monocle-core dev.optics%monocle-macro dev.optics%monocle-unsafe", + "narma/tranzactio":{ + "project":"narma/tranzactio", + "repoUrl":"https://github.com/narma/tranzactio.git", + "revision":"v4.2.0", + "version":"4.2.0", + "targets":"st.alzo%tranzactio", "config":{ "projects":{ "exclude":[ @@ -27155,7 +22000,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -27172,27 +22017,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.1\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "oranda/libanius":{ - "project":"oranda/libanius", - "repoUrl":"https://github.com/oranda/libanius.git", - "revision":"v0.9.9.2", - "version":"0.9.9.2", - "targets":"com.github.oranda%libanius" - }, - "otavia-projects/mill-rust-jni":{ - "project":"otavia-projects/mill-rust-jni", - "repoUrl":"https://github.com/otavia-projects/mill-rust-jni.git", - "revision":"v0.2.4", - "version":"0.2.4", - "targets":"io.github.otavia-projects%jni-loader", + "narma/zio-docker":{ + "project":"narma/zio-docker", + "repoUrl":"https://github.com/narma/zio-docker.git", + "revision":"v2.0.1-M1", + "version":"2.0.1-M1", + "targets":"st.alzo%zio-docker", "config":{ "projects":{ "exclude":[ @@ -27203,7 +22037,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -27224,12 +22058,12 @@ ] } }, - "outr/dd-scala":{ - "project":"outr/dd-scala", - "repoUrl":"https://github.com/outr/dd-scala.git", - "revision":"1.2.13", - "version":"1.2.13", - "targets":"com.outr%dd-scala", + "nationalarchives/dr2-preservica-client":{ + "project":"nationalarchives/dr2-preservica-client", + "repoUrl":"https://github.com/nationalarchives/dr2-preservica-client.git", + "revision":"v0.0.2", + "version":"0.0.2", + "targets":"uk.gov.nationalarchives%preservica-client-root uk.gov.nationalarchives%preservica-client-fs2 uk.gov.nationalarchives%preservica-client-zio", "config":{ "projects":{ "exclude":[ @@ -27240,7 +22074,7 @@ } }, "java":{ - "version":"21" + }, "sbt":{ "commands":[ @@ -27255,57 +22089,22 @@ ] }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "outr/lucene4s":{ - "project":"outr/lucene4s", - "repoUrl":"https://github.com/outr/lucene4s.git", - "revision":"1.11.1", - "version":"1.11.1", - "targets":"com.outr%lucene4s com.outr%lucene4s-core" - }, - "outr/mailgun4s":{ - "project":"outr/mailgun4s", - "repoUrl":"https://github.com/outr/mailgun4s.git", - "revision":"1.2.1", - "version":"1.2.1", - "targets":"com.outr%mailgun4s" - }, - "outr/media4s":{ - "project":"outr/media4s", - "repoUrl":"https://github.com/outr/media4s.git", - "revision":"1.0.21", - "version":"1.0.21", - "targets":"com.outr%media4s" - }, - "outr/moduload":{ - "project":"outr/moduload", - "repoUrl":"https://github.com/outr/moduload.git", - "revision":"1.1.7", - "version":"1.1.7", - "targets":"com.outr%moduload" - }, - "outr/perfolation":{ - "project":"outr/perfolation", - "repoUrl":"https://github.com/outr/perfolation.git", - "revision":"master", - "version":"1.2.9", - "targets":"com.outr%perfolation com.outr%perfolation-unit" + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.3.0-RC4\"", + "replaceWith":"val scala3Version = \"\"" + } + ] + } }, - "outr/profig":{ - "project":"outr/profig", - "repoUrl":"https://github.com/outr/profig.git", - "revision":"3.4.11", - "version":"3.4.11", - "targets":"com.outr%profig", + "neandertech/langoustine":{ + "project":"neandertech/langoustine", + "repoUrl":"https://github.com/neandertech/langoustine.git", + "revision":"v0.0.20", + "version":"0.0.20", + "targets":"tech.neander%langoustine-app tech.neander%langoustine-lsp tech.neander%langoustine-meta tech.neander%langoustine-tracer tech.neander%langoustine-tracer-shared", "config":{ "projects":{ "exclude":[ @@ -27316,7 +22115,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -27331,22 +22130,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = List(\"3.3.0\")", - "replaceWith":"val scala3 = List(\"\")" - } + ] } }, - "outr/reactify":{ - "project":"outr/reactify", - "repoUrl":"https://github.com/outr/reactify.git", - "revision":"4.1.0", - "version":"4.1.0", - "targets":"com.outr%reactify", + "nicolasfara/ecscala":{ + "project":"nicolasfara/ecscala", + "repoUrl":"https://github.com/nicolasfara/ecscala.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"dev.atedeg%ecscala", "config":{ "projects":{ "exclude":[ @@ -27357,7 +22152,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -27376,18 +22171,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = List(\"3.3.0\")", - "replaceWith":"val scala3 = List(\"\")" + "pattern":"val scala3Version = \"3.0.1\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "outr/robobrowser":{ - "project":"outr/robobrowser", - "repoUrl":"https://github.com/outr/robobrowser.git", - "revision":"1.7.1", - "version":"1.7.1", - "targets":"com.outr%robobrowser", + "noelwelsh/mads":{ + "project":"noelwelsh/mads", + "repoUrl":"https://github.com/noelwelsh/mads.git", + "revision":"0.2.0", + "version":"0.2.0", + "targets":"org.creativescala%mads", "config":{ "projects":{ "exclude":[ @@ -27398,11 +22193,11 @@ } }, "java":{ - "version":"21" + }, "sbt":{ "commands":[ - + "disableFatalWarnings" ], "options":[ @@ -27413,22 +22208,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3: String = \"3.3.0\"", - "replaceWith":"val scala3: String = \"\"" + "pattern":"val scala3Version = \"3.0.0\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "outr/scalapass":{ - "project":"outr/scalapass", - "repoUrl":"https://github.com/outr/scalapass.git", - "revision":"1.2.6", - "version":"1.2.6", - "targets":"com.outr%scalapass", + "norbert-radyk/spoiwo":{ + "project":"norbert-radyk/spoiwo", + "repoUrl":"https://github.com/norbert-radyk/spoiwo.git", + "revision":"63166ededb84449d64fc92c88225e77e22a167c1", + "version":"2.2.1", + "targets":"com.norbitltd%spoiwo com.norbitltd%spoiwo-examples com.norbitltd%spoiwo-grids", "config":{ "projects":{ "exclude":[ @@ -27460,12 +22255,12 @@ ] } }, - "outr/scarango":{ - "project":"outr/scarango", - "repoUrl":"https://github.com/outr/scarango.git", - "revision":"3.17.0", - "version":"3.17.0", - "targets":"com.outr%scarango-core com.outr%scarango-driver", + "note/dhallj-magnolia":{ + "project":"note/dhallj-magnolia", + "repoUrl":"https://github.com/note/dhallj-magnolia.git", + "revision":"v0.1.3", + "version":"0.1.3", + "targets":"pl.msitko%dhallj-magnolia", "config":{ "projects":{ "exclude":[ @@ -27476,7 +22271,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -27491,22 +22286,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "outr/scribe":{ - "project":"outr/scribe", - "repoUrl":"https://github.com/outr/scribe.git", - "revision":"3.12.2", - "version":"3.12.2", - "targets":"com.outr%scribe-json-circe com.outr%scribe-logstash com.outr%scribe-slf4j com.outr%scribe-json-fabric com.outr%scribe-migration com.outr%scribe-slf4j2 com.outr%scribe-cats com.outr%scribe-slack com.outr%scribe-log4j com.outr%scribe-file com.outr%scribe-config com.outr%scribe-json com.outr%scribe", + "note/mini-refined":{ + "project":"note/mini-refined", + "repoUrl":"https://github.com/note/mini-refined.git", + "revision":"v0.1.1-RC1", + "version":"0.1.1-RC1", + "targets":"pl.msitko%mini-refined", "config":{ "projects":{ "exclude":[ @@ -27517,7 +22312,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -27534,20 +22329,37 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "outr/sendgrid4s":{ - "project":"outr/sendgrid4s", - "repoUrl":"https://github.com/outr/sendgrid4s.git", - "revision":"1.0.19", - "version":"1.0.19", - "targets":"com.outr%sendgrid4s", + "nremond/pbkdf2-scala":{ + "project":"nremond/pbkdf2-scala", + "repoUrl":"https://github.com/nremond/pbkdf2-scala.git", + "revision":"v0.7.1", + "version":"0.7.1", + "targets":"io.github.nremond%pbkdf2-scala" + }, + "nrinaudo/kantan.parsers":{ + "project":"nrinaudo/kantan.parsers", + "repoUrl":"https://github.com/nrinaudo/kantan.parsers.git", + "revision":"v1.0.6", + "version":"1.0.6", + "targets":"com.nrinaudo%kantan-parsers" + }, + "nscala-time/nscala-time":{ + "project":"nscala-time/nscala-time", + "repoUrl":"https://github.com/nscala-time/nscala-time.git", + "revision":"releases/2.32.0", + "version":"2.32.0", + "targets":"com.github.nscala-time%nscala-time" + }, + "nthportal/scala-platform":{ + "project":"nthportal/scala-platform", + "repoUrl":"https://github.com/nthportal/scala-platform.git", + "revision":"v1.0.2", + "version":"1.0.2", + "targets":"lgbt.princess%scala-platform lgbt.princess%platform", "config":{ "projects":{ "exclude":[ @@ -27558,7 +22370,7 @@ } }, "java":{ - "version":"21" + "version":"8" }, "sbt":{ "commands":[ @@ -27577,18 +22389,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "outr/spice":{ - "project":"outr/spice", - "repoUrl":"https://github.com/outr/spice.git", - "revision":"0.1.11", - "version":"0.1.11", - "targets":"com.outr%spice-server-undertow com.outr%spice-core com.outr%spice-client com.outr%spice-client-jvm com.outr%spice com.outr%spice-delta com.outr%spice-client-okhttp com.outr%spice-server", + "nthportal/spaghetti":{ + "project":"nthportal/spaghetti", + "repoUrl":"https://github.com/nthportal/spaghetti.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"lgbt.princess%spaghetti", "config":{ "projects":{ "exclude":[ @@ -27599,7 +22411,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -27616,27 +22428,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3: String = \"3.3.1\"", - "replaceWith":"val scala3: String = \"\"" - } + ] } }, - "ovotech/ciris-aws-secretsmanager":{ - "project":"ovotech/ciris-aws-secretsmanager", - "repoUrl":"https://github.com/ovotech/ciris-aws-secretsmanager.git", - "revision":"v6.0.0", - "version":"6.0.0", - "targets":"com.ovoenergy%ciris-aws-secretsmanager" - }, - "ovotech/meters4s":{ - "project":"ovotech/meters4s", - "repoUrl":"https://github.com/ovotech/meters4s.git", - "revision":"v2.0.0", - "version":"2.0.0", - "targets":"com.ovoenergy%meters4s-statsd com.ovoenergy%meters4s-datadog com.ovoenergy%meters4s-http4s com.ovoenergy%meters4s-prometheus com.ovoenergy%meters4s", + "ocadotechnology/sttp-oauth2":{ + "project":"ocadotechnology/sttp-oauth2", + "repoUrl":"https://github.com/ocadotechnology/sttp-oauth2.git", + "revision":"v0.17.0-RC1", + "version":"0.17.0-RC1", + "targets":"com.ocadotechnology%sttp-oauth2 com.ocadotechnology%sttp-oauth2-cache-ce2 com.ocadotechnology%sttp-oauth2-cache-future com.ocadotechnology%sttp-oauth2-jsoniter com.ocadotechnology%sttp-oauth2-cache-cats com.ocadotechnology%sttp-oauth2-circe com.ocadotechnology%sttp-oauth2-cache-scalacache com.ocadotechnology%sttp-oauth2-cache", "config":{ "projects":{ "exclude":[ @@ -27647,7 +22448,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -27664,16 +22465,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "ovotech/natchez-extras":{ - "project":"ovotech/natchez-extras", - "repoUrl":"https://github.com/ovotech/natchez-extras.git", - "revision":"8.0.0-M4", - "version":"8.0.0-M4", - "targets":"com.ovoenergy%natchez-extras-testkit com.ovoenergy%natchez-extras-slf4j com.ovoenergy%natchez-extras-log4cats com.ovoenergy%natchez-extras-metrics com.ovoenergy%natchez-extras-datadog com.ovoenergy%natchez-extras-doobie com.ovoenergy%natchez-extras-doobie-legacy com.ovoenergy%natchez-extras-dogstatsd com.ovoenergy%natchez-extras-combine com.ovoenergy%natchez-extras-datadog-stable com.ovoenergy%natchez-extras-http4s-stable com.ovoenergy%natchez-extras-fs2 com.ovoenergy%natchez-extras-ce3 com.ovoenergy%natchez-extras-core com.ovoenergy%natchez-extras-http4s", + "ohze/akka-guice":{ + "project":"ohze/akka-guice", + "repoUrl":"https://github.com/ohze/akka-guice.git", + "revision":"v3.3.1", + "version":"3.3.1", + "targets":"com.sandinh%akka-guice", "config":{ "projects":{ "exclude":[ @@ -27684,7 +22489,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -27701,27 +22506,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "pac4j/http4s-pac4j":{ - "project":"pac4j/http4s-pac4j", - "repoUrl":"https://github.com/pac4j/http4s-pac4j.git", - "revision":"v3.0.0", - "version":"3.0.0", - "targets":"org.pac4j%http4s-pac4j" - }, - "palanga/parana":{ - "project":"palanga/parana", - "repoUrl":"https://github.com/palanga/parana.git", - "revision":"v0.7.0", - "version":"0.7.0", - "targets":"io.github.palanga%parana-journal-common io.github.palanga%parana-core-local", + "ohze/couchbase-scala":{ + "project":"ohze/couchbase-scala", + "repoUrl":"https://github.com/ohze/couchbase-scala.git", + "revision":"v9.2.0", + "version":"9.2.0", + "targets":"com.sandinh%couchbase-scala", "config":{ "projects":{ "exclude":[ @@ -27732,7 +22526,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -27753,12 +22547,12 @@ ] } }, - "palanga/zio-cassandra":{ - "project":"palanga/zio-cassandra", - "repoUrl":"https://github.com/palanga/zio-cassandra.git", - "revision":"v0.10.0", - "version":"0.10.0", - "targets":"io.github.palanga%zio-cassandra", + "ohze/php-utils":{ + "project":"ohze/php-utils", + "repoUrl":"https://github.com/ohze/php-utils.git", + "revision":"v1.0.9", + "version":"1.0.9", + "targets":"com.sandinh%php-utils", "config":{ "projects":{ "exclude":[ @@ -27769,7 +22563,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -27790,12 +22584,12 @@ ] } }, - "paoloboni/binance-scala-client":{ - "project":"paoloboni/binance-scala-client", - "repoUrl":"https://github.com/paoloboni/binance-scala-client.git", - "revision":"v1.6.1", - "version":"1.6.1", - "targets":"io.github.paoloboni%binance-scala-client", + "ohze/sd-util":{ + "project":"ohze/sd-util", + "repoUrl":"https://github.com/ohze/sd-util.git", + "revision":"v1.3.0", + "version":"1.3.0", + "targets":"com.sandinh%sd-util com.sandinh%env-hack", "config":{ "projects":{ "exclude":[ @@ -27806,7 +22600,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -27823,20 +22617,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "paoloboni/spray-json-derived-codecs":{ - "project":"paoloboni/spray-json-derived-codecs", - "repoUrl":"https://github.com/paoloboni/spray-json-derived-codecs.git", - "revision":"v2.3.11", - "version":"2.3.11", - "targets":"io.github.paoloboni%spray-json-derived-codecs", + "olivierblanvillain/regsafe":{ + "project":"olivierblanvillain/regsafe", + "repoUrl":"https://github.com/olivierblanvillain/regsafe.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"in.nvilla%regsafe", "config":{ "projects":{ "exclude":[ @@ -27864,20 +22654,37 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "pathikrit/better-files":{ - "project":"pathikrit/better-files", - "repoUrl":"https://github.com/pathikrit/better-files.git", - "revision":"v3.9.2", - "version":"3.9.2", - "targets":"com.github.pathikrit%better-files-akka com.github.pathikrit%better-files", + "ollls/quartz-h2":{ + "project":"ollls/quartz-h2", + "repoUrl":"https://github.com/ollls/quartz-h2.git", + "revision":"v0.5.1", + "version":"0.5.1", + "targets":"io.github.ollls%quartz-h2" + }, + "ollls/zio-quartz-h2":{ + "project":"ollls/zio-quartz-h2", + "repoUrl":"https://github.com/ollls/zio-quartz-h2.git", + "revision":"v0.5.5", + "version":"0.5.5", + "targets":"io.github.ollls%zio-quartz-h2" + }, + "ollls/zio-tls-http":{ + "project":"ollls/zio-tls-http", + "repoUrl":"https://github.com/ollls/zio-tls-http.git", + "revision":"2.0.0", + "version":"2.0.0", + "targets":"io.github.ollls%zio-tls-http" + }, + "opaliasystems/opalia-commons-core":{ + "project":"opaliasystems/opalia-commons-core", + "repoUrl":"https://github.com/opaliasystems/opalia-commons-core.git", + "revision":"v3.0.0", + "version":"3.0.0", + "targets":"systems.opalia%commons-core", "config":{ "projects":{ "exclude":[ @@ -27888,7 +22695,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -27903,18 +22710,46 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "pbyrne84/scala-case-class-prettification":{ - "project":"pbyrne84/scala-case-class-prettification", - "repoUrl":"https://github.com/pbyrne84/scala-case-class-prettification.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"uk.org.devthings%scala-case-class-prettification uk.org.devthings%scala-case-class-prettification-diff uk.org.devthings%scala-case-class-prettification-test", + "openmole/container":{ + "project":"openmole/container", + "repoUrl":"https://github.com/openmole/container.git", + "revision":"v1.22", + "version":"1.22", + "targets":"org.openmole%container" + }, + "openmole/gridscale":{ + "project":"openmole/gridscale", + "repoUrl":"https://github.com/openmole/gridscale.git", + "revision":"v2.45", + "version":"2.45", + "targets":"org.openmole.gridscale%sshexample org.openmole.gridscale%webdav org.openmole.gridscale%local org.openmole.gridscale%ipfsexample org.openmole.gridscale%egidiracexample org.openmole.gridscale%oarexample org.openmole.gridscale%gridscale org.openmole.gridscale%http org.openmole.gridscale%egiwebdavexample org.openmole.gridscale%oar org.openmole.gridscale%slurmexample org.openmole.gridscale%sgeexample org.openmole.gridscale%ssh org.openmole.gridscale%ipfs org.openmole.gridscale%pbs org.openmole.gridscale%localexample org.openmole.gridscale%effect org.openmole.gridscale%sge org.openmole.gridscale%pbsexample org.openmole.gridscale%cluster org.openmole.gridscale%egicreamexample org.openmole.gridscale%httpexample org.openmole.gridscale%slurm org.openmole.gridscale%condor org.openmole.gridscale%condorexample org.openmole.gridscale%egi org.openmole.gridscale%dirac" + }, + "openmole/mgo":{ + "project":"openmole/mgo", + "repoUrl":"https://github.com/openmole/mgo.git", + "revision":"v3.55", + "version":"3.55", + "targets":"org.openmole%mgo" + }, + "openmole/scaladget":{ + "project":"openmole/scaladget", + "repoUrl":"https://github.com/openmole/scaladget.git", + "revision":"v1.9.5", + "version":"1.9.5", + "targets":"org.openmole.scaladget%scaladget" + }, + "optics-dev/monocle":{ + "project":"optics-dev/monocle", + "repoUrl":"https://github.com/optics-dev/monocle.git", + "revision":"v3.2.0", + "version":"3.2.0", + "targets":"dev.optics%monocle-law dev.optics%monocle-refined dev.optics%monocle-state dev.optics%monocle-core dev.optics%monocle-macro dev.optics%monocle-unsafe", "config":{ "projects":{ "exclude":[ @@ -27925,7 +22760,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -27944,18 +22779,32 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.1.3\"", + "pattern":"val scala3Version = \"3.2.1\"", "replaceWith":"val scala3Version = \"\"" } ] } }, - "pbyrne84/scala-wiremock-api":{ - "project":"pbyrne84/scala-wiremock-api", - "repoUrl":"https://github.com/pbyrne84/scala-wiremock-api.git", - "revision":"v0.1.11", - "version":"0.1.11", - "targets":"uk.org.devthings%scala-wiremock-api", + "oranda/libanius":{ + "project":"oranda/libanius", + "repoUrl":"https://github.com/oranda/libanius.git", + "revision":"v0.9.9.2", + "version":"0.9.9.2", + "targets":"com.github.oranda%libanius" + }, + "otavia-projects/mill-rust-jni":{ + "project":"otavia-projects/mill-rust-jni", + "repoUrl":"https://github.com/otavia-projects/mill-rust-jni.git", + "revision":"0.1.0", + "version":"0.1.0", + "targets":"io.github.otavia-projects%jni-loader" + }, + "outr/dd-scala":{ + "project":"outr/dd-scala", + "repoUrl":"https://github.com/outr/dd-scala.git", + "revision":"1.1.2", + "version":"1.1.2", + "targets":"com.outr%dd-scala", "config":{ "projects":{ "exclude":[ @@ -27966,7 +22815,7 @@ } }, "java":{ - "version":"11" + "version":"21" }, "sbt":{ "commands":[ @@ -27991,12 +22840,40 @@ ] } }, - "permutive-engineering/fs2-google-pubsub":{ - "project":"permutive-engineering/fs2-google-pubsub", - "repoUrl":"https://github.com/permutive-engineering/fs2-google-pubsub.git", - "revision":"v0.22.0", - "version":"0.22.0", - "targets":"com.permutive%fs2-google-pubsub com.permutive%fs2-google-pubsub-grpc com.permutive%fs2-google-pubsub-http", + "outr/lucene4s":{ + "project":"outr/lucene4s", + "repoUrl":"https://github.com/outr/lucene4s.git", + "revision":"1.11.1", + "version":"1.11.1", + "targets":"com.outr%lucene4s com.outr%lucene4s-core" + }, + "outr/mailgun4s":{ + "project":"outr/mailgun4s", + "repoUrl":"https://github.com/outr/mailgun4s.git", + "revision":"1.1.3", + "version":"1.1.3", + "targets":"com.outr%mailgun4s" + }, + "outr/moduload":{ + "project":"outr/moduload", + "repoUrl":"https://github.com/outr/moduload.git", + "revision":"1.1.6", + "version":"1.1.6", + "targets":"com.outr%moduload" + }, + "outr/perfolation":{ + "project":"outr/perfolation", + "repoUrl":"https://github.com/outr/perfolation.git", + "revision":"master", + "version":"1.2.9", + "targets":"com.outr%perfolation com.outr%perfolation-unit" + }, + "outr/profig":{ + "project":"outr/profig", + "repoUrl":"https://github.com/outr/profig.git", + "revision":"3.4.10", + "version":"3.4.10", + "targets":"com.outr%profig", "config":{ "projects":{ "exclude":[ @@ -28007,7 +22884,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -28024,16 +22901,20 @@ }, "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = List(\"3.2.2\")", + "replaceWith":"val scala3 = List(\"\")" + } ] } }, - "permutive-engineering/functional-google-clients":{ - "project":"permutive-engineering/functional-google-clients", - "repoUrl":"https://github.com/permutive-engineering/functional-google-clients.git", - "revision":"v1.0.0-RC2", - "version":"1.0.0-RC2", - "targets":"com.permutive%google-project-id com.permutive%gcp-types com.permutive%google-project-pureconfig com.permutive%google-auth com.permutive%google-bigquery", + "outr/reactify":{ + "project":"outr/reactify", + "repoUrl":"https://github.com/outr/reactify.git", + "revision":"4.0.8", + "version":"4.0.8", + "targets":"com.outr%reactify", "config":{ "projects":{ "exclude":[ @@ -28061,16 +22942,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = List(\"3.1.1\")", + "replaceWith":"val scala3 = List(\"\")" + } ] } }, - "permutive-engineering/odin-contrib":{ - "project":"permutive-engineering/odin-contrib", - "repoUrl":"https://github.com/permutive-engineering/odin-contrib.git", - "revision":"v1.0.2", - "version":"1.0.2", - "targets":"com.permutive%log4cats-odin com.permutive%odin-dynamic com.permutive%odin-slf4j-bridge com.permutive%odin-testing", + "outr/robobrowser":{ + "project":"outr/robobrowser", + "repoUrl":"https://github.com/outr/robobrowser.git", + "revision":"1.6.0", + "version":"1.6.0", + "targets":"com.outr%robobrowser", "config":{ "projects":{ "exclude":[ @@ -28096,18 +22981,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "permutive-engineering/prometheus4cats":{ - "project":"permutive-engineering/prometheus4cats", - "repoUrl":"https://github.com/permutive-engineering/prometheus4cats.git", - "revision":"v2.0.0", - "version":"2.0.0", - "targets":"com.permutive%prometheus4cats-testkit com.permutive%prometheus4cats com.permutive%prometheus4cats-docs com.permutive%prometheus4cats-testing com.permutive%prometheus4cats-java", + "outr/scalapass":{ + "project":"outr/scalapass", + "repoUrl":"https://github.com/outr/scalapass.git", + "revision":"1.2.5", + "version":"1.2.5", + "targets":"com.outr%scalapass", "config":{ "projects":{ "exclude":[ @@ -28139,12 +23024,12 @@ ] } }, - "permutive-engineering/prometheus4cats-contrib":{ - "project":"permutive-engineering/prometheus4cats-contrib", - "repoUrl":"https://github.com/permutive-engineering/prometheus4cats-contrib.git", - "revision":"v2.1.0", - "version":"2.1.0", - "targets":"com.permutive%prometheus4cats-contrib-cats-effect com.permutive%prometheus4cats-contrib-fs2-kafka com.permutive%prometheus4cats-contrib-google-cloud-bigtable com.permutive%prometheus4cats-contrib-opencensus com.permutive%prometheus4cats-contrib-trace4cats com.permutive%prometheus4cats-contrib-refreshable", + "outr/scarango":{ + "project":"outr/scarango", + "repoUrl":"https://github.com/outr/scarango.git", + "revision":"3.11.2", + "version":"3.11.2", + "targets":"com.outr%scarango-core com.outr%scarango-driver", "config":{ "projects":{ "exclude":[ @@ -28170,18 +23055,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "permutive-engineering/refreshable":{ - "project":"permutive-engineering/refreshable", - "repoUrl":"https://github.com/permutive-engineering/refreshable.git", - "revision":"v1.1.0", - "version":"1.1.0", - "targets":"com.permutive%refreshable", + "outr/scribe":{ + "project":"outr/scribe", + "repoUrl":"https://github.com/outr/scribe.git", + "revision":"3.11.3", + "version":"3.11.3", + "targets":"com.outr%scribe-json-circe com.outr%scribe-logstash com.outr%scribe-slf4j com.outr%scribe-json-fabric com.outr%scribe-migration com.outr%scribe-slf4j2 com.outr%scribe-cats com.outr%scribe-slack com.outr%scribe-log4j com.outr%scribe-file com.outr%scribe-config com.outr%scribe-json com.outr%scribe", "config":{ "projects":{ "exclude":[ @@ -28209,16 +23098,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "petitviolet/scala-operator":{ - "project":"petitviolet/scala-operator", - "repoUrl":"https://github.com/petitviolet/scala-operator.git", - "revision":"v0.7.0", - "version":"0.7.0", - "targets":"net.petitviolet%operator", + "outr/sendgrid4s":{ + "project":"outr/sendgrid4s", + "repoUrl":"https://github.com/outr/sendgrid4s.git", + "revision":"1.0.7", + "version":"1.0.7", + "targets":"com.outr%sendgrid4s", "config":{ "projects":{ "exclude":[ @@ -28229,7 +23122,7 @@ } }, "java":{ - "version":"11" + "version":"21" }, "sbt":{ "commands":[ @@ -28248,25 +23141,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.0.0\"", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "phaller/spores3":{ - "project":"phaller/spores3", - "repoUrl":"https://github.com/phaller/spores3.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.phaller%spores3" - }, - "phenoscape/scowl":{ - "project":"phenoscape/scowl", - "repoUrl":"https://github.com/phenoscape/scowl.git", - "revision":"v1.4.1", - "version":"1.4.1", - "targets":"org.phenoscape%scowl org.phenoscape%scowl-owlapi5", + "outr/spice":{ + "project":"outr/spice", + "repoUrl":"https://github.com/outr/spice.git", + "revision":"0.0.32", + "version":"0.0.32", + "targets":"com.outr%spice-server-undertow com.outr%spice-core com.outr%spice-client com.outr%spice com.outr%spice-delta com.outr%spice-client-okhttp com.outr%spice-server", "config":{ "projects":{ "exclude":[ @@ -28294,60 +23180,34 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3: String = \"3.2.2\"", + "replaceWith":"val scala3: String = \"\"" + } ] } }, - "phillhenry/dreadnought":{ - "project":"phillhenry/dreadnought", - "repoUrl":"https://github.com/phillhenry/dreadnought.git", - "revision":"", - "version":"0.1.1", - "targets":"uk.co.odinconsultants%dreadnought-examples uk.co.odinconsultants%dreadnought-docker uk.co.odinconsultants%dreadnought-core uk.co.odinconsultants%dreadnought-lib uk.co.odinconsultants%dreadnought uk.co.odinconsultants%dreadnought-it" + "ovotech/ciris-aws-secretsmanager":{ + "project":"ovotech/ciris-aws-secretsmanager", + "repoUrl":"https://github.com/ovotech/ciris-aws-secretsmanager.git", + "revision":"v6.0.0", + "version":"6.0.0", + "targets":"com.ovoenergy%ciris-aws-secretsmanager" }, - "philwalk/pallet":{ - "project":"philwalk/pallet", - "repoUrl":"https://github.com/philwalk/pallet.git", - "revision":"", - "version":"0.9.0", - "targets":"org.vastblue%pallet", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } + "ovotech/meters4s":{ + "project":"ovotech/meters4s", + "repoUrl":"https://github.com/ovotech/meters4s.git", + "revision":"v1.3.1", + "version":"1.3.1", + "targets":"com.ovoenergy%meters4s-statsd com.ovoenergy%meters4s-datadog com.ovoenergy%meters4s" }, - "pismute/classy-optics":{ - "project":"pismute/classy-optics", - "repoUrl":"https://github.com/pismute/classy-optics.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"io.github.pismute%classy-optics io.github.pismute%classy-effect io.github.pismute%classy-mtl", + "ovotech/natchez-extras":{ + "project":"ovotech/natchez-extras", + "repoUrl":"https://github.com/ovotech/natchez-extras.git", + "revision":"7.0.1-RC1", + "version":"7.0.1-RC1", + "targets":"com.ovoenergy%natchez-extras-testkit com.ovoenergy%natchez-extras-slf4j com.ovoenergy%natchez-extras-log4cats com.ovoenergy%natchez-extras-metrics com.ovoenergy%natchez-extras-datadog com.ovoenergy%natchez-extras-doobie com.ovoenergy%natchez-extras-dogstatsd com.ovoenergy%natchez-extras-combine com.ovoenergy%natchez-extras-datadog-stable com.ovoenergy%natchez-extras-http4s-stable com.ovoenergy%natchez-extras-fs2 com.ovoenergy%natchez-extras-ce3 com.ovoenergy%natchez-extras-core com.ovoenergy%natchez-extras-http4s", "config":{ "projects":{ "exclude":[ @@ -28377,18 +23237,25 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "pityka/lamp":{ - "project":"pityka/lamp", - "repoUrl":"https://github.com/pityka/lamp.git", - "revision":"v0.0.103", - "version":"0.0.103", - "targets":"io.github.pityka%lamp-knn io.github.pityka%extratrees io.github.pityka%lamp-core io.github.pityka%lamp-kmeans io.github.pityka%lamp-saddle io.github.pityka%lamp-akka io.github.pityka%lamp-umap io.github.pityka%lamp-sten io.github.pityka%lamp-table io.github.pityka%lamp-data io.github.pityka%lamp-onnx", + "pac4j/http4s-pac4j":{ + "project":"pac4j/http4s-pac4j", + "repoUrl":"https://github.com/pac4j/http4s-pac4j.git", + "revision":"v3.0.0", + "version":"3.0.0", + "targets":"org.pac4j%http4s-pac4j" + }, + "palanga/parana":{ + "project":"palanga/parana", + "repoUrl":"https://github.com/palanga/parana.git", + "revision":"v0.7.0", + "version":"0.7.0", + "targets":"io.github.palanga%parana-journal-common io.github.palanga%parana-core-local", "config":{ "projects":{ "exclude":[ @@ -28399,7 +23266,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -28420,12 +23287,12 @@ ] } }, - "pityka/nspl":{ - "project":"pityka/nspl", - "repoUrl":"https://github.com/pityka/nspl.git", + "palanga/zio-cassandra":{ + "project":"palanga/zio-cassandra", + "repoUrl":"https://github.com/palanga/zio-cassandra.git", "revision":"v0.10.0", "version":"0.10.0", - "targets":"io.github.pityka%nspl-shared-jvm io.github.pityka%nspl-awt io.github.pityka%nspl-saddle io.github.pityka%nspl-core io.github.pityka%nspl-scalatags-jvm", + "targets":"io.github.palanga%zio-cassandra", "config":{ "projects":{ "exclude":[ @@ -28436,7 +23303,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -28451,25 +23318,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "pityka/pairwisealignment":{ - "project":"pityka/pairwisealignment", - "repoUrl":"https://github.com/pityka/pairwisealignment.git", - "revision":"v2.2.7", - "version":"2.2.7", - "targets":"io.github.pityka%pairwisealignment" - }, - "pityka/saddle":{ - "project":"pityka/saddle", - "repoUrl":"https://github.com/pityka/saddle.git", - "revision":"v4.0.0-M7", - "version":"4.0.0-M7", - "targets":"io.github.pityka%saddle-jsoniter io.github.pityka%saddle-ops-inlined io.github.pityka%saddle-core io.github.pityka%saddle-linalg io.github.pityka%saddle-time io.github.pityka%saddle-circe io.github.pityka%saddle-binary io.github.pityka%saddle-ops-inlined-macroimpl io.github.pityka%saddle-spire-prng io.github.pityka%saddle-io io.github.pityka%saddle-stats", + "paoloboni/binance-scala-client":{ + "project":"paoloboni/binance-scala-client", + "repoUrl":"https://github.com/paoloboni/binance-scala-client.git", + "revision":"v1.6.1", + "version":"1.6.1", + "targets":"io.github.paoloboni%binance-scala-client", "config":{ "projects":{ "exclude":[ @@ -28480,7 +23340,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -28497,23 +23357,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "pjfanning/acked-stream":{ - "project":"pjfanning/acked-stream", - "repoUrl":"https://github.com/pjfanning/acked-stream.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"com.github.pjfanning%acked-streams" - }, - "pjfanning/akka-rabbitmq":{ - "project":"pjfanning/akka-rabbitmq", - "repoUrl":"https://github.com/pjfanning/akka-rabbitmq.git", - "revision":"v6.1.0", - "version":"6.1.0", - "targets":"com.github.pjfanning%akka-rabbitmq", + "paoloboni/spray-json-derived-codecs":{ + "project":"paoloboni/spray-json-derived-codecs", + "repoUrl":"https://github.com/paoloboni/spray-json-derived-codecs.git", + "revision":"v2.3.10", + "version":"2.3.10", + "targets":"io.github.paoloboni%spray-json-derived-codecs", "config":{ "projects":{ "exclude":[ @@ -28524,11 +23381,11 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ - "set every Test/unmanagedSources/excludeFilter := HiddenFileFilter || \"PublishSubscribeSpec.scala\"" + ], "options":[ @@ -28541,16 +23398,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "pjfanning/aws-spi-pekko-http":{ - "project":"pjfanning/aws-spi-pekko-http", - "repoUrl":"https://github.com/pjfanning/aws-spi-pekko-http.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.github.pjfanning%aws-spi-pekko-http", + "pathikrit/better-files":{ + "project":"pathikrit/better-files", + "repoUrl":"https://github.com/pathikrit/better-files.git", + "revision":"v3.9.2", + "version":"3.9.2", + "targets":"com.github.pathikrit%better-files-akka com.github.pathikrit%better-files", "config":{ "projects":{ "exclude":[ @@ -28561,7 +23422,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -28576,18 +23437,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "pjfanning/jackson-module-enumeratum":{ - "project":"pjfanning/jackson-module-enumeratum", - "repoUrl":"https://github.com/pjfanning/jackson-module-enumeratum.git", - "revision":"v2.13.5", - "version":"2.13.5", - "targets":"com.github.pjfanning%jackson-module-enumeratum", + "pbyrne84/scala-case-class-prettification":{ + "project":"pbyrne84/scala-case-class-prettification", + "repoUrl":"https://github.com/pbyrne84/scala-case-class-prettification.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"uk.org.devthings%scala-case-class-prettification uk.org.devthings%scala-case-class-prettification-diff uk.org.devthings%scala-case-class-prettification-test", "config":{ "projects":{ "exclude":[ @@ -28598,7 +23459,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -28615,16 +23476,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.1.3\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "pjfanning/jackson-module-scala-duration":{ - "project":"pjfanning/jackson-module-scala-duration", - "repoUrl":"https://github.com/pjfanning/jackson-module-scala-duration.git", - "revision":"v2.15.0", - "version":"2.15.0", - "targets":"com.github.pjfanning%jackson-module-scala-duration", + "pbyrne84/scala-wiremock-api":{ + "project":"pbyrne84/scala-wiremock-api", + "repoUrl":"https://github.com/pbyrne84/scala-wiremock-api.git", + "revision":"v0.1.11", + "version":"0.1.11", + "targets":"uk.org.devthings%scala-wiremock-api", "config":{ "projects":{ "exclude":[ @@ -28635,7 +23500,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -28652,16 +23517,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "pjfanning/jackson-module-scala3-enum":{ - "project":"pjfanning/jackson-module-scala3-enum", - "repoUrl":"https://github.com/pjfanning/jackson-module-scala3-enum.git", - "revision":"v2.15.0", - "version":"2.15.0", - "targets":"com.github.pjfanning%jackson-module-scala3-enum", + "permutive-engineering/fs2-google-pubsub":{ + "project":"permutive-engineering/fs2-google-pubsub", + "repoUrl":"https://github.com/permutive-engineering/fs2-google-pubsub.git", + "revision":"v0.22.0", + "version":"0.22.0", + "targets":"com.permutive%fs2-google-pubsub com.permutive%fs2-google-pubsub-grpc com.permutive%fs2-google-pubsub-http", "config":{ "projects":{ "exclude":[ @@ -28672,7 +23541,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -28687,18 +23556,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "pjfanning/micrometer-akka":{ - "project":"pjfanning/micrometer-akka", - "repoUrl":"https://github.com/pjfanning/micrometer-akka.git", - "revision":"v0.13.3", - "version":"0.13.3", - "targets":"com.github.pjfanning%micrometer-akka", + "permutive-engineering/functional-google-clients":{ + "project":"permutive-engineering/functional-google-clients", + "repoUrl":"https://github.com/permutive-engineering/functional-google-clients.git", + "revision":"v1.0.0-RC2", + "version":"1.0.0-RC2", + "targets":"com.permutive%google-project-id com.permutive%gcp-types com.permutive%google-project-pureconfig com.permutive%google-auth com.permutive%google-bigquery", "config":{ "projects":{ "exclude":[ @@ -28730,12 +23599,12 @@ ] } }, - "pjfanning/micrometer-pekko":{ - "project":"pjfanning/micrometer-pekko", - "repoUrl":"https://github.com/pjfanning/micrometer-pekko.git", - "revision":"v0.15.0", - "version":"0.15.0", - "targets":"com.github.pjfanning%micrometer-pekko", + "permutive-engineering/odin-contrib":{ + "project":"permutive-engineering/odin-contrib", + "repoUrl":"https://github.com/permutive-engineering/odin-contrib.git", + "revision":"v1.0.2", + "version":"1.0.2", + "targets":"com.permutive%log4cats-odin com.permutive%odin-dynamic com.permutive%odin-slf4j-bridge com.permutive%odin-testing", "config":{ "projects":{ "exclude":[ @@ -28767,12 +23636,12 @@ ] } }, - "pjfanning/pekko-http-json":{ - "project":"pjfanning/pekko-http-json", - "repoUrl":"https://github.com/pjfanning/pekko-http-json.git", - "revision":"v2.1.1", - "version":"2.1.1", - "targets":"com.github.pjfanning%pekko-http-zio-json com.github.pjfanning%pekko-http-jsoniter-scala com.github.pjfanning%pekko-http-argonaut com.github.pjfanning%pekko-http-json4s com.github.pjfanning%pekko-http-circe com.github.pjfanning%pekko-http-jackson com.github.pjfanning%pekko-http-play-json com.github.pjfanning%pekko-http-upickle", + "permutive-engineering/prometheus4cats":{ + "project":"permutive-engineering/prometheus4cats", + "repoUrl":"https://github.com/permutive-engineering/prometheus4cats.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"com.permutive%prometheus4cats-testkit com.permutive%prometheus4cats com.permutive%prometheus4cats-docs com.permutive%prometheus4cats-testing com.permutive%prometheus4cats-java", "config":{ "projects":{ "exclude":[ @@ -28783,7 +23652,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -28804,12 +23673,12 @@ ] } }, - "pjfanning/pekko-http-session":{ - "project":"pjfanning/pekko-http-session", - "repoUrl":"https://github.com/pjfanning/pekko-http-session.git", - "revision":"v0.8.0", - "version":"0.8.0", - "targets":"com.github.pjfanning%pekko-http-session-core com.github.pjfanning%pekko-http-session-jwt", + "permutive-engineering/prometheus4cats-contrib":{ + "project":"permutive-engineering/prometheus4cats-contrib", + "repoUrl":"https://github.com/permutive-engineering/prometheus4cats-contrib.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"com.permutive%prometheus4cats-contrib-cats-effect com.permutive%prometheus4cats-contrib-fs2-kafka com.permutive%prometheus4cats-contrib-google-cloud-bigtable com.permutive%prometheus4cats-contrib-opencensus com.permutive%prometheus4cats-contrib-trace4cats com.permutive%prometheus4cats-contrib-refreshable", "config":{ "projects":{ "exclude":[ @@ -28820,7 +23689,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -28837,20 +23706,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "pjfanning/pekko-mock-scheduler":{ - "project":"pjfanning/pekko-mock-scheduler", - "repoUrl":"https://github.com/pjfanning/pekko-mock-scheduler.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"com.github.pjfanning%pekko-mock-scheduler", + "permutive-engineering/refreshable":{ + "project":"permutive-engineering/refreshable", + "repoUrl":"https://github.com/permutive-engineering/refreshable.git", + "revision":"v1.1.0", + "version":"1.1.0", + "targets":"com.permutive%refreshable", "config":{ "projects":{ "exclude":[ @@ -28882,12 +23747,60 @@ ] } }, - "pjfanning/pekko-rabbitmq":{ - "project":"pjfanning/pekko-rabbitmq", - "repoUrl":"https://github.com/pjfanning/pekko-rabbitmq.git", - "revision":"v7.0.0", - "version":"7.0.0", - "targets":"com.github.pjfanning%pekko-rabbitmq", + "petitviolet/scala-operator":{ + "project":"petitviolet/scala-operator", + "repoUrl":"https://github.com/petitviolet/scala-operator.git", + "revision":"v0.7.0", + "version":"0.7.0", + "targets":"net.petitviolet%operator", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.0.0\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "phaller/spores3":{ + "project":"phaller/spores3", + "repoUrl":"https://github.com/phaller/spores3.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.phaller%spores3" + }, + "phenoscape/scowl":{ + "project":"phenoscape/scowl", + "repoUrl":"https://github.com/phenoscape/scowl.git", + "revision":"v1.4.1", + "version":"1.4.1", + "targets":"org.phenoscape%scowl org.phenoscape%scowl-owlapi5", "config":{ "projects":{ "exclude":[ @@ -28919,12 +23832,19 @@ ] } }, - "pjfanning/pekko-serialization-jackson215":{ - "project":"pjfanning/pekko-serialization-jackson215", - "repoUrl":"https://github.com/pjfanning/pekko-serialization-jackson215.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"com.github.pjfanning%pekko-serialization-jackson215", + "phillhenry/dreadnought":{ + "project":"phillhenry/dreadnought", + "repoUrl":"https://github.com/phillhenry/dreadnought.git", + "revision":"673a48408c3a084316b5444cd921bf1d4fb408d6", + "version":"0.1.1", + "targets":"uk.co.odinconsultants%dreadnought-examples uk.co.odinconsultants%dreadnought-docker uk.co.odinconsultants%dreadnought-core uk.co.odinconsultants%dreadnought-lib uk.co.odinconsultants%dreadnought uk.co.odinconsultants%dreadnought-it" + }, + "pismute/classy-optics":{ + "project":"pismute/classy-optics", + "repoUrl":"https://github.com/pismute/classy-optics.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"io.github.pismute%classy-optics io.github.pismute%classy-effect io.github.pismute%classy-mtl", "config":{ "projects":{ "exclude":[ @@ -28935,7 +23855,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -28954,18 +23874,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "pjfanning/scala-faker":{ - "project":"pjfanning/scala-faker", - "repoUrl":"https://github.com/pjfanning/scala-faker.git", - "revision":"", - "version":"0.5.3", - "targets":"com.github.pjfanning%scala-faker", + "pityka/lamp":{ + "project":"pityka/lamp", + "repoUrl":"https://github.com/pityka/lamp.git", + "revision":"v0.0.100", + "version":"0.0.100", + "targets":"io.github.pityka%lamp-knn io.github.pityka%extratrees io.github.pityka%lamp-core io.github.pityka%lamp-saddle io.github.pityka%lamp-akka io.github.pityka%lamp-umap io.github.pityka%lamp-sten io.github.pityka%lamp-data io.github.pityka%lamp-onnx", "config":{ "projects":{ "exclude":[ @@ -28976,7 +23896,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -28997,19 +23917,12 @@ ] } }, - "pjfanning/scala3-sample-classes":{ - "project":"pjfanning/scala3-sample-classes", - "repoUrl":"https://github.com/pjfanning/scala3-sample-classes.git", - "revision":"v0.1.2", - "version":"0.1.2", - "targets":"com.github.pjfanning%scala3-sample-classes" - }, - "pjfanning/zio-metrics-micrometer":{ - "project":"pjfanning/zio-metrics-micrometer", - "repoUrl":"https://github.com/pjfanning/zio-metrics-micrometer.git", - "revision":"v0.21.0", - "version":"0.21.0", - "targets":"com.github.pjfanning%zio-metrics-micrometer", + "pityka/nspl":{ + "project":"pityka/nspl", + "repoUrl":"https://github.com/pityka/nspl.git", + "revision":"v0.10.0", + "version":"0.10.0", + "targets":"io.github.pityka%nspl-shared-jvm io.github.pityka%nspl-awt io.github.pityka%nspl-saddle io.github.pityka%nspl-core io.github.pityka%nspl-scalatags-jvm", "config":{ "projects":{ "exclude":[ @@ -29020,7 +23933,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -29041,19 +23954,19 @@ ] } }, - "playframework/anorm":{ - "project":"playframework/anorm", - "repoUrl":"https://github.com/playframework/anorm.git", - "revision":"2.7.0", - "version":"2.7.0", - "targets":"org.playframework.anorm%anorm org.playframework.anorm%anorm-akka org.playframework.anorm%anorm-postgres org.playframework.anorm%anorm-tokenizer" + "pityka/pairwisealignment":{ + "project":"pityka/pairwisealignment", + "repoUrl":"https://github.com/pityka/pairwisealignment.git", + "revision":"v2.2.7", + "version":"2.2.7", + "targets":"io.github.pityka%pairwisealignment" }, - "playframework/cachecontrol":{ - "project":"playframework/cachecontrol", - "repoUrl":"https://github.com/playframework/cachecontrol.git", - "revision":"3.0.0", - "version":"3.0.0", - "targets":"org.playframework%cachecontrol", + "pityka/saddle":{ + "project":"pityka/saddle", + "repoUrl":"https://github.com/pityka/saddle.git", + "revision":"v4.0.0-M4", + "version":"4.0.0-M4", + "targets":"io.github.pityka%saddle-jsoniter io.github.pityka%saddle-ops-inlined io.github.pityka%saddle-core io.github.pityka%saddle-linalg io.github.pityka%saddle-time io.github.pityka%saddle-circe io.github.pityka%saddle-binary io.github.pityka%saddle-ops-inlined-macroimpl io.github.pityka%saddle-spire-prng io.github.pityka%saddle-io io.github.pityka%saddle-stats", "config":{ "projects":{ "exclude":[ @@ -29064,7 +23977,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -29081,34 +23994,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val Scala3 = \"3.3.1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "playframework/omnidoc":{ - "project":"playframework/omnidoc", - "repoUrl":"https://github.com/playframework/omnidoc.git", - "revision":"2.9.0-RC2", - "version":"2.9.0-RC2", - "targets":"com.typesafe.play%play-omnidoc" - }, - "playframework/play-doc":{ - "project":"playframework/play-doc", - "repoUrl":"https://github.com/playframework/play-doc.git", - "revision":"3.0.1", - "version":"3.0.1", - "targets":"org.playframework%play-doc" - }, - "playframework/play-ebean":{ - "project":"playframework/play-ebean", - "repoUrl":"https://github.com/playframework/play-ebean.git", - "revision":"8.0.0-M1", - "version":"8.0.0-M1", - "targets":"org.playframework%play-ebean", + "pjfanning/akka-rabbitmq":{ + "project":"pjfanning/akka-rabbitmq", + "repoUrl":"https://github.com/pjfanning/akka-rabbitmq.git", + "revision":"v6.1.0", + "version":"6.1.0", + "targets":"com.github.pjfanning%akka-rabbitmq", "config":{ "projects":{ "exclude":[ @@ -29123,7 +24018,7 @@ }, "sbt":{ "commands":[ - + "set every Test/unmanagedSources/excludeFilter := HiddenFileFilter || \"PublishSubscribeSpec.scala\"" ], "options":[ @@ -29136,20 +24031,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "playframework/play-file-watch":{ - "project":"playframework/play-file-watch", - "repoUrl":"https://github.com/playframework/play-file-watch.git", - "revision":"2.0.0", - "version":"2.0.0", - "targets":"org.playframework%play-file-watch", + "pjfanning/jackson-module-enumeratum":{ + "project":"pjfanning/jackson-module-enumeratum", + "repoUrl":"https://github.com/pjfanning/jackson-module-enumeratum.git", + "revision":"v2.14.1", + "version":"2.14.1", + "targets":"com.github.pjfanning%jackson-module-enumeratum", "config":{ "projects":{ "exclude":[ @@ -29160,7 +24051,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -29177,20 +24068,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val Scala3 = \"3.3.1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "playframework/play-json":{ - "project":"playframework/play-json", - "repoUrl":"https://github.com/playframework/play-json.git", - "revision":"3.0.0", - "version":"3.0.0", - "targets":"org.playframework%play-json org.playframework%play-functional org.playframework%play-json-joda", + "pjfanning/jackson-module-scala-duration":{ + "project":"pjfanning/jackson-module-scala-duration", + "repoUrl":"https://github.com/pjfanning/jackson-module-scala-duration.git", + "revision":"v2.15.0", + "version":"2.15.0", + "targets":"com.github.pjfanning%jackson-module-scala-duration", "config":{ "projects":{ "exclude":[ @@ -29201,7 +24088,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -29216,22 +24103,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val Scala3 = \"3.3.1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "playframework/play-mailer":{ - "project":"playframework/play-mailer", - "repoUrl":"https://github.com/playframework/play-mailer.git", - "revision":"10.0.0", - "version":"10.0.0", - "targets":"org.playframework%play-mailer org.playframework%play-mailer-guice", + "pjfanning/jackson-module-scala3-enum":{ + "project":"pjfanning/jackson-module-scala3-enum", + "repoUrl":"https://github.com/pjfanning/jackson-module-scala3-enum.git", + "revision":"v2.15.0", + "version":"2.15.0", + "targets":"com.github.pjfanning%jackson-module-scala3-enum", "config":{ "projects":{ "exclude":[ @@ -29242,7 +24125,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -29259,27 +24142,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val Scala3 = \"3.3.1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "playframework/play-slick":{ - "project":"playframework/play-slick", - "repoUrl":"https://github.com/playframework/play-slick.git", - "revision":"6.0.0-M2", - "version":"6.0.0-M2", - "targets":"org.playframework%play-slick org.playframework%play-slick-evolutions" - }, - "playframework/play-ws":{ - "project":"playframework/play-ws", - "repoUrl":"https://github.com/playframework/play-ws.git", - "revision":"3.0.0", - "version":"3.0.0", - "targets":"org.playframework%play-ahc-ws-standalone org.playframework%play-ws-standalone org.playframework%play-ws-standalone-json org.playframework%play-ws-standalone-xml", + "pjfanning/micrometer-akka":{ + "project":"pjfanning/micrometer-akka", + "repoUrl":"https://github.com/pjfanning/micrometer-akka.git", + "revision":"v0.13.3", + "version":"0.13.3", + "targets":"com.github.pjfanning%micrometer-akka", "config":{ "projects":{ "exclude":[ @@ -29290,7 +24162,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -29307,20 +24179,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "playframework/playframework":{ - "project":"playframework/playframework", - "repoUrl":"https://github.com/playframework/playframework.git", - "revision":"3.0.0", - "version":"3.0.0", - "targets":"org.playframework%play-java-jdbc org.playframework%play-ahc-ws org.playframework%play org.playframework%play-guice org.playframework%play-specs2 org.playframework%play-jdbc-evolutions org.playframework%play-routes-compiler org.playframework%play-jdbc-api org.playframework%play-openid org.playframework%play-jcache org.playframework%play-java org.playframework%play-cache org.playframework%play-java-cluster-sharding org.playframework%play-pekko-http-server org.playframework%play-jdbc org.playframework%play-java-jpa org.playframework%play-bom org.playframework%play-server org.playframework%play-java-forms org.playframework%play-docs org.playframework%play-cluster-sharding org.playframework%play-pekko-http2-support org.playframework%play-configuration org.playframework%play-logback org.playframework%play-joda-forms org.playframework%play-ws org.playframework%play-netty-server org.playframework%play-test org.playframework%play-caffeine-cache org.playframework%play-ehcache org.playframework%play-streams org.playframework%play-filters-helpers", + "pjfanning/scala-faker":{ + "project":"pjfanning/scala-faker", + "repoUrl":"https://github.com/pjfanning/scala-faker.git", + "revision":"a1285acb5d0356afb420ffb698227b62d56d4286", + "version":"0.5.3", + "targets":"com.github.pjfanning%scala-faker", "config":{ "projects":{ "exclude":[ @@ -29348,27 +24216,23 @@ }, "tests":"compile-only", "sourcePatches":[ - { - "path":"project/Versions.scala", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "playframework/scalatestplus-play":{ - "project":"playframework/scalatestplus-play", - "repoUrl":"https://github.com/playframework/scalatestplus-play.git", - "revision":"6.0.0", - "version":"6.0.0", - "targets":"org.scalatestplus.play%scalatestplus-play" + "pjfanning/scala3-sample-classes":{ + "project":"pjfanning/scala3-sample-classes", + "repoUrl":"https://github.com/pjfanning/scala3-sample-classes.git", + "revision":"v0.1.2", + "version":"0.1.2", + "targets":"com.github.pjfanning%scala3-sample-classes" }, - "playframework/twirl":{ - "project":"playframework/twirl", - "repoUrl":"https://github.com/playframework/twirl.git", - "revision":"2.0.1", - "version":"2.0.1", - "targets":"org.playframework.twirl%twirl-api org.playframework.twirl%twirl-compiler org.playframework.twirl%twirl-maven-plugin org.playframework.twirl%twirl-parser", + "pjfanning/zio-metrics-micrometer":{ + "project":"pjfanning/zio-metrics-micrometer", + "repoUrl":"https://github.com/pjfanning/zio-metrics-micrometer.git", + "revision":"v0.21.0", + "version":"0.21.0", + "targets":"com.github.pjfanning%zio-metrics-micrometer", "config":{ "projects":{ "exclude":[ @@ -29379,7 +24243,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -29396,14 +24260,24 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val Scala3 = \"3.3.1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, + "playframework/anorm":{ + "project":"playframework/anorm", + "repoUrl":"https://github.com/playframework/anorm.git", + "revision":"2.7.0", + "version":"2.7.0", + "targets":"org.playframework.anorm%anorm org.playframework.anorm%anorm-akka org.playframework.anorm%anorm-postgres org.playframework.anorm%anorm-tokenizer" + }, + "playframework/scalatestplus-play":{ + "project":"playframework/scalatestplus-play", + "repoUrl":"https://github.com/playframework/scalatestplus-play.git", + "revision":"6.0.0-M3", + "version":"6.0.0-M3", + "targets":"org.scalatestplus.play%scalatestplus-play" + }, "plokhotnyuk/fast-string-interpolator":{ "project":"plokhotnyuk/fast-string-interpolator", "repoUrl":"https://github.com/plokhotnyuk/fast-string-interpolator.git", @@ -29414,8 +24288,8 @@ "plokhotnyuk/jsoniter-scala":{ "project":"plokhotnyuk/jsoniter-scala", "repoUrl":"https://github.com/plokhotnyuk/jsoniter-scala.git", - "revision":"v2.24.4", - "version":"2.24.4", + "revision":"v2.23.0", + "version":"2.23.0", "targets":"com.github.plokhotnyuk.jsoniter-scala%jsoniter-scala-core com.github.plokhotnyuk.jsoniter-scala%jsoniter-scala-circe com.github.plokhotnyuk.jsoniter-scala%jsoniter-scala-macros" }, "plokhotnyuk/rtree2d":{ @@ -29428,9 +24302,9 @@ "pme123/camundala":{ "project":"pme123/camundala", "repoUrl":"https://github.com/pme123/camundala.git", - "revision":"v1.21.11", - "version":"1.21.11", - "targets":"io.github.pme123%camundala-bpmn io.github.pme123%camundala-camunda7-worker io.github.pme123%camundala-camunda io.github.pme123%camundala-api io.github.pme123%camundala-domain io.github.pme123%camundala-dmn io.github.pme123%camundala-simulation io.github.pme123%camundala-helper", + "revision":"0.15.10", + "version":"0.15.10", + "targets":"io.github.pme123%camundala-bpmn io.github.pme123%camundala-api io.github.pme123%camundala-domain io.github.pme123%camundala-dmn io.github.pme123%camundala-simulation", "config":{ "projects":{ "exclude":[ @@ -29460,7 +24334,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0\"", + "pattern":"val scala3Version = \"3.2.2\"", "replaceWith":"val scala3Version = \"\"" } ] @@ -29469,7 +24343,7 @@ "pmeheut/nscala-java-time":{ "project":"pmeheut/nscala-java-time", "repoUrl":"https://github.com/pmeheut/nscala-java-time.git", - "revision":"", + "revision":"47bdca2e765b5318e41de426f9ea915dec714589", "version":"0.1.1", "targets":"io.github.pmeheut%nscala-java-time" }, @@ -29748,47 +24622,6 @@ ] } }, - "polyvariant/smithy4s-caliban":{ - "project":"polyvariant/smithy4s-caliban", - "repoUrl":"https://github.com/polyvariant/smithy4s-caliban.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"org.polyvariant%smithy4s-caliban", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - "excludeLibraryDependency org.polyvariant:better-tostring_{scalaVersion}" - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", - "replaceWith":"val Scala3 = \"\"" - } - ] - } - }, "polyvariant/treesitter4s":{ "project":"polyvariant/treesitter4s", "repoUrl":"https://github.com/polyvariant/treesitter4s.git", @@ -29833,8 +24666,8 @@ "poslegm/munit-zio":{ "project":"poslegm/munit-zio", "repoUrl":"https://github.com/poslegm/munit-zio.git", - "revision":"v0.2.0", - "version":"0.2.0", + "revision":"v0.1.1", + "version":"0.1.1", "targets":"com.github.poslegm%munit-zio", "config":{ "projects":{ @@ -29865,7 +24698,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", + "pattern":"val scala3 = \"3.1.0\"", "replaceWith":"val scala3 = \"\"" } ] @@ -29874,8 +24707,8 @@ "postgresql-async/postgresql-async":{ "project":"postgresql-async/postgresql-async", "repoUrl":"https://github.com/postgresql-async/postgresql-async.git", - "revision":"v0.3.7", - "version":"0.3.7", + "revision":"v0.3.3", + "version":"0.3.3", "targets":"com.github.postgresql-async%postgresql-async com.github.postgresql-async%db-async-common com.github.postgresql-async%mysql-async", "config":{ "projects":{ @@ -29911,22 +24744,22 @@ "ppurang/abctemplates":{ "project":"ppurang/abctemplates", "repoUrl":"https://github.com/ppurang/abctemplates.git", - "revision":"", - "version":"3.3.1", + "revision":"09abf0511a8af8b7d8d2116c56ef3994ee86c537", + "version":"3.2.1", "targets":"org.purang.templates%abctemplates" }, "ppurang/asynch":{ "project":"ppurang/asynch", "repoUrl":"https://github.com/ppurang/asynch.git", - "revision":"", + "revision":"5c279e0de6b5795de2be52b58cc5d4884093890b", "version":"3.2.1-without-netty-cve", "targets":"org.purang.net%asynch" }, "profunktor/fs2-rabbit":{ "project":"profunktor/fs2-rabbit", "repoUrl":"https://github.com/profunktor/fs2-rabbit.git", - "revision":"v5.1.0", - "version":"5.1.0", + "revision":"v5.0.0", + "version":"5.0.0", "targets":"dev.profunktor%fs2-rabbit dev.profunktor%fs2-rabbit-circe dev.profunktor%fs2-rabbit-testkit", "config":{ "projects":{ @@ -29962,15 +24795,15 @@ "profunktor/http4s-jwt-auth":{ "project":"profunktor/http4s-jwt-auth", "repoUrl":"https://github.com/profunktor/http4s-jwt-auth.git", - "revision":"v1.2.1", - "version":"1.2.1", + "revision":"v1.2.0", + "version":"1.2.0", "targets":"dev.profunktor%http4s-jwt-auth" }, "profunktor/neutron":{ "project":"profunktor/neutron", "repoUrl":"https://github.com/profunktor/neutron.git", - "revision":"v0.8.0", - "version":"0.8.0", + "revision":"v0.7.2", + "version":"0.7.2", "targets":"dev.profunktor%neutron-circe dev.profunktor%neutron-core dev.profunktor%neutron-function", "config":{ "projects":{ @@ -30001,7 +24834,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] @@ -30010,8 +24843,8 @@ "profunktor/redis4cats":{ "project":"profunktor/redis4cats", "repoUrl":"https://github.com/profunktor/redis4cats.git", - "revision":"v1.5.2", - "version":"1.5.2", + "revision":"v1.4.1", + "version":"1.4.1", "targets":"dev.profunktor%redis4cats-core dev.profunktor%redis4cats-effects dev.profunktor%redis4cats-log4cats dev.profunktor%redis4cats-streams" }, "pureconfig/pureconfig":{ @@ -30218,295 +25051,12 @@ ] } }, - "pureharm/pureharm-db-core-jdbc":{ - "project":"pureharm/pureharm-db-core-jdbc", - "repoUrl":"https://github.com/pureharm/pureharm-db-core-jdbc.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"com.busymachines%pureharm-db-core-jdbc", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.0.1\"", - "replaceWith":"val Scala3 = \"\"" - } - ] - } - }, - "pureharm/pureharm-effects-cats":{ - "project":"pureharm/pureharm-effects-cats", - "repoUrl":"https://github.com/pureharm/pureharm-effects-cats.git", - "revision":"v0.5.0", - "version":"0.5.0", - "targets":"com.busymachines%pureharm-effects-cats com.busymachines%pureharm-effects-cats-2", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.0.1\"", - "replaceWith":"val Scala3 = \"\"" - } - ] - } - }, - "pureharm/pureharm-json-circe":{ - "project":"pureharm/pureharm-json-circe", - "repoUrl":"https://github.com/pureharm/pureharm-json-circe.git", - "revision":"v0.3.0-M1", - "version":"0.3.0-M1", - "targets":"com.busymachines%pureharm-json-circe", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.0.1\"", - "replaceWith":"val Scala3 = \"\"" - } - ] - } - }, - "pureharm/pureharm-testkit":{ - "project":"pureharm/pureharm-testkit", - "repoUrl":"https://github.com/pureharm/pureharm-testkit.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"com.busymachines%pureharm-testkit com.busymachines%pureharm-testkit-ce2", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.0.1\"", - "replaceWith":"val Scala3 = \"\"" - } - ] - } - }, - "purplekingdomgames/tyrian":{ - "project":"purplekingdomgames/tyrian", - "repoUrl":"https://github.com/purplekingdomgames/tyrian.git", - "revision":"v0.8.0", - "version":"0.8.0", - "targets":"io.indigoengine%tyrian", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.1\"", - "replaceWith":"val scala3Version = \"\"" - } - ] - } - }, - "purplekingdomgames/ultraviolet":{ - "project":"purplekingdomgames/ultraviolet", - "repoUrl":"https://github.com/purplekingdomgames/ultraviolet.git", - "revision":"v0.1.3", - "version":"0.1.3", - "targets":"io.indigoengine%ultraviolet", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.1\"", - "replaceWith":"val scala3Version = \"\"" - } - ] - } - }, - "quafadas/dedav4s":{ - "project":"quafadas/dedav4s", - "repoUrl":"https://github.com/quafadas/dedav4s.git", - "revision":"v0.9.0-RC7", - "version":"0.9.0-RC7", - "targets":"io.github.quafadas%dedav4s io.github.quafadas%dedav4s-docs io.github.quafadas%generated", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "quafadas/vecxt":{ - "project":"quafadas/vecxt", - "repoUrl":"https://github.com/quafadas/vecxt.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"io.github.quafadas%core", + "pureharm/pureharm-db-core-jdbc":{ + "project":"pureharm/pureharm-db-core-jdbc", + "repoUrl":"https://github.com/pureharm/pureharm-db-core-jdbc.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"com.busymachines%pureharm-db-core-jdbc", "config":{ "projects":{ "exclude":[ @@ -30534,30 +25084,102 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.0.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "qwbarch/snowflake4s":{ - "project":"qwbarch/snowflake4s", - "repoUrl":"https://github.com/qwbarch/snowflake4s.git", - "revision":"v1.1.0-RC1", - "version":"1.1.0-RC1", - "targets":"io.github.qwbarch%snowflake4s io.github.qwbarch%snowflake4s-circe io.github.qwbarch%snowflake4s-http4s io.github.qwbarch%snowflake4s-skunk" + "pureharm/pureharm-effects-cats":{ + "project":"pureharm/pureharm-effects-cats", + "repoUrl":"https://github.com/pureharm/pureharm-effects-cats.git", + "revision":"v0.5.0", + "version":"0.5.0", + "targets":"com.busymachines%pureharm-effects-cats com.busymachines%pureharm-effects-cats-2", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.0.1\"", + "replaceWith":"val Scala3 = \"\"" + } + ] + } }, - "raistlintao/scalalogger":{ - "project":"raistlintao/scalalogger", - "repoUrl":"https://github.com/raistlintao/scalalogger.git", - "revision":"", - "version":"1.0.0", - "targets":"io.github.raistlintao%logger" + "pureharm/pureharm-json-circe":{ + "project":"pureharm/pureharm-json-circe", + "repoUrl":"https://github.com/pureharm/pureharm-json-circe.git", + "revision":"v0.3.0-M1", + "version":"0.3.0-M1", + "targets":"com.busymachines%pureharm-json-circe", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.0.1\"", + "replaceWith":"val Scala3 = \"\"" + } + ] + } }, - "rallyhealth/scalacheck-ops":{ - "project":"rallyhealth/scalacheck-ops", - "repoUrl":"https://github.com/rallyhealth/scalacheck-ops.git", - "revision":"v2.12.0", - "version":"2.12.0", - "targets":"com.rallyhealth%scalacheck-ops-joda_1 com.rallyhealth%scalacheck-ops-joda_1-15 com.rallyhealth%scalacheck-ops_1 com.rallyhealth%scalacheck-ops_1-15", + "pureharm/pureharm-testkit":{ + "project":"pureharm/pureharm-testkit", + "repoUrl":"https://github.com/pureharm/pureharm-testkit.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"com.busymachines%pureharm-testkit com.busymachines%pureharm-testkit-ce2", "config":{ "projects":{ "exclude":[ @@ -30568,7 +25190,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -30586,19 +25208,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/Dependencies.scala", - "pattern":"val Scala_3 = \"3.2.0\"", - "replaceWith":"val Scala_3 = \"\"" + "path":"build.sbt", + "pattern":"val Scala3 = \"3.0.1\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "rallyhealth/weepickle":{ - "project":"rallyhealth/weepickle", - "repoUrl":"https://github.com/rallyhealth/weepickle.git", - "revision":"v1.9.1", - "version":"1.9.1", - "targets":"com.rallyhealth%weejson-play210-v1 com.rallyhealth%weeyaml-v1 com.rallyhealth%weejson-jackson-v1 com.rallyhealth%weejson-play30-v1 com.rallyhealth%weejson-json4s-v1 com.rallyhealth%weepickle-implicits-v1 com.rallyhealth%weepickle-core-v1 com.rallyhealth%weejson-upickle-v1 com.rallyhealth%weexml-v1 com.rallyhealth%weejson-v1 com.rallyhealth%weejson-circe-v1 com.rallyhealth%weepickle-v1 com.rallyhealth%weejson-argonaut-v1 com.rallyhealth%weepack-v1", + "purplekingdomgames/tyrian":{ + "project":"purplekingdomgames/tyrian", + "repoUrl":"https://github.com/purplekingdomgames/tyrian.git", + "revision":"v0.7.0", + "version":"0.7.0", + "targets":"io.indigoengine%tyrian", "config":{ "projects":{ "exclude":[ @@ -30627,19 +25249,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/WeePicklePlugin.scala", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" + "path":"build.sbt", + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "ranyitz/brush":{ - "project":"ranyitz/brush", - "repoUrl":"https://github.com/ranyitz/brush.git", - "revision":"v0.3.0", - "version":"0.3.0", - "targets":"io.github.ranyitz%brush", + "purplekingdomgames/ultraviolet":{ + "project":"purplekingdomgames/ultraviolet", + "repoUrl":"https://github.com/purplekingdomgames/ultraviolet.git", + "revision":"v0.1.1", + "version":"0.1.1", + "targets":"io.indigoengine%ultraviolet", "config":{ "projects":{ "exclude":[ @@ -30650,7 +25272,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -30669,18 +25291,69 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3: String = \"3.3.0\"", - "replaceWith":"val Scala3: String = \"\"" + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "ranyitz/casing":{ - "project":"ranyitz/casing", - "repoUrl":"https://github.com/ranyitz/casing.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"io.github.ranyitz%casing", + "quafadas/dedav4s":{ + "project":"quafadas/dedav4s", + "repoUrl":"https://github.com/quafadas/dedav4s.git", + "revision":"v0.9.0-RC1", + "version":"0.9.0-RC1", + "targets":"io.github.quafadas%dedav4s io.github.quafadas%dedav4s-docs io.github.quafadas%generated", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "qwbarch/snowflake4s":{ + "project":"qwbarch/snowflake4s", + "repoUrl":"https://github.com/qwbarch/snowflake4s.git", + "revision":"v1.1.0-RC1", + "version":"1.1.0-RC1", + "targets":"io.github.qwbarch%snowflake4s io.github.qwbarch%snowflake4s-circe io.github.qwbarch%snowflake4s-http4s io.github.qwbarch%snowflake4s-skunk" + }, + "raistlintao/scalalogger":{ + "project":"raistlintao/scalalogger", + "repoUrl":"https://github.com/raistlintao/scalalogger.git", + "revision":"17b65304c5a04ff96ec06df3bfe4c72e51f7ba13", + "version":"1.0.0", + "targets":"io.github.raistlintao%logger" + }, + "rallyhealth/scalacheck-ops":{ + "project":"rallyhealth/scalacheck-ops", + "repoUrl":"https://github.com/rallyhealth/scalacheck-ops.git", + "revision":"v2.12.0", + "version":"2.12.0", + "targets":"com.rallyhealth%scalacheck-ops-joda_1 com.rallyhealth%scalacheck-ops-joda_1-15 com.rallyhealth%scalacheck-ops_1 com.rallyhealth%scalacheck-ops_1-15", "config":{ "projects":{ "exclude":[ @@ -30709,19 +25382,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val Scala3: String = \"3.3.0\"", - "replaceWith":"val Scala3: String = \"\"" + "path":"project/Dependencies.scala", + "pattern":"val Scala_3 = \"3.2.0\"", + "replaceWith":"val Scala_3 = \"\"" } ] } }, - "raquo/scala-dom-types":{ - "project":"raquo/scala-dom-types", - "repoUrl":"https://github.com/raquo/scala-dom-types.git", - "revision":"v17.1.0", - "version":"17.1.0", - "targets":"com.raquo%domtypes", + "rallyhealth/weepickle":{ + "project":"rallyhealth/weepickle", + "repoUrl":"https://github.com/rallyhealth/weepickle.git", + "revision":"v1.8.0", + "version":"1.8.0", + "targets":"com.rallyhealth%weejson-play210-v1 com.rallyhealth%weeyaml-v1 com.rallyhealth%weejson-jackson-v1 com.rallyhealth%weejson-json4s-v1 com.rallyhealth%weepickle-implicits-v1 com.rallyhealth%weepickle-core-v1 com.rallyhealth%weejson-upickle-v1 com.rallyhealth%weexml-v1 com.rallyhealth%weejson-v1 com.rallyhealth%weejson-circe-v1 com.rallyhealth%weepickle-v1 com.rallyhealth%weejson-argonaut-v1 com.rallyhealth%weepack-v1", "config":{ "projects":{ "exclude":[ @@ -30750,19 +25423,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/Versions.scala", - "pattern":"val Scala_3 = \"3.3.0\"", - "replaceWith":"val Scala_3 = \"\"" + "path":"project/WeePicklePlugin.scala", + "pattern":"val scala3 = \"3.1.0\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "raquo/waypoint":{ - "project":"raquo/waypoint", - "repoUrl":"https://github.com/raquo/waypoint.git", - "revision":"v7.0.0", - "version":"7.0.0", - "targets":"com.raquo%waypoint", + "raquo/scala-dom-types":{ + "project":"raquo/scala-dom-types", + "repoUrl":"https://github.com/raquo/scala-dom-types.git", + "revision":"v17.0.0", + "version":"17.0.0", + "targets":"com.raquo%domtypes", "config":{ "projects":{ "exclude":[ @@ -30792,18 +25465,18 @@ "sourcePatches":[ { "path":"project/Versions.scala", - "pattern":"val Scala_3 = \"3.3.0\"", + "pattern":"val Scala_3 = \"3.2.0\"", "replaceWith":"val Scala_3 = \"\"" } ] } }, - "reactific/riddl":{ - "project":"reactific/riddl", - "repoUrl":"https://github.com/reactific/riddl.git", - "revision":"0.27.4", - "version":"0.27.4", - "targets":"com.reactific%riddl-stats com.reactific%riddl-passes com.reactific%riddl-prettify com.reactific%riddl-language com.reactific%riddl-hugo com.reactific%riddl-commands com.reactific%riddl-utils com.reactific%riddl-testkit com.reactific%riddl-diagrams com.reactific%riddlc", + "raquo/waypoint":{ + "project":"raquo/waypoint", + "repoUrl":"https://github.com/raquo/waypoint.git", + "revision":"v6.0.0", + "version":"6.0.0", + "targets":"com.raquo%waypoint", "config":{ "projects":{ "exclude":[ @@ -30814,7 +25487,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -30831,7 +25504,11 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Versions.scala", + "pattern":"val Scala_3 = \"3.2.0\"", + "replaceWith":"val Scala_3 = \"\"" + } ] } }, @@ -30879,8 +25556,8 @@ "reactivemongo/reactivemongo":{ "project":"reactivemongo/reactivemongo", "repoUrl":"https://github.com/reactivemongo/reactivemongo.git", - "revision":"1.1.0-RC11", - "version":"1.1.0-RC11", + "revision":"1.1.0-RC10", + "version":"1.1.0-RC10", "targets":"org.reactivemongo%reactivemongo org.reactivemongo%reactivemongo-alias org.reactivemongo%reactivemongo-core org.reactivemongo%reactivemongo-test", "config":{ "projects":{ @@ -30918,9 +25595,9 @@ "reactivemongo/reactivemongo-bson":{ "project":"reactivemongo/reactivemongo-bson", "repoUrl":"https://github.com/reactivemongo/reactivemongo-bson.git", - "revision":"1.1.0-RC11", - "version":"1.1.0-RC11", - "targets":"org.reactivemongo%reactivemongo-bson-monocle org.reactivemongo%reactivemongo-bson-specs2 org.reactivemongo%reactivemongo-jmx org.reactivemongo%reactivemongo-bson-geo org.reactivemongo%reactivemongo-bson-api org.reactivemongo%reactivemongo-datadog org.reactivemongo%reactivemongo-bson-msb-compat org.reactivemongo%reactivemongo-kamon", + "revision":"1.1.0-RC10", + "version":"1.1.0-RC10", + "targets":"org.reactivemongo%reactivemongo-bson-monocle org.reactivemongo%reactivemongo-bson-specs2 org.reactivemongo%reactivemongo-bson-geo org.reactivemongo%reactivemongo-bson-api org.reactivemongo%reactivemongo-bson-msb-compat", "config":{ "projects":{ "exclude":[ @@ -30957,8 +25634,8 @@ "reactivemongo/reactivemongo-play-json":{ "project":"reactivemongo/reactivemongo-play-json", "repoUrl":"https://github.com/reactivemongo/reactivemongo-play-json.git", - "revision":"", - "version":"1.1.0-play29-RC11", + "revision":"e1d41746b23bb9431e19bf0e6f819534e791a0b0", + "version":"1.1.0-play29-RC10", "targets":"org.reactivemongo%reactivemongo-play-json-compat", "config":{ "projects":{ @@ -30994,8 +25671,8 @@ "reactivemongo/reactivemongo-streaming":{ "project":"reactivemongo/reactivemongo-streaming", "repoUrl":"https://github.com/reactivemongo/reactivemongo-streaming.git", - "revision":"1.1.0-RC11", - "version":"1.1.0-RC11", + "revision":"1.1.0-RC10", + "version":"1.1.0-RC10", "targets":"org.reactivemongo%reactivemongo-akkastream" }, "rediscala/rediscala":{ @@ -31042,8 +25719,8 @@ "regis-leray/fs2-ftp":{ "project":"regis-leray/fs2-ftp", "repoUrl":"https://github.com/regis-leray/fs2-ftp.git", - "revision":"v0.8.4", - "version":"0.8.4", + "revision":"v0.8.3", + "version":"0.8.3", "targets":"com.github.regis-leray%fs2-ftp", "config":{ "projects":{ @@ -31055,7 +25732,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -31161,8 +25838,8 @@ "rewards-network/pure-aws":{ "project":"rewards-network/pure-aws", "repoUrl":"https://github.com/rewards-network/pure-aws.git", - "revision":"v0.7.2", - "version":"0.7.2", + "revision":"v0.7.1", + "version":"0.7.1", "targets":"com.rewardsnetwork%pure-aws-s3-testing com.rewardsnetwork%pure-aws-core com.rewardsnetwork%pure-aws-sqs-refined com.rewardsnetwork%pure-aws-s3 com.rewardsnetwork%pure-aws-sqs", "config":{ "projects":{ @@ -31193,53 +25870,12 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.1.3\"", + "pattern":"val scala3 = \"3.1.1\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "rolang/dumbo":{ - "project":"rolang/dumbo", - "repoUrl":"https://github.com/rolang/dumbo.git", - "revision":"v0.0.3", - "version":"0.0.3", - "targets":"dev.rolang%dumbo", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val `scala-3` = \"3.3.0\"", - "replaceWith":"val `scala-3` = \"\"" - } - ] - } - }, "rsemlal/clickhouse4cats":{ "project":"rsemlal/clickhouse4cats", "repoUrl":"https://github.com/rsemlal/clickhouse4cats.git", @@ -31284,9 +25920,9 @@ "rssh/cps-async-connect":{ "project":"rssh/cps-async-connect", "repoUrl":"https://github.com/rssh/cps-async-connect.git", - "revision":"0.9.19", - "version":"0.9.19", - "targets":"com.github.rssh%cps-async-connect-pekko-stream com.github.rssh%cps-async-connect-zio2 com.github.rssh%cps-async-connect-cats-effect-loom com.github.rssh%cps-async-connect-scalaz com.github.rssh%cps-async-connect-zio com.github.rssh%cps-async-connect-monix com.github.rssh%cps-async-connect-zio2-loom com.github.rssh%cps-async-connect-akka-stream com.github.rssh%cps-async-connect-fs2 com.github.rssh%cps-async-connect-cats-effect com.github.rssh%cps-async-connect-probabiliy-monad", + "revision":"0.9.12", + "version":"0.9.12", + "targets":"com.github.rssh%cps-async-connect-zio2 com.github.rssh%cps-async-connect-scalaz com.github.rssh%cps-async-connect-zio com.github.rssh%cps-async-connect-monix com.github.rssh%cps-async-connect-akka-stream com.github.rssh%cps-async-connect-fs2 com.github.rssh%cps-async-connect-cats-effect", "config":{ "projects":{ "exclude":[ @@ -31321,9 +25957,9 @@ "rssh/dotty-cps-async":{ "project":"rssh/dotty-cps-async", "repoUrl":"https://github.com/rssh/dotty-cps-async.git", - "revision":"0.9.19", - "version":"0.9.19", - "targets":"com.github.rssh%dotty-cps-async com.github.rssh%dotty-cps-async-compiler-plugin com.github.rssh%dotty-cps-async-loom", + "revision":"0.9.16", + "version":"0.9.16", + "targets":"com.github.rssh%dotty-cps-async", "config":{ "projects":{ "exclude":[ @@ -31334,7 +25970,7 @@ } }, "java":{ - "version":"21" + "version":"17" }, "sbt":{ "commands":[ @@ -31358,8 +25994,8 @@ "rssh/shim--scala-async--dotty-cps-async":{ "project":"rssh/shim--scala-async--dotty-cps-async", "repoUrl":"https://github.com/rssh/shim--scala-async--dotty-cps-async.git", - "revision":"0.9.18", - "version":"0.9.18", + "revision":"0.9.16", + "version":"0.9.16", "targets":"com.github.rssh%shim-scala-async-dotty-cps-async" }, "rssh/trackedfuture":{ @@ -31623,170 +26259,6 @@ ] } }, - "rustedbones/pekko-http-avro":{ - "project":"rustedbones/pekko-http-avro", - "repoUrl":"https://github.com/rustedbones/pekko-http-avro.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"fr.davit%pekko-http-avro", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "rustedbones/pekko-http-metrics":{ - "project":"rustedbones/pekko-http-metrics", - "repoUrl":"https://github.com/rustedbones/pekko-http-metrics.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"fr.davit%pekko-http-metrics-prometheus fr.davit%pekko-http-metrics-core fr.davit%pekko-http-metrics-datadog fr.davit%pekko-http-metrics-dropwizard fr.davit%pekko-http-metrics-dropwizard-v5 fr.davit%pekko-http-metrics-graphite", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "rustedbones/pekko-http-scalapb":{ - "project":"rustedbones/pekko-http-scalapb", - "repoUrl":"https://github.com/rustedbones/pekko-http-scalapb.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"fr.davit%pekko-http-scalapb fr.davit%pekko-http-scalapb-binary fr.davit%pekko-http-scalapb-json4s", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "rustedbones/pekko-http-thrift":{ - "project":"rustedbones/pekko-http-thrift", - "repoUrl":"https://github.com/rustedbones/pekko-http-thrift.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"fr.davit%pekko-http-thrift", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, "rustedbones/scout":{ "project":"rustedbones/scout", "repoUrl":"https://github.com/rustedbones/scout.git", @@ -31864,8 +26336,8 @@ "sageserpent-open/americium":{ "project":"sageserpent-open/americium", "repoUrl":"https://github.com/sageserpent-open/americium.git", - "revision":"v1.17.0", - "version":"1.17.0", + "revision":"v1.12.0", + "version":"1.12.0", "targets":"com.sageserpent%americium", "config":{ "projects":{ @@ -31898,43 +26370,6 @@ ] } }, - "sageserpent-open/kineticmerge":{ - "project":"sageserpent-open/kineticmerge", - "repoUrl":"https://github.com/sageserpent-open/kineticmerge.git", - "revision":"v0.1.9", - "version":"0.1.9", - "targets":"com.sageserpent%kinetic-merge", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, "sagifogel/proptics":{ "project":"sagifogel/proptics", "repoUrl":"https://github.com/sagifogel/proptics.git", @@ -31979,8 +26414,8 @@ "sake92/hepek":{ "project":"sake92/hepek", "repoUrl":"https://github.com/sake92/hepek.git", - "revision":"v0.14.0", - "version":"0.14.0", + "revision":"v0.10.0", + "version":"0.10.0", "targets":"ba.sake%hepek ba.sake%hepek-components", "config":{ "projects":{ @@ -31992,44 +26427,7 @@ } }, "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "sake92/sharaf":{ - "project":"sake92/sharaf", - "repoUrl":"https://github.com/sake92/sharaf.git", - "revision":"0.0.12", - "version":"0.0.12", - "targets":"ba.sake%sharaf ba.sake%formson ba.sake%querson ba.sake%validson", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -32053,8 +26451,8 @@ "sake92/squery":{ "project":"sake92/squery", "repoUrl":"https://github.com/sake92/squery.git", - "revision":"0.0.8", - "version":"0.0.8", + "revision":"0.0.5", + "version":"0.0.5", "targets":"ba.sake%squery", "config":{ "projects":{ @@ -32066,7 +26464,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -32090,8 +26488,8 @@ "sake92/tupson":{ "project":"sake92/tupson", "repoUrl":"https://github.com/sake92/tupson.git", - "revision":"0.8.0", - "version":"0.8.0", + "revision":"0.5.1", + "version":"0.5.1", "targets":"ba.sake%tupson", "config":{ "projects":{ @@ -32103,7 +26501,7 @@ } }, "java":{ - "version":"21" + "version":"11" }, "sbt":{ "commands":[ @@ -32127,8 +26525,8 @@ "sakulk/serval":{ "project":"sakulk/serval", "repoUrl":"https://github.com/sakulk/serval.git", - "revision":"v0.5.0", - "version":"0.5.0", + "revision":"v0.4.0", + "version":"0.4.0", "targets":"io.github.sakulk%serval-core io.github.sakulk%serval-legacy", "config":{ "projects":{ @@ -32159,58 +26557,17 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", + "pattern":"val Scala3 = \"3.1.2\"", "replaceWith":"val Scala3 = \"\"" } ] } }, - "samueleresca/pekko-quartz-scheduler":{ - "project":"samueleresca/pekko-quartz-scheduler", - "repoUrl":"https://github.com/samueleresca/pekko-quartz-scheduler.git", - "revision":"1.1.0-pekko-1.0.x", - "version":"1.1.0-pekko-1.0.x", - "targets":"io.github.samueleresca%pekko-quartz-scheduler", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3Version = \"3.3.0\"", - "replaceWith":"val Scala3Version = \"\"" - } - ] - } - }, "sangria-graphql/macro-visit":{ "project":"sangria-graphql/macro-visit", "repoUrl":"https://github.com/sangria-graphql/macro-visit.git", - "revision":"v0.2.0", - "version":"0.2.0", + "revision":"v0.2.0-RC1", + "version":"0.2.0-RC1", "targets":"org.sangria-graphql%macro-visit", "config":{ "projects":{ @@ -32222,7 +26579,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -32246,8 +26603,8 @@ "sangria-graphql/sangria":{ "project":"sangria-graphql/sangria", "repoUrl":"https://github.com/sangria-graphql/sangria.git", - "revision":"v4.1.0-RC2", - "version":"4.1.0-RC2", + "revision":"v4.0.0-RC5", + "version":"4.0.0-RC5", "targets":"org.sangria-graphql%sangria-parser org.sangria-graphql%sangria-derivation org.sangria-graphql%sangria-ast org.sangria-graphql%sangria org.sangria-graphql%sangria-core org.sangria-graphql%sangria-cats-effect-experimental", "config":{ "projects":{ @@ -32259,7 +26616,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -32653,8 +27010,8 @@ "sangria-graphql/sangria-relay":{ "project":"sangria-graphql/sangria-relay", "repoUrl":"https://github.com/sangria-graphql/sangria-relay.git", - "revision":"v4.0.0", - "version":"4.0.0", + "revision":"v3.0.1", + "version":"3.0.1", "targets":"org.sangria-graphql%sangria-relay", "config":{ "projects":{ @@ -32666,7 +27023,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -32690,8 +27047,8 @@ "sangria-graphql/sangria-slowlog":{ "project":"sangria-graphql/sangria-slowlog", "repoUrl":"https://github.com/sangria-graphql/sangria-slowlog.git", - "revision":"v3.0.0", - "version":"3.0.0", + "revision":"v2.0.5", + "version":"2.0.5", "targets":"org.sangria-graphql%sangria-slowlog", "config":{ "projects":{ @@ -32842,8 +27199,8 @@ "sbt-jib/sbt-jib":{ "project":"sbt-jib/sbt-jib", "repoUrl":"https://github.com/sbt-jib/sbt-jib.git", - "revision":"v1.3.6", - "version":"1.3.6", + "revision":"v1.3.4", + "version":"1.3.4", "targets":"de.gccc.sbt%jib-common", "config":{ "projects":{ @@ -32855,7 +27212,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -32879,8 +27236,8 @@ "sbt/io":{ "project":"sbt/io", "repoUrl":"https://github.com/sbt/io.git", - "revision":"v1.9.7", - "version":"1.9.7", + "revision":"v1.9.0-RC3", + "version":"1.9.0-RC3", "targets":"org.scala-sbt%io", "config":{ "projects":{ @@ -32911,7 +27268,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.3.1\"", + "pattern":"val scala3 = \"3.1.3\"", "replaceWith":"val scala3 = \"\"" } ] @@ -33036,13 +27393,6 @@ ] } }, - "scala-cli/directive-handler":{ - "project":"scala-cli/directive-handler", - "repoUrl":"https://github.com/scala-cli/directive-handler.git", - "revision":"v0.1.4", - "version":"0.1.4", - "targets":"io.github.alexarchambault.scala-cli%directive-handler" - }, "scala-cli/java-class-name":{ "project":"scala-cli/java-class-name", "repoUrl":"https://github.com/scala-cli/java-class-name.git", @@ -33165,8 +27515,8 @@ "scala-interop/slinc":{ "project":"scala-interop/slinc", "repoUrl":"https://github.com/scala-interop/slinc.git", - "revision":"0.6.0", - "version":"0.6.0", + "revision":"0.4.0", + "version":"0.4.0", "targets":"fr.hammons%slinc-core fr.hammons%slinc-j17 fr.hammons%slinc-j19 fr.hammons%slinc-runtime", "config":{ "projects":{ @@ -33239,8 +27589,8 @@ "scala-native/scala-native":{ "project":"scala-native/scala-native", "repoUrl":"https://github.com/scala-native/scala-native.git", - "revision":"v0.4.16", - "version":"0.4.16", + "revision":"v0.4.12", + "version":"0.4.12", "targets":"org.scala-native%nir org.scala-native%test-runner org.scala-native%tools org.scala-native%util", "config":{ "projects":{ @@ -33252,7 +27602,7 @@ } }, "java":{ - "version":"21" + "version":"17" }, "sbt":{ "commands":[ @@ -33280,8 +27630,8 @@ "scala-native/scala-native-cli":{ "project":"scala-native/scala-native-cli", "repoUrl":"https://github.com/scala-native/scala-native-cli.git", - "revision":"v0.4.16", - "version":"0.4.16", + "revision":"v0.4.12", + "version":"0.4.12", "targets":"org.scala-native%scala-native-cli", "config":{ "projects":{ @@ -33293,7 +27643,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -33317,7 +27667,7 @@ "scala-stm/scala-stm":{ "project":"scala-stm/scala-stm", "repoUrl":"https://github.com/scala-stm/scala-stm.git", - "revision":"", + "revision":"3244edf13c41f22ff8b45143186745e9eb469220", "version":"0.11.1", "targets":"org.scala-stm%scala-stm" }, @@ -33361,8 +27711,8 @@ "scala-ts/scala-ts":{ "project":"scala-ts/scala-ts", "repoUrl":"https://github.com/scala-ts/scala-ts.git", - "revision":"0.5.17", - "version":"0.5.17", + "revision":"0.5.16", + "version":"0.5.16", "targets":"io.github.scala-ts%scala-ts-core io.github.scala-ts%scala-ts-idtlt io.github.scala-ts%scala-ts-python" }, "scala-tsi/scala-tsi":{ @@ -33409,15 +27759,15 @@ "scala-workers/commons-lang3-bridge":{ "project":"scala-workers/commons-lang3-bridge", "repoUrl":"https://github.com/scala-workers/commons-lang3-bridge.git", - "revision":"", + "revision":"5ff9b446fc01ff2cb35e95e5acc638eb5988f228", "version":"0.1.0", "targets":"net.scalax%commons-lang3-bridge" }, "scala/scala-collection-compat":{ "project":"scala/scala-collection-compat", "repoUrl":"https://github.com/scala/scala-collection-compat.git", - "revision":"v2.11.0", - "version":"2.11.0", + "revision":"v2.10.0", + "version":"2.10.0", "targets":"org.scala-lang.modules%scala-collection-compat", "config":{ "projects":{ @@ -33612,8 +27962,8 @@ "scala/scala-xml":{ "project":"scala/scala-xml", "repoUrl":"https://github.com/scala/scala-xml.git", - "revision":"v2.2.0", - "version":"2.2.0", + "revision":"v2.1.0", + "version":"2.1.0", "targets":"org.scala-lang.modules%scala-xml", "config":{ "projects":{ @@ -33649,8 +27999,8 @@ "scala/toolkit":{ "project":"scala/toolkit", "repoUrl":"https://github.com/scala/toolkit.git", - "revision":"0.2.1", - "version":"0.2.1", + "revision":"v0.1.7", + "version":"0.1.7", "targets":"org.scala-lang%toolkit org.scala-lang%toolkit-test" }, "scalabin-no/http4s-directives":{ @@ -33660,48 +28010,11 @@ "version":"0.23.10", "targets":"no.scalabin.http4s%http4s-directives" }, - "scalacenter/course-management-tools":{ - "project":"scalacenter/course-management-tools", - "repoUrl":"https://github.com/scalacenter/course-management-tools.git", - "revision":"2.0.22", - "version":"2.0.22", - "targets":"ch.epfl.scala%cmt-core ch.epfl.scala%cmta ch.epfl.scala%cmtc", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, "scalacenter/scala-debug-adapter":{ "project":"scalacenter/scala-debug-adapter", "repoUrl":"https://github.com/scalacenter/scala-debug-adapter.git", - "revision":"v3.1.4", - "version":"3.1.4", + "revision":"v3.1.3", + "version":"3.1.3", "targets":"ch.epfl.scala%scala-debug-step-filter", "config":{ "projects":{ @@ -33737,7 +28050,7 @@ "scalacenter/simple-rockets-compiler":{ "project":"scalacenter/simple-rockets-compiler", "repoUrl":"https://github.com/scalacenter/simple-rockets-compiler.git", - "revision":"", + "revision":"9e40e57dfce7497a409317b64d0b2135ed7e1e1e", "version":"0.1.1", "targets":"com.akmetiuk%simple-rockets-compiler", "config":{ @@ -33778,8 +28091,8 @@ "scalacenter/tasty-mima":{ "project":"scalacenter/tasty-mima", "repoUrl":"https://github.com/scalacenter/tasty-mima.git", - "revision":"v1.0.0", - "version":"1.0.0", + "revision":"v0.2.3", + "version":"0.2.3", "targets":"ch.epfl.scala%tasty-mima", "config":{ "projects":{ @@ -33815,8 +28128,8 @@ "scalacenter/tasty-query":{ "project":"scalacenter/tasty-query", "repoUrl":"https://github.com/scalacenter/tasty-query.git", - "revision":"v1.0.0", - "version":"1.0.0", + "revision":"v0.7.9", + "version":"0.7.9", "targets":"ch.epfl.scala%tasty-query", "config":{ "projects":{ @@ -33828,7 +28141,7 @@ } }, "java":{ - "version":"21" + "version":"17" }, "sbt":{ "commands":[ @@ -33886,52 +28199,11 @@ ] } }, - "scalalandio/chimney":{ - "project":"scalalandio/chimney", - "repoUrl":"https://github.com/scalalandio/chimney.git", - "revision":"0.8.1", - "version":"0.8.1", - "targets":"io.scalaland%chimney-protobufs io.scalaland%chimney-cats io.scalaland%chimney io.scalaland%chimney-java-collections io.scalaland%chimney-macro-commons", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"21" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, "scalameta/mdoc":{ "project":"scalameta/mdoc", "repoUrl":"https://github.com/scalameta/mdoc.git", - "revision":"v2.4.0", - "version":"2.4.0", + "revision":"v2.3.7", + "version":"2.3.7", "targets":"org.scalameta%mdoc-js org.scalameta%mdoc-js-worker org.scalameta%mdoc-runtime org.scalameta%mdoc org.scalameta%mdoc-cli", "config":{ "projects":{ @@ -33962,7 +28234,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"def scala3 = \"3.3.1\"", + "pattern":"def scala3 = \"3.1.3\"", "replaceWith":"def scala3 = \"\"" } ] @@ -33971,91 +28243,9 @@ "scalameta/metaconfig":{ "project":"scalameta/metaconfig", "repoUrl":"https://github.com/scalameta/metaconfig.git", - "revision":"v0.12.0", - "version":"0.12.0", - "targets":"com.geirsson%metaconfig-core com.geirsson%metaconfig-typesafe-config com.geirsson%metaconfig-pprint com.geirsson%metaconfig-sconfig com.geirsson%metaconfig-docs", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "scalameta/metals":{ - "project":"scalameta/metals", - "repoUrl":"https://github.com/scalameta/metals.git", - "revision":"v0.11.12", - "version":"0.11.12", - "targets":"org.scalameta%mtags-shared", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"project/V.scala", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "scalameta/munit":{ - "project":"scalameta/munit", - "repoUrl":"https://github.com/scalameta/munit.git", - "revision":"v1.0.0-M10", - "version":"1.0.0-M10", - "targets":"org.scalameta%munit org.scalameta%munit-scalacheck", + "revision":"v0.11.1", + "version":"0.11.1", + "targets":"com.geirsson%metaconfig-core com.geirsson%metaconfig-typesafe-config com.geirsson%metaconfig-pprint com.geirsson%metaconfig-sconfig", "config":{ "projects":{ "exclude":[ @@ -34085,18 +28275,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"def scala3 = \"3.1.2\"", - "replaceWith":"def scala3 = \"\"" + "pattern":"val scala3 = \"3.0.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "scalamolecule/molecule":{ - "project":"scalamolecule/molecule", - "repoUrl":"https://github.com/scalamolecule/molecule.git", - "revision":"v0.7.0", - "version":"0.7.0", - "targets":"org.scalamolecule%molecule-sql-mysql org.scalamolecule%molecule-sql-mariadb org.scalamolecule%molecule-core org.scalamolecule%molecule-boilerplate org.scalamolecule%molecule-sql-core org.scalamolecule%molecule-datalog-datomic org.scalamolecule%molecule-sql-h2 org.scalamolecule%molecule-sql-postgres org.scalamolecule%molecule-base org.scalamolecule%molecule-datalog-core", + "scalameta/metals":{ + "project":"scalameta/metals", + "repoUrl":"https://github.com/scalameta/metals.git", + "revision":"v0.11.12", + "version":"0.11.12", + "targets":"org.scalameta%mtags-shared", "config":{ "projects":{ "exclude":[ @@ -34107,7 +28297,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -34122,22 +28312,22 @@ ] }, - "tests":"disabled", + "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", + "path":"project/V.scala", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "scalanlp/breeze":{ - "project":"scalanlp/breeze", - "repoUrl":"https://github.com/scalanlp/breeze.git", - "revision":"releases/v2.1.0", - "version":"2.1.0", - "targets":"org.scalanlp%breeze-parent org.scalanlp%breeze-macros org.scalanlp%breeze-natives org.scalanlp%breeze org.scalanlp%breeze-viz", + "scalameta/munit":{ + "project":"scalameta/munit", + "repoUrl":"https://github.com/scalameta/munit.git", + "revision":"v1.0.0-M7", + "version":"1.0.0-M7", + "targets":"org.scalameta%munit org.scalameta%munit-scalacheck", "config":{ "projects":{ "exclude":[ @@ -34152,7 +28342,7 @@ }, "sbt":{ "commands":[ - "set math/Test/unmanagedSources/excludeFilter := HiddenFileFilter || \"OptimizationSpaceTest.scala\" || \"LinearAlgebraTest.scala\" || \"DenseMatrixTest.scala\" || \"CSCMatrixTest.scala\" || \"LUTest.scala\" || \"ProjectedQuasiNewtonTest.scala\" || \"InvGammaTest.scala\" " + ], "options":[ @@ -34165,16 +28355,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"def scala3 = \"3.1.2\"", + "replaceWith":"def scala3 = \"\"" + } ] } }, - "scalapatisserie/muffin":{ - "project":"scalapatisserie/muffin", - "repoUrl":"https://github.com/scalapatisserie/muffin.git", - "revision":"v0.3.5", - "version":"0.3.5", - "targets":"space.scalapatisserie%muffin-circe-json-interop space.scalapatisserie%muffin-core space.scalapatisserie%muffin-http4s-http-interop space.scalapatisserie%muffin-sttp-http-interop space.scalapatisserie%muffin-zio-http-interop space.scalapatisserie%muffin-zio-json-interop", + "scalanlp/breeze":{ + "project":"scalanlp/breeze", + "repoUrl":"https://github.com/scalanlp/breeze.git", + "revision":"releases/v2.1.0", + "version":"2.1.0", + "targets":"org.scalanlp%breeze-parent org.scalanlp%breeze-macros org.scalanlp%breeze-natives org.scalanlp%breeze org.scalanlp%breeze-viz", "config":{ "projects":{ "exclude":[ @@ -34185,11 +28379,11 @@ } }, "java":{ - "version":"21" + "version":"11" }, "sbt":{ "commands":[ - + "set math/Test/unmanagedSources/excludeFilter := HiddenFileFilter || \"OptimizationSpaceTest.scala\" || \"LinearAlgebraTest.scala\" || \"DenseMatrixTest.scala\" || \"CSCMatrixTest.scala\" || \"LUTest.scala\" || \"ProjectedQuasiNewtonTest.scala\" || \"InvGammaTest.scala\" " ], "options":[ @@ -34209,8 +28403,8 @@ "scalapb-json/scalapb-argonaut":{ "project":"scalapb-json/scalapb-argonaut", "repoUrl":"https://github.com/scalapb-json/scalapb-argonaut.git", - "revision":"v0.10.0", - "version":"0.10.0", + "revision":"v0.9.3", + "version":"0.9.3", "targets":"io.github.scalapb-json%scalapb-argonaut io.github.scalapb-json%scalapb-argonaut-macros", "config":{ "projects":{ @@ -34246,15 +28440,15 @@ "scalapb-json/scalapb-circe":{ "project":"scalapb-json/scalapb-circe", "repoUrl":"https://github.com/scalapb-json/scalapb-circe.git", - "revision":"v0.15.0", - "version":"0.15.0", + "revision":"v0.13.0", + "version":"0.13.0", "targets":"io.github.scalapb-json%scalapb-circe io.github.scalapb-json%scalapb-circe-macros" }, "scalapb-json/scalapb-json-common":{ "project":"scalapb-json/scalapb-json-common", "repoUrl":"https://github.com/scalapb-json/scalapb-json-common.git", - "revision":"v0.9.0", - "version":"0.9.0", + "revision":"v0.8.9", + "version":"0.8.9", "targets":"io.github.scalapb-json%scalapb-json-common io.github.scalapb-json%scalapb-json-macros io.github.scalapb-json%scalapb-json-macros-java", "config":{ "projects":{ @@ -34285,19 +28479,12 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.1\"", + "pattern":"val Scala3 = \"3.2.2\"", "replaceWith":"val Scala3 = \"\"" } ] } }, - "scalapb-json/scalapb-playjson":{ - "project":"scalapb-json/scalapb-playjson", - "repoUrl":"https://github.com/scalapb-json/scalapb-playjson.git", - "revision":"v0.17.0", - "version":"0.17.0", - "targets":"io.github.scalapb-json%scalapb-playjson io.github.scalapb-json%scalapb-playjson-macros" - }, "scalapb/common-protos":{ "project":"scalapb/common-protos", "repoUrl":"https://github.com/scalapb/common-protos.git", @@ -34383,8 +28570,8 @@ "scalapb/scalapb":{ "project":"scalapb/scalapb", "repoUrl":"https://github.com/scalapb/scalapb.git", - "revision":"v0.11.14", - "version":"0.11.14", + "revision":"v0.11.13", + "version":"0.11.13", "targets":"com.thesamet.scalapb%compilerplugin com.thesamet.scalapb%lenses com.thesamet.scalapb%scalapb-runtime com.thesamet.scalapb%scalapb-runtime-grpc", "config":{ "projects":{ @@ -34420,7 +28607,7 @@ }, { "path":"project/Dependencies.scala", - "pattern":"val Scala3 = \"3.3.1\"", + "pattern":"val Scala3 = \"3.2.2\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -34429,8 +28616,8 @@ "scalapb/scalapb-grpcweb":{ "project":"scalapb/scalapb-grpcweb", "repoUrl":"https://github.com/scalapb/scalapb-grpcweb.git", - "revision":"v0.7.0", - "version":"0.7.0", + "revision":"v0.6.6", + "version":"0.6.6", "targets":"com.thesamet.scalapb.grpcweb%scalapb-grpcweb-code-gen", "config":{ "projects":{ @@ -34461,7 +28648,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", + "pattern":"val Scala3 = \"3.2.2\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -34548,8 +28735,8 @@ "scalapb/zio-grpc":{ "project":"scalapb/zio-grpc", "repoUrl":"https://github.com/scalapb/zio-grpc.git", - "revision":"v0.6.0", - "version":"0.6.0", + "revision":"v0.6.0-test8", + "version":"0.6.0-test8", "targets":"com.thesamet.scalapb.zio-grpc%zio-grpc-codegen com.thesamet.scalapb.zio-grpc%zio-grpc-core", "config":{ "projects":{ @@ -34561,7 +28748,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -34580,7 +28767,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", + "pattern":"val Scala3 = \"3.2.1\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -34753,9 +28940,9 @@ "scalatest/scalatest":{ "project":"scalatest/scalatest", "repoUrl":"https://github.com/scalatest/scalatest.git", - "revision":"release-3.2.17", - "version":"3.2.17", - "targets":"org.scalatest%scalatest org.scalatest%scalatest-propspec org.scalatest%scalatest-app org.scalatest%scalatest-shouldmatchers org.scalatest%scalatest-core org.scalatest%scalatest-funspec org.scalatest%scalatest-diagrams org.scalatest%scalatest-matchers-core org.scalatest%scalatest-refspec org.scalatest%scalatest-flatspec org.scalatest%scalatest-freespec org.scalatest%scalatest-featurespec org.scalatest%scalatest-funsuite org.scalatest%scalatest-mustmatchers org.scalatest%scalatest-wordspec", + "revision":"release-3.2.16", + "version":"3.2.16", + "targets":"org.scalatest%scalatest org.scalatest%scalatest-propspec org.scalatest%scalatest-shouldmatchers org.scalatest%scalatest-core org.scalatest%scalatest-funspec org.scalatest%scalatest-diagrams org.scalatest%scalatest-matchers-core org.scalatest%scalatest-refspec org.scalatest%scalatest-flatspec org.scalatest%scalatest-freespec org.scalatest%scalatest-featurespec org.scalatest%scalatest-funsuite org.scalatest%scalatest-mustmatchers org.scalatest%scalatest-wordspec", "config":{ "projects":{ "exclude":[ @@ -34793,8 +28980,8 @@ "scalatest/scalatestplus-easymock":{ "project":"scalatest/scalatestplus-easymock", "repoUrl":"https://github.com/scalatest/scalatestplus-easymock.git", - "revision":"release-3.2.17.0-for-easymock-5.1", - "version":"3.2.17.0", + "revision":"release-3.2.16.0-for-easymock-5.1", + "version":"3.2.16.0", "targets":"org.scalatestplus%easymock-5-1", "config":{ "projects":{ @@ -34830,8 +29017,8 @@ "scalatest/scalatestplus-jmock":{ "project":"scalatest/scalatestplus-jmock", "repoUrl":"https://github.com/scalatest/scalatestplus-jmock.git", - "revision":"release-3.2.17.0-for-jmock-2.12", - "version":"3.2.17.0", + "revision":"release-3.2.16.0-for-jmock-2.12", + "version":"3.2.16.0", "targets":"org.scalatestplus%jmock-2-12", "config":{ "projects":{ @@ -34867,8 +29054,8 @@ "scalatest/scalatestplus-junit":{ "project":"scalatest/scalatestplus-junit", "repoUrl":"https://github.com/scalatest/scalatestplus-junit.git", - "revision":"release-3.2.17.0-for-junit-4.13", - "version":"3.2.17.0", + "revision":"release-3.2.16.0-for-junit-4.13", + "version":"3.2.16.0", "targets":"org.scalatestplus%junit-4-13", "config":{ "projects":{ @@ -34901,18 +29088,11 @@ ] } }, - "scalatest/scalatestplus-junit5":{ - "project":"scalatest/scalatestplus-junit5", - "repoUrl":"https://github.com/scalatest/scalatestplus-junit5.git", - "revision":"release-3.2.17.0-for-junit-5.10", - "version":"3.2.17.0", - "targets":"org.scalatestplus%junit-5-10" - }, "scalatest/scalatestplus-mockito":{ "project":"scalatest/scalatestplus-mockito", "repoUrl":"https://github.com/scalatest/scalatestplus-mockito.git", - "revision":"release-3.2.17.0-for-mockito-4.11", - "version":"3.2.17.0", + "revision":"release-3.2.16.0-for-mockito-4.11", + "version":"3.2.16.0", "targets":"org.scalatestplus%mockito-4-11", "config":{ "projects":{ @@ -34948,8 +29128,8 @@ "scalatest/scalatestplus-scalacheck":{ "project":"scalatest/scalatestplus-scalacheck", "repoUrl":"https://github.com/scalatest/scalatestplus-scalacheck.git", - "revision":"release-3.2.17.0-for-scalacheck-1.17", - "version":"3.2.17.0", + "revision":"release-3.2.16.0-for-scalacheck-1.17", + "version":"3.2.16.0", "targets":"org.scalatestplus%scalacheck-1-17", "config":{ "projects":{ @@ -34985,9 +29165,9 @@ "scalatest/scalatestplus-selenium":{ "project":"scalatest/scalatestplus-selenium", "repoUrl":"https://github.com/scalatest/scalatestplus-selenium.git", - "revision":"release-3.2.17.0-for-selenium-4.12", - "version":"3.2.17.0", - "targets":"org.scalatestplus%selenium-4-12 org.scalatestplus%testng-7-5", + "revision":"release-3.2.16.0-for-selenium-4.9", + "version":"3.2.16.0", + "targets":"org.scalatestplus%selenium-4-9 org.scalatestplus%testng-7-5", "config":{ "projects":{ "exclude":[ @@ -35022,9 +29202,9 @@ "scalatra/scalatra":{ "project":"scalatra/scalatra", "repoUrl":"https://github.com/scalatra/scalatra.git", - "revision":"v3.0.0", - "version":"3.0.0", - "targets":"org.scalatra%scalatra-javax org.scalatra%scalatra-specs2-jakarta org.scalatra%scalatra-scalatest-jakarta org.scalatra%scalatra-common-jakarta org.scalatra%scalatra-forms-javax org.scalatra%scalatra-cache-javax org.scalatra%scalatra-json-jakarta org.scalatra%scalatra-scalatest-javax org.scalatra%scalatra-jetty-jakarta org.scalatra%scalatra-common-javax org.scalatra%scalatra-auth-javax org.scalatra%scalatra-jetty-javax org.scalatra%scalatra-json-javax org.scalatra%scalatra-jakarta org.scalatra%scalatra-twirl-javax org.scalatra%scalatra-twirl-jakarta org.scalatra%scalatra-forms-jakarta org.scalatra%scalatra-metrics-javax org.scalatra%scalatra-auth-jakarta org.scalatra%scalatra-specs2-javax org.scalatra%scalatra-test-jakarta org.scalatra%scalatra-cache-jakarta org.scalatra%scalatra-swagger-javax org.scalatra%scalatra-test-javax org.scalatra%scalatra-swagger-jakarta org.scalatra%scalatra-metrics-jakarta", + "revision":"v3.0.0-M3", + "version":"3.0.0-M3", + "targets":"org.scalatra%scalatra-auth org.scalatra%scalatra-common org.scalatra%scalatra-jetty org.scalatra%scalatra-metrics org.scalatra%scalatra-unidoc org.scalatra%scalatra-cache org.scalatra%scalatra-specs2 org.scalatra%scalatra-twirl org.scalatra%scalatra org.scalatra%scalatra-forms org.scalatra%scalatra-scalatest org.scalatra%scalatra-test org.scalatra%scalatra-json org.scalatra%scalatra-swagger", "config":{ "projects":{ "exclude":[ @@ -35066,15 +29246,15 @@ "scalax/simple":{ "project":"scalax/simple", "repoUrl":"https://github.com/scalax/simple.git", - "revision":"0.0.1", - "version":"0.0.1", + "revision":"71d4dcf35ab930f7d5e86e690773fdf33609ae71", + "version":"0.0.1-RC1", "targets":"net.scalax.simple%simple-adt net.scalax.simple%simple-ghdmzsk net.scalax.simple%simple-adt-core net.scalax.simple%simple-adt-implemention" }, "scalaz/scalaz":{ "project":"scalaz/scalaz", "repoUrl":"https://github.com/scalaz/scalaz.git", - "revision":"v7.4.0-M14", - "version":"7.4.0-M14", + "revision":"v7.4.0-M13", + "version":"7.4.0-M13", "targets":"org.scalaz%scalaz-scalacheck-binding org.scalaz%scalaz-core org.scalaz%scalaz-effect org.scalaz%scalaz org.scalaz%scalaz-iteratee", "config":{ "projects":{ @@ -35105,7 +29285,7 @@ "sourcePatches":[ { "path":"project/build.scala", - "pattern":"def Scala3 = \"3.3.1\"", + "pattern":"def Scala3 = \"3.1.0\"", "replaceWith":"def Scala3 = \"\"" } ] @@ -35114,8 +29294,8 @@ "scalikejdbc/scalikejdbc":{ "project":"scalikejdbc/scalikejdbc", "repoUrl":"https://github.com/scalikejdbc/scalikejdbc.git", - "revision":"4.1.0", - "version":"4.1.0", + "revision":"4.0.0", + "version":"4.0.0", "targets":"org.scalikejdbc%scalikejdbc-core org.scalikejdbc%scalikejdbc-interpolation org.scalikejdbc%scalikejdbc-syntax-support-macro org.scalikejdbc%scalikejdbc-streams org.scalikejdbc%scalikejdbc-config org.scalikejdbc%scalikejdbc-interpolation-macro org.scalikejdbc%scalikejdbc org.scalikejdbc%scalikejdbc-test org.scalikejdbc%scalikejdbc-joda-time org.scalikejdbc%scalikejdbc-mapper-generator-core", "config":{ "projects":{ @@ -35127,7 +29307,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -35146,7 +29326,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"def Scala3 = \"3.3.1\"", + "pattern":"def Scala3 = \"3.1.0\"", "replaceWith":"def Scala3 = \"\"" } ] @@ -35233,8 +29413,8 @@ "scallop/scallop":{ "project":"scallop/scallop", "repoUrl":"https://github.com/scallop/scallop.git", - "revision":"v5.0.0", - "version":"5.0.0", + "revision":"v4.1.0", + "version":"4.1.0", "targets":"org.rogach%scallop", "config":{ "projects":{ @@ -35277,8 +29457,8 @@ "scanamo/scanamo":{ "project":"scanamo/scanamo", "repoUrl":"https://github.com/scanamo/scanamo.git", - "revision":"v1.0.0-M29", - "version":"1.0.0-M29", + "revision":"v1.0.0-M26", + "version":"1.0.0-M26", "targets":"org.scanamo%scanamo org.scanamo%scanamo-cats-effect org.scanamo%scanamo-joda org.scanamo%scanamo-testkit", "config":{ "projects":{ @@ -35487,49 +29667,49 @@ "sciss/equal":{ "project":"sciss/equal", "repoUrl":"https://github.com/sciss/equal.git", - "revision":"", + "revision":"4340d3a6b503aad4fbea89ee6026923127e8b1ab", "version":"0.1.6", "targets":"de.sciss%equal" }, "sciss/filecache":{ "project":"sciss/filecache", "repoUrl":"https://github.com/sciss/filecache.git", - "revision":"", + "revision":"baece005fd299c7929219333b0baa9a583d11158", "version":"1.1.2", "targets":"de.sciss%filecache-common de.sciss%filecache-mutable de.sciss%filecache-txn" }, "sciss/fileutil":{ "project":"sciss/fileutil", "repoUrl":"https://github.com/sciss/fileutil.git", - "revision":"", + "revision":"56a31c58f1b76892b3a595be709df298c61693c3", "version":"1.1.5", "targets":"de.sciss%fileutil" }, "sciss/fingertree":{ "project":"sciss/fingertree", "repoUrl":"https://github.com/sciss/fingertree.git", - "revision":"", + "revision":"0ed006549a78036aac0b09375e90237e72f599fe", "version":"1.5.5", "targets":"de.sciss%fingertree" }, "sciss/kollflitz":{ "project":"sciss/kollflitz", "repoUrl":"https://github.com/sciss/kollflitz.git", - "revision":"", + "revision":"0b5c9127381b987c2456443e129688e8a34ebdd6", "version":"0.2.4", "targets":"de.sciss%kollflitz" }, "sciss/linkernighantsp":{ "project":"sciss/linkernighantsp", "repoUrl":"https://github.com/sciss/linkernighantsp.git", - "revision":"", + "revision":"aa3f2dac2823f9cac38bc3b8830e7a9277afe895", "version":"0.1.3", "targets":"de.sciss%linkernighantsp" }, "sciss/log":{ "project":"sciss/log", "repoUrl":"https://github.com/sciss/log.git", - "revision":"", + "revision":"1839754549ed690fbba2ea1b220e3f70f8d2ba91", "version":"0.1.1", "targets":"de.sciss%log" }, @@ -35557,21 +29737,21 @@ "sciss/model":{ "project":"sciss/model", "repoUrl":"https://github.com/sciss/model.git", - "revision":"", + "revision":"d797f70e9d178fa6a70d6aa2d3c3324bc1c27b48", "version":"0.3.5", "targets":"de.sciss%model" }, "sciss/numbers":{ "project":"sciss/numbers", "repoUrl":"https://github.com/sciss/numbers.git", - "revision":"", + "revision":"656dfd3f7c0a541b243e2d0f5aabbd20fc8bcea6", "version":"0.2.1", "targets":"de.sciss%numbers" }, "sciss/optional":{ "project":"sciss/optional", "repoUrl":"https://github.com/sciss/optional.git", - "revision":"", + "revision":"edfe85c4a4b9be52c4b8bd60d0d336e26c0ab89c", "version":"1.0.1", "targets":"de.sciss%optional" }, @@ -35615,7 +29795,7 @@ "sciss/raphaelicons":{ "project":"sciss/raphaelicons", "repoUrl":"https://github.com/sciss/raphaelicons.git", - "revision":"", + "revision":"6bfac7909f981cc45c002fbfd0a012ff820fb9e8", "version":"1.0.7", "targets":"de.sciss%raphael-icons" }, @@ -35664,7 +29844,7 @@ "sciss/scissdsp":{ "project":"sciss/scissdsp", "repoUrl":"https://github.com/sciss/scissdsp.git", - "revision":"", + "revision":"5694b9bfb9a93941c973b4acc6d2bda5b5679451", "version":"2.2.6", "targets":"de.sciss%scissdsp" }, @@ -35715,21 +29895,21 @@ "sciss/topology":{ "project":"sciss/topology", "repoUrl":"https://github.com/sciss/topology.git", - "revision":"", + "revision":"79e776388deaf115a4445509bbd2d4f6dd948ed8", "version":"1.1.4", "targets":"de.sciss%topology" }, "sciss/transform4s":{ "project":"sciss/transform4s", "repoUrl":"https://github.com/sciss/transform4s.git", - "revision":"", + "revision":"42351a0d7dabf31a522f7a1ce09212a18db20b67", "version":"0.1.1", "targets":"de.sciss%transform4s" }, "sciss/treetable":{ "project":"sciss/treetable", "repoUrl":"https://github.com/sciss/treetable.git", - "revision":"", + "revision":"4714a32b30467f8678804ebf6671757d915de173", "version":"1.6.3", "targets":"de.sciss%treetable-scala" }, @@ -35773,8 +29953,8 @@ "scodec/scodec":{ "project":"scodec/scodec", "repoUrl":"https://github.com/scodec/scodec.git", - "revision":"v2.2.2", - "version":"2.2.2", + "revision":"v2.2.1", + "version":"2.2.1", "targets":"org.scodec%scodec-core org.scodec%scodec-testkit", "config":{ "projects":{ @@ -35810,8 +29990,8 @@ "scodec/scodec-bits":{ "project":"scodec/scodec-bits", "repoUrl":"https://github.com/scodec/scodec-bits.git", - "revision":"v1.1.38", - "version":"1.1.38", + "revision":"v1.1.37", + "version":"1.1.37", "targets":"org.scodec%scodec-bits", "config":{ "projects":{ @@ -36040,8 +30220,8 @@ "scoverage/scalac-scoverage-plugin":{ "project":"scoverage/scalac-scoverage-plugin", "repoUrl":"https://github.com/scoverage/scalac-scoverage-plugin.git", - "revision":"v2.0.11", - "version":"2.0.11", + "revision":"v2.0.8", + "version":"2.0.8", "targets":"org.scoverage%scalac-scoverage-domain org.scoverage%scalac-scoverage-reporter org.scoverage%scalac-scoverage-serializer", "config":{ "projects":{ @@ -36120,7 +30300,7 @@ "sean-ideabank/rudolf":{ "project":"sean-ideabank/rudolf", "repoUrl":"https://github.com/sean-ideabank/rudolf.git", - "revision":"", + "revision":"eadfbd3cc01a4e45540356a8a1a55a3ec9b3d905", "version":"0.1.1", "targets":"works.ideabank%rudolf", "config":{ @@ -36168,39 +30348,9 @@ "senia-psm/zio-test-akka-http":{ "project":"senia-psm/zio-test-akka-http", "repoUrl":"https://github.com/senia-psm/zio-test-akka-http.git", - "revision":"v2.0.14", - "version":"2.0.14", - "targets":"info.senia%zio-test-akka-http", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } + "revision":"v2.0.4", + "version":"2.0.4", + "targets":"info.senia%zio-test-akka-http" }, "seratch/awscala":{ "project":"seratch/awscala", @@ -36246,8 +30396,8 @@ "sfxcode/pebble-scala":{ "project":"sfxcode/pebble-scala", "repoUrl":"https://github.com/sfxcode/pebble-scala.git", - "revision":"v1.1.5", - "version":"1.1.5", + "revision":"v1.1.1", + "version":"1.1.1", "targets":"com.sfxcode.templating%pebble-scala", "config":{ "projects":{ @@ -36438,8 +30588,8 @@ "shiftleftsecurity/codepropertygraph":{ "project":"shiftleftsecurity/codepropertygraph", "repoUrl":"https://github.com/shiftleftsecurity/codepropertygraph.git", - "revision":"v1.4.25", - "version":"1.4.25", + "revision":"v1.3.603", + "version":"1.3.603", "targets":"io.shiftleft%schema2json io.shiftleft%codepropertygraph io.shiftleft%codepropertygraph-domain-classes io.shiftleft%codepropertygraph-schema io.shiftleft%codepropertygraph-protos", "config":{ "projects":{ @@ -36475,8 +30625,8 @@ "shiftleftsecurity/js2cpg":{ "project":"shiftleftsecurity/js2cpg", "repoUrl":"https://github.com/shiftleftsecurity/js2cpg.git", - "revision":"v0.2.243", - "version":"0.2.243", + "revision":"v0.2.229", + "version":"0.2.229", "targets":"io.shiftleft%js2cpg", "config":{ "projects":{ @@ -36512,8 +30662,8 @@ "shiftleftsecurity/overflowdb":{ "project":"shiftleftsecurity/overflowdb", "repoUrl":"https://github.com/shiftleftsecurity/overflowdb.git", - "revision":"v1.181", - "version":"1.181", + "revision":"v1.174", + "version":"1.174", "targets":"io.shiftleft%overflowdb-core io.shiftleft%overflowdb-formats io.shiftleft%overflowdb-traversal", "config":{ "projects":{ @@ -36549,8 +30699,8 @@ "shiftleftsecurity/overflowdb-codegen":{ "project":"shiftleftsecurity/overflowdb-codegen", "repoUrl":"https://github.com/shiftleftsecurity/overflowdb-codegen.git", - "revision":"v2.105", - "version":"2.105", + "revision":"v2.88", + "version":"2.88", "targets":"io.shiftleft%overflowdb-codegen", "config":{ "projects":{ @@ -36581,7 +30731,7 @@ "sourcePatches":[ { "path":"project/Build.scala", - "pattern":"val scala_3 = \"3.3.0\"", + "pattern":"val scala_3 = \"3.2.2\"", "replaceWith":"val scala_3 = \"\"" } ] @@ -36705,8 +30855,8 @@ "simy4/coregex":{ "project":"simy4/coregex", "repoUrl":"https://github.com/simy4/coregex.git", - "revision":"v1.0.7", - "version":"1.0.7", + "revision":"v1.0.4", + "version":"1.0.4", "targets":"com.github.simy4.coregex%coregex-scalacheck", "config":{ "projects":{ @@ -36737,7 +30887,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] @@ -36746,16 +30896,16 @@ "sinaghaffari/monadicsimplifier":{ "project":"sinaghaffari/monadicsimplifier", "repoUrl":"https://github.com/sinaghaffari/monadicsimplifier.git", - "revision":"", + "revision":"d0ad87a124ad1ce3c1534b5b0010abdbd7deeccc", "version":"0.1", "targets":"com.sinaghaffari%monadicsimplifier" }, "sirthias/borer":{ "project":"sirthias/borer", "repoUrl":"https://github.com/sirthias/borer.git", - "revision":"v1.12.0", - "version":"1.12.0", - "targets":"io.bullet%borer-compat-scodec io.bullet%borer-compat-akka io.bullet%borer-core io.bullet%borer-compat-cats io.bullet%borer-compat-circe io.bullet%borer-derivation io.bullet%borer-compat-pekko", + "revision":"v1.10.3", + "version":"1.10.3", + "targets":"io.bullet%borer-compat-scodec io.bullet%borer-compat-akka io.bullet%borer-core io.bullet%borer-compat-cats io.bullet%borer-compat-circe io.bullet%borer-derivation", "config":{ "projects":{ "exclude":[ @@ -36785,7 +30935,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"def scala3 = \"3.3.1\"", + "pattern":"def scala3 = \"3.2.2\"", "replaceWith":"def scala3 = \"\"" } ] @@ -36801,8 +30951,8 @@ "sirthias/parboiled2":{ "project":"sirthias/parboiled2", "repoUrl":"https://github.com/sirthias/parboiled2.git", - "revision":"v2.5.1", - "version":"2.5.1", + "revision":"v2.4.1", + "version":"2.4.1", "targets":"org.parboiled%parboiled", "config":{ "projects":{ @@ -36814,7 +30964,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -36833,7 +30983,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.1\"", + "pattern":"val Scala3 = \"3.2.1\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -36886,8 +31036,8 @@ "sksamuel/avro4s":{ "project":"sksamuel/avro4s", "repoUrl":"https://github.com/sksamuel/avro4s.git", - "revision":"", - "version":"5.0.5", + "revision":"07bb1ff48989a383fb8a38ee45587cf412d38883", + "version":"5.0.4", "targets":"com.sksamuel.avro4s%avro4s-cats com.sksamuel.avro4s%avro4s-core", "config":{ "projects":{ @@ -36923,9 +31073,9 @@ "sksamuel/elastic4s":{ "project":"sksamuel/elastic4s", "repoUrl":"https://github.com/sksamuel/elastic4s.git", - "revision":"v8.9.4", - "version":"8.9.4", - "targets":"com.sksamuel.elastic4s%elastic4s-json-zio com.sksamuel.elastic4s%elastic4s-json-jackson com.sksamuel.elastic4s%elastic4s-json-circe com.sksamuel.elastic4s%elastic4s-json-json4s com.sksamuel.elastic4s%elastic4s-testkit com.sksamuel.elastic4s%elastic4s-json-builder com.sksamuel.elastic4s%elastic4s-http-streams com.sksamuel.elastic4s%elastic4s-json-play com.sksamuel.elastic4s%elastic4s-handlers com.sksamuel.elastic4s%elastic4s-streams-akka com.sksamuel.elastic4s%elastic4s-client-core com.sksamuel.elastic4s%elastic4s-client-sniffed com.sksamuel.elastic4s%elastic4s-effect-monix com.sksamuel.elastic4s%elastic4s-effect-cats-2 com.sksamuel.elastic4s%elastic4s-effect-cats com.sksamuel.elastic4s%elastic4s-effect-zio com.sksamuel.elastic4s%elastic4s-effect-zio-1 com.sksamuel.elastic4s%elastic4s-core com.sksamuel.elastic4s%elastic4s-client-esjava com.sksamuel.elastic4s%elastic4s-domain com.sksamuel.elastic4s%elastic4s-client-pekko com.sksamuel.elastic4s%elastic4s-client-sttp com.sksamuel.elastic4s%elastic4s-streams-pekko", + "revision":"v8.7.0", + "version":"8.7.0", + "targets":"com.sksamuel.elastic4s%elastic4s-json-zio com.sksamuel.elastic4s%elastic4s-json-jackson com.sksamuel.elastic4s%elastic4s-json-circe com.sksamuel.elastic4s%elastic4s-json-json4s com.sksamuel.elastic4s%elastic4s-testkit com.sksamuel.elastic4s%elastic4s-json-builder com.sksamuel.elastic4s%elastic4s-http-streams com.sksamuel.elastic4s%elastic4s-json-play com.sksamuel.elastic4s%elastic4s-handlers com.sksamuel.elastic4s%elastic4s-streams-akka com.sksamuel.elastic4s%elastic4s-client-core com.sksamuel.elastic4s%elastic4s-client-sniffed com.sksamuel.elastic4s%elastic4s-effect-monix com.sksamuel.elastic4s%elastic4s-effect-cats-2 com.sksamuel.elastic4s%elastic4s-effect-cats com.sksamuel.elastic4s%elastic4s-effect-zio com.sksamuel.elastic4s%elastic4s-effect-zio-1 com.sksamuel.elastic4s%elastic4s-core com.sksamuel.elastic4s%elastic4s-client-esjava com.sksamuel.elastic4s%elastic4s-domain com.sksamuel.elastic4s%elastic4s-client-sttp", "config":{ "projects":{ "exclude":[ @@ -36957,47 +31107,6 @@ ] } }, - "sky-uk/fs2-kafka-topic-loader":{ - "project":"sky-uk/fs2-kafka-topic-loader", - "repoUrl":"https://github.com/sky-uk/fs2-kafka-topic-loader.git", - "revision":"v0.0.3", - "version":"0.0.3", - "targets":"uk.sky%fs2-kafka-topic-loader", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, "sky-uk/kafka-topic-loader":{ "project":"sky-uk/kafka-topic-loader", "repoUrl":"https://github.com/sky-uk/kafka-topic-loader.git", @@ -37039,12 +31148,12 @@ ] } }, - "slick/slick":{ - "project":"slick/slick", - "repoUrl":"https://github.com/slick/slick.git", - "revision":"v3.5.0-M4", - "version":"3.5.0-M4", - "targets":"com.typesafe.slick%slick com.typesafe.slick%slick-codegen com.typesafe.slick%slick-hikaricp com.typesafe.slick%slick-testkit", + "smootoo/tablediff":{ + "project":"smootoo/tablediff", + "repoUrl":"https://github.com/smootoo/tablediff.git", + "revision":"a2129b3745376e993c3a39bb3782fd13890e3389", + "version":"1.1", + "targets":"org.suecarter%tablediff", "config":{ "projects":{ "exclude":[ @@ -37072,20 +31181,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "smootoo/tablediff":{ - "project":"smootoo/tablediff", - "repoUrl":"https://github.com/smootoo/tablediff.git", - "revision":"", - "version":"1.1", - "targets":"org.suecarter%tablediff", + "snowplow/iglu-scala-core":{ + "project":"snowplow/iglu-scala-core", + "repoUrl":"https://github.com/snowplow/iglu-scala-core.git", + "revision":"1.1.3", + "version":"1.1.3", + "targets":"com.snowplowanalytics%iglu-core com.snowplowanalytics%iglu-core-circe", "config":{ "projects":{ "exclude":[ @@ -37096,7 +31201,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -37113,16 +31218,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/BuildSettings.scala", + "pattern":"val scala3 = \"3.2.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "snowplow/iglu-scala-core":{ - "project":"snowplow/iglu-scala-core", - "repoUrl":"https://github.com/snowplow/iglu-scala-core.git", - "revision":"1.1.3", - "version":"1.1.3", - "targets":"com.snowplowanalytics%iglu-core com.snowplowanalytics%iglu-core-circe", + "snowplow/snowplow-scala-analytics-sdk":{ + "project":"snowplow/snowplow-scala-analytics-sdk", + "repoUrl":"https://github.com/snowplow/snowplow-scala-analytics-sdk.git", + "revision":"3.1.0", + "version":"3.1.0", + "targets":"com.snowplowanalytics%snowplow-scala-analytics-sdk", "config":{ "projects":{ "exclude":[ @@ -37150,20 +31259,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/BuildSettings.scala", - "pattern":"val scala3 = \"3.2.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "snowplow/snowplow-scala-analytics-sdk":{ - "project":"snowplow/snowplow-scala-analytics-sdk", - "repoUrl":"https://github.com/snowplow/snowplow-scala-analytics-sdk.git", - "revision":"3.1.0", - "version":"3.1.0", - "targets":"com.snowplowanalytics%snowplow-scala-analytics-sdk", + "softwaremill/diffx":{ + "project":"softwaremill/diffx", + "repoUrl":"https://github.com/softwaremill/diffx.git", + "revision":"v0.8.3", + "version":"0.8.3", + "targets":"com.softwaremill.diffx%diffx-cats com.softwaremill.diffx%diffx-scalatest-should com.softwaremill.diffx%diffx-scalatest-must com.softwaremill.diffx%diffx-scalatest com.softwaremill.diffx%diffx-tagging com.softwaremill.diffx%diffx-munit com.softwaremill.diffx%diffx-refined com.softwaremill.diffx%diffx-utest com.softwaremill.diffx%diffx-core", "config":{ "projects":{ "exclude":[ @@ -37174,7 +31279,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -37191,16 +31296,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.3\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "softwaremill/akka-http-session":{ - "project":"softwaremill/akka-http-session", - "repoUrl":"https://github.com/softwaremill/akka-http-session.git", - "revision":"v0.7.1", - "version":"0.7.1", - "targets":"com.softwaremill.pekko-http-session%core com.softwaremill.pekko-http-session%jwt", + "softwaremill/macwire":{ + "project":"softwaremill/macwire", + "repoUrl":"https://github.com/softwaremill/macwire.git", + "revision":"v2.5.8", + "version":"2.5.8", + "targets":"com.softwaremill.macwire%macros com.softwaremill.macwire%proxy com.softwaremill.macwire%util", "config":{ "projects":{ "exclude":[ @@ -37211,12 +31320,11 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -37231,18 +31339,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", + "pattern":"val scala3 = \"3.0.2\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "softwaremill/diffx":{ - "project":"softwaremill/diffx", - "repoUrl":"https://github.com/softwaremill/diffx.git", - "revision":"v0.9.0", - "version":"0.9.0", - "targets":"com.softwaremill.diffx%diffx-cats com.softwaremill.diffx%diffx-scalatest-should com.softwaremill.diffx%diffx-weaver com.softwaremill.diffx%diffx-scalatest-must com.softwaremill.diffx%diffx-scalatest com.softwaremill.diffx%diffx-tagging com.softwaremill.diffx%diffx-munit com.softwaremill.diffx%diffx-refined com.softwaremill.diffx%diffx-utest com.softwaremill.diffx%diffx-core", + "softwaremill/magnolia":{ + "project":"softwaremill/magnolia", + "repoUrl":"https://github.com/softwaremill/magnolia.git", + "revision":"scala3-v1.3.0", + "version":"1.3.0", + "targets":"com.softwaremill.magnolia1_3%magnolia", "config":{ "projects":{ "exclude":[ @@ -37278,88 +31386,6 @@ ] } }, - "softwaremill/macwire":{ - "project":"softwaremill/macwire", - "repoUrl":"https://github.com/softwaremill/macwire.git", - "revision":"v2.5.9", - "version":"2.5.9", - "targets":"com.softwaremill.macwire%macros com.softwaremill.macwire%proxy com.softwaremill.macwire%util", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.0.2\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "softwaremill/magnolia":{ - "project":"softwaremill/magnolia", - "repoUrl":"https://github.com/softwaremill/magnolia.git", - "revision":"scala3-v1.3.4", - "version":"1.3.4", - "targets":"com.softwaremill.magnolia1_3%magnolia", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, "softwaremill/odelay":{ "project":"softwaremill/odelay", "repoUrl":"https://github.com/softwaremill/odelay.git", @@ -37404,9 +31430,9 @@ "softwaremill/ox":{ "project":"softwaremill/ox", "repoUrl":"https://github.com/softwaremill/ox.git", - "revision":"v0.0.14", - "version":"0.0.14", - "targets":"com.softwaremill.ox%core com.softwaremill.ox%examples com.softwaremill.ox%kafka", + "revision":"v0.0.6", + "version":"0.0.6", + "targets":"com.softwaremill.ox%core com.softwaremill.ox%examples", "config":{ "projects":{ "exclude":[ @@ -37441,8 +31467,8 @@ "softwaremill/quicklens":{ "project":"softwaremill/quicklens", "repoUrl":"https://github.com/softwaremill/quicklens.git", - "revision":"v1.9.6", - "version":"1.9.6", + "revision":"v1.9.4", + "version":"1.9.4", "targets":"com.softwaremill.quicklens%quicklens", "config":{ "projects":{ @@ -37473,7 +31499,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] @@ -37519,7 +31545,7 @@ "softwaremill/scala-common":{ "project":"softwaremill/scala-common", "repoUrl":"https://github.com/softwaremill/scala-common.git", - "revision":"", + "revision":"96c7308003e26a55cd176ec4be34416044be411a", "version":"2.3.4", "targets":"com.softwaremill.common%tagging", "config":{ @@ -37551,7 +31577,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] @@ -37601,9 +31627,9 @@ "softwaremill/sttp":{ "project":"softwaremill/sttp", "repoUrl":"https://github.com/softwaremill/sttp.git", - "revision":"v3.9.0", - "version":"3.9.0", - "targets":"com.softwaremill.sttp.client3%armeria-backend com.softwaremill.sttp.client3%async-http-client-backend-cats-ce2 com.softwaremill.sttp.client3%jsoniter com.softwaremill.sttp.client3%async-http-client-backend-fs2 com.softwaremill.sttp.client3%armeria-backend-monix com.softwaremill.sttp.client3%okhttp-backend-monix com.softwaremill.sttp.client3%zio com.softwaremill.sttp.client3%async-http-client-backend-zio1 com.softwaremill.sttp.client3%async-http-client-backend-future com.softwaremill.sttp.client3%async-http-client-backend-zio com.softwaremill.sttp.client3%slf4j-backend com.softwaremill.sttp.client3%pekko-http-backend com.softwaremill.sttp.client3%fs2ce2 com.softwaremill.sttp.client3%async-http-client-backend-cats com.softwaremill.sttp.client3%async-http-client-backend com.softwaremill.sttp.client3%fs2 com.softwaremill.sttp.client3%okhttp-backend com.softwaremill.sttp.client3%prometheus-backend com.softwaremill.sttp.client3%zio-json com.softwaremill.sttp.client3%armeria-backend-cats com.softwaremill.sttp.client3%scribe-backend com.softwaremill.sttp.client3%opentelemetry-metrics-backend com.softwaremill.sttp.client3%upickle com.softwaremill.sttp.client3%armeria-backend-zio1 com.softwaremill.sttp.client3%async-http-client-backend-fs2-ce2 com.softwaremill.sttp.client3%catsce2 com.softwaremill.sttp.client3%circe com.softwaremill.sttp.client3%monix com.softwaremill.sttp.client3%zio1-json com.softwaremill.sttp.client3%zio1 com.softwaremill.sttp.client3%json-common com.softwaremill.sttp.client3%core com.softwaremill.sttp.client3%cats com.softwaremill.sttp.client3%opentelemetry-tracing-zio-backend com.softwaremill.sttp.client3%armeria-backend-zio com.softwaremill.sttp.client3%async-http-client-backend-monix com.softwaremill.sttp.client3%http4s-backend", + "revision":"v3.8.15", + "version":"3.8.15", + "targets":"com.softwaremill.sttp.client3%opentelemetry-tracing-zio1-backend com.softwaremill.sttp.client3%armeria-backend com.softwaremill.sttp.client3%async-http-client-backend-cats-ce2 com.softwaremill.sttp.client3%jsoniter com.softwaremill.sttp.client3%async-http-client-backend-fs2 com.softwaremill.sttp.client3%armeria-backend-monix com.softwaremill.sttp.client3%okhttp-backend-monix com.softwaremill.sttp.client3%zio com.softwaremill.sttp.client3%async-http-client-backend-zio1 com.softwaremill.sttp.client3%async-http-client-backend-future com.softwaremill.sttp.client3%async-http-client-backend-zio com.softwaremill.sttp.client3%slf4j-backend com.softwaremill.sttp.client3%fs2ce2 com.softwaremill.sttp.client3%async-http-client-backend-cats com.softwaremill.sttp.client3%async-http-client-backend com.softwaremill.sttp.client3%fs2 com.softwaremill.sttp.client3%okhttp-backend com.softwaremill.sttp.client3%prometheus-backend com.softwaremill.sttp.client3%zio-json com.softwaremill.sttp.client3%armeria-backend-cats com.softwaremill.sttp.client3%scribe-backend com.softwaremill.sttp.client3%opentelemetry-metrics-backend com.softwaremill.sttp.client3%upickle com.softwaremill.sttp.client3%armeria-backend-zio1 com.softwaremill.sttp.client3%async-http-client-backend-fs2-ce2 com.softwaremill.sttp.client3%catsce2 com.softwaremill.sttp.client3%circe com.softwaremill.sttp.client3%monix com.softwaremill.sttp.client3%zio1-json com.softwaremill.sttp.client3%zio1 com.softwaremill.sttp.client3%json-common com.softwaremill.sttp.client3%core com.softwaremill.sttp.client3%cats com.softwaremill.sttp.client3%opentelemetry-tracing-zio-backend com.softwaremill.sttp.client3%armeria-backend-zio com.softwaremill.sttp.client3%async-http-client-backend-monix com.softwaremill.sttp.client3%http4s-backend", "config":{ "projects":{ "exclude":[ @@ -37633,7 +31659,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = List(\"3.3.0\")", + "pattern":"val scala3 = List(\"3.2.2\")", "replaceWith":"val scala3 = List(\"\")" } ] @@ -37642,8 +31668,8 @@ "softwaremill/sttp-apispec":{ "project":"softwaremill/sttp-apispec", "repoUrl":"https://github.com/softwaremill/sttp-apispec.git", - "revision":"v0.7.1", - "version":"0.7.1", + "revision":"v0.3.2", + "version":"0.3.2", "targets":"com.softwaremill.sttp.apispec%jsonschema-circe com.softwaremill.sttp.apispec%asyncapi-model com.softwaremill.sttp.apispec%openapi-model com.softwaremill.sttp.apispec%apispec-model com.softwaremill.sttp.apispec%openapi-circe-yaml com.softwaremill.sttp.apispec%asyncapi-circe-yaml com.softwaremill.sttp.apispec%asyncapi-circe com.softwaremill.sttp.apispec%openapi-circe", "config":{ "projects":{ @@ -37674,7 +31700,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", + "pattern":"val scala3 = \"3.2.1\"", "replaceWith":"val scala3 = \"\"" } ] @@ -37683,8 +31709,8 @@ "softwaremill/sttp-model":{ "project":"softwaremill/sttp-model", "repoUrl":"https://github.com/softwaremill/sttp-model.git", - "revision":"v1.7.6", - "version":"1.7.6", + "revision":"v1.5.5", + "version":"1.5.5", "targets":"com.softwaremill.sttp.model%core", "config":{ "projects":{ @@ -37715,7 +31741,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = List(\"3.3.1\")", + "pattern":"val scala3 = List(\"3.2.2\")", "replaceWith":"val scala3 = List(\"\")" } ] @@ -37724,8 +31750,8 @@ "softwaremill/sttp-openai":{ "project":"softwaremill/sttp-openai", "repoUrl":"https://github.com/softwaremill/sttp-openai.git", - "revision":"v0.0.7", - "version":"0.0.7", + "revision":"v0.0.6", + "version":"0.0.6", "targets":"com.softwaremill.sttp.openai%core", "config":{ "projects":{ @@ -37756,7 +31782,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = List(\"3.3.0\")", + "pattern":"val scala3 = List(\"3.2.2\")", "replaceWith":"val scala3 = List(\"\")" } ] @@ -37765,9 +31791,9 @@ "softwaremill/sttp-shared":{ "project":"softwaremill/sttp-shared", "repoUrl":"https://github.com/softwaremill/sttp-shared.git", - "revision":"v1.3.16", - "version":"1.3.16", - "targets":"com.softwaremill.sttp.shared%fs2-ce2 com.softwaremill.sttp.shared%fs2 com.softwaremill.sttp.shared%akka com.softwaremill.sttp.shared%vertx com.softwaremill.sttp.shared%monix com.softwaremill.sttp.shared%pekko com.softwaremill.sttp.shared%zio1 com.softwaremill.sttp.shared%core com.softwaremill.sttp.shared%ws com.softwaremill.sttp.shared%armeria com.softwaremill.sttp.shared%zio", + "revision":"v1.3.14", + "version":"1.3.14", + "targets":"com.softwaremill.sttp.shared%fs2-ce2 com.softwaremill.sttp.shared%fs2 com.softwaremill.sttp.shared%akka com.softwaremill.sttp.shared%vertx com.softwaremill.sttp.shared%monix com.softwaremill.sttp.shared%zio1 com.softwaremill.sttp.shared%core com.softwaremill.sttp.shared%ws com.softwaremill.sttp.shared%armeria com.softwaremill.sttp.shared%zio", "config":{ "projects":{ "exclude":[ @@ -37797,7 +31823,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = List(\"3.3.0\")", + "pattern":"val scala3 = List(\"3.2.2\")", "replaceWith":"val scala3 = List(\"\")" } ] @@ -37806,9 +31832,9 @@ "softwaremill/tapir":{ "project":"softwaremill/tapir", "repoUrl":"https://github.com/softwaremill/tapir.git", - "revision":"v1.8.5", - "version":"1.8.5", - "targets":"com.softwaremill.sttp.tapir%tapir-http4s-server-zio1 com.softwaremill.sttp.tapir%tapir-sttp-client com.softwaremill.sttp.tapir%tapir-redoc com.softwaremill.sttp.tapir%tapir-json-circe com.softwaremill.sttp.tapir%tapir-jsoniter-scala com.softwaremill.sttp.tapir%tapir-swagger-ui-bundle com.softwaremill.sttp.tapir%tapir-redoc-bundle com.softwaremill.sttp.tapir%tapir-aws-cdk com.softwaremill.sttp.tapir%tapir-cats com.softwaremill.sttp.tapir%tapir-http4s-client com.softwaremill.sttp.tapir%tapir-refined com.softwaremill.sttp.tapir%tapir-play-server com.softwaremill.sttp.tapir%tapir-aws-lambda-core com.softwaremill.sttp.tapir%tapir-jdkhttp-server com.softwaremill.sttp.tapir%tapir-json-pickler com.softwaremill.sttp.tapir%tapir-aws-sam com.softwaremill.sttp.tapir%tapir-armeria-server-zio com.softwaremill.sttp.tapir%tapir-pekko-grpc-server com.softwaremill.sttp.tapir%tapir-asyncapi-docs com.softwaremill.sttp.tapir%tapir-vertx-server-cats com.softwaremill.sttp.tapir%tapir-swagger-ui com.softwaremill.sttp.tapir%tapir-aws-lambda-zio com.softwaremill.sttp.tapir%tapir-json-play com.softwaremill.sttp.tapir%tapir-json-zio1 com.softwaremill.sttp.tapir%tapir-json-upickle com.softwaremill.sttp.tapir%tapir-netty-server com.softwaremill.sttp.tapir%tapir-armeria-server-zio1 com.softwaremill.sttp.tapir%tapir-server com.softwaremill.sttp.tapir%tapir-vertx-server com.softwaremill.sttp.tapir%tapir-http4s-server com.softwaremill.sttp.tapir%tapir-datadog-metrics com.softwaremill.sttp.tapir%tapir-zio1-http-server com.softwaremill.sttp.tapir%tapir-armeria-server-cats com.softwaremill.sttp.tapir%tapir-netty-server-cats com.softwaremill.sttp.tapir%tapir-zio-prelude com.softwaremill.sttp.tapir%tapir-aws-lambda com.softwaremill.sttp.tapir%tapir-zio1 com.softwaremill.sttp.tapir%tapir-json-spray com.softwaremill.sttp.tapir%tapir-files com.softwaremill.sttp.tapir%tapir-vertx-server-zio com.softwaremill.sttp.tapir%tapir-zio-metrics com.softwaremill.sttp.tapir%tapir-core com.softwaremill.sttp.tapir%tapir-zio com.softwaremill.sttp.tapir%tapir-play-client com.softwaremill.sttp.tapir%tapir-http4s-server-zio com.softwaremill.sttp.tapir%tapir-armeria-server com.softwaremill.sttp.tapir%tapir-pekko-http-server com.softwaremill.sttp.tapir%tapir-prometheus-metrics com.softwaremill.sttp.tapir%tapir-zio-http-server com.softwaremill.sttp.tapir%tapir-iron com.softwaremill.sttp.tapir%tapir-enumeratum com.softwaremill.sttp.tapir%tapir-opentelemetry-metrics com.softwaremill.sttp.tapir%tapir-cats-effect com.softwaremill.sttp.tapir%tapir-server-tests com.softwaremill.sttp.tapir%tapir-vertx-server-zio1 com.softwaremill.sttp.tapir%tapir-openapi-docs com.softwaremill.sttp.tapir%tapir-apispec-docs com.softwaremill.sttp.tapir%tapir-netty-server-zio com.softwaremill.sttp.tapir%tapir-testing com.softwaremill.sttp.tapir%tapir-monix-newtype com.softwaremill.sttp.tapir%tapir-sttp-stub-server com.softwaremill.sttp.tapir%tapir-json-zio com.softwaremill.sttp.tapir%tapir-tests com.softwaremill.sttp.tapir%tapir-sttp-client-ws-zio1 com.softwaremill.sttp.tapir%tapir-client", + "revision":"v1.4.0", + "version":"1.4.0", + "targets":"com.softwaremill.sttp.tapir%tapir-http4s-server-zio1 com.softwaremill.sttp.tapir%tapir-sttp-client com.softwaremill.sttp.tapir%tapir-redoc com.softwaremill.sttp.tapir%tapir-json-circe com.softwaremill.sttp.tapir%tapir-jsoniter-scala com.softwaremill.sttp.tapir%tapir-swagger-ui-bundle com.softwaremill.sttp.tapir%tapir-redoc-bundle com.softwaremill.sttp.tapir%tapir-aws-cdk com.softwaremill.sttp.tapir%tapir-cats com.softwaremill.sttp.tapir%tapir-http4s-client com.softwaremill.sttp.tapir%tapir-refined com.softwaremill.sttp.tapir%tapir-aws-sam com.softwaremill.sttp.tapir%tapir-armeria-server-zio com.softwaremill.sttp.tapir%tapir-asyncapi-docs com.softwaremill.sttp.tapir%tapir-vertx-server-cats com.softwaremill.sttp.tapir%tapir-swagger-ui com.softwaremill.sttp.tapir%tapir-json-zio1 com.softwaremill.sttp.tapir%tapir-json-upickle com.softwaremill.sttp.tapir%tapir-netty-server com.softwaremill.sttp.tapir%tapir-armeria-server-zio1 com.softwaremill.sttp.tapir%tapir-server com.softwaremill.sttp.tapir%tapir-vertx-server com.softwaremill.sttp.tapir%tapir-http4s-server com.softwaremill.sttp.tapir%tapir-datadog-metrics com.softwaremill.sttp.tapir%tapir-zio1-http-server com.softwaremill.sttp.tapir%tapir-armeria-server-cats com.softwaremill.sttp.tapir%tapir-netty-server-cats com.softwaremill.sttp.tapir%tapir-netty-server-zio1 com.softwaremill.sttp.tapir%tapir-zio-prelude com.softwaremill.sttp.tapir%tapir-aws-lambda com.softwaremill.sttp.tapir%tapir-zio1 com.softwaremill.sttp.tapir%tapir-json-spray com.softwaremill.sttp.tapir%tapir-files com.softwaremill.sttp.tapir%tapir-vertx-server-zio com.softwaremill.sttp.tapir%tapir-zio-metrics com.softwaremill.sttp.tapir%tapir-core com.softwaremill.sttp.tapir%tapir-zio com.softwaremill.sttp.tapir%tapir-http4s-server-zio com.softwaremill.sttp.tapir%tapir-armeria-server com.softwaremill.sttp.tapir%tapir-prometheus-metrics com.softwaremill.sttp.tapir%tapir-zio-http-server com.softwaremill.sttp.tapir%tapir-enumeratum com.softwaremill.sttp.tapir%tapir-opentelemetry-metrics com.softwaremill.sttp.tapir%tapir-cats-effect com.softwaremill.sttp.tapir%tapir-server-tests com.softwaremill.sttp.tapir%tapir-vertx-server-zio1 com.softwaremill.sttp.tapir%tapir-openapi-docs com.softwaremill.sttp.tapir%tapir-apispec-docs com.softwaremill.sttp.tapir%tapir-netty-server-zio com.softwaremill.sttp.tapir%tapir-testing com.softwaremill.sttp.tapir%tapir-monix-newtype com.softwaremill.sttp.tapir%tapir-sttp-stub-server com.softwaremill.sttp.tapir%tapir-json-zio com.softwaremill.sttp.tapir%tapir-tests com.softwaremill.sttp.tapir%tapir-sttp-client-ws-zio1 com.softwaremill.sttp.tapir%tapir-client", "config":{ "projects":{ "exclude":[ @@ -37852,7 +31878,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] @@ -37861,8 +31887,8 @@ "softwaremill/tapir-loom":{ "project":"softwaremill/tapir-loom", "repoUrl":"https://github.com/softwaremill/tapir-loom.git", - "revision":"v0.2.5", - "version":"0.2.5", + "revision":"v0.1.1", + "version":"0.1.1", "targets":"com.softwaremill.sttp.tapir%tapir-netty-server-id com.softwaremill.sttp.tapir%tapir-nima-server", "config":{ "projects":{ @@ -37893,7 +31919,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = List(\"3.3.1\")", + "pattern":"val scala3 = List(\"3.2.0\")", "replaceWith":"val scala3 = List(\"\")" } ] @@ -37936,47 +31962,6 @@ ] } }, - "spilne/spilne":{ - "project":"spilne/spilne", - "repoUrl":"https://github.com/spilne/spilne.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"io.github.spilne%fs2-contrib-batcher io.github.spilne%redis4cats-contrib-core io.github.spilne%tapir-contrib-log4cats io.github.spilne%tapir-contrib-server", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", - "replaceWith":"val Scala3 = \"\"" - } - ] - } - }, "spotify/featran":{ "project":"spotify/featran", "repoUrl":"https://github.com/spotify/featran.git", @@ -38025,52 +32010,11 @@ "version":"1.3.6", "targets":"io.spray%spray-json" }, - "sqids/sqids-scala":{ - "project":"sqids/sqids-scala", - "repoUrl":"https://github.com/sqids/sqids-scala.git", - "revision":"v0.5.0", - "version":"0.5.0", - "targets":"org.sqids%sqids", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, "squeryl/squeryl":{ "project":"squeryl/squeryl", "repoUrl":"https://github.com/squeryl/squeryl.git", - "revision":"v0.10.0", - "version":"0.10.0", + "revision":"v0.10.0-RC2", + "version":"0.10.0-RC2", "targets":"org.squeryl%squeryl org.squeryl%macros" }, "ssanj/delight":{ @@ -38161,8 +32105,8 @@ "stryker-mutator/stryker4s":{ "project":"stryker-mutator/stryker4s", "repoUrl":"https://github.com/stryker-mutator/stryker4s.git", - "revision":"v0.15.0", - "version":"0.15.0", + "revision":"v0.14.3", + "version":"0.14.3", "targets":"io.stryker-mutator%sbt-stryker4s-testrunner io.stryker-mutator%stryker4s-api", "config":{ "projects":{ @@ -38193,7 +32137,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.3.1\"", + "pattern":"val scala3 = \"3.1.0\"", "replaceWith":"val scala3 = \"\"" } ] @@ -38202,8 +32146,8 @@ "stryker-mutator/weapon-regex":{ "project":"stryker-mutator/weapon-regex", "repoUrl":"https://github.com/stryker-mutator/weapon-regex.git", - "revision":"v1.1.1", - "version":"1.1.1", + "revision":"v1.1.0", + "version":"1.1.0", "targets":"io.stryker-mutator%weapon-regex io.stryker-mutator%docs", "config":{ "projects":{ @@ -38234,7 +32178,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", + "pattern":"val Scala3 = \"3.2.2\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -38324,8 +32268,8 @@ "svroonland/rezilience":{ "project":"svroonland/rezilience", "repoUrl":"https://github.com/svroonland/rezilience.git", - "revision":"v0.9.4", - "version":"0.9.4", + "revision":"v0.9.3", + "version":"0.9.3", "targets":"nl.vroste%rezilience nl.vroste%rezilience-config", "config":{ "projects":{ @@ -38356,58 +32300,17 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0\"", + "pattern":"val scala3Version = \"3.2.2\"", "replaceWith":"val scala3Version = \"\"" } ] } }, - "svroonland/zio-amqp":{ - "project":"svroonland/zio-amqp", - "repoUrl":"https://github.com/svroonland/zio-amqp.git", - "revision":"v0.5.0", - "version":"0.5.0", - "targets":"nl.vroste%zio-amqp", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"compile-only", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, "svroonland/zio-kinesis":{ "project":"svroonland/zio-kinesis", "repoUrl":"https://github.com/svroonland/zio-kinesis.git", - "revision":"v0.32.0", - "version":"0.32.0", + "revision":"v0.30.1", + "version":"0.30.1", "targets":"nl.vroste%zio-kinesis nl.vroste%root nl.vroste%zio-kinesis-dynamic-consumer nl.vroste%zio-kinesis-future", "config":{ "projects":{ @@ -38443,8 +32346,8 @@ "swagger-akka-http/swagger-enumeratum-module":{ "project":"swagger-akka-http/swagger-enumeratum-module", "repoUrl":"https://github.com/swagger-akka-http/swagger-enumeratum-module.git", - "revision":"v2.8.0", - "version":"2.8.0", + "revision":"v2.6.2", + "version":"2.6.2", "targets":"com.github.swagger-akka-http%swagger-enumeratum-module", "config":{ "projects":{ @@ -38477,48 +32380,11 @@ ] } }, - "swagger-akka-http/swagger-pekko-http":{ - "project":"swagger-akka-http/swagger-pekko-http", - "repoUrl":"https://github.com/swagger-akka-http/swagger-pekko-http.git", - "revision":"v2.11.0", - "version":"2.11.0", - "targets":"com.github.swagger-akka-http%swagger-pekko-http", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, "swagger-akka-http/swagger-scala-module":{ "project":"swagger-akka-http/swagger-scala-module", "repoUrl":"https://github.com/swagger-akka-http/swagger-scala-module.git", - "revision":"v2.11.0", - "version":"2.11.0", + "revision":"v2.9.1", + "version":"2.9.1", "targets":"com.github.swagger-akka-http%swagger-scala-module", "config":{ "projects":{ @@ -38554,8 +32420,8 @@ "swagger-akka-http/swagger-scala3-enum-module":{ "project":"swagger-akka-http/swagger-scala3-enum-module", "repoUrl":"https://github.com/swagger-akka-http/swagger-scala3-enum-module.git", - "revision":"v2.5.0", - "version":"2.5.0", + "revision":"v2.3.1", + "version":"2.3.1", "targets":"com.github.swagger-akka-http%swagger-scala3-enum-module", "config":{ "projects":{ @@ -38591,8 +32457,8 @@ "swaldman/audiofluidity-rss":{ "project":"swaldman/audiofluidity-rss", "repoUrl":"https://github.com/swaldman/audiofluidity-rss.git", - "revision":"v0.0.3", - "version":"0.0.3", + "revision":"v0.0.2", + "version":"0.0.2", "targets":"com.mchange%audiofluidity-rss" }, "swaldman/failable":{ @@ -38602,20 +32468,6 @@ "version":"0.0.6", "targets":"com.mchange%failable com.mchange%failable-logging" }, - "swaldman/fossilphant":{ - "project":"swaldman/fossilphant", - "repoUrl":"https://github.com/swaldman/fossilphant.git", - "revision":"v0.0.3", - "version":"0.0.3", - "targets":"com.mchange%fossilphant" - }, - "swaldman/mchange-sysadmin-scala":{ - "project":"swaldman/mchange-sysadmin-scala", - "repoUrl":"https://github.com/swaldman/mchange-sysadmin-scala.git", - "revision":"v0.1.2", - "version":"0.1.2", - "targets":"com.mchange%mchange-sysadmin-scala" - }, "swaldman/mlog-scala":{ "project":"swaldman/mlog-scala", "repoUrl":"https://github.com/swaldman/mlog-scala.git", @@ -38623,25 +32475,18 @@ "version":"0.3.14", "targets":"com.mchange%mlog-scala" }, - "swaldman/texttable":{ - "project":"swaldman/texttable", - "repoUrl":"https://github.com/swaldman/texttable.git", - "revision":"v0.0.3", - "version":"0.0.3", - "targets":"com.mchange%texttable" - }, "swaldman/unstatic":{ "project":"swaldman/unstatic", "repoUrl":"https://github.com/swaldman/unstatic.git", - "revision":"v0.2.0", - "version":"0.2.0", + "revision":"v0.0.4", + "version":"0.0.4", "targets":"com.mchange%unstatic" }, "swaldman/untemplate":{ "project":"swaldman/untemplate", "repoUrl":"https://github.com/swaldman/untemplate.git", - "revision":"v0.1.1", - "version":"0.1.1", + "revision":"v0.0.4", + "version":"0.0.4", "targets":"com.mchange%untemplate" }, "sweet-delights/delightful-cron":{ @@ -38773,8 +32618,8 @@ "systemfw/upperbound":{ "project":"systemfw/upperbound", "repoUrl":"https://github.com/systemfw/upperbound.git", - "revision":"v0.5.0", - "version":"0.5.0", + "revision":"v0.4.0", + "version":"0.4.0", "targets":"org.systemfw%upperbound", "config":{ "projects":{ @@ -38958,8 +32803,8 @@ "taig/babel":{ "project":"taig/babel", "repoUrl":"https://github.com/taig/babel.git", - "revision":"0.5.2", - "version":"0.5.2", + "revision":"0.5.1", + "version":"0.5.1", "targets":"io.taig%babel-circe io.taig%babel-cats io.taig%babel-loader io.taig%babel io.taig%babel-generic io.taig%babel-core", "config":{ "projects":{ @@ -38971,7 +32816,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -38990,7 +32835,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", + "pattern":"val Scala3 = \"3.2.0\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -38999,46 +32844,9 @@ "taig/cloud-sql-proxy":{ "project":"taig/cloud-sql-proxy", "repoUrl":"https://github.com/taig/cloud-sql-proxy.git", - "revision":"0.2.0", - "version":"0.2.0", - "targets":"io.taig%cloud-sql-proxy-core", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "taig/enumeration-ext":{ - "project":"taig/enumeration-ext", - "repoUrl":"https://github.com/taig/enumeration-ext.git", - "revision":"0.0.3", - "version":"0.0.3", - "targets":"io.taig%enumeration-ext-circe io.taig%enumeration-ext-core io.taig%enumeration-ext-skunk", + "revision":"0.0.1", + "version":"0.0.1", + "targets":"io.taig%cloud-sql-proxy-core io.taig%cloud-sql-proxy-darwin-amd64 io.taig%cloud-sql-proxy-linux-amd64", "config":{ "projects":{ "exclude":[ @@ -39073,9 +32881,9 @@ "taig/flog":{ "project":"taig/flog", "repoUrl":"https://github.com/taig/flog.git", - "revision":"0.16.1", - "version":"0.16.1", - "targets":"io.taig%flog-http4s io.taig%flog io.taig%flog-http4s-server io.taig%flog-slf4j-2 io.taig%flog-log4cats io.taig%flog-http4s-client io.taig%flog-core io.taig%flog-slf4j", + "revision":"0.13.1", + "version":"0.13.1", + "targets":"io.taig%flog-http4s io.taig%flog io.taig%flog-stackdriver-grpc io.taig%flog-http4s-server io.taig%flog-logstash io.taig%flog-stackdriver-http io.taig%flog-http4s-client io.taig%flog-core io.taig%flog-slf4j", "config":{ "projects":{ "exclude":[ @@ -39105,48 +32913,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", - "replaceWith":"val Scala3 = \"\"" - } - ] - } - }, - "taig/geojson":{ - "project":"taig/geojson", - "repoUrl":"https://github.com/taig/geojson.git", - "revision":"0.0.1", - "version":"0.0.1", - "targets":"io.taig%geojson io.taig%geojson-circe io.taig%geojson-core", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", + "pattern":"val Scala3 = \"3.2.0\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -39265,218 +33032,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.0\"", - "replaceWith":"val Scala3 = \"\"" - } - ] - } - }, - "taig/skunk-ext":{ - "project":"taig/skunk-ext", - "repoUrl":"https://github.com/taig/skunk-ext.git", - "revision":"0.8.2", - "version":"0.8.2", - "targets":"io.taig%skunk-ext", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "takezoe/scala-jdbc":{ - "project":"takezoe/scala-jdbc", - "repoUrl":"https://github.com/takezoe/scala-jdbc.git", - "revision":"1.0.6", - "version":"1.0.6", - "targets":"com.github.takezoe%scala-jdbc" - }, - "takezoe/solr-scala-client":{ - "project":"takezoe/solr-scala-client", - "repoUrl":"https://github.com/takezoe/solr-scala-client.git", - "revision":"0.0.27", - "version":"0.0.27", - "targets":"com.github.takezoe%solr-scala-client", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"compile-only", - "sourcePatches":[ - - ] - } - }, - "tarao/collection-scala":{ - "project":"tarao/collection-scala", - "repoUrl":"https://github.com/tarao/collection-scala.git", - "revision":"", - "version":"1.0.0", - "targets":"com.github.tarao%collection", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.0\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "testcontainers/testcontainers-scala":{ - "project":"testcontainers/testcontainers-scala", - "repoUrl":"https://github.com/testcontainers/testcontainers-scala.git", - "revision":"v0.41.0", - "version":"0.41.0", - "targets":"com.dimafeng%testcontainers-scala-cockroachdb com.dimafeng%testcontainers-scala com.dimafeng%testcontainers-scala-presto com.dimafeng%testcontainers-scala-munit com.dimafeng%testcontainers-scala-db2 com.dimafeng%testcontainers-scala-kafka com.dimafeng%testcontainers-scala-scalatest-selenium com.dimafeng%testcontainers-scala-pulsar com.dimafeng%testcontainers-scala-elasticsearch com.dimafeng%testcontainers-scala-nginx com.dimafeng%testcontainers-scala-mariadb com.dimafeng%testcontainers-scala-solr com.dimafeng%testcontainers-scala-gcloud com.dimafeng%testcontainers-scala-toxiproxy com.dimafeng%testcontainers-scala-vault com.dimafeng%testcontainers-scala-rabbitmq com.dimafeng%testcontainers-scala-influxdb com.dimafeng%testcontainers-scala-postgresql com.dimafeng%testcontainers-scala-localstack com.dimafeng%testcontainers-scala-dynalite com.dimafeng%testcontainers-scala-neo4j com.dimafeng%testcontainers-scala-localstack-v2 com.dimafeng%testcontainers-scala-clickhouse com.dimafeng%testcontainers-scala-couchbase com.dimafeng%testcontainers-scala-mysql com.dimafeng%testcontainers-scala-oracle-xe com.dimafeng%testcontainers-scala-scalatest com.dimafeng%testcontainers-scala-mongodb com.dimafeng%testcontainers-scala-mockserver com.dimafeng%testcontainers-scala-orientdb com.dimafeng%testcontainers-scala-core com.dimafeng%testcontainers-scala-redpanda com.dimafeng%testcontainers-scala-cassandra com.dimafeng%testcontainers-scala-mssqlserver com.dimafeng%testcontainers-scala-trino com.dimafeng%testcontainers-scala-jdbc", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"compile-only", - "sourcePatches":[ - - ] - } - }, - "tethys-json/tethys":{ - "project":"tethys-json/tethys", - "repoUrl":"https://github.com/tethys-json/tethys.git", - "revision":"", - "version":"0.28.0", - "targets":"com.tethys-json%tethys-json4s com.tethys-json%tethys-derivation com.tethys-json%tethys com.tethys-json%tethys-core com.tethys-json%tethys-enumeratum com.tethys-json%tethys-jackson212 com.tethys-json%tethys-jackson213 com.tethys-json%tethys-refined com.tethys-json%tethys-circe com.tethys-json%tethys-jackson211", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1-RC1-bin-20230318-7226ba6-NIGHTLY\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val Scala3 = \"3.1.0\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "tharwaninitin/cache4s":{ - "project":"tharwaninitin/cache4s", - "repoUrl":"https://github.com/tharwaninitin/cache4s.git", - "revision":"", - "version":"0.1.0", - "targets":"com.github.tharwaninitin%cache4s", + "taig/skunk-ext":{ + "project":"taig/skunk-ext", + "repoUrl":"https://github.com/taig/skunk-ext.git", + "revision":"0.4.2", + "version":"0.4.2", + "targets":"io.taig%skunk-ext", "config":{ "projects":{ "exclude":[ @@ -39487,7 +33054,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -39504,20 +33071,23 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Versions.scala", - "pattern":"val scala3 = \"3.1.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "tharwaninitin/cron4zio":{ - "project":"tharwaninitin/cron4zio", - "repoUrl":"https://github.com/tharwaninitin/cron4zio.git", - "revision":"1.0.0", - "version":"1.0.0", - "targets":"com.github.tharwaninitin%cron4zio", + "takezoe/scala-jdbc":{ + "project":"takezoe/scala-jdbc", + "repoUrl":"https://github.com/takezoe/scala-jdbc.git", + "revision":"1.0.6", + "version":"1.0.6", + "targets":"com.github.takezoe%scala-jdbc" + }, + "takezoe/solr-scala-client":{ + "project":"takezoe/solr-scala-client", + "repoUrl":"https://github.com/takezoe/solr-scala-client.git", + "revision":"0.0.27", + "version":"0.0.27", + "targets":"com.github.takezoe%solr-scala-client", "config":{ "projects":{ "exclude":[ @@ -39532,8 +33102,7 @@ }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -39544,22 +33113,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"project/Versions.scala", - "pattern":"val scala3 = \"3.2.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "tharwaninitin/crypto4s":{ - "project":"tharwaninitin/crypto4s", - "repoUrl":"https://github.com/tharwaninitin/crypto4s.git", - "revision":"", - "version":"0.2.0", - "targets":"com.github.tharwaninitin%crypto4s", + "tarao/collection-scala":{ + "project":"tarao/collection-scala", + "repoUrl":"https://github.com/tarao/collection-scala.git", + "revision":"37d1b00a5822a5712163d7bcad6c8963620a3bd7", + "version":"1.0.0", + "targets":"com.github.tarao%collection", "config":{ "projects":{ "exclude":[ @@ -39570,7 +33135,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -39588,19 +33153,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/Versions.scala", - "pattern":"val scala3 = \"3.1.0\"", + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.0\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "tharwaninitin/etlflow":{ - "project":"tharwaninitin/etlflow", - "repoUrl":"https://github.com/tharwaninitin/etlflow.git", - "revision":"1.7.3", - "version":"1.7.3", - "targets":"com.github.tharwaninitin%etlflow-k8s com.github.tharwaninitin%etlflow-ftp com.github.tharwaninitin%etlflow-aws com.github.tharwaninitin%etlflow-http com.github.tharwaninitin%etlflow-core com.github.tharwaninitin%etlflow-gcp com.github.tharwaninitin%etlflow-jdbc com.github.tharwaninitin%etlflow-email", + "testcontainers/testcontainers-scala":{ + "project":"testcontainers/testcontainers-scala", + "repoUrl":"https://github.com/testcontainers/testcontainers-scala.git", + "revision":"v0.40.15", + "version":"0.40.15", + "targets":"com.dimafeng%testcontainers-scala-cockroachdb com.dimafeng%testcontainers-scala com.dimafeng%testcontainers-scala-presto com.dimafeng%testcontainers-scala-munit com.dimafeng%testcontainers-scala-db2 com.dimafeng%testcontainers-scala-kafka com.dimafeng%testcontainers-scala-scalatest-selenium com.dimafeng%testcontainers-scala-pulsar com.dimafeng%testcontainers-scala-elasticsearch com.dimafeng%testcontainers-scala-nginx com.dimafeng%testcontainers-scala-mariadb com.dimafeng%testcontainers-scala-solr com.dimafeng%testcontainers-scala-gcloud com.dimafeng%testcontainers-scala-toxiproxy com.dimafeng%testcontainers-scala-vault com.dimafeng%testcontainers-scala-rabbitmq com.dimafeng%testcontainers-scala-influxdb com.dimafeng%testcontainers-scala-postgresql com.dimafeng%testcontainers-scala-localstack com.dimafeng%testcontainers-scala-dynalite com.dimafeng%testcontainers-scala-neo4j com.dimafeng%testcontainers-scala-localstack-v2 com.dimafeng%testcontainers-scala-clickhouse com.dimafeng%testcontainers-scala-couchbase com.dimafeng%testcontainers-scala-mysql com.dimafeng%testcontainers-scala-oracle-xe com.dimafeng%testcontainers-scala-scalatest com.dimafeng%testcontainers-scala-mongodb com.dimafeng%testcontainers-scala-mockserver com.dimafeng%testcontainers-scala-orientdb com.dimafeng%testcontainers-scala-core com.dimafeng%testcontainers-scala-redpanda com.dimafeng%testcontainers-scala-cassandra com.dimafeng%testcontainers-scala-mssqlserver com.dimafeng%testcontainers-scala-trino com.dimafeng%testcontainers-scala-jdbc", "config":{ "projects":{ "exclude":[ @@ -39611,12 +33176,11 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -39629,20 +33193,16 @@ }, "tests":"compile-only", "sourcePatches":[ - { - "path":"project/Versions.scala", - "pattern":"val Scala3 = \"3.3.0\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "tharwaninitin/gcp4zio":{ - "project":"tharwaninitin/gcp4zio", - "repoUrl":"https://github.com/tharwaninitin/gcp4zio.git", - "revision":"1.4.1", - "version":"1.4.1", - "targets":"com.github.tharwaninitin%gcp4zio-monitoring com.github.tharwaninitin%gcp4zio-bq com.github.tharwaninitin%gcp4zio-gcs com.github.tharwaninitin%gcp4zio-pubsub com.github.tharwaninitin%gcp4zio-dp", + "tharwaninitin/cache4s":{ + "project":"tharwaninitin/cache4s", + "repoUrl":"https://github.com/tharwaninitin/cache4s.git", + "revision":"bd4e3be03e7913ca4babab6c9a2b2ed70782dd94", + "version":"0.1.0", + "targets":"com.github.tharwaninitin%cache4s", "config":{ "projects":{ "exclude":[ @@ -39653,12 +33213,11 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -39669,22 +33228,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ { "path":"project/Versions.scala", - "pattern":"val Scala3 = \"3.2.1\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3 = \"3.1.0\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "thatscalaguy/circe-jq":{ - "project":"thatscalaguy/circe-jq", - "repoUrl":"https://github.com/thatscalaguy/circe-jq.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"de.thatscalaguy%circe-jq", + "tharwaninitin/cron4zio":{ + "project":"tharwaninitin/cron4zio", + "repoUrl":"https://github.com/tharwaninitin/cron4zio.git", + "revision":"1.0.0", + "version":"1.0.0", + "targets":"com.github.tharwaninitin%cron4zio", "config":{ "projects":{ "exclude":[ @@ -39695,11 +33254,12 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -39713,19 +33273,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.1\"", - "replaceWith":"val Scala3 = \"\"" + "path":"project/Versions.scala", + "pattern":"val scala3 = \"3.2.1\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "thatscalaguy/nats4cats":{ - "project":"thatscalaguy/nats4cats", - "repoUrl":"https://github.com/thatscalaguy/nats4cats.git", - "revision":"v0.2.0", + "tharwaninitin/crypto4s":{ + "project":"tharwaninitin/crypto4s", + "repoUrl":"https://github.com/tharwaninitin/crypto4s.git", + "revision":"0c033f5ab4cf981d0f10024f42b317fec86e6244", "version":"0.2.0", - "targets":"de.thatscalaguy%nats4cats de.thatscalaguy%nats4cats-circe de.thatscalaguy%root", + "targets":"com.github.tharwaninitin%crypto4s", "config":{ "projects":{ "exclude":[ @@ -39736,7 +33296,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -39754,19 +33314,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", - "replaceWith":"val Scala3 = \"\"" + "path":"project/Versions.scala", + "pattern":"val scala3 = \"3.1.0\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "thatscalaguy/ulid4cats":{ - "project":"thatscalaguy/ulid4cats", - "repoUrl":"https://github.com/thatscalaguy/ulid4cats.git", - "revision":"v1.3.3", - "version":"1.3.3", - "targets":"de.thatscalaguy%ulid4cats", + "tharwaninitin/etlflow":{ + "project":"tharwaninitin/etlflow", + "repoUrl":"https://github.com/tharwaninitin/etlflow.git", + "revision":"1.7.2", + "version":"1.7.2", + "targets":"com.github.tharwaninitin%etlflow-k8s com.github.tharwaninitin%etlflow-aws com.github.tharwaninitin%etlflow-http com.github.tharwaninitin%etlflow-core com.github.tharwaninitin%etlflow-gcp com.github.tharwaninitin%etlflow-jdbc com.github.tharwaninitin%etlflow-email", "config":{ "projects":{ "exclude":[ @@ -39777,11 +33337,12 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -39792,22 +33353,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.1\"", + "path":"project/Versions.scala", + "pattern":"val Scala3 = \"3.2.1\"", "replaceWith":"val Scala3 = \"\"" } ] } }, - "thedrawingcoder-gamer/swing.io":{ - "project":"thedrawingcoder-gamer/swing.io", - "repoUrl":"https://github.com/thedrawingcoder-gamer/swing.io.git", - "revision":"v0.1.0-M1", - "version":"0.1.0-M1", - "targets":"io.github.thedrawingcoder-gamer%swing-io", + "tharwaninitin/gcp4zio":{ + "project":"tharwaninitin/gcp4zio", + "repoUrl":"https://github.com/tharwaninitin/gcp4zio.git", + "revision":"1.4.1", + "version":"1.4.1", + "targets":"com.github.tharwaninitin%gcp4zio-monitoring com.github.tharwaninitin%gcp4zio-bq com.github.tharwaninitin%gcp4zio-gcs com.github.tharwaninitin%gcp4zio-pubsub com.github.tharwaninitin%gcp4zio-dp", "config":{ "projects":{ "exclude":[ @@ -39818,11 +33379,12 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -39833,22 +33395,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" + "path":"project/Versions.scala", + "pattern":"val Scala3 = \"3.2.1\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "theiterators/http4s-stir":{ - "project":"theiterators/http4s-stir", - "repoUrl":"https://github.com/theiterators/http4s-stir.git", - "revision":"v0.2", - "version":"0.2", - "targets":"pl.iterators%http4s-stir pl.iterators%http4s-stir-testkit", + "thatscalaguy/circe-jq":{ + "project":"thatscalaguy/circe-jq", + "repoUrl":"https://github.com/thatscalaguy/circe-jq.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"de.thatscalaguy%circe-jq", "config":{ "projects":{ "exclude":[ @@ -39859,7 +33421,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -39878,18 +33440,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala_3 = \"3.3.0\"", - "replaceWith":"val scala_3 = \"\"" + "pattern":"val Scala3 = \"3.2.1\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "theiterators/kebs":{ - "project":"theiterators/kebs", - "repoUrl":"https://github.com/theiterators/kebs.git", - "revision":"v1.9.6", - "version":"1.9.6", - "targets":"pl.iterators%kebs-scalacheck pl.iterators%kebs-instances pl.iterators%kebs-core pl.iterators%kebs-http4s-stir pl.iterators%kebs-macro-utils pl.iterators%kebs-opaque pl.iterators%kebs-pekko-http pl.iterators%kebs-circe pl.iterators%kebs-doobie pl.iterators%kebs-http4s", + "thatscalaguy/ulid4cats":{ + "project":"thatscalaguy/ulid4cats", + "repoUrl":"https://github.com/thatscalaguy/ulid4cats.git", + "revision":"v1.3.1", + "version":"1.3.1", + "targets":"de.thatscalaguy%ulid4cats", "config":{ "projects":{ "exclude":[ @@ -39919,18 +33481,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala_3 = \"3.3.0\"", - "replaceWith":"val scala_3 = \"\"" + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "theiterators/sealed-monad":{ - "project":"theiterators/sealed-monad", - "repoUrl":"https://github.com/theiterators/sealed-monad.git", - "revision":"v1.2.0", - "version":"1.2.0", - "targets":"pl.iterators%sealed-monad", + "thedrawingcoder-gamer/swing.io":{ + "project":"thedrawingcoder-gamer/swing.io", + "repoUrl":"https://github.com/thedrawingcoder-gamer/swing.io.git", + "revision":"v0.1.0-M1", + "version":"0.1.0-M1", + "targets":"io.github.thedrawingcoder-gamer%swing-io", "config":{ "projects":{ "exclude":[ @@ -39941,7 +33503,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -39958,23 +33520,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "themillhousegroup/scoup":{ - "project":"themillhousegroup/scoup", - "repoUrl":"https://github.com/themillhousegroup/scoup.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"com.themillhousegroup%scoup" - }, - "thoughtworksinc/bindable.scala":{ - "project":"thoughtworksinc/bindable.scala", - "repoUrl":"https://github.com/thoughtworksinc/bindable.scala.git", - "revision":"v3.0.0", - "version":"3.0.0", - "targets":"com.thoughtworks.binding%bindable", + "theiterators/kebs":{ + "project":"theiterators/kebs", + "repoUrl":"https://github.com/theiterators/kebs.git", + "revision":"v1.9.5", + "version":"1.9.5", + "targets":"pl.iterators%kebs-instances pl.iterators%kebs-macro-utils pl.iterators%kebs-opaque pl.iterators%kebs-doobie pl.iterators%kebs-http4s", "config":{ "projects":{ "exclude":[ @@ -39985,7 +33544,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -40006,28 +33565,23 @@ ] } }, - "thoughtworksinc/binding.scala":{ - "project":"thoughtworksinc/binding.scala", - "repoUrl":"https://github.com/thoughtworksinc/binding.scala.git", - "revision":"v12.2.0", - "version":"12.2.0", - "targets":"com.thoughtworks.binding%binding com.thoughtworks.binding%safebuffer", + "theiterators/sealed-monad":{ + "project":"theiterators/sealed-monad", + "repoUrl":"https://github.com/theiterators/sealed-monad.git", + "revision":"v1.2.0", + "version":"1.2.0", + "targets":"pl.iterators%sealed-monad", "config":{ "projects":{ "exclude":[ - "com.thoughtworks.binding%bindable-bindableseq", - "com.thoughtworks.binding%covariantstreamt", - "com.thoughtworks.binding%defaultfuture", - "com.thoughtworks.binding%keywords-bind", - "com.thoughtworks.binding%patchstreamt", - "com.thoughtworks.binding%streamt" + ], "overrides":{ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -40048,12 +33602,19 @@ ] } }, - "thoughtworksinc/dsl.scala":{ - "project":"thoughtworksinc/dsl.scala", - "repoUrl":"https://github.com/thoughtworksinc/dsl.scala.git", - "revision":"v2.0.0", - "version":"2.0.0", - "targets":"com.thoughtworks.dsl%keywords-shift com.thoughtworks.dsl%keywords-nonesafe com.thoughtworks.dsl%keywords-while com.thoughtworks.dsl%keywords-tryfinally com.thoughtworks.dsl%domains-scalaz com.thoughtworks.dsl%keywords-await com.thoughtworks.dsl%keywords-monadic com.thoughtworks.dsl%keywords-asynchronousio com.thoughtworks.dsl%keywords-flatmap com.thoughtworks.dsl%keywords-return com.thoughtworks.dsl%keywords-trycatch com.thoughtworks.dsl%keywords-using com.thoughtworks.dsl%macros-reset com.thoughtworks.dsl%keywords-suspend com.thoughtworks.dsl%keywords-put com.thoughtworks.dsl%domains-continuation com.thoughtworks.dsl%keywords-yield com.thoughtworks.dsl%keywords-pure com.thoughtworks.dsl%keywords-typed com.thoughtworks.dsl%keywords-match com.thoughtworks.dsl%keywords-fence com.thoughtworks.dsl%keywords-each com.thoughtworks.dsl%domains-task com.thoughtworks.dsl%keywords-trycatchfinally com.thoughtworks.dsl%scala-async com.thoughtworks.dsl%keywords-if com.thoughtworks.dsl%dsl com.thoughtworks.dsl%keywords-get", + "themillhousegroup/scoup":{ + "project":"themillhousegroup/scoup", + "repoUrl":"https://github.com/themillhousegroup/scoup.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"com.themillhousegroup%scoup" + }, + "thoughtworksinc/bindable.scala":{ + "project":"thoughtworksinc/bindable.scala", + "repoUrl":"https://github.com/thoughtworksinc/bindable.scala.git", + "revision":"v3.0.0", + "version":"3.0.0", + "targets":"com.thoughtworks.binding%bindable", "config":{ "projects":{ "exclude":[ @@ -40085,12 +33646,54 @@ ] } }, - "thoughtworksinc/tryt.scala":{ - "project":"thoughtworksinc/tryt.scala", - "repoUrl":"https://github.com/thoughtworksinc/tryt.scala.git", - "revision":"v3.0.0", - "version":"3.0.0", - "targets":"com.thoughtworks.tryt%covariant com.thoughtworks.tryt%invariant", + "thoughtworksinc/binding.scala":{ + "project":"thoughtworksinc/binding.scala", + "repoUrl":"https://github.com/thoughtworksinc/binding.scala.git", + "revision":"v12.2.0", + "version":"12.2.0", + "targets":"com.thoughtworks.binding%binding com.thoughtworks.binding%safebuffer", + "config":{ + "projects":{ + "exclude":[ + "com.thoughtworks.binding%bindable-bindableseq", + "com.thoughtworks.binding%covariantstreamt", + "com.thoughtworks.binding%defaultfuture", + "com.thoughtworks.binding%keywords-bind", + "com.thoughtworks.binding%patchstreamt", + "com.thoughtworks.binding%streamt" + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "thoughtworksinc/dsl.scala":{ + "project":"thoughtworksinc/dsl.scala", + "repoUrl":"https://github.com/thoughtworksinc/dsl.scala.git", + "revision":"v2.0.0", + "version":"2.0.0", + "targets":"com.thoughtworks.dsl%keywords-shift com.thoughtworks.dsl%keywords-nonesafe com.thoughtworks.dsl%keywords-while com.thoughtworks.dsl%keywords-tryfinally com.thoughtworks.dsl%domains-scalaz com.thoughtworks.dsl%keywords-await com.thoughtworks.dsl%keywords-monadic com.thoughtworks.dsl%keywords-asynchronousio com.thoughtworks.dsl%keywords-flatmap com.thoughtworks.dsl%keywords-return com.thoughtworks.dsl%keywords-trycatch com.thoughtworks.dsl%keywords-using com.thoughtworks.dsl%macros-reset com.thoughtworks.dsl%keywords-suspend com.thoughtworks.dsl%keywords-put com.thoughtworks.dsl%domains-continuation com.thoughtworks.dsl%keywords-yield com.thoughtworks.dsl%keywords-pure com.thoughtworks.dsl%keywords-typed com.thoughtworks.dsl%keywords-match com.thoughtworks.dsl%keywords-fence com.thoughtworks.dsl%keywords-each com.thoughtworks.dsl%domains-task com.thoughtworks.dsl%keywords-trycatchfinally com.thoughtworks.dsl%scala-async com.thoughtworks.dsl%keywords-if com.thoughtworks.dsl%dsl com.thoughtworks.dsl%keywords-get", "config":{ "projects":{ "exclude":[ @@ -40122,12 +33725,12 @@ ] } }, - "throup/couldbe":{ - "project":"throup/couldbe", - "repoUrl":"https://github.com/throup/couldbe.git", - "revision":"v0.2.1", - "version":"0.2.1", - "targets":"eu.throup%couldbe eu.throup%couldbe-cats eu.throup%couldbe-core eu.throup%couldbe-testsupport", + "thoughtworksinc/tryt.scala":{ + "project":"thoughtworksinc/tryt.scala", + "repoUrl":"https://github.com/thoughtworksinc/tryt.scala.git", + "revision":"v3.0.0", + "version":"3.0.0", + "targets":"com.thoughtworks.tryt%covariant com.thoughtworks.tryt%invariant", "config":{ "projects":{ "exclude":[ @@ -40203,9 +33806,9 @@ "timbertson/backpressure-sensor":{ "project":"timbertson/backpressure-sensor", "repoUrl":"https://github.com/timbertson/backpressure-sensor.git", - "revision":"version-0.6.1", - "version":"0.6.1", - "targets":"net.gfxmonk%backpressure-sensor-monix net.gfxmonk%backpressure-sensor-pekko net.gfxmonk%backpressure-sensor-fs2-cats2 net.gfxmonk%backpressure-sensor-statsd net.gfxmonk%backpressure-sensor-testkit net.gfxmonk%backpressure-sensor-core", + "revision":"4d4d42d27a1190aecbd9b79a64e300c306e91252", + "version":"0.5.0", + "targets":"net.gfxmonk%backpressure-sensor-monix net.gfxmonk%backpressure-sensor-fs2-cats2 net.gfxmonk%backpressure-sensor-statsd net.gfxmonk%backpressure-sensor-testkit net.gfxmonk%backpressure-sensor-akka net.gfxmonk%backpressure-sensor-core", "config":{ "projects":{ "exclude":[ @@ -40235,7 +33838,7 @@ "sourcePatches":[ { "path":"project/src/main/scala/PublishSettings.scala", - "pattern":"val scala3Version = \"3.3.0\"", + "pattern":"val scala3Version = \"3.2.2\"", "replaceWith":"val scala3Version = \"\"" } ] @@ -40322,8 +33925,8 @@ "tinkoff/muffin":{ "project":"tinkoff/muffin", "repoUrl":"https://github.com/tinkoff/muffin.git", - "revision":"v0.3.0", - "version":"0.3.0", + "revision":"v0.2.1", + "version":"0.2.1", "targets":"ru.tinkoff%muffin-circe-json-interop ru.tinkoff%muffin-core ru.tinkoff%muffin-http4s-http-interop ru.tinkoff%muffin-sttp-http-interop ru.tinkoff%muffin-zio-http-interop ru.tinkoff%muffin-zio-json-interop", "config":{ "projects":{ @@ -40366,8 +33969,8 @@ "tkrs/fluflu":{ "project":"tkrs/fluflu", "repoUrl":"https://github.com/tkrs/fluflu.git", - "revision":"v0.24.9", - "version":"0.24.9", + "revision":"v0.24.8", + "version":"0.24.8", "targets":"com.github.tkrs%fluflu-core com.github.tkrs%fluflu-msgpack com.github.tkrs%fluflu-msgpack-mess", "config":{ "projects":{ @@ -40398,7 +34001,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.3.0\"", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] @@ -40407,8 +34010,8 @@ "tkrs/mess":{ "project":"tkrs/mess", "repoUrl":"https://github.com/tkrs/mess.git", - "revision":"v0.3.5", - "version":"0.3.5", + "revision":"v0.3.3", + "version":"0.3.3", "targets":"com.github.tkrs%mess-core", "config":{ "projects":{ @@ -40439,7 +34042,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.3.0\"", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] @@ -40489,8 +34092,8 @@ "tkrs/orcus":{ "project":"tkrs/orcus", "repoUrl":"https://github.com/tkrs/orcus.git", - "revision":"v0.28.4", - "version":"0.28.4", + "revision":"v0.28.1", + "version":"0.28.1", "targets":"com.github.tkrs%orcus-core com.github.tkrs%orcus-bigtable com.github.tkrs%orcus-cats-effect", "config":{ "projects":{ @@ -40521,7 +34124,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.3.0\"", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] @@ -40530,7 +34133,7 @@ "tlsomers/scala-suspendable":{ "project":"tlsomers/scala-suspendable", "repoUrl":"https://github.com/tlsomers/scala-suspendable.git", - "revision":"", + "revision":"216c680634ab4d958046605668544d3280326a0f", "version":"0.1.1", "targets":"com.tomtrein%suspendable" }, @@ -40837,8 +34440,8 @@ "tofu-tf/glass":{ "project":"tofu-tf/glass", "repoUrl":"https://github.com/tofu-tf/glass.git", - "revision":"v0.2.2", - "version":"0.2.2", + "revision":"v0.2.1", + "version":"0.2.1", "targets":"tf.tofu%glass tf.tofu%glass-core tf.tofu%glass-interop tf.tofu%glass-macro", "config":{ "projects":{ @@ -40869,7 +34472,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.3.0\"", + "pattern":"val scala3 = \"3.2.1\"", "replaceWith":"val scala3 = \"\"" } ] @@ -40953,43 +34556,6 @@ ] } }, - "toniogela/cross":{ - "project":"toniogela/cross", - "repoUrl":"https://github.com/toniogela/cross.git", - "revision":"v0.0.2", - "version":"0.0.2", - "targets":"dev.toniogela%cross dev.toniogela%cross-unidocs", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, "torrentdam/bencode":{ "project":"torrentdam/bencode", "repoUrl":"https://github.com/torrentdam/bencode.git", @@ -41064,43 +34630,6 @@ ] } }, - "tototoshi/nyanda":{ - "project":"tototoshi/nyanda", - "repoUrl":"https://github.com/tototoshi/nyanda.git", - "revision":"0.1.0", - "version":"0.1.0", - "targets":"com.github.tototoshi%nyanda", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, "tototoshi/scala-csv":{ "project":"tototoshi/scala-csv", "repoUrl":"https://github.com/tototoshi/scala-csv.git", @@ -41111,51 +34640,10 @@ "tototoshi/slick-joda-mapper":{ "project":"tototoshi/slick-joda-mapper", "repoUrl":"https://github.com/tototoshi/slick-joda-mapper.git", - "revision":"2.8.0", - "version":"2.8.0", + "revision":"2.6.0", + "version":"2.6.0", "targets":"com.github.tototoshi%slick-joda-mapper" }, - "tpataky/duckling":{ - "project":"tpataky/duckling", - "repoUrl":"https://github.com/tpataky/duckling.git", - "revision":"", - "version":"0.0.2", - "targets":"io.github.tpataky%duckling", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, "tpolecat/atto":{ "project":"tpolecat/atto", "repoUrl":"https://github.com/tpolecat/atto.git", @@ -41196,9 +34684,9 @@ "tpolecat/doobie":{ "project":"tpolecat/doobie", "repoUrl":"https://github.com/tpolecat/doobie.git", - "revision":"v1.0.0-RC4", - "version":"1.0.0-RC4", - "targets":"org.tpolecat%doobie-postgres org.tpolecat%doobie-h2-circe org.tpolecat%doobie-refined org.tpolecat%doobie-specs2 org.tpolecat%doobie-h2 org.tpolecat%doobie-scalatest org.tpolecat%doobie-core org.tpolecat%doobie-postgres-circe org.tpolecat%doobie-hikari org.tpolecat%doobie-weaver org.tpolecat%doobie-free org.tpolecat%doobie-munit", + "revision":"v1.0.0-RC2", + "version":"1.0.0-RC2", + "targets":"org.tpolecat%doobie-postgres org.tpolecat%doobie-h2-circe org.tpolecat%doobie-refined org.tpolecat%doobie-h2 org.tpolecat%doobie-scalatest org.tpolecat%doobie-core org.tpolecat%doobie-postgres-circe org.tpolecat%doobie-hikari org.tpolecat%doobie-free org.tpolecat%doobie-munit", "config":{ "projects":{ "exclude":[ @@ -41234,11 +34722,7 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, @@ -41364,8 +34848,8 @@ "trace4cats/trace4cats":{ "project":"trace4cats/trace4cats", "repoUrl":"https://github.com/trace4cats/trace4cats.git", - "revision":"v0.14.6", - "version":"0.14.6", + "revision":"v0.14.2", + "version":"0.14.2", "targets":"io.janstenpickle%trace4cats-tail-sampling io.janstenpickle%trace4cats-iolocal io.janstenpickle%trace4cats-context-utils io.janstenpickle%trace4cats-kernel io.janstenpickle%trace4cats-meta io.janstenpickle%trace4cats-core io.janstenpickle%trace4cats-fs2 io.janstenpickle%trace4cats-testkit io.janstenpickle%trace4cats-context-utils-laws", "config":{ "projects":{ @@ -41397,7 +34881,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.3.0\"", + "pattern":"val scala3 = \"3.1.3\"", "replaceWith":"val scala3 = \"\"" } ] @@ -41529,8 +35013,8 @@ "trace4cats/trace4cats-datadog":{ "project":"trace4cats/trace4cats-datadog", "repoUrl":"https://github.com/trace4cats/trace4cats-datadog.git", - "revision":"v0.14.1", - "version":"0.14.1", + "revision":"v0.14.0", + "version":"0.14.0", "targets":"io.janstenpickle%trace4cats-datadog-http-exporter", "config":{ "projects":{ @@ -41561,7 +35045,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.3.0\"", + "pattern":"val scala3 = \"3.1.3\"", "replaceWith":"val scala3 = \"\"" } ] @@ -41608,47 +35092,47 @@ ] } }, - "trace4cats/trace4cats-http4s":{ - "project":"trace4cats/trace4cats-http4s", - "repoUrl":"https://github.com/trace4cats/trace4cats-http4s.git", - "revision":"v0.14.1", - "version":"0.14.1", - "targets":"io.janstenpickle%trace4cats-http4s-client io.janstenpickle%trace4cats-http4s-common io.janstenpickle%trace4cats-http4s-server", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, + "trace4cats/trace4cats-http4s":{ + "project":"trace4cats/trace4cats-http4s", + "repoUrl":"https://github.com/trace4cats/trace4cats-http4s.git", + "revision":"v0.14.0", + "version":"0.14.0", + "targets":"io.janstenpickle%trace4cats-http4s-client io.janstenpickle%trace4cats-http4s-common io.janstenpickle%trace4cats-http4s-server", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.1.3\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, "trace4cats/trace4cats-jaeger":{ "project":"trace4cats/trace4cats-jaeger", "repoUrl":"https://github.com/trace4cats/trace4cats-jaeger.git", @@ -41693,8 +35177,8 @@ "trace4cats/trace4cats-jaeger-integration-test":{ "project":"trace4cats/trace4cats-jaeger-integration-test", "repoUrl":"https://github.com/trace4cats/trace4cats-jaeger-integration-test.git", - "revision":"v0.14.2", - "version":"0.14.2", + "revision":"v0.14.0", + "version":"0.14.0", "targets":"io.janstenpickle%trace4cats-jaeger-integration-test", "config":{ "projects":{ @@ -41725,7 +35209,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.3.0\"", + "pattern":"val scala3 = \"3.1.3\"", "replaceWith":"val scala3 = \"\"" } ] @@ -41734,8 +35218,8 @@ "trace4cats/trace4cats-kafka":{ "project":"trace4cats/trace4cats-kafka", "repoUrl":"https://github.com/trace4cats/trace4cats-kafka.git", - "revision":"v0.14.3", - "version":"0.14.3", + "revision":"v0.14.1", + "version":"0.14.1", "targets":"io.janstenpickle%trace4cats-kafka-client", "config":{ "projects":{ @@ -41766,7 +35250,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.2.2\"", + "pattern":"val scala3 = \"3.1.3\"", "replaceWith":"val scala3 = \"\"" } ] @@ -41857,9 +35341,9 @@ "trace4cats/trace4cats-opentelemetry":{ "project":"trace4cats/trace4cats-opentelemetry", "repoUrl":"https://github.com/trace4cats/trace4cats-opentelemetry.git", - "revision":"v0.14.4", - "version":"0.14.4", - "targets":"io.janstenpickle%trace4cats-opentelemetry-otlp-grpc-exporter io.janstenpickle%trace4cats-opentelemetry-jaeger-exporter io.janstenpickle%trace4cats-opentelemetry-otlp-http4s-grpc-exporter io.janstenpickle%trace4cats-opentelemetry-otlp-http-exporter io.janstenpickle%trace4cats-opentelemetry-common", + "revision":"v0.14.1", + "version":"0.14.1", + "targets":"io.janstenpickle%trace4cats-opentelemetry-otlp-grpc-exporter io.janstenpickle%trace4cats-opentelemetry-jaeger-exporter io.janstenpickle%trace4cats-opentelemetry-otlp-http-exporter io.janstenpickle%trace4cats-opentelemetry-common", "config":{ "projects":{ "exclude":[ @@ -41889,7 +35373,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.3.0\"", + "pattern":"val scala3 = \"3.1.3\"", "replaceWith":"val scala3 = \"\"" } ] @@ -41980,9 +35464,9 @@ "trace4cats/trace4cats-xray":{ "project":"trace4cats/trace4cats-xray", "repoUrl":"https://github.com/trace4cats/trace4cats-xray.git", - "revision":"", + "revision":"e164cffc955fb26506dd9e1e15d9a00d80f24884", "version":"0.0.0+2-85ca34a3", - "targets":"", + "targets":"io.janstenpickle%trace4cats-xray-udp-exporter", "config":{ "projects":{ "exclude":[ @@ -42179,8 +35663,8 @@ "twitter/util":{ "project":"twitter/util", "repoUrl":"https://github.com/twitter/util.git", - "revision":"util-23.11.0", - "version":"23.11.0", + "revision":"util-22.12.0", + "version":"22.12.0", "targets":"com.twitter%util-cache com.twitter%util-app com.twitter%util-app-lifecycle com.twitter%util-jvm com.twitter%util-slf4j-jul-bridge com.twitter%util-logging com.twitter%util-zk-test com.twitter%util-hashing com.twitter%util-routing com.twitter%util-core com.twitter%util-slf4j-api com.twitter%util-stats com.twitter%util-cache-guava com.twitter%util-thrift com.twitter%util-codec com.twitter%util-registry com.twitter%util-lint com.twitter%util-security", "config":{ "projects":{ @@ -42215,47 +35699,10 @@ ] } }, - "typebricks/pureconfig-toggleable":{ - "project":"typebricks/pureconfig-toggleable", - "repoUrl":"https://github.com/typebricks/pureconfig-toggleable.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"io.github.typebricks%pureconfig-toggleable", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, "typelevel/bobcats":{ "project":"typelevel/bobcats", "repoUrl":"https://github.com/typelevel/bobcats.git", - "revision":"", + "revision":"d3032a72d5f3593099623af822b91ca7d6176925", "version":"0.1-094962b", "targets":"com.armanbilge%bobcats", "config":{ @@ -42329,8 +35776,8 @@ "typelevel/catapult":{ "project":"typelevel/catapult", "repoUrl":"https://github.com/typelevel/catapult.git", - "revision":"v0.4.3", - "version":"0.4.3", + "revision":"v0.4.0", + "version":"0.4.0", "targets":"org.typelevel%catapult org.typelevel%catapult-testkit", "config":{ "projects":{ @@ -42366,8 +35813,8 @@ "typelevel/cats":{ "project":"typelevel/cats", "repoUrl":"https://github.com/typelevel/cats.git", - "revision":"v2.10.0", - "version":"2.10.0", + "revision":"v2.9.0", + "version":"2.9.0", "targets":"org.typelevel%cats-free org.typelevel%cats-kernel org.typelevel%cats-kernel-laws org.typelevel%alleycats-core org.typelevel%cats-docs org.typelevel%cats-testkit org.typelevel%algebra-laws org.typelevel%alleycats-laws org.typelevel%algebra org.typelevel%cats-core org.typelevel%cats-laws", "config":{ "projects":{ @@ -42398,7 +35845,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", + "pattern":"val Scala3 = \"3.2.1\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -42407,8 +35854,8 @@ "typelevel/cats-collections":{ "project":"typelevel/cats-collections", "repoUrl":"https://github.com/typelevel/cats-collections.git", - "revision":"v0.9.8", - "version":"0.9.8", + "revision":"v0.9.6", + "version":"0.9.6", "targets":"org.typelevel%cats-collections-core org.typelevel%cats-collections-laws org.typelevel%cats-collections-scalacheck", "config":{ "projects":{ @@ -42439,7 +35886,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.1\"", + "pattern":"val Scala3 = \"3.2.2\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -42448,8 +35895,8 @@ "typelevel/cats-effect":{ "project":"typelevel/cats-effect", "repoUrl":"https://github.com/typelevel/cats-effect.git", - "revision":"v3.5.2", - "version":"3.5.2", + "revision":"v3.5.0", + "version":"3.5.0", "targets":"org.typelevel%cats-effect org.typelevel%cats-effect-laws org.typelevel%cats-effect-kernel org.typelevel%cats-effect-kernel-testkit org.typelevel%cats-effect-std org.typelevel%cats-effect-testkit", "config":{ "projects":{ @@ -42568,8 +36015,8 @@ "typelevel/cats-mtl":{ "project":"typelevel/cats-mtl", "repoUrl":"https://github.com/typelevel/cats-mtl.git", - "revision":"v1.4.0", - "version":"1.4.0", + "revision":"v1.3.1", + "version":"1.3.1", "targets":"org.typelevel%cats-mtl org.typelevel%cats-mtl-docs org.typelevel%cats-mtl-laws", "config":{ "projects":{ @@ -42605,8 +36052,8 @@ "typelevel/cats-parse":{ "project":"typelevel/cats-parse", "repoUrl":"https://github.com/typelevel/cats-parse.git", - "revision":"v0.3.10", - "version":"0.3.10", + "revision":"v0.3.9", + "version":"0.3.9", "targets":"org.typelevel%cats-parse", "config":{ "projects":{ @@ -42637,53 +36084,12 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", + "pattern":"val scala3 = \"3.2.1\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "typelevel/cats-tagless":{ - "project":"typelevel/cats-tagless", - "repoUrl":"https://github.com/typelevel/cats-tagless.git", - "revision":"v0.15.0", - "version":"0.15.0", - "targets":"org.typelevel%cats-tagless-core org.typelevel%cats-tagless-laws", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" - } - ] - } - }, "typelevel/cats-testkit-scalatest":{ "project":"typelevel/cats-testkit-scalatest", "repoUrl":"https://github.com/typelevel/cats-testkit-scalatest.git", @@ -42950,9 +36356,9 @@ "typelevel/fabric":{ "project":"typelevel/fabric", "repoUrl":"https://github.com/typelevel/fabric.git", - "revision":"v1.12.6", - "version":"1.12.6", - "targets":"org.typelevel%fabric-io org.typelevel%fabric-core org.typelevel%fabric-reactify", + "revision":"v1.10.8", + "version":"1.10.8", + "targets":"org.typelevel%fabric-io org.typelevel%fabric-core", "config":{ "projects":{ "exclude":[ @@ -42982,7 +36388,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] @@ -42991,8 +36397,8 @@ "typelevel/feral":{ "project":"typelevel/feral", "repoUrl":"https://github.com/typelevel/feral.git", - "revision":"v0.2.4", - "version":"0.2.4", + "revision":"v0.2.2", + "version":"0.2.2", "targets":"org.typelevel%feral-lambda-cloudformation-custom-resource org.typelevel%feral-lambda org.typelevel%feral-core org.typelevel%feral-docs org.typelevel%feral-lambda-http4s", "config":{ "projects":{ @@ -43004,7 +36410,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -43023,7 +36429,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.1\"", + "pattern":"val Scala3 = \"3.2.2\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -43032,8 +36438,8 @@ "typelevel/fs2":{ "project":"typelevel/fs2", "repoUrl":"https://github.com/typelevel/fs2.git", - "revision":"v3.9.2", - "version":"3.9.2", + "revision":"v3.7.0", + "version":"3.7.0", "targets":"co.fs2%fs2-scodec co.fs2%fs2-io co.fs2%fs2-docs co.fs2%fs2-core co.fs2%fs2-protocols co.fs2%fs2-reactive-streams", "config":{ "projects":{ @@ -43069,8 +36475,8 @@ "typelevel/fs2-grpc":{ "project":"typelevel/fs2-grpc", "repoUrl":"https://github.com/typelevel/fs2-grpc.git", - "revision":"v2.7.11", - "version":"2.7.11", + "revision":"v2.6.0", + "version":"2.6.0", "targets":"org.typelevel%fs2-grpc-codegen org.typelevel%fs2-grpc-runtime", "config":{ "projects":{ @@ -43101,7 +36507,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.1\"", + "pattern":"val Scala3 = \"3.2.2\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -43110,9 +36516,9 @@ "typelevel/grackle":{ "project":"typelevel/grackle", "repoUrl":"https://github.com/typelevel/grackle.git", - "revision":"v0.14.0", - "version":"0.14.0", - "targets":"edu.gemini%gsp-graphql-sql edu.gemini%gsp-graphql-skunk edu.gemini%gsp-graphql-circe edu.gemini%gsp-graphql-generic edu.gemini%gsp-graphql-doobie-pg edu.gemini%gsp-graphql-core", + "revision":"v0.12.0", + "version":"0.12.0", + "targets":"edu.gemini%gsp-graphql-skunk edu.gemini%gsp-graphql-circe edu.gemini%gsp-graphql-generic edu.gemini%gsp-graphql-doobie-pg edu.gemini%gsp-graphql-sql edu.gemini%gsp-graphql-core", "config":{ "projects":{ "exclude":[ @@ -43142,7 +36548,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.1\"", + "pattern":"val Scala3 = \"3.2.2\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -43192,8 +36598,8 @@ "typelevel/jawn":{ "project":"typelevel/jawn", "repoUrl":"https://github.com/typelevel/jawn.git", - "revision":"v1.5.1", - "version":"1.5.1", + "revision":"v1.4.0", + "version":"1.4.0", "targets":"org.typelevel%jawn-parser org.typelevel%jawn-ast org.typelevel%jawn-util", "config":{ "projects":{ @@ -43224,7 +36630,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", + "pattern":"val scala3 = \"3.1.3\"", "replaceWith":"val scala3 = \"\"" } ] @@ -43307,8 +36713,8 @@ "typelevel/kittens":{ "project":"typelevel/kittens", "repoUrl":"https://github.com/typelevel/kittens.git", - "revision":"v3.1.0", - "version":"3.1.0", + "revision":"v3.0.0", + "version":"3.0.0", "targets":"org.typelevel%kittens", "config":{ "projects":{ @@ -43320,7 +36726,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -43344,48 +36750,7 @@ }, { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "typelevel/laika":{ - "project":"typelevel/laika", - "repoUrl":"https://github.com/typelevel/laika.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"org.typelevel%laika-core org.typelevel%laika-io org.typelevel%laika-pdf org.typelevel%laika-preview org.typelevel%laika-docs", - "config":{ - "projects":{ - "exclude":[ - "org.typelevel%laika-docs" - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"compile-only", - "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.3.1\"", + "pattern":"val scala3 = \"3.2.0\"", "replaceWith":"val scala3 = \"\"" } ] @@ -43632,8 +36997,8 @@ "typelevel/natchez":{ "project":"typelevel/natchez", "repoUrl":"https://github.com/typelevel/natchez.git", - "revision":"v0.3.3", - "version":"0.3.3", + "revision":"v0.3.1", + "version":"0.3.1", "targets":"org.tpolecat%natchez-lightstep org.tpolecat%natchez-lightstep-grpc org.tpolecat%natchez-lightstep-http org.tpolecat%natchez-jaeger org.tpolecat%natchez-opencensus org.tpolecat%natchez-noop org.tpolecat%natchez-log-odin org.tpolecat%natchez-mock org.tpolecat%natchez-core org.tpolecat%natchez-mtl org.tpolecat%natchez-log org.tpolecat%natchez-opentracing org.tpolecat%natchez-opentelemetry org.tpolecat%natchez-datadog org.tpolecat%newrelic org.tpolecat%natchez-xray org.tpolecat%natchez-testkit org.tpolecat%natchez-honeycomb", "config":{ "projects":{ @@ -43710,9 +37075,9 @@ "typelevel/otel4s":{ "project":"typelevel/otel4s", "repoUrl":"https://github.com/typelevel/otel4s.git", - "revision":"v0.3.0-RC2", - "version":"0.3.0-RC2", - "targets":"org.typelevel%otel4s-docs org.typelevel%otel4s-core-metrics org.typelevel%otel4s-java-metrics org.typelevel%otel4s-testkit org.typelevel%otel4s-testkit-common org.typelevel%otel4s-java-trace org.typelevel%otel4s-core-common org.typelevel%otel4s-core org.typelevel%otel4s-semconv org.typelevel%otel4s-core-trace org.typelevel%otel4s-testkit-metrics org.typelevel%otel4s-java org.typelevel%otel4s-java-common", + "revision":"v0.2.1", + "version":"0.2.1", + "targets":"org.typelevel%otel4s-docs org.typelevel%otel4s-core-metrics org.typelevel%otel4s-java-metrics org.typelevel%otel4s-testkit org.typelevel%otel4s-testkit-common org.typelevel%otel4s-java-trace org.typelevel%otel4s-core-common org.typelevel%otel4s-core org.typelevel%otel4s-core-trace org.typelevel%otel4s-testkit-metrics org.typelevel%otel4s-java org.typelevel%otel4s-java-common", "config":{ "projects":{ "exclude":[ @@ -43747,8 +37112,8 @@ "typelevel/paiges":{ "project":"typelevel/paiges", "repoUrl":"https://github.com/typelevel/paiges.git", - "revision":"v0.4.3", - "version":"0.4.3", + "revision":"v0.4.2", + "version":"0.4.2", "targets":"org.typelevel%paiges-cats org.typelevel%paiges-core", "config":{ "projects":{ @@ -43777,19 +37142,15 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3Version = \"3.3.0\"", - "replaceWith":"val Scala3Version = \"\"" - } + ] } }, "typelevel/scalac-compat":{ "project":"typelevel/scalac-compat", "repoUrl":"https://github.com/typelevel/scalac-compat.git", - "revision":"v0.1.2", - "version":"0.1.2", + "revision":"v0.1.0", + "version":"0.1.0", "targets":"org.typelevel%scalac-compat-annotation", "config":{ "projects":{ @@ -43820,7 +37181,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", + "pattern":"val Scala3 = \"3.2.0\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -43829,8 +37190,8 @@ "typelevel/scalac-options":{ "project":"typelevel/scalac-options", "repoUrl":"https://github.com/typelevel/scalac-options.git", - "revision":"v0.1.4", - "version":"0.1.4", + "revision":"v0.1.1", + "version":"0.1.1", "targets":"org.typelevel%scalac-options", "config":{ "projects":{ @@ -43861,7 +37222,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.1\"", + "pattern":"val Scala3 = \"3.1.3\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -44060,49 +37421,12 @@ ] } }, - "typelevel/skunk":{ - "project":"typelevel/skunk", - "repoUrl":"https://github.com/typelevel/skunk.git", - "revision":"v0.6.1", - "version":"0.6.1", - "targets":"org.tpolecat%skunk-core org.tpolecat%skunk-docs org.tpolecat%skunk-circe org.tpolecat%skunk-refined", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "typelevel/spire":{ - "project":"typelevel/spire", - "repoUrl":"https://github.com/typelevel/spire.git", - "revision":"v0.18.0", - "version":"0.18.0", - "targets":"org.typelevel%spire-legacy org.typelevel%spire-util org.typelevel%spire-laws org.typelevel%spire org.typelevel%spire-extras org.typelevel%spire-platform org.typelevel%spire-data org.typelevel%spire-macros", + "typelevel/skunk":{ + "project":"typelevel/skunk", + "repoUrl":"https://github.com/typelevel/skunk.git", + "revision":"v0.6.0-RC2", + "version":"0.6.0-RC2", + "targets":"org.tpolecat%refined org.tpolecat%skunk-core org.tpolecat%skunk-circe", "config":{ "projects":{ "exclude":[ @@ -44113,7 +37437,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -44130,20 +37454,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.2\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "typelevel/spotted-leopards":{ - "project":"typelevel/spotted-leopards", - "repoUrl":"https://github.com/typelevel/spotted-leopards.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"org.typelevel%spotted-leopards", + "typelevel/spire":{ + "project":"typelevel/spire", + "repoUrl":"https://github.com/typelevel/spire.git", + "revision":"v0.18.0", + "version":"0.18.0", + "targets":"org.typelevel%spire-legacy org.typelevel%spire-util org.typelevel%spire-laws org.typelevel%spire org.typelevel%spire-extras org.typelevel%spire-platform org.typelevel%spire-data org.typelevel%spire-macros", "config":{ "projects":{ "exclude":[ @@ -44154,7 +37474,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -44171,7 +37491,11 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.1.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, @@ -44185,8 +37509,8 @@ "typelevel/toolkit":{ "project":"typelevel/toolkit", "repoUrl":"https://github.com/typelevel/toolkit.git", - "revision":"v0.1.17", - "version":"0.1.17", + "revision":"v0.0.11", + "version":"0.0.11", "targets":"org.typelevel%toolkit org.typelevel%toolkit-test", "config":{ "projects":{ @@ -44222,8 +37546,8 @@ "typelevel/twiddles":{ "project":"typelevel/twiddles", "repoUrl":"https://github.com/typelevel/twiddles.git", - "revision":"v0.7.0", - "version":"0.7.0", + "revision":"v0.6.0", + "version":"0.6.0", "targets":"org.typelevel%twiddles-core", "config":{ "projects":{ @@ -44341,15 +37665,15 @@ "typesafeconfigops/typesafeconfigops":{ "project":"typesafeconfigops/typesafeconfigops", "repoUrl":"https://github.com/typesafeconfigops/typesafeconfigops.git", - "revision":"", - "version":"3.0", + "revision":"d757c4995500d23df42dff241cfbf2ba4d4e56bd", + "version":"1.4.1.1", "targets":"io.github.typesafeconfigops%typesafe-config-ops" }, "ua-parser/uap-scala":{ "project":"ua-parser/uap-scala", "repoUrl":"https://github.com/ua-parser/uap-scala.git", - "revision":"v0.16.0", - "version":"0.16.0", + "revision":"v0.15.0", + "version":"0.15.0", "targets":"org.uaparser%uap-scala", "config":{ "projects":{ @@ -44422,9 +37746,9 @@ "unfiltered/unfiltered":{ "project":"unfiltered/unfiltered", "repoUrl":"https://github.com/unfiltered/unfiltered.git", - "revision":"v0.13.0-M1", - "version":"0.13.0-M1", - "targets":"ws.unfiltered%unfiltered-directives ws.unfiltered%unfiltered-jetty ws.unfiltered%unfiltered-uploads ws.unfiltered%unfiltered-netty ws.unfiltered%unfiltered-all ws.unfiltered%unfiltered ws.unfiltered%unfiltered-filter ws.unfiltered%unfiltered-util ws.unfiltered%unfiltered-scalatest ws.unfiltered%unfiltered-specs2 ws.unfiltered%unfiltered-agents ws.unfiltered%unfiltered-netty-uploads ws.unfiltered%unfiltered-netty-server ws.unfiltered%unfiltered-filter-async ws.unfiltered%unfiltered-json4s ws.unfiltered%unfiltered-netty-websockets ws.unfiltered%unfiltered-filter-uploads", + "revision":"v0.12.0", + "version":"0.12.0", + "targets":"ws.unfiltered%unfiltered-directives ws.unfiltered%unfiltered-jetty ws.unfiltered%unfiltered-uploads ws.unfiltered%unfiltered-netty ws.unfiltered%unfiltered ws.unfiltered%unfiltered-filter ws.unfiltered%unfiltered-util ws.unfiltered%unfiltered-scalatest ws.unfiltered%unfiltered-specs2 ws.unfiltered%unfiltered-agents ws.unfiltered%unfiltered-netty-uploads ws.unfiltered%unfiltered-netty-server ws.unfiltered%unfiltered-filter-async ws.unfiltered%unfiltered-json4s ws.unfiltered%unfiltered-netty-websockets ws.unfiltered%unfiltered-filter-uploads", "config":{ "projects":{ "exclude":[ @@ -44459,8 +37783,8 @@ "unibas-gravis/scalismo":{ "project":"unibas-gravis/scalismo", "repoUrl":"https://github.com/unibas-gravis/scalismo.git", - "revision":"v0.92.0", - "version":"0.92.0", + "revision":"v0.92-RC1", + "version":"0.92-RC1", "targets":"ch.unibas.cs.gravis%scalismo ch.unibas.cs.gravis%scalismo-ui", "config":{ "projects":{ @@ -44616,9 +37940,9 @@ "valdemargr/gql":{ "project":"valdemargr/gql", "repoUrl":"https://github.com/valdemargr/gql.git", - "revision":"v0.3.3", - "version":"0.3.3", - "targets":"io.github.valdemargr%gql-parser io.github.valdemargr%gql-relational-doobie io.github.valdemargr%gql-server io.github.valdemargr%gql-client-codegen io.github.valdemargr%gql-client-http4s io.github.valdemargr%gql io.github.valdemargr%gql-client io.github.valdemargr%gql-graphqlws io.github.valdemargr%gql-core io.github.valdemargr%gql-server-http4s io.github.valdemargr%gql-natchez io.github.valdemargr%gql-server-graphqlws io.github.valdemargr%gql-relational-skunk io.github.valdemargr%gql-client-codegen-cli io.github.valdemargr%gql-server-goi io.github.valdemargr%gql-relational", + "revision":"v0.2.4", + "version":"0.2.4", + "targets":"io.github.valdemargr%gql-parser io.github.valdemargr%gql-server io.github.valdemargr%gql-client-codegen io.github.valdemargr%gql-client-http4s io.github.valdemargr%gql io.github.valdemargr%gql-client io.github.valdemargr%gql-graphqlws io.github.valdemargr%gql-core io.github.valdemargr%gql-server-http4s io.github.valdemargr%gql-server-graphqlws io.github.valdemargr%gql-client-codegen-cli io.github.valdemargr%gql-server-goi", "config":{ "projects":{ "exclude":[ @@ -44629,7 +37953,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -44653,8 +37977,8 @@ "valencik/textmogrify":{ "project":"valencik/textmogrify", "repoUrl":"https://github.com/valencik/textmogrify.git", - "revision":"v0.0.6", - "version":"0.0.6", + "revision":"v0.0.4", + "version":"0.0.4", "targets":"io.pig%textmogrify-docs io.pig%textmogrify-lucene", "config":{ "projects":{ @@ -44731,7 +38055,7 @@ "varwise/prometheus-akka-http":{ "project":"varwise/prometheus-akka-http", "repoUrl":"https://github.com/varwise/prometheus-akka-http.git", - "revision":"", + "revision":"64bc56b7aa9222f959a19edde48ef80db5c9859b", "version":"0.6.0", "targets":"com.varwise%prometheus-akka-http", "config":{ @@ -45089,48 +38413,11 @@ ] } }, - "virtuslab/java-class-name":{ - "project":"virtuslab/java-class-name", - "repoUrl":"https://github.com/virtuslab/java-class-name.git", - "revision":"v0.1.1", - "version":"0.1.1", - "targets":"org.virtuslab.scala-cli.java-class-name%java-class-name", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, "virtuslab/scala-cli":{ "project":"virtuslab/scala-cli", "repoUrl":"https://github.com/virtuslab/scala-cli.git", - "revision":"v1.0.5", - "version":"1.0.5", + "revision":"v1.0.0-RC2", + "version":"1.0.0-RC2", "targets":"org.virtuslab.scala-cli%scala3-graal org.virtuslab.scala-cli%directives org.virtuslab.scala-cli%build-module org.virtuslab.scala-cli%scala3-runtime org.virtuslab.scala-cli%options org.virtuslab.scala-cli%build-macros org.virtuslab.scala-cli%specification-level org.virtuslab.scala-cli%runner org.virtuslab.scala-cli%config org.virtuslab.scala-cli%scala3-graal-processor org.virtuslab.scala-cli%tasty-lib org.virtuslab.scala-cli%cli org.virtuslab.scala-cli%core org.virtuslab.scala-cli%test-runner", "config":{ "projects":{ @@ -45169,7 +38456,7 @@ "sourcePatches":[ { "path":"project/deps.sc", - "pattern":"def scala3 = \"3.3.1\"", + "pattern":"def scala3 = \"3.2.2\"", "replaceWith":"def scala3 = \"\"" } ] @@ -45178,8 +38465,8 @@ "virtuslab/scala-cli-signing":{ "project":"virtuslab/scala-cli-signing", "repoUrl":"https://github.com/virtuslab/scala-cli-signing.git", - "revision":"v0.2.3", - "version":"0.2.3", + "revision":"v0.2.1", + "version":"0.2.1", "targets":"org.virtuslab.scala-cli-signing%cli org.virtuslab.scala-cli-signing%native-cli org.virtuslab.scala-cli-signing%shared", "config":{ "projects":{ @@ -45210,7 +38497,7 @@ "sourcePatches":[ { "path":"build.sc", - "pattern":"def scala3 = \"3.3.1\"", + "pattern":"def scala3 = \"3.2.2\"", "replaceWith":"def scala3 = \"\"" } ] @@ -45219,8 +38506,8 @@ "virtuslab/scala-yaml":{ "project":"virtuslab/scala-yaml", "repoUrl":"https://github.com/virtuslab/scala-yaml.git", - "revision":"v0.0.8", - "version":"0.0.8", + "revision":"v0.0.7", + "version":"0.0.7", "targets":"org.virtuslab%scala-yaml", "config":{ "projects":{ @@ -45251,7 +38538,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"def scala3Version = \"3.3.0\"", + "pattern":"def scala3Version = \"3.2.2\"", "replaceWith":"def scala3Version = \"\"" } ] @@ -45301,8 +38588,8 @@ "vitaliihonta/zio-temporal":{ "project":"vitaliihonta/zio-temporal", "repoUrl":"https://github.com/vitaliihonta/zio-temporal.git", - "revision":"v0.6.0", - "version":"0.6.0", + "revision":"0.2.0-RC3", + "version":"0.2.0-RC3", "targets":"dev.vhonta%zio-temporal-core dev.vhonta%zio-temporal-protobuf dev.vhonta%zio-temporal-testkit", "config":{ "projects":{ @@ -45314,7 +38601,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -45333,7 +38620,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] @@ -45373,190 +38660,31 @@ "tests":"full", "sourcePatches":[ { - "path":"core/src/test/scala/com/vladkopanev/cats/saga/SagaLawsSpec.scala", - "pattern":"implicit val ticker = Ticker()", - "replaceWith":"implicit val ticker: Ticker = Ticker()" - }, - { - "path":"core/src/test/scala/com/vladkopanev/cats/saga/CatsSagaSpec.scala", - "pattern":"bookCar compensateIfFail", - "replaceWith":"bookCar.compensateIfFail" - } - ] - } - }, - "vladkopanev/zio-saga":{ - "project":"vladkopanev/zio-saga", - "repoUrl":"https://github.com/vladkopanev/zio-saga.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"com.vladkopanev%zio-saga-core" - }, - "vlmiroshnikov/aero3":{ - "project":"vlmiroshnikov/aero3", - "repoUrl":"https://github.com/vlmiroshnikov/aero3.git", - "revision":"v0.0.11", - "version":"0.0.11", - "targets":"io.github.vlmiroshnikov%aero-core", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "vlmiroshnikov/authz":{ - "project":"vlmiroshnikov/authz", - "repoUrl":"https://github.com/vlmiroshnikov/authz.git", - "revision":"v0.3.5", - "version":"0.3.5", - "targets":"io.github.vlmiroshnikov%authz-circe io.github.vlmiroshnikov%authz-core", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "vlmiroshnikov/saga":{ - "project":"vlmiroshnikov/saga", - "repoUrl":"https://github.com/vlmiroshnikov/saga.git", - "revision":"v0.0.3", - "version":"0.0.3", - "targets":"io.github.vlmiroshnikov%saga-core", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "vlovgr/ciris":{ - "project":"vlovgr/ciris", - "repoUrl":"https://github.com/vlovgr/ciris.git", - "revision":"v3.4.0", - "version":"3.4.0", - "targets":"is.cir%ciris-squants is.cir%ciris is.cir%ciris-enumeratum is.cir%ciris-circe is.cir%ciris-circe-yaml is.cir%ciris-refined is.cir%ciris-http4s", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.1\"", - "replaceWith":"val scala3 = \"\"" + "path":"core/src/test/scala/com/vladkopanev/cats/saga/SagaLawsSpec.scala", + "pattern":"implicit val ticker = Ticker()", + "replaceWith":"implicit val ticker: Ticker = Ticker()" + }, + { + "path":"core/src/test/scala/com/vladkopanev/cats/saga/CatsSagaSpec.scala", + "pattern":"bookCar compensateIfFail", + "replaceWith":"bookCar.compensateIfFail" } ] } }, - "wangzaixiang/scala-sql":{ - "project":"wangzaixiang/scala-sql", - "repoUrl":"https://github.com/wangzaixiang/scala-sql.git", - "revision":"", - "version":"3.0.0-RC2", - "targets":"com.github.wangzaixiang%wsql" + "vladkopanev/zio-saga":{ + "project":"vladkopanev/zio-saga", + "repoUrl":"https://github.com/vladkopanev/zio-saga.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"com.vladkopanev%zio-saga-core" }, - "webjars/webjars-play":{ - "project":"webjars/webjars-play", - "repoUrl":"https://github.com/webjars/webjars-play.git", - "revision":"3.0.0", - "version":"3.0.0", - "targets":"org.webjars%webjars-play", + "vlmiroshnikov/aero3":{ + "project":"vlmiroshnikov/aero3", + "repoUrl":"https://github.com/vlmiroshnikov/aero3.git", + "revision":"v0.0.11", + "version":"0.0.11", + "targets":"io.github.vlmiroshnikov%aero-core", "config":{ "projects":{ "exclude":[ @@ -45584,20 +38712,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "whisklabs/docker-it-scala":{ - "project":"whisklabs/docker-it-scala", - "repoUrl":"https://github.com/whisklabs/docker-it-scala.git", - "revision":"v0.11.0", - "version":"0.11.0", - "targets":"com.whisk%docker-testkit-core-shaded com.whisk%docker-testkit-samples com.whisk%docker-testkit-core com.whisk%docker-testkit-scalatest", + "vlmiroshnikov/authz":{ + "project":"vlmiroshnikov/authz", + "repoUrl":"https://github.com/vlmiroshnikov/authz.git", + "revision":"v0.3.5", + "version":"0.3.5", + "targets":"io.github.vlmiroshnikov%authz-circe io.github.vlmiroshnikov%authz-core", "config":{ "projects":{ "exclude":[ @@ -45629,40 +38753,12 @@ ] } }, - "windymelt/happy-birthday":{ - "project":"windymelt/happy-birthday", - "repoUrl":"https://github.com/windymelt/happy-birthday.git", + "vlmiroshnikov/saga":{ + "project":"vlmiroshnikov/saga", + "repoUrl":"https://github.com/vlmiroshnikov/saga.git", "revision":"v0.0.1", "version":"0.0.1", - "targets":"io.github.windymelt%happy-birthday" - }, - "windymelt/qw.scala":{ - "project":"windymelt/qw.scala", - "repoUrl":"https://github.com/windymelt/qw.scala.git", - "revision":"v0.1.5", - "version":"0.1.5", - "targets":"io.github.windymelt%qw" - }, - "windymelt/rss2discord":{ - "project":"windymelt/rss2discord", - "repoUrl":"https://github.com/windymelt/rss2discord.git", - "revision":"v0.0.6", - "version":"0.0.6", - "targets":"io.github.windymelt%rss2discord" - }, - "wiringbits/wiringbits-webapp-utils":{ - "project":"wiringbits/wiringbits-webapp-utils", - "repoUrl":"https://github.com/wiringbits/wiringbits-webapp-utils.git", - "revision":"v0.7.2", - "version":"0.7.2", - "targets":"net.wiringbits%webapp-common" - }, - "wolfendale/scalacheck-gen-regexp":{ - "project":"wolfendale/scalacheck-gen-regexp", - "repoUrl":"https://github.com/wolfendale/scalacheck-gen-regexp.git", - "revision":"v1.1.0", - "version":"1.1.0", - "targets":"io.github.wolfendale%scalacheck-gen-regexp", + "targets":"io.github.vlmiroshnikov%saga-core", "config":{ "projects":{ "exclude":[ @@ -45694,31 +38790,23 @@ ] } }, - "wvlet/airframe":{ - "project":"wvlet/airframe", - "repoUrl":"https://github.com/wvlet/airframe.git", - "revision":"v23.11.1", - "version":"23.11.1", - "targets":"org.wvlet.airframe%airframe-http-recorder org.wvlet.airframe%airframe-config org.wvlet.airframe%airframe-jdbc org.wvlet.airframe%airframe-parquet org.wvlet.airframe%airframe-http org.wvlet.airframe%airframe-control org.wvlet.airframe%airframe-ulid org.wvlet.airframe%airframe-canvas org.wvlet.airframe%airframe-http-okhttp org.wvlet.airframe%airframe-http-grpc org.wvlet.airframe%airframe-codec org.wvlet.airframe%airframe-di-macros org.wvlet.airframe%airframe-http-netty org.wvlet.airframe%airframe-metrics org.wvlet.airframe%airframe-http-codegen org.wvlet.airframe%airframe-rx-html org.wvlet.airframe%airframe-jmx org.wvlet.airframe%airframe-log org.wvlet.airframe%airframe-json org.wvlet.airframe%airspec org.wvlet.airframe%airframe-sql org.wvlet.airframe%airframe-launcher org.wvlet.airframe%airframe-msgpack org.wvlet.airframe%airframe org.wvlet.airframe%airframe-rx org.wvlet.airframe%airframe-surface org.wvlet.airframe%airframe-fluentd", + "vlovgr/ciris":{ + "project":"vlovgr/ciris", + "repoUrl":"https://github.com/vlovgr/ciris.git", + "revision":"v3.1.0", + "version":"3.1.0", + "targets":"is.cir%ciris-squants is.cir%ciris is.cir%ciris-enumeratum is.cir%ciris-circe is.cir%ciris-circe-yaml is.cir%ciris-refined is.cir%ciris-http4s", "config":{ "projects":{ "exclude":[ - "org.wvlet.airframe%airspec" + ], "overrides":{ - "airframe-codec":{ - "tests":"compile-only" - }, - "airframe-ulid":{ - "tests":"compile-only" - }, - "airframe":{ - "tests":"compile-only" - } + } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -45735,23 +38823,27 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "wz7982/easysql-scala":{ - "project":"wz7982/easysql-scala", - "repoUrl":"https://github.com/wz7982/easysql-scala.git", - "revision":"", - "version":"2.1.1", - "targets":"io.github.wz7982%core io.github.wz7982%jdbc" + "wangzaixiang/scala-sql":{ + "project":"wangzaixiang/scala-sql", + "repoUrl":"https://github.com/wangzaixiang/scala-sql.git", + "revision":"04648b273375712b01abd44e999f7b66bf08fc5a", + "version":"3.0.0-RC1", + "targets":"com.github.wangzaixiang%wsql" }, - "xebia-functional/fetch":{ - "project":"xebia-functional/fetch", - "repoUrl":"https://github.com/xebia-functional/fetch.git", - "revision":"v3.1.2", - "version":"3.1.2", - "targets":"com.47deg%fetch com.47deg%fetch-debug", + "webjars/webjars-play":{ + "project":"webjars/webjars-play", + "repoUrl":"https://github.com/webjars/webjars-play.git", + "revision":"v2.9.0-M3", + "version":"2.9.0-M3", + "targets":"org.webjars%webjars-play", "config":{ "projects":{ "exclude":[ @@ -45781,18 +38873,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val Scala3 = \"3.3.0-RC3\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "xebia-functional/karat-scalacheck":{ - "project":"xebia-functional/karat-scalacheck", - "repoUrl":"https://github.com/xebia-functional/karat-scalacheck.git", - "revision":"v0.0.6", - "version":"0.0.6", - "targets":"com.xebia%karat-scalacheck com.xebia%karat-scalacheck-effect com.xebia%karat-scalacheck-http4s", + "whisklabs/docker-it-scala":{ + "project":"whisklabs/docker-it-scala", + "repoUrl":"https://github.com/whisklabs/docker-it-scala.git", + "revision":"v0.11.0", + "version":"0.11.0", + "targets":"com.whisk%docker-testkit-core-shaded com.whisk%docker-testkit-samples com.whisk%docker-testkit-core com.whisk%docker-testkit-scalatest", "config":{ "projects":{ "exclude":[ @@ -45820,20 +38912,23 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "xebia-functional/munit-compiler-toolkit":{ - "project":"xebia-functional/munit-compiler-toolkit", - "repoUrl":"https://github.com/xebia-functional/munit-compiler-toolkit.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"com.xebia%munit-compiler-toolkit", + "wiringbits/wiringbits-webapp-utils":{ + "project":"wiringbits/wiringbits-webapp-utils", + "repoUrl":"https://github.com/wiringbits/wiringbits-webapp-utils.git", + "revision":"v0.6.1", + "version":"0.6.1", + "targets":"net.wiringbits%admin-data-explorer-api net.wiringbits%webapp-common" + }, + "wolfendale/scalacheck-gen-regexp":{ + "project":"wolfendale/scalacheck-gen-regexp", + "repoUrl":"https://github.com/wolfendale/scalacheck-gen-regexp.git", + "revision":"v1.1.0", + "version":"1.1.0", + "targets":"io.github.wolfendale%scalacheck-gen-regexp", "config":{ "projects":{ "exclude":[ @@ -45844,7 +38939,7 @@ } }, "java":{ - "version":"21" + "version":"11" }, "sbt":{ "commands":[ @@ -45865,12 +38960,64 @@ ] } }, - "xebia-functional/munit-snap":{ - "project":"xebia-functional/munit-snap", - "repoUrl":"https://github.com/xebia-functional/munit-snap.git", - "revision":"v0.1.6", - "version":"0.1.6", - "targets":"com.xebia%munit-snap com.xebia%munit-snap-root", + "wvlet/airframe":{ + "project":"wvlet/airframe", + "repoUrl":"https://github.com/wvlet/airframe.git", + "revision":"v23.5.4", + "version":"23.5.4", + "targets":"org.wvlet.airframe%airframe-http-recorder org.wvlet.airframe%airframe-config org.wvlet.airframe%airframe-jdbc org.wvlet.airframe%airframe-parquet org.wvlet.airframe%airframe-http org.wvlet.airframe%airframe-control org.wvlet.airframe%airframe-ulid org.wvlet.airframe%airframe-canvas org.wvlet.airframe%airframe-http-okhttp org.wvlet.airframe%airframe-http-grpc org.wvlet.airframe%airframe-codec org.wvlet.airframe%airframe-di-macros org.wvlet.airframe%airframe-http-netty org.wvlet.airframe%airframe-metrics org.wvlet.airframe%airframe-http-codegen org.wvlet.airframe%airframe-rx-html org.wvlet.airframe%airframe-jmx org.wvlet.airframe%airframe-log org.wvlet.airframe%airframe-json org.wvlet.airframe%airspec org.wvlet.airframe%airframe-sql org.wvlet.airframe%airframe-launcher org.wvlet.airframe%airframe-msgpack org.wvlet.airframe%airframe org.wvlet.airframe%airframe-rx org.wvlet.airframe%airframe-surface org.wvlet.airframe%airframe-fluentd", + "config":{ + "projects":{ + "exclude":[ + "org.wvlet.airframe%airspec" + ], + "overrides":{ + "airframe-codec":{ + "tests":"compile-only" + }, + "airframe-ulid":{ + "tests":"compile-only" + }, + "airframe":{ + "tests":"compile-only" + } + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "wz7982/easysql-scala":{ + "project":"wz7982/easysql-scala", + "repoUrl":"https://github.com/wz7982/easysql-scala.git", + "revision":"eeb451568cdfefc9a8478dd3d3f836ca4abd4d83", + "version":"1.4.0", + "targets":"io.github.wz7982%core io.github.wz7982%jdbc" + }, + "xebia-functional/fetch":{ + "project":"xebia-functional/fetch", + "repoUrl":"https://github.com/xebia-functional/fetch.git", + "revision":"v3.1.2", + "version":"3.1.2", + "targets":"com.47deg%fetch com.47deg%fetch-debug", "config":{ "projects":{ "exclude":[ @@ -45898,7 +39045,11 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, @@ -46016,8 +39167,8 @@ "xuwei-k/jwt-scala":{ "project":"xuwei-k/jwt-scala", "repoUrl":"https://github.com/xuwei-k/jwt-scala.git", - "revision":"v2.0.0", - "version":"2.0.0", + "revision":"v1.9.0", + "version":"1.9.0", "targets":"com.github.xuwei-k%jwt-scala", "config":{ "projects":{ @@ -46029,7 +39180,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -46083,57 +39234,16 @@ }, "tests":"full", "sourcePatches":[ - - ] - } - }, - "xuwei-k/optparse-applicative":{ - "project":"xuwei-k/optparse-applicative", - "repoUrl":"https://github.com/xuwei-k/optparse-applicative.git", - "revision":"v0.9.3", - "version":"0.9.3", - "targets":"com.github.xuwei-k%optparse-applicative", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "xuwei-k/play2scalaz":{ - "project":"xuwei-k/play2scalaz", - "repoUrl":"https://github.com/xuwei-k/play2scalaz.git", - "revision":"v0.12.0", - "version":"0.12.0", - "targets":"com.github.xuwei-k%play2scalaz", + "xuwei-k/optparse-applicative":{ + "project":"xuwei-k/optparse-applicative", + "repoUrl":"https://github.com/xuwei-k/optparse-applicative.git", + "revision":"v0.9.3", + "version":"0.9.3", + "targets":"com.github.xuwei-k%optparse-applicative", "config":{ "projects":{ "exclude":[ @@ -46144,7 +39254,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -46161,15 +39271,19 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, "xuwei-k/scala3profile":{ "project":"xuwei-k/scala3profile", "repoUrl":"https://github.com/xuwei-k/scala3profile.git", - "revision":"v0.1.1", - "version":"0.1.1", + "revision":"v0.1.0", + "version":"0.1.0", "targets":"com.github.xuwei-k%scala3profile", "config":{ "projects":{ @@ -46205,8 +39319,8 @@ "xuwei-k/unused-proto":{ "project":"xuwei-k/unused-proto", "repoUrl":"https://github.com/xuwei-k/unused-proto.git", - "revision":"v0.1.5", - "version":"0.1.5", + "revision":"v0.1.3", + "version":"0.1.3", "targets":"com.github.xuwei-k%unused-proto com.github.xuwei-k%unused-proto-common", "config":{ "projects":{ @@ -46237,7 +39351,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"def Scala3 = \"3.3.0\"", + "pattern":"def Scala3 = \"3.2.2\"", "replaceWith":"def Scala3 = \"\"" } ] @@ -46365,7 +39479,7 @@ "yakivy/dupin":{ "project":"yakivy/dupin", "repoUrl":"https://github.com/yakivy/dupin.git", - "revision":"", + "revision":"e5e990be16093ac7755235aa7bc27ebb5a690d1d", "version":"0.6.0", "targets":"com.github.yakivy%dupin-core", "config":{ @@ -46406,8 +39520,8 @@ "yakivy/jam":{ "project":"yakivy/jam", "repoUrl":"https://github.com/yakivy/jam.git", - "revision":"", - "version":"0.4.3", + "revision":"73699c2391d3c18ea642082cee8df76b983c0447", + "version":"0.4.0", "targets":"com.github.yakivy%jam-cats com.github.yakivy%jam-core com.github.yakivy%jam-monad", "config":{ "projects":{ @@ -46447,8 +39561,8 @@ "yakivy/poppet":{ "project":"yakivy/poppet", "repoUrl":"https://github.com/yakivy/poppet.git", - "revision":"", - "version":"0.3.3", + "revision":"fd3e1dca6b01b774558de9e153c72a5f0cd7dcdf", + "version":"0.3.1", "targets":"com.github.yakivy%poppet-circe com.github.yakivy%poppet-core com.github.yakivy%poppet-jackson com.github.yakivy%poppet-upickle", "config":{ "projects":{ @@ -46529,47 +39643,10 @@ "yrichika/scalahtml":{ "project":"yrichika/scalahtml", "repoUrl":"https://github.com/yrichika/scalahtml.git", - "revision":"", + "revision":"731e1571d520bf412bba9902ab9a42d20df0ab9f", "version":"0.1.1", "targets":"io.github.yrichika%scalahtml" }, - "ysthakur/sline":{ - "project":"ysthakur/sline", - "repoUrl":"https://github.com/ysthakur/sline.git", - "revision":"", - "version":"0.0.0-1-7984e6", - "targets":"io.github.ysthakur%sline", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, "yurikpanic/zio-postgres":{ "project":"yurikpanic/zio-postgres", "repoUrl":"https://github.com/yurikpanic/zio-postgres.git", @@ -46648,48 +39725,11 @@ ] } }, - "zaneli/scalikejdbc-athena":{ - "project":"zaneli/scalikejdbc-athena", - "repoUrl":"https://github.com/zaneli/scalikejdbc-athena.git", - "revision":"0.3.0", - "version":"0.3.0", - "targets":"com.zaneli%scalikejdbc-athena", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, "zeal18/zio-mongodb":{ "project":"zeal18/zio-mongodb", "repoUrl":"https://github.com/zeal18/zio-mongodb.git", - "revision":"v0.10.2", - "version":"0.10.2", + "revision":"v0.10.1", + "version":"0.10.1", "targets":"io.github.zeal18%zio-mongodb-bson io.github.zeal18%zio-mongodb-driver io.github.zeal18%zio-mongodb-testkit", "config":{ "projects":{ @@ -46720,7 +39760,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] @@ -46800,13 +39840,6 @@ ] } }, - "zhranklin/scala-tricks":{ - "project":"zhranklin/scala-tricks", - "repoUrl":"https://github.com/zhranklin/scala-tricks.git", - "revision":"", - "version":"0.2.5", - "targets":"com.zhranklin%scala-tricks" - }, "zio/caliban-deriving":{ "project":"zio/caliban-deriving", "repoUrl":"https://github.com/zio/caliban-deriving.git", @@ -46851,9 +39884,9 @@ "zio/interop-cats":{ "project":"zio/interop-cats", "repoUrl":"https://github.com/zio/interop-cats.git", - "revision":"v23.1.0.0", - "version":"23.1.0.0", - "targets":"dev.zio%zio-interop-cats dev.zio%zio-interop-cats-tests dev.zio%zio-interop-tracer", + "revision":"v23.0.0.5", + "version":"23.0.0.5", + "targets":"dev.zio%zio-interop-cats dev.zio%zio-interop-cats-tests", "config":{ "projects":{ "exclude":[ @@ -46883,7 +39916,7 @@ "sourcePatches":[ { "path":"project/BuildHelper.scala", - "pattern":"val Scala3 = \"3.3.0\"", + "pattern":"val Scala3 = \"3.2.1\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -47015,8 +40048,8 @@ "zio/izumi-reflect":{ "project":"zio/izumi-reflect", "repoUrl":"https://github.com/zio/izumi-reflect.git", - "revision":"v2.3.8", - "version":"2.3.8", + "revision":"v2.3.7", + "version":"2.3.7", "targets":"dev.zio%izumi-reflect dev.zio%izumi-reflect-thirdparty-boopickle-shaded", "config":{ "projects":{ @@ -47052,8 +40085,8 @@ "zio/zio":{ "project":"zio/zio", "repoUrl":"https://github.com/zio/zio.git", - "revision":"v2.0.18", - "version":"2.0.18", + "revision":"v2.0.13", + "version":"2.0.13", "targets":"dev.zio%zio-test-junit dev.zio%zio dev.zio%zio-test-magnolia dev.zio%zio-streams dev.zio%zio-managed dev.zio%zio-internal-macros dev.zio%zio-test-sbt dev.zio%zio-stacktracer dev.zio%zio-test-scalacheck dev.zio%zio-test dev.zio%zio-macros dev.zio%zio-concurrent dev.zio%zio-test-refined", "config":{ "projects":{ @@ -47090,12 +40123,12 @@ ] } }, - "zio/zio-aws":{ - "project":"zio/zio-aws", - "repoUrl":"https://github.com/zio/zio-aws.git", - "revision":"v6.20.162.2", - "version":"6.20.162.2", - "targets":"dev.zio%zio-aws-keyspaces dev.zio%zio-aws-networkmanager dev.zio%zio-aws-codegurureviewer dev.zio%zio-aws-dynamodbstreams dev.zio%zio-aws-iam dev.zio%zio-aws-ssmincidents dev.zio%zio-aws-servicecatalogappregistry dev.zio%zio-aws-marketplacecatalog dev.zio%zio-aws-migrationhubconfig dev.zio%zio-aws-snowball dev.zio%zio-aws-worklink dev.zio%zio-aws-dynamodb dev.zio%zio-aws-sso dev.zio%zio-aws-licensemanagerlinuxsubscriptions dev.zio%zio-aws-wafv2 dev.zio%zio-aws-panorama dev.zio%zio-aws-detective dev.zio%zio-aws-mobile dev.zio%zio-aws-codeartifact dev.zio%zio-aws-marketplacemetering dev.zio%zio-aws-migrationhubrefactorspaces dev.zio%zio-aws-proton dev.zio%zio-aws-lakeformation dev.zio%zio-aws-dlm dev.zio%zio-aws-emrcontainers dev.zio%zio-aws-sagemakeredge dev.zio%zio-aws-akka-http dev.zio%zio-aws-databasemigration dev.zio%zio-aws-groundstation dev.zio%zio-aws-cloudtrail dev.zio%zio-aws-backupstorage dev.zio%zio-aws-costexplorer dev.zio%zio-aws-personalize dev.zio%zio-aws-codebuild dev.zio%zio-aws-healthlake dev.zio%zio-aws-lambda dev.zio%zio-aws-securityhub dev.zio%zio-aws-batch dev.zio%zio-aws-redshiftdata dev.zio%zio-aws-macie2 dev.zio%zio-aws-lexmodelsv2 dev.zio%zio-aws-wisdom dev.zio%zio-aws-rbin dev.zio%zio-aws-route53recoveryreadiness dev.zio%zio-aws-iot1clickdevices dev.zio%zio-aws-ecs dev.zio%zio-aws-cloudwatch dev.zio%zio-aws-rum dev.zio%zio-aws-mediatailor dev.zio%zio-aws-docdb dev.zio%zio-aws-iotfleethub dev.zio%zio-aws-elasticloadbalancingv2 dev.zio%zio-aws-cloudwatchlogs dev.zio%zio-aws-pinpoint dev.zio%zio-aws-omics dev.zio%zio-aws-schemas dev.zio%zio-aws-appconfig dev.zio%zio-aws-machinelearning dev.zio%zio-aws-codepipeline dev.zio%zio-aws-auditmanager dev.zio%zio-aws-redshiftserverless dev.zio%zio-aws-opsworks dev.zio%zio-aws-identitystore dev.zio%zio-aws-mwaa dev.zio%zio-aws-m2 dev.zio%zio-aws-xray dev.zio%zio-aws-location dev.zio%zio-aws-securitylake dev.zio%zio-aws-serverlessapplicationrepository dev.zio%zio-aws-ec2instanceconnect dev.zio%zio-aws-datasync dev.zio%zio-aws-route53 dev.zio%zio-aws-licensemanagerusersubscriptions dev.zio%zio-aws-cloudsearch dev.zio%zio-aws-robomaker dev.zio%zio-aws-inspector dev.zio%zio-aws-resourceexplorer2 dev.zio%zio-aws-imagebuilder dev.zio%zio-aws-wafregional dev.zio%zio-aws-connectparticipant dev.zio%zio-aws-workdocs dev.zio%zio-aws-shield dev.zio%zio-aws-rolesanywhere dev.zio%zio-aws-account dev.zio%zio-aws-guardduty dev.zio%zio-aws-fis dev.zio%zio-aws-workspaces dev.zio%zio-aws-pricing dev.zio%zio-aws-secretsmanager dev.zio%zio-aws-kafka dev.zio%zio-aws-kinesis dev.zio%zio-aws-dax dev.zio%zio-aws-kendra dev.zio%zio-aws-mq dev.zio%zio-aws-s3control dev.zio%zio-aws-workmail dev.zio%zio-aws-signer dev.zio%zio-aws-route53recoverycluster dev.zio%zio-aws-s3outposts dev.zio%zio-aws-codestarnotifications dev.zio%zio-aws-frauddetector dev.zio%zio-aws-comprehendmedical dev.zio%zio-aws-route53resolver dev.zio%zio-aws-appsync dev.zio%zio-aws-codeguruprofiler dev.zio%zio-aws-eventbridge dev.zio%zio-aws-supportapp dev.zio%zio-aws-sagemakergeospatial dev.zio%zio-aws-simspaceweaver dev.zio%zio-aws-gamelift dev.zio%zio-aws-transcribestreaming dev.zio%zio-aws-cognitoidentityprovider dev.zio%zio-aws-migrationhub dev.zio%zio-aws-iottwinmaker dev.zio%zio-aws-pinpointsmsvoice dev.zio%zio-aws-sts dev.zio%zio-aws-computeoptimizer dev.zio%zio-aws-kafkaconnect dev.zio%zio-aws-iotsitewise dev.zio%zio-aws-snowdevicemanagement dev.zio%zio-aws-sagemakermetrics dev.zio%zio-aws-ioteventsdata dev.zio%zio-aws-networkfirewall dev.zio%zio-aws-dataexchange dev.zio%zio-aws-sagemakera2iruntime dev.zio%zio-aws-kinesisanalyticsv2 dev.zio%zio-aws-cloudfront dev.zio%zio-aws-http4s dev.zio%zio-aws-evidently dev.zio%zio-aws-migrationhuborchestrator dev.zio%zio-aws-core dev.zio%zio-aws-lookoutequipment dev.zio%zio-aws-mediapackagevod dev.zio%zio-aws-servicequotas dev.zio%zio-aws-mturk dev.zio%zio-aws-nimble dev.zio%zio-aws-cognitoidentity dev.zio%zio-aws-honeycode dev.zio%zio-aws-databrew dev.zio%zio-aws-connect dev.zio%zio-aws-acm dev.zio%zio-aws-ec2 dev.zio%zio-aws-route53domains dev.zio%zio-aws-wellarchitected dev.zio%zio-aws-personalizeevents dev.zio%zio-aws-rds dev.zio%zio-aws-ecr dev.zio%zio-aws-autoscaling dev.zio%zio-aws-customerprofiles dev.zio%zio-aws-ssooidc dev.zio%zio-aws-elastictranscoder dev.zio%zio-aws-amplify dev.zio%zio-aws-greengrass dev.zio%zio-aws-kinesisvideosignaling dev.zio%zio-aws-billingconductor dev.zio%zio-aws-neptune dev.zio%zio-aws-codestarconnections dev.zio%zio-aws-chimesdkvoice dev.zio%zio-aws-pinpointemail dev.zio%zio-aws-resiliencehub dev.zio%zio-aws-resourcegroupstaggingapi dev.zio%zio-aws-kinesisvideomedia dev.zio%zio-aws-outposts dev.zio%zio-aws-polly dev.zio%zio-aws-timestreamwrite dev.zio%zio-aws-opsworkscm dev.zio%zio-aws-rdsdata dev.zio%zio-aws-amplifyuibuilder dev.zio%zio-aws-elasticache dev.zio%zio-aws-accessanalyzer dev.zio%zio-aws-chimesdkmediapipelines dev.zio%zio-aws-ssm dev.zio%zio-aws-qldb dev.zio%zio-aws-qldbsession dev.zio%zio-aws-waf dev.zio%zio-aws-pipes dev.zio%zio-aws-kinesisvideoarchivedmedia dev.zio%zio-aws-ses dev.zio%zio-aws-efs dev.zio%zio-aws-cloudformation dev.zio%zio-aws-ebs dev.zio%zio-aws-opensearchserverless dev.zio%zio-aws-applicationdiscovery dev.zio%zio-aws-personalizeruntime dev.zio%zio-aws-medialive dev.zio%zio-aws-devopsguru dev.zio%zio-aws-fms dev.zio%zio-aws-athena dev.zio%zio-aws-iotanalytics dev.zio%zio-aws-appconfigdata dev.zio%zio-aws-opensearch dev.zio%zio-aws-alexaforbusiness dev.zio%zio-aws-rekognition dev.zio%zio-aws-ecrpublic dev.zio%zio-aws-pinpointsmsvoicev2 dev.zio%zio-aws-firehose dev.zio%zio-aws-organizations dev.zio%zio-aws-grafana dev.zio%zio-aws-transfer dev.zio%zio-aws-controltower dev.zio%zio-aws-clouddirectory dev.zio%zio-aws-iotthingsgraph dev.zio%zio-aws-drs dev.zio%zio-aws-apigateway dev.zio%zio-aws-codestar dev.zio%zio-aws-codecatalyst dev.zio%zio-aws-route53recoverycontrolconfig dev.zio%zio-aws-appmesh dev.zio%zio-aws-oam dev.zio%zio-aws-devicefarm dev.zio%zio-aws-sesv2 dev.zio%zio-aws-iotsecuretunneling dev.zio%zio-aws-ssmsap dev.zio%zio-aws-managedblockchain dev.zio%zio-aws-savingsplans dev.zio%zio-aws-marketplacecommerceanalytics dev.zio%zio-aws-backup dev.zio%zio-aws-amplifybackend dev.zio%zio-aws-cloudhsm dev.zio%zio-aws-memorydb dev.zio%zio-aws-apigatewayv2 dev.zio%zio-aws-forecast dev.zio%zio-aws-servicecatalog dev.zio%zio-aws-emr dev.zio%zio-aws-connectcontactlens dev.zio%zio-aws-applicationinsights dev.zio%zio-aws-mediastoredata dev.zio%zio-aws-connectcampaigns dev.zio%zio-aws-forecastquery dev.zio%zio-aws-iot dev.zio%zio-aws-inspector2 dev.zio%zio-aws-lightsail dev.zio%zio-aws-kms dev.zio%zio-aws-sns dev.zio%zio-aws-pi dev.zio%zio-aws-cloudwatchevents dev.zio%zio-aws-resourcegroups dev.zio%zio-aws-quicksight dev.zio%zio-aws-codecommit dev.zio%zio-aws-chimesdkidentity dev.zio%zio-aws-iotdataplane dev.zio%zio-aws-costandusagereport dev.zio%zio-aws-cognitosync dev.zio%zio-aws-redshift dev.zio%zio-aws-applicationcostprofiler dev.zio%zio-aws-workspacesweb dev.zio%zio-aws-iotjobsdataplane dev.zio%zio-aws-mediastore dev.zio%zio-aws-finspacedata dev.zio%zio-aws-mgn dev.zio%zio-aws-elasticbeanstalk dev.zio%zio-aws-ivschat dev.zio%zio-aws-comprehend dev.zio%zio-aws-textract dev.zio%zio-aws-applicationautoscaling dev.zio%zio-aws-synthetics dev.zio%zio-aws-emrserverless dev.zio%zio-aws-iotevents dev.zio%zio-aws-elasticsearch dev.zio%zio-aws-docdbelastic dev.zio%zio-aws-ssmcontacts dev.zio%zio-aws-greengrassv2 dev.zio%zio-aws-netty dev.zio%zio-aws-support dev.zio%zio-aws-iot1clickprojects dev.zio%zio-aws-sqs dev.zio%zio-aws-lookoutmetrics dev.zio%zio-aws-voiceid dev.zio%zio-aws-timestreamquery dev.zio%zio-aws-migrationhubstrategy dev.zio%zio-aws-chimesdkmeetings dev.zio%zio-aws-iotdeviceadvisor dev.zio%zio-aws-translate dev.zio%zio-aws-glacier dev.zio%zio-aws-budgets dev.zio%zio-aws-storagegateway dev.zio%zio-aws-ram dev.zio%zio-aws-apigatewaymanagementapi dev.zio%zio-aws-acmpca dev.zio%zio-aws-connectcases dev.zio%zio-aws-elasticinference dev.zio%zio-aws-elasticloadbalancing dev.zio%zio-aws-macie dev.zio%zio-aws-glue dev.zio%zio-aws-iotroborunner dev.zio%zio-aws-lexruntimev2 dev.zio%zio-aws-mediaconnect dev.zio%zio-aws-cloudsearchdomain dev.zio%zio-aws-kinesisvideowebrtcstorage dev.zio%zio-aws-appintegrations dev.zio%zio-aws-workmailmessageflow dev.zio%zio-aws-apprunner dev.zio%zio-aws-sagemakerruntime dev.zio%zio-aws-sagemaker dev.zio%zio-aws-health dev.zio%zio-aws-backupgateway dev.zio%zio-aws-chime dev.zio%zio-aws-mediaconvert dev.zio%zio-aws-directory dev.zio%zio-aws-cloudhsmv2 dev.zio%zio-aws-arczonalshift dev.zio%zio-aws-sagemakerfeaturestoreruntime dev.zio%zio-aws-marketplaceentitlement dev.zio%zio-aws-servicediscovery dev.zio%zio-aws-autoscalingplans dev.zio%zio-aws-kinesisvideo dev.zio%zio-aws-codedeploy dev.zio%zio-aws-config dev.zio%zio-aws-datapipeline dev.zio%zio-aws-directconnect dev.zio%zio-aws-privatenetworks dev.zio%zio-aws-appflow dev.zio%zio-aws-sms dev.zio%zio-aws-ssoadmin dev.zio%zio-aws-mediapackage dev.zio%zio-aws-gamesparks dev.zio%zio-aws-s3 dev.zio%zio-aws-eks dev.zio%zio-aws-swf dev.zio%zio-aws-lookoutvision dev.zio%zio-aws-amp dev.zio%zio-aws-iotwireless dev.zio%zio-aws-finspace dev.zio%zio-aws-iotfleetwise dev.zio%zio-aws-lexmodelbuilding dev.zio%zio-aws-ivs dev.zio%zio-aws-appstream dev.zio%zio-aws-lexruntime dev.zio%zio-aws-globalaccelerator dev.zio%zio-aws-chimesdkmessaging dev.zio%zio-aws-licensemanager dev.zio%zio-aws-transcribe dev.zio%zio-aws-braket dev.zio%zio-aws-sfn dev.zio%zio-aws-cloud9 dev.zio%zio-aws-cloudcontrol dev.zio%zio-aws-scheduler dev.zio%zio-aws-fsx dev.zio%zio-aws-kinesisanalytics", + "zio/zio-amqp":{ + "project":"zio/zio-amqp", + "repoUrl":"https://github.com/zio/zio-amqp.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"nl.vroste%zio-amqp", "config":{ "projects":{ "exclude":[ @@ -47106,7 +40139,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -47121,12 +40154,12 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ { - "path":"project/Common.scala", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.3\"", + "replaceWith":"val scala3 = \"\"" } ] } @@ -47134,8 +40167,8 @@ "zio/zio-bson":{ "project":"zio/zio-bson", "repoUrl":"https://github.com/zio/zio-bson.git", - "revision":"v1.0.5", - "version":"1.0.5", + "revision":"v1.0.2", + "version":"1.0.2", "targets":"dev.zio%zio-bson", "config":{ "projects":{ @@ -47147,7 +40180,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -47164,7 +40197,11 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/BuildHelper.scala", + "pattern":"val Scala3: String = versions(\"3.2\")", + "replaceWith":"val Scala3: String = \"\"" + } ] } }, @@ -47415,8 +40452,8 @@ "zio/zio-dynamodb":{ "project":"zio/zio-dynamodb", "repoUrl":"https://github.com/zio/zio-dynamodb.git", - "revision":"v0.2.12", - "version":"0.2.12", + "revision":"v0.2.9", + "version":"0.2.9", "targets":"dev.zio%zio-dynamodb", "config":{ "projects":{ @@ -47497,8 +40534,8 @@ "zio/zio-http":{ "project":"zio/zio-http", "repoUrl":"https://github.com/zio/zio-http.git", - "revision":"v3.0.0-RC3", - "version":"3.0.0-RC3", + "revision":"v3.0.0-RC1", + "version":"3.0.0-RC1", "targets":"dev.zio%zio-http-docs dev.zio%zio-http-cli dev.zio%zio-http dev.zio%zio-http-testkit", "config":{ "projects":{ @@ -47529,7 +40566,7 @@ "sourcePatches":[ { "path":"project/BuildHelper.scala", - "pattern":"val Scala3 = \"3.3.0\"", + "pattern":"val Scala3 = \"3.2.2\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -47538,8 +40575,8 @@ "zio/zio-jdbc":{ "project":"zio/zio-jdbc", "repoUrl":"https://github.com/zio/zio-jdbc.git", - "revision":"v0.1.0", - "version":"0.1.0", + "revision":"v0.0.2", + "version":"0.0.2", "targets":"dev.zio%zio-jdbc", "config":{ "projects":{ @@ -47579,8 +40616,8 @@ "zio/zio-json":{ "project":"zio/zio-json", "repoUrl":"https://github.com/zio/zio-json.git", - "revision":"v0.6.2", - "version":"0.6.2", + "revision":"v0.5.0", + "version":"0.5.0", "targets":"dev.zio%zio-json dev.zio%zio-json-golden dev.zio%zio-json-interop-refined dev.zio%zio-json-yaml", "config":{ "projects":{ @@ -47619,7 +40656,7 @@ "sourcePatches":[ { "path":"project/BuildHelper.scala", - "pattern":"val ScalaDotty: String = \"3.3.0\"", + "pattern":"val ScalaDotty: String = \"3.2.2\"", "replaceWith":"val ScalaDotty: String = \"\"" } ] @@ -47628,8 +40665,8 @@ "zio/zio-kafka":{ "project":"zio/zio-kafka", "repoUrl":"https://github.com/zio/zio-kafka.git", - "revision":"v2.6.0", - "version":"2.6.0", + "revision":"v2.3.1", + "version":"2.3.1", "targets":"dev.zio%zio-kafka dev.zio%zio-kafka-docs dev.zio%zio-kafka-testkit", "config":{ "projects":{ @@ -47665,8 +40702,8 @@ "zio/zio-lambda":{ "project":"zio/zio-lambda", "repoUrl":"https://github.com/zio/zio-lambda.git", - "revision":"v1.0.4", - "version":"1.0.4", + "revision":"v1.0.3", + "version":"1.0.3", "targets":"dev.zio%zio-lambda dev.zio%zio-lambda-event dev.zio%zio-lambda-response", "config":{ "projects":{ @@ -47706,8 +40743,8 @@ "zio/zio-logging":{ "project":"zio/zio-logging", "repoUrl":"https://github.com/zio/zio-logging.git", - "revision":"v2.1.14", - "version":"2.1.14", + "revision":"v2.1.13", + "version":"2.1.13", "targets":"dev.zio%zio-logging-slf4j2 dev.zio%zio-logging-slf4j2-bridge dev.zio%zio-logging-jpl dev.zio%zio-logging-slf4j-bridge dev.zio%zio-logging dev.zio%zio-logging-slf4j", "config":{ "projects":{ @@ -47743,9 +40780,9 @@ "zio/zio-metrics-connectors":{ "project":"zio/zio-metrics-connectors", "repoUrl":"https://github.com/zio/zio-metrics-connectors.git", - "revision":"v2.2.1", - "version":"2.2.1", - "targets":"dev.zio%zio-metrics-connectors-prometheus dev.zio%zio-metrics-connectors-statsd dev.zio%zio-metrics-connectors-newrelic dev.zio%zio-metrics-connectors-micrometer dev.zio%zio-metrics-connectors-datadog dev.zio%zio-metrics-connectors", + "revision":"v2.0.8", + "version":"2.0.8", + "targets":"dev.zio%zio-metrics-connectors", "config":{ "projects":{ "exclude":[ @@ -47775,8 +40812,8 @@ "sourcePatches":[ { "path":"project/Version.scala", - "pattern":"val Scala3 = \"3.3.0\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val ScalaDotty = \"3.2.1\"", + "replaceWith":"val ScalaDotty = \"\"" } ] } @@ -47866,7 +40903,7 @@ "zio/zio-morphir":{ "project":"zio/zio-morphir", "repoUrl":"https://github.com/zio/zio-morphir.git", - "revision":"", + "revision":"6a3734aa49b9d7e028b7adcdea714c3352e67441", "version":"0.1.0-M1", "targets":"", "config":{ @@ -47907,8 +40944,8 @@ "zio/zio-nio":{ "project":"zio/zio-nio", "repoUrl":"https://github.com/zio/zio-nio.git", - "revision":"v2.0.2", - "version":"2.0.2", + "revision":"v2.0.1", + "version":"2.0.1", "targets":"dev.zio%zio-nio", "config":{ "projects":{ @@ -47948,8 +40985,8 @@ "zio/zio-openai":{ "project":"zio/zio-openai", "repoUrl":"https://github.com/zio/zio-openai.git", - "revision":"v0.3.0", - "version":"0.3.0", + "revision":"v0.2.1", + "version":"0.2.1", "targets":"dev.zio%zio-openai", "config":{ "projects":{ @@ -47980,7 +41017,7 @@ "sourcePatches":[ { "path":"project/BuildHelper.scala", - "pattern":"val ScalaDotty: String = versions(\"3.3\")", + "pattern":"val ScalaDotty: String = versions(\"3.2\")", "replaceWith":"val ScalaDotty: String = \"\"" } ] @@ -48067,8 +41104,8 @@ "zio/zio-prelude":{ "project":"zio/zio-prelude", "repoUrl":"https://github.com/zio/zio-prelude.git", - "revision":"v1.0.0-RC21", - "version":"1.0.0-RC21", + "revision":"v1.0.0-RC19", + "version":"1.0.0-RC19", "targets":"dev.zio%zio-prelude-docs dev.zio%zio-prelude-experimental-laws dev.zio%zio-laws-laws dev.zio%zio-prelude dev.zio%zio-prelude-experimental-tests dev.zio%zio-prelude-macros dev.zio%zio-prelude-experimental dev.zio%zio-prelude-scala-parallel-collections", "config":{ "projects":{ @@ -48099,7 +41136,7 @@ "sourcePatches":[ { "path":"project/BuildHelper.scala", - "pattern":"val Scala3: String = \"3.3.0\"", + "pattern":"val Scala3: String = \"3.2.2\"", "replaceWith":"val Scala3: String = \"\"" } ] @@ -48149,8 +41186,8 @@ "zio/zio-profiling":{ "project":"zio/zio-profiling", "repoUrl":"https://github.com/zio/zio-profiling.git", - "revision":"v0.2.1", - "version":"0.2.1", + "revision":"v0.2.0", + "version":"0.2.0", "targets":"dev.zio%zio-profiling dev.zio%zio-profiling-jmh dev.zio%zio-profiling-tagging-plugin", "config":{ "projects":{ @@ -48190,8 +41227,8 @@ "zio/zio-protoquill":{ "project":"zio/zio-protoquill", "repoUrl":"https://github.com/zio/zio-protoquill.git", - "revision":"v4.8.0", - "version":"4.8.0", + "revision":"v4.6.0.1", + "version":"4.6.0.1", "targets":"io.getquill%quill-jasync io.getquill%quill-zio io.getquill%quill-jasync-postgres io.getquill%quill-doobie io.getquill%quill-sql io.getquill%quill-jdbc io.getquill%quill-cassandra-zio io.getquill%quill-caliban io.getquill%quill-cassandra io.getquill%quill-jdbc-zio", "config":{ "projects":{ @@ -48203,7 +41240,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -48227,9 +41264,9 @@ "zio/zio-query":{ "project":"zio/zio-query", "repoUrl":"https://github.com/zio/zio-query.git", - "revision":"v0.5.1", - "version":"0.5.1", - "targets":"dev.zio%zio-query", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"dev.zio%zio-query dev.zio%zio-query-docs", "config":{ "projects":{ "exclude":[ @@ -48257,15 +41294,19 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/BuildHelper.scala", + "pattern":"val ScalaDotty: String = versions(\"3.2\")", + "replaceWith":"val ScalaDotty: String = \"\"" + } ] } }, "zio/zio-quill":{ "project":"zio/zio-quill", "repoUrl":"https://github.com/zio/zio-quill.git", - "revision":"v4.8.0", - "version":"4.8.0", + "revision":"v4.6.0", + "version":"4.6.0", "targets":"io.getquill%quill-engine io.getquill%quill-util", "config":{ "projects":{ @@ -48277,7 +41318,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -48342,8 +41383,8 @@ "zio/zio-rocksdb":{ "project":"zio/zio-rocksdb", "repoUrl":"https://github.com/zio/zio-rocksdb.git", - "revision":"v0.4.3", - "version":"0.4.3", + "revision":"v0.4.2", + "version":"0.4.2", "targets":"dev.zio%zio-rocksdb", "config":{ "projects":{ @@ -48420,9 +41461,9 @@ "zio/zio-schema":{ "project":"zio/zio-schema", "repoUrl":"https://github.com/zio/zio-schema.git", - "revision":"v0.4.15", - "version":"0.4.15", - "targets":"dev.zio%zio-schema-bson dev.zio%zio-schema-derivation dev.zio%zio-schema-docs dev.zio%zio-schema-zio-test dev.zio%zio-schema-macros dev.zio%zio-schema-msg-pack dev.zio%zio-schema-protobuf dev.zio%zio-schema-thrift dev.zio%zio-schema-json dev.zio%zio-schema-avro dev.zio%zio-schema dev.zio%zio-schema-optics", + "revision":"v0.4.11", + "version":"0.4.11", + "targets":"dev.zio%zio-schema-derivation dev.zio%zio-schema-docs dev.zio%zio-schema-zio-test dev.zio%zio-schema-macros dev.zio%zio-schema-msg-pack dev.zio%zio-schema-protobuf dev.zio%zio-schema-thrift dev.zio%zio-schema-json dev.zio%zio-schema-avro dev.zio%zio-schema dev.zio%zio-schema-optics", "config":{ "projects":{ "exclude":[ @@ -48499,49 +41540,12 @@ ] } }, - "zio/zio-sqs":{ - "project":"zio/zio-sqs", - "repoUrl":"https://github.com/zio/zio-sqs.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"dev.zio%zio-sqs dev.zio%zio-sqs-docs", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, "zio/zio-telemetry":{ "project":"zio/zio-telemetry", "repoUrl":"https://github.com/zio/zio-telemetry.git", - "revision":"v3.0.0-RC17", - "version":"3.0.0-RC17", - "targets":"dev.zio%zio-opencensus dev.zio%zio-opentelemetry dev.zio%zio-opentracing dev.zio%zio-telemetry-docs", + "revision":"v3.0.0-RC10", + "version":"3.0.0-RC10", + "targets":"dev.zio%zio-opencensus dev.zio%zio-opentelemetry dev.zio%zio-opentracing", "config":{ "projects":{ "exclude":[ @@ -48552,7 +41556,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -48569,7 +41573,11 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/BuildHelper.scala", + "pattern":"val Scala3: String = versions(\"3\")", + "replaceWith":"val Scala3: String = \"\"" + } ] } }, @@ -48614,47 +41622,6 @@ ] } }, - "zio/zio-wasm":{ - "project":"zio/zio-wasm", - "repoUrl":"https://github.com/zio/zio-wasm.git", - "revision":"v0.1.4", - "version":"0.1.4", - "targets":"dev.zio%zio-wasm", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"project/BuildHelper.scala", - "pattern":"val Scala3: String = versions(\"3.3\")", - "replaceWith":"val Scala3: String = \"\"" - } - ] - } - }, "zygfryd/scala-zygf-jackshaft":{ "project":"zygfryd/scala-zygf-jackshaft", "repoUrl":"https://github.com/zygfryd/scala-zygf-jackshaft.git", diff --git a/.github/workflows/buildPlan-A.yaml b/.github/workflows/buildPlan-A.yaml index 333e1225..27f196a1 100644 --- a/.github/workflows/buildPlan-A.yaml +++ b/.github/workflows/buildPlan-A.yaml @@ -65,18 +65,12 @@ jobs: - name: "akka/akka" - name: "akka/akka-http" - name: "akka/akka-persistence-cassandra" - - name: "apache/incubator-pekko" - - name: "apache/incubator-pekko-connectors-kafka" - - name: "apache/incubator-pekko-http" - - name: "automorph-org/automorph" - name: "babylonhealth/lit-fhir" - - name: "haifengl/smile" - name: "hnaderi/scala-k8s" - name: "lichess-org/lila" - name: "softwaremill/sttp" - name: "softwaremill/tapir" - name: "thoughtworksinc/dsl.scala" - - name: "zio/zio-aws" steps: - name: "Git Checkout" uses: actions/checkout@v3 @@ -101,20 +95,19 @@ jobs: include: - name: "afsalthaj/constraintless" - name: "akka/alpakka" + - name: "almond-sh/almond" - name: "apache/incubator-pekko-persistence-dynamodb" - - name: "bishabosha/enum-extensions" + - name: "cequence-io/openai-scala-client" - name: "cequence-io/pinecone-scala" - name: "com-lihaoyi/geny" - name: "com-lihaoyi/sourcecode" - name: "com-lihaoyi/utest" - name: "cquiroz/scala-java-time" - - name: "davenverse/googleapis-http4s" - name: "devlaam/leucine" - name: "dieproht/matr" - - name: "dragonfly-ai/cliviz" - name: "dragonfly-ai/narr" - - name: "eed3si9n/ifdef" - name: "eed3si9n/verify" + - name: "eltherion/http4s-timer" - name: "epfl-lara/lisa" - name: "fdietze/formidable" - name: "fommil/jzon" @@ -122,12 +115,13 @@ jobs: - name: "getshaka-org/native-converter" - name: "gvolpe/trading" - name: "hamnis/dataclass-scalafix" + - name: "http4s/hpack" - name: "iheartradio/ficus" - name: "indoorvivants/sn-bindgen" - name: "j5ik2o/akka-persistence-s3" - name: "jcouyang/jujiu" - name: "jodersky/simplesql" - - name: "jvican/dijon" + - name: "jphmrst/scala-latex" - name: "kubukoz/debug-utils" - name: "kuceramartin/tyqu" - name: "lichess-org/lila-ws" @@ -137,6 +131,7 @@ jobs: - name: "lolgab/snunit" - name: "lunduniversity/introprog-scalalib" - name: "max-leuthaeuser/scroll" + - name: "mimoguz/layeredfonticon" - name: "nafg/scala-phonenumber" - name: "nscala-time/nscala-time" - name: "nthportal/spaghetti" @@ -144,8 +139,12 @@ jobs: - name: "openmole/scaladget" - name: "otavia-projects/mill-rust-jni" - name: "outr/perfolation" - - name: "playframework/omnidoc" + - name: "pjfanning/akka-rabbitmq" + - name: "raistlintao/scalalogger" + - name: "reactivemongo/reactivemongo-bson" - name: "rssh/dotty-cps-async" + - name: "sake92/squery" + - name: "sangria-graphql/sangria-streaming-api" - name: "sbt/sbt-jni" - name: "scala-cli/libdaemon-jvm" - name: "scala-interop/slinc" @@ -160,7 +159,9 @@ jobs: - name: "scalameta/metals" - name: "scalqa/scalqa" - name: "sciss/fileutil" + - name: "sciss/linkernighantsp" - name: "sciss/raphaelicons" + - name: "sciss/transform4s" - name: "sciss/treetable" - name: "sirthias/macrolizer" - name: "softwaremill/magnolia" @@ -173,6 +174,7 @@ jobs: - name: "typelevel/literally" - name: "typelevel/scalacheck" - name: "typelevel/simulacrum-scalafix" + - name: "webjars/webjars-play" - name: "xuwei-k/nobox" - name: "zio/zio-morphir" steps: @@ -205,14 +207,18 @@ jobs: - name: "com-lihaoyi/os-lib" - name: "com-lihaoyi/requests-scala" - name: "com-lihaoyi/scalatags" - - name: "dragonfly-ai/matrix" + - name: "dragonfly-ai/slash" - name: "eed3si9n/expecty" - name: "ekrich/sconfig" - - name: "etorreborre/specs2" - name: "fomkin/levsha" - name: "ichoran/kse3" + - name: "indoorvivants/sn-demangler" - name: "jd557/minart" + - name: "martinhh/scalacheck-derived" - name: "monix/minitest" + - name: "reactivemongo/reactivemongo" + - name: "reactivemongo/reactivemongo-play-json" + - name: "rssh/shim--scala-async--dotty-cps-async" - name: "sbt-jib/sbt-jib" - name: "sbt/sbinary" - name: "sbt/sbt-dynver" @@ -225,10 +231,10 @@ jobs: - name: "scopt/scopt" - name: "simy4/coregex" - name: "sirthias/parboiled2" - - name: "slick/slick" - name: "suzaku-io/boopickle" - name: "typelevel/discipline" - name: "typelevel/jawn" + - name: "typelevel/scalacheck-xml" - name: "wz7982/easysql-scala" steps: - name: "Git Checkout" @@ -252,6 +258,7 @@ jobs: strategy: matrix: include: + - name: "2m/yabai-scala" - name: "47degrees/munit-akka" - name: "aaronp/args4c" - name: "aaronp/eie" @@ -259,7 +266,6 @@ jobs: - name: "akka/akka-persistence-r2dbc" - name: "akka/alpakka-kafka" - name: "altoo-ag/akka-kryo-serialization" - - name: "altoo-ag/scala-kryo-serialization" - name: "andyglow/scala-range" - name: "andyglow/scala-xml-diff" - name: "andyglow/typesafe-config-scala" @@ -268,11 +274,11 @@ jobs: - name: "arturopala/buffer-and-slice" - name: "arturopala/gitignore" - name: "arturopala/validator" - - name: "asflierl/sglicko2" - name: "ashwinbhaskar/sight-scala" - name: "atry/html.scala" - name: "autodeployai/pmml4s" - - name: "bahmanm/persianutils" + - name: "bilal-fazlani/swiftbar4s" + - name: "bitmarck-service/base32check-scala" - name: "blemale/scaffeine" - name: "bpholt/java-time-literals" - name: "carlosedp/riscvassembler" @@ -281,49 +287,48 @@ jobs: - name: "chrisokasaki/hwtest" - name: "chronoscala/chronoscala" - name: "ciaraobrien/dottytags" - - name: "cjmx/cjmx" + - name: "codacy/codacy-plugins-api" - name: "codingwell/scala-guice" - name: "com-lihaoyi/pprint" - name: "cornerman/scala-cuid" - name: "cquiroz/sbt-locales" + - name: "dacr/drools-scripting" - name: "dacr/jassh" + - name: "dacr/naturalsort" - name: "dacr/primes" - name: "davegurnell/unindent" - - name: "donderom/llm4s" - - name: "dvgica/healthful" + - name: "davidledwards/scalop" + - name: "dragonfly-ai/cliviz" - name: "dvreeze/yaidom" - name: "eed3si9n/gigahorse" - name: "eed3si9n/sjson-new" - name: "embeddedkafka/embedded-kafka" - - name: "enragedginger/akka-quartz-scheduler" - name: "enriquerodbe/borsh4s" - name: "erikvanoosten/metrics-scala" - name: "failurewall/failurewall" - name: "fasterxml/jackson-module-scala" - - name: "fmonniot/scala3mock" - - name: "folone/poi.scala" - name: "foundweekends/knockoff" - - name: "frugalmechanic/fm-common" - name: "frugalmechanic/scala-optparse" - name: "gekomad/scala-compress" - name: "ghik/anodi" - name: "giabao/paho-akka" - name: "giiita/refuel" - - name: "greenfossil/thorium" + - name: "greenfossil/commons-i18n" + - name: "greenfossil/commons-json" - name: "greenleafoss/green-leaf-mongo" - name: "guardian/fastly-api-client" - name: "guardian/pa-football-client" - - name: "guardian/play-brotli-filter" - - name: "guntiso/mojoz" - name: "gzoller/scalajack" - - name: "hagay3/skuber" + - name: "h8io/borscht" - name: "hedgehogqa/scala-hedgehog" + - name: "herminiogg/shexml" - name: "hseeberger/slf4s" - name: "http4s/http4s-finagle" - name: "i10416/cssminifier" - name: "i10416/munkres" - name: "ij-plugins/ijp-javacv" - name: "ij-plugins/ijp-toolkit" + - name: "indoorvivants/rendition" - name: "irevive/union-derivation" - name: "j5ik2o/base64scala" - name: "j5ik2o/docker-controller-scala" @@ -331,25 +336,29 @@ jobs: - name: "jandom-devel/scalafix" - name: "jcouyang/dhall-generic" - name: "jcouyang/meow" - - name: "jd557/interim" - - name: "jozic/scalaj" + - name: "jkugiya/aws-v4-signer-scala" + - name: "jkugiya/ulid-scala" - name: "jozic/scalax-collection" - name: "jphmrst/bps" - - name: "julianpeeters/avrohugger" - name: "kcrypt/scala-biginteger" - name: "kcrypt/scala-blake3" - name: "kcrypt/scala-sha" - - name: "kolotaev/ride" + - name: "kzmake/uuid7s" + - name: "lambdaworks/scountries" + - name: "lhns/scala-edifact" - name: "lightbend-labs/lightbend-emoji" - name: "lightbend-labs/scala-logging" - name: "lightbend/mima" - name: "lloydmeta/ltsv-logger" - name: "log4s/log4s" - name: "lomigmegard/akka-http-cors" + - name: "lorandszakacs/enclosure" - name: "losizm/grapple" + - name: "losizm/little-config" + - name: "losizm/little-json" + - name: "losizm/little-time" - name: "losizm/scamper" - name: "makiftutuncu/effect" - - name: "makingthematrix/inject" - name: "makingthematrix/signals3" - name: "malliina/mobile-push" - name: "marchliu/jaskell-dotty" @@ -357,43 +366,42 @@ jobs: - name: "metarank/cfor" - name: "mixql/mixql-core" - name: "monix/implicitbox" + - name: "mrdimosthenis/glicko2" - name: "nafg/css-dsl" + - name: "nicolasfara/ecscala" - name: "note/mini-refined" - name: "nremond/pbkdf2-scala" - - name: "nulab/scala-oauth2-provider" + - name: "nthportal/scala-platform" - name: "ohze/akka-guice" - - name: "ohze/couchbase-scala" - name: "ohze/php-utils" + - name: "opaliasystems/opalia-commons-core" - name: "outr/lucene4s" - name: "outr/reactify" - name: "paoloboni/spray-json-derived-codecs" - name: "pathikrit/better-files" - name: "petitviolet/scala-operator" - name: "phenoscape/scowl" + - name: "pityka/pairwisealignment" - name: "pjfanning/micrometer-akka" - - name: "pjfanning/micrometer-pekko" - name: "pjfanning/scala-faker" - - name: "playframework/cachecontrol" - - name: "playframework/play-json" - - name: "playframework/twirl" + - name: "playframework/scalatestplus-play" - name: "plokhotnyuk/fast-string-interpolator" - name: "plokhotnyuk/rtree2d" - name: "polyvariant/colorize-scala" - name: "postgresql-async/postgresql-async" - name: "purplekingdomgames/ultraviolet" - - name: "ranyitz/brush" - - name: "ranyitz/casing" - name: "raquo/scala-dom-types" + - name: "reactivemongo/reactivemongo-streaming" - name: "rescala-lang/rescala" - name: "rssh/trackedfuture" + - name: "rtyley/line-break-preserving-line-splitting" - name: "rtyley/scala-textmatching" - - name: "ruippeixotog/akka-testkit-specs2" - - name: "ruippeixotog/scala-scraper" - - name: "sake92/hepek" - - name: "samueleresca/pekko-quartz-scheduler" + - name: "sake92/tupson" + - name: "sangria-graphql/macro-visit" - name: "sangria-graphql/sangria-marshalling-api" - name: "sbt/io" - name: "scala-native/scala-native" + - name: "scala-tessella/ring-seq" - name: "scala-tsi/scala-tsi" - name: "scala-workers/commons-lang3-bridge" - name: "scala/scala-swing" @@ -403,20 +411,24 @@ jobs: - name: "scalaprops/scalaprops" - name: "scalapy/python-native-libs" - name: "scalapy/scalapy" + - name: "scalatest/scalatestplus-easymock" + - name: "scalatest/scalatestplus-jmock" - name: "scalatest/scalatestplus-junit" - - name: "scalatest/scalatestplus-junit5" - name: "scalatest/scalatestplus-mockito" - name: "scalatest/scalatestplus-scalacheck" - name: "scalatest/scalatestplus-selenium" + - name: "scalikejdbc/scalikejdbc" - name: "scallop/scallop" - name: "scf37/config3" - name: "scf37/hottie" - name: "sciss/audiofile" + - name: "sciss/equal" - name: "sciss/fingertree" - name: "sciss/kollflitz" - name: "sciss/numbers" - name: "sciss/scalaosc" - name: "sciss/topology" + - name: "scodec/scodec-bits" - name: "scoverage/scalac-scoverage-plugin" - name: "sellmerfud/optparse" - name: "sfxcode/pebble-scala" @@ -426,14 +438,17 @@ jobs: - name: "sirthias/spliff" - name: "smootoo/tablediff" - name: "softwaremill/macwire" + - name: "softwaremill/ox" - name: "softwaremill/quicklens" - name: "softwaremill/retry" - name: "softwaremill/sttp-model" + - name: "softwaremill/tapir-loom" - name: "spotify/featran" - - name: "sqids/sqids-scala" - name: "squeryl/squeryl" + - name: "ssanj/delight" - name: "staeff777/scalaveusz" - name: "sullis/jms-testkit" + - name: "sweet-delights/delightful-cron" - name: "tabdulradi/nullable" - name: "takezoe/scala-jdbc" - name: "takezoe/solr-scala-client" @@ -447,10 +462,10 @@ jobs: - name: "tpolecat/typename" - name: "typelevel/discipline-munit" - name: "typelevel/discipline-scalatest" - - name: "typelevel/discipline-specs2" + - name: "typelevel/fabric" - name: "typelevel/scalac-compat" + - name: "typelevel/scalac-options" - name: "typelevel/squants" - - name: "ua-parser/uap-scala" - name: "vincenzobaz/spark-scala3" - name: "wangzaixiang/scala-sql" - name: "whisklabs/docker-it-scala" @@ -459,9 +474,7 @@ jobs: - name: "xuwei-k/applybuilder" - name: "xuwei-k/iarray" - name: "xuwei-k/jwt-scala" - - name: "xuwei-k/play2scalaz" - name: "xuwei-k/zeroapply" - - name: "zengularity/benji" - name: "zero-deps/proto" - name: "zio/izumi-reflect" steps: @@ -486,50 +499,36 @@ jobs: strategy: matrix: include: - - name: "ajozwik/pekko-smtp-server" - name: "akka/akka-grpc" - name: "akka/akka-management" - - name: "apache/incubator-pekko-grpc" - - name: "apache/incubator-pekko-management" - - name: "augustnagro/magnum" - - name: "benhutchison/scalaswingcontrib" - - name: "cequence-io/openai-scala-client" + - name: "atry/futurebinding.scala" - name: "cquiroz/scala-java-locales" - name: "cucumber/cucumber-jvm-scala" - - name: "doriordan/skuber" - - name: "dragonfly-ai/slash" - name: "dvreeze/tqa" - name: "embeddedkafka/embedded-kafka-schema-registry" - - name: "frugalmechanic/fm-lazyseq" - - name: "frugalmechanic/fm-serializer" - name: "gekomad/scala-regex-collection" - - name: "gitbucket/blocking-slick" - name: "gmethvin/directory-watcher" - - name: "herminiogg/shexml" + - name: "greenfossil/data-mapping" - name: "ij-plugins/ijp-color" - name: "ij-plugins/ijp-debayer2sx" + - name: "ij-plugins/ijp-scala-console" - name: "inkytonik/kiama" - name: "j-mie6/parsley" - - name: "j5ik2o/akka-persistence-dynamodb" + - name: "jelly-rdf/jelly-jvm" - name: "jobial-io/scase" - name: "json4s/json4s" - name: "juliano/pokeapi-scala" - name: "kevin-lee/just-semver" - - name: "leviysoft/oolong" - - name: "matsluni/aws-spi-akka-http" - name: "metarank/ltrlib" - name: "msgpack4z/msgpack4z-core" - name: "norbert-radyk/spoiwo" - name: "nrinaudo/kantan.parsers" + - name: "outr/profig" + - name: "pjfanning/jackson-module-enumeratum" - name: "pjfanning/jackson-module-scala3-enum" - - name: "playframework/play-doc" - - name: "playframework/play-file-watch" - - name: "playframework/play-ws" - - name: "playframework/scalatestplus-play" - name: "rallyhealth/scalacheck-ops" - name: "rediscala/rediscala" - - name: "sake92/sharaf" - - name: "sake92/squery" + - name: "sake92/hepek" - name: "sangria-graphql/sangria-ion" - name: "sangria-graphql/sangria-msgpack" - name: "sangria-graphql/sangria-play-json" @@ -541,26 +540,21 @@ jobs: - name: "scalapb-json/scalapb-json-common" - name: "scalapb/common-protos" - name: "scalapb/scalapb-grpcweb" - - name: "scalikejdbc/scalikejdbc" + - name: "scalikejdbc/scalikejdbc-async" + - name: "scalikejdbc/scalikejdbc-play-support" - name: "sciss/scalacolliderugens" - name: "sciss/scissdsp" - - name: "scodec/scodec-bits" + - name: "scodec/scodec" - name: "seratch/awscala" - name: "shiftleftsecurity/overflowdb" - name: "shiftleftsecurity/overflowdb-codegen" - - name: "softwaremill/ox" - name: "softwaremill/scala-id-generator" - - name: "softwaremill/tapir-loom" - name: "stryker-mutator/stryker4s" - name: "swagger-akka-http/swagger-scala-module" - - name: "thoughtworksinc/bindable.scala" - name: "tkrs/fluflu" - name: "tototoshi/slick-joda-mapper" - name: "twitter/util" - name: "typelevel/cats" - - name: "typelevel/fabric" - - name: "typelevel/scalac-options" - - name: "typelevel/spotted-leopards" - name: "vagmcs/optimus" - name: "virtuslab/scala-yaml" - name: "xuwei-k/optparse-applicative" @@ -591,65 +585,75 @@ jobs: - name: "akka/akka-projection" - name: "andyglow/websocket-scala-client" - name: "ariskk/flink4s" + - name: "armanbilge/litter" + - name: "bcarter97/id-generator" - name: "bilal-fazlani/zio-ulid" + - name: "billzabob/fordeckmacia" - name: "bitlap/rolls" - name: "carlosedp/zio-channel" + - name: "casehubdk/hxl" - name: "clulab/processors" - name: "codedx/mapk" + - name: "cornerman/sloth" - name: "dacr/zio-worksheet" - name: "davenverse/cats-scalacheck" - - name: "dfianthdl/dfiant" - name: "disneystreaming/alloy" - name: "dobrynya/zio-jms" - name: "dvgica/managerial" - name: "earogov/ordset" + - name: "errors4s/errors4s-core" - name: "findify/flink-adt" - - name: "frugalmechanic/fm-flatfile" - name: "fthomas/status-page" + - name: "gchudnov/bscript" - name: "gchudnov/swearwolf" - name: "geirolz/fluent-copy" - name: "geirolz/scope" - - name: "hmemcpy/zio-clippy" + - name: "greenfossil/thorium" + - name: "guidoschmidt17/zio-pgcopy" - name: "inoio/solrs" - name: "j-mie6/parsley-cats" - name: "japgolly/univeq" + - name: "jatcwang/difflicious" - name: "jczuchnowski/zio-pulsar" + - name: "jkobejs/cron" - name: "kitlangton/animus" - name: "kitlangton/quotidian" - name: "kubukoz/drops" - name: "marcinzh/turbolift" + - name: "marcinzh/yamlike" + - name: "msgpack4z/msgpack4z-jawn" - name: "msgpack4z/msgpack4z-play" - name: "noelwelsh/mads" - - name: "outr/profig" + - name: "outr/scalapass" + - name: "palanga/parana" - name: "palanga/zio-cassandra" - - name: "playframework/playframework" + - name: "pjfanning/zio-metrics-micrometer" - name: "polynote/uzhttp" - name: "poslegm/munit-zio" - name: "purplekingdomgames/tyrian" - - name: "scalalandio/chimney" + - name: "sangria-graphql/sangria-json4s-jackson" - name: "scalapb/scalapb-json4s" - name: "scalapb/scalapb-validate" - name: "scalapb/zio-grpc" - - name: "scalatra/scalatra" - - name: "scalikejdbc/scalikejdbc-async" - - name: "scalikejdbc/scalikejdbc-play-support" + - name: "sciss/lucre" - name: "sciss/scalacollider" - - name: "scodec/scodec" + - name: "scodec/scodec-cats" - name: "senia-psm/zio-test-akka-http" - name: "shiftleftsecurity/codepropertygraph" - name: "sideeffffect/zio-testcontainers" - name: "sksamuel/avro4s" - name: "sky-uk/kafka-topic-loader" - - name: "softwaremill/akka-http-session" - - name: "swagger-akka-http/swagger-pekko-http" + - name: "swagger-akka-http/swagger-enumeratum-module" + - name: "swaldman/untemplate" - name: "tharwaninitin/cron4zio" + - name: "thoughtworksinc/bindable.scala" - name: "tomasmikula/libretto" - name: "tomasmikula/nutcracker" + - name: "torrentdam/bencode" - name: "typelevel/case-insensitive" - name: "typelevel/cats-collections" - name: "typelevel/cats-mtl" - name: "typelevel/cats-parse" - - name: "typelevel/cats-tagless" - name: "typelevel/cats-testkit-scalatest" - name: "typelevel/cats-time" - name: "typelevel/idna4s" @@ -659,19 +663,18 @@ jobs: - name: "typelevel/shapeless-3" - name: "typelevel/spire" - name: "typelevel/twiddles" - - name: "unfiltered/unfiltered" - name: "vitaliihonta/zio-temporal" - name: "vladkopanev/zio-saga" - name: "yakivy/dupin" - - name: "zaneli/scalikejdbc-athena" - name: "zio/interop-guava" - name: "zio/interop-reactive-streams" + - name: "zio/zio-bson" - name: "zio/zio-cache" - name: "zio/zio-nio" - name: "zio/zio-parser" - name: "zio/zio-profiling" - - name: "zio/zio-query" - name: "zio/zio-rocksdb" + - name: "zio/zio-telemetry" - name: "zio/zio-test-intellij" steps: - name: "Git Checkout" @@ -695,34 +698,26 @@ jobs: strategy: matrix: include: - - name: "billzabob/fordeckmacia" - - name: "devsisters/zio-agones" + - name: "cozydev-pink/snakecase" - name: "dvreeze/xpathparser" - name: "dwickern/scala-nameof" - name: "endpoints4s/endpoints4s" - name: "findify/flink-scala-api" - - name: "flyway/flyway-play" - - name: "foundweekends/pamflet" + - name: "flink-extended/flink-scala-api" - name: "higherkindness/droste" - name: "ironcorelabs/cats-scalatest" - name: "johnspade/csv3s" - name: "lemonlabsuk/scala-uri" - name: "milessabin/shapeless" - - name: "nulab/play2-oauth2-provider" - - name: "outr/scalapass" - - name: "playframework/play-ebean" - - name: "playframework/play-mailer" - - name: "playframework/play-slick" - name: "sagifogel/proptics" + - name: "scalameta/metaconfig" - name: "scalanlp/breeze" - name: "scalaprops/scalaprops-shapeless" - name: "sciss/scalacolliderswing" - - name: "scodec/scodec-cats" - name: "systemfw/dynosaur" - name: "theiterators/sealed-monad" - name: "typelevel/coop" - name: "typelevel/kittens" - - name: "webjars/webjars-play" - name: "y-yu/slick-bulk-insert" - name: "zeal18/zio-mongodb" - name: "zio/zio-logging" @@ -751,14 +746,13 @@ jobs: include: - name: "cheleb/zio-pravega" - name: "geirolz/advxml" - - name: "hjfruit/scalikejdbc-helper" - name: "lambdaworks/scurl-detector" - name: "ollls/zio-quartz-h2" - - name: "scalapb-json/scalapb-playjson" + - name: "saucam/shiva" + - name: "scalameta/mdoc" - name: "sciss/soundprocesses" - name: "svroonland/zio-kinesis" - name: "tharwaninitin/gcp4zio" - - name: "typelevel/cats-effect" - name: "unibas-gravis/scalismo" steps: - name: "Git Checkout" @@ -779,56 +773,178 @@ jobs: needs: [ setup-build, stage-7 ] continue-on-error: true timeout-minutes: 360 + strategy: + matrix: + include: + - name: "darrenjw/scala-glm" + - name: "darrenjw/scala-smfsb" + - name: "sciss/patterns" + - name: "sciss/wolkenpumpe" + - name: "stryker-mutator/weapon-regex" + - name: "zio/zio-constraintless" + - name: "zio/zio-ftp" + - name: "zio/zio-kafka" + - name: "zio/zio-mock" + - name: "zio/zio-optics" + - name: "zio/zio-prelude" + - name: "zio/zio-process" + - name: "zio/zio-query" + - name: "zio/zio-sql" + steps: + - name: "Git Checkout" + uses: actions/checkout@v3 + - name: "Build project" + uses: ./.github/actions/build-project + timeout-minutes: 60 + with: + project-name: ${{ matrix.name }} + extra-scalac-options: ${{ inputs.extra-scalac-options }} + disabled-scalac-options: ${{ inputs.disabled-scalac-options }} + scala-version: ${{ needs.setup-build.outputs.scala-version }} + maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} + elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} + elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} + stage-9: + runs-on: ubuntu-22.04 + needs: [ setup-build, stage-8 ] + continue-on-error: true + timeout-minutes: 360 + strategy: + matrix: + include: + - name: "kitlangton/zio-tui" + - name: "stuartapp/zcaffeine" + - name: "univalence/zio-spark" + - name: "zio/zio-amqp" + - name: "zio/zio-direct" + steps: + - name: "Git Checkout" + uses: actions/checkout@v3 + - name: "Build project" + uses: ./.github/actions/build-project + timeout-minutes: 60 + with: + project-name: ${{ matrix.name }} + extra-scalac-options: ${{ inputs.extra-scalac-options }} + disabled-scalac-options: ${{ inputs.disabled-scalac-options }} + scala-version: ${{ needs.setup-build.outputs.scala-version }} + maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} + elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} + elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} + stage-10: + runs-on: ubuntu-22.04 + needs: [ setup-build, stage-9 ] + continue-on-error: true + timeout-minutes: 360 + strategy: + matrix: + include: + - name: "creativescala/doodle" + - name: "creativescala/doodle-svg" + - name: "etorreborre/specs2" + - name: "japgolly/microlibs-scala" + - name: "japgolly/nyaya" + - name: "outr/scribe" + - name: "outr/spice" + - name: "typelevel/cats-effect" + steps: + - name: "Git Checkout" + uses: actions/checkout@v3 + - name: "Build project" + uses: ./.github/actions/build-project + timeout-minutes: 60 + with: + project-name: ${{ matrix.name }} + extra-scalac-options: ${{ inputs.extra-scalac-options }} + disabled-scalac-options: ${{ inputs.disabled-scalac-options }} + scala-version: ${{ needs.setup-build.outputs.scala-version }} + maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} + elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} + elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} + stage-11: + runs-on: ubuntu-22.04 + needs: [ setup-build, stage-10 ] + continue-on-error: true + timeout-minutes: 360 strategy: matrix: include: - name: "alexarchambault/case-app" - name: "ant8e/uuid4cats-effect" + - name: "argonaut-io/argonaut" + - name: "asflierl/sglicko2" + - name: "benhutchison/scalaswingcontrib" + - name: "carueda/tscfg" - name: "cb372/cats-retry" + - name: "cchantep/acolyte" - name: "comcast/ip4s" - name: "davenverse/cats-effect-time" - name: "davenverse/circuit" - name: "davenverse/clippette" + - name: "davenverse/condemned" - name: "davenverse/crossplatformioapp" + - name: "davenverse/env" - name: "davenverse/epimetheus" + - name: "davenverse/fiberlocal" - name: "davenverse/keysemaphore" - name: "davenverse/lock" - name: "davenverse/mapref" - name: "davenverse/mules" + - name: "davenverse/os-detect" - name: "davenverse/single-fibered" - - name: "evolution-gaming/random" - - name: "evolution-gaming/scache" + - name: "enragedginger/akka-quartz-scheduler" + - name: "folone/poi.scala" - name: "geirolz/cats-xml" - name: "geirolz/fly4s" - name: "gonzih/cats-nats" + - name: "hagay3/skuber" - name: "http4s/http4s-crypto" + - name: "indoorvivants/mdoc-effect" - name: "itv/quartz4s" - name: "janstenpickle/hotswap-ref" + - name: "japgolly/clear-config" + - name: "japgolly/scala-graal" + - name: "japgolly/scalacss" + - name: "japgolly/test-state" - name: "kamon-io/kamon" - name: "lhns/munit-tagless-final" - name: "liquibase4s/liquibase4s" - name: "monix/monix" - name: "nafg/simpleivr" + - name: "ohze/couchbase-scala" + - name: "ohze/sd-util" + - name: "outr/mailgun4s" + - name: "outr/robobrowser" + - name: "ovotech/meters4s" - name: "permutive-engineering/prometheus4cats" - name: "ppurang/abctemplates" - name: "ppurang/asynch" - - name: "sciss/wolkenpumpe" + - name: "rsemlal/clickhouse4cats" + - name: "ruippeixotog/akka-testkit-specs2" + - name: "ruippeixotog/scala-scraper" + - name: "scalatra/scalatra" + - name: "swaldman/unstatic" + - name: "thatscalaguy/ulid4cats" - name: "timwspence/cats-stm" - name: "tkrs/orcus" - - name: "tototoshi/nyanda" - name: "tpolecat/pool-party" - name: "travisbrown/iteratee" - name: "typelevel/bobcats" - name: "typelevel/cats-effect-testing" + - name: "typelevel/discipline-specs2" - name: "typelevel/keypool" - name: "typelevel/log4cats" - name: "typelevel/munit-cats-effect" - name: "typelevel/scalacheck-effect" - name: "typelevel/unique" - name: "typelevel/vault" + - name: "ua-parser/uap-scala" + - name: "unfiltered/unfiltered" - name: "virtuslab/avocado" + - name: "vlmiroshnikov/aero3" - name: "xebia-functional/fetch" - name: "yakivy/jam" + - name: "zengularity/benji" steps: - name: "Git Checkout" uses: actions/checkout@v3 @@ -843,25 +959,35 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-9: + stage-12: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-8 ] + needs: [ setup-build, stage-11 ] continue-on-error: true timeout-minutes: 360 strategy: matrix: include: - name: "akiomik/cats-nio-file" + - name: "davenverse/epimetheus-log4cats" - name: "emergentorder/onnx-scala" - name: "fiatjaf/scoin" + - name: "foundweekends/pamflet" + - name: "jvican/dijon" - name: "kailuowang/mau" - name: "kevin-lee/effectie" + - name: "lancewalton/treelog" - name: "monix/monix-bio" - name: "monix/monix-testing" + - name: "msgpack4z/msgpack4z-argonaut" + - name: "playframework/anorm" + - name: "sangria-graphql/sangria-argonaut" - name: "sangria-graphql/sangria-monix" + - name: "scalapb-json/scalapb-argonaut" - name: "typelevel/cats-effect-cps" - name: "typelevel/fs2" - name: "vladkopanev/cats-saga" + - name: "xuwei-k/httpz" + - name: "xuwei-k/unused-proto" - name: "yoohaemin/decrel" - name: "zio/interop-monix" steps: @@ -878,9 +1004,9 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-10: + stage-13: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-9 ] + needs: [ setup-build, stage-12 ] continue-on-error: true timeout-minutes: 360 strategy: @@ -890,28 +1016,29 @@ jobs: - name: "armanbilge/porcupine" - name: "armanbilge/schrodinger" - name: "armanbilge/van-cats" - - name: "creativescala/doodle" - name: "davenverse/catscript" - name: "davenverse/process" + - name: "delimobil/fs2-hbase" - name: "disneystreaming/weaver-test" - name: "durban/choam" - - name: "dwolla/fs2-aws" - name: "eikek/binny" - name: "fehu/opentracing-scala" - name: "filosganga/batcher" - name: "fingo/spata" - name: "fs2-blobstore/fs2-blobstore" - name: "gekomad/itto-csv" + - name: "jwojnowski/fs2-aes" - name: "keirlawson/fs2-progress" - name: "kevin-lee/logger-f" - name: "kovstas/fs2-throttler" + - name: "laserdisc-io/log-effect" - name: "lhns/fs2-compress" - name: "mjakubowski84/parquet4s" - name: "mkroli/dns4s" - name: "naoh87/lettucef" - name: "ollls/quartz-h2" + - name: "outr/scarango" - name: "profunktor/redis4cats" - - name: "pureharm/pureharm-aws" - name: "regis-leray/fs2-ftp" - name: "rssh/cps-async-connect" - name: "rustedbones/taxonomy" @@ -941,26 +1068,29 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-11: + stage-14: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-10 ] + needs: [ setup-build, stage-13 ] continue-on-error: true timeout-minutes: 360 strategy: matrix: include: - - name: "dieproht/molly" + - name: "armanbilge/sadalsuud" + - name: "davenverse/epimetheus-redis4cats" - name: "indoorvivants/weaver-playwright" - - name: "jatcwang/difflicious" - - name: "lowmelvin/formify-scala" - - name: "lowmelvin/hammer-scala" + - name: "minosiants/pencil" - name: "mvv/sager" - name: "polyvariant/scala-git-markers" + - name: "polyvariant/scodec-java-classfile" - name: "polyvariant/treesitter4s" - name: "rustedbones/scout" - name: "scodec/scodec-protocols" + - name: "trace4cats/trace4cats-zio" - name: "typelevel/catapult" - name: "user-signal/fs2-mqtt" + - name: "vigoo/prox" + - name: "zio/zio-connect" steps: - name: "Git Checkout" uses: actions/checkout@v3 @@ -975,152 +1105,9 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-12: + stage-15: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-11 ] - continue-on-error: true - timeout-minutes: 360 - strategy: - matrix: - include: - - name: "japgolly/microlibs-scala" - - name: "japgolly/nyaya" - - name: "nebula-contrib/testcontainers-nebula" - - name: "nebula-contrib/zio-nebula" - - name: "outr/scribe" - - name: "outr/spice" - - name: "reactivemongo/reactivemongo" - - name: "reactivemongo/reactivemongo-bson" - - name: "sangria-graphql/macro-visit" - - name: "sangria-graphql/sangria" - - name: "scalameta/mdoc" - - name: "scalameta/metaconfig" - - name: "zio/zio-config" - steps: - - name: "Git Checkout" - uses: actions/checkout@v3 - - name: "Build project" - uses: ./.github/actions/build-project - timeout-minutes: 60 - with: - project-name: ${{ matrix.name }} - extra-scalac-options: ${{ inputs.extra-scalac-options }} - disabled-scalac-options: ${{ inputs.disabled-scalac-options }} - scala-version: ${{ needs.setup-build.outputs.scala-version }} - maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} - elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} - elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-13: - runs-on: ubuntu-22.04 - needs: [ setup-build, stage-12 ] - continue-on-error: true - timeout-minutes: 360 - strategy: - matrix: - include: - - name: "carueda/tscfg" - - name: "darrenjw/scala-glm" - - name: "darrenjw/scala-smfsb" - - name: "flink-extended/flink-scala-api" - - name: "indoorvivants/mdoc-effect" - - name: "japgolly/clear-config" - - name: "japgolly/scala-graal" - - name: "japgolly/scalacss" - - name: "japgolly/test-state" - - name: "kaizen-solutions/virgil" - - name: "laserdisc-io/log-effect" - - name: "outr/mailgun4s" - - name: "outr/media4s" - - name: "outr/robobrowser" - - name: "outr/scarango" - - name: "reactivemongo/reactivemongo-play-json" - - name: "reactivemongo/reactivemongo-streaming" - - name: "sangria-graphql/sangria-relay" - - name: "sangria-graphql/sangria-slowlog" - - name: "scalamolecule/molecule" - - name: "stryker-mutator/weapon-regex" - - name: "svroonland/rezilience" - - name: "zio/zio-constraintless" - - name: "zio/zio-ftp" - - name: "zio/zio-kafka" - - name: "zio/zio-mock" - - name: "zio/zio-optics" - - name: "zio/zio-prelude" - - name: "zio/zio-process" - - name: "zio/zio-sql" - - name: "zio/zio-sqs" - - name: "zio/zio-telemetry" - steps: - - name: "Git Checkout" - uses: actions/checkout@v3 - - name: "Build project" - uses: ./.github/actions/build-project - timeout-minutes: 60 - with: - project-name: ${{ matrix.name }} - extra-scalac-options: ${{ inputs.extra-scalac-options }} - disabled-scalac-options: ${{ inputs.disabled-scalac-options }} - scala-version: ${{ needs.setup-build.outputs.scala-version }} - maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} - elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} - elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-14: - runs-on: ubuntu-22.04 - needs: [ setup-build, stage-13 ] - continue-on-error: true - timeout-minutes: 360 - strategy: - matrix: - include: - - name: "cchantep/acolyte" - - name: "kitlangton/zio-tui" - - name: "stuartapp/zcaffeine" - - name: "svroonland/zio-amqp" - - name: "univalence/zio-spark" - - name: "vigoo/prox" - - name: "zio/zio-connect" - - name: "zio/zio-direct" - - name: "zio/zio-wasm" - steps: - - name: "Git Checkout" - uses: actions/checkout@v3 - - name: "Build project" - uses: ./.github/actions/build-project - timeout-minutes: 60 - with: - project-name: ${{ matrix.name }} - extra-scalac-options: ${{ inputs.extra-scalac-options }} - disabled-scalac-options: ${{ inputs.disabled-scalac-options }} - scala-version: ${{ needs.setup-build.outputs.scala-version }} - maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} - elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} - elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-15: - runs-on: ubuntu-22.04 - needs: [ setup-build, stage-14 ] - continue-on-error: true - timeout-minutes: 360 - strategy: - matrix: - include: - - name: "playframework/anorm" - steps: - - name: "Git Checkout" - uses: actions/checkout@v3 - - name: "Build project" - uses: ./.github/actions/build-project - timeout-minutes: 60 - with: - project-name: ${{ matrix.name }} - extra-scalac-options: ${{ inputs.extra-scalac-options }} - disabled-scalac-options: ${{ inputs.disabled-scalac-options }} - scala-version: ${{ needs.setup-build.outputs.scala-version }} - maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} - elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} - elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-16: - runs-on: ubuntu-22.04 - needs: [ setup-build, stage-15 ] + needs: [ setup-build, stage-14 ] continue-on-error: true timeout-minutes: 360 strategy: @@ -1128,19 +1115,13 @@ jobs: include: - name: "2m/ciris-hocon" - name: "analogweb/analogweb-scala" - - name: "apache/incubator-pekko-persistence-cassandra" - - name: "apache/incubator-pekko-projection" - - name: "argonaut-io/argonaut" + - name: "andimiller/hedgehogs" - name: "armanbilge/bayou" - name: "armanbilge/scala-native-config-brew" - - name: "arturaz/doobie-typesafe" - - name: "asragab/unstructured4s" - name: "atnos-org/eff" - name: "avast/datadog4s" - - name: "bilal-fazlani/zio-maelstrom" - name: "bkirwi/decline" - name: "blackdoor/jose" - - name: "bot4s/zmatrix" - name: "camunda-community-hub/camunda-dmn-tester" - name: "cb372/scalacache" - name: "chatwork/scala-jwk" @@ -1149,56 +1130,65 @@ jobs: - name: "cognitedata/cognite-sdk-scala" - name: "com-lihaoyi/cask" - name: "com-lihaoyi/upickle" - - name: "dacr/zio-lmdb" + - name: "dacr/code-examples-manager" - name: "dapperware/zio-slack" - name: "data-tools/big-data-types" - name: "davenverse/epimetheus-http4s" + - name: "davenverse/googleapis-http4s" - name: "davenverse/mules-http4s" - name: "delimobil/cabbit" - name: "dylemma/xml-spac" - name: "eikek/emil" - name: "eikek/yamusca" + - name: "erikerlandson/coulomb" - name: "eventstore/eventstore.jvm" - name: "evolution-gaming/derivation" - name: "fabiopinheiro/scala-did" - name: "fd4s/fs2-kafka" - name: "fd4s/vulcan" - - name: "foldables-io/skunk-tables" - name: "fomkin/korolev" - name: "fthomas/fs2-cron" - name: "fthomas/refined" - name: "gaelrenoux/tranzactio" - name: "geirolz/erules" + - name: "gemini-hlsw/lucuma-refined" - name: "gemini-hlsw/refined-algebra" - name: "getkyo/kyo" - name: "gnieh/diffson" - - name: "guizmaii-opensource/zio-uuid" + - name: "hamnis/jsonschema" - name: "higherkindness/mu-scala" - name: "http4s/http4s-armeria" - name: "http4s/http4s-fabric" - name: "http4s/http4s-prometheus-metrics" - name: "http4s/http4s-servlet" + - name: "imaxmelnyk/openai-scala" - name: "jap-company/fields" - - name: "jilen/play-circe" + - name: "jmcardon/tsec" - name: "jodersky/scala-argparse" - name: "jodersky/scalapb-ujson" - name: "jodersky/yamlesque" + - name: "johnspade/tgbot-utils" - name: "katrix/perspective" - name: "katrix/typenbt" - - name: "kordyjan/pytanie" + - name: "kiberstender/fjwt" + - name: "kierendavies/skunk-migrate" + - name: "killaitis/http4s-cloud-functions" + - name: "kolemannix/spack" - name: "kory33/s2mc-test" - name: "koterpillar/refinery" - - name: "lambdaworks/scountries" - - name: "lancewalton/treelog" + - name: "laserdisc-io/scanamo-circe" + - name: "lhns/http4s-errors" + - name: "lhns/remote-io" + - name: "lloydmeta/enumeratum" - name: "m2-oss/calypso" - - name: "marcinzh/enterprise" - - name: "mdedetrich/pekko-streams-circe" + - name: "medeia/medeia" + - name: "molarmanful/sclin" - name: "monix/monix-connect" - name: "mpollmeier/scala-repl-pp" - name: "mrdimosthenis/scala-synapses" - - name: "msgpack4z/msgpack4z-argonaut" - name: "msgpack4z/msgpack4z-circe" - - name: "nau/scalus" + - name: "narma/tranzactio" + - name: "note/dhallj-magnolia" - name: "ollls/zio-tls-http" - name: "openmole/gridscale" - name: "openmole/mgo" @@ -1206,20 +1196,18 @@ jobs: - name: "ovotech/ciris-aws-secretsmanager" - name: "phaller/spores3" - name: "pityka/nspl" - - name: "pjfanning/jackson-module-enumeratum" - name: "plokhotnyuk/jsoniter-scala" - name: "polystat/odin" + - name: "polyvariant/caliban-gitlab" - name: "profunktor/fs2-rabbit" - name: "profunktor/neutron" + - name: "pureconfig/pureconfig" - name: "raquo/waypoint" - - name: "reactific/riddl" - name: "reactivecore/rc-circe-json-schema" - - name: "rolang/dumbo" - - name: "rustedbones/pekko-http-metrics" - name: "sageserpent-open/americium" + - name: "sangria-graphql/sangria-relay" - name: "scala-cli/scala-cli-signing" - name: "scala/toolkit" - - name: "scalapb-json/scalapb-argonaut" - name: "scalapb-json/scalapb-circe" - name: "scalax/simple" - name: "sfxcode/sapphire-data" @@ -1229,30 +1217,30 @@ jobs: - name: "softwaremill/diffx" - name: "softwaremill/sttp-openai" - name: "spaceteams/scala-json-logging" + - name: "svroonland/rezilience" - name: "taig/babel" - - name: "tharwaninitin/etlflow" - name: "thatscalaguy/circe-jq" - - name: "theiterators/http4s-stir" - name: "timbertson/foperator" - name: "tofu-tf/glass" - name: "tpolecat/atto" - name: "trace4cats/trace4cats-http4s" + - name: "trace4cats/trace4cats-kafka" - name: "trace4cats/trace4cats-sttp" - - name: "typebricks/pureconfig-toggleable" - - name: "typelevel/laika" + - name: "trace4cats/trace4cats-xray" + - name: "ulitol97/comet" - name: "valskalla/odin" - name: "vigoo/clipp" - name: "vitaliihonta/scala-ql" - name: "vlmiroshnikov/authz" - - name: "windymelt/rss2discord" - - name: "xuwei-k/httpz" - name: "y-yu/excel-reads" - name: "zio/caliban-deriving" - name: "zio/zio-cli" + - name: "zio/zio-config" - name: "zio/zio-dynamodb" - name: "zio/zio-jdbc" - name: "zio/zio-lambda" - name: "zio/zio-redis" + - name: "zio/zio-schema" steps: - name: "Git Checkout" uses: actions/checkout@v3 @@ -1267,24 +1255,21 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-17: + stage-16: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-16 ] + needs: [ setup-build, stage-15 ] continue-on-error: true timeout-minutes: 360 strategy: matrix: include: - name: "alhuelamo/dbjobs" - - name: "almond-sh/almond" - - name: "andimiller/decline-completion" - name: "circe/circe" - - name: "dacr/code-examples-manager" - - name: "jchapuis/fs2-kafka-mock" + - name: "geirolz/toolkit" + - name: "indoorvivants/subatomic" - name: "optics-dev/monocle" - name: "rewards-network/combos" - name: "rewards-network/pure-aws" - - name: "swaldman/fossilphant" - name: "virtuslab/scala-cli" steps: - name: "Git Checkout" @@ -1300,23 +1285,26 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-18: + stage-17: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-17 ] + needs: [ setup-build, stage-16 ] continue-on-error: true timeout-minutes: 360 strategy: matrix: include: + - name: "7mind/izumi" - name: "ahjohannessen/sec" - name: "armanbilge/circe-scala-yaml" + - name: "banno/cosmos4s" - name: "circe/circe-config" - name: "circe/circe-fs2" - - name: "circe/circe-optics" - name: "circe/circe-yaml" + - name: "cornerman/chameleon" - name: "eventstore/eventstore.akka.persistence" - name: "filosganga/jsonpath" - name: "gemini-hlsw/crystal" + - name: "gemini-hlsw/lucuma-core" - name: "gnieh/fs2-data" - name: "gnieh/geo-scala" - name: "hnaderi/lepus" @@ -1324,17 +1312,17 @@ jobs: - name: "imrafaelmerino/json-scala-values" - name: "indoorvivants/sn-vcpkg" - name: "joernio/joern" + - name: "kovacshuni/circe-config" - name: "laserdisc-io/fs2-aws" - name: "logging4s/logging4s" - - name: "nrkno/bigquery-scala" - name: "ocadotechnology/sttp-oauth2" - name: "pityka/saddle" + - name: "pureharm/pureharm-json-circe" - name: "quafadas/dedav4s" - name: "rallyhealth/weepickle" - name: "sangria-graphql/sangria-circe" - name: "snowplow/snowplow-scala-analytics-sdk" - name: "stephennancekivell/scalatest-json" - - name: "tethys-json/tethys" - name: "tpolecat/doobie" - name: "typelevel/natchez" - name: "yakivy/poppet" @@ -1353,9 +1341,9 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-19: + stage-18: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-18 ] + needs: [ setup-build, stage-17 ] continue-on-error: true timeout-minutes: 360 strategy: @@ -1366,55 +1354,59 @@ jobs: - name: "armanbilge/gcp4s" - name: "azhur/kafka-serde-scala" - name: "banno/vault4s" + - name: "bot4s/zmatrix" - name: "coralogix/zio-k8s" - - name: "cornerman/chameleon" - - name: "creativescala/krop" + - name: "dacr/zio-lmdb" - name: "davenverse/circuit-http4s" - name: "davenverse/fuuid" - name: "davenverse/github" - name: "davenverse/http4s-grpc" - name: "davenverse/natchez-http4s-otel" - name: "davenverse/snickerdoodle" - - name: "davenverse/tsec" - name: "davenverse/whale-tail" - name: "disneystreaming/smithy4s" - name: "eikek/calev" - name: "fgrutsch/emergence" - name: "gemini-hlsw/clue" + - name: "gemini-hlsw/lucuma-catalog" - name: "hamnis/jwk" + - name: "hnaderi/yaml4s" - name: "http4s/blaze" - name: "http4s/http4s-fs2-data" - name: "http4s/http4s-jdk-http-client" - name: "http4s/http4s-jetty" - - name: "http4s/http4s-play-json" - name: "http4s/http4s-scala-xml" - name: "http4s/http4s-scalatags" - - name: "http4s/http4s-session" + - name: "http4s/http4s-tomcat" - name: "http4s/http4s-twirl" - name: "japgolly/webapp-util" - name: "jbwheatley/pact4s" - name: "jwt-scala/jwt-scala" - name: "kirill5k/mongo4cats" - name: "kubukoz/sup" - - name: "laserdisc-io/slack4s" + - name: "lambdaworks/zio-elasticsearch" - name: "lego/woof" - - name: "minosiants/pencil" + - name: "linyxus/papiers-core" - name: "mobimeo/fs2-gtfs" - name: "neandertech/langoustine" - - name: "ovotech/meters4s" - name: "ovotech/natchez-extras" - name: "pac4j/http4s-pac4j" - name: "permutive-engineering/fs2-google-pubsub" - name: "pityka/lamp" - - name: "pjfanning/pekko-http-json" + - name: "pureharm/pureharm-aws" + - name: "sangria-graphql/sangria" + - name: "sideeffffect/zio-doobie" - name: "sksamuel/elastic4s" - name: "softwaremill/sttp-apispec" + - name: "taig/flog" + - name: "tharwaninitin/etlflow" + - name: "theiterators/kebs" + - name: "tinkoff/muffin" - name: "typelevel/feral" - name: "typelevel/natchez-http4s" - name: "typelevel/skunk" - name: "typelevel/toolkit" - - name: "xebia-functional/karat-scalacheck" - - name: "zio/zio-schema" + - name: "vlovgr/ciris" steps: - name: "Git Checkout" uses: actions/checkout@v3 @@ -1429,9 +1421,9 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-20: + stage-19: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-19 ] + needs: [ setup-build, stage-18 ] continue-on-error: true timeout-minutes: 360 strategy: @@ -1439,32 +1431,38 @@ jobs: include: - name: "47degrees/memeid" - name: "47degrees/sbt-energymonitor" - - name: "apache/incubator-pekko-connectors" + - name: "andreamarcolin/oidc4s" - name: "apimorphism/telegramium" - name: "atedeg/mdm" - name: "augustjune/canoe" - - name: "cornerman/sloth" + - name: "avast/scala-server-toolkit" + - name: "bilal-fazlani/akka-http-jwt-auth" - name: "danslapman/morphling" - name: "davenverse/rediculous" - - name: "hamnis/jsonschema" + - name: "etspaceman/kinesis4cats" + - name: "gemini-hlsw/lucuma-sso" - name: "hnaderi/edomata" - name: "http4s/http4s-netty" - name: "itv/scala-pact" - - name: "jmcardon/tsec" - name: "joan38/kubernetes-client" + - name: "jwojnowski/googlecloud4s" - name: "jwojnowski/oidc4s" - - name: "kamon-io/kamon-http4s" - name: "kubukoz/spotify-next" - - name: "lambdaworks/zio-elasticsearch" + - name: "lhns/http4s-jwt-auth" + - name: "lhns/http4s-spa" - name: "paoloboni/binance-scala-client" - name: "pme123/camundala" + - name: "polystat/polystat-cli" - name: "profunktor/http4s-jwt-auth" + - name: "qwbarch/snowflake4s" + - name: "sangria-graphql/sangria-slowlog" - name: "scalabin-no/http4s-directives" - - name: "scalacenter/course-management-tools" - name: "torrentdam/bittorrent" - name: "trace4cats/trace4cats-datadog" + - name: "trace4cats/trace4cats-jaeger-integration-test" - name: "travisbrown/dhallj" - name: "typelevel/grackle" + - name: "valdemargr/gql" - name: "virtuslab/inkuire" - name: "zio/zio-http" - name: "zio/zio-metrics-legacy" @@ -1482,21 +1480,21 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-21: + stage-20: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-20 ] + needs: [ setup-build, stage-19 ] continue-on-error: true timeout-minutes: 360 strategy: matrix: include: - name: "carlos-verdes/zio-arangodb" + - name: "davenverse/natchez-rediculous" - name: "davenverse/rediculous-concurrent" + - name: "gemini-hlsw/lucuma-graphql-routes" - name: "ghostdogpr/caliban" - - name: "kaizen-solutions/trace4cats-zio-extras" - - name: "scalapatisserie/muffin" - name: "scottweaver/testcontainers-for-zio" - - name: "tinkoff/muffin" + - name: "trace4cats/trace4cats-opentelemetry" - name: "zio/zio-metrics-connectors" - name: "zio/zio-openai" steps: @@ -1513,16 +1511,15 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-22: + stage-21: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-21 ] + needs: [ setup-build, stage-20 ] continue-on-error: true timeout-minutes: 360 strategy: matrix: include: - name: "devsisters/shardcake" - - name: "polyvariant/smithy4s-caliban" - name: "zio/zio-protoquill" steps: - name: "Git Checkout" @@ -1538,9 +1535,9 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-23: + stage-22: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-22 ] + needs: [ setup-build, stage-21 ] continue-on-error: true timeout-minutes: 360 strategy: @@ -1548,7 +1545,6 @@ jobs: include: - name: "kitlangton/neotype" - name: "liewhite/swopen" - - name: "lloydmeta/enumeratum" - name: "vigoo/desert" steps: - name: "Git Checkout" @@ -1564,109 +1560,3 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-24: - runs-on: ubuntu-22.04 - needs: [ setup-build, stage-23 ] - continue-on-error: true - timeout-minutes: 360 - strategy: - matrix: - include: - - name: "imaxmelnyk/openai-scala" - - name: "medeia/medeia" - - name: "neotypes/neotypes" - - name: "pureconfig/pureconfig" - - name: "theiterators/kebs" - - name: "valdemargr/gql" - - name: "vlovgr/ciris" - steps: - - name: "Git Checkout" - uses: actions/checkout@v3 - - name: "Build project" - uses: ./.github/actions/build-project - timeout-minutes: 60 - with: - project-name: ${{ matrix.name }} - extra-scalac-options: ${{ inputs.extra-scalac-options }} - disabled-scalac-options: ${{ inputs.disabled-scalac-options }} - scala-version: ${{ needs.setup-build.outputs.scala-version }} - maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} - elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} - elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-25: - runs-on: ubuntu-22.04 - needs: [ setup-build, stage-24 ] - continue-on-error: true - timeout-minutes: 360 - strategy: - matrix: - include: - - name: "7mind/izumi" - - name: "avast/scala-server-toolkit" - - name: "avokka/avokka" - - name: "erikerlandson/coulomb" - - name: "etspaceman/kinesis4cats" - - name: "etspaceman/scalacheck-faker" - - name: "geirolz/toolkit" - - name: "polystat/polystat-cli" - steps: - - name: "Git Checkout" - uses: actions/checkout@v3 - - name: "Build project" - uses: ./.github/actions/build-project - timeout-minutes: 60 - with: - project-name: ${{ matrix.name }} - extra-scalac-options: ${{ inputs.extra-scalac-options }} - disabled-scalac-options: ${{ inputs.disabled-scalac-options }} - scala-version: ${{ needs.setup-build.outputs.scala-version }} - maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} - elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} - elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-26: - runs-on: ubuntu-22.04 - needs: [ setup-build, stage-25 ] - continue-on-error: true - timeout-minutes: 360 - strategy: - matrix: - include: - - name: "gemini-hlsw/lucuma-core" - steps: - - name: "Git Checkout" - uses: actions/checkout@v3 - - name: "Build project" - uses: ./.github/actions/build-project - timeout-minutes: 60 - with: - project-name: ${{ matrix.name }} - extra-scalac-options: ${{ inputs.extra-scalac-options }} - disabled-scalac-options: ${{ inputs.disabled-scalac-options }} - scala-version: ${{ needs.setup-build.outputs.scala-version }} - maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} - elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} - elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-27: - runs-on: ubuntu-22.04 - needs: [ setup-build, stage-26 ] - continue-on-error: true - timeout-minutes: 360 - strategy: - matrix: - include: - - name: "gemini-hlsw/lucuma-odb" - - name: "gemini-hlsw/lucuma-sso" - steps: - - name: "Git Checkout" - uses: actions/checkout@v3 - - name: "Build project" - uses: ./.github/actions/build-project - timeout-minutes: 60 - with: - project-name: ${{ matrix.name }} - extra-scalac-options: ${{ inputs.extra-scalac-options }} - disabled-scalac-options: ${{ inputs.disabled-scalac-options }} - scala-version: ${{ needs.setup-build.outputs.scala-version }} - maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} - elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} - elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} diff --git a/.github/workflows/buildPlan-B.yaml b/.github/workflows/buildPlan-B.yaml index 38527d2c..86a1e33d 100644 --- a/.github/workflows/buildPlan-B.yaml +++ b/.github/workflows/buildPlan-B.yaml @@ -1,5 +1,5 @@ -# projects total: 471 +# projects total: 253 # min stars count: -1 # max projects count: 1000 @@ -62,411 +62,219 @@ jobs: strategy: matrix: include: - - name: "ablearthy/tdjson-bind" - - name: "aholland/aholland-scala-utils" - - name: "ajozwik/protoquill-generic" - - name: "alejandrohdezma/sbt-mdoc-toc" - - name: "alexarchambault/class-path-inspector" - - name: "altoo-ag/pekko-kryo-serialization" - - name: "antognini/type-safe-equality" - - name: "armanbilge/feral" - - name: "armanbilge/saslprep" - - name: "banno/cosmos4s" - - name: "barnardb/tinyplate" - - name: "bcarter97/id-generator" - - name: "beangle/db" - - name: "benoitlouy/tele" - - name: "bilal-fazlani/akka-http-jwt-auth" - - name: "bilal-fazlani/csv-schema" - - name: "bilal-fazlani/jslt-parser" - - name: "bilal-fazlani/rainbowcli" - - name: "bilal-fazlani/swiftbar4s" - - name: "bilal-fazlani/zio-mongo" - - name: "cake-lier/tuples-space-core" - - name: "christian-schlichtherle/circe-kafka" - - name: "cozydev-pink/lucille" - - name: "creativescala/doodle-explore" - - name: "dacr/split" - - name: "davenverse/env" - - name: "davenverse/os-detect" - - name: "davenverse/publicsuffix" - - name: "delimobil/fs2-hbase" - - name: "fiatjaf/nlog" - - name: "frugalmechanic/fm-xml" - - name: "gchudnov/bscript" - - name: "gnp/ident" - - name: "guardian/etag-caching" - - name: "guymers/ceesvee" - - name: "hjfruit/zio-pulsar" - - name: "hnaderi/named-codec" - - name: "http4s/hpack" - - name: "http4s/http4s-async-http-client" - - name: "ij-plugins/ijp-scala-console" - - name: "ivoah/vial" - - name: "jkobejs/cron" - - name: "jkugiya/aws-v4-signer-scala" - - name: "jodersky/cronic" - - name: "jodersky/ustats" - - name: "johnhungerford/generic-schema" - - name: "joohnnie/retry" - - name: "karazinscalausersgroup/mongo-literals" - - name: "kevin-lee/just-sysprocess" - - name: "kevin-lee/openai4s" - - name: "kolemannix/spack" - - name: "krrrr38/protoquill-finagle-mysql" - - name: "lhns/doobie-flyway" - - name: "lhns/http4s-jwt-auth" - - name: "lhns/nifi-scala" - - name: "liewhite/common" - - name: "likeligood-ab/scala-react" - - name: "linyxus/papiers-core" - - name: "lloydmeta/play-csv" - - name: "losizm/little-cli" - - name: "losizm/little-config" - - name: "losizm/little-json" - - name: "losizm/little-sql" - - name: "martinhh/scalacheck-derived" - - name: "mrdimosthenis/glicko2" - - name: "mvv/typine" - - name: "nafg/cloud-logging-logback-scala" - - name: "nafg/scheduler" - - name: "nafg/simple-router" - - name: "nthportal/scala-platform" - - name: "openmole/container" - - name: "outr/dd-scala" - - name: "outr/moduload" - - name: "permutive-engineering/refreshable" - - name: "phillhenry/dreadnought" - - name: "philwalk/pallet" - - name: "pityka/pairwisealignment" - - name: "pjfanning/acked-stream" - - name: "pjfanning/jackson-module-scala-duration" - - name: "pjfanning/pekko-rabbitmq" - - name: "pjfanning/pekko-serialization-jackson215" - - name: "pjfanning/zio-metrics-micrometer" - - name: "pmeheut/nscala-java-time" - - name: "quafadas/vecxt" - - name: "raistlintao/scalalogger" - - name: "sageserpent-open/kineticmerge" - - name: "sangria-graphql/sangria-streaming-api" - - name: "saucam/shiva" - - name: "scala-cli/java-class-name" - - name: "sciss/audiowidgets" - - name: "sciss/linkernighantsp" - - name: "sciss/log" - - name: "sciss/optional" - - name: "sciss/scalacollider-if" - - name: "sean-ideabank/rudolf" - - name: "shawjef3/tryutils" - - name: "ssanj/delight" - - name: "swaldman/audiofluidity-rss" - - name: "sweet-delights/delightful-typeclasses" - - name: "t-sasaki915/typesafe-scalajs" - - name: "taig/enumeration-ext" - - name: "taig/geojson" - - name: "taig/object-fit" - - name: "taig/scala-linguist" - - name: "taig/scala-pygments" - - name: "tharwaninitin/cache4s" - - name: "timbertson/auditspec" - - name: "timbertson/backpressure-sensor" - - name: "tkrs/mess" - - name: "tmccarthy/ausgeo" - - name: "tmccarthy/tmmutils" - - name: "toniogela/cross" - - name: "torrentdam/bencode" - - name: "tpataky/duckling" - - name: "trace4cats/trace4cats-exporter-http" - - name: "ulitol97/comet" - - name: "vasilmkd/discipline" - - name: "windymelt/qw.scala" - - name: "wiringbits/wiringbits-webapp-utils" - - name: "xebia-functional/munit-compiler-toolkit" - - name: "xebia-functional/munit-snap" - - name: "zhranklin/scala-tricks" - steps: - - name: "Git Checkout" - uses: actions/checkout@v3 - - name: "Build project" - uses: ./.github/actions/build-project - timeout-minutes: 360 - with: - project-name: ${{ matrix.name }} - extra-scalac-options: ${{ inputs.extra-scalac-options }} - disabled-scalac-options: ${{ inputs.disabled-scalac-options }} - scala-version: ${{ needs.setup-build.outputs.scala-version }} - maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} - elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} - elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-1: - runs-on: ubuntu-22.04 - needs: [ setup-build ] - continue-on-error: true - timeout-minutes: 360 - strategy: - matrix: - include: - - name: "2m/yabai-scala" - name: "aaronp/code-template" - name: "aaronp/franz" - name: "ablearthy/td-types" - - name: "absaoss/absa-shaded-jackson-module-scala" + - name: "ablearthy/tdjson-bind" - name: "acsgh/scala-common" - name: "ahjohannessen/smithy4s-repro-lib" - name: "ahjohannessen/unum" - name: "aiyanbo/scala-i18n" + - name: "ajozwik/protoquill-generic" - name: "akiomik/seaw" - name: "alejandrohdezma/dummy" + - name: "alejandrohdezma/sbt-mdoc-toc" - name: "alejandrohdezma/sbt-propagate" - name: "alexarchambault/case-app-entrypoint-annotation" + - name: "alexarchambault/class-path-inspector" - name: "alexdupre/coinpayments-scala" - - name: "alterationx10/opinionated-zio" - - name: "andimiller/hedgehogs" - name: "aoiroaoino/nanolens" - name: "aparo/zio-json-extra" + - name: "armanbilge/feral" - name: "armanbilge/fs2" - - name: "armanbilge/litter" - name: "armanbilge/munit-cats-effect" + - name: "armanbilge/saslprep" - name: "armanbilge/scalacheck-effect" - - name: "assist-iot-sripas/scala-mqtt-wrapper" - name: "atedeg/scala-release" - - name: "atry/futurebinding.scala" - - name: "augustnagro/form-url-codec" + - name: "barnardb/tinyplate" + - name: "beangle/db" - name: "beangle/doc" + - name: "beangle/ids" - name: "beangle/notify" + - name: "benoitlouy/tele" - name: "besselstudio/coingecko" - name: "bilal-fazlani/circe-json-schema" - - name: "bilal-fazlani/csv-codec" - - name: "bilal-fazlani/scala-aql" - - name: "bitmarck-service/base32check-scala" + - name: "bilal-fazlani/csv-schema" + - name: "bilal-fazlani/jslt-parser" + - name: "bilal-fazlani/rainbowcli" + - name: "bilal-fazlani/zio-mongo" - name: "bitmarck-service/fs2-secon" - name: "bp3r/jsonrpc2" - name: "carlos-verdes/zio-resource" - name: "catap/scala-blake3" - name: "catap/scala-sha" + - name: "christian-schlichtherle/circe-kafka" - name: "clockworkconsulting/csexp" - name: "clockworkconsulting/peregrin" - name: "clulab/fatdynet" - - name: "codacy/codacy-plugins-api" - name: "cornerman/simple-scalajs-requests" - name: "coursier/class-path-util" - - name: "cozydev-pink/snakecase" - - name: "creativescala/doodle-svg" + - name: "creativescala/doodle-explore" - name: "cric96/distributed-frp" - name: "cucumber/action-publish-sbt" - - name: "dacr/drools-scripting" - name: "dacr/json2props" - - name: "dacr/naturalsort" + - name: "dacr/split" - name: "dacr/unittools" - - name: "daenyth/cats-effect-guava" - name: "daghemberg/paut-program" - name: "daghemberg/problemutils" - - name: "damon-v79/cassandra-migration" - - name: "datastrophic-games/dice" - - name: "davenverse/condemned" - name: "davenverse/epimetheus-circuit" - - name: "davenverse/epimetheus-redis4cats" - name: "davenverse/namecase" - - name: "davenverse/natchez-rediculous" - - name: "davidledwards/scalop" + - name: "davenverse/natchez-local" + - name: "davenverse/publicsuffix" - name: "dragonfly-ai/democrossy" - - name: "dragonfly-ai/mesh" - - name: "dvgica/periodic" - name: "eikek/bitpeace" - - name: "eltherion/http4s-timer" - - name: "estrondo/farango" + - name: "errors4s/errors4s-core-scalacheck" + - name: "errors4s/errors4s-http" - name: "estrondo/sweet-mockito" - - name: "fenixedu/fenixedu-scala-sdk" - name: "fgrutsch/akka-persistence-mapdb" + - name: "fiatjaf/nlog" - name: "frawa/inline-files" - - name: "frugalmechanic/fm-html" - - name: "frugalmechanic/fm-http" - - name: "frugalmechanic/fm-json" - name: "gchudnov/mindthegap" - name: "gemini-hlsw/lucuma-jts" - - name: "gemini-hlsw/lucuma-refined" - name: "gemini-hlsw/lucuma-schemas" - name: "giabao/asm-flow" - name: "gnp/zio-data-streams" - name: "gochaorg/json4s3" - - name: "greenfossil/commons-json" - name: "greenfossil/typesafe-config-ext" - - name: "grouzen/zio-apache-arrow" - - name: "guardian/mobile-apps-api-models" - - name: "guidoschmidt17/zio-pgcopy" - - name: "guizmaii-opensource/zio-aes" + - name: "guymers/ceesvee" - name: "guymers/foobie" - name: "gzoller/deploysample" - - name: "gzoller/listzipper" - - name: "h8io/borscht" - name: "herminiogg/dmaog" - name: "herminiogg/label2thesaurus" - - name: "hinadt/hina-cloud-android-plugin" - name: "hireproof/screening" + - name: "hnaderi/named-codec" - name: "hnaderi/scala-readpass" - - name: "hnaderi/yaml4s" - name: "hsci-r/lucene-perfieldpostingsformatordtermvectorscodec" - - name: "hshn/slick-codegen-patch" - - name: "http4s/http4s-tomcat" - name: "hughsimpson/scalameter" - name: "indoorvivants/detective" - name: "indoorvivants/opaque-newtypes" - - name: "indoorvivants/rendition" - - name: "indoorvivants/sn-demangler" - - name: "indoorvivants/subatomic" - name: "indoorvivants/yank" - - name: "ingarabr/gcs-lock" - name: "ingarabr/http4s-cloud-functions" - - name: "ist-dsi/scala-openstack-common-clients" - - name: "j5ik2o/pekko-kinesis" - - name: "j5ik2o/pekko-persistence-dynamodb" - - name: "jamesward/zio-mavencentral" + - name: "ivoah/vial" - name: "janlisse/zio-jwt-validator" - - name: "jelly-rdf/jelly-jvm" - - name: "jkugiya/ulid-scala" - - name: "jodersky/applib" - name: "jodersky/identicon" - name: "jodersky/redicl" - - name: "johnspade/tgbot-utils" - - name: "jphmrst/scala-latex" + - name: "jodersky/ustats" + - name: "johnhungerford/generic-schema" + - name: "joohnnie/retry" + - name: "jphmrst/scala-automata" - name: "jphmrst/scalautils" - - name: "julianpeeters/dc10" - name: "kalin-rudnicki/harness" + - name: "karazinscalausersgroup/mongo-literals" - name: "katrix/minejson" - - name: "kiberstender/fjwt" - - name: "kierendavies/skunk-migrate" + - name: "kevin-lee/just-sysprocess" - name: "kijuky/enumeratum-scalikejdbc" - - name: "killaitis/http4s-cloud-functions" - - name: "kordyjan/ogrodnik" - name: "kordyjan/typelogger" - - name: "kzmake/uuid7s" + - name: "krrrr38/protoquill-finagle-mysql" - name: "l-space/types" - - name: "laserdisc-io/scanamo-circe" - name: "lhns/cats-effect-utils" - - name: "lhns/fs2-functork" + - name: "lhns/doobie-flyway" - name: "lhns/fs2-utils" - - name: "lhns/http4s-errors" - - name: "lhns/http4s-spa" - - name: "lhns/remote-io" + - name: "lhns/nifi-scala" - name: "lhns/scala-commandline" - - name: "lhns/scala-edifact" - name: "lhns/scala-trustmanager-utils" - - name: "lorandszakacs/enclosure" + - name: "liewhite/common" + - name: "likeligood-ab/scala-react" - name: "losizm/bolster" - name: "losizm/ergo" + - name: "losizm/little-cli" - name: "losizm/little-io" - name: "losizm/little-security" - - name: "losizm/little-time" + - name: "losizm/little-sql" - name: "losizm/t2" - - name: "lunatech-labs/lunatech-play-googleopenconnect" - name: "malliina/sbt-utils" - name: "malliina/util-base" - name: "malyszaryczlowiek/foo-repo" - name: "malyszaryczlowiek/kessenger-lib" - - name: "marcinzh/yamlike" - name: "massimosiani/monix-newtypes-cats" - name: "massimosiani/skunk" - name: "mattlangsenkamp/svgbounds" - name: "mdedetrich/scalacheck" - - name: "mercurievv/minuscles" - - name: "mimoguz/layeredfonticon" - - name: "mixql/mixql-engine-stub" - name: "mixql/mixql-protobuf" - name: "mkroli/lpm" - - name: "molarmanful/sclin" - - name: "mpollmeier/colordiff" - - name: "msgpack4z/msgpack4z-jawn" - name: "mutsuhiro6/ulid-scala3" - - name: "narma/tranzactio" + - name: "mvv/typine" + - name: "nafg/cloud-logging-logback-scala" + - name: "nafg/scheduler" + - name: "nafg/simple-router" - name: "narma/zio-docker" - name: "nationalarchives/dr2-preservica-client" - - name: "nicolasfara/ecscala" - - name: "nomadblacky/scalatest-otel-reporter" - - name: "note/dhallj-magnolia" - - name: "ohze/sd-util" - - name: "opaliasystems/opalia-commons-core" + - name: "openmole/container" + - name: "outr/dd-scala" + - name: "outr/moduload" - name: "outr/sendgrid4s" - - name: "palanga/parana" - name: "pbyrne84/scala-case-class-prettification" - name: "pbyrne84/scala-wiremock-api" - - name: "pjfanning/akka-rabbitmq" - - name: "pjfanning/aws-spi-pekko-http" - - name: "pjfanning/pekko-http-session" - - name: "pjfanning/pekko-mock-scheduler" + - name: "permutive-engineering/refreshable" + - name: "phillhenry/dreadnought" + - name: "pjfanning/jackson-module-scala-duration" - name: "pjfanning/scala3-sample-classes" - - name: "polyvariant/caliban-gitlab" - - name: "polyvariant/scodec-java-classfile" + - name: "pmeheut/nscala-java-time" - name: "pureharm/pureharm-core" - - name: "rsemlal/clickhouse4cats" - - name: "rssh/shim--scala-async--dotty-cps-async" - name: "rtyley/rate-limit-status" - name: "rtyley/scala-collection-plus" - name: "ruimo/gh-sonatype-example" - name: "ruimo/scoins" - - name: "rustedbones/pekko-http-avro" - - name: "rustedbones/pekko-http-scalapb" - - name: "rustedbones/pekko-http-thrift" - - name: "sake92/tupson" - name: "sakulk/serval" - name: "sangria-graphql/sangria-marshalling-testkit" - - name: "scala-cli/directive-handler" - - name: "scala-tessella/ring-seq" - - name: "scalatest/scalatestplus-easymock" - - name: "scalatest/scalatestplus-jmock" + - name: "scala-cli/java-class-name" - name: "scf37/filewatch" - - name: "sciss/equal" + - name: "sciss/audiowidgets" - name: "sciss/filecache" + - name: "sciss/log" - name: "sciss/lucrepi" - name: "sciss/model" + - name: "sciss/optional" - name: "sciss/scalacollider-dot" - - name: "sciss/transform4s" + - name: "sciss/scalacollider-if" - name: "sdrafahl/codec" + - name: "sean-ideabank/rudolf" + - name: "shawjef3/tryutils" - name: "shopstic/caliban" - - name: "sideeffffect/zio-doobie" - name: "sinaghaffari/monadicsimplifier" - name: "snowplow/iglu-scala-core" - - name: "swagger-akka-http/swagger-enumeratum-module" - name: "swagger-akka-http/swagger-scala3-enum-module" + - name: "swaldman/audiofluidity-rss" - name: "swaldman/mlog-scala" - - name: "swaldman/texttable" - - name: "swaldman/untemplate" - - name: "sweet-delights/delightful-cron" + - name: "sweet-delights/delightful-typeclasses" + - name: "t-sasaki915/typesafe-scalajs" + - name: "taig/cloud-sql-proxy" + - name: "taig/object-fit" + - name: "taig/scala-linguist" + - name: "taig/scala-pygments" + - name: "taig/skunk-ext" + - name: "tharwaninitin/cache4s" - name: "tharwaninitin/crypto4s" - - name: "thatscalaguy/ulid4cats" - - name: "throup/couldbe" + - name: "timbertson/auditspec" + - name: "timbertson/backpressure-sensor" + - name: "tkrs/mess" - name: "tkrs/mmdb-grpc-scala" - name: "tlsomers/scala-suspendable" + - name: "tmccarthy/ausgeo" - name: "tmccarthy/digest4s" - name: "tmccarthy/scala-db" + - name: "tmccarthy/tmmutils" - name: "todokr/grokschema" - - name: "trace4cats/trace4cats-jaeger-integration-test" - - name: "trace4cats/trace4cats-kafka" + - name: "trace4cats/trace4cats-exporter-http" - name: "trace4cats/trace4cats-natchez" - name: "trace4cats/trace4cats-tail-sampling-extras" - - name: "trace4cats/trace4cats-xray" - - name: "trace4cats/trace4cats-zio" - - name: "typelevel/scalacheck-xml" - name: "typesafeconfigops/typesafeconfigops" - name: "varwise/prometheus-akka-http" - - name: "virtuslab/java-class-name" + - name: "vasilmkd/discipline" - name: "virtuslab/scala-cli-signing" - - name: "vlmiroshnikov/aero3" - name: "vlmiroshnikov/saga" - - name: "windymelt/happy-birthday" + - name: "wiringbits/wiringbits-webapp-utils" - name: "xuwei-k/scala3profile" - - name: "xuwei-k/unused-proto" - name: "yrichika/scalahtml" - - name: "ysthakur/sline" - name: "yurikpanic/zio-postgres" - name: "yurique/embedded-files-macro" - - name: "zio/zio-bson" - name: "zygfryd/scala-zygf-jackshaft" steps: - name: "Git Checkout" uses: actions/checkout@v3 - name: "Build project" uses: ./.github/actions/build-project - timeout-minutes: 60 + timeout-minutes: 360 with: project-name: ${{ matrix.name }} extra-scalac-options: ${{ inputs.extra-scalac-options }} @@ -475,9 +283,9 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-2: + stage-1: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-1 ] + needs: [ setup-build ] continue-on-error: true timeout-minutes: 360 strategy: @@ -487,57 +295,33 @@ jobs: - name: "armanbilge/ip4s" - name: "armanbilge/jawn-fs2" - name: "armanbilge/log4cats" - - name: "armanbilge/sadalsuud" - name: "armanbilge/stratus" - - name: "beangle/ids" - name: "beangle/otk" - - name: "cake-lier/tuples-space-client" - - name: "casehubdk/hxl" - name: "davenverse/epimetheus-rediculous" - - name: "davenverse/fiberlocal" - name: "dwolla/epimetheus-server" + - name: "errors4s/errors4s-core-cats" - name: "frawa/typed-json" - name: "funkode-io/web3-auth" - - name: "gemini-hlsw/giapi-scala" - - name: "gemini-hlsw/lucuma-catalog" - - name: "greenfossil/commons-i18n" - - name: "greenfossil/data-mapping" - name: "hnaderi/portainer-client" - name: "hsci-r/octavo-indexer" - name: "indoorvivants/mdoc-d2" - - name: "ist-dsi/scala-keystone-client" - - name: "jphmrst/scala-automata" - - name: "julianpeeters/dc10-scala" - - name: "julianpeeters/schemabuilder4cats" - - name: "jwojnowski/fs2-aes" - name: "kalin-rudnicki/slyce-zio" - - name: "kovacshuni/circe-config" - name: "mixql/mixql-engine" - name: "pismute/classy-optics" - name: "pureharm/pureharm-config-ciris" - name: "pureharm/pureharm-db-core-jdbc" - name: "pureharm/pureharm-effects-cats" - - name: "pureharm/pureharm-json-circe" - - name: "rtyley/line-break-preserving-line-splitting" - name: "ruimo/csvparser" - name: "ruimo/graphics" - - name: "sangria-graphql/sangria-argonaut" - - name: "sangria-graphql/sangria-json4s-jackson" - name: "sangria-graphql/sangria-json4s-native" - name: "sciss/asyncfile" - - name: "sciss/lucre" - name: "sciss/lucreswing" - name: "sciss/sonogramoverview" - name: "swaldman/failable" - - name: "swaldman/mchange-sysadmin-scala" - - name: "swaldman/unstatic" - name: "sweet-delights/delightful-parsing" - - name: "taig/skunk-ext" - - name: "thatscalaguy/nats4cats" - name: "tmccarthy/tmm-scala-collections" - name: "trace4cats/trace4cats-jaeger" - name: "trace4cats/trace4cats-newrelic" - - name: "trace4cats/trace4cats-opentelemetry" - name: "trace4cats/trace4cats-zipkin" - name: "valencik/textmogrify" - name: "vasilmkd/discipline-specs2" @@ -555,40 +339,20 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-3: + stage-2: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-2 ] + needs: [ setup-build, stage-1 ] continue-on-error: true timeout-minutes: 360 strategy: matrix: include: - - name: "andreamarcolin/oidc4s" - name: "armanbilge/cheshire" - - name: "davenverse/epimetheus-community" - - name: "davenverse/epimetheus-log4cats" - - name: "davenverse/http4s-log4cats-contextlog" - - name: "davenverse/natchez-local" - - name: "firstbirdtech/emergence" - - name: "gemini-hlsw/lucuma-graphql-routes" - name: "gemini-hlsw/lucuma-itc" - - name: "ist-dsi/scala-cinder-client" - - name: "ist-dsi/scala-designate-client" - - name: "ist-dsi/scala-neutron-client" - - name: "ist-dsi/scala-nova-client" - - name: "julianpeeters/dc10-cats" - - name: "julianpeeters/dc10-cats-effect" - - name: "jwojnowski/googlecloud4s" - name: "permutive-engineering/functional-google-clients" - name: "permutive-engineering/odin-contrib" - name: "permutive-engineering/prometheus4cats-contrib" - name: "pureharm/pureharm-testkit" - - name: "qwbarch/snowflake4s" - - name: "sciss/patterns" - - name: "sky-uk/fs2-kafka-topic-loader" - - name: "spilne/spilne" - - name: "taig/cloud-sql-proxy" - - name: "taig/flog" - name: "tmccarthy/fetch" - name: "trace4cats/trace4cats-avro" - name: "trace4cats/trace4cats-cloudtrace" @@ -607,9 +371,9 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-4: + stage-3: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-3 ] + needs: [ setup-build, stage-2 ] continue-on-error: true timeout-minutes: 360 strategy: @@ -631,51 +395,3 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-5: - runs-on: ubuntu-22.04 - needs: [ setup-build, stage-4 ] - continue-on-error: true - timeout-minutes: 360 - strategy: - matrix: - include: - - name: "errors4s/errors4s-core" - - name: "errors4s/errors4s-core-scalacheck" - steps: - - name: "Git Checkout" - uses: actions/checkout@v3 - - name: "Build project" - uses: ./.github/actions/build-project - timeout-minutes: 60 - with: - project-name: ${{ matrix.name }} - extra-scalac-options: ${{ inputs.extra-scalac-options }} - disabled-scalac-options: ${{ inputs.disabled-scalac-options }} - scala-version: ${{ needs.setup-build.outputs.scala-version }} - maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} - elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} - elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-6: - runs-on: ubuntu-22.04 - needs: [ setup-build, stage-5 ] - continue-on-error: true - timeout-minutes: 360 - strategy: - matrix: - include: - - name: "errors4s/errors4s-core-cats" - - name: "errors4s/errors4s-http" - steps: - - name: "Git Checkout" - uses: actions/checkout@v3 - - name: "Build project" - uses: ./.github/actions/build-project - timeout-minutes: 60 - with: - project-name: ${{ matrix.name }} - extra-scalac-options: ${{ inputs.extra-scalac-options }} - disabled-scalac-options: ${{ inputs.disabled-scalac-options }} - scala-version: ${{ needs.setup-build.outputs.scala-version }} - maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} - elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} - elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} diff --git a/coordinator/src/main/scala/GitOps.scala b/coordinator/src/main/scala/GitOps.scala index 64f70269..6f504cec 100644 --- a/coordinator/src/main/scala/GitOps.scala +++ b/coordinator/src/main/scala/GitOps.scala @@ -90,7 +90,7 @@ object Git { ) if (proc.exitCode != 0) System.err.println( - s"Failed to checkout revision $revision: " + proc.out + s"Failed to checkout $repoUrl, revision $revision: " + proc.out .lines() .mkString ) From 44b23ea8e3df8ccdb6c1144c7246fd4b1df3fca7 Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Wed, 8 Nov 2023 00:13:41 +0100 Subject: [PATCH 10/12] Generate config for state of release 3.3.1 --- .github/workflows/buildConfig.json | 86 +++++++++++++++--------------- 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/.github/workflows/buildConfig.json b/.github/workflows/buildConfig.json index 60f5f083..720ec4d2 100644 --- a/.github/workflows/buildConfig.json +++ b/.github/workflows/buildConfig.json @@ -1658,7 +1658,7 @@ "apache/incubator-pekko-persistence-dynamodb":{ "project":"apache/incubator-pekko-persistence-dynamodb", "repoUrl":"https://github.com/apache/incubator-pekko-persistence-dynamodb.git", - "revision":"e4a7eb0aa2b088ac97710aaf6904088512c5807c", + "revision":"3072758a9204d5a40527a5671ca55dc4de0a5401", "version":"HEAD", "targets":"*%*", "config":{ @@ -2021,7 +2021,7 @@ "armanbilge/feral":{ "project":"armanbilge/feral", "repoUrl":"https://github.com/armanbilge/feral.git", - "revision":"1fcb47a4cc0b59d931b19ec2048b0061e9130618", + "revision":"25477072163b07994f3534722c1d7fd5652d5ea2", "version":"0.0-a75a626", "targets":"com.armanbilge%feral-lambda-cloudformation-custom-resource com.armanbilge%feral-lambda com.armanbilge%feral-core com.armanbilge%feral-lambda-events com.armanbilge%feral-lambda-natchez com.armanbilge%feral-lambda-api-gateway-proxy-http4s", "config":{ @@ -2055,7 +2055,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", + "pattern":"val Scala3 = \"3.3.0\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -2064,7 +2064,7 @@ "armanbilge/fs2":{ "project":"armanbilge/fs2", "repoUrl":"https://github.com/armanbilge/fs2.git", - "revision":"2efbedeb8316bf7b83f01964733089df7a883291", + "revision":"609567cb11525e0a20e86d359a63670cddce5ab4", "version":"3.0-136-4a257e0", "targets":"com.armanbilge%fs2-core com.armanbilge%fs2-io com.armanbilge%fs2-reactive-streams", "config":{ @@ -2101,7 +2101,7 @@ "armanbilge/gcp4s":{ "project":"armanbilge/gcp4s", "repoUrl":"https://github.com/armanbilge/gcp4s.git", - "revision":"c18587974c17cfb5d90520ed444ba1c0a6995447", + "revision":"8d9cb99b57c8b6f12d97d92346424bc7b24cc857", "version":"0.1-2e738ad", "targets":"com.armanbilge%gcp4s com.armanbilge%gcp4s-bigquery com.armanbilge%gcp4s-trace", "config":{ @@ -2133,7 +2133,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", + "pattern":"val Scala3 = \"3.3.0\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -2142,7 +2142,7 @@ "armanbilge/ip4s":{ "project":"armanbilge/ip4s", "repoUrl":"https://github.com/armanbilge/ip4s.git", - "revision":"b7fbffad0ed4257d1bafd60c33535a3189a55a52", + "revision":"d71d07244b7ec5f05d9bb7850cb81fe26fe01c04", "version":"3.1.3-83-cfa2ec1", "targets":"com.armanbilge%ip4s-core com.armanbilge%ip4s-test-kit", "config":{ @@ -2257,7 +2257,7 @@ "armanbilge/log4cats":{ "project":"armanbilge/log4cats", "repoUrl":"https://github.com/armanbilge/log4cats.git", - "revision":"36bfbb6bd8d89e5f81575f85c78b0f8616de5c0b", + "revision":"8e5344848a78daa5f70c3837568b745fd125ef9e", "version":"2.5-a595fcf", "targets":"org.typelevel%log4cats-core org.typelevel%log4cats-noop org.typelevel%log4cats-slf4j org.typelevel%log4cats-testing", "config":{ @@ -2289,7 +2289,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", + "pattern":"val Scala3 = \"3.3.0\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -5167,7 +5167,7 @@ "cognitedata/cognite-sdk-scala":{ "project":"cognitedata/cognite-sdk-scala", "repoUrl":"https://github.com/cognitedata/cognite-sdk-scala.git", - "revision":"0b3aecb6ef50c9de6832064bebe78f8339d2f37d", + "revision":"e644b790753a1c3c368a78ec27e55e01582b31e8", "version":"2.5.2", "targets":"com.cognite%cognite-sdk-scala", "config":{ @@ -6219,7 +6219,7 @@ "cucumber/action-publish-sbt":{ "project":"cucumber/action-publish-sbt", "repoUrl":"https://github.com/cucumber/action-publish-sbt.git", - "revision":"315d09c123f986aab02e49d4596c7e14cccb2f90", + "revision":"9ff1fe508332a47deb35500bb05427b9fa1c3ce3", "version":"0.0.30", "targets":"io.cucumber%test-release-automation-sbt", "config":{ @@ -6524,7 +6524,7 @@ "daghemberg/problemutils":{ "project":"daghemberg/problemutils", "repoUrl":"https://github.com/daghemberg/problemutils.git", - "revision":"a8ad8c6b0546b86b8d99daded7a78aa021982aac", + "revision":"152cb1230f9185c0aff433c6e250edc58d90e1ad", "version":"0.1.1", "targets":"io.github.daghemberg%problemutils" }, @@ -7401,7 +7401,7 @@ "davenverse/googleapis-http4s":{ "project":"davenverse/googleapis-http4s", "repoUrl":"https://github.com/davenverse/googleapis-http4s.git", - "revision":"93591c96ed4b93a677da27c3fd84cb4279be7a71", + "revision":"40b1f0769bc9d51cd775827cec840e644911f665", "version":"6.42.1+0.0.5", "targets":"io.chrisdavenport%http4s-grpc-google-cloud-spanner-v1", "config":{ @@ -9533,7 +9533,7 @@ "epfl-lara/lisa":{ "project":"epfl-lara/lisa", "repoUrl":"https://github.com/epfl-lara/lisa.git", - "revision":"5e6f10e91d311b38f1293e2b2d5b979e1360c04e", + "revision":"8281801a1b3bc0fc5737cdeaafe12b913625540d", "version":"HEAD", "targets":"*%*", "config":{ @@ -12683,7 +12683,7 @@ "guidoschmidt17/zio-pgcopy":{ "project":"guidoschmidt17/zio-pgcopy", "repoUrl":"https://github.com/guidoschmidt17/zio-pgcopy.git", - "revision":"658f5c74c0c91803a62c81d5e5d0dd246453e1b4", + "revision":"94c2fa505a7bd04a325419a62c3590bab3dc34af", "version":"0.1.0-RC1", "targets":"com.guidoschmidt17%zio-pgcopy" }, @@ -12774,7 +12774,7 @@ "gvolpe/trading":{ "project":"gvolpe/trading", "repoUrl":"https://github.com/gvolpe/trading.git", - "revision":"5d710a63bf7aec36130d23b7353968cb8edf9522", + "revision":"c2093956971cab3770481b05e139894426cb5dbd", "version":"HEAD", "targets":"*%*", "config":{ @@ -13726,7 +13726,7 @@ "http4s/hpack":{ "project":"http4s/hpack", "repoUrl":"https://github.com/http4s/hpack.git", - "revision":"531e1e25cb4e85459675be165ec8c88453401ab3", + "revision":"953249646c3ff7bd576baefd7d580aca7f191ea5", "version":"1.0.1-56-fcf3848", "targets":"com.armanbilge%hpack", "config":{ @@ -14415,7 +14415,7 @@ "ichoran/kse3":{ "project":"ichoran/kse3", "repoUrl":"https://github.com/ichoran/kse3.git", - "revision":"59d8ffa365166bc3c815f185b6502df7a24867cc", + "revision":"31bbef8d742b6a7d4d89b530ddb54208a146fc87", "version":"0.1.4", "targets":"com.github.ichoran%kse3-eio com.github.ichoran%kse3-flow com.github.ichoran%kse3-maths com.github.ichoran%kse3-testing" }, @@ -15196,7 +15196,7 @@ "inoio/solrs":{ "project":"inoio/solrs", "repoUrl":"https://github.com/inoio/solrs.git", - "revision":"967791496d41d2a2fb22c8c264806bc5e47de070", + "revision":"496cb18f74242a57f37e3a52f7f0487e37d6490f", "version":"2.7.0", "targets":"io.ino%solrs", "config":{ @@ -16993,7 +16993,7 @@ "jvican/dijon":{ "project":"jvican/dijon", "repoUrl":"https://github.com/jvican/dijon.git", - "revision":"07c69c34aef335d6b512c00686a9376339708106", + "revision":"28900eb49a3968f915111394e044defbbc201625", "version":"0.0.0+48-f17bfc3b", "targets":"me.vican.jorge%monix-grpc-codegen me.vican.jorge%monix-grpc-runtime", "config":{ @@ -17420,7 +17420,7 @@ "katrix/perspective":{ "project":"katrix/perspective", "repoUrl":"https://github.com/katrix/perspective.git", - "revision":"5243d8cd126141d7a26f79f4eb9222da0ada4adc", + "revision":"e33ac5c6646d3f9cec9922d4b614f3ef20644c9f", "version":"0.1.0", "targets":"net.katsstuff%perspective-derivation net.katsstuff%perspective" }, @@ -19247,7 +19247,7 @@ "lichess-org/lila":{ "project":"lichess-org/lila", "repoUrl":"https://github.com/lichess-org/lila.git", - "revision":"b89249267ee7f34b4bbc2601382b19bf262edb3d", + "revision":"e09ef8d1893203f5cdb464ded03f3553ff59e697", "version":"HEAD", "targets":"*%*", "config":{ @@ -19284,7 +19284,7 @@ "lichess-org/lila-ws":{ "project":"lichess-org/lila-ws", "repoUrl":"https://github.com/lichess-org/lila-ws.git", - "revision":"af3d6cdf590681cd49fb59a8953efb9edb52e719", + "revision":"b96feda5daf896cbf7c9fa806eb1b62b7e2b2653", "version":"HEAD", "targets":"*%*", "config":{ @@ -19321,7 +19321,7 @@ "lichess-org/playframework-lila":{ "project":"lichess-org/playframework-lila", "repoUrl":"https://github.com/lichess-org/playframework-lila.git", - "revision":"fd39a114845feaca85d6547ce4840d6db29c2add", + "revision":"947c195d4209a261fb480d06595ee921dde7850e", "version":"HEAD", "targets":"*%*", "config":{ @@ -19358,7 +19358,7 @@ "lichess-org/scalachess":{ "project":"lichess-org/scalachess", "repoUrl":"https://github.com/lichess-org/scalachess.git", - "revision":"08457af6849e485bb44ce02d42eace62a5376b37", + "revision":"98ba9057691e808b08a87e110cbfddc299ed2e31", "version":"HEAD", "targets":"*%*", "config":{ @@ -20471,7 +20471,7 @@ "massimosiani/skunk":{ "project":"massimosiani/skunk", "repoUrl":"https://github.com/massimosiani/skunk.git", - "revision":"cbc701015b93281c7b8f7da57541987d6c097cf2", + "revision":"c4f0cd2427f1c04f17ff035a022cd1e5b23bc564", "version":"0.3.2", "targets":"io.github.massimosiani%refined io.github.massimosiani%skunk-circe io.github.massimosiani%skunk-core", "config":{ @@ -20503,7 +20503,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val `scala-3` = \"3.2.2\"", + "pattern":"val `scala-3` = \"3.3.0\"", "replaceWith":"val `scala-3` = \"\"" } ] @@ -20560,7 +20560,7 @@ "max-leuthaeuser/scroll":{ "project":"max-leuthaeuser/scroll", "repoUrl":"https://github.com/max-leuthaeuser/scroll.git", - "revision":"003693cb1bb24fed2715a2bf98594618be0d1141", + "revision":"c57ed37d0e0527db8d7ffd4bed273f80d4f67987", "version":"3.0", "targets":"com.github.max-leuthaeuser%scroll", "config":{ @@ -23835,7 +23835,7 @@ "phillhenry/dreadnought":{ "project":"phillhenry/dreadnought", "repoUrl":"https://github.com/phillhenry/dreadnought.git", - "revision":"673a48408c3a084316b5444cd921bf1d4fb408d6", + "revision":"855599768e7c1c06d3c34fffc599deb2f7805950", "version":"0.1.1", "targets":"uk.co.odinconsultants%dreadnought-examples uk.co.odinconsultants%dreadnought-docker uk.co.odinconsultants%dreadnought-core uk.co.odinconsultants%dreadnought-lib uk.co.odinconsultants%dreadnought uk.co.odinconsultants%dreadnought-it" }, @@ -25634,7 +25634,7 @@ "reactivemongo/reactivemongo-play-json":{ "project":"reactivemongo/reactivemongo-play-json", "repoUrl":"https://github.com/reactivemongo/reactivemongo-play-json.git", - "revision":"e1d41746b23bb9431e19bf0e6f819534e791a0b0", + "revision":"c1c3d8f7222dee0d4fba5fe7340d27b7a8fa5d96", "version":"1.1.0-play29-RC10", "targets":"org.reactivemongo%reactivemongo-play-json-compat", "config":{ @@ -27759,7 +27759,7 @@ "scala-workers/commons-lang3-bridge":{ "project":"scala-workers/commons-lang3-bridge", "repoUrl":"https://github.com/scala-workers/commons-lang3-bridge.git", - "revision":"5ff9b446fc01ff2cb35e95e5acc638eb5988f228", + "revision":"b5c798e3d3f1e0ceeb8fb93e6bf101ca8a6161a0", "version":"0.1.0", "targets":"net.scalax%commons-lang3-bridge" }, @@ -29246,7 +29246,7 @@ "scalax/simple":{ "project":"scalax/simple", "repoUrl":"https://github.com/scalax/simple.git", - "revision":"71d4dcf35ab930f7d5e86e690773fdf33609ae71", + "revision":"5d4f66317a49fcf6f5380e728b9043eb27e1ebc4", "version":"0.0.1-RC1", "targets":"net.scalax.simple%simple-adt net.scalax.simple%simple-ghdmzsk net.scalax.simple%simple-adt-core net.scalax.simple%simple-adt-implemention" }, @@ -31036,7 +31036,7 @@ "sksamuel/avro4s":{ "project":"sksamuel/avro4s", "repoUrl":"https://github.com/sksamuel/avro4s.git", - "revision":"07bb1ff48989a383fb8a38ee45587cf412d38883", + "revision":"e6305e370bb45e4bf392bfa3c6c07c135e42b623", "version":"5.0.4", "targets":"com.sksamuel.avro4s%avro4s-cats com.sksamuel.avro4s%avro4s-core", "config":{ @@ -31545,7 +31545,7 @@ "softwaremill/scala-common":{ "project":"softwaremill/scala-common", "repoUrl":"https://github.com/softwaremill/scala-common.git", - "revision":"96c7308003e26a55cd176ec4be34416044be411a", + "revision":"c1a78d7147288f49f46563e1d102a60d8444ef1f", "version":"2.3.4", "targets":"com.softwaremill.common%tagging", "config":{ @@ -31577,7 +31577,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] @@ -33806,7 +33806,7 @@ "timbertson/backpressure-sensor":{ "project":"timbertson/backpressure-sensor", "repoUrl":"https://github.com/timbertson/backpressure-sensor.git", - "revision":"4d4d42d27a1190aecbd9b79a64e300c306e91252", + "revision":"cbf45af942c8c1310ccc8687600954b249ef4477", "version":"0.5.0", "targets":"net.gfxmonk%backpressure-sensor-monix net.gfxmonk%backpressure-sensor-fs2-cats2 net.gfxmonk%backpressure-sensor-statsd net.gfxmonk%backpressure-sensor-testkit net.gfxmonk%backpressure-sensor-akka net.gfxmonk%backpressure-sensor-core", "config":{ @@ -33838,7 +33838,7 @@ "sourcePatches":[ { "path":"project/src/main/scala/PublishSettings.scala", - "pattern":"val scala3Version = \"3.2.2\"", + "pattern":"val scala3Version = \"3.3.0\"", "replaceWith":"val scala3Version = \"\"" } ] @@ -35702,7 +35702,7 @@ "typelevel/bobcats":{ "project":"typelevel/bobcats", "repoUrl":"https://github.com/typelevel/bobcats.git", - "revision":"d3032a72d5f3593099623af822b91ca7d6176925", + "revision":"10dbd68bd9d423a2093acc2f14509877b02374d2", "version":"0.1-094962b", "targets":"com.armanbilge%bobcats", "config":{ @@ -37665,7 +37665,7 @@ "typesafeconfigops/typesafeconfigops":{ "project":"typesafeconfigops/typesafeconfigops", "repoUrl":"https://github.com/typesafeconfigops/typesafeconfigops.git", - "revision":"d757c4995500d23df42dff241cfbf2ba4d4e56bd", + "revision":"3542c78a3cc26e8befac1a91d9ece1755cf8c369", "version":"1.4.1.1", "targets":"io.github.typesafeconfigops%typesafe-config-ops" }, @@ -38834,7 +38834,7 @@ "wangzaixiang/scala-sql":{ "project":"wangzaixiang/scala-sql", "repoUrl":"https://github.com/wangzaixiang/scala-sql.git", - "revision":"04648b273375712b01abd44e999f7b66bf08fc5a", + "revision":"895b8e2ffbd9d4114a784706c476e257aad9092b", "version":"3.0.0-RC1", "targets":"com.github.wangzaixiang%wsql" }, @@ -39008,7 +39008,7 @@ "wz7982/easysql-scala":{ "project":"wz7982/easysql-scala", "repoUrl":"https://github.com/wz7982/easysql-scala.git", - "revision":"eeb451568cdfefc9a8478dd3d3f836ca4abd4d83", + "revision":"ba79174e09061b337ea2461d12e8c2eedf1c5b32", "version":"1.4.0", "targets":"io.github.wz7982%core io.github.wz7982%jdbc" }, @@ -39520,7 +39520,7 @@ "yakivy/jam":{ "project":"yakivy/jam", "repoUrl":"https://github.com/yakivy/jam.git", - "revision":"73699c2391d3c18ea642082cee8df76b983c0447", + "revision":"0ed9bb602cc9d2a7a6e96bae5b7b38d55c97d3ba", "version":"0.4.0", "targets":"com.github.yakivy%jam-cats com.github.yakivy%jam-core com.github.yakivy%jam-monad", "config":{ @@ -39561,7 +39561,7 @@ "yakivy/poppet":{ "project":"yakivy/poppet", "repoUrl":"https://github.com/yakivy/poppet.git", - "revision":"fd3e1dca6b01b774558de9e153c72a5f0cd7dcdf", + "revision":"a2b5aa24301996838f7cf4e3a7b1244d2fc91775", "version":"0.3.1", "targets":"com.github.yakivy%poppet-circe com.github.yakivy%poppet-core com.github.yakivy%poppet-jackson com.github.yakivy%poppet-upickle", "config":{ From 1d3f7f0ed84a21a7b30916b7cebccbdfc07baf2f Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Wed, 8 Nov 2023 00:13:47 +0100 Subject: [PATCH 11/12] Revert "Generate config for state of release 3.3.1" This reverts commit 44b23ea8e3df8ccdb6c1144c7246fd4b1df3fca7. --- .github/workflows/buildConfig.json | 86 +++++++++++++++--------------- 1 file changed, 43 insertions(+), 43 deletions(-) diff --git a/.github/workflows/buildConfig.json b/.github/workflows/buildConfig.json index 720ec4d2..60f5f083 100644 --- a/.github/workflows/buildConfig.json +++ b/.github/workflows/buildConfig.json @@ -1658,7 +1658,7 @@ "apache/incubator-pekko-persistence-dynamodb":{ "project":"apache/incubator-pekko-persistence-dynamodb", "repoUrl":"https://github.com/apache/incubator-pekko-persistence-dynamodb.git", - "revision":"3072758a9204d5a40527a5671ca55dc4de0a5401", + "revision":"e4a7eb0aa2b088ac97710aaf6904088512c5807c", "version":"HEAD", "targets":"*%*", "config":{ @@ -2021,7 +2021,7 @@ "armanbilge/feral":{ "project":"armanbilge/feral", "repoUrl":"https://github.com/armanbilge/feral.git", - "revision":"25477072163b07994f3534722c1d7fd5652d5ea2", + "revision":"1fcb47a4cc0b59d931b19ec2048b0061e9130618", "version":"0.0-a75a626", "targets":"com.armanbilge%feral-lambda-cloudformation-custom-resource com.armanbilge%feral-lambda com.armanbilge%feral-core com.armanbilge%feral-lambda-events com.armanbilge%feral-lambda-natchez com.armanbilge%feral-lambda-api-gateway-proxy-http4s", "config":{ @@ -2055,7 +2055,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", + "pattern":"val Scala3 = \"3.2.2\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -2064,7 +2064,7 @@ "armanbilge/fs2":{ "project":"armanbilge/fs2", "repoUrl":"https://github.com/armanbilge/fs2.git", - "revision":"609567cb11525e0a20e86d359a63670cddce5ab4", + "revision":"2efbedeb8316bf7b83f01964733089df7a883291", "version":"3.0-136-4a257e0", "targets":"com.armanbilge%fs2-core com.armanbilge%fs2-io com.armanbilge%fs2-reactive-streams", "config":{ @@ -2101,7 +2101,7 @@ "armanbilge/gcp4s":{ "project":"armanbilge/gcp4s", "repoUrl":"https://github.com/armanbilge/gcp4s.git", - "revision":"8d9cb99b57c8b6f12d97d92346424bc7b24cc857", + "revision":"c18587974c17cfb5d90520ed444ba1c0a6995447", "version":"0.1-2e738ad", "targets":"com.armanbilge%gcp4s com.armanbilge%gcp4s-bigquery com.armanbilge%gcp4s-trace", "config":{ @@ -2133,7 +2133,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", + "pattern":"val Scala3 = \"3.2.2\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -2142,7 +2142,7 @@ "armanbilge/ip4s":{ "project":"armanbilge/ip4s", "repoUrl":"https://github.com/armanbilge/ip4s.git", - "revision":"d71d07244b7ec5f05d9bb7850cb81fe26fe01c04", + "revision":"b7fbffad0ed4257d1bafd60c33535a3189a55a52", "version":"3.1.3-83-cfa2ec1", "targets":"com.armanbilge%ip4s-core com.armanbilge%ip4s-test-kit", "config":{ @@ -2257,7 +2257,7 @@ "armanbilge/log4cats":{ "project":"armanbilge/log4cats", "repoUrl":"https://github.com/armanbilge/log4cats.git", - "revision":"8e5344848a78daa5f70c3837568b745fd125ef9e", + "revision":"36bfbb6bd8d89e5f81575f85c78b0f8616de5c0b", "version":"2.5-a595fcf", "targets":"org.typelevel%log4cats-core org.typelevel%log4cats-noop org.typelevel%log4cats-slf4j org.typelevel%log4cats-testing", "config":{ @@ -2289,7 +2289,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0\"", + "pattern":"val Scala3 = \"3.2.2\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -5167,7 +5167,7 @@ "cognitedata/cognite-sdk-scala":{ "project":"cognitedata/cognite-sdk-scala", "repoUrl":"https://github.com/cognitedata/cognite-sdk-scala.git", - "revision":"e644b790753a1c3c368a78ec27e55e01582b31e8", + "revision":"0b3aecb6ef50c9de6832064bebe78f8339d2f37d", "version":"2.5.2", "targets":"com.cognite%cognite-sdk-scala", "config":{ @@ -6219,7 +6219,7 @@ "cucumber/action-publish-sbt":{ "project":"cucumber/action-publish-sbt", "repoUrl":"https://github.com/cucumber/action-publish-sbt.git", - "revision":"9ff1fe508332a47deb35500bb05427b9fa1c3ce3", + "revision":"315d09c123f986aab02e49d4596c7e14cccb2f90", "version":"0.0.30", "targets":"io.cucumber%test-release-automation-sbt", "config":{ @@ -6524,7 +6524,7 @@ "daghemberg/problemutils":{ "project":"daghemberg/problemutils", "repoUrl":"https://github.com/daghemberg/problemutils.git", - "revision":"152cb1230f9185c0aff433c6e250edc58d90e1ad", + "revision":"a8ad8c6b0546b86b8d99daded7a78aa021982aac", "version":"0.1.1", "targets":"io.github.daghemberg%problemutils" }, @@ -7401,7 +7401,7 @@ "davenverse/googleapis-http4s":{ "project":"davenverse/googleapis-http4s", "repoUrl":"https://github.com/davenverse/googleapis-http4s.git", - "revision":"40b1f0769bc9d51cd775827cec840e644911f665", + "revision":"93591c96ed4b93a677da27c3fd84cb4279be7a71", "version":"6.42.1+0.0.5", "targets":"io.chrisdavenport%http4s-grpc-google-cloud-spanner-v1", "config":{ @@ -9533,7 +9533,7 @@ "epfl-lara/lisa":{ "project":"epfl-lara/lisa", "repoUrl":"https://github.com/epfl-lara/lisa.git", - "revision":"8281801a1b3bc0fc5737cdeaafe12b913625540d", + "revision":"5e6f10e91d311b38f1293e2b2d5b979e1360c04e", "version":"HEAD", "targets":"*%*", "config":{ @@ -12683,7 +12683,7 @@ "guidoschmidt17/zio-pgcopy":{ "project":"guidoschmidt17/zio-pgcopy", "repoUrl":"https://github.com/guidoschmidt17/zio-pgcopy.git", - "revision":"94c2fa505a7bd04a325419a62c3590bab3dc34af", + "revision":"658f5c74c0c91803a62c81d5e5d0dd246453e1b4", "version":"0.1.0-RC1", "targets":"com.guidoschmidt17%zio-pgcopy" }, @@ -12774,7 +12774,7 @@ "gvolpe/trading":{ "project":"gvolpe/trading", "repoUrl":"https://github.com/gvolpe/trading.git", - "revision":"c2093956971cab3770481b05e139894426cb5dbd", + "revision":"5d710a63bf7aec36130d23b7353968cb8edf9522", "version":"HEAD", "targets":"*%*", "config":{ @@ -13726,7 +13726,7 @@ "http4s/hpack":{ "project":"http4s/hpack", "repoUrl":"https://github.com/http4s/hpack.git", - "revision":"953249646c3ff7bd576baefd7d580aca7f191ea5", + "revision":"531e1e25cb4e85459675be165ec8c88453401ab3", "version":"1.0.1-56-fcf3848", "targets":"com.armanbilge%hpack", "config":{ @@ -14415,7 +14415,7 @@ "ichoran/kse3":{ "project":"ichoran/kse3", "repoUrl":"https://github.com/ichoran/kse3.git", - "revision":"31bbef8d742b6a7d4d89b530ddb54208a146fc87", + "revision":"59d8ffa365166bc3c815f185b6502df7a24867cc", "version":"0.1.4", "targets":"com.github.ichoran%kse3-eio com.github.ichoran%kse3-flow com.github.ichoran%kse3-maths com.github.ichoran%kse3-testing" }, @@ -15196,7 +15196,7 @@ "inoio/solrs":{ "project":"inoio/solrs", "repoUrl":"https://github.com/inoio/solrs.git", - "revision":"496cb18f74242a57f37e3a52f7f0487e37d6490f", + "revision":"967791496d41d2a2fb22c8c264806bc5e47de070", "version":"2.7.0", "targets":"io.ino%solrs", "config":{ @@ -16993,7 +16993,7 @@ "jvican/dijon":{ "project":"jvican/dijon", "repoUrl":"https://github.com/jvican/dijon.git", - "revision":"28900eb49a3968f915111394e044defbbc201625", + "revision":"07c69c34aef335d6b512c00686a9376339708106", "version":"0.0.0+48-f17bfc3b", "targets":"me.vican.jorge%monix-grpc-codegen me.vican.jorge%monix-grpc-runtime", "config":{ @@ -17420,7 +17420,7 @@ "katrix/perspective":{ "project":"katrix/perspective", "repoUrl":"https://github.com/katrix/perspective.git", - "revision":"e33ac5c6646d3f9cec9922d4b614f3ef20644c9f", + "revision":"5243d8cd126141d7a26f79f4eb9222da0ada4adc", "version":"0.1.0", "targets":"net.katsstuff%perspective-derivation net.katsstuff%perspective" }, @@ -19247,7 +19247,7 @@ "lichess-org/lila":{ "project":"lichess-org/lila", "repoUrl":"https://github.com/lichess-org/lila.git", - "revision":"e09ef8d1893203f5cdb464ded03f3553ff59e697", + "revision":"b89249267ee7f34b4bbc2601382b19bf262edb3d", "version":"HEAD", "targets":"*%*", "config":{ @@ -19284,7 +19284,7 @@ "lichess-org/lila-ws":{ "project":"lichess-org/lila-ws", "repoUrl":"https://github.com/lichess-org/lila-ws.git", - "revision":"b96feda5daf896cbf7c9fa806eb1b62b7e2b2653", + "revision":"af3d6cdf590681cd49fb59a8953efb9edb52e719", "version":"HEAD", "targets":"*%*", "config":{ @@ -19321,7 +19321,7 @@ "lichess-org/playframework-lila":{ "project":"lichess-org/playframework-lila", "repoUrl":"https://github.com/lichess-org/playframework-lila.git", - "revision":"947c195d4209a261fb480d06595ee921dde7850e", + "revision":"fd39a114845feaca85d6547ce4840d6db29c2add", "version":"HEAD", "targets":"*%*", "config":{ @@ -19358,7 +19358,7 @@ "lichess-org/scalachess":{ "project":"lichess-org/scalachess", "repoUrl":"https://github.com/lichess-org/scalachess.git", - "revision":"98ba9057691e808b08a87e110cbfddc299ed2e31", + "revision":"08457af6849e485bb44ce02d42eace62a5376b37", "version":"HEAD", "targets":"*%*", "config":{ @@ -20471,7 +20471,7 @@ "massimosiani/skunk":{ "project":"massimosiani/skunk", "repoUrl":"https://github.com/massimosiani/skunk.git", - "revision":"c4f0cd2427f1c04f17ff035a022cd1e5b23bc564", + "revision":"cbc701015b93281c7b8f7da57541987d6c097cf2", "version":"0.3.2", "targets":"io.github.massimosiani%refined io.github.massimosiani%skunk-circe io.github.massimosiani%skunk-core", "config":{ @@ -20503,7 +20503,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val `scala-3` = \"3.3.0\"", + "pattern":"val `scala-3` = \"3.2.2\"", "replaceWith":"val `scala-3` = \"\"" } ] @@ -20560,7 +20560,7 @@ "max-leuthaeuser/scroll":{ "project":"max-leuthaeuser/scroll", "repoUrl":"https://github.com/max-leuthaeuser/scroll.git", - "revision":"c57ed37d0e0527db8d7ffd4bed273f80d4f67987", + "revision":"003693cb1bb24fed2715a2bf98594618be0d1141", "version":"3.0", "targets":"com.github.max-leuthaeuser%scroll", "config":{ @@ -23835,7 +23835,7 @@ "phillhenry/dreadnought":{ "project":"phillhenry/dreadnought", "repoUrl":"https://github.com/phillhenry/dreadnought.git", - "revision":"855599768e7c1c06d3c34fffc599deb2f7805950", + "revision":"673a48408c3a084316b5444cd921bf1d4fb408d6", "version":"0.1.1", "targets":"uk.co.odinconsultants%dreadnought-examples uk.co.odinconsultants%dreadnought-docker uk.co.odinconsultants%dreadnought-core uk.co.odinconsultants%dreadnought-lib uk.co.odinconsultants%dreadnought uk.co.odinconsultants%dreadnought-it" }, @@ -25634,7 +25634,7 @@ "reactivemongo/reactivemongo-play-json":{ "project":"reactivemongo/reactivemongo-play-json", "repoUrl":"https://github.com/reactivemongo/reactivemongo-play-json.git", - "revision":"c1c3d8f7222dee0d4fba5fe7340d27b7a8fa5d96", + "revision":"e1d41746b23bb9431e19bf0e6f819534e791a0b0", "version":"1.1.0-play29-RC10", "targets":"org.reactivemongo%reactivemongo-play-json-compat", "config":{ @@ -27759,7 +27759,7 @@ "scala-workers/commons-lang3-bridge":{ "project":"scala-workers/commons-lang3-bridge", "repoUrl":"https://github.com/scala-workers/commons-lang3-bridge.git", - "revision":"b5c798e3d3f1e0ceeb8fb93e6bf101ca8a6161a0", + "revision":"5ff9b446fc01ff2cb35e95e5acc638eb5988f228", "version":"0.1.0", "targets":"net.scalax%commons-lang3-bridge" }, @@ -29246,7 +29246,7 @@ "scalax/simple":{ "project":"scalax/simple", "repoUrl":"https://github.com/scalax/simple.git", - "revision":"5d4f66317a49fcf6f5380e728b9043eb27e1ebc4", + "revision":"71d4dcf35ab930f7d5e86e690773fdf33609ae71", "version":"0.0.1-RC1", "targets":"net.scalax.simple%simple-adt net.scalax.simple%simple-ghdmzsk net.scalax.simple%simple-adt-core net.scalax.simple%simple-adt-implemention" }, @@ -31036,7 +31036,7 @@ "sksamuel/avro4s":{ "project":"sksamuel/avro4s", "repoUrl":"https://github.com/sksamuel/avro4s.git", - "revision":"e6305e370bb45e4bf392bfa3c6c07c135e42b623", + "revision":"07bb1ff48989a383fb8a38ee45587cf412d38883", "version":"5.0.4", "targets":"com.sksamuel.avro4s%avro4s-cats com.sksamuel.avro4s%avro4s-core", "config":{ @@ -31545,7 +31545,7 @@ "softwaremill/scala-common":{ "project":"softwaremill/scala-common", "repoUrl":"https://github.com/softwaremill/scala-common.git", - "revision":"c1a78d7147288f49f46563e1d102a60d8444ef1f", + "revision":"96c7308003e26a55cd176ec4be34416044be411a", "version":"2.3.4", "targets":"com.softwaremill.common%tagging", "config":{ @@ -31577,7 +31577,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.3.0\"", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] @@ -33806,7 +33806,7 @@ "timbertson/backpressure-sensor":{ "project":"timbertson/backpressure-sensor", "repoUrl":"https://github.com/timbertson/backpressure-sensor.git", - "revision":"cbf45af942c8c1310ccc8687600954b249ef4477", + "revision":"4d4d42d27a1190aecbd9b79a64e300c306e91252", "version":"0.5.0", "targets":"net.gfxmonk%backpressure-sensor-monix net.gfxmonk%backpressure-sensor-fs2-cats2 net.gfxmonk%backpressure-sensor-statsd net.gfxmonk%backpressure-sensor-testkit net.gfxmonk%backpressure-sensor-akka net.gfxmonk%backpressure-sensor-core", "config":{ @@ -33838,7 +33838,7 @@ "sourcePatches":[ { "path":"project/src/main/scala/PublishSettings.scala", - "pattern":"val scala3Version = \"3.3.0\"", + "pattern":"val scala3Version = \"3.2.2\"", "replaceWith":"val scala3Version = \"\"" } ] @@ -35702,7 +35702,7 @@ "typelevel/bobcats":{ "project":"typelevel/bobcats", "repoUrl":"https://github.com/typelevel/bobcats.git", - "revision":"10dbd68bd9d423a2093acc2f14509877b02374d2", + "revision":"d3032a72d5f3593099623af822b91ca7d6176925", "version":"0.1-094962b", "targets":"com.armanbilge%bobcats", "config":{ @@ -37665,7 +37665,7 @@ "typesafeconfigops/typesafeconfigops":{ "project":"typesafeconfigops/typesafeconfigops", "repoUrl":"https://github.com/typesafeconfigops/typesafeconfigops.git", - "revision":"3542c78a3cc26e8befac1a91d9ece1755cf8c369", + "revision":"d757c4995500d23df42dff241cfbf2ba4d4e56bd", "version":"1.4.1.1", "targets":"io.github.typesafeconfigops%typesafe-config-ops" }, @@ -38834,7 +38834,7 @@ "wangzaixiang/scala-sql":{ "project":"wangzaixiang/scala-sql", "repoUrl":"https://github.com/wangzaixiang/scala-sql.git", - "revision":"895b8e2ffbd9d4114a784706c476e257aad9092b", + "revision":"04648b273375712b01abd44e999f7b66bf08fc5a", "version":"3.0.0-RC1", "targets":"com.github.wangzaixiang%wsql" }, @@ -39008,7 +39008,7 @@ "wz7982/easysql-scala":{ "project":"wz7982/easysql-scala", "repoUrl":"https://github.com/wz7982/easysql-scala.git", - "revision":"ba79174e09061b337ea2461d12e8c2eedf1c5b32", + "revision":"eeb451568cdfefc9a8478dd3d3f836ca4abd4d83", "version":"1.4.0", "targets":"io.github.wz7982%core io.github.wz7982%jdbc" }, @@ -39520,7 +39520,7 @@ "yakivy/jam":{ "project":"yakivy/jam", "repoUrl":"https://github.com/yakivy/jam.git", - "revision":"0ed9bb602cc9d2a7a6e96bae5b7b38d55c97d3ba", + "revision":"73699c2391d3c18ea642082cee8df76b983c0447", "version":"0.4.0", "targets":"com.github.yakivy%jam-cats com.github.yakivy%jam-core com.github.yakivy%jam-monad", "config":{ @@ -39561,7 +39561,7 @@ "yakivy/poppet":{ "project":"yakivy/poppet", "repoUrl":"https://github.com/yakivy/poppet.git", - "revision":"a2b5aa24301996838f7cf4e3a7b1244d2fc91775", + "revision":"fd3e1dca6b01b774558de9e153c72a5f0cd7dcdf", "version":"0.3.1", "targets":"com.github.yakivy%poppet-circe com.github.yakivy%poppet-core com.github.yakivy%poppet-jackson com.github.yakivy%poppet-upickle", "config":{ From 20b059c8da8d86da3043af3450df2e80f4af3881 Mon Sep 17 00:00:00 2001 From: Wojciech Mazur Date: Wed, 8 Nov 2023 00:14:01 +0100 Subject: [PATCH 12/12] Revert "Create build plan for the state of ecosystem at the day of Scala 3.3.0 release" This reverts commit 0565ed97947e537509276ecee547bd21ba579032. --- .github/workflows/buildConfig.json | 21535 ++++++++++++++-------- .github/workflows/buildPlan-A.yaml | 852 +- .github/workflows/buildPlan-B.yaml | 448 +- coordinator/src/main/scala/GitOps.scala | 2 +- 4 files changed, 15132 insertions(+), 7705 deletions(-) diff --git a/.github/workflows/buildConfig.json b/.github/workflows/buildConfig.json index 60f5f083..37c62aae 100644 --- a/.github/workflows/buildConfig.json +++ b/.github/workflows/buildConfig.json @@ -76,8 +76,8 @@ "47degrees/github4s":{ "project":"47degrees/github4s", "repoUrl":"https://github.com/47degrees/github4s.git", - "revision":"v0.32.0", - "version":"0.32.0", + "revision":"v0.32.1", + "version":"0.32.1", "targets":"com.47deg%github4s", "config":{ "projects":{ @@ -277,9 +277,9 @@ "7mind/izumi":{ "project":"7mind/izumi", "repoUrl":"https://github.com/7mind/izumi.git", - "revision":"v1.1.0-M23", - "version":"1.1.0-M23", - "targets":"io.7mind.izumi%distage-framework io.7mind.izumi%distage-extension-plugins io.7mind.izumi%distage-testkit-core io.7mind.izumi%fundamentals-functional io.7mind.izumi%fundamentals-platform io.7mind.izumi%distage-framework-docker io.7mind.izumi%distage-framework-api io.7mind.izumi%fundamentals-collections io.7mind.izumi%logstage-core io.7mind.izumi%distage-core-proxy-bytebuddy io.7mind.izumi%distage-extension-config io.7mind.izumi%fundamentals-reflection io.7mind.izumi%fundamentals-literals io.7mind.izumi%fundamentals-language io.7mind.izumi%distage-extension-logstage io.7mind.izumi%distage-core-api io.7mind.izumi%fundamentals-bio io.7mind.izumi%logstage-adapter-slf4j io.7mind.izumi%logstage-rendering-circe io.7mind.izumi%fundamentals-json-circe io.7mind.izumi%fundamentals-orphans io.7mind.izumi%distage-testkit-scalatest io.7mind.izumi%distage-core io.7mind.izumi%logstage-sink-slf4j", + "revision":"v1.2.0", + "version":"1.2.0", + "targets":"io.7mind.izumi%distage-framework io.7mind.izumi%idealingua-v1-runtime-rpc-csharp io.7mind.izumi%distage-extension-plugins io.7mind.izumi%distage-testkit-core io.7mind.izumi%idealingua-v1-runtime-rpc-typescript io.7mind.izumi%fundamentals-functional io.7mind.izumi%fundamentals-platform io.7mind.izumi%distage-framework-docker io.7mind.izumi%distage-framework-api io.7mind.izumi%fundamentals-collections io.7mind.izumi%logstage-core io.7mind.izumi%distage-core-proxy-bytebuddy io.7mind.izumi%idealingua-v1-test-defs io.7mind.izumi%distage-extension-config io.7mind.izumi%fundamentals-reflection io.7mind.izumi%fundamentals-literals io.7mind.izumi%fundamentals-language io.7mind.izumi%distage-extension-logstage io.7mind.izumi%distage-core-api io.7mind.izumi%idealingua-v1-runtime-rpc-http4s io.7mind.izumi%fundamentals-bio io.7mind.izumi%idealingua-v1-runtime-rpc-scala io.7mind.izumi%logstage-adapter-slf4j io.7mind.izumi%logstage-rendering-circe io.7mind.izumi%fundamentals-json-circe io.7mind.izumi%idealingua-v1-runtime-rpc-go io.7mind.izumi%fundamentals-orphans io.7mind.izumi%distage-testkit-scalatest io.7mind.izumi%idealingua-v1-model io.7mind.izumi%distage-core io.7mind.izumi%logstage-sink-slf4j", "config":{ "projects":{ "exclude":[ @@ -382,8 +382,8 @@ "ablearthy/td-types":{ "project":"ablearthy/td-types", "repoUrl":"https://github.com/ablearthy/td-types.git", - "revision":"v1.8.10", - "version":"1.8.10", + "revision":"v1.8.10-2", + "version":"1.8.10-2", "targets":"io.github.ablearthy%td-types", "config":{ "projects":{ @@ -461,10 +461,47 @@ ] } }, + "absaoss/absa-shaded-jackson-module-scala":{ + "project":"absaoss/absa-shaded-jackson-module-scala", + "repoUrl":"https://github.com/absaoss/absa-shaded-jackson-module-scala.git", + "revision":"v0.0.2", + "version":"0.0.2", + "targets":"za.co.absa.shaded%absa-shaded-jackson-module-scala", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"disabled", + "sourcePatches":[ + + ] + } + }, "acsgh/scala-common":{ "project":"acsgh/scala-common", "repoUrl":"https://github.com/acsgh/scala-common.git", - "revision":"60e60a7abf2de8cf61acc010754772028b8bfb4b", + "revision":"", "version":"1.3.0", "targets":"com.github.acsgh.common.scala%core" }, @@ -478,8 +515,8 @@ "ahjohannessen/sec":{ "project":"ahjohannessen/sec", "repoUrl":"https://github.com/ahjohannessen/sec.git", - "revision":"v0.26.0", - "version":"0.26.0", + "revision":"v0.40.0", + "version":"0.40.0", "targets":"io.github.ahjohannessen%sec-core io.github.ahjohannessen%sec-fs2 io.github.ahjohannessen%sec-fs2-client io.github.ahjohannessen%sec-tsc", "config":{ "projects":{ @@ -510,7 +547,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", + "pattern":"val Scala3 = \"3.3.1\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -560,8 +597,8 @@ "ahjohannessen/unum":{ "project":"ahjohannessen/unum", "repoUrl":"https://github.com/ahjohannessen/unum.git", - "revision":"v1.1.1", - "version":"1.1.1", + "revision":"v1.2.0", + "version":"1.2.0", "targets":"io.github.ahjohannessen%unum", "config":{ "projects":{ @@ -592,12 +629,19 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.1\"", + "pattern":"val Scala3 = \"3.3.0\"", "replaceWith":"val Scala3 = \"\"" } ] } }, + "aholland/aholland-scala-utils":{ + "project":"aholland/aholland-scala-utils", + "repoUrl":"https://github.com/aholland/aholland-scala-utils.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"io.github.aholland%utils" + }, "aiyanbo/scala-i18n":{ "project":"aiyanbo/scala-i18n", "repoUrl":"https://github.com/aiyanbo/scala-i18n.git", @@ -639,11 +683,48 @@ ] } }, + "ajozwik/pekko-smtp-server":{ + "project":"ajozwik/pekko-smtp-server", + "repoUrl":"https://github.com/ajozwik/pekko-smtp-server.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.github.ajozwik%pekko-smtp com.github.ajozwik%smtp-util", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, "ajozwik/protoquill-generic":{ "project":"ajozwik/protoquill-generic", "repoUrl":"https://github.com/ajozwik/protoquill-generic.git", - "revision":"v0.5.6", - "version":"0.5.6", + "revision":"v0.5.8", + "version":"0.5.8", "targets":"com.github.ajozwik%repository-monad com.github.ajozwik%repository com.github.ajozwik%repository-jdbc-monad com.github.ajozwik%repository-doobie com.github.ajozwik%repository-cassandra com.github.ajozwik%quill-jdbc-zio", "config":{ "projects":{ @@ -680,8 +761,8 @@ "akiomik/cats-nio-file":{ "project":"akiomik/cats-nio-file", "repoUrl":"https://github.com/akiomik/cats-nio-file.git", - "revision":"v1.7.0", - "version":"1.7.0", + "revision":"v1.10.0", + "version":"1.10.0", "targets":"io.github.akiomik%cats-nio-file", "config":{ "projects":{ @@ -754,8 +835,8 @@ "akka/akka":{ "project":"akka/akka", "repoUrl":"https://github.com/akka/akka.git", - "revision":"v2.8.2", - "version":"2.8.2", + "revision":"v2.9.0-M2", + "version":"2.9.0-M2", "targets":"com.typesafe.akka%akka-multi-node-testkit com.typesafe.akka%akka-bom com.typesafe.akka%akka-coordination com.typesafe.akka%akka-persistence-tck com.typesafe.akka%akka-actor com.typesafe.akka%akka-cluster-sharding-typed com.typesafe.akka%akka-cluster com.typesafe.akka%akka-protobuf-v3 com.typesafe.akka%akka-distributed-data com.typesafe.akka%akka-stream com.typesafe.akka%akka-pki com.typesafe.akka%akka-stream-typed com.typesafe.akka%akka-persistence com.typesafe.akka%akka-cluster-sharding com.typesafe.akka%akka-cluster-metrics com.typesafe.akka%akka-discovery com.typesafe.akka%akka-actor-typed com.typesafe.akka%akka-persistence-query com.typesafe.akka%akka-slf4j com.typesafe.akka%akka-persistence-typed com.typesafe.akka%akka-remote com.typesafe.akka%akka-persistence-testkit com.typesafe.akka%akka-cluster-typed com.typesafe.akka%akka-actor-testkit-typed com.typesafe.akka%akka-testkit com.typesafe.akka%akka-serialization-jackson com.typesafe.akka%akka-stream-testkit com.typesafe.akka%akka-cluster-tools", "config":{ "projects":{ @@ -787,7 +868,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3Version = \"3.2.2\"", + "pattern":"val scala3Version = \"3.3.1\"", "replaceWith":"val scala3Version = \"\"" } ] @@ -796,8 +877,8 @@ "akka/akka-diagnostics":{ "project":"akka/akka-diagnostics", "repoUrl":"https://github.com/akka/akka-diagnostics.git", - "revision":"v2.0.0", - "version":"2.0.0", + "revision":"v2.0.1", + "version":"2.0.1", "targets":"com.lightbend.akka%akka-diagnostics", "config":{ "projects":{ @@ -837,8 +918,8 @@ "akka/akka-grpc":{ "project":"akka/akka-grpc", "repoUrl":"https://github.com/akka/akka-grpc.git", - "revision":"v2.3.2", - "version":"2.3.2", + "revision":"v2.3.4", + "version":"2.3.4", "targets":"com.lightbend.akka.grpc%akka-grpc-interop-tests com.lightbend.akka.grpc%akka-grpc-runtime", "config":{ "projects":{ @@ -878,8 +959,8 @@ "akka/akka-http":{ "project":"akka/akka-http", "repoUrl":"https://github.com/akka/akka-http.git", - "revision":"v10.5.2", - "version":"10.5.2", + "revision":"v10.5.3", + "version":"10.5.3", "targets":"com.typesafe.akka%akka-http-spray-json com.typesafe.akka%akka-parsing com.typesafe.akka%akka-http2-support com.typesafe.akka%akka-http-testkit com.typesafe.akka%akka-http-xml com.typesafe.akka%akka-http com.typesafe.akka%akka-http-bom com.typesafe.akka%akka-http-core com.typesafe.akka%akka-http-caching com.typesafe.akka%akka-http-jackson", "config":{ "projects":{ @@ -919,8 +1000,8 @@ "akka/akka-management":{ "project":"akka/akka-management", "repoUrl":"https://github.com/akka/akka-management.git", - "revision":"v1.4.0", - "version":"1.4.0", + "revision":"v1.5.0-M1", + "version":"1.5.0-M1", "targets":"com.lightbend.akka.management%akka-management-pki com.lightbend.akka.management%akka-rolling-update-kubernetes com.lightbend.akka.management%akka-management-loglevels-logback com.lightbend.akka.management%akka-management-loglevels-log4j2 com.lightbend.akka.management%akka-lease-kubernetes com.lightbend.akka.management%akka-management com.lightbend.akka.management%akka-management-cluster-http com.lightbend.akka.management%akka-management-cluster-bootstrap", "config":{ "projects":{ @@ -951,7 +1032,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val Scala3 = \"3.2.2\"", + "pattern":"val Scala3 = \"3.3.1\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -1001,8 +1082,8 @@ "akka/akka-persistence-r2dbc":{ "project":"akka/akka-persistence-r2dbc", "repoUrl":"https://github.com/akka/akka-persistence-r2dbc.git", - "revision":"v1.1.0", - "version":"1.1.0", + "revision":"v1.2.0-M5", + "version":"1.2.0-M5", "targets":"com.lightbend.akka%akka-persistence-r2dbc", "config":{ "projects":{ @@ -1042,9 +1123,9 @@ "akka/akka-projection":{ "project":"akka/akka-projection", "repoUrl":"https://github.com/akka/akka-projection.git", - "revision":"v1.4.0", - "version":"1.4.0", - "targets":"com.lightbend.akka%akka-projection-jdbc com.lightbend.akka%akka-projection-r2dbc com.lightbend.akka%akka-projection-kafka com.lightbend.akka%akka-projection-eventsourced com.lightbend.akka%akka-projection-core com.lightbend.akka%akka-projection-grpc com.lightbend.akka%akka-projection-durable-state com.lightbend.akka%akka-projection-testkit", + "revision":"v1.5.0-M4", + "version":"1.5.0-M4", + "targets":"com.lightbend.akka%akka-projection-jdbc com.lightbend.akka%akka-projection-r2dbc com.lightbend.akka%akka-projection-kafka com.lightbend.akka%akka-projection-eventsourced com.lightbend.akka%akka-projection-core com.lightbend.akka%akka-projection-grpc com.lightbend.akka%akka-projection-durable-state com.lightbend.akka%akka-projection-testkit com.lightbend.akka%akka-projection-cassandra", "config":{ "projects":{ "exclude":[ @@ -1083,8 +1164,8 @@ "akka/alpakka":{ "project":"akka/alpakka", "repoUrl":"https://github.com/akka/alpakka.git", - "revision":"v6.0.1", - "version":"6.0.1", + "revision":"v6.0.2", + "version":"6.0.2", "targets":"com.lightbend.akka%akka-stream-alpakka-amqp com.lightbend.akka%akka-stream-alpakka-avroparquet com.lightbend.akka%akka-stream-alpakka-s3 com.lightbend.akka%akka-stream-alpakka-cassandra com.lightbend.akka%akka-stream-alpakka-csv", "config":{ "projects":{ @@ -1165,8 +1246,8 @@ "alejandrohdezma/dummy":{ "project":"alejandrohdezma/dummy", "repoUrl":"https://github.com/alejandrohdezma/dummy.git", - "revision":"v0.4.0", - "version":"0.4.0", + "revision":"v0.5.1", + "version":"0.5.1", "targets":"com.alejandrohdezma%dummy", "config":{ "projects":{ @@ -1206,8 +1287,8 @@ "alejandrohdezma/http4s-munit":{ "project":"alejandrohdezma/http4s-munit", "repoUrl":"https://github.com/alejandrohdezma/http4s-munit.git", - "revision":"v0.15.0", - "version":"0.15.0", + "revision":"v0.15.1", + "version":"0.15.1", "targets":"com.alejandrohdezma%http4s-munit", "config":{ "projects":{ @@ -1238,7 +1319,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.3\"", + "pattern":"val Scala3 = \"3.3.0\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -1247,8 +1328,8 @@ "alejandrohdezma/sbt-mdoc-toc":{ "project":"alejandrohdezma/sbt-mdoc-toc", "repoUrl":"https://github.com/alejandrohdezma/sbt-mdoc-toc.git", - "revision":"v0.4.0", - "version":"0.4.0", + "revision":"v0.4.1", + "version":"0.4.1", "targets":"com.alejandrohdezma%mdoc-toc-generator", "config":{ "projects":{ @@ -1284,8 +1365,8 @@ "alejandrohdezma/sbt-propagate":{ "project":"alejandrohdezma/sbt-propagate", "repoUrl":"https://github.com/alejandrohdezma/sbt-propagate.git", - "revision":"v0.2.0", - "version":"0.2.0", + "revision":"v0.2.1", + "version":"0.2.1", "targets":"com.alejandrohdezma%resource-generator", "config":{ "projects":{ @@ -1321,8 +1402,8 @@ "alexarchambault/case-app":{ "project":"alexarchambault/case-app", "repoUrl":"https://github.com/alexarchambault/case-app.git", - "revision":"v2.1.0-M24", - "version":"2.1.0-M24", + "revision":"v2.1.0-M26", + "version":"2.1.0-M26", "targets":"com.github.alexarchambault%case-app-annotations com.github.alexarchambault%case-app-cats-effect-2 com.github.alexarchambault%case-app com.github.alexarchambault%case-app-cats com.github.alexarchambault%case-app-util", "config":{ "projects":{ @@ -1353,7 +1434,7 @@ "sourcePatches":[ { "path":"project/Settings.scala", - "pattern":"def scala3 = \"3.2.1\"", + "pattern":"def scala3 = \"3.3.1\"", "replaceWith":"def scala3 = \"\"" } ] @@ -1376,7 +1457,7 @@ "alexdupre/coinpayments-scala":{ "project":"alexdupre/coinpayments-scala", "repoUrl":"https://github.com/alexdupre/coinpayments-scala.git", - "revision":"199178811017ae2bc9b0832edc7f9e54cf15853f", + "revision":"", "version":"1.3", "targets":"com.alexdupre%coinpayments" }, @@ -1390,9 +1471,9 @@ "almond-sh/almond":{ "project":"almond-sh/almond", "repoUrl":"https://github.com/almond-sh/almond.git", - "revision":"v0.13.14", - "version":"0.13.14", - "targets":"sh.almond%logger sh.almond%toree-hooks", + "revision":"v0.14.0-RC14", + "version":"0.14.0-RC14", + "targets":"sh.almond%shared-directives sh.almond%logger sh.almond%coursier-logger sh.almond%toree-hooks sh.almond%launcher", "config":{ "projects":{ "exclude":[ @@ -1403,7 +1484,44 @@ } }, "java":{ - "version":"8" + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "alterationx10/opinionated-zio":{ + "project":"alterationx10/opinionated-zio", + "repoUrl":"https://github.com/alterationx10/opinionated-zio.git", + "revision":"v0.0.4", + "version":"0.0.4", + "targets":"com.alterationx10%opinionated-zio com.alterationx10%opinionated-zio-test", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" }, "sbt":{ "commands":[ @@ -1427,8 +1545,8 @@ "altoo-ag/akka-kryo-serialization":{ "project":"altoo-ag/akka-kryo-serialization", "repoUrl":"https://github.com/altoo-ag/akka-kryo-serialization.git", - "revision":"v2.5.0", - "version":"2.5.0", + "revision":"v2.5.1", + "version":"2.5.1", "targets":"io.altoo%akka-kryo-serialization io.altoo%akka-kryo-serialization-typed", "config":{ "projects":{ @@ -1461,6 +1579,80 @@ ] } }, + "altoo-ag/pekko-kryo-serialization":{ + "project":"altoo-ag/pekko-kryo-serialization", + "repoUrl":"https://github.com/altoo-ag/pekko-kryo-serialization.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"io.altoo%pekko-kryo-serialization io.altoo%pekko-kryo-serialization-typed", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"21" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "altoo-ag/scala-kryo-serialization":{ + "project":"altoo-ag/scala-kryo-serialization", + "repoUrl":"https://github.com/altoo-ag/scala-kryo-serialization.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"io.altoo%scala-kryo-serialization", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"21" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, "analogweb/analogweb-scala":{ "project":"analogweb/analogweb-scala", "repoUrl":"https://github.com/analogweb/analogweb-scala.git", @@ -1498,6 +1690,13 @@ ] } }, + "andimiller/decline-completion":{ + "project":"andimiller/decline-completion", + "repoUrl":"https://github.com/andimiller/decline-completion.git", + "revision":"0.0.3", + "version":"0.0.3", + "targets":"net.andimiller%decline-completion" + }, "andimiller/hedgehogs":{ "project":"andimiller/hedgehogs", "repoUrl":"https://github.com/andimiller/hedgehogs.git", @@ -1584,8 +1783,8 @@ "ant8e/uuid4cats-effect":{ "project":"ant8e/uuid4cats-effect", "repoUrl":"https://github.com/ant8e/uuid4cats-effect.git", - "revision":"v0.2.0", - "version":"0.2.0", + "revision":"v0.3.1", + "version":"0.3.1", "targets":"tech.ant8e%uuid4cats-effect", "config":{ "projects":{ @@ -1618,6 +1817,43 @@ ] } }, + "antognini/type-safe-equality":{ + "project":"antognini/type-safe-equality", + "repoUrl":"https://github.com/antognini/type-safe-equality.git", + "revision":"0.6.0", + "version":"0.6.0", + "targets":"ch.produs%type-safe-equality", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, "aoiroaoino/nanolens":{ "project":"aoiroaoino/nanolens", "repoUrl":"https://github.com/aoiroaoino/nanolens.git", @@ -1655,12 +1891,12 @@ ] } }, - "apache/incubator-pekko-persistence-dynamodb":{ - "project":"apache/incubator-pekko-persistence-dynamodb", - "repoUrl":"https://github.com/apache/incubator-pekko-persistence-dynamodb.git", - "revision":"e4a7eb0aa2b088ac97710aaf6904088512c5807c", - "version":"HEAD", - "targets":"*%*", + "apache/incubator-pekko":{ + "project":"apache/incubator-pekko", + "repoUrl":"https://github.com/apache/incubator-pekko.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"org.apache.pekko%pekko-stream-typed org.apache.pekko%pekko-persistence org.apache.pekko%pekko-slf4j org.apache.pekko%pekko-actor org.apache.pekko%pekko-cluster-sharding-typed org.apache.pekko%pekko-persistence-query org.apache.pekko%pekko-cluster-tools org.apache.pekko%pekko-actor-typed org.apache.pekko%pekko-actor-testkit-typed org.apache.pekko%pekko-stream-testkit org.apache.pekko%pekko-persistence-testkit org.apache.pekko%pekko-bom org.apache.pekko%pekko-protobuf-v3 org.apache.pekko%pekko-persistence-typed org.apache.pekko%pekko-serialization-jackson org.apache.pekko%pekko-remote org.apache.pekko%pekko-persistence-tck org.apache.pekko%pekko-testkit org.apache.pekko%pekko-discovery org.apache.pekko%pekko-cluster-metrics org.apache.pekko%pekko-stream org.apache.pekko%pekko-osgi org.apache.pekko%pekko-coordination org.apache.pekko%pekko-distributed-data org.apache.pekko%pekko-cluster-sharding org.apache.pekko%pekko-multi-node-testkit org.apache.pekko%pekko-protobuf org.apache.pekko%pekko-cluster-typed org.apache.pekko%pekko-pki org.apache.pekko%pekko-cluster", "config":{ "projects":{ "exclude":[ @@ -1671,7 +1907,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -1688,23 +1924,61 @@ }, "tests":"compile-only", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val scala3Version = \"3.3.0\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "aparo/zio-json-extra":{ - "project":"aparo/zio-json-extra", - "repoUrl":"https://github.com/aparo/zio-json-extra.git", - "revision":"4f53bdeac3f570e1c01714ee123339619b8aedd4", - "version":"0.5.0", - "targets":"io.megl%zio-json-extra io.megl%zio-json-diffson io.megl%zio-json-exception" + "apache/incubator-pekko-connectors":{ + "project":"apache/incubator-pekko-connectors", + "repoUrl":"https://github.com/apache/incubator-pekko-connectors.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"org.apache.pekko%pekko-connectors-s3 org.apache.pekko%pekko-connectors-mqtt org.apache.pekko%pekko-connectors-avroparquet org.apache.pekko%pekko-connectors-hdfs org.apache.pekko%pekko-connectors-huawei-push-kit org.apache.pekko%pekko-connectors-google-cloud-pub-sub-grpc org.apache.pekko%pekko-connectors-geode org.apache.pekko%pekko-connectors-ironmq org.apache.pekko%pekko-connectors-google-cloud-bigquery-storage org.apache.pekko%pekko-connectors-xml org.apache.pekko%pekko-connectors-solr org.apache.pekko%pekko-connectors-kinesis org.apache.pekko%pekko-connectors-mqtt-streaming org.apache.pekko%pekko-connectors-udp org.apache.pekko%pekko-connectors-google-common org.apache.pekko%pekko-connectors-orientdb org.apache.pekko%pekko-connectors-couchbase org.apache.pekko%pekko-connectors-unix-domain-socket org.apache.pekko%pekko-connectors-azure-storage-queue org.apache.pekko%pekko-connectors-google-cloud-pub-sub org.apache.pekko%pekko-connectors-influxdb org.apache.pekko%pekko-connectors-csv org.apache.pekko%pekko-connectors-jms org.apache.pekko%pekko-connectors-pravega org.apache.pekko%pekko-connectors-spring-web org.apache.pekko%pekko-connectors-sns org.apache.pekko%pekko-connectors-ftp org.apache.pekko%pekko-connectors-hbase org.apache.pekko%pekko-connectors-aws-event-bridge org.apache.pekko%pekko-connectors-google-fcm org.apache.pekko%pekko-connectors-elasticsearch org.apache.pekko%pekko-connectors-awslambda org.apache.pekko%pekko-connectors-google-cloud-storage org.apache.pekko%pekko-connectors-cassandra org.apache.pekko%pekko-connectors-kudu org.apache.pekko%pekko-connectors-simple-codecs org.apache.pekko%pekko-connectors-sqs org.apache.pekko%pekko-connectors-file org.apache.pekko%pekko-connectors-amqp org.apache.pekko%pekko-connectors-google-cloud-bigquery org.apache.pekko%pekko-connectors-dynamodb org.apache.pekko%pekko-connectors-json-streaming org.apache.pekko%pekko-connectors-text org.apache.pekko%pekko-connectors-sse", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"project/Dependencies.scala", + "pattern":"val Scala3 = \"3.3.0\"", + "replaceWith":"val Scala3 = \"\"" + } + ] + } }, - "apimorphism/telegramium":{ - "project":"apimorphism/telegramium", - "repoUrl":"https://github.com/apimorphism/telegramium.git", - "revision":"7.67.1", - "version":"7.67.1", - "targets":"io.github.apimorphism%telegramium-core io.github.apimorphism%telegramium-high", + "apache/incubator-pekko-connectors-kafka":{ + "project":"apache/incubator-pekko-connectors-kafka", + "repoUrl":"https://github.com/apache/incubator-pekko-connectors-kafka.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"org.apache.pekko%pekko-connectors-kafka org.apache.pekko%pekko-connectors-kafka-cluster-sharding org.apache.pekko%pekko-connectors-kafka-testkit", "config":{ "projects":{ "exclude":[ @@ -1715,7 +1989,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -1733,19 +2007,19 @@ "tests":"compile-only", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" + "path":"project/Versions.scala", + "pattern":"val Scala3 = \"3.3.0\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "arainko/ducktape":{ - "project":"arainko/ducktape", - "repoUrl":"https://github.com/arainko/ducktape.git", - "revision":"v0.1.8", - "version":"0.1.8", - "targets":"io.github.arainko%ducktape", + "apache/incubator-pekko-grpc":{ + "project":"apache/incubator-pekko-grpc", + "repoUrl":"https://github.com/apache/incubator-pekko-grpc.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"org.apache.pekko%pekko-grpc-codegen org.apache.pekko%pekko-grpc-runtime", "config":{ "projects":{ "exclude":[ @@ -1756,7 +2030,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -1773,34 +2047,36 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "argonaut-io/argonaut":{ - "project":"argonaut-io/argonaut", - "repoUrl":"https://github.com/argonaut-io/argonaut.git", - "revision":"v6.2.6", - "version":"6.2.6", - "targets":"io.argonaut%argonaut io.argonaut%argonaut-cats io.argonaut%argonaut-scalaz" - }, - "ariskk/burner4s":{ - "project":"ariskk/burner4s", - "repoUrl":"https://github.com/ariskk/burner4s.git", - "revision":"ed43d5da1a1274a482371727dc7199f4f3437ab0", - "version":"0.1.7", - "targets":"com.ariskk%burner4s", + "apache/incubator-pekko-http":{ + "project":"apache/incubator-pekko-http", + "repoUrl":"https://github.com/apache/incubator-pekko-http.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"org.apache.pekko%pekko-http org.apache.pekko%pekko-http-core org.apache.pekko%pekko-http-spray-json org.apache.pekko%pekko-http-xml org.apache.pekko%pekko-http-jackson org.apache.pekko%pekko-http-caching org.apache.pekko%pekko-http-testkit org.apache.pekko%pekko-http-bom org.apache.pekko%pekko-parsing org.apache.pekko%pekko-http-cors", "config":{ "projects":{ "exclude":[ - + "pekko-http-scalafix-rules", + "pekko-http-scalafix-tests", + "http-scalafix-test-input", + "http-scalafix-test-output", + "pekko-http-tests", + "pekko-http-docs" ], "overrides":{ } }, "java":{ - + "version":"21" }, "sbt":{ "commands":[ @@ -1818,19 +2094,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3 = \"3.0.0\"", - "replaceWith":"val scala3 = \"\"" + "path":"project/Dependencies.scala", + "pattern":"val scala3Version = \"3.3.0\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "ariskk/flink4s":{ - "project":"ariskk/flink4s", - "repoUrl":"https://github.com/ariskk/flink4s.git", - "revision":"f27cf2d24400f1c8d8353f66593d00f6f64052da", - "version":"1.15.2", - "targets":"com.ariskk%flink4s", + "apache/incubator-pekko-management":{ + "project":"apache/incubator-pekko-management", + "repoUrl":"https://github.com/apache/incubator-pekko-management.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"org.apache.pekko%pekko-lease-kubernetes org.apache.pekko%pekko-discovery-aws-api org.apache.pekko%pekko-management-cluster-bootstrap org.apache.pekko%pekko-management-loglevels-logback org.apache.pekko%pekko-discovery-consul org.apache.pekko%pekko-management-loglevels-log4j2 org.apache.pekko%pekko-discovery-kubernetes-api org.apache.pekko%pekko-management org.apache.pekko%pekko-management-pki org.apache.pekko%pekko-management-cluster-http org.apache.pekko%pekko-discovery-marathon-api org.apache.pekko%pekko-discovery-aws-api-async", "config":{ "projects":{ "exclude":[ @@ -1859,19 +2135,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.1.2\"", + "path":"project/Dependencies.scala", + "pattern":"val scala3Version = \"3.3.0\"", "replaceWith":"val scala3Version = \"\"" } ] } }, - "armanbilge/bayou":{ - "project":"armanbilge/bayou", - "repoUrl":"https://github.com/armanbilge/bayou.git", - "revision":"5b9bc5de97400b744dd2d7d458157d2be0438f8e", - "version":"0.1-2df94c0", - "targets":"com.armanbilge%bayou", + "apache/incubator-pekko-persistence-cassandra":{ + "project":"apache/incubator-pekko-persistence-cassandra", + "repoUrl":"https://github.com/apache/incubator-pekko-persistence-cassandra.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"org.apache.pekko%pekko-persistence-cassandra org.apache.pekko%pekko-persistence-cassandra-launcher", "config":{ "projects":{ "exclude":[ @@ -1882,7 +2158,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -1899,16 +2175,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val scala3Version = \"3.3.0\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "armanbilge/calico":{ - "project":"armanbilge/calico", - "repoUrl":"https://github.com/armanbilge/calico.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"com.armanbilge%calico-frp", + "apache/incubator-pekko-persistence-dynamodb":{ + "project":"apache/incubator-pekko-persistence-dynamodb", + "repoUrl":"https://github.com/apache/incubator-pekko-persistence-dynamodb.git", + "revision":"", + "version":"HEAD", + "targets":"*%*", "config":{ "projects":{ "exclude":[ @@ -1919,7 +2199,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -1934,18 +2214,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "armanbilge/cheshire":{ - "project":"armanbilge/cheshire", - "repoUrl":"https://github.com/armanbilge/cheshire.git", - "revision":"ab305040f5c12cd396b7715a08fcc6b817b67fba", - "version":"0.0-ab30504", - "targets":"com.armanbilge%cheshire com.armanbilge%cheshire-likelihood com.armanbilge%cheshire-likelihood-laws", + "apache/incubator-pekko-projection":{ + "project":"apache/incubator-pekko-projection", + "repoUrl":"https://github.com/apache/incubator-pekko-projection.git", + "revision":"v1.0.0-RC1", + "version":"1.0.0", + "targets":"org.apache.pekko%pekko-projection-core org.apache.pekko%pekko-projection-jdbc org.apache.pekko%pekko-projection-cassandra org.apache.pekko%pekko-projection-testkit org.apache.pekko%pekko-projection-kafka org.apache.pekko%pekko-projection-eventsourced org.apache.pekko%pekko-projection-durable-state", "config":{ "projects":{ "exclude":[ @@ -1956,7 +2236,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -1974,19 +2254,26 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.1\"", + "path":"project/Dependencies.scala", + "pattern":"val Scala3 = \"3.3.1\"", "replaceWith":"val Scala3 = \"\"" } ] } }, - "armanbilge/circe-scala-yaml":{ - "project":"armanbilge/circe-scala-yaml", - "repoUrl":"https://github.com/armanbilge/circe-scala-yaml.git", - "revision":"v0.0.4", - "version":"0.0.4", - "targets":"com.armanbilge%circe-scala-yaml", + "aparo/zio-json-extra":{ + "project":"aparo/zio-json-extra", + "repoUrl":"https://github.com/aparo/zio-json-extra.git", + "revision":"", + "version":"0.6.2", + "targets":"io.megl%zio-json-extra io.megl%zio-json-diffson io.megl%zio-json-exception" + }, + "apimorphism/telegramium":{ + "project":"apimorphism/telegramium", + "repoUrl":"https://github.com/apimorphism/telegramium.git", + "revision":"8.69.0", + "version":"8.69.0", + "targets":"io.github.apimorphism%telegramium-core io.github.apimorphism%telegramium-high", "config":{ "projects":{ "exclude":[ @@ -1997,7 +2284,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -2012,31 +2299,33 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "armanbilge/feral":{ - "project":"armanbilge/feral", - "repoUrl":"https://github.com/armanbilge/feral.git", - "revision":"1fcb47a4cc0b59d931b19ec2048b0061e9130618", - "version":"0.0-a75a626", - "targets":"com.armanbilge%feral-lambda-cloudformation-custom-resource com.armanbilge%feral-lambda com.armanbilge%feral-core com.armanbilge%feral-lambda-events com.armanbilge%feral-lambda-natchez com.armanbilge%feral-lambda-api-gateway-proxy-http4s", + "arainko/ducktape":{ + "project":"arainko/ducktape", + "repoUrl":"https://github.com/arainko/ducktape.git", + "revision":"v0.1.11", + "version":"0.1.11", + "targets":"io.github.arainko%ducktape", "config":{ "projects":{ "exclude":[ - "com.armanbilge%feral-lambda-events", - "com.armanbilge%feral-lambda-natchez", - "com.armanbilge%feral-lambda-api-gateway-proxy-http4s" + ], "overrides":{ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -2053,20 +2342,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "armanbilge/fs2":{ - "project":"armanbilge/fs2", - "repoUrl":"https://github.com/armanbilge/fs2.git", - "revision":"2efbedeb8316bf7b83f01964733089df7a883291", - "version":"3.0-136-4a257e0", - "targets":"com.armanbilge%fs2-core com.armanbilge%fs2-io com.armanbilge%fs2-reactive-streams", + "argonaut-io/argonaut":{ + "project":"argonaut-io/argonaut", + "repoUrl":"https://github.com/argonaut-io/argonaut.git", + "revision":"v6.3.9", + "version":"6.3.9", + "targets":"io.argonaut%argonaut io.argonaut%argonaut-cats io.argonaut%argonaut-jawn io.argonaut%argonaut-scalaz io.argonaut%argonaut-monocle3", "config":{ "projects":{ "exclude":[ @@ -2077,7 +2362,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -2094,16 +2379,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/ScalaSettings.scala", + "pattern":"def Scala3 = \"3.3.1\"", + "replaceWith":"def Scala3 = \"\"" + } ] } }, - "armanbilge/gcp4s":{ - "project":"armanbilge/gcp4s", - "repoUrl":"https://github.com/armanbilge/gcp4s.git", - "revision":"c18587974c17cfb5d90520ed444ba1c0a6995447", - "version":"0.1-2e738ad", - "targets":"com.armanbilge%gcp4s com.armanbilge%gcp4s-bigquery com.armanbilge%gcp4s-trace", + "ariskk/burner4s":{ + "project":"ariskk/burner4s", + "repoUrl":"https://github.com/ariskk/burner4s.git", + "revision":"", + "version":"0.1.7", + "targets":"com.ariskk%burner4s", "config":{ "projects":{ "exclude":[ @@ -2114,7 +2403,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -2129,22 +2418,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3 = \"3.0.0\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "armanbilge/ip4s":{ - "project":"armanbilge/ip4s", - "repoUrl":"https://github.com/armanbilge/ip4s.git", - "revision":"b7fbffad0ed4257d1bafd60c33535a3189a55a52", - "version":"3.1.3-83-cfa2ec1", - "targets":"com.armanbilge%ip4s-core com.armanbilge%ip4s-test-kit", + "ariskk/flink4s":{ + "project":"ariskk/flink4s", + "repoUrl":"https://github.com/ariskk/flink4s.git", + "revision":"", + "version":"1.15.2", + "targets":"com.ariskk%flink4s", "config":{ "projects":{ "exclude":[ @@ -2155,7 +2444,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -2172,16 +2461,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.1.2\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "armanbilge/jawn-fs2":{ - "project":"armanbilge/jawn-fs2", - "repoUrl":"https://github.com/armanbilge/jawn-fs2.git", - "revision":"a6cd60b78e66321c54af7137861f61780325248a", - "version":"2.2.0-129-fdba7f4", - "targets":"org.typelevel%jawn-fs2", + "armanbilge/bayou":{ + "project":"armanbilge/bayou", + "repoUrl":"https://github.com/armanbilge/bayou.git", + "revision":"", + "version":"0.1-2df94c0", + "targets":"com.armanbilge%bayou", "config":{ "projects":{ "exclude":[ @@ -2213,12 +2506,12 @@ ] } }, - "armanbilge/litter":{ - "project":"armanbilge/litter", - "repoUrl":"https://github.com/armanbilge/litter.git", - "revision":"v0.1.1", - "version":"0.1.1", - "targets":"com.armanbilge%litter com.armanbilge%litter-laws", + "armanbilge/calico":{ + "project":"armanbilge/calico", + "repoUrl":"https://github.com/armanbilge/calico.git", + "revision":"v0.2.1", + "version":"0.2.1", + "targets":"com.armanbilge%calico-frp", "config":{ "projects":{ "exclude":[ @@ -2229,11 +2522,11 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ - "set every Test/classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat" + ], "options":[ @@ -2246,20 +2539,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.0.0\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "armanbilge/log4cats":{ - "project":"armanbilge/log4cats", - "repoUrl":"https://github.com/armanbilge/log4cats.git", - "revision":"36bfbb6bd8d89e5f81575f85c78b0f8616de5c0b", - "version":"2.5-a595fcf", - "targets":"org.typelevel%log4cats-core org.typelevel%log4cats-noop org.typelevel%log4cats-slf4j org.typelevel%log4cats-testing", + "armanbilge/cheshire":{ + "project":"armanbilge/cheshire", + "repoUrl":"https://github.com/armanbilge/cheshire.git", + "revision":"", + "version":"0.0-ab30504", + "targets":"com.armanbilge%cheshire com.armanbilge%cheshire-likelihood com.armanbilge%cheshire-likelihood-laws", "config":{ "projects":{ "exclude":[ @@ -2270,7 +2559,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -2289,18 +2578,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", + "pattern":"val Scala3 = \"3.2.1\"", "replaceWith":"val Scala3 = \"\"" } ] } }, - "armanbilge/munit-cats-effect":{ - "project":"armanbilge/munit-cats-effect", - "repoUrl":"https://github.com/armanbilge/munit-cats-effect.git", - "revision":"7588d4db0551310848147ae980c90b69ed52d6d3", - "version":"2.0-5e03bfc", - "targets":"org.typelevel%munit-cats-effect", + "armanbilge/circe-scala-yaml":{ + "project":"armanbilge/circe-scala-yaml", + "repoUrl":"https://github.com/armanbilge/circe-scala-yaml.git", + "revision":"v0.0.4", + "version":"0.0.4", + "targets":"com.armanbilge%circe-scala-yaml", "config":{ "projects":{ "exclude":[ @@ -2332,60 +2621,25 @@ ] } }, - "armanbilge/porcupine":{ - "project":"armanbilge/porcupine", - "repoUrl":"https://github.com/armanbilge/porcupine.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"com.armanbilge%porcupine", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "armanbilge/sadalsuud":{ - "project":"armanbilge/sadalsuud", - "repoUrl":"https://github.com/armanbilge/sadalsuud.git", - "revision":"0e896bf8bb7f1357c49da21021fc03866f99e030", - "version":"0.0-0e896bf", - "targets":"com.armanbilge%sadalsuud", + "armanbilge/feral":{ + "project":"armanbilge/feral", + "repoUrl":"https://github.com/armanbilge/feral.git", + "revision":"", + "version":"0.0-a75a626", + "targets":"com.armanbilge%feral-lambda-cloudformation-custom-resource com.armanbilge%feral-lambda com.armanbilge%feral-core com.armanbilge%feral-lambda-events com.armanbilge%feral-lambda-natchez com.armanbilge%feral-lambda-api-gateway-proxy-http4s", "config":{ "projects":{ "exclude":[ - + "com.armanbilge%feral-lambda-events", + "com.armanbilge%feral-lambda-natchez", + "com.armanbilge%feral-lambda-api-gateway-proxy-http4s" ], "overrides":{ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -2404,18 +2658,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", + "pattern":"val Scala3 = \"3.3.0\"", "replaceWith":"val Scala3 = \"\"" } ] } }, - "armanbilge/saslprep":{ - "project":"armanbilge/saslprep", - "repoUrl":"https://github.com/armanbilge/saslprep.git", - "revision":"v0.1.1", - "version":"0.1.1", - "targets":"com.armanbilge%saslprep", + "armanbilge/fs2":{ + "project":"armanbilge/fs2", + "repoUrl":"https://github.com/armanbilge/fs2.git", + "revision":"", + "version":"3.0-136-4a257e0", + "targets":"com.armanbilge%fs2-core com.armanbilge%fs2-io com.armanbilge%fs2-reactive-streams", "config":{ "projects":{ "exclude":[ @@ -2426,7 +2680,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -2447,12 +2701,12 @@ ] } }, - "armanbilge/scala-native-config-brew":{ - "project":"armanbilge/scala-native-config-brew", - "repoUrl":"https://github.com/armanbilge/scala-native-config-brew.git", - "revision":"v0.1.3", - "version":"0.1.3", - "targets":"com.armanbilge%scala-native-config-brew", + "armanbilge/gcp4s":{ + "project":"armanbilge/gcp4s", + "repoUrl":"https://github.com/armanbilge/gcp4s.git", + "revision":"", + "version":"0.1-2ac68bb", + "targets":"com.armanbilge%gcp4s com.armanbilge%gcp4s-bigquery com.armanbilge%gcp4s-trace", "config":{ "projects":{ "exclude":[ @@ -2478,22 +2732,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val Scala3 = \"3.3.1\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "armanbilge/scalacheck-effect":{ - "project":"armanbilge/scalacheck-effect", - "repoUrl":"https://github.com/armanbilge/scalacheck-effect.git", - "revision":"66e864e975973e5873b2b86d7d5af06102c95a67", - "version":"2.0-9366e44", - "targets":"org.typelevel%scalacheck-effect org.typelevel%scalacheck-effect-munit", + "armanbilge/ip4s":{ + "project":"armanbilge/ip4s", + "repoUrl":"https://github.com/armanbilge/ip4s.git", + "revision":"", + "version":"3.1.3-83-cfa2ec1", + "targets":"com.armanbilge%ip4s-core com.armanbilge%ip4s-test-kit", "config":{ "projects":{ "exclude":[ @@ -2525,12 +2779,12 @@ ] } }, - "armanbilge/schrodinger":{ - "project":"armanbilge/schrodinger", - "repoUrl":"https://github.com/armanbilge/schrodinger.git", - "revision":"v0.3.0-M2", - "version":"0.3.0-M2", - "targets":"com.armanbilge%schrodinger com.armanbilge%schrodinger-kernel-testkit com.armanbilge%schrodinger-laws com.armanbilge%schrodinger-random com.armanbilge%schrodinger-stats com.armanbilge%schrodinger-monte-carlo com.armanbilge%schrodinger-math com.armanbilge%schrodinger-kernel com.armanbilge%schrodinger-testkit", + "armanbilge/jawn-fs2":{ + "project":"armanbilge/jawn-fs2", + "repoUrl":"https://github.com/armanbilge/jawn-fs2.git", + "revision":"", + "version":"2.2.0-129-fdba7f4", + "targets":"org.typelevel%jawn-fs2", "config":{ "projects":{ "exclude":[ @@ -2541,7 +2795,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -2558,20 +2812,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.1-RC1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "armanbilge/stratus":{ - "project":"armanbilge/stratus", - "repoUrl":"https://github.com/armanbilge/stratus.git", - "revision":"20bb7469dc774c41a70485040c80a3b23abbf05f", - "version":"0.0-20bb746", - "targets":"com.armanbilge%stratus-core", + "armanbilge/litter":{ + "project":"armanbilge/litter", + "repoUrl":"https://github.com/armanbilge/litter.git", + "revision":"v0.1.1", + "version":"0.1.1", + "targets":"com.armanbilge%litter com.armanbilge%litter-laws", "config":{ "projects":{ "exclude":[ @@ -2582,11 +2832,11 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ - + "set every Test/classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat" ], "options":[ @@ -2599,16 +2849,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.0.0\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "armanbilge/van-cats":{ - "project":"armanbilge/van-cats", - "repoUrl":"https://github.com/armanbilge/van-cats.git", - "revision":"b9d385f66ca469475c001652aa274ec4d384f11e", - "version":"0.0-b9d385f", - "targets":"com.armanbilge%van-cats", + "armanbilge/log4cats":{ + "project":"armanbilge/log4cats", + "repoUrl":"https://github.com/armanbilge/log4cats.git", + "revision":"", + "version":"2.5-a595fcf", + "targets":"org.typelevel%log4cats-core org.typelevel%log4cats-noop org.typelevel%log4cats-slf4j org.typelevel%log4cats-testing", "config":{ "projects":{ "exclude":[ @@ -2619,7 +2873,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -2638,18 +2892,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.2\"", + "pattern":"val Scala3 = \"3.3.0\"", "replaceWith":"val Scala3 = \"\"" } ] } }, - "arturopala/buffer-and-slice":{ - "project":"arturopala/buffer-and-slice", - "repoUrl":"https://github.com/arturopala/buffer-and-slice.git", - "revision":"v1.58.0", - "version":"1.58.0", - "targets":"com.github.arturopala%buffer-and-slice", + "armanbilge/munit-cats-effect":{ + "project":"armanbilge/munit-cats-effect", + "repoUrl":"https://github.com/armanbilge/munit-cats-effect.git", + "revision":"", + "version":"2.0-5e03bfc", + "targets":"org.typelevel%munit-cats-effect", "config":{ "projects":{ "exclude":[ @@ -2660,7 +2914,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -2677,20 +2931,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "arturopala/gitignore":{ - "project":"arturopala/gitignore", - "repoUrl":"https://github.com/arturopala/gitignore.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"com.github.arturopala%gitignore", + "armanbilge/porcupine":{ + "project":"armanbilge/porcupine", + "repoUrl":"https://github.com/armanbilge/porcupine.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"com.armanbilge%porcupine", "config":{ "projects":{ "exclude":[ @@ -2701,7 +2951,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -2718,20 +2968,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "arturopala/validator":{ - "project":"arturopala/validator", - "repoUrl":"https://github.com/arturopala/validator.git", - "revision":"v0.21.0", - "version":"0.21.0", - "targets":"com.github.arturopala%validator", + "armanbilge/sadalsuud":{ + "project":"armanbilge/sadalsuud", + "repoUrl":"https://github.com/armanbilge/sadalsuud.git", + "revision":"", + "version":"0.0-0e896bf", + "targets":"com.armanbilge%sadalsuud", "config":{ "projects":{ "exclude":[ @@ -2742,7 +2988,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -2761,18 +3007,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "asflierl/sglicko2":{ - "project":"asflierl/sglicko2", - "repoUrl":"https://github.com/asflierl/sglicko2.git", - "revision":"3.0.0", - "version":"3.0.0", - "targets":"eu.flierl%sglicko2", + "armanbilge/saslprep":{ + "project":"armanbilge/saslprep", + "repoUrl":"https://github.com/armanbilge/saslprep.git", + "revision":"v0.1.1", + "version":"0.1.1", + "targets":"com.armanbilge%saslprep", "config":{ "projects":{ "exclude":[ @@ -2783,7 +3029,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -2804,12 +3050,12 @@ ] } }, - "ashwinbhaskar/sight-scala":{ - "project":"ashwinbhaskar/sight-scala", - "repoUrl":"https://github.com/ashwinbhaskar/sight-scala.git", - "revision":"77073fe20b2010fc2f5045a7935912c717b2d97a", - "version":"0.1.2", - "targets":"io.github.ashwinbhaskar%sight-client", + "armanbilge/scala-native-config-brew":{ + "project":"armanbilge/scala-native-config-brew", + "repoUrl":"https://github.com/armanbilge/scala-native-config-brew.git", + "revision":"v0.2.0-RC1", + "version":"0.2.0-RC1", + "targets":"com.armanbilge%scala-native-config-brew", "config":{ "projects":{ "exclude":[ @@ -2820,11 +3066,11 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ - "set root/Test/unmanagedSources/excludeFilter ~= { _ || \"IntegrationTest.scala\" }" + ], "options":[ @@ -2837,16 +3083,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "atedeg/mdm":{ - "project":"atedeg/mdm", - "repoUrl":"https://github.com/atedeg/mdm.git", - "revision":"v4.0.0", - "version":"4.0.0", - "targets":"dev.atedeg.mdm%production dev.atedeg.mdm%client-orders dev.atedeg.mdm%milk-planning dev.atedeg.mdm%stocking dev.atedeg.mdm%production-planning dev.atedeg.mdm%restocking dev.atedeg.mdm%pricing", + "armanbilge/scalacheck-effect":{ + "project":"armanbilge/scalacheck-effect", + "repoUrl":"https://github.com/armanbilge/scalacheck-effect.git", + "revision":"", + "version":"2.0-9366e44", + "targets":"org.typelevel%scalacheck-effect org.typelevel%scalacheck-effect-munit", "config":{ "projects":{ "exclude":[ @@ -2857,12 +3107,48 @@ } }, "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + ] + } + }, + "armanbilge/schrodinger":{ + "project":"armanbilge/schrodinger", + "repoUrl":"https://github.com/armanbilge/schrodinger.git", + "revision":"v0.3.0-M2", + "version":"0.3.0-M2", + "targets":"com.armanbilge%schrodinger com.armanbilge%schrodinger-kernel-testkit com.armanbilge%schrodinger-laws com.armanbilge%schrodinger-random com.armanbilge%schrodinger-stats com.armanbilge%schrodinger-monte-carlo com.armanbilge%schrodinger-math com.armanbilge%schrodinger-kernel com.armanbilge%schrodinger-testkit", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -2877,25 +3163,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.1.3\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val Scala3 = \"3.1.1-RC1\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "atedeg/scala-release":{ - "project":"atedeg/scala-release", - "repoUrl":"https://github.com/atedeg/scala-release.git", - "revision":"v1.0.3", - "version":"1.0.3", - "targets":"dev.atedeg%scala-release-test" - }, - "atnos-org/eff":{ - "project":"atnos-org/eff", - "repoUrl":"https://github.com/atnos-org/eff.git", - "revision":"v6.0.3", - "version":"6.0.3", - "targets":"org.atnos%eff-doobie org.atnos%eff-cats-effect org.atnos%eff org.atnos%eff-twitter org.atnos%eff-monix", + "armanbilge/stratus":{ + "project":"armanbilge/stratus", + "repoUrl":"https://github.com/armanbilge/stratus.git", + "revision":"", + "version":"0.0-20bb746", + "targets":"com.armanbilge%stratus-core", "config":{ "projects":{ "exclude":[ @@ -2906,11 +3185,11 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ - "set monixJVM/Test/unmanagedSources ~= (_.filterNot(_.getName == \"TaskEffectSpec.scala\"))" + ], "options":[ @@ -2927,12 +3206,12 @@ ] } }, - "atry/futurebinding.scala":{ - "project":"atry/futurebinding.scala", - "repoUrl":"https://github.com/atry/futurebinding.scala.git", - "revision":"v12.1.1", - "version":"12.1.1", - "targets":"com.thoughtworks.binding%futurebinding", + "armanbilge/van-cats":{ + "project":"armanbilge/van-cats", + "repoUrl":"https://github.com/armanbilge/van-cats.git", + "revision":"", + "version":"0.0-b9d385f", + "targets":"com.armanbilge%van-cats", "config":{ "projects":{ "exclude":[ @@ -2943,7 +3222,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -2960,16 +3239,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.1.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "atry/html.scala":{ - "project":"atry/html.scala", - "repoUrl":"https://github.com/atry/html.scala.git", - "revision":"v3.0.3", - "version":"3.0.3", - "targets":"com.yang-bo%html-interpolationparser", + "arturaz/doobie-typesafe":{ + "project":"arturaz/doobie-typesafe", + "repoUrl":"https://github.com/arturaz/doobie-typesafe.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.github.arturaz%doobie-typesafe", "config":{ "projects":{ "exclude":[ @@ -2980,7 +3263,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -3001,12 +3284,12 @@ ] } }, - "augustjune/canoe":{ - "project":"augustjune/canoe", - "repoUrl":"https://github.com/augustjune/canoe.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"org.augustjune%canoe", + "arturopala/buffer-and-slice":{ + "project":"arturopala/buffer-and-slice", + "repoUrl":"https://github.com/arturopala/buffer-and-slice.git", + "revision":"v1.63.0", + "version":"1.63.0", + "targets":"com.github.arturopala%buffer-and-slice", "config":{ "projects":{ "exclude":[ @@ -3017,11 +3300,11 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ - "set core.jvm/Test/unmanagedSources/excludeFilter ~= { _ || \"BroadcastSpec.scala\" || \"BotSpec.scala\" }" + ], "options":[ @@ -3036,25 +3319,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.1.2\"", + "pattern":"val scala3 = \"3.3.1\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "autodeployai/pmml4s":{ - "project":"autodeployai/pmml4s", - "repoUrl":"https://github.com/autodeployai/pmml4s.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"org.pmml4s%pmml4s" - }, - "avast/datadog4s":{ - "project":"avast/datadog4s", - "repoUrl":"https://github.com/avast/datadog4s.git", - "revision":"v0.31.3", - "version":"0.31.3", - "targets":"com.avast.cloud%datadog4s-http4s com.avast.cloud%datadog4s com.avast.cloud%datadog4s-common com.avast.cloud%datadog4s-jvm com.avast.cloud%datadog4s-playground com.avast.cloud%datadog4s-statsd com.avast.cloud%datadog4s-api", + "arturopala/gitignore":{ + "project":"arturopala/gitignore", + "repoUrl":"https://github.com/arturopala/gitignore.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"com.github.arturopala%gitignore", "config":{ "projects":{ "exclude":[ @@ -3065,7 +3341,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -3083,19 +3359,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/BuildSupport.scala", - "pattern":"val scala3 = \"3.2.2\"", + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "avast/scala-server-toolkit":{ - "project":"avast/scala-server-toolkit", - "repoUrl":"https://github.com/avast/scala-server-toolkit.git", - "revision":"v0.18.4", - "version":"0.18.4", - "targets":"com.avast%sst-bundle-monix-http4s-ember com.avast%sst-cassandra-datastax-driver com.avast%sst-http4s-server-blaze com.avast%sst-jvm-micrometer com.avast%sst-http4s-server-ember com.avast%sst-doobie-hikari-pureconfig com.avast%sst-micrometer-prometheus-pureconfig com.avast%sst-bundle-zio-http4s-blaze com.avast%sst-http4s-server com.avast%sst-micrometer-jmx-pureconfig com.avast%sst-sentry com.avast%sst-lettuce com.avast%sst-http4s-client-ember com.avast%sst-jdk-http-client com.avast%sst-micrometer-prometheus com.avast%sst-jvm-pureconfig com.avast%sst-flyway-pureconfig com.avast%sst-http4s-server-ember-pureconfig com.avast%sst-jvm com.avast%sst-monix-catnap-micrometer com.avast%sst-micrometer-statsd-pureconfig com.avast%sst-micrometer com.avast%sst-micrometer-jmx com.avast%sst-fs2-kafka-pureconfig com.avast%sst-http4s-server-blaze-pureconfig com.avast%sst-monix-catnap com.avast%sst-http4s-server-micrometer com.avast%sst-cassandra-datastax-driver-pureconfig com.avast%sst-http4s-client-blaze-pureconfig com.avast%sst-pureconfig com.avast%sst-flyway com.avast%sst-doobie-hikari com.avast%sst-micrometer-statsd com.avast%sst-grpc-server-micrometer com.avast%sst-lettuce-pureconfig com.avast%sst-app-monix com.avast%sst-bundle-monix-http4s-blaze com.avast%sst-monix-catnap-pureconfig com.avast%sst-http4s-client-monix-catnap com.avast%sst-fs2-kafka com.avast%sst-ssl-config com.avast%sst-http4s-client-ember-pureconfig com.avast%sst-grpc-server com.avast%sst-cats-effect com.avast%sst-sentry-pureconfig com.avast%sst-app-zio com.avast%sst-bundle-zio-http4s-ember com.avast%sst-jdk-http-client-pureconfig com.avast%sst-grpc-server-pureconfig com.avast%sst-http4s-client-blaze", + "arturopala/validator":{ + "project":"arturopala/validator", + "repoUrl":"https://github.com/arturopala/validator.git", + "revision":"v0.22.0", + "version":"0.22.0", + "targets":"com.github.arturopala%validator", "config":{ "projects":{ "exclude":[ @@ -3106,7 +3382,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -3124,19 +3400,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/BuildSettings.scala", - "pattern":"val scala3 = \"3.1.1\"", + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "azhur/kafka-serde-scala":{ - "project":"azhur/kafka-serde-scala", - "repoUrl":"https://github.com/azhur/kafka-serde-scala.git", - "revision":"v0.8.1", - "version":"0.8.1", - "targets":"io.github.azhur%kafka-serde-upickle io.github.azhur%kafka-serde-zio-json io.github.azhur%kafka-serde-scalapb io.github.azhur%kafka-serde-json4s io.github.azhur%kafka-serde-jsoniter-scala io.github.azhur%kafka-serde-circe", + "asflierl/sglicko2":{ + "project":"asflierl/sglicko2", + "repoUrl":"https://github.com/asflierl/sglicko2.git", + "revision":"3.0.0", + "version":"3.0.0", + "targets":"eu.flierl%sglicko2", "config":{ "projects":{ "exclude":[ @@ -3147,7 +3423,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -3168,12 +3444,12 @@ ] } }, - "babylonhealth/lit-fhir":{ - "project":"babylonhealth/lit-fhir", - "repoUrl":"https://github.com/babylonhealth/lit-fhir.git", - "revision":"g0.14.17", - "version":"0.14.17", - "targets":"com.babylonhealth.lit%generator com.babylonhealth.lit%hl7 com.babylonhealth.lit%common com.babylonhealth.lit%macros com.babylonhealth.lit%core com.babylonhealth.lit%protoshim com.babylonhealth.lit%usbase com.babylonhealth.lit%fhirpath com.babylonhealth.lit%ukcore com.babylonhealth.lit%uscore", + "ashwinbhaskar/sight-scala":{ + "project":"ashwinbhaskar/sight-scala", + "repoUrl":"https://github.com/ashwinbhaskar/sight-scala.git", + "revision":"", + "version":"0.1.2", + "targets":"io.github.ashwinbhaskar%sight-client", "config":{ "projects":{ "exclude":[ @@ -3184,11 +3460,11 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ - + "set root/Test/unmanagedSources/excludeFilter ~= { _ || \"IntegrationTest.scala\" }" ], "options":[ @@ -3199,22 +3475,18 @@ ] }, - "tests":"disabled", + "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.0\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "banno/cosmos4s":{ - "project":"banno/cosmos4s", - "repoUrl":"https://github.com/banno/cosmos4s.git", - "revision":"v1.0.0-RC5", - "version":"1.0.0-RC5", - "targets":"com.banno%cosmos4s", + "asragab/unstructured4s":{ + "project":"asragab/unstructured4s", + "repoUrl":"https://github.com/asragab/unstructured4s.git", + "revision":"v0.1.5", + "version":"0.1.5", + "targets":"org.twelvehart%unstructured4s-core", "config":{ "projects":{ "exclude":[ @@ -3225,7 +3497,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -3242,20 +3514,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.3\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "banno/vault4s":{ - "project":"banno/vault4s", - "repoUrl":"https://github.com/banno/vault4s.git", - "revision":"v9.1.0", - "version":"9.1.0", - "targets":"com.banno%vault4s", + "assist-iot-sripas/scala-mqtt-wrapper":{ + "project":"assist-iot-sripas/scala-mqtt-wrapper", + "repoUrl":"https://github.com/assist-iot-sripas/scala-mqtt-wrapper.git", + "revision":"v4.0.0", + "version":"4.0.0", + "targets":"io.github.assist-iot-sripas%scala-mqtt-wrapper-pekko io.github.assist-iot-sripas%scala-mqtt-wrapper-utils", "config":{ "projects":{ "exclude":[ @@ -3266,11 +3534,12 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -3285,25 +3554,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.0.2\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "barnardb/tinyplate":{ - "project":"barnardb/tinyplate", - "repoUrl":"https://github.com/barnardb/tinyplate.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"io.github.barnardb%tinyplate" - }, - "bcarter97/id-generator":{ - "project":"bcarter97/id-generator", - "repoUrl":"https://github.com/bcarter97/id-generator.git", - "revision":"v0.5.1", - "version":"0.5.1", - "targets":"io.github.bcarter97%id-generator", + "atedeg/mdm":{ + "project":"atedeg/mdm", + "repoUrl":"https://github.com/atedeg/mdm.git", + "revision":"v4.0.0", + "version":"4.0.0", + "targets":"dev.atedeg.mdm%production dev.atedeg.mdm%client-orders dev.atedeg.mdm%milk-planning dev.atedeg.mdm%stocking dev.atedeg.mdm%production-planning dev.atedeg.mdm%restocking dev.atedeg.mdm%pricing", "config":{ "projects":{ "exclude":[ @@ -3314,11 +3576,12 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -3333,25 +3596,25 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.1.2\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val scala3Version = \"3.1.3\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "beangle/db":{ - "project":"beangle/db", - "repoUrl":"https://github.com/beangle/db.git", - "revision":"v0.0.22", - "version":"0.0.22", - "targets":"org.beangle.db%beangle-db-lint org.beangle.db%beangle-db-report org.beangle.db%beangle-db-transport" + "atedeg/scala-release":{ + "project":"atedeg/scala-release", + "repoUrl":"https://github.com/atedeg/scala-release.git", + "revision":"v1.0.3", + "version":"1.0.3", + "targets":"dev.atedeg%scala-release-test" }, - "beangle/doc":{ - "project":"beangle/doc", - "repoUrl":"https://github.com/beangle/doc.git", - "revision":"v0.1.5", - "version":"0.1.5", - "targets":"org.beangle.doc%beangle-doc-docx org.beangle.doc%beangle-doc-pdf", + "atnos-org/eff":{ + "project":"atnos-org/eff", + "repoUrl":"https://github.com/atnos-org/eff.git", + "revision":"v7.0.1", + "version":"7.0.1", + "targets":"org.atnos%eff-batch org.atnos%eff-core org.atnos%eff-either org.atnos%eff-validate org.atnos%eff-doobie org.atnos%eff-safe org.atnos%eff-list org.atnos%eff-reader org.atnos%eff-error org.atnos%eff-writer org.atnos%eff-cats-effect org.atnos%eff-eval org.atnos%eff-choose org.atnos%eff org.atnos%eff-twitter org.atnos%eff-state org.atnos%eff-option org.atnos%eff-monix org.atnos%eff-future", "config":{ "projects":{ "exclude":[ @@ -3362,11 +3625,11 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ - "styleFormat" + "set monixJVM/Test/unmanagedSources ~= (_.filterNot(_.getName == \"TaskEffectSpec.scala\"))" ], "options":[ @@ -3383,26 +3646,12 @@ ] } }, - "beangle/ids":{ - "project":"beangle/ids", - "repoUrl":"https://github.com/beangle/ids.git", - "revision":"v0.3.8", - "version":"0.3.8", - "targets":"org.beangle.ids%beangle-ids-cas org.beangle.ids%beangle-ids-web" - }, - "beangle/notify":{ - "project":"beangle/notify", - "repoUrl":"https://github.com/beangle/notify.git", - "revision":"v0.1.1", - "version":"0.1.1", - "targets":"org.beangle.notify%beangle-notify-core" - }, - "beangle/otk":{ - "project":"beangle/otk", - "repoUrl":"https://github.com/beangle/otk.git", - "revision":"v0.0.6", - "version":"0.0.6", - "targets":"org.beangle.otk%beangle-otk-ws org.beangle.otk%beangle-otk-doc org.beangle.otk%beangle-otk-captcha org.beangle.otk%beangle-otk-code org.beangle.otk%beangle-otk-sns", + "atry/futurebinding.scala":{ + "project":"atry/futurebinding.scala", + "repoUrl":"https://github.com/atry/futurebinding.scala.git", + "revision":"v12.1.1", + "version":"12.1.1", + "targets":"com.thoughtworks.binding%futurebinding", "config":{ "projects":{ "exclude":[ @@ -3413,7 +3662,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -3434,12 +3683,12 @@ ] } }, - "benhutchison/scalaswingcontrib":{ - "project":"benhutchison/scalaswingcontrib", - "repoUrl":"https://github.com/benhutchison/scalaswingcontrib.git", - "revision":"1cc806b06fb3ce824dfee4fa4522893878551740", - "version":"1.9", - "targets":"com.github.benhutchison%scalaswingcontrib", + "atry/html.scala":{ + "project":"atry/html.scala", + "repoUrl":"https://github.com/atry/html.scala.git", + "revision":"v3.0.3", + "version":"3.0.3", + "targets":"com.yang-bo%html-interpolationparser", "config":{ "projects":{ "exclude":[ @@ -3450,7 +3699,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -3465,18 +3714,18 @@ ] }, - "tests":"disabled", + "tests":"full", "sourcePatches":[ ] } }, - "benoitlouy/tele":{ - "project":"benoitlouy/tele", - "repoUrl":"https://github.com/benoitlouy/tele.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"io.github.benoitlouy%tele", + "augustjune/canoe":{ + "project":"augustjune/canoe", + "repoUrl":"https://github.com/augustjune/canoe.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"org.augustjune%canoe", "config":{ "projects":{ "exclude":[ @@ -3487,11 +3736,11 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ - + "set core.jvm/Test/unmanagedSources/excludeFilter ~= { _ || \"BroadcastSpec.scala\" || \"BotSpec.scala\" }" ], "options":[ @@ -3506,25 +3755,39 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.0\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3 = \"3.1.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "besselstudio/coingecko":{ - "project":"besselstudio/coingecko", - "repoUrl":"https://github.com/besselstudio/coingecko.git", - "revision":"v3.1.0", - "version":"3.1.0", - "targets":"com.besselstudio%coingecko" + "augustnagro/form-url-codec":{ + "project":"augustnagro/form-url-codec", + "repoUrl":"https://github.com/augustnagro/form-url-codec.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.augustnagro%form-url-codec" }, - "bilal-fazlani/akka-http-jwt-auth":{ - "project":"bilal-fazlani/akka-http-jwt-auth", - "repoUrl":"https://github.com/bilal-fazlani/akka-http-jwt-auth.git", - "revision":"v0.0.6", - "version":"0.0.6", - "targets":"com.bilal-fazlani%akka-http-jwt-auth com.bilal-fazlani%akka-http-client-circe com.bilal-fazlani%akka-http-oidc-client", + "augustnagro/magnum":{ + "project":"augustnagro/magnum", + "repoUrl":"https://github.com/augustnagro/magnum.git", + "revision":"v1.1.0", + "version":"1.1.0", + "targets":"com.augustnagro%magnum com.augustnagro%magnumpg" + }, + "autodeployai/pmml4s":{ + "project":"autodeployai/pmml4s", + "repoUrl":"https://github.com/autodeployai/pmml4s.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"org.pmml4s%pmml4s" + }, + "automorph-org/automorph":{ + "project":"automorph-org/automorph", + "repoUrl":"https://github.com/automorph-org/automorph.git", + "revision":"v0.2.3", + "version":"0.2.3", + "targets":"org.automorph%automorph-rabbitmq org.automorph%automorph-jetty org.automorph%automorph-scalaz-effect org.automorph%automorph-core org.automorph%automorph-monix org.automorph%automorph-argonaut org.automorph%automorph-cats-effect org.automorph%automorph-zio org.automorph%automorph-circe org.automorph%automorph-upickle org.automorph%automorph-default org.automorph%automorph-finagle org.automorph%automorph-vertx org.automorph%automorph-standard org.automorph%automorph-tapir org.automorph%automorph-sttp org.automorph%automorph-jackson org.automorph%automorph-akka-http org.automorph%automorph-meta org.automorph%automorph-undertow", "config":{ "projects":{ "exclude":[ @@ -3550,18 +3813,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "bilal-fazlani/circe-json-schema":{ - "project":"bilal-fazlani/circe-json-schema", - "repoUrl":"https://github.com/bilal-fazlani/circe-json-schema.git", - "revision":"v0.4.3", - "version":"0.4.3", - "targets":"com.bilal-fazlani%circe-json-schema", + "avast/datadog4s":{ + "project":"avast/datadog4s", + "repoUrl":"https://github.com/avast/datadog4s.git", + "revision":"v0.31.3", + "version":"0.31.3", + "targets":"com.avast.cloud%datadog4s-http4s com.avast.cloud%datadog4s com.avast.cloud%datadog4s-common com.avast.cloud%datadog4s-jvm com.avast.cloud%datadog4s-playground com.avast.cloud%datadog4s-statsd com.avast.cloud%datadog4s-api", "config":{ "projects":{ "exclude":[ @@ -3587,18 +3850,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"project/BuildSupport.scala", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "bilal-fazlani/csv-schema":{ - "project":"bilal-fazlani/csv-schema", - "repoUrl":"https://github.com/bilal-fazlani/csv-schema.git", - "revision":"v1.1.2", - "version":"1.1.2", - "targets":"com.bilal-fazlani%csv-schema", + "avast/scala-server-toolkit":{ + "project":"avast/scala-server-toolkit", + "repoUrl":"https://github.com/avast/scala-server-toolkit.git", + "revision":"v0.18.4", + "version":"0.18.4", + "targets":"com.avast%sst-bundle-monix-http4s-ember com.avast%sst-cassandra-datastax-driver com.avast%sst-http4s-server-blaze com.avast%sst-jvm-micrometer com.avast%sst-http4s-server-ember com.avast%sst-doobie-hikari-pureconfig com.avast%sst-micrometer-prometheus-pureconfig com.avast%sst-bundle-zio-http4s-blaze com.avast%sst-http4s-server com.avast%sst-micrometer-jmx-pureconfig com.avast%sst-sentry com.avast%sst-lettuce com.avast%sst-http4s-client-ember com.avast%sst-jdk-http-client com.avast%sst-micrometer-prometheus com.avast%sst-jvm-pureconfig com.avast%sst-flyway-pureconfig com.avast%sst-http4s-server-ember-pureconfig com.avast%sst-jvm com.avast%sst-monix-catnap-micrometer com.avast%sst-micrometer-statsd-pureconfig com.avast%sst-micrometer com.avast%sst-micrometer-jmx com.avast%sst-fs2-kafka-pureconfig com.avast%sst-http4s-server-blaze-pureconfig com.avast%sst-monix-catnap com.avast%sst-http4s-server-micrometer com.avast%sst-cassandra-datastax-driver-pureconfig com.avast%sst-http4s-client-blaze-pureconfig com.avast%sst-pureconfig com.avast%sst-flyway com.avast%sst-doobie-hikari com.avast%sst-micrometer-statsd com.avast%sst-grpc-server-micrometer com.avast%sst-lettuce-pureconfig com.avast%sst-app-monix com.avast%sst-bundle-monix-http4s-blaze com.avast%sst-monix-catnap-pureconfig com.avast%sst-http4s-client-monix-catnap com.avast%sst-fs2-kafka com.avast%sst-ssl-config com.avast%sst-http4s-client-ember-pureconfig com.avast%sst-grpc-server com.avast%sst-cats-effect com.avast%sst-sentry-pureconfig com.avast%sst-app-zio com.avast%sst-bundle-zio-http4s-ember com.avast%sst-jdk-http-client-pureconfig com.avast%sst-grpc-server-pureconfig com.avast%sst-http4s-client-blaze", "config":{ "projects":{ "exclude":[ @@ -3626,16 +3893,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/BuildSettings.scala", + "pattern":"val scala3 = \"3.1.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "bilal-fazlani/jslt-parser":{ - "project":"bilal-fazlani/jslt-parser", - "repoUrl":"https://github.com/bilal-fazlani/jslt-parser.git", + "avokka/avokka":{ + "project":"avokka/avokka", + "repoUrl":"https://github.com/avokka/avokka.git", "revision":"v0.0.8", "version":"0.0.8", - "targets":"com.bilal-fazlani%jslt-parser", + "targets":"com.bicou%avokka-arangodb-akka com.bicou%avokka-arangodb com.bicou%avokka-arangodb-fs2 com.bicou%avokka-velocypack-enumeratum com.bicou%avokka-velocypack com.bicou%avokka-velocystream com.bicou%avokka-velocypack-circe", "config":{ "projects":{ "exclude":[ @@ -3646,7 +3917,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -3665,18 +3936,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.0\"", + "pattern":"val scala3Version = \"3.3.0\"", "replaceWith":"val scala3Version = \"\"" } ] } }, - "bilal-fazlani/rainbowcli":{ - "project":"bilal-fazlani/rainbowcli", - "repoUrl":"https://github.com/bilal-fazlani/rainbowcli.git", - "revision":"v3.0.1", - "version":"3.0.1", - "targets":"com.bilal-fazlani%rainbowcli", + "azhur/kafka-serde-scala":{ + "project":"azhur/kafka-serde-scala", + "repoUrl":"https://github.com/azhur/kafka-serde-scala.git", + "revision":"v0.8.2", + "version":"0.8.2", + "targets":"io.github.azhur%kafka-serde-upickle io.github.azhur%kafka-serde-zio-json io.github.azhur%kafka-serde-scalapb io.github.azhur%kafka-serde-json4s io.github.azhur%kafka-serde-jsoniter-scala io.github.azhur%kafka-serde-circe", "config":{ "projects":{ "exclude":[ @@ -3687,7 +3958,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -3708,12 +3979,12 @@ ] } }, - "bilal-fazlani/swiftbar4s":{ - "project":"bilal-fazlani/swiftbar4s", - "repoUrl":"https://github.com/bilal-fazlani/swiftbar4s.git", - "revision":"v0.2.2", - "version":"0.2.2", - "targets":"com.bilal-fazlani%swiftbar4s", + "babylonhealth/lit-fhir":{ + "project":"babylonhealth/lit-fhir", + "repoUrl":"https://github.com/babylonhealth/lit-fhir.git", + "revision":"g0.14.17", + "version":"0.14.17", + "targets":"com.babylonhealth.lit%generator com.babylonhealth.lit%hl7 com.babylonhealth.lit%common com.babylonhealth.lit%macros com.babylonhealth.lit%core com.babylonhealth.lit%protoshim com.babylonhealth.lit%usbase com.babylonhealth.lit%fhirpath com.babylonhealth.lit%ukcore com.babylonhealth.lit%uscore", "config":{ "projects":{ "exclude":[ @@ -3739,18 +4010,29 @@ ] }, - "tests":"full", + "tests":"disabled", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.2.0\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "bilal-fazlani/zio-mongo":{ - "project":"bilal-fazlani/zio-mongo", - "repoUrl":"https://github.com/bilal-fazlani/zio-mongo.git", - "revision":"v0.6.1", - "version":"0.6.1", - "targets":"com.bilal-fazlani.zio-mongo%zio-mongo com.bilal-fazlani.zio-mongo%circe-codec com.bilal-fazlani.zio-mongo%zio-json-codec", + "bahmanm/persianutils":{ + "project":"bahmanm/persianutils", + "repoUrl":"https://github.com/bahmanm/persianutils.git", + "revision":"v5.0", + "version":"5.0", + "targets":"com.bahmanm%persianutils" + }, + "banno/cosmos4s":{ + "project":"banno/cosmos4s", + "repoUrl":"https://github.com/banno/cosmos4s.git", + "revision":"v1.0.0-RC8", + "version":"1.0.0-RC8", + "targets":"com.banno%cosmos4s", "config":{ "projects":{ "exclude":[ @@ -3761,7 +4043,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -3778,16 +4060,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "bilal-fazlani/zio-ulid":{ - "project":"bilal-fazlani/zio-ulid", - "repoUrl":"https://github.com/bilal-fazlani/zio-ulid.git", - "revision":"v1.3.0", - "version":"1.3.0", - "targets":"com.bilal-fazlani%zio-ulid", + "banno/vault4s":{ + "project":"banno/vault4s", + "repoUrl":"https://github.com/banno/vault4s.git", + "revision":"v9.1.0", + "version":"9.1.0", + "targets":"com.banno%vault4s", "config":{ "projects":{ "exclude":[ @@ -3798,7 +4084,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -3817,25 +4103,25 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val Scala3 = \"3.0.2\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "billzabob/fordeckmacia":{ - "project":"billzabob/fordeckmacia", - "repoUrl":"https://github.com/billzabob/fordeckmacia.git", - "revision":"v1.1.0", - "version":"1.1.0", - "targets":"com.github.billzabob%fordeckmacia" + "barnardb/tinyplate":{ + "project":"barnardb/tinyplate", + "repoUrl":"https://github.com/barnardb/tinyplate.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"io.github.barnardb%tinyplate" }, - "bitlap/rolls":{ - "project":"bitlap/rolls", - "repoUrl":"https://github.com/bitlap/rolls.git", - "revision":"v0.2.9", - "version":"0.2.9", - "targets":"org.bitlap%rolls-compiler-plugin org.bitlap%rolls-core org.bitlap%rolls-csv", + "bcarter97/id-generator":{ + "project":"bcarter97/id-generator", + "repoUrl":"https://github.com/bcarter97/id-generator.git", + "revision":"v0.5.1", + "version":"0.5.1", + "targets":"io.github.bcarter97%id-generator", "config":{ "projects":{ "exclude":[ @@ -3846,7 +4132,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -3865,18 +4151,25 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.0\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val scala3 = \"3.1.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "bitmarck-service/base32check-scala":{ - "project":"bitmarck-service/base32check-scala", - "repoUrl":"https://github.com/bitmarck-service/base32check-scala.git", - "revision":"0.1.0", - "version":"0.1.0", - "targets":"de.bitmarck.bms%base32check-scala", + "beangle/db":{ + "project":"beangle/db", + "repoUrl":"https://github.com/beangle/db.git", + "revision":"v0.0.26", + "version":"0.0.26", + "targets":"org.beangle.db%beangle-db-lint org.beangle.db%beangle-db-report org.beangle.db%beangle-db-transport" + }, + "beangle/doc":{ + "project":"beangle/doc", + "repoUrl":"https://github.com/beangle/doc.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"org.beangle.doc%beangle-doc-docx org.beangle.doc%beangle-doc-pdf", "config":{ "projects":{ "exclude":[ @@ -3891,7 +4184,7 @@ }, "sbt":{ "commands":[ - + "styleFormat" ], "options":[ @@ -3908,12 +4201,26 @@ ] } }, - "bitmarck-service/fs2-secon":{ - "project":"bitmarck-service/fs2-secon", - "repoUrl":"https://github.com/bitmarck-service/fs2-secon.git", - "revision":"0.2.0", - "version":"0.2.0", - "targets":"de.bitmarck.bms%fs2-secon de.bitmarck.bms%http4s-secon", + "beangle/ids":{ + "project":"beangle/ids", + "repoUrl":"https://github.com/beangle/ids.git", + "revision":"v0.3.12", + "version":"0.3.12", + "targets":"org.beangle.ids%beangle-ids-cas org.beangle.ids%beangle-ids-sms org.beangle.ids%beangle-ids-web" + }, + "beangle/notify":{ + "project":"beangle/notify", + "repoUrl":"https://github.com/beangle/notify.git", + "revision":"v0.1.2", + "version":"0.1.2", + "targets":"org.beangle.notify%beangle-notify-core" + }, + "beangle/otk":{ + "project":"beangle/otk", + "repoUrl":"https://github.com/beangle/otk.git", + "revision":"v0.0.9", + "version":"0.0.9", + "targets":"org.beangle.otk%beangle-otk-ws org.beangle.otk%beangle-otk-sys org.beangle.otk%beangle-otk-doc org.beangle.otk%beangle-otk-captcha org.beangle.otk%beangle-otk-code org.beangle.otk%beangle-otk-sns", "config":{ "projects":{ "exclude":[ @@ -3945,12 +4252,12 @@ ] } }, - "bkirwi/decline":{ - "project":"bkirwi/decline", - "repoUrl":"https://github.com/bkirwi/decline.git", - "revision":"v2.4.1", - "version":"2.4.1", - "targets":"com.monovore%decline com.monovore%decline-effect com.monovore%decline-refined", + "benhutchison/scalaswingcontrib":{ + "project":"benhutchison/scalaswingcontrib", + "repoUrl":"https://github.com/benhutchison/scalaswingcontrib.git", + "revision":"", + "version":"1.9", + "targets":"com.github.benhutchison%scalaswingcontrib", "config":{ "projects":{ "exclude":[ @@ -3961,7 +4268,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -3976,29 +4283,18 @@ ] }, - "tests":"full", + "tests":"disabled", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "blackdoor/jose":{ - "project":"blackdoor/jose", - "repoUrl":"https://github.com/blackdoor/jose.git", - "revision":"0.4.6", - "version":"0.4.6", - "targets":"black.door%jose black.door%jose-json-circe" - }, - "blemale/scaffeine":{ - "project":"blemale/scaffeine", - "repoUrl":"https://github.com/blemale/scaffeine.git", - "revision":"v5.2.1", - "version":"5.2.1", - "targets":"com.github.blemale%scaffeine", + "benoitlouy/tele":{ + "project":"benoitlouy/tele", + "repoUrl":"https://github.com/benoitlouy/tele.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"io.github.benoitlouy%tele", "config":{ "projects":{ "exclude":[ @@ -4009,7 +4305,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -4026,16 +4322,27 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.1.0\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "bot4s/zmatrix":{ - "project":"bot4s/zmatrix", - "repoUrl":"https://github.com/bot4s/zmatrix.git", - "revision":"v0.3.0", - "version":"0.3.0", - "targets":"com.bot4s%zmatrix", + "besselstudio/coingecko":{ + "project":"besselstudio/coingecko", + "repoUrl":"https://github.com/besselstudio/coingecko.git", + "revision":"v3.1.0", + "version":"3.1.0", + "targets":"com.besselstudio%coingecko" + }, + "bilal-fazlani/akka-http-jwt-auth":{ + "project":"bilal-fazlani/akka-http-jwt-auth", + "repoUrl":"https://github.com/bilal-fazlani/akka-http-jwt-auth.git", + "revision":"v0.0.6", + "version":"0.0.6", + "targets":"com.bilal-fazlani%akka-http-jwt-auth com.bilal-fazlani%akka-http-client-circe com.bilal-fazlani%akka-http-oidc-client", "config":{ "projects":{ "exclude":[ @@ -4046,11 +4353,11 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ - "excludeLibraryDependency com.github.ghik:zerowaste_{scalaVersion}" + ], "options":[ @@ -4061,25 +4368,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "bp3r/jsonrpc2":{ - "project":"bp3r/jsonrpc2", - "repoUrl":"https://github.com/bp3r/jsonrpc2.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.github.bp3r%jsonrpc2" - }, - "bpholt/java-time-literals":{ - "project":"bpholt/java-time-literals", - "repoUrl":"https://github.com/bpholt/java-time-literals.git", - "revision":"v1.1.1", - "version":"1.1.1", - "targets":"dev.holt%java-time-literals", + "bilal-fazlani/circe-json-schema":{ + "project":"bilal-fazlani/circe-json-schema", + "repoUrl":"https://github.com/bilal-fazlani/circe-json-schema.git", + "revision":"v0.4.3", + "version":"0.4.3", + "targets":"com.bilal-fazlani%circe-json-schema", "config":{ "projects":{ "exclude":[ @@ -4090,7 +4390,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -4105,39 +4405,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "camunda-community-hub/camunda-dmn-tester":{ - "project":"camunda-community-hub/camunda-dmn-tester", - "repoUrl":"https://github.com/camunda-community-hub/camunda-dmn-tester.git", - "revision":"0.17.9", - "version":"0.17.9", - "targets":"io.github.pme123%camunda-dmn-tester-shared" - }, - "carlos-verdes/zio-arangodb":{ - "project":"carlos-verdes/zio-arangodb", - "repoUrl":"https://github.com/carlos-verdes/zio-arangodb.git", - "revision":"v0.2.3", - "version":"0.2.3", - "targets":"io.funkode%zio-arangodb io.funkode%arangodb-docker io.funkode%zio-arangodb-http io.funkode%zio-velocypack" - }, - "carlos-verdes/zio-resource":{ - "project":"carlos-verdes/zio-resource", - "repoUrl":"https://github.com/carlos-verdes/zio-resource.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"io.funkode%zio-resource" - }, - "carlosedp/riscvassembler":{ - "project":"carlosedp/riscvassembler", - "repoUrl":"https://github.com/carlosedp/riscvassembler.git", - "revision":"v1.7.1", - "version":"1.7.1", - "targets":"com.carlosedp%riscvassembler", + "bilal-fazlani/csv-codec":{ + "project":"bilal-fazlani/csv-codec", + "repoUrl":"https://github.com/bilal-fazlani/csv-codec.git", + "revision":"v0.2.2", + "version":"0.2.2", + "targets":"com.bilal-fazlani%csv-codec", "config":{ "projects":{ "exclude":[ @@ -4166,19 +4445,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sc", - "pattern":"val scala3 = \"3.2.1\"", - "replaceWith":"val scala3 = \"\"" + "path":"build.sbt", + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "carlosedp/scalautils":{ - "project":"carlosedp/scalautils", - "repoUrl":"https://github.com/carlosedp/scalautils.git", - "revision":"v0.10.2", - "version":"0.10.2", - "targets":"com.carlosedp%scalautils", + "bilal-fazlani/csv-schema":{ + "project":"bilal-fazlani/csv-schema", + "repoUrl":"https://github.com/bilal-fazlani/csv-schema.git", + "revision":"v1.1.2", + "version":"1.1.2", + "targets":"com.bilal-fazlani%csv-schema", "config":{ "projects":{ "exclude":[ @@ -4189,7 +4468,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -4210,12 +4489,12 @@ ] } }, - "carlosedp/zio-channel":{ - "project":"carlosedp/zio-channel", - "repoUrl":"https://github.com/carlosedp/zio-channel.git", - "revision":"0.2.1", - "version":"0.2.1", - "targets":"com.carlosedp%zio-channel", + "bilal-fazlani/jslt-parser":{ + "project":"bilal-fazlani/jslt-parser", + "repoUrl":"https://github.com/bilal-fazlani/jslt-parser.git", + "revision":"v0.0.8", + "version":"0.0.8", + "targets":"com.bilal-fazlani%jslt-parser", "config":{ "projects":{ "exclude":[ @@ -4226,7 +4505,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -4243,16 +4522,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.2.0\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "carueda/tscfg":{ - "project":"carueda/tscfg", - "repoUrl":"https://github.com/carueda/tscfg.git", - "revision":"v1.0.2", - "version":"1.0.2", - "targets":"com.github.carueda%tscfg", + "bilal-fazlani/rainbowcli":{ + "project":"bilal-fazlani/rainbowcli", + "repoUrl":"https://github.com/bilal-fazlani/rainbowcli.git", + "revision":"v3.0.1", + "version":"3.0.1", + "targets":"com.bilal-fazlani%rainbowcli", "config":{ "projects":{ "exclude":[ @@ -4263,11 +4546,11 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ - "genCode" + ], "options":[ @@ -4284,12 +4567,12 @@ ] } }, - "casehubdk/hxl":{ - "project":"casehubdk/hxl", - "repoUrl":"https://github.com/casehubdk/hxl.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.github.casehubdk%hxl", + "bilal-fazlani/scala-aql":{ + "project":"bilal-fazlani/scala-aql", + "repoUrl":"https://github.com/bilal-fazlani/scala-aql.git", + "revision":"v0.0.4", + "version":"0.0.4", + "targets":"com.bilal-fazlani%scala-aql", "config":{ "projects":{ "exclude":[ @@ -4300,7 +4583,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -4317,16 +4600,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "catap/scala-blake3":{ - "project":"catap/scala-blake3", - "repoUrl":"https://github.com/catap/scala-blake3.git", - "revision":"v2.9.0", - "version":"2.9.0", - "targets":"ky.korins%blake3", + "bilal-fazlani/swiftbar4s":{ + "project":"bilal-fazlani/swiftbar4s", + "repoUrl":"https://github.com/bilal-fazlani/swiftbar4s.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"com.bilal-fazlani%swiftbar4s", "config":{ "projects":{ "exclude":[ @@ -4354,20 +4641,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.0.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "catap/scala-sha":{ - "project":"catap/scala-sha", - "repoUrl":"https://github.com/catap/scala-sha.git", - "revision":"v1.2.1", - "version":"1.2.1", - "targets":"ky.korins%sha", + "bilal-fazlani/zio-maelstrom":{ + "project":"bilal-fazlani/zio-maelstrom", + "repoUrl":"https://github.com/bilal-fazlani/zio-maelstrom.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"com.bilal-fazlani%zio-maelstrom", "config":{ "projects":{ "exclude":[ @@ -4378,7 +4661,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -4397,25 +4680,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.0.1\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val scala3Version = \"3.3.0\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "cb372/cats-retry":{ - "project":"cb372/cats-retry", - "repoUrl":"https://github.com/cb372/cats-retry.git", - "revision":"v3.1.0", - "version":"3.1.0", - "targets":"com.github.cb372%cats-retry com.github.cb372%alleycats-retry com.github.cb372%cats-retry-mtl" - }, - "cb372/scalacache":{ - "project":"cb372/scalacache", - "repoUrl":"https://github.com/cb372/scalacache.git", - "revision":"v1.0.0-M6", - "version":"1.0.0-M6", - "targets":"com.github.cb372%scalacache-circe com.github.cb372%scalacache-caffeine com.github.cb372%scalacache-redis com.github.cb372%scalacache-core com.github.cb372%scalacache-memcached", + "bilal-fazlani/zio-mongo":{ + "project":"bilal-fazlani/zio-mongo", + "repoUrl":"https://github.com/bilal-fazlani/zio-mongo.git", + "revision":"v0.6.1", + "version":"0.6.1", + "targets":"com.bilal-fazlani.zio-mongo%zio-mongo com.bilal-fazlani.zio-mongo%circe-codec com.bilal-fazlani.zio-mongo%zio-json-codec", "config":{ "projects":{ "exclude":[ @@ -4447,19 +4723,12 @@ ] } }, - "cchantep/acolyte":{ - "project":"cchantep/acolyte", - "repoUrl":"https://github.com/cchantep/acolyte.git", - "revision":"1.2.7", - "version":"1.2.7", - "targets":"org.eu.acolyte%jdbc-scala org.eu.acolyte%play-jdbc org.eu.acolyte%play-reactive-mongo org.eu.acolyte%reactive-mongo" - }, - "cequence-io/openai-scala-client":{ - "project":"cequence-io/openai-scala-client", - "repoUrl":"https://github.com/cequence-io/openai-scala-client.git", - "revision":"v0.3.2", - "version":"0.3.2", - "targets":"io.cequence%openai-scala-client io.cequence%openai-scala-client-stream io.cequence%openai-scala-core", + "bilal-fazlani/zio-ulid":{ + "project":"bilal-fazlani/zio-ulid", + "repoUrl":"https://github.com/bilal-fazlani/zio-ulid.git", + "revision":"v1.3.1", + "version":"1.3.1", + "targets":"com.bilal-fazlani%zio-ulid", "config":{ "projects":{ "exclude":[ @@ -4470,7 +4739,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -4489,18 +4758,32 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val scala3Version = \"3.3.0\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "cequence-io/pinecone-scala":{ - "project":"cequence-io/pinecone-scala", - "repoUrl":"https://github.com/cequence-io/pinecone-scala.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.cequence%pinecone-scala-client io.cequence%pinecone-scala-core", + "billzabob/fordeckmacia":{ + "project":"billzabob/fordeckmacia", + "repoUrl":"https://github.com/billzabob/fordeckmacia.git", + "revision":"v1.1.0", + "version":"1.1.0", + "targets":"com.github.billzabob%fordeckmacia" + }, + "bishabosha/enum-extensions":{ + "project":"bishabosha/enum-extensions", + "repoUrl":"https://github.com/bishabosha/enum-extensions.git", + "revision":"v0.1.1", + "version":"0.1.1", + "targets":"io.github.bishabosha%enum-extensions" + }, + "bitlap/rolls":{ + "project":"bitlap/rolls", + "repoUrl":"https://github.com/bitlap/rolls.git", + "revision":"v0.3.4", + "version":"0.3.4", + "targets":"org.bitlap%rolls-compiler-plugin org.bitlap%rolls-core org.bitlap%rolls-csv org.bitlap%rolls-zio", "config":{ "projects":{ "exclude":[ @@ -4511,7 +4794,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -4530,18 +4813,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val scala3Version = \"3.3.0\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "changvvb/scala-protobuf-java":{ - "project":"changvvb/scala-protobuf-java", - "repoUrl":"https://github.com/changvvb/scala-protobuf-java.git", - "revision":"v0.3.0", - "version":"0.3.0", - "targets":"com.github.changvvb%scala-protobuf-java", + "bitmarck-service/base32check-scala":{ + "project":"bitmarck-service/base32check-scala", + "repoUrl":"https://github.com/bitmarck-service/base32check-scala.git", + "revision":"0.1.0", + "version":"0.1.0", + "targets":"de.bitmarck.bms%base32check-scala", "config":{ "projects":{ "exclude":[ @@ -4552,7 +4835,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -4569,20 +4852,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "chatwork/scala-jwk":{ - "project":"chatwork/scala-jwk", - "repoUrl":"https://github.com/chatwork/scala-jwk.git", - "revision":"v1.2.24", - "version":"1.2.24", - "targets":"com.chatwork%scala-jwk", + "bitmarck-service/fs2-secon":{ + "project":"bitmarck-service/fs2-secon", + "repoUrl":"https://github.com/bitmarck-service/fs2-secon.git", + "revision":"0.2.1", + "version":"0.2.1", + "targets":"de.bitmarck.bms%fs2-secon de.bitmarck.bms%http4s-secon", "config":{ "projects":{ "exclude":[ @@ -4610,20 +4889,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3Version = \"3.0.2\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "cheleb/zio-pravega":{ - "project":"cheleb/zio-pravega", - "repoUrl":"https://github.com/cheleb/zio-pravega.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"dev.cheleb%zio-pravega", + "bkirwi/decline":{ + "project":"bkirwi/decline", + "repoUrl":"https://github.com/bkirwi/decline.git", + "revision":"v2.4.1", + "version":"2.4.1", + "targets":"com.monovore%decline com.monovore%decline-effect com.monovore%decline-refined", "config":{ "projects":{ "exclude":[ @@ -4634,13 +4909,11 @@ } }, "java":{ - "version":"21" + "version":"11" }, "sbt":{ "commands":[ - "set pravega/Test/unmanagedSources/excludeFilter ~= {_ || \"CreateResourcesExample.scala\" }", - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -4651,25 +4924,29 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "chrisokasaki/hwtest":{ - "project":"chrisokasaki/hwtest", - "repoUrl":"https://github.com/chrisokasaki/hwtest.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"org.okasaki%hwtest" + "blackdoor/jose":{ + "project":"blackdoor/jose", + "repoUrl":"https://github.com/blackdoor/jose.git", + "revision":"0.4.6", + "version":"0.4.6", + "targets":"black.door%jose black.door%jose-json-circe" }, - "christian-schlichtherle/circe-kafka":{ - "project":"christian-schlichtherle/circe-kafka", - "repoUrl":"https://github.com/christian-schlichtherle/circe-kafka.git", - "revision":"v3.0.0", - "version":"3.0.0", - "targets":"global.namespace.circe-kafka%circe-kafka", + "blemale/scaffeine":{ + "project":"blemale/scaffeine", + "repoUrl":"https://github.com/blemale/scaffeine.git", + "revision":"v5.2.1", + "version":"5.2.1", + "targets":"com.github.blemale%scaffeine", "config":{ "projects":{ "exclude":[ @@ -4680,7 +4957,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -4701,12 +4978,12 @@ ] } }, - "chronoscala/chronoscala":{ - "project":"chronoscala/chronoscala", - "repoUrl":"https://github.com/chronoscala/chronoscala.git", - "revision":"2.0.8", - "version":"2.0.8", - "targets":"io.github.chronoscala%chronoscala", + "bot4s/zmatrix":{ + "project":"bot4s/zmatrix", + "repoUrl":"https://github.com/bot4s/zmatrix.git", + "revision":"v0.3.4", + "version":"0.3.4", + "targets":"com.bot4s%zmatrix", "config":{ "projects":{ "exclude":[ @@ -4717,11 +4994,11 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ - + "excludeLibraryDependency com.github.ghik:zerowaste_{scalaVersion}" ], "options":[ @@ -4738,19 +5015,19 @@ ] } }, - "ciaraobrien/dottytags":{ - "project":"ciaraobrien/dottytags", - "repoUrl":"https://github.com/ciaraobrien/dottytags.git", - "revision":"4a7917641bb2af1ef90f5adcbfac505db52d3bb9", - "version":"1.1.0", - "targets":"io.github.ciaraobrien%dottytags" + "bp3r/jsonrpc2":{ + "project":"bp3r/jsonrpc2", + "repoUrl":"https://github.com/bp3r/jsonrpc2.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.github.bp3r%jsonrpc2" }, - "circe/circe":{ - "project":"circe/circe", - "repoUrl":"https://github.com/circe/circe.git", - "revision":"v0.14.5", - "version":"0.14.5", - "targets":"io.circe%circe-refined io.circe%circe-numbers io.circe%circe-pointer-literal io.circe%circe-scodec io.circe%circe-numbers-testing io.circe%circe-testing io.circe%circe-jawn io.circe%circe-literal io.circe%circe-generic io.circe%circe-parser io.circe%circe-pointer io.circe%circe-core", + "bpholt/java-time-literals":{ + "project":"bpholt/java-time-literals", + "repoUrl":"https://github.com/bpholt/java-time-literals.git", + "revision":"v1.1.1", + "version":"1.1.1", + "targets":"dev.holt%java-time-literals", "config":{ "projects":{ "exclude":[ @@ -4782,12 +5059,12 @@ ] } }, - "circe/circe-config":{ - "project":"circe/circe-config", - "repoUrl":"https://github.com/circe/circe-config.git", - "revision":"v0.10.0", - "version":"0.10.0", - "targets":"io.circe%circe-config", + "cake-lier/tuples-space-client":{ + "project":"cake-lier/tuples-space-client", + "repoUrl":"https://github.com/cake-lier/tuples-space-client.git", + "revision":"v1.0.2", + "version":"1.0.2", + "targets":"io.github.cake-lier%tuples-space-client", "config":{ "projects":{ "exclude":[ @@ -4802,7 +5079,8 @@ }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -4815,20 +5093,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "circe/circe-fs2":{ - "project":"circe/circe-fs2", - "repoUrl":"https://github.com/circe/circe-fs2.git", - "revision":"v0.14.1", - "version":"0.14.1", - "targets":"io.circe%circe-fs2", + "cake-lier/tuples-space-core":{ + "project":"cake-lier/tuples-space-core", + "repoUrl":"https://github.com/cake-lier/tuples-space-core.git", + "revision":"v1.0.2", + "version":"1.0.2", + "targets":"io.github.cake-lier%tuples-space-core", "config":{ "projects":{ "exclude":[ @@ -4843,7 +5117,8 @@ }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -4860,19 +5135,33 @@ ] } }, - "circe/circe-jackson":{ - "project":"circe/circe-jackson", - "repoUrl":"https://github.com/circe/circe-jackson.git", - "revision":"v0.14.0", - "version":"0.14.0", - "targets":"io.circe%circe-jackson28 io.circe%circe-jackson212 io.circe%circe-jackson29 io.circe%circe-jackson211 io.circe%circe-jackson26 io.circe%circe-jackson210 io.circe%circe-jackson25 io.circe%circe-jackson27" + "camunda-community-hub/camunda-dmn-tester":{ + "project":"camunda-community-hub/camunda-dmn-tester", + "repoUrl":"https://github.com/camunda-community-hub/camunda-dmn-tester.git", + "revision":"0.17.9", + "version":"0.17.9", + "targets":"io.github.pme123%camunda-dmn-tester-shared" }, - "circe/circe-yaml":{ - "project":"circe/circe-yaml", - "repoUrl":"https://github.com/circe/circe-yaml.git", - "revision":"v0.15.0-RC1", - "version":"0.15.0-RC1", - "targets":"io.circe%circe-yaml io.circe%circe-yaml-common io.circe%circe-yaml-v12", + "carlos-verdes/zio-arangodb":{ + "project":"carlos-verdes/zio-arangodb", + "repoUrl":"https://github.com/carlos-verdes/zio-arangodb.git", + "revision":"v0.3.6", + "version":"0.3.6", + "targets":"io.funkode%zio-arangodb io.funkode%arangodb-docker io.funkode%zio-arangodb-http io.funkode%zio-velocypack" + }, + "carlos-verdes/zio-resource":{ + "project":"carlos-verdes/zio-resource", + "repoUrl":"https://github.com/carlos-verdes/zio-resource.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"io.funkode%zio-resource" + }, + "carlosedp/riscvassembler":{ + "project":"carlosedp/riscvassembler", + "repoUrl":"https://github.com/carlosedp/riscvassembler.git", + "revision":"v1.9.1", + "version":"1.9.1", + "targets":"com.carlosedp%riscvassembler", "config":{ "projects":{ "exclude":[ @@ -4901,19 +5190,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.1\"", + "path":"build.sc", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "clevercloud/pulsar4s":{ - "project":"clevercloud/pulsar4s", - "repoUrl":"https://github.com/clevercloud/pulsar4s.git", - "revision":"v2.9.0", - "version":"2.9.0", - "targets":"com.clever-cloud.pulsar4s%pulsar4s-play-json com.clever-cloud.pulsar4s%pulsar4s-monix com.clever-cloud.pulsar4s%pulsar4s-zio com.clever-cloud.pulsar4s%pulsar4s-scalaz com.clever-cloud.pulsar4s%pulsar4s-akka-streams com.clever-cloud.pulsar4s%pulsar4s-json4s com.clever-cloud.pulsar4s%pulsar4s-core com.clever-cloud.pulsar4s%pulsar4s-spray-json com.clever-cloud.pulsar4s%pulsar4s-jackson com.clever-cloud.pulsar4s%pulsar4s-fs2 com.clever-cloud.pulsar4s%pulsar4s-cats-effect com.clever-cloud.pulsar4s%pulsar4s-avro com.clever-cloud.pulsar4s%pulsar4s-circe", + "carlosedp/scalautils":{ + "project":"carlosedp/scalautils", + "repoUrl":"https://github.com/carlosedp/scalautils.git", + "revision":"v0.10.2", + "version":"0.10.2", + "targets":"com.carlosedp%scalautils", "config":{ "projects":{ "exclude":[ @@ -4924,7 +5213,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -4939,18 +5228,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "clockworkconsulting/csexp":{ - "project":"clockworkconsulting/csexp", - "repoUrl":"https://github.com/clockworkconsulting/csexp.git", - "revision":"v3.2.0", - "version":"3.2.0", - "targets":"dk.cwconsult%csexp", + "carlosedp/zio-channel":{ + "project":"carlosedp/zio-channel", + "repoUrl":"https://github.com/carlosedp/zio-channel.git", + "revision":"0.5.5", + "version":"0.5.5", + "targets":"com.carlosedp%zio-channel", "config":{ "projects":{ "exclude":[ @@ -4961,7 +5250,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -4979,19 +5268,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala_3 = \"3.1.0\"", - "replaceWith":"val scala_3 = \"\"" + "path":"build.sc", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "clockworkconsulting/peregrin":{ - "project":"clockworkconsulting/peregrin", - "repoUrl":"https://github.com/clockworkconsulting/peregrin.git", - "revision":"v9.0.0", - "version":"9.0.0", - "targets":"dk.cwconsult.peregrin%peregrin-core", + "carueda/tscfg":{ + "project":"carueda/tscfg", + "repoUrl":"https://github.com/carueda/tscfg.git", + "revision":"v1.0.2", + "version":"1.0.2", + "targets":"com.github.carueda%tscfg", "config":{ "projects":{ "exclude":[ @@ -5002,11 +5291,11 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ - + "genCode" ], "options":[ @@ -5017,22 +5306,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala_3 = \"3.1.1\"", - "replaceWith":"val scala_3 = \"\"" - } + ] } }, - "clulab/fatdynet":{ - "project":"clulab/fatdynet", - "repoUrl":"https://github.com/clulab/fatdynet.git", - "revision":"v0.4.4", - "version":"0.4.4", - "targets":"org.clulab%fatdynet", + "casehubdk/hxl":{ + "project":"casehubdk/hxl", + "repoUrl":"https://github.com/casehubdk/hxl.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"io.github.casehubdk%hxl io.github.casehubdk%hxl-natchez", "config":{ "projects":{ "exclude":[ @@ -5043,7 +5328,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -5058,29 +5343,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "clulab/processors":{ - "project":"clulab/processors", - "repoUrl":"https://github.com/clulab/processors.git", - "revision":"v8.5.3", - "version":"8.5.3", - "targets":"org.clulab%processors-corenlp org.clulab%processors-main org.clulab%processors-openie" - }, - "codacy/codacy-plugins-api":{ - "project":"codacy/codacy-plugins-api", - "repoUrl":"https://github.com/codacy/codacy-plugins-api.git", - "revision":"7.2.0", - "version":"7.2.0", - "targets":"com.codacy%codacy-plugins-api", + "catap/scala-blake3":{ + "project":"catap/scala-blake3", + "repoUrl":"https://github.com/catap/scala-blake3.git", + "revision":"v2.9.0", + "version":"2.9.0", + "targets":"ky.korins%blake3", "config":{ "projects":{ "exclude":[ @@ -5091,7 +5365,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -5110,25 +5384,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", + "pattern":"val scala3 = \"3.0.1\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "codedx/mapk":{ - "project":"codedx/mapk", - "repoUrl":"https://github.com/codedx/mapk.git", - "revision":"1.2.0", - "version":"1.2.0", - "targets":"com.codedx%mapk" - }, - "codingwell/scala-guice":{ - "project":"codingwell/scala-guice", - "repoUrl":"https://github.com/codingwell/scala-guice.git", - "revision":"v7.0.0", - "version":"7.0.0", - "targets":"net.codingwell%scala-guice", + "catap/scala-sha":{ + "project":"catap/scala-sha", + "repoUrl":"https://github.com/catap/scala-sha.git", + "revision":"v1.2.1", + "version":"1.2.1", + "targets":"ky.korins%sha", "config":{ "projects":{ "exclude":[ @@ -5139,7 +5406,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -5158,18 +5425,25 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", + "pattern":"val scala3 = \"3.0.1\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "cognitedata/cognite-sdk-scala":{ - "project":"cognitedata/cognite-sdk-scala", - "repoUrl":"https://github.com/cognitedata/cognite-sdk-scala.git", - "revision":"0b3aecb6ef50c9de6832064bebe78f8339d2f37d", - "version":"2.5.2", - "targets":"com.cognite%cognite-sdk-scala", + "cb372/cats-retry":{ + "project":"cb372/cats-retry", + "repoUrl":"https://github.com/cb372/cats-retry.git", + "revision":"v3.1.0", + "version":"3.1.0", + "targets":"com.github.cb372%cats-retry com.github.cb372%alleycats-retry com.github.cb372%cats-retry-mtl" + }, + "cb372/scalacache":{ + "project":"cb372/scalacache", + "repoUrl":"https://github.com/cb372/scalacache.git", + "revision":"v1.0.0-M6", + "version":"1.0.0-M6", + "targets":"com.github.cb372%scalacache-circe com.github.cb372%scalacache-caffeine com.github.cb372%scalacache-redis com.github.cb372%scalacache-core com.github.cb372%scalacache-memcached", "config":{ "projects":{ "exclude":[ @@ -5180,12 +5454,11 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -5196,18 +5469,25 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "com-lihaoyi/cask":{ - "project":"com-lihaoyi/cask", - "repoUrl":"https://github.com/com-lihaoyi/cask.git", - "revision":"0.9.1", - "version":"0.9.1", - "targets":"com.lihaoyi%cask com.lihaoyi%cask-util", + "cchantep/acolyte":{ + "project":"cchantep/acolyte", + "repoUrl":"https://github.com/cchantep/acolyte.git", + "revision":"1.2.9", + "version":"1.2.9", + "targets":"org.eu.acolyte%jdbc-scala org.eu.acolyte%play-jdbc org.eu.acolyte%play-reactive-mongo org.eu.acolyte%reactive-mongo" + }, + "cequence-io/openai-scala-client":{ + "project":"cequence-io/openai-scala-client", + "repoUrl":"https://github.com/cequence-io/openai-scala-client.git", + "revision":"v0.5.0", + "version":"0.5.0", + "targets":"io.cequence%openai-scala-client io.cequence%openai-scala-client-stream io.cequence%openai-scala-core io.cequence%openai-scala-guice", "config":{ "projects":{ "exclude":[ @@ -5218,7 +5498,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -5236,19 +5516,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sc", + "path":"build.sbt", "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "com-lihaoyi/castor":{ - "project":"com-lihaoyi/castor", - "repoUrl":"https://github.com/com-lihaoyi/castor.git", - "revision":"0.3.0", - "version":"0.3.0", - "targets":"com.lihaoyi%castor", + "cequence-io/pinecone-scala":{ + "project":"cequence-io/pinecone-scala", + "repoUrl":"https://github.com/cequence-io/pinecone-scala.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.cequence%pinecone-scala-client io.cequence%pinecone-scala-core", "config":{ "projects":{ "exclude":[ @@ -5259,7 +5539,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -5277,19 +5557,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sc", - "pattern":"val scala3 = \"3.1.3\"", + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "com-lihaoyi/fansi":{ - "project":"com-lihaoyi/fansi", - "repoUrl":"https://github.com/com-lihaoyi/fansi.git", - "revision":"0.4.0", - "version":"0.4.0", - "targets":"com.lihaoyi%fansi", + "changvvb/scala-protobuf-java":{ + "project":"changvvb/scala-protobuf-java", + "repoUrl":"https://github.com/changvvb/scala-protobuf-java.git", + "revision":"v0.3.0", + "version":"0.3.0", + "targets":"com.github.changvvb%scala-protobuf-java", "config":{ "projects":{ "exclude":[ @@ -5300,7 +5580,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -5317,27 +5597,31 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "com-lihaoyi/fastparse":{ - "project":"com-lihaoyi/fastparse", - "repoUrl":"https://github.com/com-lihaoyi/fastparse.git", - "revision":"3.0.1", - "version":"3.0.1", - "targets":"com.lihaoyi%fastparse com.lihaoyi%cssparse com.lihaoyi%pythonparse com.lihaoyi%scalaparse", + "chatwork/scala-jwk":{ + "project":"chatwork/scala-jwk", + "repoUrl":"https://github.com/chatwork/scala-jwk.git", + "revision":"v1.2.24", + "version":"1.2.24", + "targets":"com.chatwork%scala-jwk", "config":{ "projects":{ "exclude":[ - "com.lihaoyi%pythonparse" + ], "overrides":{ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -5354,16 +5638,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val scala3Version = \"3.0.2\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "com-lihaoyi/geny":{ - "project":"com-lihaoyi/geny", - "repoUrl":"https://github.com/com-lihaoyi/geny.git", - "revision":"1.0.0", - "version":"1.0.0", - "targets":"com.lihaoyi%geny", + "cheleb/zio-pravega":{ + "project":"cheleb/zio-pravega", + "repoUrl":"https://github.com/cheleb/zio-pravega.git", + "revision":"v0.6.3", + "version":"0.6.3", + "targets":"dev.cheleb%zio-pravega", "config":{ "projects":{ "exclude":[ @@ -5374,11 +5662,13 @@ } }, "java":{ - "version":"17" + "version":"21" }, "sbt":{ "commands":[ - + "set pravega/Test/unmanagedSources/excludeFilter ~= {_ || \"CreateResourcesExample.scala\" }", + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -5389,18 +5679,25 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "com-lihaoyi/mainargs":{ - "project":"com-lihaoyi/mainargs", - "repoUrl":"https://github.com/com-lihaoyi/mainargs.git", - "revision":"0.5.0", - "version":"0.5.0", - "targets":"com.lihaoyi%mainargs", + "chrisokasaki/hwtest":{ + "project":"chrisokasaki/hwtest", + "repoUrl":"https://github.com/chrisokasaki/hwtest.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"org.okasaki%hwtest" + }, + "christian-schlichtherle/circe-kafka":{ + "project":"christian-schlichtherle/circe-kafka", + "repoUrl":"https://github.com/christian-schlichtherle/circe-kafka.git", + "revision":"v3.0.0", + "version":"3.0.0", + "targets":"global.namespace.circe-kafka%circe-kafka", "config":{ "projects":{ "exclude":[ @@ -5411,7 +5708,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -5428,20 +5725,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sc", - "pattern":"val scala3 = \"3.1.3\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "com-lihaoyi/os-lib":{ - "project":"com-lihaoyi/os-lib", - "repoUrl":"https://github.com/com-lihaoyi/os-lib.git", - "revision":"0.9.1", - "version":"0.9.1", - "targets":"com.lihaoyi%os-lib com.lihaoyi%os-lib-watch", + "chronoscala/chronoscala":{ + "project":"chronoscala/chronoscala", + "repoUrl":"https://github.com/chronoscala/chronoscala.git", + "revision":"2.0.9", + "version":"2.0.9", + "targets":"io.github.chronoscala%chronoscala", "config":{ "projects":{ "exclude":[ @@ -5452,7 +5745,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -5473,12 +5766,19 @@ ] } }, - "com-lihaoyi/pprint":{ - "project":"com-lihaoyi/pprint", - "repoUrl":"https://github.com/com-lihaoyi/pprint.git", - "revision":"0.8.1", - "version":"0.8.1", - "targets":"com.lihaoyi%pprint", + "ciaraobrien/dottytags":{ + "project":"ciaraobrien/dottytags", + "repoUrl":"https://github.com/ciaraobrien/dottytags.git", + "revision":"", + "version":"1.1.0", + "targets":"io.github.ciaraobrien%dottytags" + }, + "circe/circe":{ + "project":"circe/circe", + "repoUrl":"https://github.com/circe/circe.git", + "revision":"v0.14.6", + "version":"0.14.6", + "targets":"io.circe%circe-refined io.circe%circe-numbers io.circe%circe-pointer-literal io.circe%circe-scodec io.circe%circe-numbers-testing io.circe%circe-testing io.circe%circe-jawn io.circe%circe-literal io.circe%circe-generic io.circe%circe-parser io.circe%circe-pointer io.circe%circe-core", "config":{ "projects":{ "exclude":[ @@ -5510,12 +5810,12 @@ ] } }, - "com-lihaoyi/requests-scala":{ - "project":"com-lihaoyi/requests-scala", - "repoUrl":"https://github.com/com-lihaoyi/requests-scala.git", - "revision":"0.8.0", - "version":"0.8.0", - "targets":"com.lihaoyi%requests", + "circe/circe-config":{ + "project":"circe/circe-config", + "repoUrl":"https://github.com/circe/circe-config.git", + "revision":"v0.10.0", + "version":"0.10.0", + "targets":"io.circe%circe-config", "config":{ "projects":{ "exclude":[ @@ -5541,18 +5841,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "com-lihaoyi/scalatags":{ - "project":"com-lihaoyi/scalatags", - "repoUrl":"https://github.com/com-lihaoyi/scalatags.git", - "revision":"0.12.0", - "version":"0.12.0", - "targets":"com.lihaoyi%scalatags", + "circe/circe-fs2":{ + "project":"circe/circe-fs2", + "repoUrl":"https://github.com/circe/circe-fs2.git", + "revision":"v0.14.1", + "version":"0.14.1", + "targets":"io.circe%circe-fs2", "config":{ "projects":{ "exclude":[ @@ -5578,18 +5882,25 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "com-lihaoyi/sourcecode":{ - "project":"com-lihaoyi/sourcecode", - "repoUrl":"https://github.com/com-lihaoyi/sourcecode.git", - "revision":"0.3.0", - "version":"0.3.0", - "targets":"com.lihaoyi%sourcecode", + "circe/circe-jackson":{ + "project":"circe/circe-jackson", + "repoUrl":"https://github.com/circe/circe-jackson.git", + "revision":"v0.14.0", + "version":"0.14.0", + "targets":"io.circe%circe-jackson28 io.circe%circe-jackson212 io.circe%circe-jackson29 io.circe%circe-jackson211 io.circe%circe-jackson26 io.circe%circe-jackson210 io.circe%circe-jackson25 io.circe%circe-jackson27" + }, + "circe/circe-optics":{ + "project":"circe/circe-optics", + "repoUrl":"https://github.com/circe/circe-optics.git", + "revision":"v0.15.0", + "version":"0.15.0", + "targets":"io.circe%circe-optics", "config":{ "projects":{ "exclude":[ @@ -5617,16 +5928,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "com-lihaoyi/upickle":{ - "project":"com-lihaoyi/upickle", - "repoUrl":"https://github.com/com-lihaoyi/upickle.git", - "revision":"3.1.0", - "version":"3.1.0", - "targets":"com.lihaoyi%ujson com.lihaoyi%ujson-circe com.lihaoyi%upickle com.lihaoyi%upickle-core com.lihaoyi%upack com.lihaoyi%ujson-json4s com.lihaoyi%upickle-implicits", + "circe/circe-yaml":{ + "project":"circe/circe-yaml", + "repoUrl":"https://github.com/circe/circe-yaml.git", + "revision":"v0.15.0-RC1", + "version":"0.15.0-RC1", + "targets":"io.circe%circe-yaml io.circe%circe-yaml-common io.circe%circe-yaml-v12", "config":{ "projects":{ "exclude":[ @@ -5655,19 +5970,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sc", - "pattern":"val scala3 = \"3.2.2\"", + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.1\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "com-lihaoyi/utest":{ - "project":"com-lihaoyi/utest", - "repoUrl":"https://github.com/com-lihaoyi/utest.git", - "revision":"0.8.1", - "version":"0.8.1", - "targets":"com.lihaoyi%utest", + "cjmx/cjmx":{ + "project":"cjmx/cjmx", + "repoUrl":"https://github.com/cjmx/cjmx.git", + "revision":"v3.0.0-RC1", + "version":"3.0.0-RC1", + "targets":"com.github.cjmx%cjmx", "config":{ "projects":{ "exclude":[ @@ -5699,12 +6014,12 @@ ] } }, - "comcast/ip4s":{ - "project":"comcast/ip4s", - "repoUrl":"https://github.com/comcast/ip4s.git", - "revision":"v3.3.0", - "version":"3.3.0", - "targets":"com.comcast%ip4s-core com.comcast%ip4s-test-kit", + "clevercloud/pulsar4s":{ + "project":"clevercloud/pulsar4s", + "repoUrl":"https://github.com/clevercloud/pulsar4s.git", + "revision":"v2.9.0", + "version":"2.9.0", + "targets":"com.clever-cloud.pulsar4s%pulsar4s-play-json com.clever-cloud.pulsar4s%pulsar4s-monix com.clever-cloud.pulsar4s%pulsar4s-zio com.clever-cloud.pulsar4s%pulsar4s-scalaz com.clever-cloud.pulsar4s%pulsar4s-akka-streams com.clever-cloud.pulsar4s%pulsar4s-json4s com.clever-cloud.pulsar4s%pulsar4s-core com.clever-cloud.pulsar4s%pulsar4s-spray-json com.clever-cloud.pulsar4s%pulsar4s-jackson com.clever-cloud.pulsar4s%pulsar4s-fs2 com.clever-cloud.pulsar4s%pulsar4s-cats-effect com.clever-cloud.pulsar4s%pulsar4s-avro com.clever-cloud.pulsar4s%pulsar4s-circe", "config":{ "projects":{ "exclude":[ @@ -5715,7 +6030,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -5730,31 +6045,29 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "coralogix/zio-k8s":{ - "project":"coralogix/zio-k8s", - "repoUrl":"https://github.com/coralogix/zio-k8s.git", - "revision":"v2.0.2", - "version":"2.0.2", - "targets":"com.coralogix%zio-k8s-client com.coralogix%zio-k8s-client-optics com.coralogix%zio-k8s-client-quicklens com.coralogix%zio-k8s-operator", + "clockworkconsulting/csexp":{ + "project":"clockworkconsulting/csexp", + "repoUrl":"https://github.com/clockworkconsulting/csexp.git", + "revision":"v3.2.1", + "version":"3.2.1", + "targets":"dk.cwconsult%csexp", "config":{ "projects":{ "exclude":[ ], "overrides":{ - "zio-k8s-client-quicklens":{ - "tests":"disabled" - } + } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -5773,18 +6086,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val scala_3 = \"3.3.0\"", + "replaceWith":"val scala_3 = \"\"" } ] } }, - "cornerman/chameleon":{ - "project":"cornerman/chameleon", - "repoUrl":"https://github.com/cornerman/chameleon.git", - "revision":"v0.3.5", - "version":"0.3.5", - "targets":"com.github.cornerman%chameleon", + "clockworkconsulting/peregrin":{ + "project":"clockworkconsulting/peregrin", + "repoUrl":"https://github.com/clockworkconsulting/peregrin.git", + "revision":"v9.0.0", + "version":"9.0.0", + "targets":"dk.cwconsult.peregrin%peregrin-core", "config":{ "projects":{ "exclude":[ @@ -5795,7 +6108,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -5810,18 +6123,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala_3 = \"3.1.1\"", + "replaceWith":"val scala_3 = \"\"" + } ] } }, - "cornerman/scala-cuid":{ - "project":"cornerman/scala-cuid", - "repoUrl":"https://github.com/cornerman/scala-cuid.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.github.cornerman%scala-cuid", + "clulab/fatdynet":{ + "project":"clulab/fatdynet", + "repoUrl":"https://github.com/clulab/fatdynet.git", + "revision":"v0.4.5", + "version":"0.4.5", + "targets":"org.clulab%fatdynet", "config":{ "projects":{ "exclude":[ @@ -5832,7 +6149,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -5847,18 +6164,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "cornerman/simple-scalajs-requests":{ - "project":"cornerman/simple-scalajs-requests", - "repoUrl":"https://github.com/cornerman/simple-scalajs-requests.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.github.cornerman%simple-scalajs-requests", + "clulab/processors":{ + "project":"clulab/processors", + "repoUrl":"https://github.com/clulab/processors.git", + "revision":"v8.5.3", + "version":"8.5.3", + "targets":"org.clulab%processors-corenlp org.clulab%processors-main org.clulab%processors-openie", "config":{ "projects":{ "exclude":[ @@ -5869,7 +6186,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -5884,18 +6201,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "cornerman/sloth":{ - "project":"cornerman/sloth", - "repoUrl":"https://github.com/cornerman/sloth.git", - "revision":"v0.6.7", - "version":"0.6.7", - "targets":"com.github.cornerman%sloth-types", + "codacy/codacy-plugins-api":{ + "project":"codacy/codacy-plugins-api", + "repoUrl":"https://github.com/codacy/codacy-plugins-api.git", + "revision":"8.0.0", + "version":"8.0.0", + "targets":"com.codacy%codacy-plugins-api", "config":{ "projects":{ "exclude":[ @@ -5906,7 +6223,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -5923,23 +6240,27 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "coursier/class-path-util":{ - "project":"coursier/class-path-util", - "repoUrl":"https://github.com/coursier/class-path-util.git", - "revision":"v0.1.4", - "version":"0.1.4", - "targets":"io.get-coursier%class-path-util" + "codedx/mapk":{ + "project":"codedx/mapk", + "repoUrl":"https://github.com/codedx/mapk.git", + "revision":"1.2.0", + "version":"1.2.0", + "targets":"com.codedx%mapk" }, - "cozydev-pink/snakecase":{ - "project":"cozydev-pink/snakecase", - "repoUrl":"https://github.com/cozydev-pink/snakecase.git", - "revision":"v0.0.2", - "version":"0.0.2", - "targets":"pink.cozydev%snakecase", + "codingwell/scala-guice":{ + "project":"codingwell/scala-guice", + "repoUrl":"https://github.com/codingwell/scala-guice.git", + "revision":"v7.0.0", + "version":"7.0.0", + "targets":"net.codingwell%scala-guice", "config":{ "projects":{ "exclude":[ @@ -5950,7 +6271,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -5967,23 +6288,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "cquiroz/sbt-locales":{ - "project":"cquiroz/sbt-locales", - "repoUrl":"https://github.com/cquiroz/sbt-locales.git", - "revision":"v4.2.0", - "version":"4.2.0", - "targets":"io.github.cquiroz%cldr-api" - }, - "cquiroz/scala-java-locales":{ - "project":"cquiroz/scala-java-locales", - "repoUrl":"https://github.com/cquiroz/scala-java-locales.git", - "revision":"v1.5.1", - "version":"1.5.1", - "targets":"io.github.cquiroz%scala-java-locales", + "cognitedata/cognite-sdk-scala":{ + "project":"cognitedata/cognite-sdk-scala", + "repoUrl":"https://github.com/cognitedata/cognite-sdk-scala.git", + "revision":"", + "version":"2.5.2", + "targets":"com.cognite%cognite-sdk-scala", "config":{ "projects":{ "exclude":[ @@ -5994,11 +6312,12 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -6009,18 +6328,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "cquiroz/scala-java-time":{ - "project":"cquiroz/scala-java-time", - "repoUrl":"https://github.com/cquiroz/scala-java-time.git", - "revision":"v2.5.0", - "version":"2.5.0", - "targets":"io.github.cquiroz%scala-java-time io.github.cquiroz%scala-java-time-tzdb", + "com-lihaoyi/cask":{ + "project":"com-lihaoyi/cask", + "repoUrl":"https://github.com/com-lihaoyi/cask.git", + "revision":"0.9.1", + "version":"0.9.1", + "targets":"com.lihaoyi%cask com.lihaoyi%cask-util", "config":{ "projects":{ "exclude":[ @@ -6031,7 +6350,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -6049,19 +6368,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.1\"", + "path":"build.sc", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "creativescala/doodle":{ - "project":"creativescala/doodle", - "repoUrl":"https://github.com/creativescala/doodle.git", - "revision":"v0.18.0", - "version":"0.18.0", - "targets":"org.creativescala%doodle-turtle org.creativescala%doodle-docs org.creativescala%doodle-image org.creativescala%doodle-reactor org.creativescala%doodle-interact org.creativescala%doodle-examples org.creativescala%doodle-plot org.creativescala%doodle-golden org.creativescala%doodle org.creativescala%doodle-java2d org.creativescala%doodle-core", + "com-lihaoyi/castor":{ + "project":"com-lihaoyi/castor", + "repoUrl":"https://github.com/com-lihaoyi/castor.git", + "revision":"0.3.0", + "version":"0.3.0", + "targets":"com.lihaoyi%castor", "config":{ "projects":{ "exclude":[ @@ -6072,7 +6391,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -6090,19 +6409,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.1\"", + "path":"build.sc", + "pattern":"val scala3 = \"3.1.3\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "creativescala/doodle-explore":{ - "project":"creativescala/doodle-explore", - "repoUrl":"https://github.com/creativescala/doodle-explore.git", - "revision":"v0.14.0", - "version":"0.14.0", - "targets":"org.creativescala%doodle-explore org.creativescala%doodle-explore-core org.creativescala%doodle-explore-java2d", + "com-lihaoyi/fansi":{ + "project":"com-lihaoyi/fansi", + "repoUrl":"https://github.com/com-lihaoyi/fansi.git", + "revision":"0.4.0", + "version":"0.4.0", + "targets":"com.lihaoyi%fansi", "config":{ "projects":{ "exclude":[ @@ -6113,7 +6432,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -6130,24 +6449,20 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.3\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "creativescala/doodle-svg":{ - "project":"creativescala/doodle-svg", - "repoUrl":"https://github.com/creativescala/doodle-svg.git", - "revision":"v0.15.0", - "version":"0.15.0", - "targets":"org.creativescala%doodle-svg org.creativescala%doodle-svg-docs", + "com-lihaoyi/fastparse":{ + "project":"com-lihaoyi/fastparse", + "repoUrl":"https://github.com/com-lihaoyi/fastparse.git", + "revision":"3.0.2", + "version":"3.0.2", + "targets":"com.lihaoyi%fastparse com.lihaoyi%cssparse com.lihaoyi%pythonparse com.lihaoyi%scalaparse", "config":{ "projects":{ "exclude":[ - + "com.lihaoyi%pythonparse" ], "overrides":{ @@ -6171,20 +6486,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "cric96/distributed-frp":{ - "project":"cric96/distributed-frp", - "repoUrl":"https://github.com/cric96/distributed-frp.git", - "revision":"v0.1.4", - "version":"0.1.4", - "targets":"io.github.cric96%distributed-frp", + "com-lihaoyi/geny":{ + "project":"com-lihaoyi/geny", + "repoUrl":"https://github.com/com-lihaoyi/geny.git", + "revision":"1.0.0", + "version":"1.0.0", + "targets":"com.lihaoyi%geny", "config":{ "projects":{ "exclude":[ @@ -6195,7 +6506,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -6216,12 +6527,12 @@ ] } }, - "cucumber/action-publish-sbt":{ - "project":"cucumber/action-publish-sbt", - "repoUrl":"https://github.com/cucumber/action-publish-sbt.git", - "revision":"315d09c123f986aab02e49d4596c7e14cccb2f90", - "version":"0.0.30", - "targets":"io.cucumber%test-release-automation-sbt", + "com-lihaoyi/mainargs":{ + "project":"com-lihaoyi/mainargs", + "repoUrl":"https://github.com/com-lihaoyi/mainargs.git", + "revision":"0.5.4", + "version":"0.5.4", + "targets":"com.lihaoyi%mainargs", "config":{ "projects":{ "exclude":[ @@ -6232,7 +6543,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -6249,16 +6560,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sc", + "pattern":"val scala3 = \"3.1.3\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "cucumber/cucumber-jvm-scala":{ - "project":"cucumber/cucumber-jvm-scala", - "repoUrl":"https://github.com/cucumber/cucumber-jvm-scala.git", - "revision":"v8.15.0", - "version":"8.15.0", - "targets":"io.cucumber%cucumber-scala", + "com-lihaoyi/os-lib":{ + "project":"com-lihaoyi/os-lib", + "repoUrl":"https://github.com/com-lihaoyi/os-lib.git", + "revision":"0.9.1", + "version":"0.9.1", + "targets":"com.lihaoyi%os-lib com.lihaoyi%os-lib-watch", "config":{ "projects":{ "exclude":[ @@ -6269,7 +6584,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -6286,20 +6601,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "dacr/code-examples-manager":{ - "project":"dacr/code-examples-manager", - "repoUrl":"https://github.com/dacr/code-examples-manager.git", - "revision":"v2.3.3", - "version":"2.3.3", - "targets":"fr.janalyse%code-examples-manager", + "com-lihaoyi/pprint":{ + "project":"com-lihaoyi/pprint", + "repoUrl":"https://github.com/com-lihaoyi/pprint.git", + "revision":"0.8.1", + "version":"0.8.1", + "targets":"com.lihaoyi%pprint", "config":{ "projects":{ "exclude":[ @@ -6310,7 +6621,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -6331,19 +6642,12 @@ ] } }, - "dacr/drools-scripting":{ - "project":"dacr/drools-scripting", - "repoUrl":"https://github.com/dacr/drools-scripting.git", - "revision":"v1.0.16", - "version":"1.0.16", - "targets":"fr.janalyse%drools-scripting" - }, - "dacr/jassh":{ - "project":"dacr/jassh", - "repoUrl":"https://github.com/dacr/jassh.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"fr.janalyse%janalyse-ssh", + "com-lihaoyi/requests-scala":{ + "project":"com-lihaoyi/requests-scala", + "repoUrl":"https://github.com/com-lihaoyi/requests-scala.git", + "revision":"0.8.0", + "version":"0.8.0", + "targets":"com.lihaoyi%requests", "config":{ "projects":{ "exclude":[ @@ -6354,7 +6658,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -6375,26 +6679,12 @@ ] } }, - "dacr/json2props":{ - "project":"dacr/json2props", - "repoUrl":"https://github.com/dacr/json2props.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"fr.janalyse%json2props" - }, - "dacr/naturalsort":{ - "project":"dacr/naturalsort", - "repoUrl":"https://github.com/dacr/naturalsort.git", - "revision":"v1.0.2", - "version":"1.0.2", - "targets":"fr.janalyse%naturalsort" - }, - "dacr/primes":{ - "project":"dacr/primes", - "repoUrl":"https://github.com/dacr/primes.git", - "revision":"v1.2.10", - "version":"1.2.10", - "targets":"fr.janalyse%primes", + "com-lihaoyi/scalatags":{ + "project":"com-lihaoyi/scalatags", + "repoUrl":"https://github.com/com-lihaoyi/scalatags.git", + "revision":"0.12.0", + "version":"0.12.0", + "targets":"com.lihaoyi%scalatags", "config":{ "projects":{ "exclude":[ @@ -6405,7 +6695,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -6420,32 +6710,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "dacr/split":{ - "project":"dacr/split", - "repoUrl":"https://github.com/dacr/split.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"fr.janalyse%split" - }, - "dacr/unittools":{ - "project":"dacr/unittools", - "repoUrl":"https://github.com/dacr/unittools.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"fr.janalyse%unittools" - }, - "dacr/zio-lmdb":{ - "project":"dacr/zio-lmdb", - "repoUrl":"https://github.com/dacr/zio-lmdb.git", - "revision":"v1.1.0", - "version":"1.1.0", - "targets":"fr.janalyse%zio-lmdb", + "com-lihaoyi/sourcecode":{ + "project":"com-lihaoyi/sourcecode", + "repoUrl":"https://github.com/com-lihaoyi/sourcecode.git", + "revision":"0.3.1", + "version":"0.3.1", + "targets":"com.lihaoyi%sourcecode", "config":{ "projects":{ "exclude":[ @@ -6477,12 +6753,12 @@ ] } }, - "dacr/zio-worksheet":{ - "project":"dacr/zio-worksheet", - "repoUrl":"https://github.com/dacr/zio-worksheet.git", - "revision":"v2.0.13.0", - "version":"2.0.13.0", - "targets":"fr.janalyse%zio-worksheet", + "com-lihaoyi/upickle":{ + "project":"com-lihaoyi/upickle", + "repoUrl":"https://github.com/com-lihaoyi/upickle.git", + "revision":"3.1.3", + "version":"3.1.3", + "targets":"com.lihaoyi%ujson com.lihaoyi%ujson-circe com.lihaoyi%upickle com.lihaoyi%upickle-core com.lihaoyi%upack com.lihaoyi%ujson-json4s com.lihaoyi%upickle-implicits", "config":{ "projects":{ "exclude":[ @@ -6493,7 +6769,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -6510,34 +6786,24 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sc", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "daghemberg/paut-program":{ - "project":"daghemberg/paut-program", - "repoUrl":"https://github.com/daghemberg/paut-program.git", - "revision":"fb6d4e9f6fc1489fd0c157decbf13d08d9b8c6d7", - "version":"0.1.4", - "targets":"io.github.daghemberg%paut-program" - }, - "daghemberg/problemutils":{ - "project":"daghemberg/problemutils", - "repoUrl":"https://github.com/daghemberg/problemutils.git", - "revision":"a8ad8c6b0546b86b8d99daded7a78aa021982aac", - "version":"0.1.1", - "targets":"io.github.daghemberg%problemutils" - }, - "danslapman/morphling":{ - "project":"danslapman/morphling", - "repoUrl":"https://github.com/danslapman/morphling.git", - "revision":"v3.1.0", - "version":"3.1.0", - "targets":"com.github.danslapman%morphling-reactivemongo com.github.danslapman%morphling-scalacheck com.github.danslapman%morphling com.github.danslapman%morphling-tapir com.github.danslapman%morphling-circe", + "com-lihaoyi/utest":{ + "project":"com-lihaoyi/utest", + "repoUrl":"https://github.com/com-lihaoyi/utest.git", + "revision":"0.8.1", + "version":"0.8.1", + "targets":"com.lihaoyi%utest", "config":{ "projects":{ "exclude":[ - "morphling-circe" + ], "overrides":{ @@ -6565,12 +6831,12 @@ ] } }, - "dapperware/zio-slack":{ - "project":"dapperware/zio-slack", - "repoUrl":"https://github.com/dapperware/zio-slack.git", - "revision":"v1.0.0-RC1", - "version":"1.0.0-RC1", - "targets":"com.github.dapperware%zio-slack-api-web com.github.dapperware%zio-slack-core", + "comcast/ip4s":{ + "project":"comcast/ip4s", + "repoUrl":"https://github.com/comcast/ip4s.git", + "revision":"v3.3.0", + "version":"3.3.0", + "targets":"com.comcast%ip4s-core com.comcast%ip4s-test-kit", "config":{ "projects":{ "exclude":[ @@ -6581,7 +6847,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -6602,23 +6868,25 @@ ] } }, - "darrenjw/scala-glm":{ - "project":"darrenjw/scala-glm", - "repoUrl":"https://github.com/darrenjw/scala-glm.git", - "revision":"v0.8", - "version":"0.8", - "targets":"com.github.darrenjw%scala-glm", + "coralogix/zio-k8s":{ + "project":"coralogix/zio-k8s", + "repoUrl":"https://github.com/coralogix/zio-k8s.git", + "revision":"v2.1.0", + "version":"2.1.0", + "targets":"com.coralogix%zio-k8s-client com.coralogix%zio-k8s-client-optics com.coralogix%zio-k8s-client-quicklens com.coralogix%zio-k8s-operator", "config":{ "projects":{ "exclude":[ ], "overrides":{ - + "zio-k8s-client-quicklens":{ + "tests":"disabled" + } } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -6633,25 +6901,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.3.0\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "darrenjw/scala-smfsb":{ - "project":"darrenjw/scala-smfsb", - "repoUrl":"https://github.com/darrenjw/scala-smfsb.git", - "revision":"v1.0", - "version":"1.0", - "targets":"com.github.darrenjw%scala-smfsb" - }, - "data-tools/big-data-types":{ - "project":"data-tools/big-data-types", - "repoUrl":"https://github.com/data-tools/big-data-types.git", - "revision":"v1.3.0", - "version":"1.3.0", - "targets":"io.github.data-tools%big-data-types-bigquery io.github.data-tools%big-data-types-cassandra io.github.data-tools%big-data-types-circe io.github.data-tools%big-data-types-core", + "cornerman/chameleon":{ + "project":"cornerman/chameleon", + "repoUrl":"https://github.com/cornerman/chameleon.git", + "revision":"v0.3.7", + "version":"0.3.7", + "targets":"com.github.cornerman%chameleon", "config":{ "projects":{ "exclude":[ @@ -6679,20 +6944,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "davegurnell/unindent":{ - "project":"davegurnell/unindent", - "repoUrl":"https://github.com/davegurnell/unindent.git", - "revision":"v1.8.0", - "version":"1.8.0", - "targets":"com.davegurnell%unindent", + "cornerman/scala-cuid":{ + "project":"cornerman/scala-cuid", + "repoUrl":"https://github.com/cornerman/scala-cuid.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.github.cornerman%scala-cuid", "config":{ "projects":{ "exclude":[ @@ -6703,7 +6964,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -6724,12 +6985,12 @@ ] } }, - "davenverse/cats-effect-time":{ - "project":"davenverse/cats-effect-time", - "repoUrl":"https://github.com/davenverse/cats-effect-time.git", - "revision":"v0.2.1", - "version":"0.2.1", - "targets":"io.chrisdavenport%cats-effect-time", + "cornerman/simple-scalajs-requests":{ + "project":"cornerman/simple-scalajs-requests", + "repoUrl":"https://github.com/cornerman/simple-scalajs-requests.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.github.cornerman%simple-scalajs-requests", "config":{ "projects":{ "exclude":[ @@ -6761,12 +7022,12 @@ ] } }, - "davenverse/cats-scalacheck":{ - "project":"davenverse/cats-scalacheck", - "repoUrl":"https://github.com/davenverse/cats-scalacheck.git", - "revision":"v0.3.2", - "version":"0.3.2", - "targets":"io.chrisdavenport%cats-scalacheck", + "cornerman/sloth":{ + "project":"cornerman/sloth", + "repoUrl":"https://github.com/cornerman/sloth.git", + "revision":"v0.7.1", + "version":"0.7.1", + "targets":"com.github.cornerman%sloth com.github.cornerman%sloth-types", "config":{ "projects":{ "exclude":[ @@ -6777,7 +7038,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -6798,12 +7059,19 @@ ] } }, - "davenverse/catscript":{ - "project":"davenverse/catscript", - "repoUrl":"https://github.com/davenverse/catscript.git", - "revision":"v0.1.1", - "version":"0.1.1", - "targets":"io.chrisdavenport%catscript", + "coursier/class-path-util":{ + "project":"coursier/class-path-util", + "repoUrl":"https://github.com/coursier/class-path-util.git", + "revision":"v0.1.4", + "version":"0.1.4", + "targets":"io.get-coursier%class-path-util" + }, + "cozydev-pink/lucille":{ + "project":"cozydev-pink/lucille", + "repoUrl":"https://github.com/cozydev-pink/lucille.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"pink.cozydev%lucille", "config":{ "projects":{ "exclude":[ @@ -6814,7 +7082,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -6835,12 +7103,12 @@ ] } }, - "davenverse/circuit":{ - "project":"davenverse/circuit", - "repoUrl":"https://github.com/davenverse/circuit.git", - "revision":"v0.5.1", - "version":"0.5.1", - "targets":"io.chrisdavenport%circuit", + "cozydev-pink/snakecase":{ + "project":"cozydev-pink/snakecase", + "repoUrl":"https://github.com/cozydev-pink/snakecase.git", + "revision":"v0.0.3", + "version":"0.0.3", + "targets":"pink.cozydev%snakecase", "config":{ "projects":{ "exclude":[ @@ -6872,12 +7140,19 @@ ] } }, - "davenverse/circuit-http4s":{ - "project":"davenverse/circuit-http4s", - "repoUrl":"https://github.com/davenverse/circuit-http4s.git", - "revision":"v0.5.1", - "version":"0.5.1", - "targets":"io.chrisdavenport%circuit-http4s-client io.chrisdavenport%circuit-http4s-server", + "cquiroz/sbt-locales":{ + "project":"cquiroz/sbt-locales", + "repoUrl":"https://github.com/cquiroz/sbt-locales.git", + "revision":"v4.2.0", + "version":"4.2.0", + "targets":"io.github.cquiroz%cldr-api" + }, + "cquiroz/scala-java-locales":{ + "project":"cquiroz/scala-java-locales", + "repoUrl":"https://github.com/cquiroz/scala-java-locales.git", + "revision":"v1.5.1", + "version":"1.5.1", + "targets":"io.github.cquiroz%scala-java-locales", "config":{ "projects":{ "exclude":[ @@ -6888,7 +7163,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -6909,12 +7184,12 @@ ] } }, - "davenverse/clippette":{ - "project":"davenverse/clippette", - "repoUrl":"https://github.com/davenverse/clippette.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.chrisdavenport%clippette", + "cquiroz/scala-java-time":{ + "project":"cquiroz/scala-java-time", + "repoUrl":"https://github.com/cquiroz/scala-java-time.git", + "revision":"v2.5.0", + "version":"2.5.0", + "targets":"io.github.cquiroz%scala-java-time io.github.cquiroz%scala-java-time-tzdb", "config":{ "projects":{ "exclude":[ @@ -6942,16 +7217,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "davenverse/condemned":{ - "project":"davenverse/condemned", - "repoUrl":"https://github.com/davenverse/condemned.git", - "revision":"v0.0.2", - "version":"0.0.2", - "targets":"io.chrisdavenport%condemned", + "creativescala/doodle":{ + "project":"creativescala/doodle", + "repoUrl":"https://github.com/creativescala/doodle.git", + "revision":"v0.20.0", + "version":"0.20.0", + "targets":"org.creativescala%doodle-turtle org.creativescala%doodle-docs org.creativescala%doodle-image org.creativescala%doodle-svg org.creativescala%doodle-reactor org.creativescala%doodle-interact org.creativescala%doodle-examples org.creativescala%doodle-golden org.creativescala%doodle org.creativescala%doodle-java2d org.creativescala%doodle-core", "config":{ "projects":{ "exclude":[ @@ -6962,7 +7241,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -6979,16 +7258,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "davenverse/crossplatformioapp":{ - "project":"davenverse/crossplatformioapp", - "repoUrl":"https://github.com/davenverse/crossplatformioapp.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.chrisdavenport%crossplatformioapp", + "creativescala/doodle-explore":{ + "project":"creativescala/doodle-explore", + "repoUrl":"https://github.com/creativescala/doodle-explore.git", + "revision":"v0.14.0", + "version":"0.14.0", + "targets":"org.creativescala%doodle-explore org.creativescala%doodle-explore-core org.creativescala%doodle-explore-java2d", "config":{ "projects":{ "exclude":[ @@ -7016,16 +7299,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.3\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "davenverse/env":{ - "project":"davenverse/env", - "repoUrl":"https://github.com/davenverse/env.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.chrisdavenport%env", + "creativescala/doodle-svg":{ + "project":"creativescala/doodle-svg", + "repoUrl":"https://github.com/creativescala/doodle-svg.git", + "revision":"v0.16.1", + "version":"0.16.1", + "targets":"org.creativescala%doodle-svg org.creativescala%doodle-svg-docs", "config":{ "projects":{ "exclude":[ @@ -7036,7 +7323,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -7053,16 +7340,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "davenverse/epimetheus":{ - "project":"davenverse/epimetheus", - "repoUrl":"https://github.com/davenverse/epimetheus.git", - "revision":"v0.5.0", - "version":"0.5.0", - "targets":"io.chrisdavenport%epimetheus", + "creativescala/krop":{ + "project":"creativescala/krop", + "repoUrl":"https://github.com/creativescala/krop.git", + "revision":"v0.4.1", + "version":"0.4.1", + "targets":"org.creativescala%krop org.creativescala%krop-core org.creativescala%krop-docs org.creativescala%krop-examples", "config":{ "projects":{ "exclude":[ @@ -7073,7 +7364,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -7090,16 +7381,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "davenverse/epimetheus-circuit":{ - "project":"davenverse/epimetheus-circuit", - "repoUrl":"https://github.com/davenverse/epimetheus-circuit.git", - "revision":"v0.5.0-M2", - "version":"0.5.0-M2", - "targets":"io.chrisdavenport%epimetheus-circuit", + "cric96/distributed-frp":{ + "project":"cric96/distributed-frp", + "repoUrl":"https://github.com/cric96/distributed-frp.git", + "revision":"v0.1.7", + "version":"0.1.7", + "targets":"io.github.cric96%distributed-frp", "config":{ "projects":{ "exclude":[ @@ -7131,12 +7426,12 @@ ] } }, - "davenverse/epimetheus-http4s":{ - "project":"davenverse/epimetheus-http4s", - "repoUrl":"https://github.com/davenverse/epimetheus-http4s.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"io.chrisdavenport%epimetheus-http4s io.chrisdavenport%epimetheus-http4s-pushgateway", + "cucumber/action-publish-sbt":{ + "project":"cucumber/action-publish-sbt", + "repoUrl":"https://github.com/cucumber/action-publish-sbt.git", + "revision":"", + "version":"0.0.52", + "targets":"io.cucumber%test-release-automation-sbt", "config":{ "projects":{ "exclude":[ @@ -7147,7 +7442,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -7168,12 +7463,12 @@ ] } }, - "davenverse/epimetheus-log4cats":{ - "project":"davenverse/epimetheus-log4cats", - "repoUrl":"https://github.com/davenverse/epimetheus-log4cats.git", - "revision":"v0.6.0-M1", - "version":"0.6.0-M1", - "targets":"io.chrisdavenport%epimetheus-log4cats", + "cucumber/cucumber-jvm-scala":{ + "project":"cucumber/cucumber-jvm-scala", + "repoUrl":"https://github.com/cucumber/cucumber-jvm-scala.git", + "revision":"v8.17.0", + "version":"8.17.0", + "targets":"io.cucumber%cucumber-scala", "config":{ "projects":{ "exclude":[ @@ -7201,16 +7496,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "davenverse/epimetheus-rediculous":{ - "project":"davenverse/epimetheus-rediculous", - "repoUrl":"https://github.com/davenverse/epimetheus-rediculous.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"io.chrisdavenport%epimetheus-rediculous", + "dacr/code-examples-manager":{ + "project":"dacr/code-examples-manager", + "repoUrl":"https://github.com/dacr/code-examples-manager.git", + "revision":"v2.4.2", + "version":"2.4.2", + "targets":"fr.janalyse%code-examples-manager", "config":{ "projects":{ "exclude":[ @@ -7221,7 +7520,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -7238,20 +7537,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "davenverse/epimetheus-redis4cats":{ - "project":"davenverse/epimetheus-redis4cats", - "repoUrl":"https://github.com/davenverse/epimetheus-redis4cats.git", - "revision":"v0.2.0-M2", - "version":"0.2.0-M2", - "targets":"io.chrisdavenport%epimetheus-redis4cats", + "dacr/drools-scripting":{ + "project":"dacr/drools-scripting", + "repoUrl":"https://github.com/dacr/drools-scripting.git", + "revision":"v1.1.0", + "version":"1.1.0", + "targets":"fr.janalyse%drools-scripting", "config":{ "projects":{ "exclude":[ @@ -7283,12 +7578,12 @@ ] } }, - "davenverse/fiberlocal":{ - "project":"davenverse/fiberlocal", - "repoUrl":"https://github.com/davenverse/fiberlocal.git", - "revision":"v0.1.2", - "version":"0.1.2", - "targets":"io.chrisdavenport%fiberlocal", + "dacr/jassh":{ + "project":"dacr/jassh", + "repoUrl":"https://github.com/dacr/jassh.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"fr.janalyse%janalyse-ssh", "config":{ "projects":{ "exclude":[ @@ -7299,7 +7594,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -7314,18 +7609,25 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "davenverse/fuuid":{ - "project":"davenverse/fuuid", - "repoUrl":"https://github.com/davenverse/fuuid.git", - "revision":"v0.8.0-M2", - "version":"0.8.0-M2", - "targets":"io.chrisdavenport%fuuid io.chrisdavenport%fuuid-circe io.chrisdavenport%fuuid-doobie io.chrisdavenport%fuuid-http4s", + "dacr/json2props":{ + "project":"dacr/json2props", + "repoUrl":"https://github.com/dacr/json2props.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"fr.janalyse%json2props" + }, + "dacr/naturalsort":{ + "project":"dacr/naturalsort", + "repoUrl":"https://github.com/dacr/naturalsort.git", + "revision":"v1.0.4", + "version":"1.0.4", + "targets":"fr.janalyse%naturalsort", "config":{ "projects":{ "exclude":[ @@ -7340,7 +7642,7 @@ }, "sbt":{ "commands":[ - "set doobie/Test/unmanagedSources/excludeFilter ~= {_ || \"PostgresInstanceSpec.scala\" || \"PostgresTraversalSpec.scala\"} " + ], "options":[ @@ -7353,20 +7655,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.0.1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "davenverse/github":{ - "project":"davenverse/github", - "repoUrl":"https://github.com/davenverse/github.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"io.chrisdavenport%github", + "dacr/primes":{ + "project":"dacr/primes", + "repoUrl":"https://github.com/dacr/primes.git", + "revision":"v1.2.12", + "version":"1.2.12", + "targets":"fr.janalyse%primes", "config":{ "projects":{ "exclude":[ @@ -7377,7 +7675,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -7398,12 +7696,12 @@ ] } }, - "davenverse/googleapis-http4s":{ - "project":"davenverse/googleapis-http4s", - "repoUrl":"https://github.com/davenverse/googleapis-http4s.git", - "revision":"93591c96ed4b93a677da27c3fd84cb4279be7a71", - "version":"6.42.1+0.0.5", - "targets":"io.chrisdavenport%http4s-grpc-google-cloud-spanner-v1", + "dacr/split":{ + "project":"dacr/split", + "repoUrl":"https://github.com/dacr/split.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"fr.janalyse%split", "config":{ "projects":{ "exclude":[ @@ -7414,7 +7712,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -7435,12 +7733,12 @@ ] } }, - "davenverse/http4s-grpc":{ - "project":"davenverse/http4s-grpc", - "repoUrl":"https://github.com/davenverse/http4s-grpc.git", - "revision":"v0.0.3", - "version":"0.0.3", - "targets":"io.chrisdavenport%http4s-grpc", + "dacr/unittools":{ + "project":"dacr/unittools", + "repoUrl":"https://github.com/dacr/unittools.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"fr.janalyse%unittools", "config":{ "projects":{ "exclude":[ @@ -7451,7 +7749,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -7472,12 +7770,12 @@ ] } }, - "davenverse/keysemaphore":{ - "project":"davenverse/keysemaphore", - "repoUrl":"https://github.com/davenverse/keysemaphore.git", - "revision":"v0.3.0-M1", - "version":"0.3.0-M1", - "targets":"io.chrisdavenport%keysemaphore", + "dacr/zio-lmdb":{ + "project":"dacr/zio-lmdb", + "repoUrl":"https://github.com/dacr/zio-lmdb.git", + "revision":"v1.5.0", + "version":"1.5.0", + "targets":"fr.janalyse%zio-lmdb", "config":{ "projects":{ "exclude":[ @@ -7488,7 +7786,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -7509,12 +7807,12 @@ ] } }, - "davenverse/lock":{ - "project":"davenverse/lock", - "repoUrl":"https://github.com/davenverse/lock.git", - "revision":"v0.0.2", - "version":"0.0.2", - "targets":"io.chrisdavenport%lock", + "dacr/zio-worksheet":{ + "project":"dacr/zio-worksheet", + "repoUrl":"https://github.com/dacr/zio-worksheet.git", + "revision":"v2.0.18.0", + "version":"2.0.18.0", + "targets":"fr.janalyse%zio-worksheet", "config":{ "projects":{ "exclude":[ @@ -7546,12 +7844,12 @@ ] } }, - "davenverse/mapref":{ - "project":"davenverse/mapref", - "repoUrl":"https://github.com/davenverse/mapref.git", - "revision":"v0.2.1", - "version":"0.2.1", - "targets":"io.chrisdavenport%mapref", + "daenyth/cats-effect-guava":{ + "project":"daenyth/cats-effect-guava", + "repoUrl":"https://github.com/daenyth/cats-effect-guava.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"io.github.daenyth%cats-effect-guava", "config":{ "projects":{ "exclude":[ @@ -7562,7 +7860,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -7583,12 +7881,26 @@ ] } }, - "davenverse/mules":{ - "project":"davenverse/mules", - "repoUrl":"https://github.com/davenverse/mules.git", - "revision":"v0.7.0", - "version":"0.7.0", - "targets":"io.chrisdavenport%mules io.chrisdavenport%mules-caffeine io.chrisdavenport%mules-noop io.chrisdavenport%mules-reload", + "daghemberg/paut-program":{ + "project":"daghemberg/paut-program", + "repoUrl":"https://github.com/daghemberg/paut-program.git", + "revision":"", + "version":"0.1.4", + "targets":"io.github.daghemberg%paut-program" + }, + "daghemberg/problemutils":{ + "project":"daghemberg/problemutils", + "repoUrl":"https://github.com/daghemberg/problemutils.git", + "revision":"", + "version":"0.2.0", + "targets":"io.github.daghemberg%problemutils" + }, + "damon-v79/cassandra-migration":{ + "project":"damon-v79/cassandra-migration", + "repoUrl":"https://github.com/damon-v79/cassandra-migration.git", + "revision":"v1.0.2", + "version":"1.0.2", + "targets":"org.scalacloud%cassandra-migration org.scalacloud%cassandra-migration-testcontainers", "config":{ "projects":{ "exclude":[ @@ -7599,7 +7911,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -7616,27 +7928,31 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "davenverse/mules-http4s":{ - "project":"davenverse/mules-http4s", - "repoUrl":"https://github.com/davenverse/mules-http4s.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"io.chrisdavenport%mules-http4s io.chrisdavenport%mules-http4s-scodec", + "danslapman/morphling":{ + "project":"danslapman/morphling", + "repoUrl":"https://github.com/danslapman/morphling.git", + "revision":"v3.2.0", + "version":"3.2.0", + "targets":"com.github.danslapman%morphling-reactivemongo com.github.danslapman%morphling-scalacheck com.github.danslapman%morphling com.github.danslapman%morphling-tapir com.github.danslapman%morphling-circe", "config":{ "projects":{ "exclude":[ - + "morphling-circe" ], "overrides":{ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -7657,12 +7973,12 @@ ] } }, - "davenverse/namecase":{ - "project":"davenverse/namecase", - "repoUrl":"https://github.com/davenverse/namecase.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.chrisdavenport%namecase", + "dapperware/zio-slack":{ + "project":"dapperware/zio-slack", + "repoUrl":"https://github.com/dapperware/zio-slack.git", + "revision":"v1.0.0-RC1", + "version":"1.0.0-RC1", + "targets":"com.github.dapperware%zio-slack-api-web com.github.dapperware%zio-slack-core", "config":{ "projects":{ "exclude":[ @@ -7673,7 +7989,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -7694,12 +8010,12 @@ ] } }, - "davenverse/natchez-http4s-otel":{ - "project":"davenverse/natchez-http4s-otel", - "repoUrl":"https://github.com/davenverse/natchez-http4s-otel.git", - "revision":"v0.2.2", - "version":"0.2.2", - "targets":"io.chrisdavenport%natchez-http4s-otel", + "darrenjw/scala-glm":{ + "project":"darrenjw/scala-glm", + "repoUrl":"https://github.com/darrenjw/scala-glm.git", + "revision":"v0.8", + "version":"0.8", + "targets":"com.github.darrenjw%scala-glm", "config":{ "projects":{ "exclude":[ @@ -7710,7 +8026,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -7725,18 +8041,25 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "davenverse/natchez-local":{ - "project":"davenverse/natchez-local", - "repoUrl":"https://github.com/davenverse/natchez-local.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.chrisdavenport%natchez-local", + "darrenjw/scala-smfsb":{ + "project":"darrenjw/scala-smfsb", + "repoUrl":"https://github.com/darrenjw/scala-smfsb.git", + "revision":"v1.0", + "version":"1.0", + "targets":"com.github.darrenjw%scala-smfsb" + }, + "data-tools/big-data-types":{ + "project":"data-tools/big-data-types", + "repoUrl":"https://github.com/data-tools/big-data-types.git", + "revision":"v1.3.1", + "version":"1.3.1", + "targets":"io.github.data-tools%big-data-types-bigquery io.github.data-tools%big-data-types-cassandra io.github.data-tools%big-data-types-circe io.github.data-tools%big-data-types-core", "config":{ "projects":{ "exclude":[ @@ -7764,16 +8087,27 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "davenverse/natchez-rediculous":{ - "project":"davenverse/natchez-rediculous", - "repoUrl":"https://github.com/davenverse/natchez-rediculous.git", - "revision":"v0.0.2", - "version":"0.0.2", - "targets":"io.chrisdavenport%natchez-rediculous", + "datastrophic-games/dice":{ + "project":"datastrophic-games/dice", + "repoUrl":"https://github.com/datastrophic-games/dice.git", + "revision":"0.3.0", + "version":"0.3.0", + "targets":"games.datastrophic%dice" + }, + "davegurnell/unindent":{ + "project":"davegurnell/unindent", + "repoUrl":"https://github.com/davegurnell/unindent.git", + "revision":"v1.8.0", + "version":"1.8.0", + "targets":"com.davegurnell%unindent", "config":{ "projects":{ "exclude":[ @@ -7784,7 +8118,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -7805,12 +8139,12 @@ ] } }, - "davenverse/os-detect":{ - "project":"davenverse/os-detect", - "repoUrl":"https://github.com/davenverse/os-detect.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.chrisdavenport%os-detect", + "davenverse/cats-effect-time":{ + "project":"davenverse/cats-effect-time", + "repoUrl":"https://github.com/davenverse/cats-effect-time.git", + "revision":"v0.2.1", + "version":"0.2.1", + "targets":"io.chrisdavenport%cats-effect-time", "config":{ "projects":{ "exclude":[ @@ -7821,7 +8155,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -7842,12 +8176,12 @@ ] } }, - "davenverse/process":{ - "project":"davenverse/process", - "repoUrl":"https://github.com/davenverse/process.git", - "revision":"v0.0.2", - "version":"0.0.2", - "targets":"io.chrisdavenport%process", + "davenverse/cats-scalacheck":{ + "project":"davenverse/cats-scalacheck", + "repoUrl":"https://github.com/davenverse/cats-scalacheck.git", + "revision":"v0.3.2", + "version":"0.3.2", + "targets":"io.chrisdavenport%cats-scalacheck", "config":{ "projects":{ "exclude":[ @@ -7879,12 +8213,12 @@ ] } }, - "davenverse/publicsuffix":{ - "project":"davenverse/publicsuffix", - "repoUrl":"https://github.com/davenverse/publicsuffix.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"io.chrisdavenport%publicsuffix io.chrisdavenport%publicsuffix-retrieval io.chrisdavenport%publicsuffix-retrieval-client", + "davenverse/catscript":{ + "project":"davenverse/catscript", + "repoUrl":"https://github.com/davenverse/catscript.git", + "revision":"v0.1.1", + "version":"0.1.1", + "targets":"io.chrisdavenport%catscript", "config":{ "projects":{ "exclude":[ @@ -7916,12 +8250,12 @@ ] } }, - "davenverse/rediculous":{ - "project":"davenverse/rediculous", - "repoUrl":"https://github.com/davenverse/rediculous.git", - "revision":"v0.5.0", - "version":"0.5.0", - "targets":"io.chrisdavenport%rediculous", + "davenverse/circuit":{ + "project":"davenverse/circuit", + "repoUrl":"https://github.com/davenverse/circuit.git", + "revision":"v0.5.1", + "version":"0.5.1", + "targets":"io.chrisdavenport%circuit", "config":{ "projects":{ "exclude":[ @@ -7947,18 +8281,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "davenverse/rediculous-concurrent":{ - "project":"davenverse/rediculous-concurrent", - "repoUrl":"https://github.com/davenverse/rediculous-concurrent.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"io.chrisdavenport%rediculous-concurrent io.chrisdavenport%rediculous-concurrent-http4s", + "davenverse/circuit-http4s":{ + "project":"davenverse/circuit-http4s", + "repoUrl":"https://github.com/davenverse/circuit-http4s.git", + "revision":"v0.5.1", + "version":"0.5.1", + "targets":"io.chrisdavenport%circuit-http4s-client io.chrisdavenport%circuit-http4s-server", "config":{ "projects":{ "exclude":[ @@ -7984,18 +8318,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "davenverse/single-fibered":{ - "project":"davenverse/single-fibered", - "repoUrl":"https://github.com/davenverse/single-fibered.git", - "revision":"v0.1.1", - "version":"0.1.1", - "targets":"io.chrisdavenport%single-fibered", + "davenverse/clippette":{ + "project":"davenverse/clippette", + "repoUrl":"https://github.com/davenverse/clippette.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.chrisdavenport%clippette", "config":{ "projects":{ "exclude":[ @@ -8006,7 +8340,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -8027,12 +8361,12 @@ ] } }, - "davenverse/snickerdoodle":{ - "project":"davenverse/snickerdoodle", - "repoUrl":"https://github.com/davenverse/snickerdoodle.git", - "revision":"v0.0.4", - "version":"0.0.4", - "targets":"io.chrisdavenport%snickerdoodle", + "davenverse/condemned":{ + "project":"davenverse/condemned", + "repoUrl":"https://github.com/davenverse/condemned.git", + "revision":"v0.0.2", + "version":"0.0.2", + "targets":"io.chrisdavenport%condemned", "config":{ "projects":{ "exclude":[ @@ -8043,7 +8377,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -8060,20 +8394,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "davenverse/whale-tail":{ - "project":"davenverse/whale-tail", - "repoUrl":"https://github.com/davenverse/whale-tail.git", - "revision":"v0.0.9", - "version":"0.0.9", - "targets":"io.chrisdavenport%whale-tail io.chrisdavenport%whale-tail-manager", + "davenverse/crossplatformioapp":{ + "project":"davenverse/crossplatformioapp", + "repoUrl":"https://github.com/davenverse/crossplatformioapp.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.chrisdavenport%crossplatformioapp", "config":{ "projects":{ "exclude":[ @@ -8084,7 +8414,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -8099,25 +8429,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "davidledwards/scalop":{ - "project":"davidledwards/scalop", - "repoUrl":"https://github.com/davidledwards/scalop.git", - "revision":"release-2.3.1", - "version":"2.3.1", - "targets":"com.loopfor.scalop%scalop" - }, - "delimobil/cabbit":{ - "project":"delimobil/cabbit", - "repoUrl":"https://github.com/delimobil/cabbit.git", - "revision":"0.2.0-RC3", - "version":"0.2.0-RC3", - "targets":"ru.delimobil%cabbit ru.delimobil%cabbit-circe ru.delimobil%cabbit-core ru.delimobil%cabbit_ce2", + "davenverse/env":{ + "project":"davenverse/env", + "repoUrl":"https://github.com/davenverse/env.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.chrisdavenport%env", "config":{ "projects":{ "exclude":[ @@ -8143,18 +8466,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "delimobil/fs2-hbase":{ - "project":"delimobil/fs2-hbase", - "repoUrl":"https://github.com/delimobil/fs2-hbase.git", - "revision":"0.1.0-RC10", - "version":"0.1.0-RC10", - "targets":"ru.delimobil%fs2-hbase", + "davenverse/epimetheus":{ + "project":"davenverse/epimetheus", + "repoUrl":"https://github.com/davenverse/epimetheus.git", + "revision":"v0.5.0", + "version":"0.5.0", + "targets":"io.chrisdavenport%epimetheus", "config":{ "projects":{ "exclude":[ @@ -8165,7 +8488,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -8180,18 +8503,18 @@ ] }, - "tests":"disabled", + "tests":"full", "sourcePatches":[ ] } }, - "devlaam/leucine":{ - "project":"devlaam/leucine", - "repoUrl":"https://github.com/devlaam/leucine.git", - "revision":"v0.4.1", - "version":"0.4.1", - "targets":"com.sense2act%leucine", + "davenverse/epimetheus-circuit":{ + "project":"davenverse/epimetheus-circuit", + "repoUrl":"https://github.com/davenverse/epimetheus-circuit.git", + "revision":"v0.5.0", + "version":"0.5.0", + "targets":"io.chrisdavenport%epimetheus-circuit", "config":{ "projects":{ "exclude":[ @@ -8202,7 +8525,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -8223,12 +8546,12 @@ ] } }, - "devsisters/shardcake":{ - "project":"devsisters/shardcake", - "repoUrl":"https://github.com/devsisters/shardcake.git", - "revision":"v2.0.6", - "version":"2.0.6", - "targets":"com.devsisters%shardcake-serialization-kryo com.devsisters%shardcake-manager com.devsisters%shardcake-core com.devsisters%shardcake-entities com.devsisters%shardcake-storage-redis com.devsisters%shardcake-health-k8s com.devsisters%shardcake-protocol-grpc", + "davenverse/epimetheus-community":{ + "project":"davenverse/epimetheus-community", + "repoUrl":"https://github.com/davenverse/epimetheus-community.git", + "revision":"", + "version":"0.6.0", + "targets":"io.chrisdavenport%epimetheus-log4cats", "config":{ "projects":{ "exclude":[ @@ -8239,7 +8562,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -8258,18 +8581,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.1\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val Scala3 = \"3.3.1\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "dieproht/matr":{ - "project":"dieproht/matr", - "repoUrl":"https://github.com/dieproht/matr.git", - "revision":"v0.0.3", - "version":"0.0.3", - "targets":"io.github.dieproht%matr-dflt-data io.github.dieproht%matr-bundle io.github.dieproht%matr-api io.github.dieproht%matr-std io.github.dieproht%matr-dflt-ops", + "davenverse/epimetheus-http4s":{ + "project":"davenverse/epimetheus-http4s", + "repoUrl":"https://github.com/davenverse/epimetheus-http4s.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"io.chrisdavenport%epimetheus-http4s io.chrisdavenport%epimetheus-http4s-pushgateway", "config":{ "projects":{ "exclude":[ @@ -8280,7 +8603,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -8301,12 +8624,12 @@ ] } }, - "disneystreaming/alloy":{ - "project":"disneystreaming/alloy", - "repoUrl":"https://github.com/disneystreaming/alloy.git", - "revision":"v0.1.21", - "version":"0.1.21", - "targets":"com.disneystreaming.alloy%alloy-openapi", + "davenverse/epimetheus-log4cats":{ + "project":"davenverse/epimetheus-log4cats", + "repoUrl":"https://github.com/davenverse/epimetheus-log4cats.git", + "revision":"v0.6.0-M1", + "version":"0.6.0-M1", + "targets":"io.chrisdavenport%epimetheus-log4cats", "config":{ "projects":{ "exclude":[ @@ -8338,55 +8661,12 @@ ] } }, - "disneystreaming/smithy4s":{ - "project":"disneystreaming/smithy4s", - "repoUrl":"https://github.com/disneystreaming/smithy4s.git", - "revision":"v0.17.6", - "version":"0.17.6", - "targets":"com.disneystreaming.smithy4s%smithy4s-json com.disneystreaming.smithy4s%smithy4s-dynamic com.disneystreaming.smithy4s%smithy4s-tests com.disneystreaming.smithy4s%smithy4s-core com.disneystreaming.smithy4s%smithy4s-compliance-tests com.disneystreaming.smithy4s%smithy4s-http4s-swagger com.disneystreaming.smithy4s%smithy4s-decline com.disneystreaming.smithy4s%smithy4s-aws-http4s com.disneystreaming.smithy4s%smithy4s-http4s com.disneystreaming.smithy4s%smithy4s-aws-kernel com.disneystreaming.smithy4s%smithy4s-aws", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - "smithy4s-dynamic":{ - "tests":"compile-only" - } - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"project/Smithy4sBuildPlugin.scala", - "pattern":"val Scala3 = \"3.2.1\"", - "replaceWith":"val Scala3 = \"\"" - } - ] - } - }, - "disneystreaming/weaver-test":{ - "project":"disneystreaming/weaver-test", - "repoUrl":"https://github.com/disneystreaming/weaver-test.git", - "revision":"v0.8.3", - "version":"0.8.3", - "targets":"com.disneystreaming%weaver-core com.disneystreaming%weaver-cats com.disneystreaming%weaver-framework com.disneystreaming%weaver-cats-core com.disneystreaming%weaver-scalacheck com.disneystreaming%weaver-discipline", + "davenverse/epimetheus-rediculous":{ + "project":"davenverse/epimetheus-rediculous", + "repoUrl":"https://github.com/davenverse/epimetheus-rediculous.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"io.chrisdavenport%epimetheus-rediculous", "config":{ "projects":{ "exclude":[ @@ -8404,7 +8684,7 @@ ], "options":[ - "-Dcommunitybuild.dualVersion=minor:+1" + ] }, "mill":{ @@ -8415,19 +8695,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/WeaverPlugin.scala", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "dobrynya/zio-jms":{ - "project":"dobrynya/zio-jms", - "repoUrl":"https://github.com/dobrynya/zio-jms.git", - "revision":"v0.2", - "version":"0.2", - "targets":"io.github.dobrynya%zio-jms", + "davenverse/epimetheus-redis4cats":{ + "project":"davenverse/epimetheus-redis4cats", + "repoUrl":"https://github.com/davenverse/epimetheus-redis4cats.git", + "revision":"v0.2.0-M2", + "version":"0.2.0-M2", + "targets":"io.chrisdavenport%epimetheus-redis4cats", "config":{ "projects":{ "exclude":[ @@ -8438,7 +8718,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -8453,18 +8733,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "dragonfly-ai/cliviz":{ - "project":"dragonfly-ai/cliviz", - "repoUrl":"https://github.com/dragonfly-ai/cliviz.git", - "revision":"v0.1", - "version":"0.1", - "targets":"ai.dragonfly%cliviz", + "davenverse/fiberlocal":{ + "project":"davenverse/fiberlocal", + "repoUrl":"https://github.com/davenverse/fiberlocal.git", + "revision":"v0.1.2", + "version":"0.1.2", + "targets":"io.chrisdavenport%fiberlocal", "config":{ "projects":{ "exclude":[ @@ -8496,12 +8776,12 @@ ] } }, - "dragonfly-ai/democrossy":{ - "project":"dragonfly-ai/democrossy", - "repoUrl":"https://github.com/dragonfly-ai/democrossy.git", - "revision":"v0.102", - "version":"0.102", - "targets":"ai.dragonfly%democrossy", + "davenverse/fuuid":{ + "project":"davenverse/fuuid", + "repoUrl":"https://github.com/davenverse/fuuid.git", + "revision":"v0.8.0-M2", + "version":"0.8.0-M2", + "targets":"io.chrisdavenport%fuuid io.chrisdavenport%fuuid-circe io.chrisdavenport%fuuid-doobie io.chrisdavenport%fuuid-http4s", "config":{ "projects":{ "exclude":[ @@ -8512,11 +8792,11 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ - + "set doobie/Test/unmanagedSources/excludeFilter ~= {_ || \"PostgresInstanceSpec.scala\" || \"PostgresTraversalSpec.scala\"} " ], "options":[ @@ -8529,16 +8809,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.0.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "dragonfly-ai/narr":{ - "project":"dragonfly-ai/narr", - "repoUrl":"https://github.com/dragonfly-ai/narr.git", - "revision":"v0.101", - "version":"0.101", - "targets":"ai.dragonfly%narr", + "davenverse/github":{ + "project":"davenverse/github", + "repoUrl":"https://github.com/davenverse/github.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"io.chrisdavenport%github", "config":{ "projects":{ "exclude":[ @@ -8570,12 +8854,12 @@ ] } }, - "dragonfly-ai/slash":{ - "project":"dragonfly-ai/slash", - "repoUrl":"https://github.com/dragonfly-ai/slash.git", - "revision":"v0.1", - "version":"0.1", - "targets":"ai.dragonfly%vector", + "davenverse/googleapis-http4s":{ + "project":"davenverse/googleapis-http4s", + "repoUrl":"https://github.com/davenverse/googleapis-http4s.git", + "revision":"", + "version":"3.25.0+0.0.6", + "targets":"", "config":{ "projects":{ "exclude":[ @@ -8586,7 +8870,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -8607,12 +8891,12 @@ ] } }, - "durban/choam":{ - "project":"durban/choam", - "repoUrl":"https://github.com/durban/choam.git", - "revision":"v0.3.0-RC5", - "version":"0.3.0-RC5", - "targets":"dev.tauri%choam-docs dev.tauri%choam-stream dev.tauri%choam-data dev.tauri%choam-async dev.tauri%choam-skiplist dev.tauri%choam-laws dev.tauri%choam-mcas dev.tauri%choam-core", + "davenverse/http4s-grpc":{ + "project":"davenverse/http4s-grpc", + "repoUrl":"https://github.com/davenverse/http4s-grpc.git", + "revision":"v0.0.4", + "version":"0.0.4", + "targets":"io.chrisdavenport%http4s-grpc", "config":{ "projects":{ "exclude":[ @@ -8623,7 +8907,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -8640,20 +8924,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "dvgica/managerial":{ - "project":"dvgica/managerial", - "repoUrl":"https://github.com/dvgica/managerial.git", - "revision":"v0.8.0", - "version":"0.8.0", - "targets":"ca.dvgi%managerial ca.dvgi%managerial-twitter-util", + "davenverse/http4s-log4cats-contextlog":{ + "project":"davenverse/http4s-log4cats-contextlog", + "repoUrl":"https://github.com/davenverse/http4s-log4cats-contextlog.git", + "revision":"v0.0.11", + "version":"0.0.11", + "targets":"io.chrisdavenport%http4s-log4cats-contextlog", "config":{ "projects":{ "exclude":[ @@ -8683,39 +8963,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.0.2\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val Scala3 = \"3.3.0\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "dvreeze/tqa":{ - "project":"dvreeze/tqa", - "repoUrl":"https://github.com/dvreeze/tqa.git", - "revision":"tqa_3-0.13.0", - "version":"0.13.0", - "targets":"eu.cdevreeze.tqa%tqa" - }, - "dvreeze/xpathparser":{ - "project":"dvreeze/xpathparser", - "repoUrl":"https://github.com/dvreeze/xpathparser.git", - "revision":"0.8.0", - "version":"0.8.0", - "targets":"eu.cdevreeze.xpathparser%xpathparser" - }, - "dvreeze/yaidom":{ - "project":"dvreeze/yaidom", - "repoUrl":"https://github.com/dvreeze/yaidom.git", - "revision":"yaidom_3-1.13.0", - "version":"1.13.0", - "targets":"eu.cdevreeze.yaidom%yaidom" - }, - "dwickern/scala-nameof":{ - "project":"dwickern/scala-nameof", - "repoUrl":"https://github.com/dwickern/scala-nameof.git", - "revision":"v4.0.0", - "version":"4.0.0", - "targets":"com.github.dwickern%scala-nameof", + "davenverse/keysemaphore":{ + "project":"davenverse/keysemaphore", + "repoUrl":"https://github.com/davenverse/keysemaphore.git", + "revision":"v0.3.0-M1", + "version":"0.3.0-M1", + "targets":"io.chrisdavenport%keysemaphore", "config":{ "projects":{ "exclude":[ @@ -8726,7 +8985,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -8743,20 +9002,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.0.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "dwolla/epimetheus-server":{ - "project":"dwolla/epimetheus-server", - "repoUrl":"https://github.com/dwolla/epimetheus-server.git", - "revision":"v7.1.0", - "version":"7.1.0", - "targets":"com.dwolla%epimetheus-server-root com.dwolla%monitoring-server", + "davenverse/lock":{ + "project":"davenverse/lock", + "repoUrl":"https://github.com/davenverse/lock.git", + "revision":"v0.0.2", + "version":"0.0.2", + "targets":"io.chrisdavenport%lock", "config":{ "projects":{ "exclude":[ @@ -8767,7 +9022,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -8784,40 +9039,27 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.0\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "dylemma/xml-spac":{ - "project":"dylemma/xml-spac", - "repoUrl":"https://github.com/dylemma/xml-spac.git", - "revision":"0.12.0", - "version":"0.12.0", - "targets":"io.dylemma%json-spac io.dylemma%spac-interop-fs2 io.dylemma%spac-core io.dylemma%xml-spac io.dylemma%xml-spac-javax io.dylemma%json-spac-jackson io.dylemma%xml-spac-fs2-data io.dylemma%json-spac-fs2-data" - }, - "earogov/ordset":{ - "project":"earogov/ordset", - "repoUrl":"https://github.com/earogov/ordset.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.github.earogov%ordset io.github.earogov%ordset-commonsRandom", + "davenverse/mapref":{ + "project":"davenverse/mapref", + "repoUrl":"https://github.com/davenverse/mapref.git", + "revision":"v0.2.1", + "version":"0.2.1", + "targets":"io.chrisdavenport%mapref", "config":{ "projects":{ "exclude":[ ], "overrides":{ - "ordset":{ - "tests":"disabled" - } + } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -8834,20 +9076,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sc", - "pattern":"\"-comment-syntax\", \"wiki\"", - "replaceWith":"\"-comment-syntax:wiki\"" - } + ] } }, - "eed3si9n/expecty":{ - "project":"eed3si9n/expecty", - "repoUrl":"https://github.com/eed3si9n/expecty.git", - "revision":"v0.16.0", - "version":"0.16.0", - "targets":"com.eed3si9n.expecty%expecty", + "davenverse/mules":{ + "project":"davenverse/mules", + "repoUrl":"https://github.com/davenverse/mules.git", + "revision":"v0.7.0", + "version":"0.7.0", + "targets":"io.chrisdavenport%mules io.chrisdavenport%mules-caffeine io.chrisdavenport%mules-noop io.chrisdavenport%mules-reload", "config":{ "projects":{ "exclude":[ @@ -8858,7 +9096,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -8875,20 +9113,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "eed3si9n/gigahorse":{ - "project":"eed3si9n/gigahorse", - "repoUrl":"https://github.com/eed3si9n/gigahorse.git", - "revision":"v0.7.0", - "version":"0.7.0", - "targets":"com.eed3si9n%gigahorse-apache-http com.eed3si9n%gigahorse-asynchttpclient com.eed3si9n%gigahorse-core com.eed3si9n%gigahorse-okhttp", + "davenverse/mules-http4s":{ + "project":"davenverse/mules-http4s", + "repoUrl":"https://github.com/davenverse/mules-http4s.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"io.chrisdavenport%mules-http4s io.chrisdavenport%mules-http4s-scodec", "config":{ "projects":{ "exclude":[ @@ -8899,7 +9133,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -8916,20 +9150,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.1.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "eed3si9n/sjson-new":{ - "project":"eed3si9n/sjson-new", - "repoUrl":"https://github.com/eed3si9n/sjson-new.git", - "revision":"v0.13.0", - "version":"0.13.0", - "targets":"com.eed3si9n%sjson-new-core com.eed3si9n%sjson-new-murmurhash com.eed3si9n%sjson-new-spray com.eed3si9n%sjson-new-msgpack com.eed3si9n%sjson-new-scalajson", + "davenverse/namecase":{ + "project":"davenverse/namecase", + "repoUrl":"https://github.com/davenverse/namecase.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.chrisdavenport%namecase", "config":{ "projects":{ "exclude":[ @@ -8940,7 +9170,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -8957,20 +9187,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "eed3si9n/verify":{ - "project":"eed3si9n/verify", - "repoUrl":"https://github.com/eed3si9n/verify.git", - "revision":"main", - "version":"1.0.0", - "targets":"com.eed3si9n.verify%verify", + "davenverse/natchez-http4s-otel":{ + "project":"davenverse/natchez-http4s-otel", + "repoUrl":"https://github.com/davenverse/natchez-http4s-otel.git", + "revision":"v0.3.0", + "version":"0.3.0", + "targets":"io.chrisdavenport%natchez-http4s-otel", "config":{ "projects":{ "exclude":[ @@ -8981,7 +9207,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -8998,20 +9224,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.3\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "eikek/binny":{ - "project":"eikek/binny", - "repoUrl":"https://github.com/eikek/binny.git", - "revision":"v0.9.1", - "version":"0.9.1", - "targets":"com.github.eikek%binny-pglo com.github.eikek%binny-minio com.github.eikek%binny-core com.github.eikek%binny-tika-detect com.github.eikek%binny-jdbc com.github.eikek%binny-fs", + "davenverse/natchez-local":{ + "project":"davenverse/natchez-local", + "repoUrl":"https://github.com/davenverse/natchez-local.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"io.chrisdavenport%natchez-local", "config":{ "projects":{ "exclude":[ @@ -9022,7 +9244,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -9037,22 +9259,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "eikek/bitpeace":{ - "project":"eikek/bitpeace", - "repoUrl":"https://github.com/eikek/bitpeace.git", - "revision":"v0.9.0-M3", - "version":"0.9.0-M3", - "targets":"com.github.eikek%bitpeace-core", + "davenverse/natchez-rediculous":{ + "project":"davenverse/natchez-rediculous", + "repoUrl":"https://github.com/davenverse/natchez-rediculous.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.chrisdavenport%natchez-rediculous", "config":{ "projects":{ "exclude":[ @@ -9063,7 +9281,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -9080,20 +9298,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.0.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "eikek/calev":{ - "project":"eikek/calev", - "repoUrl":"https://github.com/eikek/calev.git", - "revision":"v0.6.4", - "version":"0.6.4", - "targets":"com.github.eikek%calev-circe com.github.eikek%calev-core com.github.eikek%calev-doobie com.github.eikek%calev-fs2", + "davenverse/os-detect":{ + "project":"davenverse/os-detect", + "repoUrl":"https://github.com/davenverse/os-detect.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.chrisdavenport%os-detect", "config":{ "projects":{ "exclude":[ @@ -9104,7 +9318,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -9121,20 +9335,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.3\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "eikek/emil":{ - "project":"eikek/emil", - "repoUrl":"https://github.com/eikek/emil.git", - "revision":"v0.13.0", - "version":"0.13.0", - "targets":"com.github.eikek%emil-common com.github.eikek%emil-javamail com.github.eikek%emil-jsoup com.github.eikek%emil-tnef com.github.eikek%emil-doobie com.github.eikek%emil-markdown", + "davenverse/process":{ + "project":"davenverse/process", + "repoUrl":"https://github.com/davenverse/process.git", + "revision":"v0.0.2", + "version":"0.0.2", + "targets":"io.chrisdavenport%process", "config":{ "projects":{ "exclude":[ @@ -9145,7 +9355,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -9162,20 +9372,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "eikek/yamusca":{ - "project":"eikek/yamusca", - "repoUrl":"https://github.com/eikek/yamusca.git", - "revision":"v0.10.0", - "version":"0.10.0", - "targets":"com.github.eikek%yamusca-circe com.github.eikek%yamusca-core com.github.eikek%yamusca-derive", + "davenverse/publicsuffix":{ + "project":"davenverse/publicsuffix", + "repoUrl":"https://github.com/davenverse/publicsuffix.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"io.chrisdavenport%publicsuffix io.chrisdavenport%publicsuffix-retrieval io.chrisdavenport%publicsuffix-retrieval-client", "config":{ "projects":{ "exclude":[ @@ -9186,7 +9392,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -9203,20 +9409,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.2.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "ekrich/sconfig":{ - "project":"ekrich/sconfig", - "repoUrl":"https://github.com/ekrich/sconfig.git", - "revision":"v1.5.0", - "version":"1.5.0", - "targets":"org.ekrich%sconfig", + "davenverse/rediculous":{ + "project":"davenverse/rediculous", + "repoUrl":"https://github.com/davenverse/rediculous.git", + "revision":"v0.5.0", + "version":"0.5.0", + "targets":"io.chrisdavenport%rediculous", "config":{ "projects":{ "exclude":[ @@ -9227,7 +9429,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -9242,22 +9444,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "eltherion/http4s-timer":{ - "project":"eltherion/http4s-timer", - "repoUrl":"https://github.com/eltherion/http4s-timer.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"pl.datart%http4s-timer-core pl.datart%http4s-timer-newrelic", + "davenverse/rediculous-concurrent":{ + "project":"davenverse/rediculous-concurrent", + "repoUrl":"https://github.com/davenverse/rediculous-concurrent.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"io.chrisdavenport%rediculous-concurrent io.chrisdavenport%rediculous-concurrent-http4s", "config":{ "projects":{ "exclude":[ @@ -9268,7 +9466,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -9283,22 +9481,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "embeddedkafka/embedded-kafka":{ - "project":"embeddedkafka/embedded-kafka", - "repoUrl":"https://github.com/embeddedkafka/embedded-kafka.git", - "revision":"v3.4.0.1", - "version":"3.4.0.1", - "targets":"io.github.embeddedkafka%embedded-kafka io.github.embeddedkafka%embedded-kafka-connect io.github.embeddedkafka%embedded-kafka-streams", + "davenverse/single-fibered":{ + "project":"davenverse/single-fibered", + "repoUrl":"https://github.com/davenverse/single-fibered.git", + "revision":"v0.1.1", + "version":"0.1.1", + "targets":"io.chrisdavenport%single-fibered", "config":{ "projects":{ "exclude":[ @@ -9326,20 +9520,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "embeddedkafka/embedded-kafka-schema-registry":{ - "project":"embeddedkafka/embedded-kafka-schema-registry", - "repoUrl":"https://github.com/embeddedkafka/embedded-kafka-schema-registry.git", - "revision":"v7.4.0", - "version":"7.4.0", - "targets":"io.github.embeddedkafka%embedded-kafka-schema-registry io.github.embeddedkafka%embedded-kafka-schema-registry-streams", + "davenverse/snickerdoodle":{ + "project":"davenverse/snickerdoodle", + "repoUrl":"https://github.com/davenverse/snickerdoodle.git", + "revision":"v0.0.4", + "version":"0.0.4", + "targets":"io.chrisdavenport%snickerdoodle", "config":{ "projects":{ "exclude":[ @@ -9368,19 +9558,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/Dependencies.scala", - "pattern":"val Scala3 = \"3.2.2\"", + "path":"build.sbt", + "pattern":"val Scala3 = \"3.1.1\"", "replaceWith":"val Scala3 = \"\"" } ] } }, - "emergentorder/onnx-scala":{ - "project":"emergentorder/onnx-scala", - "repoUrl":"https://github.com/emergentorder/onnx-scala.git", - "revision":"v0.17.0", - "version":"0.17.0", - "targets":"org.emergent-order%onnx-scala org.emergent-order%onnx-scala-backends org.emergent-order%onnx-scala-common org.emergent-order%onnx-scala-proto", + "davenverse/tsec":{ + "project":"davenverse/tsec", + "repoUrl":"https://github.com/davenverse/tsec.git", + "revision":"v0.5.0", + "version":"0.5.0", + "targets":"io.github.jmcardon%tsec-bouncy io.github.jmcardon%tsec-password io.github.jmcardon%tsec-mac io.github.jmcardon%tsec-cipher-bouncy io.github.jmcardon%tsec-jwt-core io.github.jmcardon%tsec-http4s io.github.jmcardon%tsec-signatures io.github.jmcardon%tsec-cipher-jca io.github.jmcardon%tsec-hash-bouncy io.github.jmcardon%tsec-cipher-core io.github.jmcardon%tsec-jwt-sig io.github.jmcardon%tsec-common io.github.jmcardon%tsec-jwt-mac io.github.jmcardon%tsec-hash-jca", "config":{ "projects":{ "exclude":[ @@ -9391,7 +9581,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -9412,25 +9602,23 @@ ] } }, - "endpoints4s/endpoints4s":{ - "project":"endpoints4s/endpoints4s", - "repoUrl":"https://github.com/endpoints4s/endpoints4s.git", - "revision":"v1.10.0", - "version":"1.10.0", - "targets":"org.endpoints4s%json-schema-generic org.endpoints4s%algebra org.endpoints4s%algebra-json-schema org.endpoints4s%json-schema-playjson", + "davenverse/whale-tail":{ + "project":"davenverse/whale-tail", + "repoUrl":"https://github.com/davenverse/whale-tail.git", + "revision":"v0.0.10", + "version":"0.0.10", + "targets":"io.chrisdavenport%whale-tail io.chrisdavenport%whale-tail-manager", "config":{ "projects":{ "exclude":[ ], "overrides":{ - "http4s-server":{ - "tests":"disabled" - } + } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -9445,18 +9633,25 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "enragedginger/akka-quartz-scheduler":{ - "project":"enragedginger/akka-quartz-scheduler", - "repoUrl":"https://github.com/enragedginger/akka-quartz-scheduler.git", - "revision":"release-1.9.3-akka-2.6.x", - "version":"1.9.3-akka-2.6.x", - "targets":"com.enragedginger%akka-quartz-scheduler", + "davidledwards/scalop":{ + "project":"davidledwards/scalop", + "repoUrl":"https://github.com/davidledwards/scalop.git", + "revision":"release-2.3.1", + "version":"2.3.1", + "targets":"com.loopfor.scalop%scalop" + }, + "delimobil/cabbit":{ + "project":"delimobil/cabbit", + "repoUrl":"https://github.com/delimobil/cabbit.git", + "revision":"0.2.0-RC3", + "version":"0.2.0-RC3", + "targets":"ru.delimobil%cabbit ru.delimobil%cabbit-circe ru.delimobil%cabbit-core ru.delimobil%cabbit_ce2", "config":{ "projects":{ "exclude":[ @@ -9467,7 +9662,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -9484,20 +9679,16 @@ }, "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3Version = \"3.1.3\"", - "replaceWith":"val Scala3Version = \"\"" - } + ] } }, - "enriquerodbe/borsh4s":{ - "project":"enriquerodbe/borsh4s", - "repoUrl":"https://github.com/enriquerodbe/borsh4s.git", - "revision":"v3.0.0", - "version":"3.0.0", - "targets":"io.github.enriquerodbe%borsh4s", + "delimobil/fs2-hbase":{ + "project":"delimobil/fs2-hbase", + "repoUrl":"https://github.com/delimobil/fs2-hbase.git", + "revision":"0.1.0-RC10", + "version":"0.1.0-RC10", + "targets":"ru.delimobil%fs2-hbase", "config":{ "projects":{ "exclude":[ @@ -9512,8 +9703,7 @@ }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -9524,31 +9714,29 @@ ] }, - "tests":"full", + "tests":"disabled", "sourcePatches":[ ] } }, - "epfl-lara/lisa":{ - "project":"epfl-lara/lisa", - "repoUrl":"https://github.com/epfl-lara/lisa.git", - "revision":"5e6f10e91d311b38f1293e2b2d5b979e1360c04e", - "version":"HEAD", - "targets":"*%*", + "devlaam/leucine":{ + "project":"devlaam/leucine", + "repoUrl":"https://github.com/devlaam/leucine.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"com.sense2act%leucine", "config":{ "projects":{ "exclude":[ - "scallion", - "scallion-examples", - "scallion-benchmarks" + ], "overrides":{ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -9565,31 +9753,27 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "erikerlandson/coulomb":{ - "project":"erikerlandson/coulomb", - "repoUrl":"https://github.com/erikerlandson/coulomb.git", - "revision":"v0.7.3", - "version":"0.7.3", - "targets":"com.manyangled%coulomb-units com.manyangled%coulomb-core com.manyangled%coulomb-docs com.manyangled%coulomb-testkit com.manyangled%coulomb-spire com.manyangled%coulomb-refined", + "devsisters/shardcake":{ + "project":"devsisters/shardcake", + "repoUrl":"https://github.com/devsisters/shardcake.git", + "revision":"v2.1.0", + "version":"2.1.0", + "targets":"com.devsisters%shardcake-serialization-kryo com.devsisters%shardcake-manager com.devsisters%shardcake-core com.devsisters%shardcake-entities com.devsisters%shardcake-storage-redis com.devsisters%shardcake-health-k8s com.devsisters%shardcake-protocol-grpc", "config":{ "projects":{ "exclude":[ - "com.manyangled%coulomb-docs" + ], "overrides":{ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -9606,16 +9790,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "erikvanoosten/metrics-scala":{ - "project":"erikvanoosten/metrics-scala", - "repoUrl":"https://github.com/erikvanoosten/metrics-scala.git", - "revision":"v4.2.9", - "version":"4.2.9", - "targets":"nl.grons%metrics4-scala nl.grons%metrics4-akka_a26 nl.grons%metrics4-scala-hdr", + "devsisters/zio-agones":{ + "project":"devsisters/zio-agones", + "repoUrl":"https://github.com/devsisters/zio-agones.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.devsisters%zio-agones", "config":{ "projects":{ "exclude":[ @@ -9643,16 +9831,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "errors4s/errors4s-core":{ - "project":"errors4s/errors4s-core", - "repoUrl":"https://github.com/errors4s/errors4s-core.git", - "revision":"v1.0.0.0", - "version":"1.0.0.0", - "targets":"org.errors4s%errors4s-core org.errors4s%errors4s-core-cats org.errors4s%errors4s-core-root org.errors4s%errors4s-core-scalacheck", + "dfianthdl/dfiant":{ + "project":"dfianthdl/dfiant", + "repoUrl":"https://github.com/dfianthdl/dfiant.git", + "revision":"v0.3.5", + "version":"0.3.5", + "targets":"io.github.dfianthdl%dfhdl-compiler-stages io.github.dfianthdl%dfhdl io.github.dfianthdl%dfhdl-internals io.github.dfianthdl%dfhdl-compiler-ir io.github.dfianthdl%dfhdl-core", "config":{ "projects":{ "exclude":[ @@ -9680,20 +9872,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.0.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "errors4s/errors4s-core-cats":{ - "project":"errors4s/errors4s-core-cats", - "repoUrl":"https://github.com/errors4s/errors4s-core-cats.git", - "revision":"12708325a94686e750039fc1f1f3ea4759c61977", - "version":"1.0.0.0-RC0", - "targets":"org.errors4s%errors4s-core-cats org.errors4s%errors4s-core-cats-root", + "dieproht/matr":{ + "project":"dieproht/matr", + "repoUrl":"https://github.com/dieproht/matr.git", + "revision":"v0.0.3", + "version":"0.0.3", + "targets":"io.github.dieproht%matr-dflt-data io.github.dieproht%matr-bundle io.github.dieproht%matr-api io.github.dieproht%matr-std io.github.dieproht%matr-dflt-ops", "config":{ "projects":{ "exclude":[ @@ -9704,7 +9892,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -9725,12 +9913,12 @@ ] } }, - "errors4s/errors4s-core-scalacheck":{ - "project":"errors4s/errors4s-core-scalacheck", - "repoUrl":"https://github.com/errors4s/errors4s-core-scalacheck.git", - "revision":"79df227a9b79b032a185f8d74138f0ef697c0100", - "version":"1.0.0.0-RC0", - "targets":"org.errors4s%errors4s-core-scalacheck org.errors4s%errors4s-core-scalacheck-root", + "dieproht/molly":{ + "project":"dieproht/molly", + "repoUrl":"https://github.com/dieproht/molly.git", + "revision":"v0.1.3", + "version":"0.1.3", + "targets":"io.github.dieproht%molly-core", "config":{ "projects":{ "exclude":[ @@ -9762,12 +9950,12 @@ ] } }, - "errors4s/errors4s-http":{ - "project":"errors4s/errors4s-http", - "repoUrl":"https://github.com/errors4s/errors4s-http.git", - "revision":"v3.0.0.0", - "version":"3.0.0.0", - "targets":"org.errors4s%errors4s-http4s-circe org.errors4s%errors4s-http org.errors4s%errors4s-http-root org.errors4s%errors4s-http4s org.errors4s%errors4s-http-circe", + "disneystreaming/alloy":{ + "project":"disneystreaming/alloy", + "repoUrl":"https://github.com/disneystreaming/alloy.git", + "revision":"v0.2.8", + "version":"0.2.8", + "targets":"com.disneystreaming.alloy%alloy-openapi", "config":{ "projects":{ "exclude":[ @@ -9778,7 +9966,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -9799,40 +9987,29 @@ ] } }, - "estrondo/sweet-mockito":{ - "project":"estrondo/sweet-mockito", - "repoUrl":"https://github.com/estrondo/sweet-mockito.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"one.estrondo%sweet-mockito one.estrondo%sweet-mockito-root one.estrondo%sweet-mockito-zio" - }, - "etorreborre/specs2":{ - "project":"etorreborre/specs2", - "repoUrl":"https://github.com/etorreborre/specs2.git", - "revision":"SPECS2-4.20.0", - "version":"4.20.0", - "targets":"org.specs2%specs2-common org.specs2%specs2-cats org.specs2%specs2-matcher-extra org.specs2%specs2-markdown org.specs2%specs2-tests org.specs2%specs2-matcher org.specs2%specs2-html org.specs2%specs2-junit org.specs2%specs2-scalaz org.specs2%specs2-form org.specs2%specs2-scalacheck org.specs2%specs2-fp org.specs2%xml org.specs2%specs2-core", + "disneystreaming/smithy4s":{ + "project":"disneystreaming/smithy4s", + "repoUrl":"https://github.com/disneystreaming/smithy4s.git", + "revision":"v0.18.3", + "version":"0.18.3", + "targets":"com.disneystreaming.smithy4s%smithy4s-cats com.disneystreaming.smithy4s%smithy4s-json com.disneystreaming.smithy4s%smithy4s-dynamic com.disneystreaming.smithy4s%smithy4s-tests com.disneystreaming.smithy4s%smithy4s-core com.disneystreaming.smithy4s%smithy4s-compliance-tests com.disneystreaming.smithy4s%smithy4s-http4s-swagger com.disneystreaming.smithy4s%smithy4s-http4s-kernel com.disneystreaming.smithy4s%smithy4s-decline com.disneystreaming.smithy4s%smithy4s-aws-http4s com.disneystreaming.smithy4s%smithy4s-fs2 com.disneystreaming.smithy4s%smithy4s-http4s com.disneystreaming.smithy4s%smithy4s-aws-kernel com.disneystreaming.smithy4s%smithy4s-xml", "config":{ "projects":{ "exclude":[ - "specs2-guide", - "specs2-cats", - "specs2-scalaz", - "xml" + ], "overrides":{ - "specs2-form":{ + "smithy4s-dynamic":{ "tests":"compile-only" } } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ - "set core.jvm/Test/unmanagedSources/excludeFilter ~= { _ || \"TimeoutSpec.scala\" || \"ThrowablexSpec.scala\"}", - "set tests.jvm/Test/unmanagedSources/excludeFilter ~= { _ || \"FileMatchersSpec.scala\" || \"TerminationMatchersSpec.scala\"} " + ], "options":[ @@ -9845,16 +10022,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Smithy4sBuildPlugin.scala", + "pattern":"val Scala3 = \"3.3.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "etspaceman/kinesis4cats":{ - "project":"etspaceman/kinesis4cats", - "repoUrl":"https://github.com/etspaceman/kinesis4cats.git", - "revision":"v0.0.18", - "version":"0.0.18", - "targets":"io.github.etspaceman%kinesis4cats-compat io.github.etspaceman%kinesis4cats-smithy4s-client-logging-circe io.github.etspaceman%kinesis4cats-smithy4s-client-localstack io.github.etspaceman%kinesis4cats-shared-circe io.github.etspaceman%kinesis4cats-kinesis-client io.github.etspaceman%kinesis4cats-kcl io.github.etspaceman%kinesis4cats-kpl io.github.etspaceman%kinesis4cats-aws-v2-localstack io.github.etspaceman%kinesis4cats-shared-localstack io.github.etspaceman%kinesis4cats-shared-ciris io.github.etspaceman%kinesis4cats-kcl-logging-circe io.github.etspaceman%kinesis4cats-kcl-ciris io.github.etspaceman%kinesis4cats-kcl-http4s io.github.etspaceman%kinesis4cats-kcl-localstack io.github.etspaceman%kinesis4cats-kinesis-client-logging-circe io.github.etspaceman%kinesis4cats-kpl-logging-circe io.github.etspaceman%kinesis4cats-smithy4s-client io.github.etspaceman%kinesis4cats-kpl-localstack io.github.etspaceman%kinesis4cats-aws-v1-localstack io.github.etspaceman%kinesis4cats-kinesis-client-localstack io.github.etspaceman%kinesis4cats-shared io.github.etspaceman%kinesis4cats-kpl-ciris", + "disneystreaming/weaver-test":{ + "project":"disneystreaming/weaver-test", + "repoUrl":"https://github.com/disneystreaming/weaver-test.git", + "revision":"v0.8.3", + "version":"0.8.3", + "targets":"com.disneystreaming%weaver-core com.disneystreaming%weaver-cats com.disneystreaming%weaver-framework com.disneystreaming%weaver-cats-core com.disneystreaming%weaver-scalacheck com.disneystreaming%weaver-discipline", "config":{ "projects":{ "exclude":[ @@ -9865,14 +10046,14 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ ], "options":[ - + "-Dcommunitybuild.dualVersion=minor:+1" ] }, "mill":{ @@ -9883,19 +10064,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/Kinesis4CatsPlugin.scala", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" + "path":"project/WeaverPlugin.scala", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "eventstore/eventstore.akka.persistence":{ - "project":"eventstore/eventstore.akka.persistence", - "repoUrl":"https://github.com/eventstore/eventstore.akka.persistence.git", - "revision":"v8.0.0", - "version":"8.0.0", - "targets":"com.geteventstore%akka-persistence-eventstore", + "dobrynya/zio-jms":{ + "project":"dobrynya/zio-jms", + "repoUrl":"https://github.com/dobrynya/zio-jms.git", + "revision":"v0.2", + "version":"0.2", + "targets":"io.github.dobrynya%zio-jms", "config":{ "projects":{ "exclude":[ @@ -9906,7 +10087,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -9921,18 +10102,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "eventstore/eventstore.jvm":{ - "project":"eventstore/eventstore.jvm", - "repoUrl":"https://github.com/eventstore/eventstore.jvm.git", - "revision":"v8.0.0", - "version":"8.0.0", - "targets":"com.geteventstore%eventstore-client com.geteventstore%eventstore-client-core", + "donderom/llm4s":{ + "project":"donderom/llm4s", + "repoUrl":"https://github.com/donderom/llm4s.git", + "revision":"", + "version":"0.10.0", + "targets":"com.donderom%llm4s", "config":{ "projects":{ "exclude":[ @@ -9943,7 +10124,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -9960,16 +10141,27 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.3.0\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "evolution-gaming/derivation":{ - "project":"evolution-gaming/derivation", - "repoUrl":"https://github.com/evolution-gaming/derivation.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"com.evolution%derivation-play-json com.evolution%derivation-core com.evolution%derivation-circe com.evolution%derivation-circe-compat213 com.evolution%derivation-tapir com.evolution%derivation-cats", + "doriordan/skuber":{ + "project":"doriordan/skuber", + "repoUrl":"https://github.com/doriordan/skuber.git", + "revision":"v3.0.0-beta3", + "version":"3.0.0-beta3", + "targets":"io.skuber%skuber-akka-bsl io.skuber%skuber-core io.skuber%skuber-examples io.skuber%skuber-pekko" + }, + "dragonfly-ai/cliviz":{ + "project":"dragonfly-ai/cliviz", + "repoUrl":"https://github.com/dragonfly-ai/cliviz.git", + "revision":"v0.102", + "version":"0.102", + "targets":"ai.dragonfly%cliviz", "config":{ "projects":{ "exclude":[ @@ -9980,7 +10172,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -10001,12 +10193,12 @@ ] } }, - "fabiopinheiro/scala-did":{ - "project":"fabiopinheiro/scala-did", - "repoUrl":"https://github.com/fabiopinheiro/scala-did.git", - "revision":"v0.1.0-M2", - "version":"0.1.0-M2", - "targets":"app.fmgp%did app.fmgp%did-imp app.fmgp%did-method-peer app.fmgp%multiformats", + "dragonfly-ai/democrossy":{ + "project":"dragonfly-ai/democrossy", + "repoUrl":"https://github.com/dragonfly-ai/democrossy.git", + "revision":"v0.102", + "version":"0.102", + "targets":"ai.dragonfly%democrossy", "config":{ "projects":{ "exclude":[ @@ -10017,7 +10209,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -10038,12 +10230,12 @@ ] } }, - "failurewall/failurewall":{ - "project":"failurewall/failurewall", - "repoUrl":"https://github.com/failurewall/failurewall.git", - "revision":"v0.5.0", - "version":"0.5.0", - "targets":"com.okumin%failurewall-akka com.okumin%failurewall-core", + "dragonfly-ai/matrix":{ + "project":"dragonfly-ai/matrix", + "repoUrl":"https://github.com/dragonfly-ai/matrix.git", + "revision":"v0.101", + "version":"0.101", + "targets":"ai.dragonfly%matrix", "config":{ "projects":{ "exclude":[ @@ -10075,12 +10267,12 @@ ] } }, - "fasterxml/jackson-module-scala":{ - "project":"fasterxml/jackson-module-scala", - "repoUrl":"https://github.com/fasterxml/jackson-module-scala.git", - "revision":"v2.15.1", - "version":"2.15.1", - "targets":"com.fasterxml.jackson.module%jackson-module-scala", + "dragonfly-ai/mesh":{ + "project":"dragonfly-ai/mesh", + "repoUrl":"https://github.com/dragonfly-ai/mesh.git", + "revision":"v0.12", + "version":"0.12", + "targets":"ai.dragonfly%mesh", "config":{ "projects":{ "exclude":[ @@ -10091,7 +10283,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -10106,18 +10298,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "fd4s/fs2-kafka":{ - "project":"fd4s/fs2-kafka", - "repoUrl":"https://github.com/fd4s/fs2-kafka.git", - "revision":"v3.0.1", - "version":"3.0.1", - "targets":"com.github.fd4s%fs2-kafka com.github.fd4s%fs2-kafka-vulcan com.github.fd4s%fs2-kafka-vulcan-testkit-munit", + "dragonfly-ai/narr":{ + "project":"dragonfly-ai/narr", + "repoUrl":"https://github.com/dragonfly-ai/narr.git", + "revision":"v0.103", + "version":"0.103", + "targets":"ai.dragonfly%narr", "config":{ "projects":{ "exclude":[ @@ -10128,11 +10320,11 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ - "set core/Test/unmanagedSources/excludeFilter ~= {_ || \"KafkaProducerConnectionSpec.scala\" || \"KafkaConsumerSpec.scala\" || \"KafkaProducerSpec.scala\" || \"TransactionalKafkaProducerSpec.scala\" || \"TransactionalKafkaProducerTimeoutSpec.scala\" || \"KafkaAdminClientSpec.scala\"} " + ], "options":[ @@ -10145,20 +10337,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "fd4s/vulcan":{ - "project":"fd4s/vulcan", - "repoUrl":"https://github.com/fd4s/vulcan.git", - "revision":"v1.9.0", - "version":"1.9.0", - "targets":"com.github.fd4s%vulcan com.github.fd4s%vulcan-generic com.github.fd4s%vulcan-refined", + "dragonfly-ai/slash":{ + "project":"dragonfly-ai/slash", + "repoUrl":"https://github.com/dragonfly-ai/slash.git", + "revision":"v0.2", + "version":"0.2", + "targets":"ai.dragonfly%slash", "config":{ "projects":{ "exclude":[ @@ -10169,7 +10357,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -10186,20 +10374,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "fdietze/formidable":{ - "project":"fdietze/formidable", - "repoUrl":"https://github.com/fdietze/formidable.git", - "revision":"v0.1.5", - "version":"0.1.5", - "targets":"com.github.fdietze%formidable", + "durban/choam":{ + "project":"durban/choam", + "repoUrl":"https://github.com/durban/choam.git", + "revision":"v0.4.0-RC1", + "version":"0.4.0-RC1", + "targets":"dev.tauri%choam-docs dev.tauri%choam-stream dev.tauri%choam-data dev.tauri%choam-async dev.tauri%choam-skiplist dev.tauri%choam-laws dev.tauri%choam-mcas dev.tauri%choam-core", "config":{ "projects":{ "exclude":[ @@ -10210,7 +10394,7 @@ } }, "java":{ - "version":"17" + "version":"21" }, "sbt":{ "commands":[ @@ -10227,16 +10411,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "fehu/opentracing-scala":{ - "project":"fehu/opentracing-scala", - "repoUrl":"https://github.com/fehu/opentracing-scala.git", - "revision":"0.7.0", - "version":"0.7.0", - "targets":"io.github.fehu%opentracing-scala-akka io.github.fehu%opentracing-scala-jaeger io.github.fehu%opentracing-scala-core io.github.fehu%opentracing-scala-fs2 io.github.fehu%opentracing-scala-noop", + "dvgica/healthful":{ + "project":"dvgica/healthful", + "repoUrl":"https://github.com/dvgica/healthful.git", + "revision":"v0.1.1", + "version":"0.1.1", + "targets":"ca.dvgi%healthful", "config":{ "projects":{ "exclude":[ @@ -10266,18 +10454,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.1.3\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val scala3Version = \"3.3.0\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "fgrutsch/akka-persistence-mapdb":{ - "project":"fgrutsch/akka-persistence-mapdb", - "repoUrl":"https://github.com/fgrutsch/akka-persistence-mapdb.git", - "revision":"v0.3.2", - "version":"0.3.2", - "targets":"com.fgrutsch%akka-persistence-mapdb", + "dvgica/managerial":{ + "project":"dvgica/managerial", + "repoUrl":"https://github.com/dvgica/managerial.git", + "revision":"v0.9.1", + "version":"0.9.1", + "targets":"ca.dvgi%managerial ca.dvgi%managerial-twitter-util", "config":{ "projects":{ "exclude":[ @@ -10288,7 +10476,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -10305,16 +10493,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.0.2\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "fgrutsch/emergence":{ - "project":"fgrutsch/emergence", - "repoUrl":"https://github.com/fgrutsch/emergence.git", - "revision":"v0.5.1", - "version":"0.5.1", - "targets":"com.fgrutsch.emergence%core", + "dvgica/periodic":{ + "project":"dvgica/periodic", + "repoUrl":"https://github.com/dvgica/periodic.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"ca.dvgi%periodic-core ca.dvgi%periodic-pekko-stream", "config":{ "projects":{ "exclude":[ @@ -10325,7 +10517,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -10342,16 +10534,41 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.3.1\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "fiatjaf/nlog":{ - "project":"fiatjaf/nlog", - "repoUrl":"https://github.com/fiatjaf/nlog.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.fiatjaf%nlog", + "dvreeze/tqa":{ + "project":"dvreeze/tqa", + "repoUrl":"https://github.com/dvreeze/tqa.git", + "revision":"tqa_3-0.13.0", + "version":"0.13.0", + "targets":"eu.cdevreeze.tqa%tqa" + }, + "dvreeze/xpathparser":{ + "project":"dvreeze/xpathparser", + "repoUrl":"https://github.com/dvreeze/xpathparser.git", + "revision":"0.8.0", + "version":"0.8.0", + "targets":"eu.cdevreeze.xpathparser%xpathparser" + }, + "dvreeze/yaidom":{ + "project":"dvreeze/yaidom", + "repoUrl":"https://github.com/dvreeze/yaidom.git", + "revision":"yaidom_3-1.13.0", + "version":"1.13.0", + "targets":"eu.cdevreeze.yaidom%yaidom" + }, + "dwickern/scala-nameof":{ + "project":"dwickern/scala-nameof", + "repoUrl":"https://github.com/dwickern/scala-nameof.git", + "revision":"v4.0.0", + "version":"4.0.0", + "targets":"com.github.dwickern%scala-nameof", "config":{ "projects":{ "exclude":[ @@ -10362,7 +10579,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -10379,16 +10596,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.0.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "fiatjaf/scoin":{ - "project":"fiatjaf/scoin", - "repoUrl":"https://github.com/fiatjaf/scoin.git", - "revision":"v0.7.0", - "version":"0.7.0", - "targets":"com.fiatjaf%scoin", + "dwolla/epimetheus-server":{ + "project":"dwolla/epimetheus-server", + "repoUrl":"https://github.com/dwolla/epimetheus-server.git", + "revision":"v7.1.0", + "version":"7.1.0", + "targets":"com.dwolla%epimetheus-server-root com.dwolla%monitoring-server", "config":{ "projects":{ "exclude":[ @@ -10416,16 +10637,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.0\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "filosganga/batcher":{ - "project":"filosganga/batcher", - "repoUrl":"https://github.com/filosganga/batcher.git", - "revision":"v0.0.8", - "version":"0.0.8", - "targets":"com.filippodeluca%batcher", + "dwolla/fs2-aws":{ + "project":"dwolla/fs2-aws", + "repoUrl":"https://github.com/dwolla/fs2-aws.git", + "revision":"v3.0.0-RC2", + "version":"3.0.0-RC2", + "targets":"com.dwolla%fs2-aws-java-sdk2 com.dwolla%fs2-utils", "config":{ "projects":{ "exclude":[ @@ -10436,7 +10661,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -10457,12 +10682,12 @@ ] } }, - "filosganga/jsonpath":{ - "project":"filosganga/jsonpath", - "repoUrl":"https://github.com/filosganga/jsonpath.git", - "revision":"v0.0.18", - "version":"0.0.18", - "targets":"com.filippodeluca%jsonpath-ast com.filippodeluca%jsonpath-circe com.filippodeluca%jsonpath-literal com.filippodeluca%jsonpath-parser", + "dylemma/xml-spac":{ + "project":"dylemma/xml-spac", + "repoUrl":"https://github.com/dylemma/xml-spac.git", + "revision":"0.12.1", + "version":"0.12.1", + "targets":"io.dylemma%json-spac io.dylemma%spac-interop-fs2 io.dylemma%spac-core io.dylemma%xml-spac io.dylemma%xml-spac-javax io.dylemma%json-spac-jackson io.dylemma%xml-spac-fs2-data io.dylemma%json-spac-fs2-data", "config":{ "projects":{ "exclude":[ @@ -10473,7 +10698,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -10494,30 +10719,25 @@ ] } }, - "findify/flink-adt":{ - "project":"findify/flink-adt", - "repoUrl":"https://github.com/WojciechMazur/flink-adt.git", - "revision":"fix/compilation-scala-3.3.x", - "version":"0.6.1", - "targets":"io.findify%flink-adt" - }, - "findify/flink-scala-api":{ - "project":"findify/flink-scala-api", - "repoUrl":"https://github.com/flink-extended/flink-scala-api.git", - "revision":"master", - "version":"1.15-2", - "targets":"io.findify%flink-scala-api", + "earogov/ordset":{ + "project":"earogov/ordset", + "repoUrl":"https://github.com/earogov/ordset.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.github.earogov%ordset io.github.earogov%ordset-commonsRandom", "config":{ "projects":{ "exclude":[ ], "overrides":{ - + "ordset":{ + "tests":"disabled" + } } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -10532,25 +10752,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sc", + "pattern":"\"-comment-syntax\", \"wiki\"", + "replaceWith":"\"-comment-syntax:wiki\"" + } ] } }, - "fingo/spata":{ - "project":"fingo/spata", - "repoUrl":"https://github.com/fingo/spata.git", - "revision":"v3.0.0", - "version":"3.0.0", - "targets":"info.fingo%spata" - }, - "flink-extended/flink-scala-api":{ - "project":"flink-extended/flink-scala-api", - "repoUrl":"https://github.com/flink-extended/flink-scala-api.git", - "revision":"v1.16.1.2", - "version":"1.16.1.2", - "targets":"org.flinkextended%flink-scala-api", + "eed3si9n/expecty":{ + "project":"eed3si9n/expecty", + "repoUrl":"https://github.com/eed3si9n/expecty.git", + "revision":"v0.16.0", + "version":"0.16.0", + "targets":"com.eed3si9n.expecty%expecty", "config":{ "projects":{ "exclude":[ @@ -10561,7 +10778,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -10578,34 +10795,31 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "folone/poi.scala":{ - "project":"folone/poi.scala", - "repoUrl":"https://github.com/folone/poi.scala.git", - "revision":"v0.23", - "version":"0.23", - "targets":"info.folone%poi-scala" - }, - "fomkin/korolev":{ - "project":"fomkin/korolev", - "repoUrl":"https://github.com/fomkin/korolev.git", - "revision":"v1.16.0-M4", - "version":"1.16.0-M4", - "targets":"org.fomkin%korolev-web-dsl org.fomkin%korolev-zio2-streams org.fomkin%korolev-testkit org.fomkin%korolev-fs2-ce3 org.fomkin%korolev-ce3 org.fomkin%korolev-effect org.fomkin%korolev-http4s org.fomkin%korolev-zio-streams org.fomkin%korolev org.fomkin%korolev-web org.fomkin%korolev-zio2 org.fomkin%korolev-zio org.fomkin%korolev-ce2 org.fomkin%korolev-http org.fomkin%korolev-zio-http org.fomkin%korolev-bytes org.fomkin%korolev-akka org.fomkin%korolev-standalone org.fomkin%korolev-monix org.fomkin%korolev-scodec org.fomkin%korolev-slf4j org.fomkin%korolev-fs2-ce2", + "eed3si9n/gigahorse":{ + "project":"eed3si9n/gigahorse", + "repoUrl":"https://github.com/eed3si9n/gigahorse.git", + "revision":"v0.7.0", + "version":"0.7.0", + "targets":"com.eed3si9n%gigahorse-apache-http com.eed3si9n%gigahorse-asynchttpclient com.eed3si9n%gigahorse-core com.eed3si9n%gigahorse-okhttp", "config":{ "projects":{ "exclude":[ - "org.fomkin%korolev-http4s" + ], "overrides":{ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -10620,43 +10834,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.1.1\"", - "replaceWith":"val scala3Version = \"\"" + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.1.0\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "fomkin/levsha":{ - "project":"fomkin/levsha", - "repoUrl":"https://github.com/fomkin/levsha.git", - "revision":"v1.4.0-M2", - "version":"1.4.0-M2", - "targets":"com.github.fomkin%levsha-core com.github.fomkin%levsha-events" - }, - "fommil/jzon":{ - "project":"fommil/jzon", - "repoUrl":"https://github.com/fommil/jzon.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"com.fommil%jzon" - }, - "foundweekends/knockoff":{ - "project":"foundweekends/knockoff", - "repoUrl":"https://github.com/foundweekends/knockoff.git", - "revision":"v0.9.0", - "version":"0.9.0", - "targets":"org.foundweekends%knockoff" - }, - "foundweekends/pamflet":{ - "project":"foundweekends/pamflet", - "repoUrl":"https://github.com/foundweekends/pamflet.git", - "revision":"v0.12.0", - "version":"0.12.0", - "targets":"org.foundweekends%pamflet-app org.foundweekends%pamflet-knockoff org.foundweekends%pamflet-library", + "eed3si9n/ifdef":{ + "project":"eed3si9n/ifdef", + "repoUrl":"https://github.com/eed3si9n/ifdef.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"com.eed3si9n.ifdef%ifdef-annotation com.eed3si9n.ifdef%ifdef-plugin", "config":{ "projects":{ "exclude":[ @@ -10667,7 +10860,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -10682,18 +10875,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "frawa/inline-files":{ - "project":"frawa/inline-files", - "repoUrl":"https://github.com/frawa/inline-files.git", - "revision":"v0.1.2", - "version":"0.1.2", - "targets":"io.github.frawa%inline-files", + "eed3si9n/sjson-new":{ + "project":"eed3si9n/sjson-new", + "repoUrl":"https://github.com/eed3si9n/sjson-new.git", + "revision":"v0.13.0", + "version":"0.13.0", + "targets":"com.eed3si9n%sjson-new-core com.eed3si9n%sjson-new-murmurhash com.eed3si9n%sjson-new-spray com.eed3si9n%sjson-new-msgpack com.eed3si9n%sjson-new-scalajson", "config":{ "projects":{ "exclude":[ @@ -10704,7 +10901,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -10721,25 +10918,27 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "frawa/typed-json":{ - "project":"frawa/typed-json", - "repoUrl":"https://github.com/frawa/typed-json.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.github.frawa%typed-json-parser io.github.frawa%typed-json-parser-jawn io.github.frawa%typed-json-macros io.github.frawa%typed-json-parser-zio io.github.frawa%typed-json", + "eed3si9n/verify":{ + "project":"eed3si9n/verify", + "repoUrl":"https://github.com/eed3si9n/verify.git", + "revision":"main", + "version":"1.0.0", + "targets":"com.eed3si9n.verify%verify", "config":{ "projects":{ "exclude":[ ], "overrides":{ - "typed-json":{ - "tests":"disabled" - } + } }, "java":{ @@ -10760,16 +10959,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.1.3\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "frugalmechanic/scala-optparse":{ - "project":"frugalmechanic/scala-optparse", - "repoUrl":"https://github.com/frugalmechanic/scala-optparse.git", - "revision":"v1.2.0", - "version":"1.2.0", - "targets":"com.frugalmechanic%scala-optparse", + "eikek/binny":{ + "project":"eikek/binny", + "repoUrl":"https://github.com/eikek/binny.git", + "revision":"v0.10.0", + "version":"0.10.0", + "targets":"com.github.eikek%binny-pglo com.github.eikek%binny-minio com.github.eikek%binny-core com.github.eikek%binny-tika-detect com.github.eikek%binny-jdbc com.github.eikek%binny-fs", "config":{ "projects":{ "exclude":[ @@ -10780,7 +10983,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -10795,18 +10998,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "fs2-blobstore/fs2-blobstore":{ - "project":"fs2-blobstore/fs2-blobstore", - "repoUrl":"https://github.com/fs2-blobstore/fs2-blobstore.git", - "revision":"v0.9.8", - "version":"0.9.8", - "targets":"com.github.fs2-blobstore%s3 com.github.fs2-blobstore%gcs com.github.fs2-blobstore%url com.github.fs2-blobstore%azure com.github.fs2-blobstore%sftp com.github.fs2-blobstore%box com.github.fs2-blobstore%core", + "eikek/bitpeace":{ + "project":"eikek/bitpeace", + "repoUrl":"https://github.com/eikek/bitpeace.git", + "revision":"v0.9.0-M3", + "version":"0.9.0-M3", + "targets":"com.github.eikek%bitpeace-core", "config":{ "projects":{ "exclude":[ @@ -10817,7 +11024,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -10832,18 +11039,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.0.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "fthomas/fs2-cron":{ - "project":"fthomas/fs2-cron", - "repoUrl":"https://github.com/fthomas/fs2-cron.git", - "revision":"v0.8.3", - "version":"0.8.3", - "targets":"eu.timepit%fs2-cron-calev eu.timepit%fs2-cron-core eu.timepit%fs2-cron-cron-utils", + "eikek/calev":{ + "project":"eikek/calev", + "repoUrl":"https://github.com/eikek/calev.git", + "revision":"v0.7.0", + "version":"0.7.0", + "targets":"com.github.eikek%calev-circe com.github.eikek%calev-core com.github.eikek%calev-doobie com.github.eikek%calev-fs2", "config":{ "projects":{ "exclude":[ @@ -10854,7 +11065,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -10873,18 +11084,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala_3 = \"3.2.2\"", - "replaceWith":"val Scala_3 = \"\"" + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "fthomas/refined":{ - "project":"fthomas/refined", - "repoUrl":"https://github.com/fthomas/refined.git", - "revision":"v0.10.3", - "version":"0.10.3", - "targets":"eu.timepit%refined eu.timepit%refined-cats eu.timepit%refined-scalacheck eu.timepit%refined-scopt eu.timepit%refined-pureconfig eu.timepit%refined-jsonpath", + "eikek/emil":{ + "project":"eikek/emil", + "repoUrl":"https://github.com/eikek/emil.git", + "revision":"v0.14.0", + "version":"0.14.0", + "targets":"com.github.eikek%emil-common com.github.eikek%emil-javamail com.github.eikek%emil-jsoup com.github.eikek%emil-tnef com.github.eikek%emil-doobie com.github.eikek%emil-markdown", "config":{ "projects":{ "exclude":[ @@ -10895,7 +11106,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -10914,18 +11125,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala_3 = \"3.2.2\"", - "replaceWith":"val Scala_3 = \"\"" + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "fthomas/status-page":{ - "project":"fthomas/status-page", - "repoUrl":"https://github.com/fthomas/status-page.git", - "revision":"v0.3.2", - "version":"0.3.2", - "targets":"eu.timepit%status-page-cats eu.timepit%status-page-core", + "eikek/yamusca":{ + "project":"eikek/yamusca", + "repoUrl":"https://github.com/eikek/yamusca.git", + "revision":"v0.10.0", + "version":"0.10.0", + "targets":"com.github.eikek%yamusca-circe com.github.eikek%yamusca-core com.github.eikek%yamusca-derive", "config":{ "projects":{ "exclude":[ @@ -10936,7 +11147,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -10954,26 +11165,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val Scala_3 = \"3.2.2\"", - "replaceWith":"val Scala_3 = \"\"" + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.2.0\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "funkode-io/web3-auth":{ - "project":"funkode-io/web3-auth", - "repoUrl":"https://github.com/funkode-io/web3-auth.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"io.funkode%web3-auth" - }, - "gaeljw/typetrees":{ - "project":"gaeljw/typetrees", - "repoUrl":"https://github.com/gaeljw/typetrees.git", - "revision":"v0.5.0", - "version":"0.5.0", - "targets":"io.github.gaeljw%typetrees", + "ekrich/sconfig":{ + "project":"ekrich/sconfig", + "repoUrl":"https://github.com/ekrich/sconfig.git", + "revision":"v1.5.1", + "version":"1.5.1", + "targets":"org.ekrich%sconfig", "config":{ "projects":{ "exclude":[ @@ -10984,7 +11188,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -11003,18 +11207,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.0.0\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "gaelrenoux/tranzactio":{ - "project":"gaelrenoux/tranzactio", - "repoUrl":"https://github.com/gaelrenoux/tranzactio.git", - "revision":"v4.1.0", - "version":"4.1.0", - "targets":"io.github.gaelrenoux%tranzactio", + "eltherion/http4s-timer":{ + "project":"eltherion/http4s-timer", + "repoUrl":"https://github.com/eltherion/http4s-timer.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"pl.datart%http4s-timer-core pl.datart%http4s-timer-newrelic", "config":{ "projects":{ "exclude":[ @@ -11025,7 +11229,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -11044,18 +11248,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.1.3\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "gchudnov/bscript":{ - "project":"gchudnov/bscript", - "repoUrl":"https://github.com/gchudnov/bscript.git", - "revision":"v1.3.5", - "version":"1.3.5", - "targets":"com.github.gchudnov%bscript-builder com.github.gchudnov%bscript-translator com.github.gchudnov%bscript-inspector com.github.gchudnov%bscript-serde com.github.gchudnov%bscript-interpreter com.github.gchudnov%bscript-rewriter com.github.gchudnov%bscript-b1 com.github.gchudnov%bscript-lang", + "embeddedkafka/embedded-kafka":{ + "project":"embeddedkafka/embedded-kafka", + "repoUrl":"https://github.com/embeddedkafka/embedded-kafka.git", + "revision":"v3.6.0", + "version":"3.6.0", + "targets":"io.github.embeddedkafka%embedded-kafka io.github.embeddedkafka%embedded-kafka-connect io.github.embeddedkafka%embedded-kafka-streams", "config":{ "projects":{ "exclude":[ @@ -11066,7 +11270,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -11083,16 +11287,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val Scala3 = \"3.3.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "gchudnov/mindthegap":{ - "project":"gchudnov/mindthegap", - "repoUrl":"https://github.com/gchudnov/mindthegap.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"com.github.gchudnov%mtg", + "embeddedkafka/embedded-kafka-schema-registry":{ + "project":"embeddedkafka/embedded-kafka-schema-registry", + "repoUrl":"https://github.com/embeddedkafka/embedded-kafka-schema-registry.git", + "revision":"v7.5.1", + "version":"7.5.1", + "targets":"io.github.embeddedkafka%embedded-kafka-schema-registry io.github.embeddedkafka%embedded-kafka-schema-registry-streams", "config":{ "projects":{ "exclude":[ @@ -11103,7 +11311,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -11120,16 +11328,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val Scala3 = \"3.3.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "gchudnov/swearwolf":{ - "project":"gchudnov/swearwolf", - "repoUrl":"https://github.com/gchudnov/swearwolf.git", - "revision":"v2.1.0", - "version":"2.1.0", - "targets":"com.github.gchudnov%swearwolf-term-zio com.github.gchudnov%swearwolf-rich com.github.gchudnov%swearwolf-util-zio com.github.gchudnov%swearwolf-term com.github.gchudnov%swearwolf-shapes-zio com.github.gchudnov%swearwolf-shapes com.github.gchudnov%swearwolf-util com.github.gchudnov%swearwolf-rich-zio", + "emergentorder/onnx-scala":{ + "project":"emergentorder/onnx-scala", + "repoUrl":"https://github.com/emergentorder/onnx-scala.git", + "revision":"v0.17.0", + "version":"0.17.0", + "targets":"org.emergent-order%onnx-scala org.emergent-order%onnx-scala-backends org.emergent-order%onnx-scala-common org.emergent-order%onnx-scala-proto", "config":{ "projects":{ "exclude":[ @@ -11140,11 +11352,11 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ - "disableFatalWarnings" + ], "options":[ @@ -11161,19 +11373,21 @@ ] } }, - "geirolz/advxml":{ - "project":"geirolz/advxml", - "repoUrl":"https://github.com/geirolz/advxml.git", - "revision":"v2.5.1", - "version":"2.5.1", - "targets":"com.github.geirolz%advxml-core com.github.geirolz%advxml-xpath", + "endpoints4s/endpoints4s":{ + "project":"endpoints4s/endpoints4s", + "repoUrl":"https://github.com/endpoints4s/endpoints4s.git", + "revision":"v1.10.0", + "version":"1.10.0", + "targets":"org.endpoints4s%json-schema-generic org.endpoints4s%algebra org.endpoints4s%algebra-json-schema org.endpoints4s%json-schema-playjson", "config":{ "projects":{ "exclude":[ ], "overrides":{ - + "http4s-server":{ + "tests":"disabled" + } } }, "java":{ @@ -11198,12 +11412,12 @@ ] } }, - "geirolz/cats-xml":{ - "project":"geirolz/cats-xml", - "repoUrl":"https://github.com/geirolz/cats-xml.git", - "revision":"v0.0.9", - "version":"0.0.9", - "targets":"com.github.geirolz%cats-xml-standard com.github.geirolz%cats-xml-effect com.github.geirolz%cats-xml-internal-utils com.github.geirolz%cats-xml-core com.github.geirolz%cats-xml-generic com.github.geirolz%cats-xml-xpath", + "enragedginger/akka-quartz-scheduler":{ + "project":"enragedginger/akka-quartz-scheduler", + "repoUrl":"https://github.com/enragedginger/akka-quartz-scheduler.git", + "revision":"release-1.9.3-akka-2.6.x", + "version":"1.9.3-akka-2.6.x", + "targets":"com.enragedginger%akka-quartz-scheduler", "config":{ "projects":{ "exclude":[ @@ -11214,7 +11428,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -11229,19 +11443,23 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3Version = \"3.1.3\"", + "replaceWith":"val Scala3Version = \"\"" + } ] } }, - "geirolz/erules":{ - "project":"geirolz/erules", - "repoUrl":"https://github.com/geirolz/erules.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.github.geirolz%erules-circe com.github.geirolz%erules-core com.github.geirolz%erules-cats-xml com.github.geirolz%erules-scalatest com.github.geirolz%erules-generic", - "config":{ + "enriquerodbe/borsh4s":{ + "project":"enriquerodbe/borsh4s", + "repoUrl":"https://github.com/enriquerodbe/borsh4s.git", + "revision":"v3.0.0", + "version":"3.0.0", + "targets":"io.github.enriquerodbe%borsh4s", + "config":{ "projects":{ "exclude":[ @@ -11251,11 +11469,12 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -11272,23 +11491,25 @@ ] } }, - "geirolz/fluent-copy":{ - "project":"geirolz/fluent-copy", - "repoUrl":"https://github.com/geirolz/fluent-copy.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"com.github.geirolz%fluent-copy", + "epfl-lara/lisa":{ + "project":"epfl-lara/lisa", + "repoUrl":"https://github.com/epfl-lara/lisa.git", + "revision":"", + "version":"HEAD", + "targets":"*%*", "config":{ "projects":{ "exclude":[ - + "scallion", + "scallion-examples", + "scallion-benchmarks" ], "overrides":{ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -11305,64 +11526,31 @@ }, "tests":"full", "sourcePatches":[ - - ] - } - }, - "geirolz/fly4s":{ - "project":"geirolz/fly4s", - "repoUrl":"https://github.com/geirolz/fly4s.git", - "revision":"v0.0.17", - "version":"0.0.17", - "targets":"com.github.geirolz%fly4s-core", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"compile-only", - "sourcePatches":[ - ] } }, - "geirolz/scope":{ - "project":"geirolz/scope", - "repoUrl":"https://github.com/geirolz/scope.git", - "revision":"v0.0.7", - "version":"0.0.7", - "targets":"com.github.geirolz%scope-core com.github.geirolz%scope-generic", + "erikerlandson/coulomb":{ + "project":"erikerlandson/coulomb", + "repoUrl":"https://github.com/erikerlandson/coulomb.git", + "revision":"v0.8.0", + "version":"0.8.0", + "targets":"com.manyangled%coulomb-parser com.manyangled%coulomb-units com.manyangled%coulomb-core com.manyangled%coulomb-docs com.manyangled%coulomb-pureconfig com.manyangled%coulomb-testkit com.manyangled%coulomb-runtime com.manyangled%coulomb-spire com.manyangled%coulomb-refined", "config":{ "projects":{ "exclude":[ - + "com.manyangled%coulomb-docs" ], "overrides":{ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -11377,18 +11565,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "geirolz/toolkit":{ - "project":"geirolz/toolkit", - "repoUrl":"https://github.com/geirolz/toolkit.git", - "revision":"v0.0.5", - "version":"0.0.5", - "targets":"com.github.geirolz%app-toolkit-config-pureconfig com.github.geirolz%app-toolkit-core com.github.geirolz%app-toolkit-odin com.github.geirolz%app-toolkit-log4cats com.github.geirolz%app-toolkit-config", + "erikvanoosten/metrics-scala":{ + "project":"erikvanoosten/metrics-scala", + "repoUrl":"https://github.com/erikvanoosten/metrics-scala.git", + "revision":"v4.2.9", + "version":"4.2.9", + "targets":"nl.grons%metrics4-scala nl.grons%metrics4-akka_a26 nl.grons%metrics4-scala-hdr", "config":{ "projects":{ "exclude":[ @@ -11399,7 +11587,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -11420,33 +11608,12 @@ ] } }, - "gekomad/itto-csv":{ - "project":"gekomad/itto-csv", - "repoUrl":"https://github.com/gekomad/itto-csv.git", - "revision":"fc82df4cfeed832dde1fd8f490dc234e974b6ed1", - "version":"2.0.0", - "targets":"com.github.gekomad%itto-csv" - }, - "gekomad/scala-compress":{ - "project":"gekomad/scala-compress", - "repoUrl":"https://github.com/gekomad/scala-compress.git", - "revision":"1.0.0", - "version":"1.0.0", - "targets":"com.github.gekomad%scala-compress" - }, - "gekomad/scala-regex-collection":{ - "project":"gekomad/scala-regex-collection", - "repoUrl":"https://github.com/gekomad/scala-regex-collection.git", - "revision":"2.0.0", - "version":"2.0.0", - "targets":"com.github.gekomad%scala-regex-collection" - }, - "gemini-hlsw/clue":{ - "project":"gemini-hlsw/clue", - "repoUrl":"https://github.com/gemini-hlsw/clue.git", - "revision":"v0.31.0", - "version":"0.31.0", - "targets":"edu.gemini%clue-core edu.gemini%clue-http4s edu.gemini%clue-model", + "errors4s/errors4s-core":{ + "project":"errors4s/errors4s-core", + "repoUrl":"https://github.com/errors4s/errors4s-core.git", + "revision":"v1.0.0.0", + "version":"1.0.0.0", + "targets":"org.errors4s%errors4s-core org.errors4s%errors4s-core-cats org.errors4s%errors4s-core-root org.errors4s%errors4s-core-scalacheck", "config":{ "projects":{ "exclude":[ @@ -11476,18 +11643,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val scala3 = \"3.0.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "gemini-hlsw/crystal":{ - "project":"gemini-hlsw/crystal", - "repoUrl":"https://github.com/gemini-hlsw/crystal.git", - "revision":"v0.33.12", - "version":"0.33.12", - "targets":"edu.gemini%crystal", + "errors4s/errors4s-core-cats":{ + "project":"errors4s/errors4s-core-cats", + "repoUrl":"https://github.com/errors4s/errors4s-core-cats.git", + "revision":"", + "version":"1.0.0.0-RC0", + "targets":"org.errors4s%errors4s-core-cats org.errors4s%errors4s-core-cats-root", "config":{ "projects":{ "exclude":[ @@ -11519,12 +11686,12 @@ ] } }, - "gemini-hlsw/lucuma-catalog":{ - "project":"gemini-hlsw/lucuma-catalog", - "repoUrl":"https://github.com/gemini-hlsw/lucuma-catalog.git", - "revision":"v0.40.5", - "version":"0.40.5", - "targets":"edu.gemini%lucuma-catalog edu.gemini%lucuma-ags edu.gemini%lucuma-catalog-testkit", + "errors4s/errors4s-core-scalacheck":{ + "project":"errors4s/errors4s-core-scalacheck", + "repoUrl":"https://github.com/errors4s/errors4s-core-scalacheck.git", + "revision":"", + "version":"1.0.0.0-RC0", + "targets":"org.errors4s%errors4s-core-scalacheck org.errors4s%errors4s-core-scalacheck-root", "config":{ "projects":{ "exclude":[ @@ -11556,12 +11723,12 @@ ] } }, - "gemini-hlsw/lucuma-core":{ - "project":"gemini-hlsw/lucuma-core", - "repoUrl":"https://github.com/gemini-hlsw/lucuma-core.git", - "revision":"v0.76.0", - "version":"0.76.0", - "targets":"edu.gemini%lucuma-core edu.gemini%lucuma-core-testkit", + "errors4s/errors4s-http":{ + "project":"errors4s/errors4s-http", + "repoUrl":"https://github.com/errors4s/errors4s-http.git", + "revision":"v3.0.0.0", + "version":"3.0.0.0", + "targets":"org.errors4s%errors4s-http4s-circe org.errors4s%errors4s-http org.errors4s%errors4s-http-root org.errors4s%errors4s-http4s org.errors4s%errors4s-http-circe", "config":{ "projects":{ "exclude":[ @@ -11593,27 +11760,47 @@ ] } }, - "gemini-hlsw/lucuma-graphql-routes":{ - "project":"gemini-hlsw/lucuma-graphql-routes", - "repoUrl":"https://github.com/gemini-hlsw/lucuma-graphql-routes.git", - "revision":"v0.6.4", - "version":"0.6.4", - "targets":"edu.gemini%lucuma-graphql-routes-core edu.gemini%lucuma-graphql-routes-grackle edu.gemini%lucuma-graphql-routes-sangria", + "estrondo/farango":{ + "project":"estrondo/farango", + "repoUrl":"https://github.com/estrondo/farango.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"one.estrondo%farango-ducktape one.estrondo%farango one.estrondo%farango-cats-effect one.estrondo%farango-zio" + }, + "estrondo/sweet-mockito":{ + "project":"estrondo/sweet-mockito", + "repoUrl":"https://github.com/estrondo/sweet-mockito.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"one.estrondo%sweet-mockito one.estrondo%sweet-mockito-root one.estrondo%sweet-mockito-zio" + }, + "etorreborre/specs2":{ + "project":"etorreborre/specs2", + "repoUrl":"https://github.com/etorreborre/specs2.git", + "revision":"SPECS2-5.3.2", + "version":"5.3.2", + "targets":"org.specs2%specs2-common org.specs2%specs2-examples org.specs2%specs2-xml org.specs2%specs2-matcher-extra org.specs2%specs2-markdown org.specs2%specs2-tests org.specs2%specs2-matcher org.specs2%specs2-html org.specs2%specs2-junit org.specs2%specs2-form org.specs2%specs2-scalacheck org.specs2%specs2-fp org.specs2%specs2-guide org.specs2%specs2-core", "config":{ "projects":{ "exclude":[ - + "specs2-guide", + "specs2-cats", + "specs2-scalaz", + "xml" ], "overrides":{ - + "specs2-form":{ + "tests":"compile-only" + } } }, "java":{ - "version":"17" + "version":"21" }, "sbt":{ "commands":[ - + "set core.jvm/Test/unmanagedSources/excludeFilter ~= { _ || \"TimeoutSpec.scala\" || \"ThrowablexSpec.scala\"}", + "set tests.jvm/Test/unmanagedSources/excludeFilter ~= { _ || \"FileMatchersSpec.scala\" || \"TerminationMatchersSpec.scala\"} " ], "options":[ @@ -11626,16 +11813,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.3.0\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "gemini-hlsw/lucuma-itc":{ - "project":"gemini-hlsw/lucuma-itc", - "repoUrl":"https://github.com/gemini-hlsw/lucuma-itc.git", - "revision":"v0.13.0", - "version":"0.13.0", - "targets":"edu.gemini%lucuma-itc-testkit edu.gemini%lucuma-itc-client edu.gemini%lucuma-itc edu.gemini%lucuma-itc-service", + "etspaceman/kinesis4cats":{ + "project":"etspaceman/kinesis4cats", + "repoUrl":"https://github.com/etspaceman/kinesis4cats.git", + "revision":"v0.0.25", + "version":"0.0.25", + "targets":"io.github.etspaceman%kinesis4cats-compat io.github.etspaceman%kinesis4cats-smithy4s-client-logging-circe io.github.etspaceman%kinesis4cats-smithy4s-client-localstack io.github.etspaceman%kinesis4cats-shared-circe io.github.etspaceman%kinesis4cats-kinesis-client io.github.etspaceman%kinesis4cats-feral io.github.etspaceman%kinesis4cats-kcl io.github.etspaceman%kinesis4cats-kpl io.github.etspaceman%kinesis4cats-aws-v2-localstack io.github.etspaceman%kinesis4cats-shared-localstack io.github.etspaceman%kinesis4cats-shared-ciris io.github.etspaceman%kinesis4cats-kcl-logging-circe io.github.etspaceman%kinesis4cats-kcl-ciris io.github.etspaceman%kinesis4cats-kcl-http4s io.github.etspaceman%kinesis4cats-kcl-localstack io.github.etspaceman%kinesis4cats-kinesis-client-logging-circe io.github.etspaceman%kinesis4cats-kpl-logging-circe io.github.etspaceman%kinesis4cats-smithy4s-client io.github.etspaceman%kinesis4cats-kpl-localstack io.github.etspaceman%kinesis4cats-aws-v1-localstack io.github.etspaceman%kinesis4cats-kinesis-client-localstack io.github.etspaceman%kinesis4cats-shared io.github.etspaceman%kinesis4cats-kpl-ciris", "config":{ "projects":{ "exclude":[ @@ -11663,16 +11854,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Kinesis4CatsPlugin.scala", + "pattern":"val Scala3 = \"3.3.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "gemini-hlsw/lucuma-jts":{ - "project":"gemini-hlsw/lucuma-jts", - "repoUrl":"https://github.com/gemini-hlsw/lucuma-jts.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"edu.gemini%lucuma-jts edu.gemini%lucuma-jts-awt", + "etspaceman/scalacheck-faker":{ + "project":"etspaceman/scalacheck-faker", + "repoUrl":"https://github.com/etspaceman/scalacheck-faker.git", + "revision":"v8.0.2", + "version":"8.0.2", + "targets":"io.github.etspaceman%scalacheck-faker", "config":{ "projects":{ "exclude":[ @@ -11700,16 +11895,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.3.0\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "gemini-hlsw/lucuma-refined":{ - "project":"gemini-hlsw/lucuma-refined", - "repoUrl":"https://github.com/gemini-hlsw/lucuma-refined.git", - "revision":"v0.1.1", - "version":"0.1.1", - "targets":"edu.gemini%lucuma-refined", + "eventstore/eventstore.akka.persistence":{ + "project":"eventstore/eventstore.akka.persistence", + "repoUrl":"https://github.com/eventstore/eventstore.akka.persistence.git", + "revision":"v8.0.0", + "version":"8.0.0", + "targets":"com.geteventstore%akka-persistence-eventstore", "config":{ "projects":{ "exclude":[ @@ -11720,7 +11919,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -11741,12 +11940,12 @@ ] } }, - "gemini-hlsw/lucuma-schemas":{ - "project":"gemini-hlsw/lucuma-schemas", - "repoUrl":"https://github.com/gemini-hlsw/lucuma-schemas.git", - "revision":"v0.52.1", - "version":"0.52.1", - "targets":"edu.gemini%lucuma-schemas edu.gemini%lucuma-schemas-model edu.gemini%lucuma-schemas-testkit", + "eventstore/eventstore.jvm":{ + "project":"eventstore/eventstore.jvm", + "repoUrl":"https://github.com/eventstore/eventstore.jvm.git", + "revision":"v8.0.0", + "version":"8.0.0", + "targets":"com.geteventstore%eventstore-client com.geteventstore%eventstore-client-core", "config":{ "projects":{ "exclude":[ @@ -11757,7 +11956,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -11778,12 +11977,12 @@ ] } }, - "gemini-hlsw/lucuma-sso":{ - "project":"gemini-hlsw/lucuma-sso", - "repoUrl":"https://github.com/gemini-hlsw/lucuma-sso.git", - "revision":"v0.5.10", - "version":"0.5.10", - "targets":"edu.gemini%lucuma-sso-backend-client edu.gemini%lucuma-sso-frontend-client", + "evolution-gaming/derivation":{ + "project":"evolution-gaming/derivation", + "repoUrl":"https://github.com/evolution-gaming/derivation.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"com.evolution%derivation-play-json com.evolution%derivation-core com.evolution%derivation-circe com.evolution%derivation-circe-compat213 com.evolution%derivation-tapir com.evolution%derivation-cats", "config":{ "projects":{ "exclude":[ @@ -11815,12 +12014,12 @@ ] } }, - "gemini-hlsw/refined-algebra":{ - "project":"gemini-hlsw/refined-algebra", - "repoUrl":"https://github.com/gemini-hlsw/refined-algebra.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"edu.gemini%refined-algebra", + "evolution-gaming/random":{ + "project":"evolution-gaming/random", + "repoUrl":"https://github.com/evolution-gaming/random.git", + "revision":"v1.0.4", + "version":"1.0.4", + "targets":"com.evolution%random", "config":{ "projects":{ "exclude":[ @@ -11852,12 +12051,12 @@ ] } }, - "getkyo/kyo":{ - "project":"getkyo/kyo", - "repoUrl":"https://github.com/getkyo/kyo.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"io.getkyo%kyo-core io.getkyo%kyo-chatgpt io.getkyo%kyo-zio io.getkyo%kyo-core-opt2 io.getkyo%kyo-bench io.getkyo%kyo-direct io.getkyo%kyo-core-opt3 io.getkyo%kyo-core-opt1 io.getkyo%kyo-sttp", + "evolution-gaming/scache":{ + "project":"evolution-gaming/scache", + "repoUrl":"https://github.com/evolution-gaming/scache.git", + "revision":"v5.1.2", + "version":"5.1.2", + "targets":"com.evolution%scache", "config":{ "projects":{ "exclude":[ @@ -11885,20 +12084,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "getshaka-org/native-converter":{ - "project":"getshaka-org/native-converter", - "repoUrl":"https://github.com/getshaka-org/native-converter.git", - "revision":"v0.8.0", - "version":"0.8.0", - "targets":"org.getshaka%native-converter", + "fabiopinheiro/scala-did":{ + "project":"fabiopinheiro/scala-did", + "repoUrl":"https://github.com/fabiopinheiro/scala-did.git", + "revision":"v0.1.0-M12", + "version":"0.1.0-M12", + "targets":"app.fmgp%did app.fmgp%did-imp app.fmgp%did-method-peer app.fmgp%multiformats", "config":{ "projects":{ "exclude":[ @@ -11909,7 +12104,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -11930,12 +12125,12 @@ ] } }, - "ghik/anodi":{ - "project":"ghik/anodi", - "repoUrl":"https://github.com/ghik/anodi.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.github.ghik%anodi com.github.ghik%anodi-macros", + "failurewall/failurewall":{ + "project":"failurewall/failurewall", + "repoUrl":"https://github.com/failurewall/failurewall.git", + "revision":"v0.5.0", + "version":"0.5.0", + "targets":"com.okumin%failurewall-akka com.okumin%failurewall-core", "config":{ "projects":{ "exclude":[ @@ -11946,7 +12141,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -11967,12 +12162,12 @@ ] } }, - "ghostdogpr/caliban":{ - "project":"ghostdogpr/caliban", - "repoUrl":"https://github.com/ghostdogpr/caliban.git", - "revision":"v2.2.1", - "version":"2.2.1", - "targets":"com.github.ghostdogpr%caliban-reporting com.github.ghostdogpr%caliban-monix com.github.ghostdogpr%caliban-tapir com.github.ghostdogpr%caliban-tools com.github.ghostdogpr%caliban-macros com.github.ghostdogpr%caliban-tracing com.github.ghostdogpr%caliban com.github.ghostdogpr%caliban-cats com.github.ghostdogpr%caliban-federation com.github.ghostdogpr%caliban-client com.github.ghostdogpr%caliban-http4s com.github.ghostdogpr%caliban-zio-http", + "fasterxml/jackson-module-scala":{ + "project":"fasterxml/jackson-module-scala", + "repoUrl":"https://github.com/fasterxml/jackson-module-scala.git", + "revision":"v2.15.3", + "version":"2.15.3", + "targets":"com.fasterxml.jackson.module%jackson-module-scala", "config":{ "projects":{ "exclude":[ @@ -11998,22 +12193,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "giabao/asm-flow":{ - "project":"giabao/asm-flow", - "repoUrl":"https://github.com/giabao/asm-flow.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.sandinh%asm-flow", + "fd4s/fs2-kafka":{ + "project":"fd4s/fs2-kafka", + "repoUrl":"https://github.com/fd4s/fs2-kafka.git", + "revision":"v3.2.0", + "version":"3.2.0", + "targets":"com.github.fd4s%fs2-kafka com.github.fd4s%fs2-kafka-vulcan com.github.fd4s%fs2-kafka-vulcan-testkit-munit", "config":{ "projects":{ "exclude":[ @@ -12024,11 +12215,11 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ - + "set core/Test/unmanagedSources/excludeFilter ~= {_ || \"KafkaProducerConnectionSpec.scala\" || \"KafkaConsumerSpec.scala\" || \"KafkaProducerSpec.scala\" || \"TransactionalKafkaProducerSpec.scala\" || \"TransactionalKafkaProducerTimeoutSpec.scala\" || \"KafkaAdminClientSpec.scala\"} " ], "options":[ @@ -12039,18 +12230,22 @@ ] }, - "tests":"disabled", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "giabao/paho-akka":{ - "project":"giabao/paho-akka", - "repoUrl":"https://github.com/giabao/paho-akka.git", - "revision":"v1.6.1", - "version":"1.6.1", - "targets":"com.sandinh%paho-akka", + "fd4s/vulcan":{ + "project":"fd4s/vulcan", + "repoUrl":"https://github.com/fd4s/vulcan.git", + "revision":"v1.9.0", + "version":"1.9.0", + "targets":"com.github.fd4s%vulcan com.github.fd4s%vulcan-generic com.github.fd4s%vulcan-refined", "config":{ "projects":{ "exclude":[ @@ -12061,7 +12256,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -12076,18 +12271,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "giiita/refuel":{ - "project":"giiita/refuel", - "repoUrl":"https://github.com/giiita/refuel.git", - "revision":"v2.0.2", - "version":"2.0.2", - "targets":"com.phylage%refuel-container-macro com.phylage%refuel-json-macro com.phylage%refuel-json com.phylage%refuel-container com.phylage%refuel-cipher com.phylage%refuel-util", + "fdietze/formidable":{ + "project":"fdietze/formidable", + "repoUrl":"https://github.com/fdietze/formidable.git", + "revision":"v0.1.5", + "version":"0.1.5", + "targets":"com.github.fdietze%formidable", "config":{ "projects":{ "exclude":[ @@ -12098,7 +12297,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -12113,18 +12312,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "gmethvin/directory-watcher":{ - "project":"gmethvin/directory-watcher", - "repoUrl":"https://github.com/gmethvin/directory-watcher.git", - "revision":"v0.18.0", - "version":"0.18.0", - "targets":"io.methvin%directory-watcher-better-files", + "fehu/opentracing-scala":{ + "project":"fehu/opentracing-scala", + "repoUrl":"https://github.com/fehu/opentracing-scala.git", + "revision":"0.7.0", + "version":"0.7.0", + "targets":"io.github.fehu%opentracing-scala-akka io.github.fehu%opentracing-scala-jaeger io.github.fehu%opentracing-scala-core io.github.fehu%opentracing-scala-fs2 io.github.fehu%opentracing-scala-noop", "config":{ "projects":{ "exclude":[ @@ -12135,7 +12334,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -12150,18 +12349,29 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.3\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "gnieh/diffson":{ - "project":"gnieh/diffson", - "repoUrl":"https://github.com/gnieh/diffson.git", - "revision":"v4.4.0", - "version":"4.4.0", - "targets":"org.gnieh%diffson-circe org.gnieh%diffson-core org.gnieh%diffson-play-json org.gnieh%diffson-testkit", + "fenixedu/fenixedu-scala-sdk":{ + "project":"fenixedu/fenixedu-scala-sdk", + "repoUrl":"https://github.com/fenixedu/fenixedu-scala-sdk.git", + "revision":"master", + "version":"0.5.0", + "targets":"org.fenixedu%fenixedu-scala-sdk" + }, + "fgrutsch/akka-persistence-mapdb":{ + "project":"fgrutsch/akka-persistence-mapdb", + "repoUrl":"https://github.com/fgrutsch/akka-persistence-mapdb.git", + "revision":"v0.3.2", + "version":"0.3.2", + "targets":"com.fgrutsch%akka-persistence-mapdb", "config":{ "projects":{ "exclude":[ @@ -12172,7 +12382,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -12189,20 +12399,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "gnieh/fs2-data":{ - "project":"gnieh/fs2-data", - "repoUrl":"https://github.com/gnieh/fs2-data.git", - "revision":"v1.7.1", - "version":"1.7.1", - "targets":"org.gnieh%fs2-data-json-diffson org.gnieh%fs2-data-json-play org.gnieh%fs2-data-csv org.gnieh%fs2-data-json-interpolators org.gnieh%fs2-data-xml org.gnieh%fs2-data-cbor-json org.gnieh%fs2-data-text org.gnieh%fs2-data-json org.gnieh%fs2-data-csv-generic org.gnieh%fs2-data-json-circe org.gnieh%fs2-data-xml-scala org.gnieh%fs2-data-cbor org.gnieh%fs2-data-finite-state", + "fgrutsch/emergence":{ + "project":"fgrutsch/emergence", + "repoUrl":"https://github.com/fgrutsch/emergence.git", + "revision":"v0.5.1", + "version":"0.5.1", + "targets":"com.fgrutsch.emergence%core", "config":{ "projects":{ "exclude":[ @@ -12230,20 +12436,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "gnieh/geo-scala":{ - "project":"gnieh/geo-scala", - "repoUrl":"https://github.com/gnieh/geo-scala.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"org.gnieh%geo-scala-circe org.gnieh%geo-scala-core org.gnieh%geo-scala-jsoniter-scala org.gnieh%geo-scala-polyline", + "fiatjaf/nlog":{ + "project":"fiatjaf/nlog", + "repoUrl":"https://github.com/fiatjaf/nlog.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.fiatjaf%nlog", "config":{ "projects":{ "exclude":[ @@ -12254,7 +12456,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -12271,20 +12473,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "gnp/zio-data-streams":{ - "project":"gnp/zio-data-streams", - "repoUrl":"https://github.com/gnp/zio-data-streams.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.gregorpurdy%zio-data-streams", + "fiatjaf/scoin":{ + "project":"fiatjaf/scoin", + "repoUrl":"https://github.com/fiatjaf/scoin.git", + "revision":"v0.7.0", + "version":"0.7.0", + "targets":"com.fiatjaf%scoin", "config":{ "projects":{ "exclude":[ @@ -12295,7 +12493,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -12312,20 +12510,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "gochaorg/json4s3":{ - "project":"gochaorg/json4s3", - "repoUrl":"https://github.com/gochaorg/json4s3.git", - "revision":"526fde20009a0e75d62aa7a2ffd1f02b0efa9ca8", - "version":"2.1.0", - "targets":"xyz.cofe%json4s3", + "filosganga/batcher":{ + "project":"filosganga/batcher", + "repoUrl":"https://github.com/filosganga/batcher.git", + "revision":"v0.0.8", + "version":"0.0.8", + "targets":"com.filippodeluca%batcher", "config":{ "projects":{ "exclude":[ @@ -12336,7 +12530,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -12353,20 +12547,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.0\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "gonzih/cats-nats":{ - "project":"gonzih/cats-nats", - "repoUrl":"https://github.com/gonzih/cats-nats.git", - "revision":"0.1.0", - "version":"0.1.0", - "targets":"io.github.gonzih%cats-nats", + "filosganga/jsonpath":{ + "project":"filosganga/jsonpath", + "repoUrl":"https://github.com/filosganga/jsonpath.git", + "revision":"v0.0.19", + "version":"0.0.19", + "targets":"com.filippodeluca%jsonpath-ast com.filippodeluca%jsonpath-circe com.filippodeluca%jsonpath-literal com.filippodeluca%jsonpath-parser", "config":{ "projects":{ "exclude":[ @@ -12377,7 +12567,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -12392,25 +12582,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "greenfossil/commons-i18n":{ - "project":"greenfossil/commons-i18n", - "repoUrl":"https://github.com/greenfossil/commons-i18n.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"com.greenfossil%commons-i18n" - }, - "greenfossil/commons-json":{ - "project":"greenfossil/commons-json", - "repoUrl":"https://github.com/greenfossil/commons-json.git", - "revision":"v1.0.2", - "version":"1.0.2", - "targets":"com.greenfossil%commons-json", + "findify/flink-adt":{ + "project":"findify/flink-adt", + "repoUrl":"https://github.com/WojciechMazur/flink-adt.git", + "revision":"fix/compilation-scala-3.3.x", + "version":"0.6.1", + "targets":"io.findify%flink-adt", "config":{ "projects":{ "exclude":[ @@ -12421,7 +12604,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -12436,18 +12619,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "greenfossil/data-mapping":{ - "project":"greenfossil/data-mapping", - "repoUrl":"https://github.com/greenfossil/data-mapping.git", - "revision":"v1.0.2", - "version":"1.0.2", - "targets":"com.greenfossil%data-mapping", + "findify/flink-scala-api":{ + "project":"findify/flink-scala-api", + "repoUrl":"https://github.com/flink-extended/flink-scala-api.git", + "revision":"master", + "version":"1.15-2", + "targets":"io.findify%flink-scala-api", "config":{ "projects":{ "exclude":[ @@ -12458,7 +12641,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -12473,22 +12656,25 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "greenfossil/thorium":{ - "project":"greenfossil/thorium", - "repoUrl":"https://github.com/greenfossil/thorium.git", - "revision":"v0.6.5", - "version":"0.6.5", - "targets":"com.greenfossil%thorium", + "fingo/spata":{ + "project":"fingo/spata", + "repoUrl":"https://github.com/fingo/spata.git", + "revision":"v3.1.0", + "version":"3.1.0", + "targets":"info.fingo%spata" + }, + "firstbirdtech/emergence":{ + "project":"firstbirdtech/emergence", + "repoUrl":"https://github.com/firstbirdtech/emergence.git", + "revision":"v0.3.9", + "version":"0.3.9", + "targets":"com.firstbird.emergence%core", "config":{ "projects":{ "exclude":[ @@ -12499,7 +12685,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -12514,22 +12700,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "greenfossil/typesafe-config-ext":{ - "project":"greenfossil/typesafe-config-ext", - "repoUrl":"https://github.com/greenfossil/typesafe-config-ext.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"com.greenfossil%typesafe-config-ext", + "flink-extended/flink-scala-api":{ + "project":"flink-extended/flink-scala-api", + "repoUrl":"https://github.com/flink-extended/flink-scala-api.git", + "revision":"v1.16.1.3", + "version":"1.16.1.3", + "targets":"org.flinkextended%flink-scala-api", "config":{ "projects":{ "exclude":[ @@ -12540,7 +12722,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -12557,20 +12739,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.0\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "greenleafoss/green-leaf-mongo":{ - "project":"greenleafoss/green-leaf-mongo", - "repoUrl":"https://github.com/greenleafoss/green-leaf-mongo.git", - "revision":"0.1.13", - "version":"0.1.13", - "targets":"io.github.greenleafoss%green-leaf-mongo", + "flyway/flyway-play":{ + "project":"flyway/flyway-play", + "repoUrl":"https://github.com/flyway/flyway-play.git", + "revision":"9.0.0", + "version":"9.0.0", + "targets":"org.flywaydb%flyway-play", "config":{ "projects":{ "exclude":[ @@ -12596,18 +12774,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "guardian/fastly-api-client":{ - "project":"guardian/fastly-api-client", - "repoUrl":"https://github.com/guardian/fastly-api-client.git", - "revision":"v0.5.0", - "version":"0.5.0", - "targets":"com.gu%fastly-api-client", + "fmonniot/scala3mock":{ + "project":"fmonniot/scala3mock", + "repoUrl":"https://github.com/fmonniot/scala3mock.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"eu.monniot%scala3mock eu.monniot%scala3mock-scalatest", "config":{ "projects":{ "exclude":[ @@ -12618,7 +12796,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -12633,18 +12811,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "guardian/pa-football-client":{ - "project":"guardian/pa-football-client", - "repoUrl":"https://github.com/guardian/pa-football-client.git", - "revision":"v7.0.7", - "version":"7.0.7", - "targets":"com.gu%pa-client", + "foldables-io/skunk-tables":{ + "project":"foldables-io/skunk-tables", + "repoUrl":"https://github.com/foldables-io/skunk-tables.git", + "revision":"v0.0.2", + "version":"0.0.2", + "targets":"io.foldables%skunk-tables", "config":{ "projects":{ "exclude":[ @@ -12672,31 +12850,27 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala_3: String = \"3.2.2\"", - "replaceWith":"val scala_3: String = \"\"" - } + ] } }, - "guidoschmidt17/zio-pgcopy":{ - "project":"guidoschmidt17/zio-pgcopy", - "repoUrl":"https://github.com/guidoschmidt17/zio-pgcopy.git", - "revision":"658f5c74c0c91803a62c81d5e5d0dd246453e1b4", - "version":"0.1.0-RC1", - "targets":"com.guidoschmidt17%zio-pgcopy" + "folone/poi.scala":{ + "project":"folone/poi.scala", + "repoUrl":"https://github.com/folone/poi.scala.git", + "revision":"v0.23", + "version":"0.23", + "targets":"info.folone%poi-scala" }, - "guymers/ceesvee":{ - "project":"guymers/ceesvee", - "repoUrl":"https://github.com/guymers/ceesvee.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"io.github.guymers%ceesvee-core io.github.guymers%ceesvee-fs2 io.github.guymers%ceesvee-zio", + "fomkin/korolev":{ + "project":"fomkin/korolev", + "repoUrl":"https://github.com/fomkin/korolev.git", + "revision":"v1.6.0-M1", + "version":"1.6.0", + "targets":"org.fomkin%korolev-web-dsl org.fomkin%korolev-zio2-streams org.fomkin%korolev-testkit org.fomkin%korolev-fs2-ce3 org.fomkin%korolev-ce3 org.fomkin%korolev-effect org.fomkin%korolev-zio-streams org.fomkin%korolev org.fomkin%korolev-web org.fomkin%korolev-zio2 org.fomkin%korolev-zio org.fomkin%korolev-ce2 org.fomkin%korolev-http org.fomkin%korolev-zio-http org.fomkin%korolev-bytes org.fomkin%korolev-akka org.fomkin%korolev-standalone org.fomkin%korolev-monix org.fomkin%korolev-pekko org.fomkin%korolev-scodec org.fomkin%korolev-slf4j org.fomkin%korolev-fs2-ce2", "config":{ "projects":{ "exclude":[ - + "org.fomkin%korolev-http4s" ], "overrides":{ @@ -12707,8 +12881,7 @@ }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -12723,18 +12896,39 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3Version = \"3.1.1\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "guymers/foobie":{ - "project":"guymers/foobie", - "repoUrl":"https://github.com/guymers/foobie.git", - "revision":"v0.14.3", - "version":"0.14.3", - "targets":"io.github.guymers%foobie-specs2 io.github.guymers%foobie-h2 io.github.guymers%zoobie io.github.guymers%foobie-weaver io.github.guymers%foobie-h2-circe io.github.guymers%foobie-refined io.github.guymers%foobie-postgres io.github.guymers%foobie-hikari io.github.guymers%foobie-postgres-circe io.github.guymers%foobie-mysql io.github.guymers%foobie-munit io.github.guymers%foobie-postgis io.github.guymers%foobie-scalatest io.github.guymers%foobie-free io.github.guymers%foobie-core", + "fomkin/levsha":{ + "project":"fomkin/levsha", + "repoUrl":"https://github.com/fomkin/levsha.git", + "revision":"v1.4.0-M2", + "version":"1.4.0-M2", + "targets":"com.github.fomkin%levsha-core com.github.fomkin%levsha-events" + }, + "fommil/jzon":{ + "project":"fommil/jzon", + "repoUrl":"https://github.com/fommil/jzon.git", + "revision":"v1.1.0", + "version":"1.1.0", + "targets":"com.fommil%jzon" + }, + "foundweekends/knockoff":{ + "project":"foundweekends/knockoff", + "repoUrl":"https://github.com/foundweekends/knockoff.git", + "revision":"v0.9.0", + "version":"0.9.0", + "targets":"org.foundweekends%knockoff" + }, + "foundweekends/pamflet":{ + "project":"foundweekends/pamflet", + "repoUrl":"https://github.com/foundweekends/pamflet.git", + "revision":"v0.12.0", + "version":"0.12.0", + "targets":"org.foundweekends%pamflet-app org.foundweekends%pamflet-knockoff org.foundweekends%pamflet-library", "config":{ "projects":{ "exclude":[ @@ -12749,8 +12943,7 @@ }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -12761,22 +12954,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "gvolpe/trading":{ - "project":"gvolpe/trading", - "repoUrl":"https://github.com/gvolpe/trading.git", - "revision":"5d710a63bf7aec36130d23b7353968cb8edf9522", - "version":"HEAD", - "targets":"*%*", + "frawa/inline-files":{ + "project":"frawa/inline-files", + "repoUrl":"https://github.com/frawa/inline-files.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"io.github.frawa%inline-files", "config":{ "projects":{ "exclude":[ @@ -12787,11 +12976,11 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ - "excludeLibraryDependency com.github.ghik:zerowaste_{scalaVersion}" + ], "options":[ @@ -12808,23 +12997,25 @@ ] } }, - "gzoller/deploysample":{ - "project":"gzoller/deploysample", - "repoUrl":"https://github.com/gzoller/deploysample.git", - "revision":"0.1.5", - "version":"0.1.5", - "targets":"co.blocke%ds_core co.blocke%ds_lib", + "frawa/typed-json":{ + "project":"frawa/typed-json", + "repoUrl":"https://github.com/frawa/typed-json.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.github.frawa%typed-json-parser io.github.frawa%typed-json-parser-jawn io.github.frawa%typed-json-macros io.github.frawa%typed-json-parser-zio io.github.frawa%typed-json", "config":{ "projects":{ "exclude":[ ], "overrides":{ - + "typed-json":{ + "tests":"disabled" + } } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -12845,12 +13036,68 @@ ] } }, - "gzoller/scalajack":{ - "project":"gzoller/scalajack", - "repoUrl":"https://github.com/gzoller/scalajack.git", - "revision":"7.0.3", - "version":"7.0.3", - "targets":"co.blocke%scalajack co.blocke%scalajack_dynamo co.blocke%scalajack_mongo", + "frugalmechanic/fm-common":{ + "project":"frugalmechanic/fm-common", + "repoUrl":"https://github.com/frugalmechanic/fm-common.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"com.frugalmechanic%fm-common" + }, + "frugalmechanic/fm-flatfile":{ + "project":"frugalmechanic/fm-flatfile", + "repoUrl":"https://github.com/frugalmechanic/fm-flatfile.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"com.frugalmechanic%fm-flatfile" + }, + "frugalmechanic/fm-html":{ + "project":"frugalmechanic/fm-html", + "repoUrl":"https://github.com/frugalmechanic/fm-html.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"com.frugalmechanic%fm-html" + }, + "frugalmechanic/fm-http":{ + "project":"frugalmechanic/fm-http", + "repoUrl":"https://github.com/frugalmechanic/fm-http.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"com.frugalmechanic%fm-http" + }, + "frugalmechanic/fm-json":{ + "project":"frugalmechanic/fm-json", + "repoUrl":"https://github.com/frugalmechanic/fm-json.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"com.frugalmechanic%fm-json" + }, + "frugalmechanic/fm-lazyseq":{ + "project":"frugalmechanic/fm-lazyseq", + "repoUrl":"https://github.com/frugalmechanic/fm-lazyseq.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"com.frugalmechanic%fm-lazyseq" + }, + "frugalmechanic/fm-serializer":{ + "project":"frugalmechanic/fm-serializer", + "repoUrl":"https://github.com/frugalmechanic/fm-serializer.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"com.frugalmechanic%fm-serializer" + }, + "frugalmechanic/fm-xml":{ + "project":"frugalmechanic/fm-xml", + "repoUrl":"https://github.com/frugalmechanic/fm-xml.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"com.frugalmechanic%fm-xml" + }, + "frugalmechanic/scala-optparse":{ + "project":"frugalmechanic/scala-optparse", + "repoUrl":"https://github.com/frugalmechanic/scala-optparse.git", + "revision":"v1.2.1", + "version":"1.2.1", + "targets":"com.frugalmechanic%scala-optparse", "config":{ "projects":{ "exclude":[ @@ -12865,7 +13112,7 @@ }, "sbt":{ "commands":[ - "set scalajack/Test/unmanagedSources/excludeFilter ~= { _ || \"AnyPrim.scala\" || \"Arrays.scala\" || \"AnyColl.scala\" }" + ], "options":[ @@ -12878,29 +13125,23 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "h8io/borscht":{ - "project":"h8io/borscht", - "repoUrl":"https://github.com/h8io/borscht.git", - "revision":"v1.2.11", - "version":"1.2.11", - "targets":"io.h8.borscht%borscht-template-st4 io.h8.borscht%borscht-jackson-toml io.h8.borscht%borscht-jackson io.h8.borscht%borscht-core io.h8.borscht%borscht-classic io.h8.borscht%borscht-jackson-yaml io.h8.borscht%borscht-template-core io.h8.borscht%borscht-template-apache-commons-text io.h8.borscht%borscht-typesafe", + "fs2-blobstore/fs2-blobstore":{ + "project":"fs2-blobstore/fs2-blobstore", + "repoUrl":"https://github.com/fs2-blobstore/fs2-blobstore.git", + "revision":"v0.9.12", + "version":"0.9.12", + "targets":"com.github.fs2-blobstore%s3 com.github.fs2-blobstore%gcs com.github.fs2-blobstore%url com.github.fs2-blobstore%azure com.github.fs2-blobstore%sftp com.github.fs2-blobstore%box com.github.fs2-blobstore%core", "config":{ "projects":{ "exclude":[ ], "overrides":{ - "template-apache-commons-text":{ - "tests":"compile-only" - } + } }, "java":{ @@ -12919,18 +13160,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "hagay3/skuber":{ - "project":"hagay3/skuber", - "repoUrl":"https://github.com/hagay3/skuber.git", - "revision":"v3.0.6", - "version":"3.0.6", - "targets":"io.github.hagay3%skuber io.github.hagay3%skuber-examples", + "fthomas/fs2-cron":{ + "project":"fthomas/fs2-cron", + "repoUrl":"https://github.com/fthomas/fs2-cron.git", + "revision":"v0.8.3", + "version":"0.8.3", + "targets":"eu.timepit%fs2-cron-calev eu.timepit%fs2-cron-core eu.timepit%fs2-cron-cron-utils", "config":{ "projects":{ "exclude":[ @@ -12960,18 +13201,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.0\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val Scala_3 = \"3.2.2\"", + "replaceWith":"val Scala_3 = \"\"" } ] } }, - "hamnis/dataclass-scalafix":{ - "project":"hamnis/dataclass-scalafix", - "repoUrl":"https://github.com/hamnis/dataclass-scalafix.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"net.hamnaberg%dataclass-annotation", + "fthomas/refined":{ + "project":"fthomas/refined", + "repoUrl":"https://github.com/fthomas/refined.git", + "revision":"v0.11.0", + "version":"0.11.0", + "targets":"eu.timepit%refined eu.timepit%refined-cats eu.timepit%refined-scalacheck eu.timepit%refined-scopt eu.timepit%refined-pureconfig eu.timepit%refined-jsonpath", "config":{ "projects":{ "exclude":[ @@ -13001,18 +13242,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.1.3\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val Scala_3 = \"3.3.0\"", + "replaceWith":"val Scala_3 = \"\"" } ] } }, - "hamnis/jsonschema":{ - "project":"hamnis/jsonschema", - "repoUrl":"https://github.com/hamnis/jsonschema.git", - "revision":"v0.3.0", - "version":"0.3.0", - "targets":"net.hamnaberg%openapi-schema-core", + "fthomas/status-page":{ + "project":"fthomas/status-page", + "repoUrl":"https://github.com/fthomas/status-page.git", + "revision":"v0.3.2", + "version":"0.3.2", + "targets":"eu.timepit%status-page-cats eu.timepit%status-page-core", "config":{ "projects":{ "exclude":[ @@ -13023,7 +13264,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -13040,23 +13281,27 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala_3 = \"3.2.2\"", + "replaceWith":"val Scala_3 = \"\"" + } ] } }, - "hamnis/jwk":{ - "project":"hamnis/jwk", - "repoUrl":"https://github.com/hamnis/jwk.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"net.hamnaberg.jwk%jwk-core net.hamnaberg.jwk%jwk-http4s net.hamnaberg.jwk%jwk-sttp3" + "funkode-io/web3-auth":{ + "project":"funkode-io/web3-auth", + "repoUrl":"https://github.com/funkode-io/web3-auth.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"io.funkode%web3-auth" }, - "hedgehogqa/scala-hedgehog":{ - "project":"hedgehogqa/scala-hedgehog", - "repoUrl":"https://github.com/hedgehogqa/scala-hedgehog.git", - "revision":"v0.10.1", - "version":"0.10.1", - "targets":"qa.hedgehog%hedgehog-minitest qa.hedgehog%hedgehog-core qa.hedgehog%hedgehog-munit qa.hedgehog%hedgehog-sbt qa.hedgehog%hedgehog-runner", + "gaeljw/typetrees":{ + "project":"gaeljw/typetrees", + "repoUrl":"https://github.com/gaeljw/typetrees.git", + "revision":"v0.5.0", + "version":"0.5.0", + "targets":"io.github.gaeljw%typetrees", "config":{ "projects":{ "exclude":[ @@ -13067,11 +13312,11 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ - "disableFatalWarnings" + ], "options":[ @@ -13084,16 +13329,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.0.0\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "herminiogg/dmaog":{ - "project":"herminiogg/dmaog", - "repoUrl":"https://github.com/herminiogg/dmaog.git", - "revision":"v0.1.4", - "version":"0.1.4", - "targets":"com.herminiogarcia%dmaog", + "gaelrenoux/tranzactio":{ + "project":"gaelrenoux/tranzactio", + "repoUrl":"https://github.com/gaelrenoux/tranzactio.git", + "revision":"v5.0.1", + "version":"5.0.1", + "targets":"io.github.gaelrenoux%tranzactio-anorm io.github.gaelrenoux%tranzactio-core io.github.gaelrenoux%tranzactio-doobie", "config":{ "projects":{ "exclude":[ @@ -13104,7 +13353,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -13119,18 +13368,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"project/BuildHelper.scala", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "herminiogg/label2thesaurus":{ - "project":"herminiogg/label2thesaurus", - "repoUrl":"https://github.com/herminiogg/label2thesaurus.git", - "revision":"v0.1.1", - "version":"0.1.1", - "targets":"com.herminiogarcia%label2thesaurus", + "gchudnov/bscript":{ + "project":"gchudnov/bscript", + "repoUrl":"https://github.com/gchudnov/bscript.git", + "revision":"v1.3.5", + "version":"1.3.5", + "targets":"com.github.gchudnov%bscript-builder com.github.gchudnov%bscript-translator com.github.gchudnov%bscript-inspector com.github.gchudnov%bscript-serde com.github.gchudnov%bscript-interpreter com.github.gchudnov%bscript-rewriter com.github.gchudnov%bscript-b1 com.github.gchudnov%bscript-lang", "config":{ "projects":{ "exclude":[ @@ -13141,7 +13394,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -13156,18 +13409,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "herminiogg/shexml":{ - "project":"herminiogg/shexml", - "repoUrl":"https://github.com/herminiogg/shexml.git", - "revision":"v0.3.2", - "version":"0.3.2", - "targets":"com.herminiogarcia%shexml", + "gchudnov/mindthegap":{ + "project":"gchudnov/mindthegap", + "repoUrl":"https://github.com/gchudnov/mindthegap.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"com.github.gchudnov%mtg", "config":{ "projects":{ "exclude":[ @@ -13178,7 +13431,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -13193,18 +13446,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "higherkindness/droste":{ - "project":"higherkindness/droste", - "repoUrl":"https://github.com/higherkindness/droste.git", - "revision":"v0.9.0", - "version":"0.9.0", - "targets":"io.higherkindness%droste io.higherkindness%droste-core io.higherkindness%droste-scalacheck io.higherkindness%droste-reftree io.higherkindness%droste-macros io.higherkindness%droste-meta io.higherkindness%droste-laws", + "gchudnov/swearwolf":{ + "project":"gchudnov/swearwolf", + "repoUrl":"https://github.com/gchudnov/swearwolf.git", + "revision":"v2.1.0", + "version":"2.1.0", + "targets":"com.github.gchudnov%swearwolf-term-zio com.github.gchudnov%swearwolf-rich com.github.gchudnov%swearwolf-util-zio com.github.gchudnov%swearwolf-term com.github.gchudnov%swearwolf-shapes-zio com.github.gchudnov%swearwolf-shapes com.github.gchudnov%swearwolf-util com.github.gchudnov%swearwolf-rich-zio", "config":{ "projects":{ "exclude":[ @@ -13236,12 +13489,12 @@ ] } }, - "higherkindness/mu-scala":{ - "project":"higherkindness/mu-scala", - "repoUrl":"https://github.com/higherkindness/mu-scala.git", - "revision":"v0.30.3", - "version":"0.30.3", - "targets":"io.higherkindness%mu-rpc-client-netty io.higherkindness%mu-rpc-server io.higherkindness%mu-rpc-dropwizard io.higherkindness%mu-rpc-prometheus io.higherkindness%mu-rpc-health-check io.higherkindness%mu-rpc-client-okhttp io.higherkindness%mu-rpc-client-cache io.higherkindness%mu-rpc-testing io.higherkindness%mu-rpc-service io.higherkindness%mu-rpc-netty-ssl io.higherkindness%mu-rpc-fs2", + "geirolz/advxml":{ + "project":"geirolz/advxml", + "repoUrl":"https://github.com/geirolz/advxml.git", + "revision":"v2.5.1", + "version":"2.5.1", + "targets":"com.github.geirolz%advxml-core com.github.geirolz%advxml-xpath", "config":{ "projects":{ "exclude":[ @@ -13269,20 +13522,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "hireproof/screening":{ - "project":"hireproof/screening", - "repoUrl":"https://github.com/hireproof/screening.git", - "revision":"0.0.17", - "version":"0.0.17", - "targets":"io.hireproof%screening io.hireproof%screening-core", + "geirolz/cats-xml":{ + "project":"geirolz/cats-xml", + "repoUrl":"https://github.com/geirolz/cats-xml.git", + "revision":"v0.0.14", + "version":"0.0.14", + "targets":"com.github.geirolz%cats-xml-standard com.github.geirolz%cats-xml-effect com.github.geirolz%cats-xml-internal-utils com.github.geirolz%cats-xml-core com.github.geirolz%cats-xml-generic com.github.geirolz%cats-xml-xpath", "config":{ "projects":{ "exclude":[ @@ -13293,7 +13542,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -13310,24 +13559,20 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.2\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "hnaderi/edomata":{ - "project":"hnaderi/edomata", - "repoUrl":"https://github.com/hnaderi/edomata.git", - "revision":"v0.10.1", - "version":"0.10.1", - "targets":"dev.hnaderi%edomata-munit dev.hnaderi%edomata-skunk-jsoniter dev.hnaderi%edomata-skunk-upickle dev.hnaderi%edomata-skunk dev.hnaderi%edomata-doobie dev.hnaderi%edomata-core dev.hnaderi%edomata-doobie-circe dev.hnaderi%edomata-postgres dev.hnaderi%edomata-docs dev.hnaderi%edomata-doobie-jsoniter dev.hnaderi%edomata-skunk-circe dev.hnaderi%edomata-backend dev.hnaderi%edomata-doobie-upickle", + "geirolz/erules":{ + "project":"geirolz/erules", + "repoUrl":"https://github.com/geirolz/erules.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.github.geirolz%erules-circe com.github.geirolz%erules-core com.github.geirolz%erules-cats-xml com.github.geirolz%erules-scalatest com.github.geirolz%erules-generic", "config":{ "projects":{ "exclude":[ - "edomata-docs" + ], "overrides":{ @@ -13349,22 +13594,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "hnaderi/lepus":{ - "project":"hnaderi/lepus", - "repoUrl":"https://github.com/hnaderi/lepus.git", - "revision":"v0.3.0", - "version":"0.3.0", - "targets":"dev.hnaderi%lepus-circe dev.hnaderi%lepus-client dev.hnaderi%lepus-protocol-testkit dev.hnaderi%lepus-docs dev.hnaderi%lepus-wire dev.hnaderi%lepus-std dev.hnaderi%lepus-protocol", + "geirolz/fluent-copy":{ + "project":"geirolz/fluent-copy", + "repoUrl":"https://github.com/geirolz/fluent-copy.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"com.github.geirolz%fluent-copy", "config":{ "projects":{ "exclude":[ @@ -13392,31 +13633,27 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "hnaderi/named-codec":{ - "project":"hnaderi/named-codec", - "repoUrl":"https://github.com/hnaderi/named-codec.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"dev.hnaderi%named-codec dev.hnaderi%named-codec-circe dev.hnaderi%named-codec-docs", + "geirolz/fly4s":{ + "project":"geirolz/fly4s", + "repoUrl":"https://github.com/geirolz/fly4s.git", + "revision":"v0.0.19", + "version":"0.0.19", + "targets":"com.github.geirolz%fly4s-core", "config":{ "projects":{ "exclude":[ - "named-codec-docs" + ], "overrides":{ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -13431,22 +13668,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "hnaderi/portainer-client":{ - "project":"hnaderi/portainer-client", - "repoUrl":"https://github.com/hnaderi/portainer-client.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"dev.hnaderi%portainer-client", + "geirolz/scope":{ + "project":"geirolz/scope", + "repoUrl":"https://github.com/geirolz/scope.git", + "revision":"v0.0.9", + "version":"0.0.9", + "targets":"com.github.geirolz%scope-core com.github.geirolz%scope-generic", "config":{ "projects":{ "exclude":[ @@ -13457,7 +13690,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -13472,22 +13705,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.0\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "hnaderi/scala-k8s":{ - "project":"hnaderi/scala-k8s", - "repoUrl":"https://github.com/hnaderi/scala-k8s.git", - "revision":"v0.12.0", - "version":"0.12.0", - "targets":"dev.hnaderi%scala-k8s-manifests dev.hnaderi%scala-k8s-java-ssl dev.hnaderi%scala-k8s-play-json dev.hnaderi%scala-k8s-objects dev.hnaderi%scala-k8s-docs dev.hnaderi%scala-k8s-zio dev.hnaderi%scala-k8s-scalacheck dev.hnaderi%scala-k8s-sttp dev.hnaderi%scala-k8s-http4s-jdk dev.hnaderi%scala-k8s-zio-json dev.hnaderi%scala-k8s-client dev.hnaderi%scala-k8s-spray-json dev.hnaderi%scala-k8s-json4s dev.hnaderi%scala-k8s-jawn dev.hnaderi%scala-k8s-circe dev.hnaderi%scala-k8s-http4s-ember dev.hnaderi%scala-k8s-http4s-netty dev.hnaderi%scala-k8s-http4s-blaze dev.hnaderi%scala-k8s-http4s", + "geirolz/toolkit":{ + "project":"geirolz/toolkit", + "repoUrl":"https://github.com/geirolz/toolkit.git", + "revision":"v0.0.11", + "version":"0.0.11", + "targets":"com.github.geirolz%toolkit-testing com.github.geirolz%toolkit-config com.github.geirolz%toolkit-log4cats com.github.geirolz%toolkit-odin com.github.geirolz%toolkit-pureconfig com.github.geirolz%toolkit com.github.geirolz%toolkit-fly4s", "config":{ "projects":{ "exclude":[ @@ -13515,20 +13744,37 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "hnaderi/scala-readpass":{ - "project":"hnaderi/scala-readpass", - "repoUrl":"https://github.com/hnaderi/scala-readpass.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"dev.hnaderi%readpassword", + "gekomad/itto-csv":{ + "project":"gekomad/itto-csv", + "repoUrl":"https://github.com/gekomad/itto-csv.git", + "revision":"", + "version":"2.0.0", + "targets":"com.github.gekomad%itto-csv" + }, + "gekomad/scala-compress":{ + "project":"gekomad/scala-compress", + "repoUrl":"https://github.com/gekomad/scala-compress.git", + "revision":"1.0.0", + "version":"1.0.0", + "targets":"com.github.gekomad%scala-compress" + }, + "gekomad/scala-regex-collection":{ + "project":"gekomad/scala-regex-collection", + "repoUrl":"https://github.com/gekomad/scala-regex-collection.git", + "revision":"2.0.0", + "version":"2.0.0", + "targets":"com.github.gekomad%scala-regex-collection" + }, + "gemini-hlsw/clue":{ + "project":"gemini-hlsw/clue", + "repoUrl":"https://github.com/gemini-hlsw/clue.git", + "revision":"v0.34.0", + "version":"0.34.0", + "targets":"edu.gemini%clue-core edu.gemini%clue-http4s edu.gemini%clue-model", "config":{ "projects":{ "exclude":[ @@ -13539,7 +13785,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -13556,16 +13802,20 @@ }, "tests":"full", "sourcePatches":[ - - ] - } - }, - "hnaderi/yaml4s":{ - "project":"hnaderi/yaml4s", - "repoUrl":"https://github.com/hnaderi/yaml4s.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"dev.hnaderi%yaml4s-backend dev.hnaderi%yaml4s-zio-json dev.hnaderi%yaml4s-json4s dev.hnaderi%yaml4s-spray-json dev.hnaderi%yaml4s-snake dev.hnaderi%yaml4s-docs dev.hnaderi%yaml4s-core dev.hnaderi%yaml4s-circe dev.hnaderi%yaml4s-play-json", + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.3.1\"", + "replaceWith":"val scala3Version = \"\"" + } + ] + } + }, + "gemini-hlsw/crystal":{ + "project":"gemini-hlsw/crystal", + "repoUrl":"https://github.com/gemini-hlsw/crystal.git", + "revision":"v0.35.1", + "version":"0.35.1", + "targets":"edu.gemini%crystal", "config":{ "projects":{ "exclude":[ @@ -13576,7 +13826,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -13593,20 +13843,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "hsci-r/lucene-perfieldpostingsformatordtermvectorscodec":{ - "project":"hsci-r/lucene-perfieldpostingsformatordtermvectorscodec", - "repoUrl":"https://github.com/hsci-r/lucene-perfieldpostingsformatordtermvectorscodec.git", - "revision":"765becc92b139a0e648e3ed85a2bca0f33ec9ad0", - "version":"1.2.11", - "targets":"io.github.hsci-r%lucene-perfieldpostingsformatordtermvectorscodec", + "gemini-hlsw/giapi-scala":{ + "project":"gemini-hlsw/giapi-scala", + "repoUrl":"https://github.com/gemini-hlsw/giapi-scala.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"edu.gemini%giapi", "config":{ "projects":{ "exclude":[ @@ -13617,7 +13863,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -13632,25 +13878,18 @@ ] }, - "tests":"disabled", + "tests":"full", "sourcePatches":[ ] } }, - "hsci-r/octavo-indexer":{ - "project":"hsci-r/octavo-indexer", - "repoUrl":"https://github.com/hsci-r/octavo-indexer.git", - "revision":"78a33d9cfbda8ddce0fee91a9b2f57332b204505", - "version":"1.2.7", - "targets":"io.github.hsci-r%octavo-indexer" - }, - "hseeberger/slf4s":{ - "project":"hseeberger/slf4s", - "repoUrl":"https://github.com/hseeberger/slf4s.git", - "revision":"v0.3.0", - "version":"0.3.0", - "targets":"rocks.heikoseeberger%slf4s", + "gemini-hlsw/lucuma-catalog":{ + "project":"gemini-hlsw/lucuma-catalog", + "repoUrl":"https://github.com/gemini-hlsw/lucuma-catalog.git", + "revision":"v0.44.1", + "version":"0.44.1", + "targets":"edu.gemini%lucuma-catalog edu.gemini%lucuma-ags edu.gemini%lucuma-catalog-testkit", "config":{ "projects":{ "exclude":[ @@ -13661,7 +13900,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -13682,12 +13921,12 @@ ] } }, - "http4s/blaze":{ - "project":"http4s/blaze", - "repoUrl":"https://github.com/http4s/blaze.git", - "revision":"v0.23.15", - "version":"0.23.15", - "targets":"org.http4s%http4s-blaze-client org.http4s%http4s-blaze-server org.http4s%blaze-http org.http4s%blaze-core org.http4s%http4s-blaze-core", + "gemini-hlsw/lucuma-core":{ + "project":"gemini-hlsw/lucuma-core", + "repoUrl":"https://github.com/gemini-hlsw/lucuma-core.git", + "revision":"v0.88.0", + "version":"0.88.0", + "targets":"edu.gemini%lucuma-core edu.gemini%lucuma-core-testkit", "config":{ "projects":{ "exclude":[ @@ -13713,22 +13952,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "http4s/hpack":{ - "project":"http4s/hpack", - "repoUrl":"https://github.com/http4s/hpack.git", - "revision":"531e1e25cb4e85459675be165ec8c88453401ab3", - "version":"1.0.1-56-fcf3848", - "targets":"com.armanbilge%hpack", + "gemini-hlsw/lucuma-graphql-routes":{ + "project":"gemini-hlsw/lucuma-graphql-routes", + "repoUrl":"https://github.com/gemini-hlsw/lucuma-graphql-routes.git", + "revision":"v0.8.0", + "version":"0.8.0", + "targets":"edu.gemini%lucuma-graphql-routes", "config":{ "projects":{ "exclude":[ @@ -13739,7 +13974,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -13760,12 +13995,12 @@ ] } }, - "http4s/http4s":{ - "project":"http4s/http4s", - "repoUrl":"https://github.com/http4s/http4s.git", - "revision":"v0.23.19", - "version":"0.23.19", - "targets":"org.http4s%http4s-client-testkit org.http4s%http4s-server org.http4s%http4s-dsl org.http4s%http4s-laws org.http4s%http4s-ember-client org.http4s%http4s-client org.http4s%http4s-jawn org.http4s%http4s-circe org.http4s%http4s-docs org.http4s%http4s-scalafix-internal org.http4s%http4s-ember-server org.http4s%http4s-ember-core org.http4s%http4s-core", + "gemini-hlsw/lucuma-itc":{ + "project":"gemini-hlsw/lucuma-itc", + "repoUrl":"https://github.com/gemini-hlsw/lucuma-itc.git", + "revision":"v0.20.3", + "version":"0.20.3", + "targets":"edu.gemini%lucuma-itc-testkit edu.gemini%lucuma-itc-client edu.gemini%lucuma-itc edu.gemini%lucuma-itc-service", "config":{ "projects":{ "exclude":[ @@ -13780,7 +14015,7 @@ }, "sbt":{ "commands":[ - "set every unidoc/unidocAllSources := Nil" + ], "options":[ @@ -13793,20 +14028,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Http4sPlugin.scala", - "pattern":"val scala_3 = \"3.2.2\"", - "replaceWith":"val scala_3 = \"\"" - } + ] } }, - "http4s/http4s-armeria":{ - "project":"http4s/http4s-armeria", - "repoUrl":"https://github.com/http4s/http4s-armeria.git", - "revision":"v1.0.0-M2", - "version":"1.0.0-M2", - "targets":"org.http4s%http4s-armeria-client org.http4s%http4s-armeria-server", + "gemini-hlsw/lucuma-jts":{ + "project":"gemini-hlsw/lucuma-jts", + "repoUrl":"https://github.com/gemini-hlsw/lucuma-jts.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"edu.gemini%lucuma-jts edu.gemini%lucuma-jts-awt", "config":{ "projects":{ "exclude":[ @@ -13838,12 +14069,12 @@ ] } }, - "http4s/http4s-crypto":{ - "project":"http4s/http4s-crypto", - "repoUrl":"https://github.com/http4s/http4s-crypto.git", - "revision":"v0.2.4", - "version":"0.2.4", - "targets":"org.http4s%http4s-crypto", + "gemini-hlsw/lucuma-odb":{ + "project":"gemini-hlsw/lucuma-odb", + "repoUrl":"https://github.com/gemini-hlsw/lucuma-odb.git", + "revision":"v0.7.0", + "version":"0.7.0", + "targets":"edu.gemini%lucuma-odb edu.gemini%lucuma-odb-schema", "config":{ "projects":{ "exclude":[ @@ -13875,12 +14106,12 @@ ] } }, - "http4s/http4s-fabric":{ - "project":"http4s/http4s-fabric", - "repoUrl":"https://github.com/http4s/http4s-fabric.git", - "revision":"v1.0.0-M32", - "version":"1.0.0-M32", - "targets":"org.http4s%http4s-fabric", + "gemini-hlsw/lucuma-refined":{ + "project":"gemini-hlsw/lucuma-refined", + "repoUrl":"https://github.com/gemini-hlsw/lucuma-refined.git", + "revision":"v0.1.2", + "version":"0.1.2", + "targets":"edu.gemini%lucuma-refined", "config":{ "projects":{ "exclude":[ @@ -13908,27 +14139,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "http4s/http4s-finagle":{ - "project":"http4s/http4s-finagle", - "repoUrl":"https://github.com/http4s/http4s-finagle.git", - "revision":"v0.21.31-21.12.0", - "version":"0.21.31-21.12.0", - "targets":"org.http4s%http4s-finagle" - }, - "http4s/http4s-fs2-data":{ - "project":"http4s/http4s-fs2-data", - "repoUrl":"https://github.com/http4s/http4s-fs2-data.git", - "revision":"v1.0.0-M39", - "version":"1.0.0-M39", - "targets":"org.http4s%http4s-fs2-data-xml org.http4s%http4s-fs2-data-xml-scala", + "gemini-hlsw/lucuma-schemas":{ + "project":"gemini-hlsw/lucuma-schemas", + "repoUrl":"https://github.com/gemini-hlsw/lucuma-schemas.git", + "revision":"v0.63.0", + "version":"0.63.0", + "targets":"edu.gemini%lucuma-schemas edu.gemini%lucuma-schemas-model edu.gemini%lucuma-schemas-testkit", "config":{ "projects":{ "exclude":[ @@ -13960,12 +14180,12 @@ ] } }, - "http4s/http4s-jdk-http-client":{ - "project":"http4s/http4s-jdk-http-client", - "repoUrl":"https://github.com/http4s/http4s-jdk-http-client.git", - "revision":"v0.9.1", - "version":"0.9.1", - "targets":"org.http4s%http4s-jdk-http-client", + "gemini-hlsw/lucuma-sso":{ + "project":"gemini-hlsw/lucuma-sso", + "repoUrl":"https://github.com/gemini-hlsw/lucuma-sso.git", + "revision":"v0.6.8", + "version":"0.6.8", + "targets":"edu.gemini%lucuma-sso-backend-client edu.gemini%lucuma-sso-frontend-client", "config":{ "projects":{ "exclude":[ @@ -13997,12 +14217,12 @@ ] } }, - "http4s/http4s-jetty":{ - "project":"http4s/http4s-jetty", - "repoUrl":"https://github.com/http4s/http4s-jetty.git", - "revision":"v0.25.0-M1", - "version":"0.25.0-M1", - "targets":"org.http4s%http4s-jetty-client org.http4s%http4s-jetty-server", + "gemini-hlsw/refined-algebra":{ + "project":"gemini-hlsw/refined-algebra", + "repoUrl":"https://github.com/gemini-hlsw/refined-algebra.git", + "revision":"v0.1.1", + "version":"0.1.1", + "targets":"edu.gemini%refined-algebra", "config":{ "projects":{ "exclude":[ @@ -14034,12 +14254,12 @@ ] } }, - "http4s/http4s-netty":{ - "project":"http4s/http4s-netty", - "repoUrl":"https://github.com/http4s/http4s-netty.git", - "revision":"v0.5.7", - "version":"0.5.7", - "targets":"org.http4s%http4s-netty-client org.http4s%http4s-netty-core org.http4s%http4s-netty-server", + "getkyo/kyo":{ + "project":"getkyo/kyo", + "repoUrl":"https://github.com/getkyo/kyo.git", + "revision":"v0.6.6", + "version":"0.6.6", + "targets":"io.getkyo%kyo-core io.getkyo%kyo-chatgpt io.getkyo%kyo-bench io.getkyo%kyo-direct io.getkyo%kyo-core-opt io.getkyo%readme io.getkyo%kyo-stats-otel io.getkyo%kyo-sttp io.getkyo%kyo-tapir", "config":{ "projects":{ "exclude":[ @@ -14067,16 +14287,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.3.1\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "http4s/http4s-prometheus-metrics":{ - "project":"http4s/http4s-prometheus-metrics", - "repoUrl":"https://github.com/http4s/http4s-prometheus-metrics.git", - "revision":"v1.0.0-M38", - "version":"1.0.0-M38", - "targets":"org.http4s%http4s-prometheus-metrics", + "getshaka-org/native-converter":{ + "project":"getshaka-org/native-converter", + "repoUrl":"https://github.com/getshaka-org/native-converter.git", + "revision":"v0.9.0", + "version":"0.9.0", + "targets":"org.getshaka%native-converter", "config":{ "projects":{ "exclude":[ @@ -14108,12 +14332,12 @@ ] } }, - "http4s/http4s-scala-xml":{ - "project":"http4s/http4s-scala-xml", - "repoUrl":"https://github.com/http4s/http4s-scala-xml.git", - "revision":"v1.0.0-M38", - "version":"1.0.0-M38", - "targets":"org.http4s%http4s-scala-xml", + "ghik/anodi":{ + "project":"ghik/anodi", + "repoUrl":"https://github.com/ghik/anodi.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.github.ghik%anodi com.github.ghik%anodi-macros", "config":{ "projects":{ "exclude":[ @@ -14145,12 +14369,12 @@ ] } }, - "http4s/http4s-scalatags":{ - "project":"http4s/http4s-scalatags", - "repoUrl":"https://github.com/http4s/http4s-scalatags.git", - "revision":"v1.0.0-M38", - "version":"1.0.0-M38", - "targets":"org.http4s%http4s-scalatags", + "ghostdogpr/caliban":{ + "project":"ghostdogpr/caliban", + "repoUrl":"https://github.com/ghostdogpr/caliban.git", + "revision":"v2.4.1", + "version":"2.4.1", + "targets":"com.github.ghostdogpr%caliban-reporting com.github.ghostdogpr%caliban-monix com.github.ghostdogpr%caliban-tapir com.github.ghostdogpr%caliban-tools com.github.ghostdogpr%caliban-pekko-http com.github.ghostdogpr%caliban-macros com.github.ghostdogpr%caliban-tracing com.github.ghostdogpr%caliban com.github.ghostdogpr%caliban-cats com.github.ghostdogpr%caliban-federation com.github.ghostdogpr%caliban-client com.github.ghostdogpr%caliban-http4s com.github.ghostdogpr%caliban-zio-http", "config":{ "projects":{ "exclude":[ @@ -14178,16 +14402,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "http4s/http4s-servlet":{ - "project":"http4s/http4s-servlet", - "repoUrl":"https://github.com/http4s/http4s-servlet.git", - "revision":"v1.0.0-M38", - "version":"1.0.0-M38", - "targets":"org.http4s%http4s-servlet", + "giabao/asm-flow":{ + "project":"giabao/asm-flow", + "repoUrl":"https://github.com/giabao/asm-flow.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.sandinh%asm-flow", "config":{ "projects":{ "exclude":[ @@ -14198,7 +14426,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -14213,18 +14441,18 @@ ] }, - "tests":"full", + "tests":"disabled", "sourcePatches":[ ] } }, - "http4s/http4s-tomcat":{ - "project":"http4s/http4s-tomcat", - "repoUrl":"https://github.com/http4s/http4s-tomcat.git", - "revision":"v0.25.0-M1", - "version":"0.25.0-M1", - "targets":"org.http4s%http4s-tomcat-server", + "giabao/paho-akka":{ + "project":"giabao/paho-akka", + "repoUrl":"https://github.com/giabao/paho-akka.git", + "revision":"v1.6.1", + "version":"1.6.1", + "targets":"com.sandinh%paho-akka", "config":{ "projects":{ "exclude":[ @@ -14256,12 +14484,49 @@ ] } }, - "http4s/http4s-twirl":{ - "project":"http4s/http4s-twirl", - "repoUrl":"https://github.com/http4s/http4s-twirl.git", - "revision":"v1.0.0-M38", - "version":"1.0.0-M38", - "targets":"org.http4s%http4s-twirl", + "giiita/refuel":{ + "project":"giiita/refuel", + "repoUrl":"https://github.com/giiita/refuel.git", + "revision":"v2.1.0", + "version":"2.1.0", + "targets":"com.phylage%refuel-container-macro com.phylage%refuel-json-macro com.phylage%refuel-json com.phylage%refuel-container com.phylage%refuel-cipher com.phylage%refuel-util", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"compile-only", + "sourcePatches":[ + + ] + } + }, + "gitbucket/blocking-slick":{ + "project":"gitbucket/blocking-slick", + "repoUrl":"https://github.com/gitbucket/blocking-slick.git", + "revision":"0.0.14", + "version":"0.0.14", + "targets":"com.github.takezoe%blocking-slick", "config":{ "projects":{ "exclude":[ @@ -14293,12 +14558,12 @@ ] } }, - "hughsimpson/scalameter":{ - "project":"hughsimpson/scalameter", - "repoUrl":"https://github.com/hughsimpson/scalameter.git", - "revision":"v0.22.1", - "version":"0.22.1", - "targets":"io.github.hughsimpson%scalameter io.github.hughsimpson%scalameter-core", + "gmethvin/directory-watcher":{ + "project":"gmethvin/directory-watcher", + "repoUrl":"https://github.com/gmethvin/directory-watcher.git", + "revision":"v0.18.0", + "version":"0.18.0", + "targets":"io.methvin%directory-watcher-better-files", "config":{ "projects":{ "exclude":[ @@ -14309,7 +14574,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -14330,12 +14595,12 @@ ] } }, - "i10416/cssminifier":{ - "project":"i10416/cssminifier", - "repoUrl":"https://github.com/i10416/cssminifier.git", - "revision":"v0.0.3", - "version":"0.0.3", - "targets":"dev.i10416%cssminifier", + "gnieh/diffson":{ + "project":"gnieh/diffson", + "repoUrl":"https://github.com/gnieh/diffson.git", + "revision":"v4.4.0", + "version":"4.4.0", + "targets":"org.gnieh%diffson-circe org.gnieh%diffson-core org.gnieh%diffson-play-json org.gnieh%diffson-testkit", "config":{ "projects":{ "exclude":[ @@ -14346,7 +14611,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -14365,18 +14630,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.1.2\"", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "i10416/munkres":{ - "project":"i10416/munkres", - "repoUrl":"https://github.com/i10416/munkres.git", - "revision":"v0.0.4", - "version":"0.0.4", - "targets":"dev.i10416%munkres", + "gnieh/fs2-data":{ + "project":"gnieh/fs2-data", + "repoUrl":"https://github.com/gnieh/fs2-data.git", + "revision":"v1.9.1", + "version":"1.9.1", + "targets":"org.gnieh%fs2-data-json-diffson org.gnieh%fs2-data-json-play org.gnieh%fs2-data-csv org.gnieh%fs2-data-json-interpolators org.gnieh%fs2-data-xml org.gnieh%fs2-data-docs org.gnieh%fs2-data-cbor-json org.gnieh%fs2-data-text org.gnieh%fs2-data-json org.gnieh%fs2-data-csv-generic org.gnieh%fs2-data-json-circe org.gnieh%fs2-data-xml-scala org.gnieh%fs2-data-cbor org.gnieh%fs2-data-finite-state", "config":{ "projects":{ "exclude":[ @@ -14387,7 +14652,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -14406,25 +14671,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.1.2\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "ichoran/kse3":{ - "project":"ichoran/kse3", - "repoUrl":"https://github.com/ichoran/kse3.git", - "revision":"59d8ffa365166bc3c815f185b6502df7a24867cc", - "version":"0.1.4", - "targets":"com.github.ichoran%kse3-eio com.github.ichoran%kse3-flow com.github.ichoran%kse3-maths com.github.ichoran%kse3-testing" - }, - "iheartradio/ficus":{ - "project":"iheartradio/ficus", - "repoUrl":"https://github.com/iheartradio/ficus.git", - "revision":"v1.5.2", - "version":"1.5.2", - "targets":"com.iheart%ficus", + "gnieh/geo-scala":{ + "project":"gnieh/geo-scala", + "repoUrl":"https://github.com/gnieh/geo-scala.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"org.gnieh%geo-scala-circe org.gnieh%geo-scala-core org.gnieh%geo-scala-jsoniter-scala org.gnieh%geo-scala-polyline", "config":{ "projects":{ "exclude":[ @@ -14435,7 +14693,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -14454,18 +14712,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"def Scala3 = \"3.1.1\"", - "replaceWith":"def Scala3 = \"\"" + "pattern":"val scala3 = \"3.2.0\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "ij-plugins/ijp-color":{ - "project":"ij-plugins/ijp-color", - "repoUrl":"https://github.com/ij-plugins/ijp-color.git", - "revision":"v.0.12.2", - "version":"0.12.2", - "targets":"net.sf.ij-plugins%ijp-color net.sf.ij-plugins%ijp-color-ui", + "gnp/ident":{ + "project":"gnp/ident", + "repoUrl":"https://github.com/gnp/ident.git", + "revision":"v0.3.0", + "version":"0.3.0", + "targets":"com.gregorpurdy%ident-circe com.gregorpurdy%ident-zio-config com.gregorpurdy%ident-zio-json com.gregorpurdy%ident-zio-schema com.gregorpurdy%ident", "config":{ "projects":{ "exclude":[ @@ -14476,7 +14734,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -14491,22 +14749,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0-RC3\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val Scala3Version = \"3.3.0\"", + "replaceWith":"val Scala3Version = \"\"" } ] } }, - "ij-plugins/ijp-debayer2sx":{ - "project":"ij-plugins/ijp-debayer2sx", - "repoUrl":"https://github.com/ij-plugins/ijp-debayer2sx.git", - "revision":"v.1.3.4", - "version":"1.3.4", - "targets":"net.sf.ij-plugins%ijp-debayer2sx-core net.sf.ij-plugins%ijp-debayer2sx-plugins", + "gnp/zio-data-streams":{ + "project":"gnp/zio-data-streams", + "repoUrl":"https://github.com/gnp/zio-data-streams.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.gregorpurdy%zio-data-streams", "config":{ "projects":{ "exclude":[ @@ -14517,7 +14775,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -14534,16 +14792,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "ij-plugins/ijp-javacv":{ - "project":"ij-plugins/ijp-javacv", - "repoUrl":"https://github.com/ij-plugins/ijp-javacv.git", - "revision":"v.0.5.0", - "version":"0.5.0", - "targets":"net.sf.ij-plugins%ijp-javacv-core net.sf.ij-plugins%ijp-javacv-plugins", + "gochaorg/json4s3":{ + "project":"gochaorg/json4s3", + "repoUrl":"https://github.com/gochaorg/json4s3.git", + "revision":"", + "version":"2.1.0", + "targets":"xyz.cofe%json4s3", "config":{ "projects":{ "exclude":[ @@ -14554,7 +14816,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -14569,18 +14831,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.2.0\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "ij-plugins/ijp-scala-console":{ - "project":"ij-plugins/ijp-scala-console", - "repoUrl":"https://github.com/ij-plugins/ijp-scala-console.git", - "revision":"v.1.8.0", - "version":"1.8.0", - "targets":"net.sf.ij-plugins%scala-console net.sf.ij-plugins%scala-console-plugins", + "gonzih/cats-nats":{ + "project":"gonzih/cats-nats", + "repoUrl":"https://github.com/gonzih/cats-nats.git", + "revision":"0.1.0", + "version":"0.1.0", + "targets":"io.github.gonzih%cats-nats", "config":{ "projects":{ "exclude":[ @@ -14591,7 +14857,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -14606,18 +14872,25 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "ij-plugins/ijp-toolkit":{ - "project":"ij-plugins/ijp-toolkit", - "repoUrl":"https://github.com/ij-plugins/ijp-toolkit.git", - "revision":"v.2.3.1", - "version":"2.3.1", - "targets":"net.sf.ij-plugins%ijp-toolkit", + "greenfossil/commons-i18n":{ + "project":"greenfossil/commons-i18n", + "repoUrl":"https://github.com/greenfossil/commons-i18n.git", + "revision":"v1.0.2", + "version":"1.0.2", + "targets":"com.greenfossil%commons-i18n" + }, + "greenfossil/commons-json":{ + "project":"greenfossil/commons-json", + "repoUrl":"https://github.com/greenfossil/commons-json.git", + "revision":"v1.0.5", + "version":"1.0.5", + "targets":"com.greenfossil%commons-json", "config":{ "projects":{ "exclude":[ @@ -14649,12 +14922,12 @@ ] } }, - "imaxmelnyk/openai-scala":{ - "project":"imaxmelnyk/openai-scala", - "repoUrl":"https://github.com/imaxmelnyk/openai-scala.git", - "revision":"v0.3.0", - "version":"0.3.0", - "targets":"dev.maxmelnyk%openai-scala", + "greenfossil/data-mapping":{ + "project":"greenfossil/data-mapping", + "repoUrl":"https://github.com/greenfossil/data-mapping.git", + "revision":"v1.0.9", + "version":"1.0.9", + "targets":"com.greenfossil%data-mapping", "config":{ "projects":{ "exclude":[ @@ -14665,7 +14938,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -14684,25 +14957,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val scala3Version = \"3.3.0\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "imrafaelmerino/json-scala-values":{ - "project":"imrafaelmerino/json-scala-values", - "repoUrl":"https://github.com/imrafaelmerino/json-scala-values.git", - "revision":"v5.2.1", - "version":"5.2.1", - "targets":"com.github.imrafaelmerino%json-scala-values" - }, - "indoorvivants/detective":{ - "project":"indoorvivants/detective", - "repoUrl":"https://github.com/indoorvivants/detective.git", - "revision":"v0.0.2", - "version":"0.0.2", - "targets":"com.indoorvivants.detective%platform", + "greenfossil/thorium":{ + "project":"greenfossil/thorium", + "repoUrl":"https://github.com/greenfossil/thorium.git", + "revision":"v0.7.8", + "version":"0.7.8", + "targets":"com.greenfossil%thorium", "config":{ "projects":{ "exclude":[ @@ -14713,7 +14979,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -14728,22 +14994,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.3\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3Version = \"3.3.0\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "indoorvivants/mdoc-d2":{ - "project":"indoorvivants/mdoc-d2", - "repoUrl":"https://github.com/indoorvivants/mdoc-d2.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"com.indoorvivants%mdoc-d2", + "greenfossil/typesafe-config-ext":{ + "project":"greenfossil/typesafe-config-ext", + "repoUrl":"https://github.com/greenfossil/typesafe-config-ext.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"com.greenfossil%typesafe-config-ext", "config":{ "projects":{ "exclude":[ @@ -14754,7 +15020,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -14773,18 +15039,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3Version = \"3.3.0\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "indoorvivants/mdoc-effect":{ - "project":"indoorvivants/mdoc-effect", - "repoUrl":"https://github.com/indoorvivants/mdoc-effect.git", - "revision":"v0.0.5", - "version":"0.0.5", - "targets":"com.indoorvivants%mdoc-effect-ce2 com.indoorvivants%mdoc-effect-ce3", + "greenleafoss/green-leaf-mongo":{ + "project":"greenleafoss/green-leaf-mongo", + "repoUrl":"https://github.com/greenleafoss/green-leaf-mongo.git", + "revision":"0.1.13", + "version":"0.1.13", + "targets":"io.github.greenleafoss%green-leaf-mongo", "config":{ "projects":{ "exclude":[ @@ -14795,7 +15061,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -14810,22 +15076,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.3\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "indoorvivants/opaque-newtypes":{ - "project":"indoorvivants/opaque-newtypes", - "repoUrl":"https://github.com/indoorvivants/opaque-newtypes.git", - "revision":"v0.0.2", - "version":"0.0.2", - "targets":"com.indoorvivants%opaque-newtypes", + "grouzen/zio-apache-arrow":{ + "project":"grouzen/zio-apache-arrow", + "repoUrl":"https://github.com/grouzen/zio-apache-arrow.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"me.mnedokushev%zio-apache-arrow-core me.mnedokushev%zio-apache-arrow-datafusion", "config":{ "projects":{ "exclude":[ @@ -14854,19 +15116,26 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.1\"", + "path":"project/BuildHelper.scala", + "pattern":"val Scala3 = \"3.3.0\"", "replaceWith":"val Scala3 = \"\"" } ] } }, - "indoorvivants/rendition":{ - "project":"indoorvivants/rendition", - "repoUrl":"https://github.com/indoorvivants/rendition.git", - "revision":"v0.0.3", - "version":"0.0.3", - "targets":"com.indoorvivants%rendition", + "guardian/etag-caching":{ + "project":"guardian/etag-caching", + "repoUrl":"https://github.com/guardian/etag-caching.git", + "revision":"v1.0.7", + "version":"1.0.7", + "targets":"com.gu.etag-caching%aws-s3-base com.gu.etag-caching%aws-s3-sdk-v2 com.gu.etag-caching%core" + }, + "guardian/fastly-api-client":{ + "project":"guardian/fastly-api-client", + "repoUrl":"https://github.com/guardian/fastly-api-client.git", + "revision":"v0.5.0", + "version":"0.5.0", + "targets":"com.gu%fastly-api-client", "config":{ "projects":{ "exclude":[ @@ -14877,7 +15146,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -14892,22 +15161,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.0\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "indoorvivants/sn-bindgen":{ - "project":"indoorvivants/sn-bindgen", - "repoUrl":"https://github.com/indoorvivants/sn-bindgen.git", - "revision":"v0.0.17", - "version":"0.0.17", - "targets":"com.indoorvivants%bindgen-interface", + "guardian/mobile-apps-api-models":{ + "project":"guardian/mobile-apps-api-models", + "repoUrl":"https://github.com/guardian/mobile-apps-api-models.git", + "revision":"v0.0.27", + "version":"0.0.27", + "targets":"com.gu%mobile-apps-api-models-v0", "config":{ "projects":{ "exclude":[ @@ -14918,7 +15183,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -14933,22 +15198,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "indoorvivants/sn-demangler":{ - "project":"indoorvivants/sn-demangler", - "repoUrl":"https://github.com/indoorvivants/sn-demangler.git", - "revision":"v0.0.6", - "version":"0.0.6", - "targets":"com.indoorvivants%sn-demangler com.indoorvivants%sn-demangler-core", + "guardian/pa-football-client":{ + "project":"guardian/pa-football-client", + "repoUrl":"https://github.com/guardian/pa-football-client.git", + "revision":"v7.0.7", + "version":"7.0.7", + "targets":"com.gu%pa-client", "config":{ "projects":{ "exclude":[ @@ -14959,7 +15220,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -14978,18 +15239,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.3\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala_3: String = \"3.2.2\"", + "replaceWith":"val scala_3: String = \"\"" } ] } }, - "indoorvivants/sn-vcpkg":{ - "project":"indoorvivants/sn-vcpkg", - "repoUrl":"https://github.com/indoorvivants/sn-vcpkg.git", - "revision":"v0.0.12", - "version":"0.0.12", - "targets":"com.indoorvivants.vcpkg%sn-vcpkg com.indoorvivants.vcpkg%vcpkg-core", + "guardian/play-brotli-filter":{ + "project":"guardian/play-brotli-filter", + "repoUrl":"https://github.com/guardian/play-brotli-filter.git", + "revision":"", + "version":"0.12-RC2", + "targets":"com.gu%play-brotli-filter", "config":{ "projects":{ "exclude":[ @@ -15000,7 +15261,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -15017,20 +15278,23 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "indoorvivants/subatomic":{ - "project":"indoorvivants/subatomic", - "repoUrl":"https://github.com/indoorvivants/subatomic.git", - "revision":"v0.0.7", - "version":"0.0.7", - "targets":"com.indoorvivants%subatomic-search-indexer com.indoorvivants%subatomic-search-shared com.indoorvivants%subatomic-search-cli com.indoorvivants%subatomic-core com.indoorvivants%subatomic-search-retrieve com.indoorvivants%subatomic-builders com.indoorvivants%subatomic-search-frontend-pack", + "guidoschmidt17/zio-pgcopy":{ + "project":"guidoschmidt17/zio-pgcopy", + "repoUrl":"https://github.com/guidoschmidt17/zio-pgcopy.git", + "revision":"", + "version":"0.1.0-RC1", + "targets":"com.guidoschmidt17%zio-pgcopy" + }, + "guizmaii-opensource/zio-aes":{ + "project":"guizmaii-opensource/zio-aes", + "repoUrl":"https://github.com/guizmaii-opensource/zio-aes.git", + "revision":"v0.3.0", + "version":"0.3.0", + "targets":"com.guizmaii%zio-aes", "config":{ "projects":{ "exclude":[ @@ -15041,12 +15305,11 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ - "set every Test/unmanagedSources/excludeFilter := HiddenFileFilter || \"MdocJSTests.scala\"", - "disableFatalWarnings" + ], "options":[ @@ -15057,18 +15320,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "indoorvivants/weaver-playwright":{ - "project":"indoorvivants/weaver-playwright", - "repoUrl":"https://github.com/indoorvivants/weaver-playwright.git", - "revision":"v0.0.5", - "version":"0.0.5", - "targets":"com.indoorvivants.playwright%core com.indoorvivants.playwright%weaver", + "guizmaii-opensource/zio-uuid":{ + "project":"guizmaii-opensource/zio-uuid", + "repoUrl":"https://github.com/guizmaii-opensource/zio-uuid.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"com.guizmaii%zio-uuid", "config":{ "projects":{ "exclude":[ @@ -15094,22 +15357,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.0\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "indoorvivants/yank":{ - "project":"indoorvivants/yank", - "repoUrl":"https://github.com/indoorvivants/yank.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"com.indoorvivants%yank", + "guntiso/mojoz":{ + "project":"guntiso/mojoz", + "repoUrl":"https://github.com/guntiso/mojoz.git", + "revision":"v5.0.0", + "version":"5.0.0", + "targets":"org.mojoz%mojoz", "config":{ "projects":{ "exclude":[ @@ -15137,20 +15396,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "ingarabr/http4s-cloud-functions":{ - "project":"ingarabr/http4s-cloud-functions", - "repoUrl":"https://github.com/ingarabr/http4s-cloud-functions.git", - "revision":"v0.3.0", - "version":"0.3.0", - "targets":"com.github.ingarabr%http4s-cloud-functions", + "guymers/ceesvee":{ + "project":"guymers/ceesvee", + "repoUrl":"https://github.com/guymers/ceesvee.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"io.github.guymers%ceesvee-core io.github.guymers%ceesvee-fs2 io.github.guymers%ceesvee-zio", "config":{ "projects":{ "exclude":[ @@ -15161,11 +15416,12 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -15176,29 +15432,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ { - "path":"project/Versions.scala", - "pattern":"val scala3 = \"3.0.1\"", - "replaceWith":"val scala3 = \"\"" + "path":"build.sbt", + "pattern":"val Scala3 = \"3.3.1\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "inkytonik/kiama":{ - "project":"inkytonik/kiama", - "repoUrl":"https://github.com/inkytonik/kiama.git", - "revision":"v2.5.0", - "version":"2.5.0", - "targets":"org.bitbucket.inkytonik.kiama%kiama org.bitbucket.inkytonik.kiama%kiama-extras" - }, - "inoio/solrs":{ - "project":"inoio/solrs", - "repoUrl":"https://github.com/inoio/solrs.git", - "revision":"967791496d41d2a2fb22c8c264806bc5e47de070", - "version":"2.7.0", - "targets":"io.ino%solrs", + "guymers/foobie":{ + "project":"guymers/foobie", + "repoUrl":"https://github.com/guymers/foobie.git", + "revision":"v0.14.7", + "version":"0.14.7", + "targets":"io.github.guymers%foobie-h2 io.github.guymers%zoobie io.github.guymers%foobie-weaver io.github.guymers%foobie-h2-circe io.github.guymers%foobie-postgres io.github.guymers%foobie-hikari io.github.guymers%foobie-postgres-circe io.github.guymers%foobie-mysql io.github.guymers%foobie-munit io.github.guymers%foobie-postgis io.github.guymers%foobie-scalatest io.github.guymers%foobie-free io.github.guymers%foobie-core", "config":{ "projects":{ "exclude":[ @@ -15213,7 +15462,8 @@ }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -15226,16 +15476,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.3.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "irevive/union-derivation":{ - "project":"irevive/union-derivation", - "repoUrl":"https://github.com/irevive/union-derivation.git", - "revision":"v0.0.4", - "version":"0.0.4", - "targets":"io.github.irevive%union-derivation-core", + "gvolpe/trading":{ + "project":"gvolpe/trading", + "repoUrl":"https://github.com/gvolpe/trading.git", + "revision":"", + "version":"HEAD", + "targets":"*%*", "config":{ "projects":{ "exclude":[ @@ -15246,11 +15500,11 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ - + "excludeLibraryDependency com.github.ghik:zerowaste_{scalaVersion}" ], "options":[ @@ -15261,18 +15515,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "ironcorelabs/cats-scalatest":{ - "project":"ironcorelabs/cats-scalatest", - "repoUrl":"https://github.com/ironcorelabs/cats-scalatest.git", - "revision":"v4.0.0", - "version":"4.0.0", - "targets":"com.ironcorelabs%cats-scalatest", + "gzoller/deploysample":{ + "project":"gzoller/deploysample", + "repoUrl":"https://github.com/gzoller/deploysample.git", + "revision":"0.1.5", + "version":"0.1.5", + "targets":"co.blocke%ds_core co.blocke%ds_lib", "config":{ "projects":{ "exclude":[ @@ -15283,7 +15537,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -15304,12 +15558,12 @@ ] } }, - "itv/quartz4s":{ - "project":"itv/quartz4s", - "repoUrl":"https://github.com/itv/quartz4s.git", - "revision":"v1.0.4", - "version":"1.0.4", - "targets":"com.itv%quartz4s-core", + "gzoller/listzipper":{ + "project":"gzoller/listzipper", + "repoUrl":"https://github.com/gzoller/listzipper.git", + "revision":"v0.1.6", + "version":"0.1.6", + "targets":"co.blocke%listzipper", "config":{ "projects":{ "exclude":[ @@ -15320,7 +15574,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -15335,32 +15589,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "itv/scala-pact":{ - "project":"itv/scala-pact", - "repoUrl":"https://github.com/itv/scala-pact.git", - "revision":"v4.4.0", - "version":"4.4.0", - "targets":"com.itv%scalapact-http4s-0-23 com.itv%scalapact-scalatest com.itv%scalapact-core com.itv%scalapact-circe-0-14 com.itv%scalapact-scalatest-suite com.itv%scalapact-shared" - }, - "ivoah/vial":{ - "project":"ivoah/vial", - "repoUrl":"https://github.com/ivoah/vial.git", - "revision":"bcfb402f9e83cc23aab2f84dda5773f746ce2a37", - "version":"0.3.3", - "targets":"net.ivoah%vial" - }, - "j-mie6/parsley":{ - "project":"j-mie6/parsley", - "repoUrl":"https://github.com/j-mie6/parsley.git", - "revision":"v4.2.11-M1", - "version":"4.2.11-M1", - "targets":"com.github.j-mie6%parsley", + "gzoller/scalajack":{ + "project":"gzoller/scalajack", + "repoUrl":"https://github.com/gzoller/scalajack.git", + "revision":"7.0.3", + "version":"7.0.3", + "targets":"co.blocke%scalajack co.blocke%scalajack_dynamo co.blocke%scalajack_mongo", "config":{ "projects":{ "exclude":[ @@ -15375,7 +15615,7 @@ }, "sbt":{ "commands":[ - + "set scalajack/Test/unmanagedSources/excludeFilter ~= { _ || \"AnyPrim.scala\" || \"Arrays.scala\" || \"AnyColl.scala\" }" ], "options":[ @@ -15390,29 +15630,31 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.1\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3 = \"3.2.1\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "j-mie6/parsley-cats":{ - "project":"j-mie6/parsley-cats", - "repoUrl":"https://github.com/j-mie6/parsley-cats.git", - "revision":"v1.2.0", - "version":"1.2.0", - "targets":"com.github.j-mie6%parsley-cats", + "h8io/borscht":{ + "project":"h8io/borscht", + "repoUrl":"https://github.com/h8io/borscht.git", + "revision":"v1.2.11", + "version":"1.2.11", + "targets":"io.h8.borscht%borscht-template-st4 io.h8.borscht%borscht-jackson-toml io.h8.borscht%borscht-jackson io.h8.borscht%borscht-core io.h8.borscht%borscht-classic io.h8.borscht%borscht-jackson-yaml io.h8.borscht%borscht-template-core io.h8.borscht%borscht-template-apache-commons-text io.h8.borscht%borscht-typesafe", "config":{ "projects":{ "exclude":[ ], "overrides":{ - + "template-apache-commons-text":{ + "tests":"compile-only" + } } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -15429,20 +15671,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "j5ik2o/akka-persistence-s3":{ - "project":"j5ik2o/akka-persistence-s3", - "repoUrl":"https://github.com/j5ik2o/akka-persistence-s3.git", - "revision":"v1.2.177", - "version":"1.2.177", - "targets":"com.github.j5ik2o%akka-persistence-s3-base com.github.j5ik2o%akka-persistence-s3-journal com.github.j5ik2o%akka-persistence-s3-snapshot", + "hagay3/skuber":{ + "project":"hagay3/skuber", + "repoUrl":"https://github.com/hagay3/skuber.git", + "revision":"v4.0.0", + "version":"4.0.0", + "targets":"io.github.hagay3%skuber io.github.hagay3%skuber-examples", "config":{ "projects":{ "exclude":[ @@ -15468,22 +15706,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ { - "path":"project/Dependencies.scala", - "pattern":"val scala3Version = \"3.2.2\"", + "path":"build.sbt", + "pattern":"val scala3Version = \"3.2.0\"", "replaceWith":"val scala3Version = \"\"" } ] } }, - "j5ik2o/base64scala":{ - "project":"j5ik2o/base64scala", - "repoUrl":"https://github.com/j5ik2o/base64scala.git", - "revision":"v1.0.55", - "version":"1.0.55", - "targets":"com.github.j5ik2o%base64scala com.github.j5ik2o%base64scala-example com.github.j5ik2o%base64scala-root", + "haifengl/smile":{ + "project":"haifengl/smile", + "repoUrl":"https://github.com/haifengl/smile.git", + "revision":"v3.0.2", + "version":"3.0.2", + "targets":"com.github.haifengl%smile-scala com.github.haifengl%smile-json", "config":{ "projects":{ "exclude":[ @@ -15494,7 +15732,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -15509,22 +15747,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "j5ik2o/docker-controller-scala":{ - "project":"j5ik2o/docker-controller-scala", - "repoUrl":"https://github.com/j5ik2o/docker-controller-scala.git", - "revision":"v1.10.89", - "version":"1.10.89", - "targets":"com.github.j5ik2o%docker-controller-scala-dynamodb-local com.github.j5ik2o%docker-controller-scala-zookeeper com.github.j5ik2o%docker-controller-scala-elasticsearch com.github.j5ik2o%docker-controller-scala-kafka com.github.j5ik2o%docker-controller-scala-scalatest com.github.j5ik2o%docker-controller-scala-localstack com.github.j5ik2o%docker-controller-scala-elasticmq com.github.j5ik2o%docker-controller-scala-core com.github.j5ik2o%docker-controller-scala-memcached com.github.j5ik2o%docker-controller-scala-minio com.github.j5ik2o%docker-controller-scala-postgresql com.github.j5ik2o%docker-controller-scala-flyway com.github.j5ik2o%docker-controller-scala-redis com.github.j5ik2o%docker-controller-scala-mysql com.github.j5ik2o%docker-controller-scala-root", + "hamnis/dataclass-scalafix":{ + "project":"hamnis/dataclass-scalafix", + "repoUrl":"https://github.com/hamnis/dataclass-scalafix.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"net.hamnaberg%dataclass-annotation", "config":{ "projects":{ "exclude":[ @@ -15535,7 +15769,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -15550,22 +15784,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ { - "path":"project/Dependencies.scala", - "pattern":"val scala3Version = \"3.1.3\"", + "path":"build.sbt", + "pattern":"val scala3Version = \"3.1.3\"", "replaceWith":"val scala3Version = \"\"" } ] } }, - "j5ik2o/intervals-scala":{ - "project":"j5ik2o/intervals-scala", - "repoUrl":"https://github.com/j5ik2o/intervals-scala.git", - "revision":"v1.0.59", - "version":"1.0.59", - "targets":"com.github.j5ik2o%intervals-scala", + "hamnis/jsonschema":{ + "project":"hamnis/jsonschema", + "repoUrl":"https://github.com/hamnis/jsonschema.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"net.hamnaberg%jsonschema-core", "config":{ "projects":{ "exclude":[ @@ -15576,7 +15810,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -15593,34 +15827,23 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "jandom-devel/scalafix":{ - "project":"jandom-devel/scalafix", - "repoUrl":"https://github.com/jandom-devel/scalafix.git", - "revision":"v0.10.0", - "version":"0.10.0", - "targets":"it.unich.scalafix%scalafix" - }, - "janlisse/zio-jwt-validator":{ - "project":"janlisse/zio-jwt-validator", - "repoUrl":"https://github.com/janlisse/zio-jwt-validator.git", + "hamnis/jwk":{ + "project":"hamnis/jwk", + "repoUrl":"https://github.com/hamnis/jwk.git", "revision":"v0.1.0", "version":"0.1.0", - "targets":"io.github.janlisse%zio-jwt-validator" + "targets":"net.hamnaberg.jwk%jwk-core net.hamnaberg.jwk%jwk-http4s net.hamnaberg.jwk%jwk-sttp3" }, - "janstenpickle/hotswap-ref":{ - "project":"janstenpickle/hotswap-ref", - "repoUrl":"https://github.com/janstenpickle/hotswap-ref.git", - "revision":"v0.2.2", - "version":"0.2.2", - "targets":"io.janstenpickle%hotswap-ref", + "hedgehogqa/scala-hedgehog":{ + "project":"hedgehogqa/scala-hedgehog", + "repoUrl":"https://github.com/hedgehogqa/scala-hedgehog.git", + "revision":"v0.10.1", + "version":"0.10.1", + "targets":"qa.hedgehog%hedgehog-minitest qa.hedgehog%hedgehog-core qa.hedgehog%hedgehog-munit qa.hedgehog%hedgehog-sbt qa.hedgehog%hedgehog-runner", "config":{ "projects":{ "exclude":[ @@ -15631,11 +15854,11 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ - + "disableFatalWarnings" ], "options":[ @@ -15648,20 +15871,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.1.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "jap-company/fields":{ - "project":"jap-company/fields", - "repoUrl":"https://github.com/jap-company/fields.git", - "revision":"v0.4.16", - "version":"0.4.16", - "targets":"company.jap%fields-core company.jap%fields-cats company.jap%fields-zio", + "herminiogg/dmaog":{ + "project":"herminiogg/dmaog", + "repoUrl":"https://github.com/herminiogg/dmaog.git", + "revision":"v0.1.5", + "version":"0.1.5", + "targets":"com.herminiogarcia%dmaog", "config":{ "projects":{ "exclude":[ @@ -15672,7 +15891,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -15687,22 +15906,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.2\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "japgolly/clear-config":{ - "project":"japgolly/clear-config", - "repoUrl":"https://github.com/japgolly/clear-config.git", - "revision":"v3.1.0", - "version":"3.1.0", - "targets":"com.github.japgolly.clearconfig%core", + "herminiogg/label2thesaurus":{ + "project":"herminiogg/label2thesaurus", + "repoUrl":"https://github.com/herminiogg/label2thesaurus.git", + "revision":"v0.1.1", + "version":"0.1.1", + "targets":"com.herminiogarcia%label2thesaurus", "config":{ "projects":{ "exclude":[ @@ -15713,7 +15928,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -15730,20 +15945,16 @@ }, "tests":"compile-only", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.1.3\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "japgolly/microlibs-scala":{ - "project":"japgolly/microlibs-scala", - "repoUrl":"https://github.com/japgolly/microlibs-scala.git", - "revision":"v4.2.1", - "version":"4.2.1", - "targets":"com.github.japgolly.microlibs%utils com.github.japgolly.microlibs%disjunction com.github.japgolly.microlibs%nonempty com.github.japgolly.microlibs%test-util com.github.japgolly.microlibs%adt-macros com.github.japgolly.microlibs%name-fn com.github.japgolly.microlibs%multimap com.github.japgolly.microlibs%stdlib-ext com.github.japgolly.microlibs%types com.github.japgolly.microlibs%cats-ext com.github.japgolly.microlibs%compile-time com.github.japgolly.microlibs%recursion", + "herminiogg/shexml":{ + "project":"herminiogg/shexml", + "repoUrl":"https://github.com/herminiogg/shexml.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"com.herminiogarcia%shexml", "config":{ "projects":{ "exclude":[ @@ -15754,7 +15965,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -15769,22 +15980,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"def scala3 = \"3.1.3\"", - "replaceWith":"def scala3 = \"\"" - } + ] } }, - "japgolly/nyaya":{ - "project":"japgolly/nyaya", - "repoUrl":"https://github.com/japgolly/nyaya.git", - "revision":"v1.1.0", - "version":"1.1.0", - "targets":"com.github.japgolly.nyaya%nyaya-test com.github.japgolly.nyaya%nyaya-util com.github.japgolly.nyaya%nyaya-prop com.github.japgolly.nyaya%nyaya-gen com.github.japgolly.nyaya%nyaya-gen-circe", + "higherkindness/droste":{ + "project":"higherkindness/droste", + "repoUrl":"https://github.com/higherkindness/droste.git", + "revision":"v0.9.0", + "version":"0.9.0", + "targets":"io.higherkindness%droste io.higherkindness%droste-core io.higherkindness%droste-scalacheck io.higherkindness%droste-reftree io.higherkindness%droste-macros io.higherkindness%droste-meta io.higherkindness%droste-laws", "config":{ "projects":{ "exclude":[ @@ -15795,11 +16002,11 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ - + "disableFatalWarnings" ], "options":[ @@ -15812,20 +16019,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.1.3\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "japgolly/scala-graal":{ - "project":"japgolly/scala-graal", - "repoUrl":"https://github.com/japgolly/scala-graal.git", - "revision":"v2.1.0", - "version":"2.1.0", - "targets":"com.github.japgolly.scala-graal%core com.github.japgolly.scala-graal%core-js com.github.japgolly.scala-graal%ext-boopickle com.github.japgolly.scala-graal%ext-prometheus", + "higherkindness/mu-scala":{ + "project":"higherkindness/mu-scala", + "repoUrl":"https://github.com/higherkindness/mu-scala.git", + "revision":"v0.31.0", + "version":"0.31.0", + "targets":"io.higherkindness%mu-rpc-client-netty io.higherkindness%mu-rpc-server io.higherkindness%mu-rpc-dropwizard io.higherkindness%mu-rpc-prometheus io.higherkindness%mu-rpc-health-check io.higherkindness%mu-rpc-client-okhttp io.higherkindness%mu-rpc-client-cache io.higherkindness%mu-rpc-testing io.higherkindness%mu-rpc-service io.higherkindness%mu-rpc-netty-ssl io.higherkindness%mu-rpc-fs2", "config":{ "projects":{ "exclude":[ @@ -15836,7 +16039,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -15851,22 +16054,29 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.1.3\"", + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "japgolly/scalacss":{ - "project":"japgolly/scalacss", - "repoUrl":"https://github.com/japgolly/scalacss.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"com.github.japgolly.scalacss%core", + "hinadt/hina-cloud-android-plugin":{ + "project":"hinadt/hina-cloud-android-plugin", + "repoUrl":"https://github.com/hinadt/hina-cloud-android-plugin.git", + "revision":"", + "version":"2.0.0", + "targets":"com.hinadt.hicloud.android%sa-agp-v7" + }, + "hireproof/screening":{ + "project":"hireproof/screening", + "repoUrl":"https://github.com/hireproof/screening.git", + "revision":"0.0.17", + "version":"0.0.17", + "targets":"io.hireproof%screening io.hireproof%screening-core", "config":{ "projects":{ "exclude":[ @@ -15877,7 +16087,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -15895,35 +16105,30 @@ "tests":"full", "sourcePatches":[ { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.0.1\"", - "replaceWith":"val scala3 = \"\"" + "path":"build.sbt", + "pattern":"val Scala3 = \"3.1.2\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "japgolly/test-state":{ - "project":"japgolly/test-state", - "repoUrl":"https://github.com/japgolly/test-state.git", - "revision":"v3.1.0", - "version":"3.1.0", - "targets":"com.github.japgolly.test-state%dom-zipper com.github.japgolly.test-state%util com.github.japgolly.test-state%ext-selenium com.github.japgolly.test-state%dom-zipper-jsoup com.github.japgolly.test-state%util-selenium com.github.japgolly.test-state%ext-nyaya com.github.japgolly.test-state%dom-zipper-selenium com.github.japgolly.test-state%ext-cats com.github.japgolly.test-state%core", + "hjfruit/scalikejdbc-helper":{ + "project":"hjfruit/scalikejdbc-helper", + "repoUrl":"https://github.com/hjfruit/scalikejdbc-helper.git", + "revision":"v0.3.1", + "version":"0.3.1", + "targets":"io.github.jxnu-liguobin%scalikejdbc-helper-core io.github.jxnu-liguobin%scalikejdbc-helper-postgres", "config":{ "projects":{ "exclude":[ ], "overrides":{ - "ext-selenium":{ - "tests":"compile-only" - }, - "dom-zipper-selenium":{ - "tests":"compile-only" - } + } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -15941,19 +16146,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.1.3\"", - "replaceWith":"val scala3 = \"\"" + "path":"build.sbt", + "pattern":"val scala3Version = \"3.3.0\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "japgolly/univeq":{ - "project":"japgolly/univeq", - "repoUrl":"https://github.com/japgolly/univeq.git", - "revision":"v2.0.1", - "version":"2.0.1", - "targets":"com.github.japgolly.univeq%univeq-cats com.github.japgolly.univeq%univeq", + "hjfruit/zio-pulsar":{ + "project":"hjfruit/zio-pulsar", + "repoUrl":"https://github.com/hjfruit/zio-pulsar.git", + "revision":"v0.3.5", + "version":"0.3.5", + "targets":"io.github.jxnu-liguobin%zio-pulsar", "config":{ "projects":{ "exclude":[ @@ -15964,7 +16169,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -15982,30 +16187,37 @@ "tests":"full", "sourcePatches":[ { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.0.1\"", - "replaceWith":"val scala3 = \"\"" + "path":"build.sbt", + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "japgolly/webapp-util":{ - "project":"japgolly/webapp-util", - "repoUrl":"https://github.com/japgolly/webapp-util.git", - "revision":"v2.0.0-RC12", - "version":"2.0.0-RC12", - "targets":"com.github.japgolly.webapp-util%test com.github.japgolly.webapp-util%core-circe com.github.japgolly.webapp-util%test-boopickle com.github.japgolly.webapp-util%test-cats-effect com.github.japgolly.webapp-util%db-postgres com.github.japgolly.webapp-util%core com.github.japgolly.webapp-util%test-circe com.github.japgolly.webapp-util%core-okhttp4 com.github.japgolly.webapp-util%core-boopickle com.github.japgolly.webapp-util%core-cats-effect com.github.japgolly.webapp-util%test-db-postgres", + "hmemcpy/zio-clippy":{ + "project":"hmemcpy/zio-clippy", + "repoUrl":"https://github.com/hmemcpy/zio-clippy.git", + "revision":"v0.0.5", + "version":"0.0.5", + "targets":"com.hmemcpy%zio-clippy" + }, + "hnaderi/edomata":{ + "project":"hnaderi/edomata", + "repoUrl":"https://github.com/hnaderi/edomata.git", + "revision":"v0.11.3", + "version":"0.11.3", + "targets":"dev.hnaderi%edomata-munit dev.hnaderi%edomata-skunk-jsoniter dev.hnaderi%edomata-skunk-upickle dev.hnaderi%edomata-skunk dev.hnaderi%edomata-doobie dev.hnaderi%edomata-core dev.hnaderi%edomata-doobie-circe dev.hnaderi%edomata-postgres dev.hnaderi%edomata-docs dev.hnaderi%edomata-doobie-jsoniter dev.hnaderi%edomata-skunk-circe dev.hnaderi%edomata-backend dev.hnaderi%edomata-doobie-upickle", "config":{ "projects":{ "exclude":[ - + "edomata-docs" ], "overrides":{ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -16020,22 +16232,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ { - "path":"project/Dependencies.scala", - "pattern":"def scala3 = \"3.1.3\"", - "replaceWith":"def scala3 = \"\"" + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "jatcwang/difflicious":{ - "project":"jatcwang/difflicious", - "repoUrl":"https://github.com/jatcwang/difflicious.git", + "hnaderi/lepus":{ + "project":"hnaderi/lepus", + "repoUrl":"https://github.com/hnaderi/lepus.git", "revision":"v0.4.1", "version":"0.4.1", - "targets":"com.github.jatcwang%difflicious-munit com.github.jatcwang%difflicious-scalatest com.github.jatcwang%difflicious-core com.github.jatcwang%difflicious-cats", + "targets":"dev.hnaderi%lepus-circe dev.hnaderi%lepus-client dev.hnaderi%lepus-protocol-testkit dev.hnaderi%lepus-docs dev.hnaderi%lepus-wire dev.hnaderi%lepus-std dev.hnaderi%lepus-protocol", "config":{ "projects":{ "exclude":[ @@ -16046,7 +16258,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -16065,33 +16277,33 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.1.1\"", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "jbwheatley/pact4s":{ - "project":"jbwheatley/pact4s", - "repoUrl":"https://github.com/jbwheatley/pact4s.git", - "revision":"v0.9.0", - "version":"0.9.0", - "targets":"io.github.jbwheatley%pact4s-spray-json io.github.jbwheatley%pact4s-scalatest io.github.jbwheatley%pact4s-circe io.github.jbwheatley%pact4s-play-json io.github.jbwheatley%pact4s-munit-cats-effect io.github.jbwheatley%pact4s-models io.github.jbwheatley%pact4s-core io.github.jbwheatley%pact4s-weaver", + "hnaderi/named-codec":{ + "project":"hnaderi/named-codec", + "repoUrl":"https://github.com/hnaderi/named-codec.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"dev.hnaderi%named-codec dev.hnaderi%named-codec-circe dev.hnaderi%named-codec-docs", "config":{ "projects":{ "exclude":[ - + "named-codec-docs" ], "overrides":{ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ - "set shared/scalacOptions --= Seq(\"-Wconf:cat=deprecation:i\", \"-Xfatal-warnings\") " + ], "options":[ @@ -16106,18 +16318,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val Scala3 = \"3.3.0\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "jcouyang/dhall-generic":{ - "project":"jcouyang/dhall-generic", - "repoUrl":"https://github.com/jcouyang/dhall-generic.git", - "revision":"v0.3.90", - "version":"0.3.90", - "targets":"us.oyanglul%dhall-generic", + "hnaderi/portainer-client":{ + "project":"hnaderi/portainer-client", + "repoUrl":"https://github.com/hnaderi/portainer-client.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"dev.hnaderi%portainer-client", "config":{ "projects":{ "exclude":[ @@ -16128,7 +16340,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -16147,18 +16359,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.1.3\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val Scala3 = \"3.2.0\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "jcouyang/jujiu":{ - "project":"jcouyang/jujiu", - "repoUrl":"https://github.com/jcouyang/jujiu.git", - "revision":"v0.27.0", - "version":"0.27.0", - "targets":"us.oyanglul%jujiu", + "hnaderi/scala-k8s":{ + "project":"hnaderi/scala-k8s", + "repoUrl":"https://github.com/hnaderi/scala-k8s.git", + "revision":"v0.15.1", + "version":"0.15.1", + "targets":"dev.hnaderi%scala-k8s-manifests dev.hnaderi%scala-k8s-java-ssl dev.hnaderi%scala-k8s-play-json dev.hnaderi%scala-k8s-objects dev.hnaderi%scala-k8s-docs dev.hnaderi%scala-k8s-zio dev.hnaderi%scala-k8s-scalacheck dev.hnaderi%scala-k8s-sttp dev.hnaderi%scala-k8s-http4s-jdk dev.hnaderi%scala-k8s-zio-json dev.hnaderi%scala-k8s-client dev.hnaderi%scala-k8s-spray-json dev.hnaderi%scala-k8s-json4s dev.hnaderi%scala-k8s-jawn dev.hnaderi%scala-k8s-circe dev.hnaderi%scala-k8s-http4s-ember dev.hnaderi%scala-k8s-http4s-netty dev.hnaderi%scala-k8s-http4s-blaze dev.hnaderi%scala-k8s-http4s", "config":{ "projects":{ "exclude":[ @@ -16169,7 +16381,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -16188,25 +16400,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.0.0\"", + "pattern":"val scala3 = \"3.3.1\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "jcouyang/meow":{ - "project":"jcouyang/meow", - "repoUrl":"https://github.com/jcouyang/meow.git", - "revision":"v0.4.14", - "version":"0.4.14", - "targets":"us.oyanglul%meow" - }, - "jczuchnowski/zio-pulsar":{ - "project":"jczuchnowski/zio-pulsar", - "repoUrl":"https://github.com/jczuchnowski/zio-pulsar.git", - "revision":"v0.2", - "version":"0.2", - "targets":"com.github.jczuchnowski%zio-pulsar", + "hnaderi/scala-readpass":{ + "project":"hnaderi/scala-readpass", + "repoUrl":"https://github.com/hnaderi/scala-readpass.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"dev.hnaderi%readpassword", "config":{ "projects":{ "exclude":[ @@ -16217,7 +16422,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -16238,12 +16443,12 @@ ] } }, - "jd557/minart":{ - "project":"jd557/minart", - "repoUrl":"https://github.com/jd557/minart.git", - "revision":"v0.5.2", - "version":"0.5.2", - "targets":"eu.joaocosta%minart-backend eu.joaocosta%minart-image eu.joaocosta%minart-sound eu.joaocosta%minart-core eu.joaocosta%minart eu.joaocosta%minart-pure", + "hnaderi/yaml4s":{ + "project":"hnaderi/yaml4s", + "repoUrl":"https://github.com/hnaderi/yaml4s.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"dev.hnaderi%yaml4s-backend dev.hnaderi%yaml4s-zio-json dev.hnaderi%yaml4s-json4s dev.hnaderi%yaml4s-spray-json dev.hnaderi%yaml4s-snake dev.hnaderi%yaml4s-docs dev.hnaderi%yaml4s-core dev.hnaderi%yaml4s-circe dev.hnaderi%yaml4s-play-json", "config":{ "projects":{ "exclude":[ @@ -16271,37 +16476,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.3.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "jelly-rdf/jelly-jvm":{ - "project":"jelly-rdf/jelly-jvm", - "repoUrl":"https://github.com/jelly-rdf/jelly-jvm.git", - "revision":"v0.0.5", - "version":"0.0.5", - "targets":"eu.ostrzyciel.jelly%jelly-core eu.ostrzyciel.jelly%jelly-jvm eu.ostrzyciel.jelly%jelly-grpc eu.ostrzyciel.jelly%jelly-stream eu.ostrzyciel.jelly%jelly-jena eu.ostrzyciel.jelly%jelly-rdf4j" - }, - "jkobejs/cron":{ - "project":"jkobejs/cron", - "repoUrl":"https://github.com/jkobejs/cron.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"io.github.jkobejs%zio-cron io.github.jkobejs%zio1-cron" - }, - "jkugiya/aws-v4-signer-scala":{ - "project":"jkugiya/aws-v4-signer-scala", - "repoUrl":"https://github.com/jkugiya/aws-v4-signer-scala.git", - "revision":"0.14", - "version":"0.14", - "targets":"com.github.jkugiya%aws-v4-signer-scala" - }, - "jkugiya/ulid-scala":{ - "project":"jkugiya/ulid-scala", - "repoUrl":"https://github.com/jkugiya/ulid-scala.git", - "revision":"v1.0.3", - "version":"1.0.3", - "targets":"com.github.jkugiya%ulid-scala", + "hsci-r/lucene-perfieldpostingsformatordtermvectorscodec":{ + "project":"hsci-r/lucene-perfieldpostingsformatordtermvectorscodec", + "repoUrl":"https://github.com/hsci-r/lucene-perfieldpostingsformatordtermvectorscodec.git", + "revision":"", + "version":"1.2.11", + "targets":"io.github.hsci-r%lucene-perfieldpostingsformatordtermvectorscodec", "config":{ "projects":{ "exclude":[ @@ -16312,7 +16500,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -16327,25 +16515,25 @@ ] }, - "tests":"full", + "tests":"disabled", "sourcePatches":[ ] } }, - "jmcardon/tsec":{ - "project":"jmcardon/tsec", - "repoUrl":"https://github.com/jmcardon/tsec.git", - "revision":"v0.3.0-M2", - "version":"0.3.0-M2", - "targets":"io.github.jmcardon%tsec-bouncy io.github.jmcardon%tsec-password io.github.jmcardon%tsec-mac io.github.jmcardon%tsec-cipher-bouncy io.github.jmcardon%tsec-jwt-core io.github.jmcardon%tsec-signatures io.github.jmcardon%tsec-cipher-jca io.github.jmcardon%tsec-hash-bouncy io.github.jmcardon%tsec-cipher-core io.github.jmcardon%tsec-jwt-sig io.github.jmcardon%tsec-common io.github.jmcardon%tsec-jwt-mac io.github.jmcardon%tsec-hash-jca" + "hsci-r/octavo-indexer":{ + "project":"hsci-r/octavo-indexer", + "repoUrl":"https://github.com/hsci-r/octavo-indexer.git", + "revision":"", + "version":"1.2.7", + "targets":"io.github.hsci-r%octavo-indexer" }, - "joan38/kubernetes-client":{ - "project":"joan38/kubernetes-client", - "repoUrl":"https://github.com/joan38/kubernetes-client.git", - "revision":"v0.9.0", - "version":"0.9.0", - "targets":"com.goyeau%kubernetes-client", + "hseeberger/slf4s":{ + "project":"hseeberger/slf4s", + "repoUrl":"https://github.com/hseeberger/slf4s.git", + "revision":"v0.3.0", + "version":"0.3.0", + "targets":"rocks.heikoseeberger%slf4s", "config":{ "projects":{ "exclude":[ @@ -16356,7 +16544,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -16371,29 +16559,29 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "jobial-io/scase":{ - "project":"jobial-io/scase", - "repoUrl":"https://github.com/jobial-io/scase.git", - "revision":"0.9.0", - "version":"0.9.0", - "targets":"io.jobial%scase-lambda-scala3-example", + "hshn/slick-codegen-patch":{ + "project":"hshn/slick-codegen-patch", + "repoUrl":"https://github.com/hshn/slick-codegen-patch.git", + "revision":"v0.2.0-M1", + "version":"0.2.0-M1", + "targets":"dev.hshn%slick-codegen-patch", "config":{ "projects":{ "exclude":[ - "io.jobial%scase-lambda-scala3-example" + ], "overrides":{ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -16410,42 +16598,31 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "jodersky/identicon":{ - "project":"jodersky/identicon", - "repoUrl":"https://github.com/jodersky/identicon.git", - "revision":"0.4.0", - "version":"0.4.0", - "targets":"io.crashbox%identicon" - }, - "jodersky/redicl":{ - "project":"jodersky/redicl", - "repoUrl":"https://github.com/jodersky/redicl.git", - "revision":"0.1.2", - "version":"0.1.2", - "targets":"io.crashbox%redicl" - }, - "jodersky/scala-argparse":{ - "project":"jodersky/scala-argparse", - "repoUrl":"https://github.com/jodersky/scala-argparse.git", - "revision":"0.20.0", - "version":"0.20.0", - "targets":"io.crashbox%configparse io.crashbox%argparse-ini io.crashbox%argparse io.crashbox%configparse-core", + "http4s/blaze":{ + "project":"http4s/blaze", + "repoUrl":"https://github.com/http4s/blaze.git", + "revision":"v1.0.0-M39", + "version":"1.0.0-M39", + "targets":"org.http4s%http4s-blaze-client org.http4s%http4s-blaze-server org.http4s%blaze-http org.http4s%blaze-core org.http4s%http4s-blaze-core", "config":{ "projects":{ "exclude":[ - "io.crashbox%configparse", - "io.crashbox%configparse-core" + ], "overrides":{ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -16460,22 +16637,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ { - "path":"build.sc", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" + "path":"build.sbt", + "pattern":"val Scala3 = \"3.3.1\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "jodersky/scalapb-ujson":{ - "project":"jodersky/scalapb-ujson", - "repoUrl":"https://github.com/jodersky/scalapb-ujson.git", - "revision":"0.3.1", - "version":"0.3.1", - "targets":"io.crashbox%scalapb-ujson", + "http4s/hpack":{ + "project":"http4s/hpack", + "repoUrl":"https://github.com/http4s/hpack.git", + "revision":"", + "version":"1.0.1-56-fcf3848", + "targets":"com.armanbilge%hpack", "config":{ "projects":{ "exclude":[ @@ -16486,7 +16663,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -16501,25 +16678,18 @@ ] }, - "tests":"disabled", + "tests":"full", "sourcePatches":[ ] } }, - "jodersky/simplesql":{ - "project":"jodersky/simplesql", - "repoUrl":"https://github.com/jodersky/simplesql.git", - "revision":"0.2.2", - "version":"0.2.2", - "targets":"io.crashbox%simplesql" - }, - "jodersky/ustats":{ - "project":"jodersky/ustats", - "repoUrl":"https://github.com/jodersky/ustats.git", - "revision":"0.6.0", - "version":"0.6.0", - "targets":"io.crashbox%ustats io.crashbox%ustats-server", + "http4s/http4s":{ + "project":"http4s/http4s", + "repoUrl":"https://github.com/http4s/http4s.git", + "revision":"v0.23.23", + "version":"0.23.23", + "targets":"org.http4s%http4s-client-testkit org.http4s%http4s-server org.http4s%http4s-dsl org.http4s%http4s-laws org.http4s%http4s-ember-client org.http4s%http4s-client org.http4s%http4s-jawn org.http4s%http4s-circe org.http4s%http4s-docs org.http4s%http4s-scalafix-internal org.http4s%http4s-ember-server org.http4s%http4s-ember-core org.http4s%http4s-core", "config":{ "projects":{ "exclude":[ @@ -16530,11 +16700,11 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ - + "set every unidoc/unidocAllSources := Nil" ], "options":[ @@ -16548,19 +16718,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sc", - "pattern":"val scala3 = \"3.1.2\"", - "replaceWith":"val scala3 = \"\"" + "path":"project/Http4sPlugin.scala", + "pattern":"val scala_3 = \"3.3.0\"", + "replaceWith":"val scala_3 = \"\"" } ] } }, - "jodersky/yamlesque":{ - "project":"jodersky/yamlesque", - "repoUrl":"https://github.com/jodersky/yamlesque.git", - "revision":"0.3.2", - "version":"0.3.2", - "targets":"io.crashbox%yamlesque io.crashbox%yamlesque-upickle", + "http4s/http4s-armeria":{ + "project":"http4s/http4s-armeria", + "repoUrl":"https://github.com/http4s/http4s-armeria.git", + "revision":"v1.0.0-M2", + "version":"1.0.0-M2", + "targets":"org.http4s%http4s-armeria-client org.http4s%http4s-armeria-server", "config":{ "projects":{ "exclude":[ @@ -16571,7 +16741,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -16588,39 +16758,27 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sc", - "pattern":"val scala3 = \"3.0.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "joernio/joern":{ - "project":"joernio/joern", - "repoUrl":"https://github.com/joernio/joern.git", - "revision":"v1.1.1728", - "version":"1.1.1728", - "targets":"io.joern%c2cpg io.joern%jimple2cpg io.joern%semanticcpg io.joern%jssrc2cpg io.joern%rubysrc2cpg io.joern%php2cpg io.joern%x2cpg io.joern%pysrc2cpg io.joern%dataflowengineoss io.joern%macros io.joern%javasrc2cpg", + "http4s/http4s-async-http-client":{ + "project":"http4s/http4s-async-http-client", + "repoUrl":"https://github.com/http4s/http4s-async-http-client.git", + "revision":"v0.23.12", + "version":"0.23.12", + "targets":"org.http4s%http4s-async-http-client", "config":{ "projects":{ "exclude":[ - "php2cpg" + ], "overrides":{ - "x2cpg":{ - "tests":"compile-only" - }, - "javasrc2cpg":{ - "tests":"compile-only" - }, - "jssrc2cpg":{ - "tests":"compile-only" - } + } }, "java":{ - "version":"21" + "version":"17" }, "sbt":{ "commands":[ @@ -16641,19 +16799,12 @@ ] } }, - "johnhungerford/generic-schema":{ - "project":"johnhungerford/generic-schema", - "repoUrl":"https://github.com/johnhungerford/generic-schema.git", - "revision":"v1.2.0", - "version":"1.2.0", - "targets":"io.github.johnhungerford.generic.schema%core io.github.johnhungerford.generic.schema%gs-circe io.github.johnhungerford.generic.schema%gs-tapir io.github.johnhungerford.generic.schema%gs-upickle" - }, - "johnspade/csv3s":{ - "project":"johnspade/csv3s", - "repoUrl":"https://github.com/johnspade/csv3s.git", - "revision":"v0.1.2", - "version":"0.1.2", - "targets":"ru.johnspade%csv3s", + "http4s/http4s-crypto":{ + "project":"http4s/http4s-crypto", + "repoUrl":"https://github.com/http4s/http4s-crypto.git", + "revision":"v0.2.4", + "version":"0.2.4", + "targets":"org.http4s%http4s-crypto", "config":{ "projects":{ "exclude":[ @@ -16664,7 +16815,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -16681,20 +16832,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "johnspade/tgbot-utils":{ - "project":"johnspade/tgbot-utils", - "repoUrl":"https://github.com/johnspade/tgbot-utils.git", - "revision":"v0.7.0", - "version":"0.7.0", - "targets":"ru.johnspade%tgbot-utils ru.johnspade%tgbot-callback-data ru.johnspade%tgbot-callback-queries ru.johnspade%tgbot-message-entities", + "http4s/http4s-fabric":{ + "project":"http4s/http4s-fabric", + "repoUrl":"https://github.com/http4s/http4s-fabric.git", + "revision":"v1.0.0-M32", + "version":"1.0.0-M32", + "targets":"org.http4s%http4s-fabric", "config":{ "projects":{ "exclude":[ @@ -16705,7 +16852,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -16724,32 +16871,25 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", + "pattern":"val scala3 = \"3.1.1\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "joohnnie/retry":{ - "project":"joohnnie/retry", - "repoUrl":"https://github.com/joohnnie/retry.git", - "revision":"68f5e7e2dd43e05f5180c7709821f582d4e8eb9f", - "version":"1.0.1", - "targets":"fun.zyx%retry" - }, - "jozic/scalax-collection":{ - "project":"jozic/scalax-collection", - "repoUrl":"https://github.com/jozic/scalax-collection.git", - "revision":"v0.3.4", - "version":"0.3.4", - "targets":"com.daodecode%scalax-collection" + "http4s/http4s-finagle":{ + "project":"http4s/http4s-finagle", + "repoUrl":"https://github.com/http4s/http4s-finagle.git", + "revision":"v0.21.31-21.12.0", + "version":"0.21.31-21.12.0", + "targets":"org.http4s%http4s-finagle" }, - "jphmrst/bps":{ - "project":"jphmrst/bps", - "repoUrl":"https://github.com/jphmrst/bps.git", - "revision":"9beee6cb49a630a8f1e2ee665c0919b4d1b092ba", - "version":"0.1.0", - "targets":"org.maraist%bps-scala", + "http4s/http4s-fs2-data":{ + "project":"http4s/http4s-fs2-data", + "repoUrl":"https://github.com/http4s/http4s-fs2-data.git", + "revision":"v1.0.0-M40", + "version":"1.0.0-M40", + "targets":"org.http4s%http4s-fs2-data-cbor org.http4s%http4s-fs2-data-csv org.http4s%http4s-fs2-data-xml org.http4s%http4s-fs2-data-xml-scala", "config":{ "projects":{ "exclude":[ @@ -16760,7 +16900,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -16777,20 +16917,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.1.0\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "jphmrst/scala-automata":{ - "project":"jphmrst/scala-automata", - "repoUrl":"https://github.com/jphmrst/scala-automata.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"org.maraist%scala-automata", + "http4s/http4s-jdk-http-client":{ + "project":"http4s/http4s-jdk-http-client", + "repoUrl":"https://github.com/http4s/http4s-jdk-http-client.git", + "revision":"v0.9.1", + "version":"0.9.1", + "targets":"org.http4s%http4s-jdk-http-client", "config":{ "projects":{ "exclude":[ @@ -16801,7 +16937,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -16818,20 +16954,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.0.2\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "jphmrst/scala-latex":{ - "project":"jphmrst/scala-latex", - "repoUrl":"https://github.com/jphmrst/scala-latex.git", - "revision":"v1.1.2", - "version":"1.1.2", - "targets":"org.maraist%scala-latex", + "http4s/http4s-jetty":{ + "project":"http4s/http4s-jetty", + "repoUrl":"https://github.com/http4s/http4s-jetty.git", + "revision":"v0.23.13", + "version":"0.23.13", + "targets":"org.http4s%http4s-jetty-client org.http4s%http4s-jetty-server", "config":{ "projects":{ "exclude":[ @@ -16842,7 +16974,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -16859,20 +16991,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.0.1\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "jphmrst/scalautils":{ - "project":"jphmrst/scalautils", - "repoUrl":"https://github.com/jphmrst/scalautils.git", - "revision":"0ed1ad6ea31d7f4289828531337f1a34f78a953e", - "version":"1.0.1", - "targets":"org.maraist%misc-utils", + "http4s/http4s-netty":{ + "project":"http4s/http4s-netty", + "repoUrl":"https://github.com/http4s/http4s-netty.git", + "revision":"v0.5.11", + "version":"0.5.11", + "targets":"org.http4s%http4s-netty-client org.http4s%http4s-netty-core org.http4s%http4s-netty-server", "config":{ "projects":{ "exclude":[ @@ -16883,7 +17011,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -16900,20 +17028,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.1.0\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "json4s/json4s":{ - "project":"json4s/json4s", - "repoUrl":"https://github.com/json4s/json4s.git", - "revision":"v4.1.0-M3", - "version":"4.1.0-M3", - "targets":"org.json4s%json4s-jackson org.json4s%json4s-core org.json4s%json4s-mongo org.json4s%json4s-native org.json4s%json4s-native-core org.json4s%json4s-xml org.json4s%json4s-scalaz org.json4s%json4s-scalap org.json4s%json4s-ext org.json4s%json4s-jackson-core org.json4s%json4s-ast", + "http4s/http4s-play-json":{ + "project":"http4s/http4s-play-json", + "repoUrl":"https://github.com/http4s/http4s-play-json.git", + "revision":"v0.23.12", + "version":"0.23.12", + "targets":"org.http4s%http4s-play-json", "config":{ "projects":{ "exclude":[ @@ -16924,7 +17048,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -16942,19 +17066,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/build.scala", - "pattern":"val Scala3 = \"3.2.2\"", + "path":"build.sbt", + "pattern":"val Scala3 = \"3.3.1\"", "replaceWith":"val Scala3 = \"\"" } ] } }, - "juliano/pokeapi-scala":{ - "project":"juliano/pokeapi-scala", - "repoUrl":"https://github.com/juliano/pokeapi-scala.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"io.github.juliano%pokeapi-scala", + "http4s/http4s-prometheus-metrics":{ + "project":"http4s/http4s-prometheus-metrics", + "repoUrl":"https://github.com/http4s/http4s-prometheus-metrics.git", + "revision":"0.24.6", + "version":"0.24.6", + "targets":"org.http4s%http4s-prometheus-metrics", "config":{ "projects":{ "exclude":[ @@ -16980,24 +17104,20 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.0\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "jvican/dijon":{ - "project":"jvican/dijon", - "repoUrl":"https://github.com/jvican/dijon.git", - "revision":"07c69c34aef335d6b512c00686a9376339708106", - "version":"0.0.0+48-f17bfc3b", - "targets":"me.vican.jorge%monix-grpc-codegen me.vican.jorge%monix-grpc-runtime", - "config":{ - "projects":{ + "http4s/http4s-scala-xml":{ + "project":"http4s/http4s-scala-xml", + "repoUrl":"https://github.com/http4s/http4s-scala-xml.git", + "revision":"v1.0.0-M38", + "version":"1.0.0-M38", + "targets":"org.http4s%http4s-scala-xml", + "config":{ + "projects":{ "exclude":[ ], @@ -17027,12 +17147,12 @@ ] } }, - "jwojnowski/fs2-aes":{ - "project":"jwojnowski/fs2-aes", - "repoUrl":"https://github.com/jwojnowski/fs2-aes.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"me.wojnowski%fs2-aes", + "http4s/http4s-scalatags":{ + "project":"http4s/http4s-scalatags", + "repoUrl":"https://github.com/http4s/http4s-scalatags.git", + "revision":"v1.0.0-M38", + "version":"1.0.0-M38", + "targets":"org.http4s%http4s-scalatags", "config":{ "projects":{ "exclude":[ @@ -17043,7 +17163,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -17060,20 +17180,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "jwojnowski/googlecloud4s":{ - "project":"jwojnowski/googlecloud4s", - "repoUrl":"https://github.com/jwojnowski/googlecloud4s.git", - "revision":"v0.7.2", - "version":"0.7.2", - "targets":"me.wojnowski%googlecloud4s-core me.wojnowski%googlecloud4s-auth me.wojnowski%googlecloud4s-firestore me.wojnowski%googlecloud4s-pubsub me.wojnowski%googlecloud4s-logging-logback-circe me.wojnowski%googlecloud4s-storage", + "http4s/http4s-servlet":{ + "project":"http4s/http4s-servlet", + "repoUrl":"https://github.com/http4s/http4s-servlet.git", + "revision":"v0.24.0-RC1", + "version":"0.24.0-RC1", + "targets":"org.http4s%http4s-servlet", "config":{ "projects":{ "exclude":[ @@ -17099,22 +17215,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "jwojnowski/oidc4s":{ - "project":"jwojnowski/oidc4s", - "repoUrl":"https://github.com/jwojnowski/oidc4s.git", - "revision":"v0.7.0", - "version":"0.7.0", - "targets":"me.wojnowski%oidc4s-circe me.wojnowski%oidc4s-core me.wojnowski%oidc4s-quick-sttp-circe me.wojnowski%oidc4s-sttp", + "http4s/http4s-session":{ + "project":"http4s/http4s-session", + "repoUrl":"https://github.com/http4s/http4s-session.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"org.http4s%http4s-session", "config":{ "projects":{ "exclude":[ @@ -17125,7 +17237,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -17144,18 +17256,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.1\"", + "pattern":"val Scala3 = \"3.3.0\"", "replaceWith":"val Scala3 = \"\"" } ] } }, - "jwt-scala/jwt-scala":{ - "project":"jwt-scala/jwt-scala", - "repoUrl":"https://github.com/jwt-scala/jwt-scala.git", - "revision":"v9.3.0", - "version":"9.3.0", - "targets":"com.github.jwt-scala%jwt-json4s-jackson com.github.jwt-scala%jwt-circe com.github.jwt-scala%jwt-argonaut com.github.jwt-scala%jwt-zio-json com.github.jwt-scala%jwt-json4s-native com.github.jwt-scala%jwt-core com.github.jwt-scala%jwt-upickle com.github.jwt-scala%jwt-json-common com.github.jwt-scala%jwt-json4s-common", + "http4s/http4s-tomcat":{ + "project":"http4s/http4s-tomcat", + "repoUrl":"https://github.com/http4s/http4s-tomcat.git", + "revision":"v0.25.0-M1", + "version":"0.25.0-M1", + "targets":"org.http4s%http4s-tomcat-server", "config":{ "projects":{ "exclude":[ @@ -17166,7 +17278,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -17181,18 +17293,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "kailuowang/mau":{ - "project":"kailuowang/mau", - "repoUrl":"https://github.com/kailuowang/mau.git", - "revision":"v0.3.2", - "version":"0.3.2", - "targets":"com.kailuowang%mau", + "http4s/http4s-twirl":{ + "project":"http4s/http4s-twirl", + "repoUrl":"https://github.com/http4s/http4s-twirl.git", + "revision":"v1.0.0-M38", + "version":"1.0.0-M38", + "targets":"org.http4s%http4s-twirl", "config":{ "projects":{ "exclude":[ @@ -17224,12 +17336,12 @@ ] } }, - "kalin-rudnicki/harness":{ - "project":"kalin-rudnicki/harness", - "repoUrl":"https://github.com/kalin-rudnicki/harness.git", - "revision":"2.0.1", - "version":"2.0.1", - "targets":"io.github.kalin-rudnicki%harness-http-server io.github.kalin-rudnicki%harness-http-client io.github.kalin-rudnicki%harness-cli io.github.kalin-rudnicki%harness-xml io.github.kalin-rudnicki%harness-test io.github.kalin-rudnicki%harness-csv io.github.kalin-rudnicki%harness-web io.github.kalin-rudnicki%harness-zio io.github.kalin-rudnicki%harness-core io.github.kalin-rudnicki%harness-sql io.github.kalin-rudnicki%harness-http-server-test", + "hughsimpson/scalameter":{ + "project":"hughsimpson/scalameter", + "repoUrl":"https://github.com/hughsimpson/scalameter.git", + "revision":"v0.22.1", + "version":"0.22.1", + "targets":"io.github.hughsimpson%scalameter io.github.hughsimpson%scalameter-core", "config":{ "projects":{ "exclude":[ @@ -17255,22 +17367,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala_3 = \"3.2.2\"", - "replaceWith":"val Scala_3 = \"\"" - } + ] } }, - "kalin-rudnicki/slyce-zio":{ - "project":"kalin-rudnicki/slyce-zio", - "repoUrl":"https://github.com/kalin-rudnicki/slyce-zio.git", - "revision":"2.0.3", - "version":"2.0.3", - "targets":"io.github.kalin-rudnicki%slyce-core io.github.kalin-rudnicki%slyce-generate io.github.kalin-rudnicki%slyce-parse io.github.kalin-rudnicki%slyce-parse-exe", + "i10416/cssminifier":{ + "project":"i10416/cssminifier", + "repoUrl":"https://github.com/i10416/cssminifier.git", + "revision":"v0.0.3", + "version":"0.0.3", + "targets":"dev.i10416%cssminifier", "config":{ "projects":{ "exclude":[ @@ -17300,18 +17408,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala_3 = \"3.1.3-RC5\"", - "replaceWith":"val Scala_3 = \"\"" + "pattern":"val scala3 = \"3.1.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "kamon-io/kamon":{ - "project":"kamon-io/kamon", - "repoUrl":"https://github.com/kamon-io/kamon.git", - "revision":"v2.6.1", - "version":"2.6.1", - "targets":"io.kamon%kamon-prometheus io.kamon%kamon-core io.kamon%kamon-testkit io.kamon%kamon-system-metrics io.kamon%kamon-annotation io.kamon%kamon-opentelemetry io.kamon%kamon-scala-future io.kamon%kamon-newrelic io.kamon%kamon-graphite io.kamon%kamon-apm-reporter io.kamon%kamon-caffeine io.kamon%kamon-kafka io.kamon%kamon-zipkin io.kamon%kamon-status-page io.kamon%kamon-executors io.kamon%kamon-cats-io-3 io.kamon%kamon-influxdb io.kamon%kamon-instrumentation-common io.kamon%kamon-redis io.kamon%kamon-datadog io.kamon%kamon-statsd io.kamon%kamon-jaeger", + "i10416/munkres":{ + "project":"i10416/munkres", + "repoUrl":"https://github.com/i10416/munkres.git", + "revision":"v0.0.4", + "version":"0.0.4", + "targets":"dev.i10416%munkres", "config":{ "projects":{ "exclude":[ @@ -17322,7 +17430,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -17339,16 +17447,27 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.1.2\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "karazinscalausersgroup/mongo-literals":{ - "project":"karazinscalausersgroup/mongo-literals", - "repoUrl":"https://github.com/karazinscalausersgroup/mongo-literals.git", - "revision":"63a14d3a43224d9e483bdb3be516a055a187ee2b", - "version":"0.2.3", - "targets":"group.scala.karazin%mongo-literals", + "ichoran/kse3":{ + "project":"ichoran/kse3", + "repoUrl":"https://github.com/ichoran/kse3.git", + "revision":"", + "version":"0.1.8", + "targets":"com.github.ichoran%kse3-eio com.github.ichoran%kse3-flow com.github.ichoran%kse3-maths com.github.ichoran%kse3-testing" + }, + "iheartradio/ficus":{ + "project":"iheartradio/ficus", + "repoUrl":"https://github.com/iheartradio/ficus.git", + "revision":"v1.5.2", + "version":"1.5.2", + "targets":"com.iheart%ficus", "config":{ "projects":{ "exclude":[ @@ -17359,7 +17478,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -17376,16 +17495,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"def Scala3 = \"3.1.1\"", + "replaceWith":"def Scala3 = \"\"" + } ] } }, - "katrix/minejson":{ - "project":"katrix/minejson", - "repoUrl":"https://github.com/katrix/minejson.git", - "revision":"1e1d739a6d8b7de2e65d5e9d079df448b959bb77", - "version":"0.4.0", - "targets":"net.katsstuff%minejson-text", + "ij-plugins/ijp-color":{ + "project":"ij-plugins/ijp-color", + "repoUrl":"https://github.com/ij-plugins/ijp-color.git", + "revision":"v.0.12.2", + "version":"0.12.2", + "targets":"net.sf.ij-plugins%ijp-color net.sf.ij-plugins%ijp-color-ui", "config":{ "projects":{ "exclude":[ @@ -17411,32 +17534,22 @@ ] }, - "tests":"disabled", + "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.3.0-RC3\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "katrix/perspective":{ - "project":"katrix/perspective", - "repoUrl":"https://github.com/katrix/perspective.git", - "revision":"5243d8cd126141d7a26f79f4eb9222da0ada4adc", - "version":"0.1.0", - "targets":"net.katsstuff%perspective-derivation net.katsstuff%perspective" - }, - "katrix/typenbt":{ - "project":"katrix/typenbt", - "repoUrl":"https://github.com/katrix/typenbt.git", - "revision":"641dde8bf0878910ad456df7fd9274c995aa29c4", - "version":"0.6.0", - "targets":"net.katsstuff%typenbt net.katsstuff%typenbt-extra net.katsstuff%typenbt-mojangson" - }, - "kcrypt/scala-biginteger":{ - "project":"kcrypt/scala-biginteger", - "repoUrl":"https://github.com/kcrypt/scala-biginteger.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"pt.kcry%biginteger", + "ij-plugins/ijp-debayer2sx":{ + "project":"ij-plugins/ijp-debayer2sx", + "repoUrl":"https://github.com/ij-plugins/ijp-debayer2sx.git", + "revision":"v.1.3.4", + "version":"1.3.4", + "targets":"net.sf.ij-plugins%ijp-debayer2sx-core net.sf.ij-plugins%ijp-debayer2sx-plugins", "config":{ "projects":{ "exclude":[ @@ -17468,12 +17581,12 @@ ] } }, - "kcrypt/scala-blake3":{ - "project":"kcrypt/scala-blake3", - "repoUrl":"https://github.com/kcrypt/scala-blake3.git", - "revision":"v3.1.1", - "version":"3.1.1", - "targets":"pt.kcry%blake3", + "ij-plugins/ijp-javacv":{ + "project":"ij-plugins/ijp-javacv", + "repoUrl":"https://github.com/ij-plugins/ijp-javacv.git", + "revision":"v.0.5.0", + "version":"0.5.0", + "targets":"net.sf.ij-plugins%ijp-javacv-core net.sf.ij-plugins%ijp-javacv-plugins", "config":{ "projects":{ "exclude":[ @@ -17499,18 +17612,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "kcrypt/scala-sha":{ - "project":"kcrypt/scala-sha", - "repoUrl":"https://github.com/kcrypt/scala-sha.git", - "revision":"v2.0.1", - "version":"2.0.1", - "targets":"pt.kcry%sha", + "ij-plugins/ijp-scala-console":{ + "project":"ij-plugins/ijp-scala-console", + "repoUrl":"https://github.com/ij-plugins/ijp-scala-console.git", + "revision":"v.1.8.0", + "version":"1.8.0", + "targets":"net.sf.ij-plugins%scala-console net.sf.ij-plugins%scala-console-plugins", "config":{ "projects":{ "exclude":[ @@ -17521,7 +17634,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -17542,12 +17655,12 @@ ] } }, - "keirlawson/fs2-progress":{ - "project":"keirlawson/fs2-progress", - "repoUrl":"https://github.com/keirlawson/fs2-progress.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"io.github.keirlawson%fs2-progress", + "ij-plugins/ijp-toolkit":{ + "project":"ij-plugins/ijp-toolkit", + "repoUrl":"https://github.com/ij-plugins/ijp-toolkit.git", + "revision":"v.2.3.1", + "version":"2.3.1", + "targets":"net.sf.ij-plugins%ijp-toolkit", "config":{ "projects":{ "exclude":[ @@ -17573,22 +17686,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "kevin-lee/effectie":{ - "project":"kevin-lee/effectie", - "repoUrl":"https://github.com/kevin-lee/effectie.git", - "revision":"v2.0.0-beta9", - "version":"2.0.0-beta9", - "targets":"io.kevinlee%effectie-syntax io.kevinlee%effectie-cats-effect2 io.kevinlee%effectie-test4cats io.kevinlee%effectie-cats-effect3 io.kevinlee%effectie-cats io.kevinlee%effectie-monix3 io.kevinlee%effectie-core", + "imaxmelnyk/openai-scala":{ + "project":"imaxmelnyk/openai-scala", + "repoUrl":"https://github.com/imaxmelnyk/openai-scala.git", + "revision":"v0.3.0", + "version":"0.3.0", + "targets":"dev.maxmelnyk%openai-scala", "config":{ "projects":{ "exclude":[ @@ -17599,7 +17708,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -17618,34 +17727,40 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3Version = \"3.0.2\"", - "replaceWith":"val Scala3Version = \"\"" + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "kevin-lee/just-semver":{ - "project":"kevin-lee/just-semver", - "repoUrl":"https://github.com/kevin-lee/just-semver.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"io.kevinlee%just-semver io.kevinlee%just-semver-core", + "imrafaelmerino/json-scala-values":{ + "project":"imrafaelmerino/json-scala-values", + "repoUrl":"https://github.com/imrafaelmerino/json-scala-values.git", + "revision":"v5.2.1", + "version":"5.2.1", + "targets":"com.github.imrafaelmerino%json-scala-values" + }, + "indoorvivants/detective":{ + "project":"indoorvivants/detective", + "repoUrl":"https://github.com/indoorvivants/detective.git", + "revision":"v0.0.2", + "version":"0.0.2", + "targets":"com.indoorvivants.detective%platform", "config":{ "projects":{ "exclude":[ - "io.kevinlee%just-semver" + ], "overrides":{ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -17658,16 +17773,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.1.3\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "kevin-lee/just-sysprocess":{ - "project":"kevin-lee/just-sysprocess", - "repoUrl":"https://github.com/kevin-lee/just-sysprocess.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"io.kevinlee%just-sysprocess", + "indoorvivants/mdoc-d2":{ + "project":"indoorvivants/mdoc-d2", + "repoUrl":"https://github.com/indoorvivants/mdoc-d2.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"com.indoorvivants%mdoc-d2", "config":{ "projects":{ "exclude":[ @@ -17678,12 +17797,11 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion} com.olegpy:better-monadic-for_3", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -17696,23 +17814,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "kevin-lee/logger-f":{ - "project":"kevin-lee/logger-f", - "repoUrl":"https://github.com/kevin-lee/logger-f.git", - "revision":"v2.0.0-beta12", - "version":"2.0.0-beta12", - "targets":"io.kevinlee%logger-f-slf4j io.kevinlee%logger-f-log4j io.kevinlee%logger-f-sbt-logging io.kevinlee%logger-f-test-kit io.kevinlee%logger-f-core io.kevinlee%logger-f-log4s io.kevinlee%logger-f-cats" - }, - "kiberstender/fjwt":{ - "project":"kiberstender/fjwt", - "repoUrl":"https://github.com/kiberstender/fjwt.git", - "revision":"v1.0.2", - "version":"1.0.2", - "targets":"io.github.kiberStender%fjwt", + "indoorvivants/mdoc-effect":{ + "project":"indoorvivants/mdoc-effect", + "repoUrl":"https://github.com/indoorvivants/mdoc-effect.git", + "revision":"v0.0.5", + "version":"0.0.5", + "targets":"com.indoorvivants%mdoc-effect-ce2 com.indoorvivants%mdoc-effect-ce3", "config":{ "projects":{ "exclude":[ @@ -17723,7 +17838,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -17741,19 +17856,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/Common.scala", - "pattern":"val scala3Version = \"3.2.1\"", - "replaceWith":"val scala3Version = \"\"" + "path":"build.sbt", + "pattern":"val Scala3 = \"3.1.3\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "kierendavies/skunk-migrate":{ - "project":"kierendavies/skunk-migrate", - "repoUrl":"https://github.com/kierendavies/skunk-migrate.git", - "revision":"v0.3.0", - "version":"0.3.0", - "targets":"io.github.kierendavies%skunk-migrate", + "indoorvivants/opaque-newtypes":{ + "project":"indoorvivants/opaque-newtypes", + "repoUrl":"https://github.com/indoorvivants/opaque-newtypes.git", + "revision":"v0.0.2", + "version":"0.0.2", + "targets":"com.indoorvivants%opaque-newtypes", "config":{ "projects":{ "exclude":[ @@ -17779,18 +17894,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "kijuky/enumeratum-scalikejdbc":{ - "project":"kijuky/enumeratum-scalikejdbc", - "repoUrl":"https://github.com/kijuky/enumeratum-scalikejdbc.git", - "revision":"v1.7.2.1", - "version":"1.7.2.1", - "targets":"io.github.kijuky%enumeratum-scalikejdbc4", + "indoorvivants/rendition":{ + "project":"indoorvivants/rendition", + "repoUrl":"https://github.com/indoorvivants/rendition.git", + "revision":"v0.0.3", + "version":"0.0.3", + "targets":"com.indoorvivants%rendition", "config":{ "projects":{ "exclude":[ @@ -17801,7 +17920,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -17818,16 +17937,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.0\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "killaitis/http4s-cloud-functions":{ - "project":"killaitis/http4s-cloud-functions", - "repoUrl":"https://github.com/killaitis/http4s-cloud-functions.git", - "revision":"0.4.3", - "version":"0.4.3", - "targets":"de.killaitis%http4s-cloud-functions", + "indoorvivants/sn-bindgen":{ + "project":"indoorvivants/sn-bindgen", + "repoUrl":"https://github.com/indoorvivants/sn-bindgen.git", + "revision":"v0.0.21", + "version":"0.0.21", + "targets":"com.indoorvivants%bindgen-interface", "config":{ "projects":{ "exclude":[ @@ -17838,7 +17961,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -17853,18 +17976,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.3.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "kirill5k/mongo4cats":{ - "project":"kirill5k/mongo4cats", - "repoUrl":"https://github.com/kirill5k/mongo4cats.git", - "revision":"v0.6.11", - "version":"0.6.11", - "targets":"io.github.kirill5k%mongo4cats-zio io.github.kirill5k%mongo4cats-kernel io.github.kirill5k%mongo4cats-zio-json io.github.kirill5k%mongo4cats-embedded io.github.kirill5k%mongo4cats-circe io.github.kirill5k%mongo4cats-zio-embedded io.github.kirill5k%mongo4cats-core", + "indoorvivants/sn-demangler":{ + "project":"indoorvivants/sn-demangler", + "repoUrl":"https://github.com/indoorvivants/sn-demangler.git", + "revision":"v0.0.6", + "version":"0.0.6", + "targets":"com.indoorvivants%sn-demangler com.indoorvivants%sn-demangler-core", "config":{ "projects":{ "exclude":[ @@ -17875,7 +18002,7 @@ } }, "java":{ - "version":"21" + "version":"17" }, "sbt":{ "commands":[ @@ -17890,22 +18017,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val Scala3 = \"3.1.3\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "kitlangton/animus":{ - "project":"kitlangton/animus", - "repoUrl":"https://github.com/kitlangton/animus.git", - "revision":"v0.3.4", - "version":"0.3.4", - "targets":"io.github.kitlangton%animus io.github.kitlangton%root", + "indoorvivants/sn-vcpkg":{ + "project":"indoorvivants/sn-vcpkg", + "repoUrl":"https://github.com/indoorvivants/sn-vcpkg.git", + "revision":"v0.0.16", + "version":"0.0.16", + "targets":"com.indoorvivants.vcpkg%sn-vcpkg com.indoorvivants.vcpkg%vcpkg-core", "config":{ "projects":{ "exclude":[ @@ -17916,7 +18043,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -17933,16 +18060,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "kitlangton/neotype":{ - "project":"kitlangton/neotype", - "repoUrl":"https://github.com/kitlangton/neotype.git", - "revision":"v0.0.9", - "version":"0.0.9", - "targets":"io.github.kitlangton%neotype-zio-json io.github.kitlangton%neotype-zio-config io.github.kitlangton%neotype-zio-schema io.github.kitlangton%neotype-circe io.github.kitlangton%neotype-tapir io.github.kitlangton%neotype io.github.kitlangton%neotype-zio io.github.kitlangton%neotype-zio-quill", + "indoorvivants/subatomic":{ + "project":"indoorvivants/subatomic", + "repoUrl":"https://github.com/indoorvivants/subatomic.git", + "revision":"v0.0.7", + "version":"0.0.7", + "targets":"com.indoorvivants%subatomic-search-indexer com.indoorvivants%subatomic-search-shared com.indoorvivants%subatomic-search-cli com.indoorvivants%subatomic-core com.indoorvivants%subatomic-search-retrieve com.indoorvivants%subatomic-builders com.indoorvivants%subatomic-search-frontend-pack", "config":{ "projects":{ "exclude":[ @@ -17953,11 +18084,12 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ - + "set every Test/unmanagedSources/excludeFilter := HiddenFileFilter || \"MdocJSTests.scala\"", + "disableFatalWarnings" ], "options":[ @@ -17968,25 +18100,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "kitlangton/quotidian":{ - "project":"kitlangton/quotidian", - "repoUrl":"https://github.com/kitlangton/quotidian.git", - "revision":"v0.0.6", - "version":"0.0.6", - "targets":"io.github.kitlangton%quotidian" - }, - "kitlangton/zio-tui":{ - "project":"kitlangton/zio-tui", - "repoUrl":"https://github.com/kitlangton/zio-tui.git", - "revision":"v0.2.1", - "version":"0.2.1", - "targets":"io.github.kitlangton%zio-tui", + "indoorvivants/weaver-playwright":{ + "project":"indoorvivants/weaver-playwright", + "repoUrl":"https://github.com/indoorvivants/weaver-playwright.git", + "revision":"v0.0.5", + "version":"0.0.5", + "targets":"com.indoorvivants.playwright%core com.indoorvivants.playwright%weaver", "config":{ "projects":{ "exclude":[ @@ -17997,7 +18122,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -18012,22 +18137,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val Scala3 = \"3.2.0\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "kolemannix/spack":{ - "project":"kolemannix/spack", - "repoUrl":"https://github.com/kolemannix/spack.git", - "revision":"v0.0.4", - "version":"0.0.4", - "targets":"com.kolemannix%spack", + "indoorvivants/yank":{ + "project":"indoorvivants/yank", + "repoUrl":"https://github.com/indoorvivants/yank.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"com.indoorvivants%yank", "config":{ "projects":{ "exclude":[ @@ -18038,7 +18163,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -18055,30 +18180,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "kordyjan/typelogger":{ - "project":"kordyjan/typelogger", - "repoUrl":"https://github.com/kordyjan/typelogger.git", - "revision":"0.1.0", + "ingarabr/gcs-lock":{ + "project":"ingarabr/gcs-lock", + "repoUrl":"https://github.com/ingarabr/gcs-lock.git", + "revision":"v0.1.0", "version":"0.1.0", - "targets":"pro.kordyjan%typelogger" - }, - "kory33/s2mc-test":{ - "project":"kory33/s2mc-test", - "repoUrl":"https://github.com/kory33/s2mc-test.git", - "revision":"v0.2.3", - "version":"0.2.3", - "targets":"io.github.kory33%s2mc-protocol-core io.github.kory33%s2mc-client-core io.github.kory33%s2mc-test io.github.kory33%s2mc-client-examples io.github.kory33%s2mc-testing io.github.kory33%s2mc-client-impl io.github.kory33%s2mc-protocol-impl" - }, - "koterpillar/refinery":{ - "project":"koterpillar/refinery", - "repoUrl":"https://github.com/koterpillar/refinery.git", - "revision":"v0.0.8", - "version":"0.0.8", - "targets":"com.koterpillar%refinery", + "targets":"com.github.ingarabr%gcs-lock-cats-retry com.github.ingarabr%gcs-lock-core com.github.ingarabr%gcs-lock-http4s", "config":{ "projects":{ "exclude":[ @@ -18106,20 +18221,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.0.1\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "kovacshuni/circe-config":{ - "project":"kovacshuni/circe-config", - "repoUrl":"https://github.com/kovacshuni/circe-config.git", - "revision":"0.10.0", - "version":"0.10.0", - "targets":"com.hunorkovacs%circe-config", + "ingarabr/http4s-cloud-functions":{ + "project":"ingarabr/http4s-cloud-functions", + "repoUrl":"https://github.com/ingarabr/http4s-cloud-functions.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"com.github.ingarabr%http4s-cloud-functions", "config":{ "projects":{ "exclude":[ @@ -18130,7 +18241,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -18147,16 +18258,27 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Versions.scala", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "kovstas/fs2-throttler":{ - "project":"kovstas/fs2-throttler", - "repoUrl":"https://github.com/kovstas/fs2-throttler.git", - "revision":"v1.0.6", - "version":"1.0.6", - "targets":"dev.kovstas%fs2-throttler", + "inkytonik/kiama":{ + "project":"inkytonik/kiama", + "repoUrl":"https://github.com/inkytonik/kiama.git", + "revision":"v2.5.1", + "version":"2.5.1", + "targets":"org.bitbucket.inkytonik.kiama%kiama org.bitbucket.inkytonik.kiama%kiama-extras" + }, + "inoio/solrs":{ + "project":"inoio/solrs", + "repoUrl":"https://github.com/inoio/solrs.git", + "revision":"", + "version":"2.8.0", + "targets":"io.ino%solrs", "config":{ "projects":{ "exclude":[ @@ -18167,7 +18289,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -18188,12 +18310,12 @@ ] } }, - "krrrr38/protoquill-finagle-mysql":{ - "project":"krrrr38/protoquill-finagle-mysql", - "repoUrl":"https://github.com/krrrr38/protoquill-finagle-mysql.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"com.krrrr38%protoquill-finagle-mysql", + "irevive/union-derivation":{ + "project":"irevive/union-derivation", + "repoUrl":"https://github.com/irevive/union-derivation.git", + "revision":"v0.0.4", + "version":"0.0.4", + "targets":"io.github.irevive%union-derivation-core", "config":{ "projects":{ "exclude":[ @@ -18219,29 +18341,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "kubukoz/debug-utils":{ - "project":"kubukoz/debug-utils", - "repoUrl":"https://github.com/kubukoz/debug-utils.git", - "revision":"v1.1.3", - "version":"1.1.3", - "targets":"com.kubukoz%debug-utils" - }, - "kubukoz/drops":{ - "project":"kubukoz/drops", - "repoUrl":"https://github.com/kubukoz/drops.git", - "revision":"v0.0.5", - "version":"0.0.5", - "targets":"com.kubukoz%drops-core com.kubukoz%root", + "ironcorelabs/cats-scalatest":{ + "project":"ironcorelabs/cats-scalatest", + "repoUrl":"https://github.com/ironcorelabs/cats-scalatest.git", + "revision":"v4.0.0", + "version":"4.0.0", + "targets":"com.ironcorelabs%cats-scalatest", "config":{ "projects":{ "exclude":[ @@ -18252,11 +18363,11 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ - "excludeLibraryDependency org.polyvariant:better-tostring_{scalaVersion}" + ], "options":[ @@ -18273,12 +18384,54 @@ ] } }, - "kubukoz/spotify-next":{ - "project":"kubukoz/spotify-next", - "repoUrl":"https://github.com/kubukoz/spotify-next.git", - "revision":"v1.11.3", - "version":"1.11.3", - "targets":"com.kubukoz%spotify-next", + "ist-dsi/scala-cinder-client":{ + "project":"ist-dsi/scala-cinder-client", + "repoUrl":"https://github.com/ist-dsi/scala-cinder-client.git", + "revision":"v0.8.1", + "version":"0.8.1", + "targets":"pt.tecnico.dsi%scala-cinder-client" + }, + "ist-dsi/scala-designate-client":{ + "project":"ist-dsi/scala-designate-client", + "repoUrl":"https://github.com/ist-dsi/scala-designate-client.git", + "revision":"v0.9.2", + "version":"0.9.2", + "targets":"pt.tecnico.dsi%scala-designate-client" + }, + "ist-dsi/scala-keystone-client":{ + "project":"ist-dsi/scala-keystone-client", + "repoUrl":"https://github.com/ist-dsi/scala-keystone-client.git", + "revision":"v0.12.2", + "version":"0.12.2", + "targets":"pt.tecnico.dsi%scala-keystone-client" + }, + "ist-dsi/scala-neutron-client":{ + "project":"ist-dsi/scala-neutron-client", + "repoUrl":"https://github.com/ist-dsi/scala-neutron-client.git", + "revision":"v0.9.1", + "version":"0.9.1", + "targets":"pt.tecnico.dsi%scala-neutron-client" + }, + "ist-dsi/scala-nova-client":{ + "project":"ist-dsi/scala-nova-client", + "repoUrl":"https://github.com/ist-dsi/scala-nova-client.git", + "revision":"v0.10.1", + "version":"0.10.1", + "targets":"pt.tecnico.dsi%scala-nova-client" + }, + "ist-dsi/scala-openstack-common-clients":{ + "project":"ist-dsi/scala-openstack-common-clients", + "repoUrl":"https://github.com/ist-dsi/scala-openstack-common-clients.git", + "revision":"v0.11.0", + "version":"0.11.0", + "targets":"pt.tecnico.dsi%scala-openstack-common-clients" + }, + "itv/quartz4s":{ + "project":"itv/quartz4s", + "repoUrl":"https://github.com/itv/quartz4s.git", + "revision":"v1.0.4", + "version":"1.0.4", + "targets":"com.itv%quartz4s-core", "config":{ "projects":{ "exclude":[ @@ -18293,7 +18446,7 @@ }, "sbt":{ "commands":[ - "excludeLibraryDependency org.polyvariant:better-tostring_{scalaVersion}" + ], "options":[ @@ -18304,18 +18457,32 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "kubukoz/sup":{ - "project":"kubukoz/sup", - "repoUrl":"https://github.com/kubukoz/sup.git", - "revision":"v0.9.0-M7", - "version":"0.9.0-M7", - "targets":"com.kubukoz%sup-doobie com.kubukoz%sup-fs2-kafka com.kubukoz%sup-circe com.kubukoz%sup-http4s-client com.kubukoz%sup-sttp com.kubukoz%sup-cassandra com.kubukoz%sup-http4s com.kubukoz%sup-log4cats com.kubukoz%sup-core com.kubukoz%sup-scalacache com.kubukoz%sup-redis", + "itv/scala-pact":{ + "project":"itv/scala-pact", + "repoUrl":"https://github.com/itv/scala-pact.git", + "revision":"v4.4.0", + "version":"4.4.0", + "targets":"com.itv%scalapact-http4s-0-23 com.itv%scalapact-scalatest com.itv%scalapact-core com.itv%scalapact-circe-0-14 com.itv%scalapact-scalatest-suite com.itv%scalapact-shared" + }, + "ivoah/vial":{ + "project":"ivoah/vial", + "repoUrl":"https://github.com/ivoah/vial.git", + "revision":"", + "version":"0.3.3", + "targets":"net.ivoah%vial" + }, + "j-mie6/parsley":{ + "project":"j-mie6/parsley", + "repoUrl":"https://github.com/j-mie6/parsley.git", + "revision":"v4.4.0", + "version":"4.4.0", + "targets":"com.github.j-mie6%parsley", "config":{ "projects":{ "exclude":[ @@ -18326,11 +18493,11 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ - "excludeLibraryDependency org.polyvariant:better-tostring_{scalaVersion}" + ], "options":[ @@ -18345,25 +18512,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala_3 = \"3.1.3\"", - "replaceWith":"val Scala_3 = \"\"" + "pattern":"val Scala3 = \"3.3.0\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "kuceramartin/tyqu":{ - "project":"kuceramartin/tyqu", - "repoUrl":"https://github.com/kuceramartin/tyqu.git", - "revision":"v0.0.2", - "version":"0.0.2", - "targets":"ch.epfl.tyqu%tyqu" - }, - "kzmake/uuid7s":{ - "project":"kzmake/uuid7s", - "repoUrl":"https://github.com/kzmake/uuid7s.git", - "revision":"v0.1.3", - "version":"0.1.3", - "targets":"io.github.kzmake%uuid7s", + "j-mie6/parsley-cats":{ + "project":"j-mie6/parsley-cats", + "repoUrl":"https://github.com/j-mie6/parsley-cats.git", + "revision":"v1.3.0-M1", + "version":"1.3.0-M1", + "targets":"com.github.j-mie6%parsley-cats", "config":{ "projects":{ "exclude":[ @@ -18391,16 +18551,27 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.3.0\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "l-space/types":{ - "project":"l-space/types", - "repoUrl":"https://github.com/l-space/types.git", - "revision":"v0.2.1", - "version":"0.2.1", - "targets":"eu.l-space%types eu.l-space%root", + "j5ik2o/akka-persistence-dynamodb":{ + "project":"j5ik2o/akka-persistence-dynamodb", + "repoUrl":"https://github.com/j5ik2o/akka-persistence-dynamodb.git", + "revision":"v1.0.21", + "version":"1.0.21", + "targets":"com.github.j5ik2o%event-store-adapter-scala" + }, + "j5ik2o/akka-persistence-s3":{ + "project":"j5ik2o/akka-persistence-s3", + "repoUrl":"https://github.com/j5ik2o/akka-persistence-s3.git", + "revision":"v1.2.177", + "version":"1.2.177", + "targets":"com.github.j5ik2o%akka-persistence-s3-base com.github.j5ik2o%akka-persistence-s3-journal com.github.j5ik2o%akka-persistence-s3-snapshot", "config":{ "projects":{ "exclude":[ @@ -18411,7 +18582,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -18426,18 +18597,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "lambdaworks/scountries":{ - "project":"lambdaworks/scountries", - "repoUrl":"https://github.com/lambdaworks/scountries.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"io.lambdaworks%scountries", + "j5ik2o/base64scala":{ + "project":"j5ik2o/base64scala", + "repoUrl":"https://github.com/j5ik2o/base64scala.git", + "revision":"v1.0.55", + "version":"1.0.55", + "targets":"com.github.j5ik2o%base64scala com.github.j5ik2o%base64scala-example com.github.j5ik2o%base64scala-root", "config":{ "projects":{ "exclude":[ @@ -18466,19 +18641,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val Scala3: String = \"3.2.2\"", - "replaceWith":"val Scala3: String = \"\"" + "path":"project/Dependencies.scala", + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "lambdaworks/scurl-detector":{ - "project":"lambdaworks/scurl-detector", - "repoUrl":"https://github.com/lambdaworks/scurl-detector.git", - "revision":"v1.1.0", - "version":"1.1.0", - "targets":"io.lambdaworks%scurl-detector", + "j5ik2o/docker-controller-scala":{ + "project":"j5ik2o/docker-controller-scala", + "repoUrl":"https://github.com/j5ik2o/docker-controller-scala.git", + "revision":"v1.15.34", + "version":"1.15.34", + "targets":"com.github.j5ik2o%docker-controller-scala-dynamodb-local com.github.j5ik2o%docker-controller-scala-zookeeper com.github.j5ik2o%docker-controller-scala-elasticsearch com.github.j5ik2o%docker-controller-scala-kafka com.github.j5ik2o%docker-controller-scala-scalatest com.github.j5ik2o%docker-controller-scala-localstack com.github.j5ik2o%docker-controller-scala-elasticmq com.github.j5ik2o%docker-controller-scala-core com.github.j5ik2o%docker-controller-scala-memcached com.github.j5ik2o%docker-controller-scala-minio com.github.j5ik2o%docker-controller-scala-postgresql com.github.j5ik2o%docker-controller-scala-flyway com.github.j5ik2o%docker-controller-scala-redis com.github.j5ik2o%docker-controller-scala-mysql com.github.j5ik2o%docker-controller-scala-root", "config":{ "projects":{ "exclude":[ @@ -18489,7 +18664,7 @@ } }, "java":{ - "version":"17" + "version":"21" }, "sbt":{ "commands":[ @@ -18504,22 +18679,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val Scala3: String = \"3.2.2\"", - "replaceWith":"val Scala3: String = \"\"" + "path":"project/Dependencies.scala", + "pattern":"val scala3Version = \"3.1.3\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "lambdaworks/zio-elasticsearch":{ - "project":"lambdaworks/zio-elasticsearch", - "repoUrl":"https://github.com/lambdaworks/zio-elasticsearch.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"io.lambdaworks%zio-elasticsearch", + "j5ik2o/intervals-scala":{ + "project":"j5ik2o/intervals-scala", + "repoUrl":"https://github.com/j5ik2o/intervals-scala.git", + "revision":"v1.0.59", + "version":"1.0.59", + "targets":"com.github.j5ik2o%intervals-scala", "config":{ "projects":{ "exclude":[ @@ -18530,7 +18705,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -18548,19 +18723,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/BuildHelper.scala", - "pattern":"val Scala3: String = \"3.2.2\"", - "replaceWith":"val Scala3: String = \"\"" + "path":"project/Dependencies.scala", + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "lancewalton/treelog":{ - "project":"lancewalton/treelog", - "repoUrl":"https://github.com/lancewalton/treelog.git", - "revision":"v1.8.2", - "version":"1.8.2", - "targets":"com.casualmiracles%treelog-cats", + "j5ik2o/pekko-kinesis":{ + "project":"j5ik2o/pekko-kinesis", + "repoUrl":"https://github.com/j5ik2o/pekko-kinesis.git", + "revision":"v1.2.22", + "version":"1.2.22", + "targets":"com.github.j5ik2o%pekko-kinesis-kcl com.github.j5ik2o%pekko-kinesis-kcl-dynamodb-streams com.github.j5ik2o%pekko-kinesis-kpl com.github.j5ik2o%pekko-kinesis-root", "config":{ "projects":{ "exclude":[ @@ -18571,7 +18746,7 @@ } }, "java":{ - "version":"11" + "version":"21" }, "sbt":{ "commands":[ @@ -18589,19 +18764,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.0\"", - "replaceWith":"val Scala3 = \"\"" + "path":"project/Dependencies.scala", + "pattern":"val scala3Version = \"3.3.1\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "laserdisc-io/fs2-aws":{ - "project":"laserdisc-io/fs2-aws", - "repoUrl":"https://github.com/laserdisc-io/fs2-aws.git", - "revision":"v6.0.0", - "version":"6.0.0", - "targets":"io.laserdisc%fs2-aws-s3 io.laserdisc%pure-sqs-tagless io.laserdisc%pure-cloudwatch-tagless io.laserdisc%pure-sns-tagless io.laserdisc%fs2-aws-kinesis io.laserdisc%pure-dynamodb-tagless io.laserdisc%fs2-aws-dynamodb io.laserdisc%fs2-aws-sns io.laserdisc%fs2-aws-testkit io.laserdisc%pure-kinesis-tagless io.laserdisc%fs2-aws-core io.laserdisc%pure-s3-tagless io.laserdisc%fs2-aws-sqs", + "j5ik2o/pekko-persistence-dynamodb":{ + "project":"j5ik2o/pekko-persistence-dynamodb", + "repoUrl":"https://github.com/j5ik2o/pekko-persistence-dynamodb.git", + "revision":"v1.0.42", + "version":"1.0.42", + "targets":"com.github.j5ik2o%pekko-persistence-dynamodb-state-v2 com.github.j5ik2o%pekko-persistence-dynamodb-base com.github.j5ik2o%pekko-persistence-dynamodb-journal-v1 com.github.j5ik2o%documents com.github.j5ik2o%pekko-persistence-dynamodb-journal-v2 com.github.j5ik2o%pekko-persistence-dynamodb-base-v2 com.github.j5ik2o%pekko-persistence-dynamodb-snapshot-v1 com.github.j5ik2o%pekko-persistence-dynamodb-snapshot-base com.github.j5ik2o%pekko-persistence-dynamodb-base-v1 com.github.j5ik2o%pekko-persistence-dynamodb-journal-base com.github.j5ik2o%pekko-persistence-dynamodb-test com.github.j5ik2o%pekko-persistence-dynamodb-state-v1 com.github.j5ik2o%pekko-persistence-dynamodb-snapshot-v2 com.github.j5ik2o%pekko-persistence-dynamodb-state-base", "config":{ "projects":{ "exclude":[ @@ -18612,11 +18787,11 @@ } }, "java":{ - "version":"11" + "version":"21" }, "sbt":{ "commands":[ - "disableFatalWarnings" + ], "options":[ @@ -18627,22 +18802,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.1\"", - "replaceWith":"val scala3 = \"\"" + "path":"project/Dependencies.scala", + "pattern":"val scala3Version = \"3.3.1\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "laserdisc-io/log-effect":{ - "project":"laserdisc-io/log-effect", - "repoUrl":"https://github.com/laserdisc-io/log-effect.git", - "revision":"v0.17.0", - "version":"0.17.0", - "targets":"io.laserdisc%log-effect-core io.laserdisc%log-effect-fs2 io.laserdisc%log-effect-interop io.laserdisc%log-effect-zio", + "jamesward/zio-mavencentral":{ + "project":"jamesward/zio-mavencentral", + "repoUrl":"https://github.com/jamesward/zio-mavencentral.git", + "revision":"v0.0.7", + "version":"0.0.7", + "targets":"com.jamesward%zio-mavencentral", "config":{ "projects":{ "exclude":[ @@ -18670,20 +18845,30 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala_3 = \"3.2.1\"", - "replaceWith":"val scala_3 = \"\"" - } + ] } }, - "laserdisc-io/scanamo-circe":{ - "project":"laserdisc-io/scanamo-circe", - "repoUrl":"https://github.com/laserdisc-io/scanamo-circe.git", - "revision":"v3.0.0", - "version":"3.0.0", - "targets":"io.laserdisc%scanamo-circe", + "jandom-devel/scalafix":{ + "project":"jandom-devel/scalafix", + "repoUrl":"https://github.com/jandom-devel/scalafix.git", + "revision":"v0.10.0", + "version":"0.10.0", + "targets":"it.unich.scalafix%scalafix" + }, + "janlisse/zio-jwt-validator":{ + "project":"janlisse/zio-jwt-validator", + "repoUrl":"https://github.com/janlisse/zio-jwt-validator.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"io.github.janlisse%zio-jwt-validator" + }, + "janstenpickle/hotswap-ref":{ + "project":"janstenpickle/hotswap-ref", + "repoUrl":"https://github.com/janstenpickle/hotswap-ref.git", + "revision":"v0.2.2", + "version":"0.2.2", + "targets":"io.janstenpickle%hotswap-ref", "config":{ "projects":{ "exclude":[ @@ -18694,7 +18879,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -18712,19 +18897,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.1.1\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "lego/woof":{ - "project":"lego/woof", - "repoUrl":"https://github.com/lego/woof.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"org.legogroup%woof-http4s org.legogroup%woof-slf4j-common org.legogroup%woof-slf4j org.legogroup%woof-core org.legogroup%woof-slf4j-2", + "jap-company/fields":{ + "project":"jap-company/fields", + "repoUrl":"https://github.com/jap-company/fields.git", + "revision":"v0.4.16", + "version":"0.4.16", + "targets":"company.jap%fields-core company.jap%fields-cats company.jap%fields-zio", "config":{ "projects":{ "exclude":[ @@ -18735,7 +18920,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -18752,11 +18937,3664 @@ }, "tests":"full", "sourcePatches":[ - - ] - } - }, - "lemonlabsuk/scala-uri":{ + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.1.2\"", + "replaceWith":"val Scala3 = \"\"" + } + ] + } + }, + "japgolly/clear-config":{ + "project":"japgolly/clear-config", + "repoUrl":"https://github.com/japgolly/clear-config.git", + "revision":"v3.1.0", + "version":"3.1.0", + "targets":"com.github.japgolly.clearconfig%core", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"compile-only", + "sourcePatches":[ + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.1.3\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "japgolly/microlibs-scala":{ + "project":"japgolly/microlibs-scala", + "repoUrl":"https://github.com/japgolly/microlibs-scala.git", + "revision":"v4.2.1", + "version":"4.2.1", + "targets":"com.github.japgolly.microlibs%utils com.github.japgolly.microlibs%disjunction com.github.japgolly.microlibs%nonempty com.github.japgolly.microlibs%test-util com.github.japgolly.microlibs%adt-macros com.github.japgolly.microlibs%name-fn com.github.japgolly.microlibs%multimap com.github.japgolly.microlibs%stdlib-ext com.github.japgolly.microlibs%types com.github.japgolly.microlibs%cats-ext com.github.japgolly.microlibs%compile-time com.github.japgolly.microlibs%recursion", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"project/Dependencies.scala", + "pattern":"def scala3 = \"3.1.3\"", + "replaceWith":"def scala3 = \"\"" + } + ] + } + }, + "japgolly/nyaya":{ + "project":"japgolly/nyaya", + "repoUrl":"https://github.com/japgolly/nyaya.git", + "revision":"v1.1.0", + "version":"1.1.0", + "targets":"com.github.japgolly.nyaya%nyaya-test com.github.japgolly.nyaya%nyaya-util com.github.japgolly.nyaya%nyaya-prop com.github.japgolly.nyaya%nyaya-gen com.github.japgolly.nyaya%nyaya-gen-circe", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.1.3\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "japgolly/scala-graal":{ + "project":"japgolly/scala-graal", + "repoUrl":"https://github.com/japgolly/scala-graal.git", + "revision":"v2.1.0", + "version":"2.1.0", + "targets":"com.github.japgolly.scala-graal%core com.github.japgolly.scala-graal%core-js com.github.japgolly.scala-graal%ext-boopickle com.github.japgolly.scala-graal%ext-prometheus", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"compile-only", + "sourcePatches":[ + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.1.3\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "japgolly/scalacss":{ + "project":"japgolly/scalacss", + "repoUrl":"https://github.com/japgolly/scalacss.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"com.github.japgolly.scalacss%core", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.0.1\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "japgolly/test-state":{ + "project":"japgolly/test-state", + "repoUrl":"https://github.com/japgolly/test-state.git", + "revision":"v3.1.0", + "version":"3.1.0", + "targets":"com.github.japgolly.test-state%dom-zipper com.github.japgolly.test-state%util com.github.japgolly.test-state%ext-selenium com.github.japgolly.test-state%dom-zipper-jsoup com.github.japgolly.test-state%util-selenium com.github.japgolly.test-state%ext-nyaya com.github.japgolly.test-state%dom-zipper-selenium com.github.japgolly.test-state%ext-cats com.github.japgolly.test-state%core", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + "ext-selenium":{ + "tests":"compile-only" + }, + "dom-zipper-selenium":{ + "tests":"compile-only" + } + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.1.3\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "japgolly/univeq":{ + "project":"japgolly/univeq", + "repoUrl":"https://github.com/japgolly/univeq.git", + "revision":"v2.0.1", + "version":"2.0.1", + "targets":"com.github.japgolly.univeq%univeq-cats com.github.japgolly.univeq%univeq", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.0.1\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "japgolly/webapp-util":{ + "project":"japgolly/webapp-util", + "repoUrl":"https://github.com/japgolly/webapp-util.git", + "revision":"v2.0.0-RC12", + "version":"2.0.0-RC12", + "targets":"com.github.japgolly.webapp-util%test com.github.japgolly.webapp-util%core-circe com.github.japgolly.webapp-util%test-boopickle com.github.japgolly.webapp-util%test-cats-effect com.github.japgolly.webapp-util%db-postgres com.github.japgolly.webapp-util%core com.github.japgolly.webapp-util%test-circe com.github.japgolly.webapp-util%core-okhttp4 com.github.japgolly.webapp-util%core-boopickle com.github.japgolly.webapp-util%core-cats-effect com.github.japgolly.webapp-util%test-db-postgres", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"project/Dependencies.scala", + "pattern":"def scala3 = \"3.1.3\"", + "replaceWith":"def scala3 = \"\"" + } + ] + } + }, + "jatcwang/difflicious":{ + "project":"jatcwang/difflicious", + "repoUrl":"https://github.com/jatcwang/difflicious.git", + "revision":"v0.4.2", + "version":"0.4.2", + "targets":"com.github.jatcwang%difflicious-munit com.github.jatcwang%difflicious-weaver com.github.jatcwang%difflicious-scalatest com.github.jatcwang%difflicious-core com.github.jatcwang%difflicious-cats", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "jbwheatley/pact4s":{ + "project":"jbwheatley/pact4s", + "repoUrl":"https://github.com/jbwheatley/pact4s.git", + "revision":"v0.10.1-java8", + "version":"0.10.1-java8", + "targets":"io.github.jbwheatley%pact4s-spray-json io.github.jbwheatley%pact4s-scalatest io.github.jbwheatley%pact4s-circe io.github.jbwheatley%pact4s-play-json io.github.jbwheatley%pact4s-munit-cats-effect io.github.jbwheatley%pact4s-models io.github.jbwheatley%pact4s-core io.github.jbwheatley%pact4s-weaver", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + "set shared/scalacOptions --= Seq(\"-Wconf:cat=deprecation:i\", \"-Xfatal-warnings\") " + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "jchapuis/fs2-kafka-mock":{ + "project":"jchapuis/fs2-kafka-mock", + "repoUrl":"https://github.com/jchapuis/fs2-kafka-mock.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"io.github.jchapuis%fs2-kafka-mock", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "jcouyang/dhall-generic":{ + "project":"jcouyang/dhall-generic", + "repoUrl":"https://github.com/jcouyang/dhall-generic.git", + "revision":"v0.3.95", + "version":"0.3.95", + "targets":"us.oyanglul%dhall-generic", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "jcouyang/jujiu":{ + "project":"jcouyang/jujiu", + "repoUrl":"https://github.com/jcouyang/jujiu.git", + "revision":"v0.27.0", + "version":"0.27.0", + "targets":"us.oyanglul%jujiu", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.0.0\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "jcouyang/meow":{ + "project":"jcouyang/meow", + "repoUrl":"https://github.com/jcouyang/meow.git", + "revision":"v0.4.14", + "version":"0.4.14", + "targets":"us.oyanglul%meow" + }, + "jczuchnowski/zio-pulsar":{ + "project":"jczuchnowski/zio-pulsar", + "repoUrl":"https://github.com/jczuchnowski/zio-pulsar.git", + "revision":"v0.2", + "version":"0.2", + "targets":"com.github.jczuchnowski%zio-pulsar", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "jd557/interim":{ + "project":"jd557/interim", + "repoUrl":"https://github.com/jd557/interim.git", + "revision":"v0.1.4", + "version":"0.1.4", + "targets":"eu.joaocosta%interim", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "jd557/minart":{ + "project":"jd557/minart", + "repoUrl":"https://github.com/jd557/minart.git", + "revision":"v0.5.3", + "version":"0.5.3", + "targets":"eu.joaocosta%minart-backend eu.joaocosta%minart-image eu.joaocosta%minart-sound eu.joaocosta%minart-core eu.joaocosta%minart eu.joaocosta%minart-pure", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "jelly-rdf/jelly-jvm":{ + "project":"jelly-rdf/jelly-jvm", + "repoUrl":"https://github.com/jelly-rdf/jelly-jvm.git", + "revision":"v0.5.3", + "version":"0.5.3", + "targets":"eu.ostrzyciel.jelly%jelly-core eu.ostrzyciel.jelly%jelly-jvm eu.ostrzyciel.jelly%jelly-grpc eu.ostrzyciel.jelly%jelly-stream eu.ostrzyciel.jelly%jelly-jena eu.ostrzyciel.jelly%jelly-rdf4j" + }, + "jilen/play-circe":{ + "project":"jilen/play-circe", + "repoUrl":"https://github.com/jilen/play-circe.git", + "revision":"v2814.4", + "version":"2814.4", + "targets":"com.dripower%play-circe", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "jkobejs/cron":{ + "project":"jkobejs/cron", + "repoUrl":"https://github.com/jkobejs/cron.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"io.github.jkobejs%zio-cron io.github.jkobejs%zio1-cron" + }, + "jkugiya/aws-v4-signer-scala":{ + "project":"jkugiya/aws-v4-signer-scala", + "repoUrl":"https://github.com/jkugiya/aws-v4-signer-scala.git", + "revision":"0.14", + "version":"0.14", + "targets":"com.github.jkugiya%aws-v4-signer-scala" + }, + "jkugiya/ulid-scala":{ + "project":"jkugiya/ulid-scala", + "repoUrl":"https://github.com/jkugiya/ulid-scala.git", + "revision":"v1.0.3", + "version":"1.0.3", + "targets":"com.github.jkugiya%ulid-scala", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "jmcardon/tsec":{ + "project":"jmcardon/tsec", + "repoUrl":"https://github.com/jmcardon/tsec.git", + "revision":"v0.3.0-M2", + "version":"0.3.0-M2", + "targets":"io.github.jmcardon%tsec-bouncy io.github.jmcardon%tsec-password io.github.jmcardon%tsec-mac io.github.jmcardon%tsec-cipher-bouncy io.github.jmcardon%tsec-jwt-core io.github.jmcardon%tsec-signatures io.github.jmcardon%tsec-cipher-jca io.github.jmcardon%tsec-hash-bouncy io.github.jmcardon%tsec-cipher-core io.github.jmcardon%tsec-jwt-sig io.github.jmcardon%tsec-common io.github.jmcardon%tsec-jwt-mac io.github.jmcardon%tsec-hash-jca" + }, + "joan38/kubernetes-client":{ + "project":"joan38/kubernetes-client", + "repoUrl":"https://github.com/joan38/kubernetes-client.git", + "revision":"v0.10.0", + "version":"0.10.0", + "targets":"com.goyeau%kubernetes-client", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"compile-only", + "sourcePatches":[ + + ] + } + }, + "jobial-io/scase":{ + "project":"jobial-io/scase", + "repoUrl":"https://github.com/jobial-io/scase.git", + "revision":"0.9.0", + "version":"0.9.0", + "targets":"io.jobial%scase-lambda-scala3-example", + "config":{ + "projects":{ + "exclude":[ + "io.jobial%scase-lambda-scala3-example" + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "jodersky/applib":{ + "project":"jodersky/applib", + "repoUrl":"https://github.com/jodersky/applib.git", + "revision":"", + "version":"0.3.0", + "targets":"io.crashbox%clam io.crashbox%clam-core io.crashbox%confuse", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sc", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "jodersky/cronic":{ + "project":"jodersky/cronic", + "repoUrl":"https://github.com/jodersky/cronic.git", + "revision":"", + "version":"0.1.0", + "targets":"io.crashbox%cronic" + }, + "jodersky/identicon":{ + "project":"jodersky/identicon", + "repoUrl":"https://github.com/jodersky/identicon.git", + "revision":"0.4.0", + "version":"0.4.0", + "targets":"io.crashbox%identicon" + }, + "jodersky/redicl":{ + "project":"jodersky/redicl", + "repoUrl":"https://github.com/jodersky/redicl.git", + "revision":"0.1.2", + "version":"0.1.2", + "targets":"io.crashbox%redicl" + }, + "jodersky/scala-argparse":{ + "project":"jodersky/scala-argparse", + "repoUrl":"https://github.com/jodersky/scala-argparse.git", + "revision":"0.20.0", + "version":"0.20.0", + "targets":"io.crashbox%configparse io.crashbox%argparse-ini io.crashbox%argparse io.crashbox%configparse-core", + "config":{ + "projects":{ + "exclude":[ + "io.crashbox%configparse", + "io.crashbox%configparse-core" + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sc", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "jodersky/scalapb-ujson":{ + "project":"jodersky/scalapb-ujson", + "repoUrl":"https://github.com/jodersky/scalapb-ujson.git", + "revision":"0.3.1", + "version":"0.3.1", + "targets":"io.crashbox%scalapb-ujson", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"disabled", + "sourcePatches":[ + + ] + } + }, + "jodersky/simplesql":{ + "project":"jodersky/simplesql", + "repoUrl":"https://github.com/jodersky/simplesql.git", + "revision":"0.2.2", + "version":"0.2.2", + "targets":"io.crashbox%simplesql" + }, + "jodersky/ustats":{ + "project":"jodersky/ustats", + "repoUrl":"https://github.com/jodersky/ustats.git", + "revision":"0.6.0", + "version":"0.6.0", + "targets":"io.crashbox%ustats io.crashbox%ustats-server", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sc", + "pattern":"val scala3 = \"3.1.2\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "jodersky/yamlesque":{ + "project":"jodersky/yamlesque", + "repoUrl":"https://github.com/jodersky/yamlesque.git", + "revision":"0.3.2", + "version":"0.3.2", + "targets":"io.crashbox%yamlesque io.crashbox%yamlesque-upickle", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sc", + "pattern":"val scala3 = \"3.0.2\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "joernio/joern":{ + "project":"joernio/joern", + "repoUrl":"https://github.com/joernio/joern.git", + "revision":"v2.0.142", + "version":"2.0.142", + "targets":"io.joern%querydb io.joern%c2cpg io.joern%ghidra2cpg io.joern%joern-cli io.joern%jimple2cpg io.joern%semanticcpg io.joern%jssrc2cpg io.joern%rubysrc2cpg io.joern%php2cpg io.joern%gosrc2cpg io.joern%console io.joern%kotlin2cpg io.joern%x2cpg io.joern%pysrc2cpg io.joern%dataflowengineoss io.joern%macros io.joern%javasrc2cpg", + "config":{ + "projects":{ + "exclude":[ + "php2cpg" + ], + "overrides":{ + "x2cpg":{ + "tests":"compile-only" + }, + "javasrc2cpg":{ + "tests":"compile-only" + }, + "jssrc2cpg":{ + "tests":"compile-only" + } + } + }, + "java":{ + "version":"21" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "johnhungerford/generic-schema":{ + "project":"johnhungerford/generic-schema", + "repoUrl":"https://github.com/johnhungerford/generic-schema.git", + "revision":"v1.2.0", + "version":"1.2.0", + "targets":"io.github.johnhungerford.generic.schema%core io.github.johnhungerford.generic.schema%gs-circe io.github.johnhungerford.generic.schema%gs-tapir io.github.johnhungerford.generic.schema%gs-upickle" + }, + "johnspade/csv3s":{ + "project":"johnspade/csv3s", + "repoUrl":"https://github.com/johnspade/csv3s.git", + "revision":"v0.1.3", + "version":"0.1.3", + "targets":"ru.johnspade%csv3s", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.3.0\"", + "replaceWith":"val scala3Version = \"\"" + } + ] + } + }, + "johnspade/tgbot-utils":{ + "project":"johnspade/tgbot-utils", + "repoUrl":"https://github.com/johnspade/tgbot-utils.git", + "revision":"v0.7.1", + "version":"0.7.1", + "targets":"ru.johnspade%tgbot-utils ru.johnspade%tgbot-callback-data ru.johnspade%tgbot-callback-queries ru.johnspade%tgbot-message-entities", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "joohnnie/retry":{ + "project":"joohnnie/retry", + "repoUrl":"https://github.com/joohnnie/retry.git", + "revision":"", + "version":"1.0.1", + "targets":"fun.zyx%retry" + }, + "jozic/scalaj":{ + "project":"jozic/scalaj", + "repoUrl":"https://github.com/jozic/scalaj.git", + "revision":"v0.3.2", + "version":"0.3.2", + "targets":"com.daodecode%scalaj-collection com.daodecode%scalaj-googleoptional" + }, + "jozic/scalax-collection":{ + "project":"jozic/scalax-collection", + "repoUrl":"https://github.com/jozic/scalax-collection.git", + "revision":"v0.3.4", + "version":"0.3.4", + "targets":"com.daodecode%scalax-collection" + }, + "jphmrst/bps":{ + "project":"jphmrst/bps", + "repoUrl":"https://github.com/jphmrst/bps.git", + "revision":"", + "version":"0.1.0", + "targets":"org.maraist%bps-scala", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.1.0\"", + "replaceWith":"val scala3Version = \"\"" + } + ] + } + }, + "jphmrst/scala-automata":{ + "project":"jphmrst/scala-automata", + "repoUrl":"https://github.com/jphmrst/scala-automata.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"org.maraist%scala-automata", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.0.2\"", + "replaceWith":"val scala3Version = \"\"" + } + ] + } + }, + "jphmrst/scala-latex":{ + "project":"jphmrst/scala-latex", + "repoUrl":"https://github.com/jphmrst/scala-latex.git", + "revision":"v1.1.2", + "version":"1.1.2", + "targets":"org.maraist%scala-latex", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.0.1\"", + "replaceWith":"val scala3Version = \"\"" + } + ] + } + }, + "jphmrst/scalautils":{ + "project":"jphmrst/scalautils", + "repoUrl":"https://github.com/jphmrst/scalautils.git", + "revision":"", + "version":"1.0.1", + "targets":"org.maraist%misc-utils", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.1.0\"", + "replaceWith":"val scala3Version = \"\"" + } + ] + } + }, + "json4s/json4s":{ + "project":"json4s/json4s", + "repoUrl":"https://github.com/json4s/json4s.git", + "revision":"v4.1.0-M3", + "version":"4.1.0-M3", + "targets":"org.json4s%json4s-jackson org.json4s%json4s-core org.json4s%json4s-mongo org.json4s%json4s-native org.json4s%json4s-native-core org.json4s%json4s-xml org.json4s%json4s-scalaz org.json4s%json4s-scalap org.json4s%json4s-ext org.json4s%json4s-jackson-core org.json4s%json4s-ast", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"project/build.scala", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } + ] + } + }, + "juliano/pokeapi-scala":{ + "project":"juliano/pokeapi-scala", + "repoUrl":"https://github.com/juliano/pokeapi-scala.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"io.github.juliano%pokeapi-scala", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"compile-only", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.2.0\"", + "replaceWith":"val scala3Version = \"\"" + } + ] + } + }, + "julianpeeters/avrohugger":{ + "project":"julianpeeters/avrohugger", + "repoUrl":"https://github.com/julianpeeters/avrohugger.git", + "revision":"v2.8.0", + "version":"2.8.0", + "targets":"com.julianpeeters%avrohugger-core com.julianpeeters%avrohugger com.julianpeeters%avrohugger-filesorter com.julianpeeters%avrohugger-tools", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "julianpeeters/dc10":{ + "project":"julianpeeters/dc10", + "repoUrl":"https://github.com/julianpeeters/dc10.git", + "revision":"v0.3.0", + "version":"0.3.0", + "targets":"com.julianpeeters%dc10 com.julianpeeters%dc10-core com.julianpeeters%dc10-io", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "julianpeeters/dc10-cats":{ + "project":"julianpeeters/dc10-cats", + "repoUrl":"https://github.com/julianpeeters/dc10-cats.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.julianpeeters%dc10-cats", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "julianpeeters/dc10-cats-effect":{ + "project":"julianpeeters/dc10-cats-effect", + "repoUrl":"https://github.com/julianpeeters/dc10-cats-effect.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.julianpeeters%dc10-cats-effect", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "julianpeeters/dc10-scala":{ + "project":"julianpeeters/dc10-scala", + "repoUrl":"https://github.com/julianpeeters/dc10-scala.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"com.julianpeeters%dc10-scala", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "julianpeeters/schemabuilder4cats":{ + "project":"julianpeeters/schemabuilder4cats", + "repoUrl":"https://github.com/julianpeeters/schemabuilder4cats.git", + "revision":"v0.1.3", + "version":"0.1.3", + "targets":"com.julianpeeters%schemabuilder4cats", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "jvican/dijon":{ + "project":"jvican/dijon", + "repoUrl":"https://github.com/jvican/dijon.git", + "revision":"", + "version":"0.0.0+48-f17bfc3b", + "targets":"", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "jwojnowski/fs2-aes":{ + "project":"jwojnowski/fs2-aes", + "repoUrl":"https://github.com/jwojnowski/fs2-aes.git", + "revision":"v0.3.1", + "version":"0.3.1", + "targets":"me.wojnowski%fs2-aes", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.3.0\"", + "replaceWith":"val Scala3 = \"\"" + } + ] + } + }, + "jwojnowski/googlecloud4s":{ + "project":"jwojnowski/googlecloud4s", + "repoUrl":"https://github.com/jwojnowski/googlecloud4s.git", + "revision":"v0.8.1", + "version":"0.8.1", + "targets":"me.wojnowski%googlecloud4s-core me.wojnowski%googlecloud4s-auth me.wojnowski%googlecloud4s-firestore me.wojnowski%googlecloud4s-pubsub me.wojnowski%googlecloud4s-logging-logback-circe me.wojnowski%googlecloud4s-storage", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"compile-only", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } + ] + } + }, + "jwojnowski/oidc4s":{ + "project":"jwojnowski/oidc4s", + "repoUrl":"https://github.com/jwojnowski/oidc4s.git", + "revision":"v0.11.0", + "version":"0.11.0", + "targets":"me.wojnowski%oidc4s-circe me.wojnowski%oidc4s-core me.wojnowski%oidc4s-quick-sttp-circe me.wojnowski%oidc4s-sttp", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.3.0\"", + "replaceWith":"val Scala3 = \"\"" + } + ] + } + }, + "jwt-scala/jwt-scala":{ + "project":"jwt-scala/jwt-scala", + "repoUrl":"https://github.com/jwt-scala/jwt-scala.git", + "revision":"v9.4.4", + "version":"9.4.4", + "targets":"com.github.jwt-scala%jwt-json4s-jackson com.github.jwt-scala%jwt-circe com.github.jwt-scala%jwt-argonaut com.github.jwt-scala%jwt-zio-json com.github.jwt-scala%jwt-json4s-native com.github.jwt-scala%jwt-core com.github.jwt-scala%jwt-upickle com.github.jwt-scala%jwt-json-common com.github.jwt-scala%jwt-json4s-common", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "kailuowang/mau":{ + "project":"kailuowang/mau", + "repoUrl":"https://github.com/kailuowang/mau.git", + "revision":"v0.3.2", + "version":"0.3.2", + "targets":"com.kailuowang%mau", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "kaizen-solutions/trace4cats-zio-extras":{ + "project":"kaizen-solutions/trace4cats-zio-extras", + "repoUrl":"https://github.com/kaizen-solutions/trace4cats-zio-extras.git", + "revision":"v6.3.1", + "version":"6.3.1", + "targets":"io.kaizen-solutions%trace4cats-zio-extras-tapir io.kaizen-solutions%trace4cats-zio-extras-fs2 io.kaizen-solutions%trace4cats-zio-extras-virgil io.kaizen-solutions%trace4cats-zio-extras-zio-kafka io.kaizen-solutions%trace4cats-zio-extras-skunk io.kaizen-solutions%trace4cats-zio-extras-doobie io.kaizen-solutions%trace4cats-zio-extras-zio-http io.kaizen-solutions%trace4cats-zio-extras-http4s io.kaizen-solutions%trace4cats-zio-extras-fs2-kafka io.kaizen-solutions%trace4cats-zio-extras-core io.kaizen-solutions%trace4cats-zio-extras-sttp", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "kaizen-solutions/virgil":{ + "project":"kaizen-solutions/virgil", + "repoUrl":"https://github.com/kaizen-solutions/virgil.git", + "revision":"v1.0.4", + "version":"1.0.4", + "targets":"io.kaizen-solutions%virgil-cats-effect io.kaizen-solutions%virgil-core io.kaizen-solutions%virgil-zio", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "kalin-rudnicki/harness":{ + "project":"kalin-rudnicki/harness", + "repoUrl":"https://github.com/kalin-rudnicki/harness.git", + "revision":"2.2.2", + "version":"2.2.2", + "targets":"io.github.kalin-rudnicki%harness-http-server io.github.kalin-rudnicki%harness-archive-client io.github.kalin-rudnicki%harness-zio-test io.github.kalin-rudnicki%harness-http-client io.github.kalin-rudnicki%harness-cli io.github.kalin-rudnicki%harness-xml io.github.kalin-rudnicki%harness-test io.github.kalin-rudnicki%harness-csv io.github.kalin-rudnicki%harness-archive-model io.github.kalin-rudnicki%harness-web io.github.kalin-rudnicki%harness-zio io.github.kalin-rudnicki%harness-core io.github.kalin-rudnicki%harness-sql io.github.kalin-rudnicki%harness-http-server-test", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala_3 = \"3.3.0\"", + "replaceWith":"val Scala_3 = \"\"" + } + ] + } + }, + "kalin-rudnicki/slyce-zio":{ + "project":"kalin-rudnicki/slyce-zio", + "repoUrl":"https://github.com/kalin-rudnicki/slyce-zio.git", + "revision":"2.0.3", + "version":"2.0.3", + "targets":"io.github.kalin-rudnicki%slyce-core io.github.kalin-rudnicki%slyce-generate io.github.kalin-rudnicki%slyce-parse io.github.kalin-rudnicki%slyce-parse-exe", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala_3 = \"3.1.3-RC5\"", + "replaceWith":"val Scala_3 = \"\"" + } + ] + } + }, + "kamon-io/kamon":{ + "project":"kamon-io/kamon", + "repoUrl":"https://github.com/kamon-io/kamon.git", + "revision":"v2.6.5", + "version":"2.6.5", + "targets":"io.kamon%kamon-prometheus io.kamon%kamon-core io.kamon%kamon-testkit io.kamon%kamon-system-metrics io.kamon%kamon-annotation io.kamon%kamon-opentelemetry io.kamon%kamon-scala-future io.kamon%kamon-newrelic io.kamon%kamon-graphite io.kamon%kamon-apm-reporter io.kamon%kamon-caffeine io.kamon%kamon-kafka io.kamon%kamon-zipkin io.kamon%kamon-status-page io.kamon%kamon-executors io.kamon%kamon-cats-io-3 io.kamon%kamon-influxdb io.kamon%kamon-instrumentation-common io.kamon%kamon-redis io.kamon%kamon-datadog io.kamon%kamon-statsd io.kamon%kamon-jaeger", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "kamon-io/kamon-http4s":{ + "project":"kamon-io/kamon-http4s", + "repoUrl":"https://github.com/kamon-io/kamon-http4s.git", + "revision":"v2.6.1", + "version":"2.6.1", + "targets":"io.kamon%kamon-http4s-0.23 io.kamon%kamon-http4s-1.0" + }, + "karazinscalausersgroup/mongo-literals":{ + "project":"karazinscalausersgroup/mongo-literals", + "repoUrl":"https://github.com/karazinscalausersgroup/mongo-literals.git", + "revision":"", + "version":"0.2.3", + "targets":"group.scala.karazin%mongo-literals", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "katrix/minejson":{ + "project":"katrix/minejson", + "repoUrl":"https://github.com/katrix/minejson.git", + "revision":"", + "version":"0.4.0", + "targets":"net.katsstuff%minejson-text", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"disabled", + "sourcePatches":[ + + ] + } + }, + "katrix/perspective":{ + "project":"katrix/perspective", + "repoUrl":"https://github.com/katrix/perspective.git", + "revision":"", + "version":"0.1.0", + "targets":"net.katsstuff%perspective-derivation net.katsstuff%perspective" + }, + "katrix/typenbt":{ + "project":"katrix/typenbt", + "repoUrl":"https://github.com/katrix/typenbt.git", + "revision":"", + "version":"0.6.0", + "targets":"net.katsstuff%typenbt net.katsstuff%typenbt-extra net.katsstuff%typenbt-mojangson" + }, + "kcrypt/scala-biginteger":{ + "project":"kcrypt/scala-biginteger", + "repoUrl":"https://github.com/kcrypt/scala-biginteger.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"pt.kcry%biginteger", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "kcrypt/scala-blake3":{ + "project":"kcrypt/scala-blake3", + "repoUrl":"https://github.com/kcrypt/scala-blake3.git", + "revision":"v3.1.1", + "version":"3.1.1", + "targets":"pt.kcry%blake3", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "kcrypt/scala-sha":{ + "project":"kcrypt/scala-sha", + "repoUrl":"https://github.com/kcrypt/scala-sha.git", + "revision":"v2.0.1", + "version":"2.0.1", + "targets":"pt.kcry%sha", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "keirlawson/fs2-progress":{ + "project":"keirlawson/fs2-progress", + "repoUrl":"https://github.com/keirlawson/fs2-progress.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"io.github.keirlawson%fs2-progress", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.2\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "kevin-lee/effectie":{ + "project":"kevin-lee/effectie", + "repoUrl":"https://github.com/kevin-lee/effectie.git", + "revision":"v2.0.0-beta13", + "version":"2.0.0-beta13", + "targets":"io.kevinlee%effectie-syntax io.kevinlee%effectie-cats-effect2 io.kevinlee%effectie-test4cats io.kevinlee%effectie-cats-effect3 io.kevinlee%effectie-cats io.kevinlee%effectie-monix3 io.kevinlee%effectie-core", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala3Version = \"3.0.2\"", + "replaceWith":"val Scala3Version = \"\"" + } + ] + } + }, + "kevin-lee/just-semver":{ + "project":"kevin-lee/just-semver", + "repoUrl":"https://github.com/kevin-lee/just-semver.git", + "revision":"v0.13.0", + "version":"0.13.0", + "targets":"io.kevinlee%just-semver io.kevinlee%just-semver-core", + "config":{ + "projects":{ + "exclude":[ + "io.kevinlee%just-semver" + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "kevin-lee/just-sysprocess":{ + "project":"kevin-lee/just-sysprocess", + "repoUrl":"https://github.com/kevin-lee/just-sysprocess.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"io.kevinlee%just-sysprocess", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion} com.olegpy:better-monadic-for_3", + "removeScalacOptionsStartingWith -P:wartremover" + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "kevin-lee/logger-f":{ + "project":"kevin-lee/logger-f", + "repoUrl":"https://github.com/kevin-lee/logger-f.git", + "revision":"v2.0.0-beta21", + "version":"2.0.0-beta21", + "targets":"io.kevinlee%logger-f-slf4j io.kevinlee%logger-f-log4j io.kevinlee%logger-f-sbt-logging io.kevinlee%logger-f-test-kit io.kevinlee%logger-f-core io.kevinlee%logger-f-log4s io.kevinlee%logger-f-logback-mdc-monix3 io.kevinlee%logger-f-cats" + }, + "kevin-lee/openai4s":{ + "project":"kevin-lee/openai4s", + "repoUrl":"https://github.com/kevin-lee/openai4s.git", + "revision":"v0.1.0-alpha5", + "version":"0.1.0-alpha5", + "targets":"io.kevinlee%openai4s-api io.kevinlee%openai4s-config io.kevinlee%openai4s-core io.kevinlee%openai4s-http4s", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala3Version = \"3.3.0\"", + "replaceWith":"val Scala3Version = \"\"" + } + ] + } + }, + "kiberstender/fjwt":{ + "project":"kiberstender/fjwt", + "repoUrl":"https://github.com/kiberstender/fjwt.git", + "revision":"v1.0.2", + "version":"1.0.2", + "targets":"io.github.kiberStender%fjwt", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"project/Common.scala", + "pattern":"val scala3Version = \"3.2.1\"", + "replaceWith":"val scala3Version = \"\"" + } + ] + } + }, + "kierendavies/skunk-migrate":{ + "project":"kierendavies/skunk-migrate", + "repoUrl":"https://github.com/kierendavies/skunk-migrate.git", + "revision":"v0.3.0", + "version":"0.3.0", + "targets":"io.github.kierendavies%skunk-migrate", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"compile-only", + "sourcePatches":[ + + ] + } + }, + "kijuky/enumeratum-scalikejdbc":{ + "project":"kijuky/enumeratum-scalikejdbc", + "repoUrl":"https://github.com/kijuky/enumeratum-scalikejdbc.git", + "revision":"v1.7.3.0", + "version":"1.7.3.0", + "targets":"io.github.kijuky%enumeratum-scalikejdbc4", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "killaitis/http4s-cloud-functions":{ + "project":"killaitis/http4s-cloud-functions", + "repoUrl":"https://github.com/killaitis/http4s-cloud-functions.git", + "revision":"0.4.3", + "version":"0.4.3", + "targets":"de.killaitis%http4s-cloud-functions", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "kirill5k/mongo4cats":{ + "project":"kirill5k/mongo4cats", + "repoUrl":"https://github.com/kirill5k/mongo4cats.git", + "revision":"v0.6.16", + "version":"0.6.16", + "targets":"io.github.kirill5k%mongo4cats-zio io.github.kirill5k%mongo4cats-kernel io.github.kirill5k%mongo4cats-zio-json io.github.kirill5k%mongo4cats-embedded io.github.kirill5k%mongo4cats-circe io.github.kirill5k%mongo4cats-zio-embedded io.github.kirill5k%mongo4cats-core", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"compile-only", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "kitlangton/animus":{ + "project":"kitlangton/animus", + "repoUrl":"https://github.com/kitlangton/animus.git", + "revision":"v0.3.4", + "version":"0.3.4", + "targets":"io.github.kitlangton%animus io.github.kitlangton%root", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "kitlangton/neotype":{ + "project":"kitlangton/neotype", + "repoUrl":"https://github.com/kitlangton/neotype.git", + "revision":"v0.0.9", + "version":"0.0.9", + "targets":"io.github.kitlangton%neotype-zio-json io.github.kitlangton%neotype-zio-config io.github.kitlangton%neotype-zio-schema io.github.kitlangton%neotype-circe io.github.kitlangton%neotype-tapir io.github.kitlangton%neotype io.github.kitlangton%neotype-zio io.github.kitlangton%neotype-zio-quill", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "kitlangton/quotidian":{ + "project":"kitlangton/quotidian", + "repoUrl":"https://github.com/kitlangton/quotidian.git", + "revision":"v0.0.6", + "version":"0.0.6", + "targets":"io.github.kitlangton%quotidian" + }, + "kitlangton/zio-tui":{ + "project":"kitlangton/zio-tui", + "repoUrl":"https://github.com/kitlangton/zio-tui.git", + "revision":"v0.2.1", + "version":"0.2.1", + "targets":"io.github.kitlangton%zio-tui", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "kolemannix/spack":{ + "project":"kolemannix/spack", + "repoUrl":"https://github.com/kolemannix/spack.git", + "revision":"v0.0.4", + "version":"0.0.4", + "targets":"com.kolemannix%spack", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "kolotaev/ride":{ + "project":"kolotaev/ride", + "repoUrl":"https://github.com/kolotaev/ride.git", + "revision":"v1.2.0", + "version":"1.2.0", + "targets":"com.github.kolotaev%ride" + }, + "kordyjan/ogrodnik":{ + "project":"kordyjan/ogrodnik", + "repoUrl":"https://github.com/kordyjan/ogrodnik.git", + "revision":"0.2.0", + "version":"0.2.0", + "targets":"pro.kordyjan%ogrodnik" + }, + "kordyjan/pytanie":{ + "project":"kordyjan/pytanie", + "repoUrl":"https://github.com/kordyjan/pytanie.git", + "revision":"0.1.6", + "version":"0.1.6", + "targets":"pro.kordyjan%pytanie" + }, + "kordyjan/typelogger":{ + "project":"kordyjan/typelogger", + "repoUrl":"https://github.com/kordyjan/typelogger.git", + "revision":"0.1.0", + "version":"0.1.0", + "targets":"pro.kordyjan%typelogger" + }, + "kory33/s2mc-test":{ + "project":"kory33/s2mc-test", + "repoUrl":"https://github.com/kory33/s2mc-test.git", + "revision":"v0.2.3", + "version":"0.2.3", + "targets":"io.github.kory33%s2mc-protocol-core io.github.kory33%s2mc-client-core io.github.kory33%s2mc-test io.github.kory33%s2mc-client-examples io.github.kory33%s2mc-testing io.github.kory33%s2mc-client-impl io.github.kory33%s2mc-protocol-impl" + }, + "koterpillar/refinery":{ + "project":"koterpillar/refinery", + "repoUrl":"https://github.com/koterpillar/refinery.git", + "revision":"v0.0.8", + "version":"0.0.8", + "targets":"com.koterpillar%refinery", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.0.1\"", + "replaceWith":"val scala3Version = \"\"" + } + ] + } + }, + "kovacshuni/circe-config":{ + "project":"kovacshuni/circe-config", + "repoUrl":"https://github.com/kovacshuni/circe-config.git", + "revision":"0.10.0", + "version":"0.10.0", + "targets":"com.hunorkovacs%circe-config", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "kovstas/fs2-throttler":{ + "project":"kovstas/fs2-throttler", + "repoUrl":"https://github.com/kovstas/fs2-throttler.git", + "revision":"v1.0.8", + "version":"1.0.8", + "targets":"dev.kovstas%fs2-throttler", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "krrrr38/protoquill-finagle-mysql":{ + "project":"krrrr38/protoquill-finagle-mysql", + "repoUrl":"https://github.com/krrrr38/protoquill-finagle-mysql.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"com.krrrr38%protoquill-finagle-mysql", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.3.1\"", + "replaceWith":"val scala3Version = \"\"" + } + ] + } + }, + "kubukoz/debug-utils":{ + "project":"kubukoz/debug-utils", + "repoUrl":"https://github.com/kubukoz/debug-utils.git", + "revision":"v1.1.3", + "version":"1.1.3", + "targets":"com.kubukoz%debug-utils" + }, + "kubukoz/drops":{ + "project":"kubukoz/drops", + "repoUrl":"https://github.com/kubukoz/drops.git", + "revision":"v0.0.5", + "version":"0.0.5", + "targets":"com.kubukoz%drops-core com.kubukoz%root", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + "excludeLibraryDependency org.polyvariant:better-tostring_{scalaVersion}" + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "kubukoz/spotify-next":{ + "project":"kubukoz/spotify-next", + "repoUrl":"https://github.com/kubukoz/spotify-next.git", + "revision":"v1.11.3", + "version":"1.11.3", + "targets":"com.kubukoz%spotify-next", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + "excludeLibraryDependency org.polyvariant:better-tostring_{scalaVersion}" + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "kubukoz/sup":{ + "project":"kubukoz/sup", + "repoUrl":"https://github.com/kubukoz/sup.git", + "revision":"v0.9.0-M7", + "version":"0.9.0-M7", + "targets":"com.kubukoz%sup-doobie com.kubukoz%sup-fs2-kafka com.kubukoz%sup-circe com.kubukoz%sup-http4s-client com.kubukoz%sup-sttp com.kubukoz%sup-cassandra com.kubukoz%sup-http4s com.kubukoz%sup-log4cats com.kubukoz%sup-core com.kubukoz%sup-scalacache com.kubukoz%sup-redis", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + "excludeLibraryDependency org.polyvariant:better-tostring_{scalaVersion}" + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala_3 = \"3.1.3\"", + "replaceWith":"val Scala_3 = \"\"" + } + ] + } + }, + "kuceramartin/tyqu":{ + "project":"kuceramartin/tyqu", + "repoUrl":"https://github.com/kuceramartin/tyqu.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"ch.epfl.tyqu%tyqu" + }, + "kzmake/uuid7s":{ + "project":"kzmake/uuid7s", + "repoUrl":"https://github.com/kzmake/uuid7s.git", + "revision":"v0.1.3", + "version":"0.1.3", + "targets":"io.github.kzmake%uuid7s", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "l-space/types":{ + "project":"l-space/types", + "repoUrl":"https://github.com/l-space/types.git", + "revision":"v0.2.1", + "version":"0.2.1", + "targets":"eu.l-space%types eu.l-space%root", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lambdaworks/scountries":{ + "project":"lambdaworks/scountries", + "repoUrl":"https://github.com/lambdaworks/scountries.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"io.lambdaworks%scountries", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala3: String = \"3.2.2\"", + "replaceWith":"val Scala3: String = \"\"" + } + ] + } + }, + "lambdaworks/scurl-detector":{ + "project":"lambdaworks/scurl-detector", + "repoUrl":"https://github.com/lambdaworks/scurl-detector.git", + "revision":"v1.1.0", + "version":"1.1.0", + "targets":"io.lambdaworks%scurl-detector", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala3: String = \"3.2.2\"", + "replaceWith":"val Scala3: String = \"\"" + } + ] + } + }, + "lambdaworks/zio-elasticsearch":{ + "project":"lambdaworks/zio-elasticsearch", + "repoUrl":"https://github.com/lambdaworks/zio-elasticsearch.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"io.lambdaworks%zio-elasticsearch", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"project/BuildHelper.scala", + "pattern":"val Scala3: String = \"3.3.0\"", + "replaceWith":"val Scala3: String = \"\"" + } + ] + } + }, + "lancewalton/treelog":{ + "project":"lancewalton/treelog", + "repoUrl":"https://github.com/lancewalton/treelog.git", + "revision":"v1.9.0", + "version":"1.9.0", + "targets":"com.casualmiracles%treelog-cats", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.3.0\"", + "replaceWith":"val Scala3 = \"\"" + } + ] + } + }, + "laserdisc-io/fs2-aws":{ + "project":"laserdisc-io/fs2-aws", + "repoUrl":"https://github.com/laserdisc-io/fs2-aws.git", + "revision":"v6.0.4", + "version":"6.0.4", + "targets":"io.laserdisc%fs2-aws-s3 io.laserdisc%pure-sqs-tagless io.laserdisc%pure-cloudwatch-tagless io.laserdisc%pure-sns-tagless io.laserdisc%fs2-aws-kinesis io.laserdisc%pure-dynamodb-tagless io.laserdisc%fs2-aws-dynamodb io.laserdisc%fs2-aws-sns io.laserdisc%fs2-aws-testkit io.laserdisc%pure-kinesis-tagless io.laserdisc%fs2-aws-core io.laserdisc%pure-s3-tagless io.laserdisc%fs2-aws-sqs", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + "disableFatalWarnings" + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"compile-only", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "laserdisc-io/log-effect":{ + "project":"laserdisc-io/log-effect", + "repoUrl":"https://github.com/laserdisc-io/log-effect.git", + "revision":"v0.17.0", + "version":"0.17.0", + "targets":"io.laserdisc%log-effect-core io.laserdisc%log-effect-fs2 io.laserdisc%log-effect-interop io.laserdisc%log-effect-zio", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala_3 = \"3.2.1\"", + "replaceWith":"val scala_3 = \"\"" + } + ] + } + }, + "laserdisc-io/scanamo-circe":{ + "project":"laserdisc-io/scanamo-circe", + "repoUrl":"https://github.com/laserdisc-io/scanamo-circe.git", + "revision":"v3.1.0", + "version":"3.1.0", + "targets":"io.laserdisc%scanamo-circe", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "laserdisc-io/slack4s":{ + "project":"laserdisc-io/slack4s", + "repoUrl":"https://github.com/laserdisc-io/slack4s.git", + "revision":"v3.0.0-M1", + "version":"3.0.0-M1", + "targets":"io.laserdisc%slack4s", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "lego/woof":{ + "project":"lego/woof", + "repoUrl":"https://github.com/lego/woof.git", + "revision":"v0.7.0", + "version":"0.7.0", + "targets":"org.legogroup%woof-http4s org.legogroup%woof-slf4j-common org.legogroup%woof-slf4j org.legogroup%woof-core org.legogroup%woof-slf4j-2", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lemonlabsuk/scala-uri":{ "project":"lemonlabsuk/scala-uri", "repoUrl":"https://github.com/lemonlabsuk/scala-uri.git", "revision":"4.0.3", @@ -18793,19 +22631,1106 @@ ] } }, - "lhns/cats-effect-utils":{ - "project":"lhns/cats-effect-utils", - "repoUrl":"https://github.com/lhns/cats-effect-utils.git", + "leviysoft/oolong":{ + "project":"leviysoft/oolong", + "repoUrl":"https://github.com/leviysoft/oolong.git", + "revision":"v0.3.0", + "version":"0.3.0", + "targets":"io.github.leviysoft%oolong-bson io.github.leviysoft%oolong-core io.github.leviysoft%oolong-mongo", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lhns/cats-effect-utils":{ + "project":"lhns/cats-effect-utils", + "repoUrl":"https://github.com/lhns/cats-effect-utils.git", + "revision":"0.3.0", + "version":"0.3.0", + "targets":"de.lolhens%cats-effect-utils" + }, + "lhns/doobie-flyway":{ + "project":"lhns/doobie-flyway", + "repoUrl":"https://github.com/lhns/doobie-flyway.git", + "revision":"0.4.1", + "version":"0.4.1", + "targets":"de.lhns%doobie-flyway", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lhns/fs2-compress":{ + "project":"lhns/fs2-compress", + "repoUrl":"https://github.com/lhns/fs2-compress.git", + "revision":"1.0.0", + "version":"1.0.0", + "targets":"de.lhns%fs2-compress-bzip2 de.lhns%fs2-compress de.lhns%fs2-compress-zstd de.lhns%fs2-compress-tar de.lhns%fs2-compress-brotli de.lhns%fs2-compress-zip de.lhns%fs2-compress-gzip", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lhns/fs2-functork":{ + "project":"lhns/fs2-functork", + "repoUrl":"https://github.com/lhns/fs2-functork.git", + "revision":"0.2.1", + "version":"0.2.1", + "targets":"de.lhns%fs2-functork de.lhns%fs2-functork-doobie", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lhns/fs2-utils":{ + "project":"lhns/fs2-utils", + "repoUrl":"https://github.com/lhns/fs2-utils.git", + "revision":"0.4.0", + "version":"0.4.0", + "targets":"de.lhns%fs2-utils de.lhns%fs2-io-utils", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lhns/http4s-errors":{ + "project":"lhns/http4s-errors", + "repoUrl":"https://github.com/lhns/http4s-errors.git", + "revision":"0.5.1", + "version":"0.5.1", + "targets":"de.lhns%http4s-errors", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lhns/http4s-jwt-auth":{ + "project":"lhns/http4s-jwt-auth", + "repoUrl":"https://github.com/lhns/http4s-jwt-auth.git", + "revision":"0.5.0", + "version":"0.5.0", + "targets":"de.lhns%http4s-jwt-auth", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lhns/http4s-spa":{ + "project":"lhns/http4s-spa", + "repoUrl":"https://github.com/lhns/http4s-spa.git", + "revision":"0.6.2", + "version":"0.6.2", + "targets":"de.lhns%http4s-spa", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lhns/munit-tagless-final":{ + "project":"lhns/munit-tagless-final", + "repoUrl":"https://github.com/lhns/munit-tagless-final.git", + "revision":"0.2.1", + "version":"0.2.1", + "targets":"de.lhns%munit-tagless-final", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lhns/nifi-scala":{ + "project":"lhns/nifi-scala", + "repoUrl":"https://github.com/lhns/nifi-scala.git", + "revision":"0.3.2", + "version":"0.3.2", + "targets":"de.lhns%nifi-scala", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lhns/remote-io":{ + "project":"lhns/remote-io", + "repoUrl":"https://github.com/lhns/remote-io.git", + "revision":"0.0.1", + "version":"0.0.1", + "targets":"de.lolhens%remote-io-core de.lolhens%remote-io-http4s", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lhns/scala-commandline":{ + "project":"lhns/scala-commandline", + "repoUrl":"https://github.com/lhns/scala-commandline.git", + "revision":"0.4.0", + "version":"0.4.0", + "targets":"de.lhns%scala-commandline", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lhns/scala-edifact":{ + "project":"lhns/scala-edifact", + "repoUrl":"https://github.com/lhns/scala-edifact.git", + "revision":"0.1.0", + "version":"0.1.0", + "targets":"de.lolhens%scala-edifact", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lhns/scala-trustmanager-utils":{ + "project":"lhns/scala-trustmanager-utils", + "repoUrl":"https://github.com/lhns/scala-trustmanager-utils.git", + "revision":"1.0.0", + "version":"1.0.0", + "targets":"de.lhns%scala-trustmanager-utils", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lichess-org/lila":{ + "project":"lichess-org/lila", + "repoUrl":"https://github.com/lichess-org/lila.git", + "revision":"", + "version":"HEAD", + "targets":"*%*", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lichess-org/lila-ws":{ + "project":"lichess-org/lila-ws", + "repoUrl":"https://github.com/lichess-org/lila-ws.git", + "revision":"", + "version":"HEAD", + "targets":"*%*", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"21" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lichess-org/playframework-lila":{ + "project":"lichess-org/playframework-lila", + "repoUrl":"https://github.com/lichess-org/playframework-lila.git", + "revision":"", + "version":"HEAD", + "targets":"*%*" + }, + "lichess-org/scalachess":{ + "project":"lichess-org/scalachess", + "repoUrl":"https://github.com/lichess-org/scalachess.git", + "revision":"", + "version":"HEAD", + "targets":"*%*", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"21" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"compile-only", + "sourcePatches":[ + + ] + } + }, + "liewhite/common":{ + "project":"liewhite/common", + "repoUrl":"https://github.com/liewhite/common.git", + "revision":"v0.0.2", + "version":"0.0.2", + "targets":"io.github.liewhite%rpc4s", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "liewhite/swopen":{ + "project":"liewhite/swopen", + "repoUrl":"https://github.com/liewhite/swopen.git", + "revision":"v0.17.5", + "version":"0.17.5", + "targets":"io.github.liewhite%json io.github.liewhite%config io.github.liewhite%sqlx io.github.liewhite%common io.github.liewhite%web3", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lightbend-labs/lightbend-emoji":{ + "project":"lightbend-labs/lightbend-emoji", + "repoUrl":"https://github.com/lightbend-labs/lightbend-emoji.git", + "revision":"1.3.0", + "version":"1.3.0", + "targets":"com.lightbend%emoji", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lightbend-labs/scala-logging":{ + "project":"lightbend-labs/scala-logging", + "repoUrl":"https://github.com/lightbend-labs/scala-logging.git", + "revision":"v3.9.5", + "version":"3.9.5", + "targets":"com.typesafe.scala-logging%scala-logging", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lightbend/mima":{ + "project":"lightbend/mima", + "repoUrl":"https://github.com/lightbend/mima.git", + "revision":"1.1.3", + "version":"1.1.3", + "targets":"com.typesafe%mima-core", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "lightbend/ssl-config":{ + "project":"lightbend/ssl-config", + "repoUrl":"https://github.com/lightbend/ssl-config.git", + "revision":"v0.6.1", + "version":"0.6.1", + "targets":"com.typesafe%ssl-config-core", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.0.2\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "likeligood-ab/scala-react":{ + "project":"likeligood-ab/scala-react", + "repoUrl":"https://github.com/likeligood-ab/scala-react.git", + "revision":"", + "version":"0.1.0", + "targets":"com.likeligood%scala-react" + }, + "linyxus/papiers-core":{ + "project":"linyxus/papiers-core", + "repoUrl":"https://github.com/linyxus/papiers-core.git", + "revision":"", + "version":"0.2.0", + "targets":"io.github.linyxus%papiers-core", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"compile-only", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.3.0-RC3\"", + "replaceWith":"val scala3Version = \"\"" + } + ] + } + }, + "liquibase4s/liquibase4s":{ + "project":"liquibase4s/liquibase4s", + "repoUrl":"https://github.com/liquibase4s/liquibase4s.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"io.github.liquibase4s%liquibase4s-cats-effect io.github.liquibase4s%liquibase4s-core", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lloydmeta/enumeratum":{ + "project":"lloydmeta/enumeratum", + "repoUrl":"https://github.com/lloydmeta/enumeratum.git", + "revision":"master", + "version":"1.7.3", + "targets":"com.beachape%enumeratum-argonaut com.beachape%enumeratum-quill com.beachape%enumeratum-scalacheck com.beachape%enumeratum com.beachape%enumeratum-play-json com.beachape%enumeratum-circe com.beachape%enumeratum-reactivemongo-bson com.beachape%enumeratum-doobie com.beachape%enumeratum-play com.beachape%enumeratum-test com.beachape%enumeratum-cats", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + "-Denumeratum.useLocalVersion=true" + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "lloydmeta/ltsv-logger":{ + "project":"lloydmeta/ltsv-logger", + "repoUrl":"https://github.com/lloydmeta/ltsv-logger.git", + "revision":"0.1.1", + "version":"0.1.1", + "targets":"com.beachape%ltsv-logger" + }, + "lloydmeta/play-csv":{ + "project":"lloydmeta/play-csv", + "repoUrl":"https://github.com/lloydmeta/play-csv.git", + "revision":"1.7", + "version":"1.7", + "targets":"com.beachape%play-csv" + }, + "log4s/log4s":{ + "project":"log4s/log4s", + "repoUrl":"https://github.com/log4s/log4s.git", + "revision":"v1.10.0", + "version":"1.10.0", + "targets":"org.log4s%log4s org.log4s%log4s-testing" + }, + "logging4s/logging4s":{ + "project":"logging4s/logging4s", + "repoUrl":"https://github.com/logging4s/logging4s.git", + "revision":"v0.2.3", + "version":"0.2.3", + "targets":"org.logging4s%logging4s-zio org.logging4s%logging4s-ce-2 org.logging4s%logging4s-json4s org.logging4s%logging4s-core org.logging4s%logging4s-jsoniter org.logging4s%logging4s-circe org.logging4s%logging4s-cats-core org.logging4s%logging4s-ce-3 org.logging4s%logging4s-argonaut org.logging4s%logging4s-play-json", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "lolgab/snunit":{ + "project":"lolgab/snunit", + "repoUrl":"https://github.com/lolgab/snunit.git", "revision":"0.3.0", "version":"0.3.0", - "targets":"de.lolhens%cats-effect-utils" + "targets":"com.github.lolgab%snunit com.github.lolgab%snunit-tapir", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } }, - "lhns/doobie-flyway":{ - "project":"lhns/doobie-flyway", - "repoUrl":"https://github.com/lhns/doobie-flyway.git", - "revision":"0.3.4", - "version":"0.3.4", - "targets":"de.lolhens%doobie-flyway", + "lomigmegard/akka-http-cors":{ + "project":"lomigmegard/akka-http-cors", + "repoUrl":"https://github.com/lomigmegard/akka-http-cors.git", + "revision":"v1.2.0", + "version":"1.2.0", + "targets":"ch.megard%akka-http-cors", "config":{ "projects":{ "exclude":[ @@ -18837,12 +23762,12 @@ ] } }, - "lhns/fs2-compress":{ - "project":"lhns/fs2-compress", - "repoUrl":"https://github.com/lhns/fs2-compress.git", - "revision":"0.5.0", - "version":"0.5.0", - "targets":"de.lhns%fs2-compress-bzip2 de.lhns%fs2-compress de.lhns%fs2-compress-zstd de.lhns%fs2-compress-tar de.lhns%fs2-compress-brotli de.lhns%fs2-compress-zip de.lhns%fs2-compress-gzip", + "lorandszakacs/enclosure":{ + "project":"lorandszakacs/enclosure", + "repoUrl":"https://github.com/lorandszakacs/enclosure.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"com.lorandszakacs%enclosure", "config":{ "projects":{ "exclude":[ @@ -18855,6 +23780,103 @@ "java":{ "version":"17" }, + "sbt":{ + "commands":[ + "set every Test/classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat" + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.1.1\"", + "replaceWith":"val Scala3 = \"\"" + } + ] + } + }, + "losizm/bolster":{ + "project":"losizm/bolster", + "repoUrl":"https://github.com/losizm/bolster.git", + "revision":"v4.0.0", + "version":"4.0.0", + "targets":"com.github.losizm%bolster" + }, + "losizm/ergo":{ + "project":"losizm/ergo", + "repoUrl":"https://github.com/losizm/ergo.git", + "revision":"v1.1.0", + "version":"1.1.0", + "targets":"com.github.losizm%ergo" + }, + "losizm/grapple":{ + "project":"losizm/grapple", + "repoUrl":"https://github.com/losizm/grapple.git", + "revision":"v13.0.0", + "version":"13.0.0", + "targets":"com.github.losizm%grapple" + }, + "losizm/little-cli":{ + "project":"losizm/little-cli", + "repoUrl":"https://github.com/losizm/little-cli.git", + "revision":"v2.0.0", + "version":"2.0.0", + "targets":"com.github.losizm%little-cli" + }, + "losizm/little-config":{ + "project":"losizm/little-config", + "repoUrl":"https://github.com/losizm/little-config.git", + "revision":"v4.0.0", + "version":"4.0.0", + "targets":"com.github.losizm%little-config" + }, + "losizm/little-io":{ + "project":"losizm/little-io", + "repoUrl":"https://github.com/losizm/little-io.git", + "revision":"v9.0.0", + "version":"9.0.0", + "targets":"com.github.losizm%little-io" + }, + "losizm/little-json":{ + "project":"losizm/little-json", + "repoUrl":"https://github.com/losizm/little-json.git", + "revision":"v9.0.0", + "version":"9.0.0", + "targets":"com.github.losizm%little-json" + }, + "losizm/little-security":{ + "project":"losizm/little-security", + "repoUrl":"https://github.com/losizm/little-security.git", + "revision":"v1.1.0", + "version":"1.1.0", + "targets":"com.github.losizm%little-security" + }, + "losizm/little-sql":{ + "project":"losizm/little-sql", + "repoUrl":"https://github.com/losizm/little-sql.git", + "revision":"v8.0.0", + "version":"8.0.0", + "targets":"com.github.losizm%little-sql", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, "sbt":{ "commands":[ @@ -18874,12 +23896,63 @@ ] } }, - "lhns/fs2-utils":{ - "project":"lhns/fs2-utils", - "repoUrl":"https://github.com/lhns/fs2-utils.git", - "revision":"0.4.0", - "version":"0.4.0", - "targets":"de.lhns%fs2-utils de.lhns%fs2-io-utils", + "losizm/little-time":{ + "project":"losizm/little-time", + "repoUrl":"https://github.com/losizm/little-time.git", + "revision":"v4.0.2", + "version":"4.0.2", + "targets":"com.github.losizm%little-time" + }, + "losizm/scamper":{ + "project":"losizm/scamper", + "repoUrl":"https://github.com/losizm/scamper.git", + "revision":"v40.0.0", + "version":"40.0.0", + "targets":"com.github.losizm%scamper", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"compile-only", + "sourcePatches":[ + + ] + } + }, + "losizm/t2":{ + "project":"losizm/t2", + "repoUrl":"https://github.com/losizm/t2.git", + "revision":"v2.0.0", + "version":"2.0.0", + "targets":"com.github.losizm%t2" + }, + "lowmelvin/formify-scala":{ + "project":"lowmelvin/formify-scala", + "repoUrl":"https://github.com/lowmelvin/formify-scala.git", + "revision":"v0.1.4", + "version":"0.1.4", + "targets":"com.melvinlow%formify", "config":{ "projects":{ "exclude":[ @@ -18911,12 +23984,12 @@ ] } }, - "lhns/http4s-errors":{ - "project":"lhns/http4s-errors", - "repoUrl":"https://github.com/lhns/http4s-errors.git", - "revision":"0.5.1", - "version":"0.5.1", - "targets":"de.lhns%http4s-errors", + "lowmelvin/hammer-scala":{ + "project":"lowmelvin/hammer-scala", + "repoUrl":"https://github.com/lowmelvin/hammer-scala.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"com.melvinlow%hammer", "config":{ "projects":{ "exclude":[ @@ -18948,12 +24021,12 @@ ] } }, - "lhns/http4s-jwt-auth":{ - "project":"lhns/http4s-jwt-auth", - "repoUrl":"https://github.com/lhns/http4s-jwt-auth.git", - "revision":"0.5.0", - "version":"0.5.0", - "targets":"de.lhns%http4s-jwt-auth", + "lunatech-labs/lunatech-play-googleopenconnect":{ + "project":"lunatech-labs/lunatech-play-googleopenconnect", + "repoUrl":"https://github.com/lunatech-labs/lunatech-play-googleopenconnect.git", + "revision":"3.0.0", + "version":"3.0.0", + "targets":"com.lunatech%play-googleopenconnect", "config":{ "projects":{ "exclude":[ @@ -18985,12 +24058,12 @@ ] } }, - "lhns/http4s-spa":{ - "project":"lhns/http4s-spa", - "repoUrl":"https://github.com/lhns/http4s-spa.git", - "revision":"0.6.2", - "version":"0.6.2", - "targets":"de.lhns%http4s-spa", + "lunduniversity/introprog-scalalib":{ + "project":"lunduniversity/introprog-scalalib", + "repoUrl":"https://github.com/lunduniversity/introprog-scalalib.git", + "revision":"v1.3.1", + "version":"1.3.1", + "targets":"se.lth.cs%introprog", "config":{ "projects":{ "exclude":[ @@ -19001,7 +24074,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -19018,16 +24091,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.0.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "lhns/munit-tagless-final":{ - "project":"lhns/munit-tagless-final", - "repoUrl":"https://github.com/lhns/munit-tagless-final.git", - "revision":"0.2.1", - "version":"0.2.1", - "targets":"de.lhns%munit-tagless-final", + "m2-oss/calypso":{ + "project":"m2-oss/calypso", + "repoUrl":"https://github.com/m2-oss/calypso.git", + "revision":"v0.3.0", + "version":"0.3.0", + "targets":"ru.m2%calypso-core ru.m2%calypso-scalapb ru.m2%calypso-testing", "config":{ "projects":{ "exclude":[ @@ -19038,7 +24115,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -19055,16 +24132,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.1.3\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "lhns/nifi-scala":{ - "project":"lhns/nifi-scala", - "repoUrl":"https://github.com/lhns/nifi-scala.git", - "revision":"0.3.2", - "version":"0.3.2", - "targets":"de.lhns%nifi-scala", + "makiftutuncu/effect":{ + "project":"makiftutuncu/effect", + "repoUrl":"https://github.com/makiftutuncu/effect.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"dev.akif%effect-core", "config":{ "projects":{ "exclude":[ @@ -19075,7 +24156,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -19090,18 +24171,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "lhns/remote-io":{ - "project":"lhns/remote-io", - "repoUrl":"https://github.com/lhns/remote-io.git", - "revision":"0.0.1", - "version":"0.0.1", - "targets":"de.lolhens%remote-io-core de.lolhens%remote-io-http4s", + "makingthematrix/inject":{ + "project":"makingthematrix/inject", + "repoUrl":"https://github.com/makingthematrix/inject.git", + "revision":"1.0.0", + "version":"1.0.0", + "targets":"io.github.makingthematrix%inject", "config":{ "projects":{ "exclude":[ @@ -19133,12 +24214,12 @@ ] } }, - "lhns/scala-commandline":{ - "project":"lhns/scala-commandline", - "repoUrl":"https://github.com/lhns/scala-commandline.git", - "revision":"0.4.0", - "version":"0.4.0", - "targets":"de.lhns%scala-commandline", + "makingthematrix/signals3":{ + "project":"makingthematrix/signals3", + "repoUrl":"https://github.com/makingthematrix/signals3.git", + "revision":"1.1.1", + "version":"1.1.1", + "targets":"io.github.makingthematrix%signals3", "config":{ "projects":{ "exclude":[ @@ -19170,12 +24251,12 @@ ] } }, - "lhns/scala-edifact":{ - "project":"lhns/scala-edifact", - "repoUrl":"https://github.com/lhns/scala-edifact.git", - "revision":"0.1.0", - "version":"0.1.0", - "targets":"de.lolhens%scala-edifact", + "malliina/mobile-push":{ + "project":"malliina/mobile-push", + "repoUrl":"https://github.com/malliina/mobile-push.git", + "revision":"v3.8.2", + "version":"3.8.2", + "targets":"com.malliina%mobile-push", "config":{ "projects":{ "exclude":[ @@ -19207,12 +24288,12 @@ ] } }, - "lhns/scala-trustmanager-utils":{ - "project":"lhns/scala-trustmanager-utils", - "repoUrl":"https://github.com/lhns/scala-trustmanager-utils.git", - "revision":"0.3.5", - "version":"0.3.5", - "targets":"de.lhns%scala-trustmanager-utils", + "malliina/sbt-utils":{ + "project":"malliina/sbt-utils", + "repoUrl":"https://github.com/malliina/sbt-utils.git", + "revision":"v1.6.29", + "version":"1.6.29", + "targets":"com.malliina%common-build", "config":{ "projects":{ "exclude":[ @@ -19244,12 +24325,12 @@ ] } }, - "lichess-org/lila":{ - "project":"lichess-org/lila", - "repoUrl":"https://github.com/lichess-org/lila.git", - "revision":"b89249267ee7f34b4bbc2601382b19bf262edb3d", - "version":"HEAD", - "targets":"*%*", + "malliina/util-base":{ + "project":"malliina/util-base", + "repoUrl":"https://github.com/malliina/util-base.git", + "revision":"v3.1.0", + "version":"3.1.0", + "targets":"com.malliina%util-base", "config":{ "projects":{ "exclude":[ @@ -19260,7 +24341,7 @@ } }, "java":{ - "version":"21" + "version":"11" }, "sbt":{ "commands":[ @@ -19281,12 +24362,19 @@ ] } }, - "lichess-org/lila-ws":{ - "project":"lichess-org/lila-ws", - "repoUrl":"https://github.com/lichess-org/lila-ws.git", - "revision":"af3d6cdf590681cd49fb59a8953efb9edb52e719", - "version":"HEAD", - "targets":"*%*", + "malyszaryczlowiek/foo-repo":{ + "project":"malyszaryczlowiek/foo-repo", + "repoUrl":"https://github.com/malyszaryczlowiek/foo-repo.git", + "revision":"", + "version":"0.1.1", + "targets":"io.github.malyszaryczlowiek%foo-repo" + }, + "malyszaryczlowiek/kessenger-lib":{ + "project":"malyszaryczlowiek/kessenger-lib", + "repoUrl":"https://github.com/malyszaryczlowiek/kessenger-lib.git", + "revision":"v0.3.28", + "version":"0.3.28", + "targets":"io.github.malyszaryczlowiek%kessenger-lib", "config":{ "projects":{ "exclude":[ @@ -19297,7 +24385,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -19314,16 +24402,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.1.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "lichess-org/playframework-lila":{ - "project":"lichess-org/playframework-lila", - "repoUrl":"https://github.com/lichess-org/playframework-lila.git", - "revision":"fd39a114845feaca85d6547ce4840d6db29c2add", - "version":"HEAD", - "targets":"*%*", + "marchliu/jaskell-dotty":{ + "project":"marchliu/jaskell-dotty", + "repoUrl":"https://github.com/marchliu/jaskell-dotty.git", + "revision":"", + "version":"0.6.3", + "targets":"io.github.marchliu%jaskell-dotty", "config":{ "projects":{ "exclude":[ @@ -19334,11 +24426,11 @@ } }, "java":{ - "version":"21" + }, "sbt":{ "commands":[ - + "set Compile/sources ~= (_.filter(_.getName != \"NewLine.scala\")) " ], "options":[ @@ -19355,12 +24447,40 @@ ] } }, - "lichess-org/scalachess":{ - "project":"lichess-org/scalachess", - "repoUrl":"https://github.com/lichess-org/scalachess.git", - "revision":"08457af6849e485bb44ce02d42eace62a5376b37", - "version":"HEAD", - "targets":"*%*", + "marcinzh/enterprise":{ + "project":"marcinzh/enterprise", + "repoUrl":"https://github.com/marcinzh/enterprise.git", + "revision":"", + "version":"0.2.0", + "targets":"io.github.marcinzh%enterprise-core" + }, + "marcinzh/turbolift":{ + "project":"marcinzh/turbolift", + "repoUrl":"https://github.com/marcinzh/turbolift.git", + "revision":"v0.56.0", + "version":"0.56.0", + "targets":"io.github.marcinzh%turbolift-core io.github.marcinzh%turbolift-extra-effects" + }, + "marcinzh/yamlike":{ + "project":"marcinzh/yamlike", + "repoUrl":"https://github.com/marcinzh/yamlike.git", + "revision":"", + "version":"0.1.0", + "targets":"io.github.marcinzh%yamlayer io.github.marcinzh%yamlist" + }, + "martinhh/scalacheck-derived":{ + "project":"martinhh/scalacheck-derived", + "repoUrl":"https://github.com/martinhh/scalacheck-derived.git", + "revision":"v0.4.2", + "version":"0.4.2", + "targets":"io.github.martinhh%scalacheck-derived" + }, + "massimosiani/monix-newtypes-cats":{ + "project":"massimosiani/monix-newtypes-cats", + "repoUrl":"https://github.com/massimosiani/monix-newtypes-cats.git", + "revision":"v0.0.4", + "version":"0.0.4", + "targets":"io.github.massimosiani%monix-newtypes-cats", "config":{ "projects":{ "exclude":[ @@ -19371,7 +24491,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -19386,18 +24506,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.3.0\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "liewhite/common":{ - "project":"liewhite/common", - "repoUrl":"https://github.com/liewhite/common.git", - "revision":"v0.0.2", - "version":"0.0.2", - "targets":"io.github.liewhite%rpc4s", + "massimosiani/skunk":{ + "project":"massimosiani/skunk", + "repoUrl":"https://github.com/massimosiani/skunk.git", + "revision":"", + "version":"0.3.2", + "targets":"io.github.massimosiani%refined io.github.massimosiani%skunk-circe io.github.massimosiani%skunk-core", "config":{ "projects":{ "exclude":[ @@ -19425,16 +24549,61 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val `scala-3` = \"3.3.0\"", + "replaceWith":"val `scala-3` = \"\"" + } ] } }, - "liewhite/swopen":{ - "project":"liewhite/swopen", - "repoUrl":"https://github.com/liewhite/swopen.git", - "revision":"v0.17.5", - "version":"0.17.5", - "targets":"io.github.liewhite%json io.github.liewhite%config io.github.liewhite%sqlx io.github.liewhite%common io.github.liewhite%web3", + "mateuszkubuszok/pipez":{ + "project":"mateuszkubuszok/pipez", + "repoUrl":"https://github.com/mateuszkubuszok/pipez.git", + "revision":"v0.5.1", + "version":"0.5.1", + "targets":"com.kubuszok%pipez com.kubuszok%pipez-dsl", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"project/Settings.scala", + "pattern":"case Some((3, 2))", + "replaceWith":"case Some((3, _))" + } + ] + } + }, + "matsluni/aws-spi-akka-http":{ + "project":"matsluni/aws-spi-akka-http", + "repoUrl":"https://github.com/matsluni/aws-spi-akka-http.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"com.github.matsluni%aws-spi-akka-http", "config":{ "projects":{ "exclude":[ @@ -19445,7 +24614,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -19466,12 +24635,19 @@ ] } }, - "lightbend-labs/lightbend-emoji":{ - "project":"lightbend-labs/lightbend-emoji", - "repoUrl":"https://github.com/lightbend-labs/lightbend-emoji.git", - "revision":"1.3.0", - "version":"1.3.0", - "targets":"com.lightbend%emoji", + "mattlangsenkamp/svgbounds":{ + "project":"mattlangsenkamp/svgbounds", + "repoUrl":"https://github.com/mattlangsenkamp/svgbounds.git", + "revision":"", + "version":"0.1.0", + "targets":"com.mattlangsenkamp.svgBounds%svgbounds" + }, + "max-leuthaeuser/scroll":{ + "project":"max-leuthaeuser/scroll", + "repoUrl":"https://github.com/max-leuthaeuser/scroll.git", + "revision":"", + "version":"3.0", + "targets":"com.github.max-leuthaeuser%scroll", "config":{ "projects":{ "exclude":[ @@ -19503,12 +24679,12 @@ ] } }, - "lightbend-labs/scala-logging":{ - "project":"lightbend-labs/scala-logging", - "repoUrl":"https://github.com/lightbend-labs/scala-logging.git", - "revision":"v3.9.5", - "version":"3.9.5", - "targets":"com.typesafe.scala-logging%scala-logging", + "mdedetrich/pekko-streams-circe":{ + "project":"mdedetrich/pekko-streams-circe", + "repoUrl":"https://github.com/mdedetrich/pekko-streams-circe.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"org.mdedetrich%pekko-http-circe org.mdedetrich%pekko-http-json org.mdedetrich%pekko-stream-circe org.mdedetrich%pekko-stream-json", "config":{ "projects":{ "exclude":[ @@ -19536,16 +24712,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.3.0\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "lightbend/mima":{ - "project":"lightbend/mima", - "repoUrl":"https://github.com/lightbend/mima.git", - "revision":"1.1.2", - "version":"1.1.2", - "targets":"com.typesafe%mima-core", + "mdedetrich/scalacheck":{ + "project":"mdedetrich/scalacheck", + "repoUrl":"https://github.com/mdedetrich/scalacheck.git", + "revision":"", + "version":"1.17.0", + "targets":"org.mdedetrich%scalacheck", "config":{ "projects":{ "exclude":[ @@ -19556,7 +24736,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -19575,18 +24755,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val Scala3 = \"3.1.3\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "lightbend/ssl-config":{ - "project":"lightbend/ssl-config", - "repoUrl":"https://github.com/lightbend/ssl-config.git", - "revision":"v0.6.1", - "version":"0.6.1", - "targets":"com.typesafe%ssl-config-core", + "medeia/medeia":{ + "project":"medeia/medeia", + "repoUrl":"https://github.com/medeia/medeia.git", + "revision":"v0.11.0", + "version":"0.11.0", + "targets":"de.megaera%medeia de.megaera%medeia-enumeratum de.megaera%medeia-refined", "config":{ "projects":{ "exclude":[ @@ -19597,11 +24777,12 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -19614,27 +24795,23 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.0.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "likeligood-ab/scala-react":{ - "project":"likeligood-ab/scala-react", - "repoUrl":"https://github.com/likeligood-ab/scala-react.git", - "revision":"68a8ef588dab05ccf0216f7dcaad39ac2cc3aff2", + "mercurievv/minuscles":{ + "project":"mercurievv/minuscles", + "repoUrl":"https://github.com/mercurievv/minuscles.git", + "revision":"0.1.0", "version":"0.1.0", - "targets":"com.likeligood%scala-react" + "targets":"io.github.mercurievv.minuscles%conversions io.github.mercurievv.minuscles%tuples_plens" }, - "linyxus/papiers-core":{ - "project":"linyxus/papiers-core", - "repoUrl":"https://github.com/linyxus/papiers-core.git", - "revision":"d239ad504cb40f74070338308c0460a2d6a3af4a", - "version":"0.2.0", - "targets":"io.github.linyxus%papiers-core", + "metarank/cfor":{ + "project":"metarank/cfor", + "repoUrl":"https://github.com/metarank/cfor.git", + "revision":"0.3", + "version":"0.3", + "targets":"io.github.metarank%cfor", "config":{ "projects":{ "exclude":[ @@ -19645,7 +24822,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -19662,20 +24839,16 @@ }, "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0-RC3\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "liquibase4s/liquibase4s":{ - "project":"liquibase4s/liquibase4s", - "repoUrl":"https://github.com/liquibase4s/liquibase4s.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"io.github.liquibase4s%liquibase4s-cats-effect io.github.liquibase4s%liquibase4s-core", + "metarank/ltrlib":{ + "project":"metarank/ltrlib", + "repoUrl":"https://github.com/metarank/ltrlib.git", + "revision":"0.2.2", + "version":"0.2.2", + "targets":"io.github.metarank%ltrlib", "config":{ "projects":{ "exclude":[ @@ -19686,7 +24859,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -19701,18 +24874,18 @@ ] }, - "tests":"full", + "tests":"disabled", "sourcePatches":[ ] } }, - "lloydmeta/enumeratum":{ - "project":"lloydmeta/enumeratum", - "repoUrl":"https://github.com/lloydmeta/enumeratum.git", - "revision":"master", - "version":"1.7.3", - "targets":"com.beachape%enumeratum-doobie", + "milessabin/shapeless":{ + "project":"milessabin/shapeless", + "repoUrl":"https://github.com/milessabin/shapeless.git", + "revision":"v3.0.0", + "version":"3.0.0", + "targets":"org.typelevel%shapeless3-deriving org.typelevel%shapeless3-test org.typelevel%shapeless3-typeable", "config":{ "projects":{ "exclude":[ @@ -19723,14 +24896,14 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ ], "options":[ - "-Denumeratum.useLocalVersion=true" + ] }, "mill":{ @@ -19744,26 +24917,19 @@ ] } }, - "lloydmeta/ltsv-logger":{ - "project":"lloydmeta/ltsv-logger", - "repoUrl":"https://github.com/lloydmeta/ltsv-logger.git", - "revision":"0.1.1", - "version":"0.1.1", - "targets":"com.beachape%ltsv-logger" - }, - "log4s/log4s":{ - "project":"log4s/log4s", - "repoUrl":"https://github.com/log4s/log4s.git", - "revision":"v1.10.0", - "version":"1.10.0", - "targets":"org.log4s%log4s org.log4s%log4s-testing" + "mimoguz/layeredfonticon":{ + "project":"mimoguz/layeredfonticon", + "repoUrl":"https://github.com/mimoguz/layeredfonticon.git", + "revision":"", + "version":"0.2.0", + "targets":"io.github.mimoguz%layeredfonticon-basic io.github.mimoguz%layeredfonticon-core io.github.mimoguz%layeredfonticon-flat" }, - "logging4s/logging4s":{ - "project":"logging4s/logging4s", - "repoUrl":"https://github.com/logging4s/logging4s.git", - "revision":"v0.1.7", - "version":"0.1.7", - "targets":"org.logging4s%logging4s-zio org.logging4s%logging4s-ce-2 org.logging4s%logging4s-json4s org.logging4s%logging4s-core org.logging4s%logging4s-jsoniter org.logging4s%logging4s-circe org.logging4s%logging4s-spray-json org.logging4s%logging4s-cats-core org.logging4s%logging4s-ce-3 org.logging4s%logging4s-argonaut org.logging4s%logging4s-play-json", + "minosiants/pencil":{ + "project":"minosiants/pencil", + "repoUrl":"https://github.com/minosiants/pencil.git", + "revision":"v2.1.0", + "version":"2.1.0", + "targets":"com.minosiants%pencil", "config":{ "projects":{ "exclude":[ @@ -19774,7 +24940,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -19791,20 +24957,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "lolgab/snunit":{ - "project":"lolgab/snunit", - "repoUrl":"https://github.com/lolgab/snunit.git", - "revision":"0.3.0", - "version":"0.3.0", - "targets":"com.github.lolgab%snunit com.github.lolgab%snunit-tapir", + "mixql/mixql-core":{ + "project":"mixql/mixql-core", + "repoUrl":"https://github.com/mixql/mixql-core.git", + "revision":"v0.9.1", + "version":"0.9.1", + "targets":"org.mixql%mixql-core", "config":{ "projects":{ "exclude":[ @@ -19815,7 +24977,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -19832,16 +24994,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.1.3\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "lomigmegard/akka-http-cors":{ - "project":"lomigmegard/akka-http-cors", - "repoUrl":"https://github.com/lomigmegard/akka-http-cors.git", - "revision":"v1.2.0", - "version":"1.2.0", - "targets":"ch.megard%akka-http-cors", + "mixql/mixql-engine":{ + "project":"mixql/mixql-engine", + "repoUrl":"https://github.com/mixql/mixql-engine.git", + "revision":"v.0.1.0", + "version":"0.1.0", + "targets":"org.mixql%mixql-engine org.mixql%mixql-cluster", "config":{ "projects":{ "exclude":[ @@ -19852,7 +25018,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -19869,16 +25035,27 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "lorandszakacs/enclosure":{ - "project":"lorandszakacs/enclosure", - "repoUrl":"https://github.com/lorandszakacs/enclosure.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"com.lorandszakacs%enclosure", + "mixql/mixql-engine-stub":{ + "project":"mixql/mixql-engine-stub", + "repoUrl":"https://github.com/mixql/mixql-engine-stub.git", + "revision":"", + "version":"0.9.1.1", + "targets":"org.mixql%mixql-engine-stub org.mixql%mixql-engine-sqlite org.mixql%mixql-engine-sqlite-local org.mixql%mixql-engine-stub-local" + }, + "mixql/mixql-protobuf":{ + "project":"mixql/mixql-protobuf", + "repoUrl":"https://github.com/mixql/mixql-protobuf.git", + "revision":"v.0.1.0", + "version":"0.1.0", + "targets":"org.mixql%mixql-protobuf", "config":{ "projects":{ "exclude":[ @@ -19889,11 +25066,11 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ - "set every Test/classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat" + ], "options":[ @@ -19908,74 +25085,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.1\"", + "pattern":"val Scala3 = \"3.2.1\"", "replaceWith":"val Scala3 = \"\"" } ] } }, - "losizm/bolster":{ - "project":"losizm/bolster", - "repoUrl":"https://github.com/losizm/bolster.git", - "revision":"v4.0.0", - "version":"4.0.0", - "targets":"com.github.losizm%bolster" - }, - "losizm/ergo":{ - "project":"losizm/ergo", - "repoUrl":"https://github.com/losizm/ergo.git", - "revision":"v1.1.0", - "version":"1.1.0", - "targets":"com.github.losizm%ergo" - }, - "losizm/grapple":{ - "project":"losizm/grapple", - "repoUrl":"https://github.com/losizm/grapple.git", - "revision":"v13.0.0", - "version":"13.0.0", - "targets":"com.github.losizm%grapple" - }, - "losizm/little-cli":{ - "project":"losizm/little-cli", - "repoUrl":"https://github.com/losizm/little-cli.git", - "revision":"v2.0.0", - "version":"2.0.0", - "targets":"com.github.losizm%little-cli" - }, - "losizm/little-config":{ - "project":"losizm/little-config", - "repoUrl":"https://github.com/losizm/little-config.git", - "revision":"v4.0.0", - "version":"4.0.0", - "targets":"com.github.losizm%little-config" - }, - "losizm/little-io":{ - "project":"losizm/little-io", - "repoUrl":"https://github.com/losizm/little-io.git", - "revision":"v9.0.0", - "version":"9.0.0", - "targets":"com.github.losizm%little-io" - }, - "losizm/little-json":{ - "project":"losizm/little-json", - "repoUrl":"https://github.com/losizm/little-json.git", - "revision":"v9.0.0", - "version":"9.0.0", - "targets":"com.github.losizm%little-json" - }, - "losizm/little-security":{ - "project":"losizm/little-security", - "repoUrl":"https://github.com/losizm/little-security.git", - "revision":"v1.1.0", - "version":"1.1.0", - "targets":"com.github.losizm%little-security" - }, - "losizm/little-sql":{ - "project":"losizm/little-sql", - "repoUrl":"https://github.com/losizm/little-sql.git", - "revision":"v8.0.0", - "version":"8.0.0", - "targets":"com.github.losizm%little-sql", + "mjakubowski84/parquet4s":{ + "project":"mjakubowski84/parquet4s", + "repoUrl":"https://github.com/mjakubowski84/parquet4s.git", + "revision":"v2.13.0", + "version":"2.13.0", + "targets":"com.github.mjakubowski84%parquet4s-akka com.github.mjakubowski84%parquet4s-core com.github.mjakubowski84%parquet4s-fs2 com.github.mjakubowski84%parquet4s-scalapb", "config":{ "projects":{ "exclude":[ @@ -20007,19 +25128,12 @@ ] } }, - "losizm/little-time":{ - "project":"losizm/little-time", - "repoUrl":"https://github.com/losizm/little-time.git", - "revision":"v4.0.0", - "version":"4.0.0", - "targets":"com.github.losizm%little-time" - }, - "losizm/scamper":{ - "project":"losizm/scamper", - "repoUrl":"https://github.com/losizm/scamper.git", - "revision":"v38.0.0", - "version":"38.0.0", - "targets":"com.github.losizm%scamper", + "mkroli/dns4s":{ + "project":"mkroli/dns4s", + "repoUrl":"https://github.com/mkroli/dns4s.git", + "revision":"v0.21.0", + "version":"0.21.0", + "targets":"com.github.mkroli%dns4s-akka com.github.mkroli%dns4s-core com.github.mkroli%dns4s-fs2 com.github.mkroli%dns4s-netty", "config":{ "projects":{ "exclude":[ @@ -20030,7 +25144,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -20051,19 +25165,19 @@ ] } }, - "losizm/t2":{ - "project":"losizm/t2", - "repoUrl":"https://github.com/losizm/t2.git", - "revision":"v2.0.0", - "version":"2.0.0", - "targets":"com.github.losizm%t2" + "mkroli/lpm":{ + "project":"mkroli/lpm", + "repoUrl":"https://github.com/mkroli/lpm.git", + "revision":"v0.8.0", + "version":"0.8.0", + "targets":"com.github.mkroli%lpm" }, - "lunduniversity/introprog-scalalib":{ - "project":"lunduniversity/introprog-scalalib", - "repoUrl":"https://github.com/lunduniversity/introprog-scalalib.git", - "revision":"v1.3.1", - "version":"1.3.1", - "targets":"se.lth.cs%introprog", + "mobimeo/fs2-gtfs":{ + "project":"mobimeo/fs2-gtfs", + "repoUrl":"https://github.com/mobimeo/fs2-gtfs.git", + "revision":"v0.4.1", + "version":"0.4.1", + "targets":"com.mobimeo%fs2-gtfs-core com.mobimeo%fs2-gtfs-rules com.mobimeo%fs2-gtfs-rules-syntax", "config":{ "projects":{ "exclude":[ @@ -20074,7 +25188,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -20093,18 +25207,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.0.2\"", + "pattern":"val scala3 = \"3.1.2\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "m2-oss/calypso":{ - "project":"m2-oss/calypso", - "repoUrl":"https://github.com/m2-oss/calypso.git", - "revision":"v0.3.0", - "version":"0.3.0", - "targets":"ru.m2%calypso-core ru.m2%calypso-scalapb ru.m2%calypso-testing", + "molarmanful/sclin":{ + "project":"molarmanful/sclin", + "repoUrl":"https://github.com/molarmanful/sclin.git", + "revision":"v0.2.4", + "version":"0.2.4", + "targets":"io.github.molarmanful%sclin", "config":{ "projects":{ "exclude":[ @@ -20115,7 +25229,7 @@ } }, "java":{ - + "version":"21" }, "sbt":{ "commands":[ @@ -20132,20 +25246,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.1.3\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "makiftutuncu/effect":{ - "project":"makiftutuncu/effect", - "repoUrl":"https://github.com/makiftutuncu/effect.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"dev.akif%effect-core", + "monix/implicitbox":{ + "project":"monix/implicitbox", + "repoUrl":"https://github.com/monix/implicitbox.git", + "revision":"v0.3.4", + "version":"0.3.4", + "targets":"io.monix%implicitbox", "config":{ "projects":{ "exclude":[ @@ -20156,11 +25266,11 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ - + "set every Test/classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat" ], "options":[ @@ -20171,18 +25281,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "makingthematrix/signals3":{ - "project":"makingthematrix/signals3", - "repoUrl":"https://github.com/makingthematrix/signals3.git", - "revision":"1.1.0", - "version":"1.1.0", - "targets":"io.github.makingthematrix%signals3", + "monix/minitest":{ + "project":"monix/minitest", + "repoUrl":"https://github.com/monix/minitest.git", + "revision":"v2.9.6", + "version":"2.9.6", + "targets":"io.monix%minitest io.monix%minitest-laws", "config":{ "projects":{ "exclude":[ @@ -20193,11 +25303,11 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ - + "set every Test/classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat" ], "options":[ @@ -20214,12 +25324,12 @@ ] } }, - "malliina/mobile-push":{ - "project":"malliina/mobile-push", - "repoUrl":"https://github.com/malliina/mobile-push.git", - "revision":"v3.7.1", - "version":"3.7.1", - "targets":"com.malliina%mobile-push", + "monix/monix":{ + "project":"monix/monix", + "repoUrl":"https://github.com/monix/monix.git", + "revision":"v3.4.1", + "version":"3.4.1", + "targets":"io.monix%monix-catnap io.monix%monix io.monix%monix-execution io.monix%monix-eval io.monix%monix-internal-jctools io.monix%monix-reactive io.monix%monix-tail io.monix%monix-java", "config":{ "projects":{ "exclude":[ @@ -20251,12 +25361,12 @@ ] } }, - "malliina/sbt-utils":{ - "project":"malliina/sbt-utils", - "repoUrl":"https://github.com/malliina/sbt-utils.git", - "revision":"v1.6.16", - "version":"1.6.16", - "targets":"com.malliina%common-build", + "monix/monix-bio":{ + "project":"monix/monix-bio", + "repoUrl":"https://github.com/monix/monix-bio.git", + "revision":"v1.2.0", + "version":"1.2.0", + "targets":"io.monix%monix-bio", "config":{ "projects":{ "exclude":[ @@ -20267,7 +25377,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -20288,12 +25398,12 @@ ] } }, - "malliina/util-base":{ - "project":"malliina/util-base", - "repoUrl":"https://github.com/malliina/util-base.git", - "revision":"v3.1.0", - "version":"3.1.0", - "targets":"com.malliina%util-base", + "monix/monix-connect":{ + "project":"monix/monix-connect", + "repoUrl":"https://github.com/monix/monix-connect.git", + "revision":"v0.9.0", + "version":"0.9.0", + "targets":"io.monix%monix-sqs io.monix%monix-s3 io.monix%monix-akka io.monix%monix-gcs io.monix%monix-aws-auth io.monix%monix-dynamodb io.monix%monix-elasticsearch io.monix%monix-redis io.monix%monix-hdfs", "config":{ "projects":{ "exclude":[ @@ -20319,25 +25429,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "malyszaryczlowiek/foo-repo":{ - "project":"malyszaryczlowiek/foo-repo", - "repoUrl":"https://github.com/malyszaryczlowiek/foo-repo.git", - "revision":"9cd6dd23fb3528ff8535f641d23ff91db5b01021", - "version":"0.1.1", - "targets":"io.github.malyszaryczlowiek%foo-repo" - }, - "malyszaryczlowiek/kessenger-lib":{ - "project":"malyszaryczlowiek/kessenger-lib", - "repoUrl":"https://github.com/malyszaryczlowiek/kessenger-lib.git", - "revision":"v0.3.23", - "version":"0.3.23", - "targets":"io.github.malyszaryczlowiek%kessenger-lib", + "monix/monix-testing":{ + "project":"monix/monix-testing", + "repoUrl":"https://github.com/monix/monix-testing.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"io.monix%monix-testing-minitest io.monix%monix-testing-scalatest io.monix%monix-testing-utest", "config":{ "projects":{ "exclude":[ @@ -20348,7 +25451,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -20365,20 +25468,23 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "marchliu/jaskell-dotty":{ - "project":"marchliu/jaskell-dotty", - "repoUrl":"https://github.com/marchliu/jaskell-dotty.git", - "revision":"22af947d1a8590cd0d5a48891c4b86722053fe44", - "version":"0.6.3", - "targets":"io.github.marchliu%jaskell-dotty", + "mpollmeier/colordiff":{ + "project":"mpollmeier/colordiff", + "repoUrl":"https://github.com/mpollmeier/colordiff.git", + "revision":"v0.36", + "version":"0.36", + "targets":"com.michaelpollmeier%colordiff" + }, + "mpollmeier/scala-repl-pp":{ + "project":"mpollmeier/scala-repl-pp", + "repoUrl":"https://github.com/mpollmeier/scala-repl-pp.git", + "revision":"v0.0.42", + "version":"0.0.42", + "targets":"com.michaelpollmeier%scala-repl-pp-server com.michaelpollmeier%scala-repl-pp-all com.michaelpollmeier%scala-repl-pp", "config":{ "projects":{ "exclude":[ @@ -20389,11 +25495,11 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ - "set Compile/sources ~= (_.filter(_.getName != \"NewLine.scala\")) " + ], "options":[ @@ -20404,39 +25510,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "marcinzh/turbolift":{ - "project":"marcinzh/turbolift", - "repoUrl":"https://github.com/marcinzh/turbolift.git", - "revision":"v0.25.0", - "version":"0.25.0", - "targets":"io.github.marcinzh%turbolift-core" - }, - "marcinzh/yamlike":{ - "project":"marcinzh/yamlike", - "repoUrl":"https://github.com/marcinzh/yamlike.git", - "revision":"97fbdead062c27fda03aa655af76b092cc7a12a9", - "version":"0.1.0", - "targets":"io.github.marcinzh%yamlayer io.github.marcinzh%yamlist" - }, - "martinhh/scalacheck-derived":{ - "project":"martinhh/scalacheck-derived", - "repoUrl":"https://github.com/martinhh/scalacheck-derived.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"io.github.martinhh%scalacheck-derived" - }, - "massimosiani/monix-newtypes-cats":{ - "project":"massimosiani/monix-newtypes-cats", - "repoUrl":"https://github.com/massimosiani/monix-newtypes-cats.git", - "revision":"v0.0.3", - "version":"0.0.3", - "targets":"io.github.massimosiani%monix-newtypes-cats", + "mrdimosthenis/glicko2":{ + "project":"mrdimosthenis/glicko2", + "repoUrl":"https://github.com/mrdimosthenis/glicko2.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"com.github.mrdimosthenis%glicko2", "config":{ "projects":{ "exclude":[ @@ -20447,7 +25532,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -20468,12 +25553,12 @@ ] } }, - "massimosiani/skunk":{ - "project":"massimosiani/skunk", - "repoUrl":"https://github.com/massimosiani/skunk.git", - "revision":"cbc701015b93281c7b8f7da57541987d6c097cf2", - "version":"0.3.2", - "targets":"io.github.massimosiani%refined io.github.massimosiani%skunk-circe io.github.massimosiani%skunk-core", + "mrdimosthenis/scala-synapses":{ + "project":"mrdimosthenis/scala-synapses", + "repoUrl":"https://github.com/mrdimosthenis/scala-synapses.git", + "revision":"v8.0.0", + "version":"8.0.0", + "targets":"com.github.mrdimosthenis%synapses", "config":{ "projects":{ "exclude":[ @@ -20503,18 +25588,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val `scala-3` = \"3.2.2\"", - "replaceWith":"val `scala-3` = \"\"" + "pattern":"val scala3Version = \"3.0.1\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "mateuszkubuszok/pipez":{ - "project":"mateuszkubuszok/pipez", - "repoUrl":"https://github.com/mateuszkubuszok/pipez.git", - "revision":"v0.5.1", - "version":"0.5.1", - "targets":"com.kubuszok%pipez com.kubuszok%pipez-dsl", + "msgpack4z/msgpack4z-argonaut":{ + "project":"msgpack4z/msgpack4z-argonaut", + "repoUrl":"https://github.com/msgpack4z/msgpack4z-argonaut.git", + "revision":"v0.8.0", + "version":"0.8.0", + "targets":"com.github.xuwei-k%msgpack4z-argonaut", "config":{ "projects":{ "exclude":[ @@ -20525,7 +25610,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -20543,26 +25628,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/Settings.scala", - "pattern":"case Some((3, 2))", - "replaceWith":"case Some((3, _))" + "path":"build.sbt", + "pattern":"def Scala3 = \"3.1.1\"", + "replaceWith":"def Scala3 = \"\"" } ] } }, - "mattlangsenkamp/svgbounds":{ - "project":"mattlangsenkamp/svgbounds", - "repoUrl":"https://github.com/mattlangsenkamp/svgbounds.git", - "revision":"62e3642173d1ccf806af63768d45b32bfbdd2000", - "version":"0.1.0", - "targets":"com.mattlangsenkamp.svgBounds%svgbounds" - }, - "max-leuthaeuser/scroll":{ - "project":"max-leuthaeuser/scroll", - "repoUrl":"https://github.com/max-leuthaeuser/scroll.git", - "revision":"003693cb1bb24fed2715a2bf98594618be0d1141", - "version":"3.0", - "targets":"com.github.max-leuthaeuser%scroll", + "msgpack4z/msgpack4z-circe":{ + "project":"msgpack4z/msgpack4z-circe", + "repoUrl":"https://github.com/msgpack4z/msgpack4z-circe.git", + "revision":"v0.14.0", + "version":"0.14.0", + "targets":"com.github.xuwei-k%msgpack4z-circe", "config":{ "projects":{ "exclude":[ @@ -20573,7 +25651,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -20594,12 +25672,19 @@ ] } }, - "mdedetrich/scalacheck":{ - "project":"mdedetrich/scalacheck", - "repoUrl":"https://github.com/mdedetrich/scalacheck.git", - "revision":"0d68f357b544705b3b9ebf1d914fd5a1e14a972b", - "version":"1.17.0", - "targets":"org.mdedetrich%scalacheck", + "msgpack4z/msgpack4z-core":{ + "project":"msgpack4z/msgpack4z-core", + "repoUrl":"https://github.com/msgpack4z/msgpack4z-core.git", + "revision":"v0.6.1", + "version":"0.6.1", + "targets":"com.github.xuwei-k%msgpack4z-core" + }, + "msgpack4z/msgpack4z-jawn":{ + "project":"msgpack4z/msgpack4z-jawn", + "repoUrl":"https://github.com/msgpack4z/msgpack4z-jawn.git", + "revision":"v0.7.3", + "version":"0.7.3", + "targets":"com.github.xuwei-k%msgpack4z-jawn", "config":{ "projects":{ "exclude":[ @@ -20610,7 +25695,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -20629,18 +25714,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.3\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"def Scala3 = \"3.1.0\"", + "replaceWith":"def Scala3 = \"\"" } ] } }, - "medeia/medeia":{ - "project":"medeia/medeia", - "repoUrl":"https://github.com/medeia/medeia.git", - "revision":"v0.9.3", - "version":"0.9.3", - "targets":"de.megaera%medeia de.megaera%medeia-enumeratum de.megaera%medeia-refined", + "msgpack4z/msgpack4z-play":{ + "project":"msgpack4z/msgpack4z-play", + "repoUrl":"https://github.com/msgpack4z/msgpack4z-play.git", + "revision":"v0.12.0", + "version":"0.12.0", + "targets":"com.github.xuwei-k%msgpack4z-play", "config":{ "projects":{ "exclude":[ @@ -20655,8 +25740,7 @@ }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -20673,12 +25757,12 @@ ] } }, - "metarank/cfor":{ - "project":"metarank/cfor", - "repoUrl":"https://github.com/metarank/cfor.git", - "revision":"0.3", - "version":"0.3", - "targets":"io.github.metarank%cfor", + "mutsuhiro6/ulid-scala3":{ + "project":"mutsuhiro6/ulid-scala3", + "repoUrl":"https://github.com/mutsuhiro6/ulid-scala3.git", + "revision":"v1.0.2", + "version":"1.0.2", + "targets":"io.github.mutsuhiro6%ulid-scala3", "config":{ "projects":{ "exclude":[ @@ -20689,7 +25773,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -20704,18 +25788,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.1.1\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "metarank/ltrlib":{ - "project":"metarank/ltrlib", - "repoUrl":"https://github.com/metarank/ltrlib.git", - "revision":"0.2.2", - "version":"0.2.2", - "targets":"io.github.metarank%ltrlib", + "mvv/sager":{ + "project":"mvv/sager", + "repoUrl":"https://github.com/mvv/sager.git", + "revision":"v0.2-M1", + "version":"0.2-M1", + "targets":"com.github.mvv.sager%sager com.github.mvv.sager%sager-zio com.github.mvv.sager%sager-zio-interop-cats", "config":{ "projects":{ "exclude":[ @@ -20726,11 +25814,11 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ - + "disableFatalWarnings" ], "options":[ @@ -20741,18 +25829,18 @@ ] }, - "tests":"disabled", + "tests":"full", "sourcePatches":[ ] } }, - "milessabin/shapeless":{ - "project":"milessabin/shapeless", - "repoUrl":"https://github.com/milessabin/shapeless.git", - "revision":"v3.0.0", - "version":"3.0.0", - "targets":"org.typelevel%shapeless3-deriving org.typelevel%shapeless3-test org.typelevel%shapeless3-typeable", + "mvv/typine":{ + "project":"mvv/typine", + "repoUrl":"https://github.com/mvv/typine.git", + "revision":"v0.1-M4", + "version":"0.1-M4", + "targets":"com.github.mvv.typine%typine", "config":{ "projects":{ "exclude":[ @@ -20767,7 +25855,7 @@ }, "sbt":{ "commands":[ - + "disableFatalWarnings" ], "options":[ @@ -20784,19 +25872,12 @@ ] } }, - "mimoguz/layeredfonticon":{ - "project":"mimoguz/layeredfonticon", - "repoUrl":"https://github.com/mimoguz/layeredfonticon.git", - "revision":"a94a562ba3cc53c3b3b1b186c8b543b0777ad6a2", - "version":"0.2.0", - "targets":"io.github.mimoguz%layeredfonticon-basic io.github.mimoguz%layeredfonticon-core io.github.mimoguz%layeredfonticon-flat" - }, - "minosiants/pencil":{ - "project":"minosiants/pencil", - "repoUrl":"https://github.com/minosiants/pencil.git", - "revision":"v1.2.0", - "version":"1.2.0", - "targets":"com.minosiants%pencil", + "nafg/cloud-logging-logback-scala":{ + "project":"nafg/cloud-logging-logback-scala", + "repoUrl":"https://github.com/nafg/cloud-logging-logback-scala.git", + "revision":"v0.5.0", + "version":"0.5.0", + "targets":"io.github.nafg.cloudlogging%appender io.github.nafg.cloudlogging%marker", "config":{ "projects":{ "exclude":[ @@ -20828,23 +25909,23 @@ ] } }, - "mixql/mixql-core":{ - "project":"mixql/mixql-core", - "repoUrl":"https://github.com/mixql/mixql-core.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"org.mixql%mixql-core", + "nafg/css-dsl":{ + "project":"nafg/css-dsl", + "repoUrl":"https://github.com/nafg/css-dsl.git", + "revision":"v0.9.0", + "version":"0.9.0", + "targets":"io.github.nafg.css-dsl%bootstrap3_scalatags io.github.nafg.css-dsl%fomanticui_scalatags io.github.nafg.css-dsl%bootstrap4_scalatags io.github.nafg.css-dsl%bulma_scalatags io.github.nafg.css-dsl%fontawesome_scalatags io.github.nafg.css-dsl%semanticui_scalatags io.github.nafg.css-dsl%bootstrap5_scalatags", "config":{ "projects":{ "exclude":[ - + "io.github.nafg.css-dsl%fomanticui_scalatags" ], "overrides":{ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -20861,20 +25942,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.3\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "mixql/mixql-engine":{ - "project":"mixql/mixql-engine", - "repoUrl":"https://github.com/mixql/mixql-engine.git", - "revision":"v.0.1.0", - "version":"0.1.0", - "targets":"org.mixql%mixql-engine org.mixql%mixql-cluster", + "nafg/scala-phonenumber":{ + "project":"nafg/scala-phonenumber", + "repoUrl":"https://github.com/nafg/scala-phonenumber.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"io.github.nafg.scala-phonenumber%scala-phonenumber", "config":{ "projects":{ "exclude":[ @@ -20885,7 +25962,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -20902,20 +25979,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "mixql/mixql-protobuf":{ - "project":"mixql/mixql-protobuf", - "repoUrl":"https://github.com/mixql/mixql-protobuf.git", - "revision":"v.0.1.0", - "version":"0.1.0", - "targets":"org.mixql%mixql-protobuf", + "nafg/scheduler":{ + "project":"nafg/scheduler", + "repoUrl":"https://github.com/nafg/scheduler.git", + "revision":"v2.0.2", + "version":"2.0.2", + "targets":"io.github.nafg.scheduler%scheduler", "config":{ "projects":{ "exclude":[ @@ -20926,7 +25999,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -20943,20 +26016,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "mjakubowski84/parquet4s":{ - "project":"mjakubowski84/parquet4s", - "repoUrl":"https://github.com/mjakubowski84/parquet4s.git", - "revision":"v2.11.0", - "version":"2.11.0", - "targets":"com.github.mjakubowski84%parquet4s-akka com.github.mjakubowski84%parquet4s-core com.github.mjakubowski84%parquet4s-fs2", + "nafg/simple-router":{ + "project":"nafg/simple-router", + "repoUrl":"https://github.com/nafg/simple-router.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"io.github.nafg.simple-router%simple-router io.github.nafg.simple-router%core", "config":{ "projects":{ "exclude":[ @@ -20988,12 +26057,12 @@ ] } }, - "mkroli/dns4s":{ - "project":"mkroli/dns4s", - "repoUrl":"https://github.com/mkroli/dns4s.git", - "revision":"v0.21.0", - "version":"0.21.0", - "targets":"com.github.mkroli%dns4s-akka com.github.mkroli%dns4s-core com.github.mkroli%dns4s-fs2 com.github.mkroli%dns4s-netty", + "nafg/simpleivr":{ + "project":"nafg/simpleivr", + "repoUrl":"https://github.com/nafg/simpleivr.git", + "revision":"v0.8.2", + "version":"0.8.2", + "targets":"io.github.nafg.simpleivr%simpleivr-asterisk io.github.nafg.simpleivr%simpleivr-core io.github.nafg.simpleivr%simpleivr-testing", "config":{ "projects":{ "exclude":[ @@ -21004,7 +26073,7 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ @@ -21019,25 +26088,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "mkroli/lpm":{ - "project":"mkroli/lpm", - "repoUrl":"https://github.com/mkroli/lpm.git", - "revision":"v0.8.0", - "version":"0.8.0", - "targets":"com.github.mkroli%lpm" - }, - "mobimeo/fs2-gtfs":{ - "project":"mobimeo/fs2-gtfs", - "repoUrl":"https://github.com/mobimeo/fs2-gtfs.git", - "revision":"v0.4.1", - "version":"0.4.1", - "targets":"com.mobimeo%fs2-gtfs-core com.mobimeo%fs2-gtfs-rules com.mobimeo%fs2-gtfs-rules-syntax", + "naoh87/lettucef":{ + "project":"naoh87/lettucef", + "repoUrl":"https://github.com/naoh87/lettucef.git", + "revision":"v0.1.8", + "version":"0.1.8", + "targets":"dev.naoh%lettucef-core dev.naoh%lettucef-extras dev.naoh%lettucef-streams", "config":{ "projects":{ "exclude":[ @@ -21048,7 +26110,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -21063,22 +26125,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.2\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "molarmanful/sclin":{ - "project":"molarmanful/sclin", - "repoUrl":"https://github.com/molarmanful/sclin.git", - "revision":"v0.1.8", - "version":"0.1.8", - "targets":"io.github.molarmanful%sclin", + + ] + } + }, + "narma/tranzactio":{ + "project":"narma/tranzactio", + "repoUrl":"https://github.com/narma/tranzactio.git", + "revision":"v4.2.0", + "version":"4.2.0", + "targets":"st.alzo%tranzactio", "config":{ "projects":{ "exclude":[ @@ -21089,7 +26147,7 @@ } }, "java":{ - "version":"21" + "version":"17" }, "sbt":{ "commands":[ @@ -21110,12 +26168,12 @@ ] } }, - "monix/implicitbox":{ - "project":"monix/implicitbox", - "repoUrl":"https://github.com/monix/implicitbox.git", - "revision":"v0.3.4", - "version":"0.3.4", - "targets":"io.monix%implicitbox", + "narma/zio-docker":{ + "project":"narma/zio-docker", + "repoUrl":"https://github.com/narma/zio-docker.git", + "revision":"v2.0.1-M1", + "version":"2.0.1-M1", + "targets":"st.alzo%zio-docker", "config":{ "projects":{ "exclude":[ @@ -21126,11 +26184,11 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ - "set every Test/classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat" + ], "options":[ @@ -21147,12 +26205,12 @@ ] } }, - "monix/minitest":{ - "project":"monix/minitest", - "repoUrl":"https://github.com/monix/minitest.git", - "revision":"v2.9.6", - "version":"2.9.6", - "targets":"io.monix%minitest io.monix%minitest-laws", + "nationalarchives/dr2-preservica-client":{ + "project":"nationalarchives/dr2-preservica-client", + "repoUrl":"https://github.com/nationalarchives/dr2-preservica-client.git", + "revision":"v0.0.2", + "version":"0.0.2", + "targets":"uk.gov.nationalarchives%preservica-client-root uk.gov.nationalarchives%preservica-client-fs2 uk.gov.nationalarchives%preservica-client-zio", "config":{ "projects":{ "exclude":[ @@ -21163,11 +26221,11 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ - "set every Test/classLoaderLayeringStrategy := ClassLoaderLayeringStrategy.Flat" + ], "options":[ @@ -21180,16 +26238,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.3.0-RC4\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "monix/monix":{ - "project":"monix/monix", - "repoUrl":"https://github.com/monix/monix.git", - "revision":"v3.4.1", - "version":"3.4.1", - "targets":"io.monix%monix-catnap io.monix%monix io.monix%monix-execution io.monix%monix-eval io.monix%monix-internal-jctools io.monix%monix-reactive io.monix%monix-tail io.monix%monix-java", + "nau/scalus":{ + "project":"nau/scalus", + "repoUrl":"https://github.com/nau/scalus.git", + "revision":"v0.3.0", + "version":"0.3.0", + "targets":"org.scalus%scalus org.scalus%scalus-plugin", "config":{ "projects":{ "exclude":[ @@ -21200,7 +26262,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -21217,16 +26279,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.3.0\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "monix/monix-bio":{ - "project":"monix/monix-bio", - "repoUrl":"https://github.com/monix/monix-bio.git", - "revision":"v1.2.0", - "version":"1.2.0", - "targets":"io.monix%monix-bio", + "neandertech/langoustine":{ + "project":"neandertech/langoustine", + "repoUrl":"https://github.com/neandertech/langoustine.git", + "revision":"v0.0.21", + "version":"0.0.21", + "targets":"tech.neander%langoustine-app tech.neander%langoustine-lsp tech.neander%langoustine-meta tech.neander%langoustine-tracer tech.neander%langoustine-tracer-shared", "config":{ "projects":{ "exclude":[ @@ -21237,7 +26303,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -21258,12 +26324,12 @@ ] } }, - "monix/monix-connect":{ - "project":"monix/monix-connect", - "repoUrl":"https://github.com/monix/monix-connect.git", - "revision":"v0.9.0", - "version":"0.9.0", - "targets":"io.monix%monix-sqs io.monix%monix-s3 io.monix%monix-akka io.monix%monix-gcs io.monix%monix-aws-auth io.monix%monix-dynamodb io.monix%monix-elasticsearch io.monix%monix-redis io.monix%monix-hdfs", + "nebula-contrib/testcontainers-nebula":{ + "project":"nebula-contrib/testcontainers-nebula", + "repoUrl":"https://github.com/nebula-contrib/testcontainers-nebula.git", + "revision":"v0.1.2", + "version":"0.1.2", + "targets":"io.github.jxnu-liguobin%testcontainers-nebula io.github.jxnu-liguobin%testcontainers-nebula-zio", "config":{ "projects":{ "exclude":[ @@ -21289,18 +26355,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "monix/monix-testing":{ - "project":"monix/monix-testing", - "repoUrl":"https://github.com/monix/monix-testing.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"io.monix%monix-testing-minitest io.monix%monix-testing-scalatest io.monix%monix-testing-utest", + "nebula-contrib/zio-nebula":{ + "project":"nebula-contrib/zio-nebula", + "repoUrl":"https://github.com/nebula-contrib/zio-nebula.git", + "revision":"v0.1.1", + "version":"0.1.1", + "targets":"io.github.jxnu-liguobin%zio-nebula", "config":{ "projects":{ "exclude":[ @@ -21332,12 +26398,12 @@ ] } }, - "mpollmeier/scala-repl-pp":{ - "project":"mpollmeier/scala-repl-pp", - "repoUrl":"https://github.com/mpollmeier/scala-repl-pp.git", - "revision":"v0.0.42", - "version":"0.0.42", - "targets":"com.michaelpollmeier%scala-repl-pp-server com.michaelpollmeier%scala-repl-pp-all com.michaelpollmeier%scala-repl-pp", + "neotypes/neotypes":{ + "project":"neotypes/neotypes", + "repoUrl":"https://github.com/neotypes/neotypes.git", + "revision":"v1.0.0-M3", + "version":"1.0.0-M3", + "targets":"io.github.neotypes%neotypes-cats-effect io.github.neotypes%neotypes-cats-data io.github.neotypes%neotypes-fs2-stream io.github.neotypes%neotypes-zio io.github.neotypes%neotypes-generic io.github.neotypes%neotypes-monix-stream io.github.neotypes%neotypes-refined io.github.neotypes%neotypes-zio-stream io.github.neotypes%neotypes-akka-stream io.github.neotypes%neotypes-monix io.github.neotypes%neotypes-core io.github.neotypes%neotypes-enumeratum", "config":{ "projects":{ "exclude":[ @@ -21348,7 +26414,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -21363,18 +26429,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "mrdimosthenis/glicko2":{ - "project":"mrdimosthenis/glicko2", - "repoUrl":"https://github.com/mrdimosthenis/glicko2.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"com.github.mrdimosthenis%glicko2", + "nicolasfara/ecscala":{ + "project":"nicolasfara/ecscala", + "repoUrl":"https://github.com/nicolasfara/ecscala.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"dev.atedeg%ecscala", "config":{ "projects":{ "exclude":[ @@ -21385,7 +26455,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -21402,16 +26472,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.0.1\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "mrdimosthenis/scala-synapses":{ - "project":"mrdimosthenis/scala-synapses", - "repoUrl":"https://github.com/mrdimosthenis/scala-synapses.git", - "revision":"v8.0.0", - "version":"8.0.0", - "targets":"com.github.mrdimosthenis%synapses", + "noelwelsh/mads":{ + "project":"noelwelsh/mads", + "repoUrl":"https://github.com/noelwelsh/mads.git", + "revision":"0.2.0", + "version":"0.2.0", + "targets":"org.creativescala%mads", "config":{ "projects":{ "exclude":[ @@ -21422,11 +26496,11 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ - + "disableFatalWarnings" ], "options":[ @@ -21441,18 +26515,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.0.1\"", + "pattern":"val scala3Version = \"3.0.0\"", "replaceWith":"val scala3Version = \"\"" } ] } }, - "msgpack4z/msgpack4z-argonaut":{ - "project":"msgpack4z/msgpack4z-argonaut", - "repoUrl":"https://github.com/msgpack4z/msgpack4z-argonaut.git", - "revision":"v0.8.0", - "version":"0.8.0", - "targets":"com.github.xuwei-k%msgpack4z-argonaut", + "nomadblacky/scalatest-otel-reporter":{ + "project":"nomadblacky/scalatest-otel-reporter", + "repoUrl":"https://github.com/nomadblacky/scalatest-otel-reporter.git", + "revision":"v0.1.0-alpha", + "version":"0.1.0-alpha", + "targets":"dev.nomadblacky%scalatest-otel-reporter", "config":{ "projects":{ "exclude":[ @@ -21463,7 +26537,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -21482,18 +26556,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"def Scala3 = \"3.1.1\"", - "replaceWith":"def Scala3 = \"\"" + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "msgpack4z/msgpack4z-circe":{ - "project":"msgpack4z/msgpack4z-circe", - "repoUrl":"https://github.com/msgpack4z/msgpack4z-circe.git", - "revision":"v0.14.0", - "version":"0.14.0", - "targets":"com.github.xuwei-k%msgpack4z-circe", + "norbert-radyk/spoiwo":{ + "project":"norbert-radyk/spoiwo", + "repoUrl":"https://github.com/norbert-radyk/spoiwo.git", + "revision":"", + "version":"2.2.1", + "targets":"com.norbitltd%spoiwo com.norbitltd%spoiwo-examples com.norbitltd%spoiwo-grids", "config":{ "projects":{ "exclude":[ @@ -21525,19 +26599,12 @@ ] } }, - "msgpack4z/msgpack4z-core":{ - "project":"msgpack4z/msgpack4z-core", - "repoUrl":"https://github.com/msgpack4z/msgpack4z-core.git", - "revision":"v0.6.1", - "version":"0.6.1", - "targets":"com.github.xuwei-k%msgpack4z-core" - }, - "msgpack4z/msgpack4z-jawn":{ - "project":"msgpack4z/msgpack4z-jawn", - "repoUrl":"https://github.com/msgpack4z/msgpack4z-jawn.git", - "revision":"v0.7.3", - "version":"0.7.3", - "targets":"com.github.xuwei-k%msgpack4z-jawn", + "note/dhallj-magnolia":{ + "project":"note/dhallj-magnolia", + "repoUrl":"https://github.com/note/dhallj-magnolia.git", + "revision":"v0.1.3", + "version":"0.1.3", + "targets":"pl.msitko%dhallj-magnolia", "config":{ "projects":{ "exclude":[ @@ -21548,7 +26615,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -21567,18 +26634,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"def Scala3 = \"3.1.0\"", - "replaceWith":"def Scala3 = \"\"" + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "msgpack4z/msgpack4z-play":{ - "project":"msgpack4z/msgpack4z-play", - "repoUrl":"https://github.com/msgpack4z/msgpack4z-play.git", - "revision":"v0.11.1", - "version":"0.11.1", - "targets":"com.github.xuwei-k%msgpack4z-play", + "note/mini-refined":{ + "project":"note/mini-refined", + "repoUrl":"https://github.com/note/mini-refined.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"pl.msitko%mini-refined", "config":{ "projects":{ "exclude":[ @@ -21589,7 +26656,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -21610,12 +26677,26 @@ ] } }, - "mutsuhiro6/ulid-scala3":{ - "project":"mutsuhiro6/ulid-scala3", - "repoUrl":"https://github.com/mutsuhiro6/ulid-scala3.git", - "revision":"v1.0.2", - "version":"1.0.2", - "targets":"io.github.mutsuhiro6%ulid-scala3", + "nremond/pbkdf2-scala":{ + "project":"nremond/pbkdf2-scala", + "repoUrl":"https://github.com/nremond/pbkdf2-scala.git", + "revision":"v0.7.1", + "version":"0.7.1", + "targets":"io.github.nremond%pbkdf2-scala" + }, + "nrinaudo/kantan.parsers":{ + "project":"nrinaudo/kantan.parsers", + "repoUrl":"https://github.com/nrinaudo/kantan.parsers.git", + "revision":"v1.0.6", + "version":"1.0.6", + "targets":"com.nrinaudo%kantan-parsers" + }, + "nrkno/bigquery-scala":{ + "project":"nrkno/bigquery-scala", + "repoUrl":"https://github.com/nrkno/bigquery-scala.git", + "revision":"v0.11.0", + "version":"0.11.0", + "targets":"no.nrk.bigquery%bigquery-codegen no.nrk.bigquery%bigquery-testing no.nrk.bigquery%bigquery-zetasql no.nrk.bigquery%bigquery-core no.nrk.bigquery%bigquery-prometheus", "config":{ "projects":{ "exclude":[ @@ -21643,20 +26724,23 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.1.1\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "mvv/sager":{ - "project":"mvv/sager", - "repoUrl":"https://github.com/mvv/sager.git", - "revision":"v0.2-M1", - "version":"0.2-M1", - "targets":"com.github.mvv.sager%sager com.github.mvv.sager%sager-zio com.github.mvv.sager%sager-zio-interop-cats", + "nscala-time/nscala-time":{ + "project":"nscala-time/nscala-time", + "repoUrl":"https://github.com/nscala-time/nscala-time.git", + "revision":"releases/2.32.0", + "version":"2.32.0", + "targets":"com.github.nscala-time%nscala-time" + }, + "nthportal/scala-platform":{ + "project":"nthportal/scala-platform", + "repoUrl":"https://github.com/nthportal/scala-platform.git", + "revision":"v1.0.2", + "version":"1.0.2", + "targets":"lgbt.princess%scala-platform lgbt.princess%platform", "config":{ "projects":{ "exclude":[ @@ -21671,7 +26755,7 @@ }, "sbt":{ "commands":[ - "disableFatalWarnings" + ], "options":[ @@ -21684,16 +26768,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "mvv/typine":{ - "project":"mvv/typine", - "repoUrl":"https://github.com/mvv/typine.git", - "revision":"v0.1-M4", - "version":"0.1-M4", - "targets":"com.github.mvv.typine%typine", + "nthportal/spaghetti":{ + "project":"nthportal/spaghetti", + "repoUrl":"https://github.com/nthportal/spaghetti.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"lgbt.princess%spaghetti", "config":{ "projects":{ "exclude":[ @@ -21708,7 +26796,7 @@ }, "sbt":{ "commands":[ - "disableFatalWarnings" + ], "options":[ @@ -21725,12 +26813,26 @@ ] } }, - "nafg/cloud-logging-logback-scala":{ - "project":"nafg/cloud-logging-logback-scala", - "repoUrl":"https://github.com/nafg/cloud-logging-logback-scala.git", - "revision":"v0.4.2", - "version":"0.4.2", - "targets":"io.github.nafg.cloudlogging%appender io.github.nafg.cloudlogging%marker", + "nulab/play2-oauth2-provider":{ + "project":"nulab/play2-oauth2-provider", + "repoUrl":"https://github.com/nulab/play2-oauth2-provider.git", + "revision":"2.0.0", + "version":"2.0.0", + "targets":"com.nulab-inc%play2-oauth2-provider" + }, + "nulab/scala-oauth2-provider":{ + "project":"nulab/scala-oauth2-provider", + "repoUrl":"https://github.com/nulab/scala-oauth2-provider.git", + "revision":"1.6.0", + "version":"1.6.0", + "targets":"com.nulab-inc%scala-oauth2-core" + }, + "ocadotechnology/sttp-oauth2":{ + "project":"ocadotechnology/sttp-oauth2", + "repoUrl":"https://github.com/ocadotechnology/sttp-oauth2.git", + "revision":"v0.17.0-RC1", + "version":"0.17.0-RC1", + "targets":"com.ocadotechnology%sttp-oauth2 com.ocadotechnology%sttp-oauth2-cache-ce2 com.ocadotechnology%sttp-oauth2-cache-future com.ocadotechnology%sttp-oauth2-jsoniter com.ocadotechnology%sttp-oauth2-cache-cats com.ocadotechnology%sttp-oauth2-circe com.ocadotechnology%sttp-oauth2-cache-scalacache com.ocadotechnology%sttp-oauth2-cache", "config":{ "projects":{ "exclude":[ @@ -21741,7 +26843,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -21758,27 +26860,31 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "nafg/css-dsl":{ - "project":"nafg/css-dsl", - "repoUrl":"https://github.com/nafg/css-dsl.git", - "revision":"v0.9.0", - "version":"0.9.0", - "targets":"io.github.nafg.css-dsl%bootstrap3_scalatags io.github.nafg.css-dsl%fomanticui_scalatags io.github.nafg.css-dsl%bootstrap4_scalatags io.github.nafg.css-dsl%bulma_scalatags io.github.nafg.css-dsl%fontawesome_scalatags io.github.nafg.css-dsl%semanticui_scalatags io.github.nafg.css-dsl%bootstrap5_scalatags", + "ohze/akka-guice":{ + "project":"ohze/akka-guice", + "repoUrl":"https://github.com/ohze/akka-guice.git", + "revision":"v3.3.1", + "version":"3.3.1", + "targets":"com.sandinh%akka-guice", "config":{ "projects":{ "exclude":[ - "io.github.nafg.css-dsl%fomanticui_scalatags" + ], "overrides":{ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -21799,12 +26905,12 @@ ] } }, - "nafg/scala-phonenumber":{ - "project":"nafg/scala-phonenumber", - "repoUrl":"https://github.com/nafg/scala-phonenumber.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"io.github.nafg.scala-phonenumber%scala-phonenumber", + "ohze/couchbase-scala":{ + "project":"ohze/couchbase-scala", + "repoUrl":"https://github.com/ohze/couchbase-scala.git", + "revision":"v9.2.0", + "version":"9.2.0", + "targets":"com.sandinh%couchbase-scala", "config":{ "projects":{ "exclude":[ @@ -21815,7 +26921,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -21830,18 +26936,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "nafg/scheduler":{ - "project":"nafg/scheduler", - "repoUrl":"https://github.com/nafg/scheduler.git", - "revision":"v2.0.2", - "version":"2.0.2", - "targets":"io.github.nafg.scheduler%scheduler", + "ohze/php-utils":{ + "project":"ohze/php-utils", + "repoUrl":"https://github.com/ohze/php-utils.git", + "revision":"v1.0.9", + "version":"1.0.9", + "targets":"com.sandinh%php-utils", "config":{ "projects":{ "exclude":[ @@ -21852,7 +26958,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -21867,18 +26973,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "nafg/simple-router":{ - "project":"nafg/simple-router", - "repoUrl":"https://github.com/nafg/simple-router.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"io.github.nafg.simple-router%simple-router io.github.nafg.simple-router%core", + "ohze/sd-util":{ + "project":"ohze/sd-util", + "repoUrl":"https://github.com/ohze/sd-util.git", + "revision":"v1.3.0", + "version":"1.3.0", + "targets":"com.sandinh%sd-util com.sandinh%env-hack", "config":{ "projects":{ "exclude":[ @@ -21889,7 +26995,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -21910,12 +27016,12 @@ ] } }, - "nafg/simpleivr":{ - "project":"nafg/simpleivr", - "repoUrl":"https://github.com/nafg/simpleivr.git", - "revision":"v0.8.2", - "version":"0.8.2", - "targets":"io.github.nafg.simpleivr%simpleivr-asterisk io.github.nafg.simpleivr%simpleivr-core io.github.nafg.simpleivr%simpleivr-testing", + "olivierblanvillain/regsafe":{ + "project":"olivierblanvillain/regsafe", + "repoUrl":"https://github.com/olivierblanvillain/regsafe.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"in.nvilla%regsafe", "config":{ "projects":{ "exclude":[ @@ -21947,12 +27053,33 @@ ] } }, - "naoh87/lettucef":{ - "project":"naoh87/lettucef", - "repoUrl":"https://github.com/naoh87/lettucef.git", - "revision":"v0.1.7", - "version":"0.1.7", - "targets":"dev.naoh%lettucef-core dev.naoh%lettucef-extras dev.naoh%lettucef-streams", + "ollls/quartz-h2":{ + "project":"ollls/quartz-h2", + "repoUrl":"https://github.com/ollls/quartz-h2.git", + "revision":"v0.5.1", + "version":"0.5.1", + "targets":"io.github.ollls%quartz-h2" + }, + "ollls/zio-quartz-h2":{ + "project":"ollls/zio-quartz-h2", + "repoUrl":"https://github.com/ollls/zio-quartz-h2.git", + "revision":"v0.5.6", + "version":"0.5.6", + "targets":"io.github.ollls%zio-quartz-h2" + }, + "ollls/zio-tls-http":{ + "project":"ollls/zio-tls-http", + "repoUrl":"https://github.com/ollls/zio-tls-http.git", + "revision":"2.0.0", + "version":"2.0.0", + "targets":"io.github.ollls%zio-tls-http" + }, + "opaliasystems/opalia-commons-core":{ + "project":"opaliasystems/opalia-commons-core", + "repoUrl":"https://github.com/opaliasystems/opalia-commons-core.git", + "revision":"v3.1.0", + "version":"3.1.0", + "targets":"systems.opalia%commons-core", "config":{ "projects":{ "exclude":[ @@ -21963,7 +27090,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -21978,18 +27105,46 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "narma/tranzactio":{ - "project":"narma/tranzactio", - "repoUrl":"https://github.com/narma/tranzactio.git", - "revision":"v4.2.0", - "version":"4.2.0", - "targets":"st.alzo%tranzactio", + "openmole/container":{ + "project":"openmole/container", + "repoUrl":"https://github.com/openmole/container.git", + "revision":"v1.27", + "version":"1.27", + "targets":"org.openmole%container" + }, + "openmole/gridscale":{ + "project":"openmole/gridscale", + "repoUrl":"https://github.com/openmole/gridscale.git", + "revision":"v2.50", + "version":"2.50", + "targets":"org.openmole.gridscale%webdav org.openmole.gridscale%local org.openmole.gridscale%ipfsexample org.openmole.gridscale%gridscale org.openmole.gridscale%qarnot org.openmole.gridscale%http org.openmole.gridscale%example-egi-cream org.openmole.gridscale%oar org.openmole.gridscale%example-ssh org.openmole.gridscale%example-egi-webdav org.openmole.gridscale%ssh org.openmole.gridscale%ipfs org.openmole.gridscale%pbs org.openmole.gridscale%example-local org.openmole.gridscale%effect org.openmole.gridscale%example-qarnot org.openmole.gridscale%example-oar org.openmole.gridscale%sge org.openmole.gridscale%example-slurm org.openmole.gridscale%cluster org.openmole.gridscale%example-http org.openmole.gridscale%example-sge org.openmole.gridscale%slurm org.openmole.gridscale%example-pbs org.openmole.gridscale%example-egi-dirac org.openmole.gridscale%condor org.openmole.gridscale%example-condor org.openmole.gridscale%egi org.openmole.gridscale%dirac" + }, + "openmole/mgo":{ + "project":"openmole/mgo", + "repoUrl":"https://github.com/openmole/mgo.git", + "revision":"v3.55", + "version":"3.55", + "targets":"org.openmole%mgo" + }, + "openmole/scaladget":{ + "project":"openmole/scaladget", + "repoUrl":"https://github.com/openmole/scaladget.git", + "revision":"v1.10.0", + "version":"1.10.0", + "targets":"org.openmole.scaladget%scaladget" + }, + "optics-dev/monocle":{ + "project":"optics-dev/monocle", + "repoUrl":"https://github.com/optics-dev/monocle.git", + "revision":"v3.2.0", + "version":"3.2.0", + "targets":"dev.optics%monocle-law dev.optics%monocle-refined dev.optics%monocle-state dev.optics%monocle-core dev.optics%monocle-macro dev.optics%monocle-unsafe", "config":{ "projects":{ "exclude":[ @@ -22000,7 +27155,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -22017,16 +27172,27 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.2.1\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "narma/zio-docker":{ - "project":"narma/zio-docker", - "repoUrl":"https://github.com/narma/zio-docker.git", - "revision":"v2.0.1-M1", - "version":"2.0.1-M1", - "targets":"st.alzo%zio-docker", + "oranda/libanius":{ + "project":"oranda/libanius", + "repoUrl":"https://github.com/oranda/libanius.git", + "revision":"v0.9.9.2", + "version":"0.9.9.2", + "targets":"com.github.oranda%libanius" + }, + "otavia-projects/mill-rust-jni":{ + "project":"otavia-projects/mill-rust-jni", + "repoUrl":"https://github.com/otavia-projects/mill-rust-jni.git", + "revision":"v0.2.4", + "version":"0.2.4", + "targets":"io.github.otavia-projects%jni-loader", "config":{ "projects":{ "exclude":[ @@ -22037,7 +27203,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -22058,12 +27224,12 @@ ] } }, - "nationalarchives/dr2-preservica-client":{ - "project":"nationalarchives/dr2-preservica-client", - "repoUrl":"https://github.com/nationalarchives/dr2-preservica-client.git", - "revision":"v0.0.2", - "version":"0.0.2", - "targets":"uk.gov.nationalarchives%preservica-client-root uk.gov.nationalarchives%preservica-client-fs2 uk.gov.nationalarchives%preservica-client-zio", + "outr/dd-scala":{ + "project":"outr/dd-scala", + "repoUrl":"https://github.com/outr/dd-scala.git", + "revision":"1.2.13", + "version":"1.2.13", + "targets":"com.outr%dd-scala", "config":{ "projects":{ "exclude":[ @@ -22074,7 +27240,7 @@ } }, "java":{ - + "version":"21" }, "sbt":{ "commands":[ @@ -22093,18 +27259,53 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.3.0-RC4\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "neandertech/langoustine":{ - "project":"neandertech/langoustine", - "repoUrl":"https://github.com/neandertech/langoustine.git", - "revision":"v0.0.20", - "version":"0.0.20", - "targets":"tech.neander%langoustine-app tech.neander%langoustine-lsp tech.neander%langoustine-meta tech.neander%langoustine-tracer tech.neander%langoustine-tracer-shared", + "outr/lucene4s":{ + "project":"outr/lucene4s", + "repoUrl":"https://github.com/outr/lucene4s.git", + "revision":"1.11.1", + "version":"1.11.1", + "targets":"com.outr%lucene4s com.outr%lucene4s-core" + }, + "outr/mailgun4s":{ + "project":"outr/mailgun4s", + "repoUrl":"https://github.com/outr/mailgun4s.git", + "revision":"1.2.1", + "version":"1.2.1", + "targets":"com.outr%mailgun4s" + }, + "outr/media4s":{ + "project":"outr/media4s", + "repoUrl":"https://github.com/outr/media4s.git", + "revision":"1.0.21", + "version":"1.0.21", + "targets":"com.outr%media4s" + }, + "outr/moduload":{ + "project":"outr/moduload", + "repoUrl":"https://github.com/outr/moduload.git", + "revision":"1.1.7", + "version":"1.1.7", + "targets":"com.outr%moduload" + }, + "outr/perfolation":{ + "project":"outr/perfolation", + "repoUrl":"https://github.com/outr/perfolation.git", + "revision":"master", + "version":"1.2.9", + "targets":"com.outr%perfolation com.outr%perfolation-unit" + }, + "outr/profig":{ + "project":"outr/profig", + "repoUrl":"https://github.com/outr/profig.git", + "revision":"3.4.11", + "version":"3.4.11", + "targets":"com.outr%profig", "config":{ "projects":{ "exclude":[ @@ -22115,7 +27316,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -22130,18 +27331,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = List(\"3.3.0\")", + "replaceWith":"val scala3 = List(\"\")" + } ] } }, - "nicolasfara/ecscala":{ - "project":"nicolasfara/ecscala", - "repoUrl":"https://github.com/nicolasfara/ecscala.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"dev.atedeg%ecscala", + "outr/reactify":{ + "project":"outr/reactify", + "repoUrl":"https://github.com/outr/reactify.git", + "revision":"4.1.0", + "version":"4.1.0", + "targets":"com.outr%reactify", "config":{ "projects":{ "exclude":[ @@ -22152,7 +27357,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -22171,18 +27376,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.0.1\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val scala3 = List(\"3.3.0\")", + "replaceWith":"val scala3 = List(\"\")" } ] } }, - "noelwelsh/mads":{ - "project":"noelwelsh/mads", - "repoUrl":"https://github.com/noelwelsh/mads.git", - "revision":"0.2.0", - "version":"0.2.0", - "targets":"org.creativescala%mads", + "outr/robobrowser":{ + "project":"outr/robobrowser", + "repoUrl":"https://github.com/outr/robobrowser.git", + "revision":"1.7.1", + "version":"1.7.1", + "targets":"com.outr%robobrowser", "config":{ "projects":{ "exclude":[ @@ -22193,11 +27398,11 @@ } }, "java":{ - + "version":"21" }, "sbt":{ "commands":[ - "disableFatalWarnings" + ], "options":[ @@ -22208,22 +27413,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.0.0\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val scala3: String = \"3.3.0\"", + "replaceWith":"val scala3: String = \"\"" } ] } }, - "norbert-radyk/spoiwo":{ - "project":"norbert-radyk/spoiwo", - "repoUrl":"https://github.com/norbert-radyk/spoiwo.git", - "revision":"63166ededb84449d64fc92c88225e77e22a167c1", - "version":"2.2.1", - "targets":"com.norbitltd%spoiwo com.norbitltd%spoiwo-examples com.norbitltd%spoiwo-grids", + "outr/scalapass":{ + "project":"outr/scalapass", + "repoUrl":"https://github.com/outr/scalapass.git", + "revision":"1.2.6", + "version":"1.2.6", + "targets":"com.outr%scalapass", "config":{ "projects":{ "exclude":[ @@ -22255,12 +27460,12 @@ ] } }, - "note/dhallj-magnolia":{ - "project":"note/dhallj-magnolia", - "repoUrl":"https://github.com/note/dhallj-magnolia.git", - "revision":"v0.1.3", - "version":"0.1.3", - "targets":"pl.msitko%dhallj-magnolia", + "outr/scarango":{ + "project":"outr/scarango", + "repoUrl":"https://github.com/outr/scarango.git", + "revision":"3.17.0", + "version":"3.17.0", + "targets":"com.outr%scarango-core com.outr%scarango-driver", "config":{ "projects":{ "exclude":[ @@ -22271,7 +27476,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -22286,22 +27491,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "note/mini-refined":{ - "project":"note/mini-refined", - "repoUrl":"https://github.com/note/mini-refined.git", - "revision":"v0.1.1-RC1", - "version":"0.1.1-RC1", - "targets":"pl.msitko%mini-refined", + "outr/scribe":{ + "project":"outr/scribe", + "repoUrl":"https://github.com/outr/scribe.git", + "revision":"3.12.2", + "version":"3.12.2", + "targets":"com.outr%scribe-json-circe com.outr%scribe-logstash com.outr%scribe-slf4j com.outr%scribe-json-fabric com.outr%scribe-migration com.outr%scribe-slf4j2 com.outr%scribe-cats com.outr%scribe-slack com.outr%scribe-log4j com.outr%scribe-file com.outr%scribe-config com.outr%scribe-json com.outr%scribe", "config":{ "projects":{ "exclude":[ @@ -22312,7 +27517,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -22329,37 +27534,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "nremond/pbkdf2-scala":{ - "project":"nremond/pbkdf2-scala", - "repoUrl":"https://github.com/nremond/pbkdf2-scala.git", - "revision":"v0.7.1", - "version":"0.7.1", - "targets":"io.github.nremond%pbkdf2-scala" - }, - "nrinaudo/kantan.parsers":{ - "project":"nrinaudo/kantan.parsers", - "repoUrl":"https://github.com/nrinaudo/kantan.parsers.git", - "revision":"v1.0.6", - "version":"1.0.6", - "targets":"com.nrinaudo%kantan-parsers" - }, - "nscala-time/nscala-time":{ - "project":"nscala-time/nscala-time", - "repoUrl":"https://github.com/nscala-time/nscala-time.git", - "revision":"releases/2.32.0", - "version":"2.32.0", - "targets":"com.github.nscala-time%nscala-time" - }, - "nthportal/scala-platform":{ - "project":"nthportal/scala-platform", - "repoUrl":"https://github.com/nthportal/scala-platform.git", - "revision":"v1.0.2", - "version":"1.0.2", - "targets":"lgbt.princess%scala-platform lgbt.princess%platform", + "outr/sendgrid4s":{ + "project":"outr/sendgrid4s", + "repoUrl":"https://github.com/outr/sendgrid4s.git", + "revision":"1.0.19", + "version":"1.0.19", + "targets":"com.outr%sendgrid4s", "config":{ "projects":{ "exclude":[ @@ -22370,7 +27558,7 @@ } }, "java":{ - "version":"8" + "version":"21" }, "sbt":{ "commands":[ @@ -22389,18 +27577,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "nthportal/spaghetti":{ - "project":"nthportal/spaghetti", - "repoUrl":"https://github.com/nthportal/spaghetti.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"lgbt.princess%spaghetti", + "outr/spice":{ + "project":"outr/spice", + "repoUrl":"https://github.com/outr/spice.git", + "revision":"0.1.11", + "version":"0.1.11", + "targets":"com.outr%spice-server-undertow com.outr%spice-core com.outr%spice-client com.outr%spice-client-jvm com.outr%spice com.outr%spice-delta com.outr%spice-client-okhttp com.outr%spice-server", "config":{ "projects":{ "exclude":[ @@ -22411,7 +27599,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -22428,16 +27616,27 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3: String = \"3.3.1\"", + "replaceWith":"val scala3: String = \"\"" + } ] } }, - "ocadotechnology/sttp-oauth2":{ - "project":"ocadotechnology/sttp-oauth2", - "repoUrl":"https://github.com/ocadotechnology/sttp-oauth2.git", - "revision":"v0.17.0-RC1", - "version":"0.17.0-RC1", - "targets":"com.ocadotechnology%sttp-oauth2 com.ocadotechnology%sttp-oauth2-cache-ce2 com.ocadotechnology%sttp-oauth2-cache-future com.ocadotechnology%sttp-oauth2-jsoniter com.ocadotechnology%sttp-oauth2-cache-cats com.ocadotechnology%sttp-oauth2-circe com.ocadotechnology%sttp-oauth2-cache-scalacache com.ocadotechnology%sttp-oauth2-cache", + "ovotech/ciris-aws-secretsmanager":{ + "project":"ovotech/ciris-aws-secretsmanager", + "repoUrl":"https://github.com/ovotech/ciris-aws-secretsmanager.git", + "revision":"v6.0.0", + "version":"6.0.0", + "targets":"com.ovoenergy%ciris-aws-secretsmanager" + }, + "ovotech/meters4s":{ + "project":"ovotech/meters4s", + "repoUrl":"https://github.com/ovotech/meters4s.git", + "revision":"v2.0.0", + "version":"2.0.0", + "targets":"com.ovoenergy%meters4s-statsd com.ovoenergy%meters4s-datadog com.ovoenergy%meters4s-http4s com.ovoenergy%meters4s-prometheus com.ovoenergy%meters4s", "config":{ "projects":{ "exclude":[ @@ -22448,7 +27647,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -22465,20 +27664,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "ohze/akka-guice":{ - "project":"ohze/akka-guice", - "repoUrl":"https://github.com/ohze/akka-guice.git", - "revision":"v3.3.1", - "version":"3.3.1", - "targets":"com.sandinh%akka-guice", + "ovotech/natchez-extras":{ + "project":"ovotech/natchez-extras", + "repoUrl":"https://github.com/ovotech/natchez-extras.git", + "revision":"8.0.0-M4", + "version":"8.0.0-M4", + "targets":"com.ovoenergy%natchez-extras-testkit com.ovoenergy%natchez-extras-slf4j com.ovoenergy%natchez-extras-log4cats com.ovoenergy%natchez-extras-metrics com.ovoenergy%natchez-extras-datadog com.ovoenergy%natchez-extras-doobie com.ovoenergy%natchez-extras-doobie-legacy com.ovoenergy%natchez-extras-dogstatsd com.ovoenergy%natchez-extras-combine com.ovoenergy%natchez-extras-datadog-stable com.ovoenergy%natchez-extras-http4s-stable com.ovoenergy%natchez-extras-fs2 com.ovoenergy%natchez-extras-ce3 com.ovoenergy%natchez-extras-core com.ovoenergy%natchez-extras-http4s", "config":{ "projects":{ "exclude":[ @@ -22489,7 +27684,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -22506,16 +27701,27 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.3.0\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, - "ohze/couchbase-scala":{ - "project":"ohze/couchbase-scala", - "repoUrl":"https://github.com/ohze/couchbase-scala.git", - "revision":"v9.2.0", - "version":"9.2.0", - "targets":"com.sandinh%couchbase-scala", + "pac4j/http4s-pac4j":{ + "project":"pac4j/http4s-pac4j", + "repoUrl":"https://github.com/pac4j/http4s-pac4j.git", + "revision":"v3.0.0", + "version":"3.0.0", + "targets":"org.pac4j%http4s-pac4j" + }, + "palanga/parana":{ + "project":"palanga/parana", + "repoUrl":"https://github.com/palanga/parana.git", + "revision":"v0.7.0", + "version":"0.7.0", + "targets":"io.github.palanga%parana-journal-common io.github.palanga%parana-core-local", "config":{ "projects":{ "exclude":[ @@ -22526,7 +27732,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -22547,12 +27753,12 @@ ] } }, - "ohze/php-utils":{ - "project":"ohze/php-utils", - "repoUrl":"https://github.com/ohze/php-utils.git", - "revision":"v1.0.9", - "version":"1.0.9", - "targets":"com.sandinh%php-utils", + "palanga/zio-cassandra":{ + "project":"palanga/zio-cassandra", + "repoUrl":"https://github.com/palanga/zio-cassandra.git", + "revision":"v0.10.0", + "version":"0.10.0", + "targets":"io.github.palanga%zio-cassandra", "config":{ "projects":{ "exclude":[ @@ -22563,7 +27769,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -22584,12 +27790,12 @@ ] } }, - "ohze/sd-util":{ - "project":"ohze/sd-util", - "repoUrl":"https://github.com/ohze/sd-util.git", - "revision":"v1.3.0", - "version":"1.3.0", - "targets":"com.sandinh%sd-util com.sandinh%env-hack", + "paoloboni/binance-scala-client":{ + "project":"paoloboni/binance-scala-client", + "repoUrl":"https://github.com/paoloboni/binance-scala-client.git", + "revision":"v1.6.1", + "version":"1.6.1", + "targets":"io.github.paoloboni%binance-scala-client", "config":{ "projects":{ "exclude":[ @@ -22600,7 +27806,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -22617,16 +27823,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "olivierblanvillain/regsafe":{ - "project":"olivierblanvillain/regsafe", - "repoUrl":"https://github.com/olivierblanvillain/regsafe.git", - "revision":"v0.0.1", - "version":"0.0.1", - "targets":"in.nvilla%regsafe", + "paoloboni/spray-json-derived-codecs":{ + "project":"paoloboni/spray-json-derived-codecs", + "repoUrl":"https://github.com/paoloboni/spray-json-derived-codecs.git", + "revision":"v2.3.11", + "version":"2.3.11", + "targets":"io.github.paoloboni%spray-json-derived-codecs", "config":{ "projects":{ "exclude":[ @@ -22654,37 +27864,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "ollls/quartz-h2":{ - "project":"ollls/quartz-h2", - "repoUrl":"https://github.com/ollls/quartz-h2.git", - "revision":"v0.5.1", - "version":"0.5.1", - "targets":"io.github.ollls%quartz-h2" - }, - "ollls/zio-quartz-h2":{ - "project":"ollls/zio-quartz-h2", - "repoUrl":"https://github.com/ollls/zio-quartz-h2.git", - "revision":"v0.5.5", - "version":"0.5.5", - "targets":"io.github.ollls%zio-quartz-h2" - }, - "ollls/zio-tls-http":{ - "project":"ollls/zio-tls-http", - "repoUrl":"https://github.com/ollls/zio-tls-http.git", - "revision":"2.0.0", - "version":"2.0.0", - "targets":"io.github.ollls%zio-tls-http" - }, - "opaliasystems/opalia-commons-core":{ - "project":"opaliasystems/opalia-commons-core", - "repoUrl":"https://github.com/opaliasystems/opalia-commons-core.git", - "revision":"v3.0.0", - "version":"3.0.0", - "targets":"systems.opalia%commons-core", + "pathikrit/better-files":{ + "project":"pathikrit/better-files", + "repoUrl":"https://github.com/pathikrit/better-files.git", + "revision":"v3.9.2", + "version":"3.9.2", + "targets":"com.github.pathikrit%better-files-akka com.github.pathikrit%better-files", "config":{ "projects":{ "exclude":[ @@ -22695,7 +27888,7 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ @@ -22710,46 +27903,18 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ ] } }, - "openmole/container":{ - "project":"openmole/container", - "repoUrl":"https://github.com/openmole/container.git", - "revision":"v1.22", - "version":"1.22", - "targets":"org.openmole%container" - }, - "openmole/gridscale":{ - "project":"openmole/gridscale", - "repoUrl":"https://github.com/openmole/gridscale.git", - "revision":"v2.45", - "version":"2.45", - "targets":"org.openmole.gridscale%sshexample org.openmole.gridscale%webdav org.openmole.gridscale%local org.openmole.gridscale%ipfsexample org.openmole.gridscale%egidiracexample org.openmole.gridscale%oarexample org.openmole.gridscale%gridscale org.openmole.gridscale%http org.openmole.gridscale%egiwebdavexample org.openmole.gridscale%oar org.openmole.gridscale%slurmexample org.openmole.gridscale%sgeexample org.openmole.gridscale%ssh org.openmole.gridscale%ipfs org.openmole.gridscale%pbs org.openmole.gridscale%localexample org.openmole.gridscale%effect org.openmole.gridscale%sge org.openmole.gridscale%pbsexample org.openmole.gridscale%cluster org.openmole.gridscale%egicreamexample org.openmole.gridscale%httpexample org.openmole.gridscale%slurm org.openmole.gridscale%condor org.openmole.gridscale%condorexample org.openmole.gridscale%egi org.openmole.gridscale%dirac" - }, - "openmole/mgo":{ - "project":"openmole/mgo", - "repoUrl":"https://github.com/openmole/mgo.git", - "revision":"v3.55", - "version":"3.55", - "targets":"org.openmole%mgo" - }, - "openmole/scaladget":{ - "project":"openmole/scaladget", - "repoUrl":"https://github.com/openmole/scaladget.git", - "revision":"v1.9.5", - "version":"1.9.5", - "targets":"org.openmole.scaladget%scaladget" - }, - "optics-dev/monocle":{ - "project":"optics-dev/monocle", - "repoUrl":"https://github.com/optics-dev/monocle.git", - "revision":"v3.2.0", - "version":"3.2.0", - "targets":"dev.optics%monocle-law dev.optics%monocle-refined dev.optics%monocle-state dev.optics%monocle-core dev.optics%monocle-macro dev.optics%monocle-unsafe", + "pbyrne84/scala-case-class-prettification":{ + "project":"pbyrne84/scala-case-class-prettification", + "repoUrl":"https://github.com/pbyrne84/scala-case-class-prettification.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"uk.org.devthings%scala-case-class-prettification uk.org.devthings%scala-case-class-prettification-diff uk.org.devthings%scala-case-class-prettification-test", "config":{ "projects":{ "exclude":[ @@ -22760,7 +27925,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -22779,32 +27944,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.1\"", + "pattern":"val scala3Version = \"3.1.3\"", "replaceWith":"val scala3Version = \"\"" } ] } }, - "oranda/libanius":{ - "project":"oranda/libanius", - "repoUrl":"https://github.com/oranda/libanius.git", - "revision":"v0.9.9.2", - "version":"0.9.9.2", - "targets":"com.github.oranda%libanius" - }, - "otavia-projects/mill-rust-jni":{ - "project":"otavia-projects/mill-rust-jni", - "repoUrl":"https://github.com/otavia-projects/mill-rust-jni.git", - "revision":"0.1.0", - "version":"0.1.0", - "targets":"io.github.otavia-projects%jni-loader" - }, - "outr/dd-scala":{ - "project":"outr/dd-scala", - "repoUrl":"https://github.com/outr/dd-scala.git", - "revision":"1.1.2", - "version":"1.1.2", - "targets":"com.outr%dd-scala", + "pbyrne84/scala-wiremock-api":{ + "project":"pbyrne84/scala-wiremock-api", + "repoUrl":"https://github.com/pbyrne84/scala-wiremock-api.git", + "revision":"v0.1.11", + "version":"0.1.11", + "targets":"uk.org.devthings%scala-wiremock-api", "config":{ "projects":{ "exclude":[ @@ -22815,7 +27966,7 @@ } }, "java":{ - "version":"21" + "version":"11" }, "sbt":{ "commands":[ @@ -22840,40 +27991,12 @@ ] } }, - "outr/lucene4s":{ - "project":"outr/lucene4s", - "repoUrl":"https://github.com/outr/lucene4s.git", - "revision":"1.11.1", - "version":"1.11.1", - "targets":"com.outr%lucene4s com.outr%lucene4s-core" - }, - "outr/mailgun4s":{ - "project":"outr/mailgun4s", - "repoUrl":"https://github.com/outr/mailgun4s.git", - "revision":"1.1.3", - "version":"1.1.3", - "targets":"com.outr%mailgun4s" - }, - "outr/moduload":{ - "project":"outr/moduload", - "repoUrl":"https://github.com/outr/moduload.git", - "revision":"1.1.6", - "version":"1.1.6", - "targets":"com.outr%moduload" - }, - "outr/perfolation":{ - "project":"outr/perfolation", - "repoUrl":"https://github.com/outr/perfolation.git", - "revision":"master", - "version":"1.2.9", - "targets":"com.outr%perfolation com.outr%perfolation-unit" - }, - "outr/profig":{ - "project":"outr/profig", - "repoUrl":"https://github.com/outr/profig.git", - "revision":"3.4.10", - "version":"3.4.10", - "targets":"com.outr%profig", + "permutive-engineering/fs2-google-pubsub":{ + "project":"permutive-engineering/fs2-google-pubsub", + "repoUrl":"https://github.com/permutive-engineering/fs2-google-pubsub.git", + "revision":"v0.22.0", + "version":"0.22.0", + "targets":"com.permutive%fs2-google-pubsub com.permutive%fs2-google-pubsub-grpc com.permutive%fs2-google-pubsub-http", "config":{ "projects":{ "exclude":[ @@ -22884,7 +28007,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -22901,20 +28024,16 @@ }, "tests":"compile-only", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = List(\"3.2.2\")", - "replaceWith":"val scala3 = List(\"\")" - } + ] } }, - "outr/reactify":{ - "project":"outr/reactify", - "repoUrl":"https://github.com/outr/reactify.git", - "revision":"4.0.8", - "version":"4.0.8", - "targets":"com.outr%reactify", + "permutive-engineering/functional-google-clients":{ + "project":"permutive-engineering/functional-google-clients", + "repoUrl":"https://github.com/permutive-engineering/functional-google-clients.git", + "revision":"v1.0.0-RC2", + "version":"1.0.0-RC2", + "targets":"com.permutive%google-project-id com.permutive%gcp-types com.permutive%google-project-pureconfig com.permutive%google-auth com.permutive%google-bigquery", "config":{ "projects":{ "exclude":[ @@ -22942,20 +28061,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = List(\"3.1.1\")", - "replaceWith":"val scala3 = List(\"\")" - } + ] } }, - "outr/robobrowser":{ - "project":"outr/robobrowser", - "repoUrl":"https://github.com/outr/robobrowser.git", - "revision":"1.6.0", - "version":"1.6.0", - "targets":"com.outr%robobrowser", + "permutive-engineering/odin-contrib":{ + "project":"permutive-engineering/odin-contrib", + "repoUrl":"https://github.com/permutive-engineering/odin-contrib.git", + "revision":"v1.0.2", + "version":"1.0.2", + "targets":"com.permutive%log4cats-odin com.permutive%odin-dynamic com.permutive%odin-slf4j-bridge com.permutive%odin-testing", "config":{ "projects":{ "exclude":[ @@ -22981,18 +28096,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "outr/scalapass":{ - "project":"outr/scalapass", - "repoUrl":"https://github.com/outr/scalapass.git", - "revision":"1.2.5", - "version":"1.2.5", - "targets":"com.outr%scalapass", + "permutive-engineering/prometheus4cats":{ + "project":"permutive-engineering/prometheus4cats", + "repoUrl":"https://github.com/permutive-engineering/prometheus4cats.git", + "revision":"v2.0.0", + "version":"2.0.0", + "targets":"com.permutive%prometheus4cats-testkit com.permutive%prometheus4cats com.permutive%prometheus4cats-docs com.permutive%prometheus4cats-testing com.permutive%prometheus4cats-java", "config":{ "projects":{ "exclude":[ @@ -23024,12 +28139,12 @@ ] } }, - "outr/scarango":{ - "project":"outr/scarango", - "repoUrl":"https://github.com/outr/scarango.git", - "revision":"3.11.2", - "version":"3.11.2", - "targets":"com.outr%scarango-core com.outr%scarango-driver", + "permutive-engineering/prometheus4cats-contrib":{ + "project":"permutive-engineering/prometheus4cats-contrib", + "repoUrl":"https://github.com/permutive-engineering/prometheus4cats-contrib.git", + "revision":"v2.1.0", + "version":"2.1.0", + "targets":"com.permutive%prometheus4cats-contrib-cats-effect com.permutive%prometheus4cats-contrib-fs2-kafka com.permutive%prometheus4cats-contrib-google-cloud-bigtable com.permutive%prometheus4cats-contrib-opencensus com.permutive%prometheus4cats-contrib-trace4cats com.permutive%prometheus4cats-contrib-refreshable", "config":{ "projects":{ "exclude":[ @@ -23055,22 +28170,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "outr/scribe":{ - "project":"outr/scribe", - "repoUrl":"https://github.com/outr/scribe.git", - "revision":"3.11.3", - "version":"3.11.3", - "targets":"com.outr%scribe-json-circe com.outr%scribe-logstash com.outr%scribe-slf4j com.outr%scribe-json-fabric com.outr%scribe-migration com.outr%scribe-slf4j2 com.outr%scribe-cats com.outr%scribe-slack com.outr%scribe-log4j com.outr%scribe-file com.outr%scribe-config com.outr%scribe-json com.outr%scribe", + "permutive-engineering/refreshable":{ + "project":"permutive-engineering/refreshable", + "repoUrl":"https://github.com/permutive-engineering/refreshable.git", + "revision":"v1.1.0", + "version":"1.1.0", + "targets":"com.permutive%refreshable", "config":{ "projects":{ "exclude":[ @@ -23098,20 +28209,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "outr/sendgrid4s":{ - "project":"outr/sendgrid4s", - "repoUrl":"https://github.com/outr/sendgrid4s.git", - "revision":"1.0.7", - "version":"1.0.7", - "targets":"com.outr%sendgrid4s", + "petitviolet/scala-operator":{ + "project":"petitviolet/scala-operator", + "repoUrl":"https://github.com/petitviolet/scala-operator.git", + "revision":"v0.7.0", + "version":"0.7.0", + "targets":"net.petitviolet%operator", "config":{ "projects":{ "exclude":[ @@ -23122,7 +28229,7 @@ } }, "java":{ - "version":"21" + "version":"11" }, "sbt":{ "commands":[ @@ -23141,18 +28248,25 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", + "pattern":"val scala3 = \"3.0.0\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "outr/spice":{ - "project":"outr/spice", - "repoUrl":"https://github.com/outr/spice.git", - "revision":"0.0.32", - "version":"0.0.32", - "targets":"com.outr%spice-server-undertow com.outr%spice-core com.outr%spice-client com.outr%spice com.outr%spice-delta com.outr%spice-client-okhttp com.outr%spice-server", + "phaller/spores3":{ + "project":"phaller/spores3", + "repoUrl":"https://github.com/phaller/spores3.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.phaller%spores3" + }, + "phenoscape/scowl":{ + "project":"phenoscape/scowl", + "repoUrl":"https://github.com/phenoscape/scowl.git", + "revision":"v1.4.1", + "version":"1.4.1", + "targets":"org.phenoscape%scowl org.phenoscape%scowl-owlapi5", "config":{ "projects":{ "exclude":[ @@ -23180,34 +28294,60 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3: String = \"3.2.2\"", - "replaceWith":"val scala3: String = \"\"" - } + ] } }, - "ovotech/ciris-aws-secretsmanager":{ - "project":"ovotech/ciris-aws-secretsmanager", - "repoUrl":"https://github.com/ovotech/ciris-aws-secretsmanager.git", - "revision":"v6.0.0", - "version":"6.0.0", - "targets":"com.ovoenergy%ciris-aws-secretsmanager" + "phillhenry/dreadnought":{ + "project":"phillhenry/dreadnought", + "repoUrl":"https://github.com/phillhenry/dreadnought.git", + "revision":"", + "version":"0.1.1", + "targets":"uk.co.odinconsultants%dreadnought-examples uk.co.odinconsultants%dreadnought-docker uk.co.odinconsultants%dreadnought-core uk.co.odinconsultants%dreadnought-lib uk.co.odinconsultants%dreadnought uk.co.odinconsultants%dreadnought-it" }, - "ovotech/meters4s":{ - "project":"ovotech/meters4s", - "repoUrl":"https://github.com/ovotech/meters4s.git", - "revision":"v1.3.1", - "version":"1.3.1", - "targets":"com.ovoenergy%meters4s-statsd com.ovoenergy%meters4s-datadog com.ovoenergy%meters4s" + "philwalk/pallet":{ + "project":"philwalk/pallet", + "repoUrl":"https://github.com/philwalk/pallet.git", + "revision":"", + "version":"0.9.0", + "targets":"org.vastblue%pallet", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } }, - "ovotech/natchez-extras":{ - "project":"ovotech/natchez-extras", - "repoUrl":"https://github.com/ovotech/natchez-extras.git", - "revision":"7.0.1-RC1", - "version":"7.0.1-RC1", - "targets":"com.ovoenergy%natchez-extras-testkit com.ovoenergy%natchez-extras-slf4j com.ovoenergy%natchez-extras-log4cats com.ovoenergy%natchez-extras-metrics com.ovoenergy%natchez-extras-datadog com.ovoenergy%natchez-extras-doobie com.ovoenergy%natchez-extras-dogstatsd com.ovoenergy%natchez-extras-combine com.ovoenergy%natchez-extras-datadog-stable com.ovoenergy%natchez-extras-http4s-stable com.ovoenergy%natchez-extras-fs2 com.ovoenergy%natchez-extras-ce3 com.ovoenergy%natchez-extras-core com.ovoenergy%natchez-extras-http4s", + "pismute/classy-optics":{ + "project":"pismute/classy-optics", + "repoUrl":"https://github.com/pismute/classy-optics.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"io.github.pismute%classy-optics io.github.pismute%classy-effect io.github.pismute%classy-mtl", "config":{ "projects":{ "exclude":[ @@ -23237,25 +28377,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "pac4j/http4s-pac4j":{ - "project":"pac4j/http4s-pac4j", - "repoUrl":"https://github.com/pac4j/http4s-pac4j.git", - "revision":"v3.0.0", - "version":"3.0.0", - "targets":"org.pac4j%http4s-pac4j" - }, - "palanga/parana":{ - "project":"palanga/parana", - "repoUrl":"https://github.com/palanga/parana.git", - "revision":"v0.7.0", - "version":"0.7.0", - "targets":"io.github.palanga%parana-journal-common io.github.palanga%parana-core-local", + "pityka/lamp":{ + "project":"pityka/lamp", + "repoUrl":"https://github.com/pityka/lamp.git", + "revision":"v0.0.103", + "version":"0.0.103", + "targets":"io.github.pityka%lamp-knn io.github.pityka%extratrees io.github.pityka%lamp-core io.github.pityka%lamp-kmeans io.github.pityka%lamp-saddle io.github.pityka%lamp-akka io.github.pityka%lamp-umap io.github.pityka%lamp-sten io.github.pityka%lamp-table io.github.pityka%lamp-data io.github.pityka%lamp-onnx", "config":{ "projects":{ "exclude":[ @@ -23266,7 +28399,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -23287,12 +28420,12 @@ ] } }, - "palanga/zio-cassandra":{ - "project":"palanga/zio-cassandra", - "repoUrl":"https://github.com/palanga/zio-cassandra.git", + "pityka/nspl":{ + "project":"pityka/nspl", + "repoUrl":"https://github.com/pityka/nspl.git", "revision":"v0.10.0", "version":"0.10.0", - "targets":"io.github.palanga%zio-cassandra", + "targets":"io.github.pityka%nspl-shared-jvm io.github.pityka%nspl-awt io.github.pityka%nspl-saddle io.github.pityka%nspl-core io.github.pityka%nspl-scalatags-jvm", "config":{ "projects":{ "exclude":[ @@ -23303,7 +28436,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -23318,18 +28451,25 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "paoloboni/binance-scala-client":{ - "project":"paoloboni/binance-scala-client", - "repoUrl":"https://github.com/paoloboni/binance-scala-client.git", - "revision":"v1.6.1", - "version":"1.6.1", - "targets":"io.github.paoloboni%binance-scala-client", + "pityka/pairwisealignment":{ + "project":"pityka/pairwisealignment", + "repoUrl":"https://github.com/pityka/pairwisealignment.git", + "revision":"v2.2.7", + "version":"2.2.7", + "targets":"io.github.pityka%pairwisealignment" + }, + "pityka/saddle":{ + "project":"pityka/saddle", + "repoUrl":"https://github.com/pityka/saddle.git", + "revision":"v4.0.0-M7", + "version":"4.0.0-M7", + "targets":"io.github.pityka%saddle-jsoniter io.github.pityka%saddle-ops-inlined io.github.pityka%saddle-core io.github.pityka%saddle-linalg io.github.pityka%saddle-time io.github.pityka%saddle-circe io.github.pityka%saddle-binary io.github.pityka%saddle-ops-inlined-macroimpl io.github.pityka%saddle-spire-prng io.github.pityka%saddle-io io.github.pityka%saddle-stats", "config":{ "projects":{ "exclude":[ @@ -23340,7 +28480,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -23357,20 +28497,23 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "paoloboni/spray-json-derived-codecs":{ - "project":"paoloboni/spray-json-derived-codecs", - "repoUrl":"https://github.com/paoloboni/spray-json-derived-codecs.git", - "revision":"v2.3.10", - "version":"2.3.10", - "targets":"io.github.paoloboni%spray-json-derived-codecs", + "pjfanning/acked-stream":{ + "project":"pjfanning/acked-stream", + "repoUrl":"https://github.com/pjfanning/acked-stream.git", + "revision":"v1.0.1", + "version":"1.0.1", + "targets":"com.github.pjfanning%acked-streams" + }, + "pjfanning/akka-rabbitmq":{ + "project":"pjfanning/akka-rabbitmq", + "repoUrl":"https://github.com/pjfanning/akka-rabbitmq.git", + "revision":"v6.1.0", + "version":"6.1.0", + "targets":"com.github.pjfanning%akka-rabbitmq", "config":{ "projects":{ "exclude":[ @@ -23381,11 +28524,11 @@ } }, "java":{ - "version":"11" + }, "sbt":{ "commands":[ - + "set every Test/unmanagedSources/excludeFilter := HiddenFileFilter || \"PublishSubscribeSpec.scala\"" ], "options":[ @@ -23398,20 +28541,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.1\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "pathikrit/better-files":{ - "project":"pathikrit/better-files", - "repoUrl":"https://github.com/pathikrit/better-files.git", - "revision":"v3.9.2", - "version":"3.9.2", - "targets":"com.github.pathikrit%better-files-akka com.github.pathikrit%better-files", + "pjfanning/aws-spi-pekko-http":{ + "project":"pjfanning/aws-spi-pekko-http", + "repoUrl":"https://github.com/pjfanning/aws-spi-pekko-http.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"com.github.pjfanning%aws-spi-pekko-http", "config":{ "projects":{ "exclude":[ @@ -23422,7 +28561,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -23437,18 +28576,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "pbyrne84/scala-case-class-prettification":{ - "project":"pbyrne84/scala-case-class-prettification", - "repoUrl":"https://github.com/pbyrne84/scala-case-class-prettification.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"uk.org.devthings%scala-case-class-prettification uk.org.devthings%scala-case-class-prettification-diff uk.org.devthings%scala-case-class-prettification-test", + "pjfanning/jackson-module-enumeratum":{ + "project":"pjfanning/jackson-module-enumeratum", + "repoUrl":"https://github.com/pjfanning/jackson-module-enumeratum.git", + "revision":"v2.13.5", + "version":"2.13.5", + "targets":"com.github.pjfanning%jackson-module-enumeratum", "config":{ "projects":{ "exclude":[ @@ -23459,7 +28598,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -23476,20 +28615,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.1.3\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "pbyrne84/scala-wiremock-api":{ - "project":"pbyrne84/scala-wiremock-api", - "repoUrl":"https://github.com/pbyrne84/scala-wiremock-api.git", - "revision":"v0.1.11", - "version":"0.1.11", - "targets":"uk.org.devthings%scala-wiremock-api", + "pjfanning/jackson-module-scala-duration":{ + "project":"pjfanning/jackson-module-scala-duration", + "repoUrl":"https://github.com/pjfanning/jackson-module-scala-duration.git", + "revision":"v2.15.0", + "version":"2.15.0", + "targets":"com.github.pjfanning%jackson-module-scala-duration", "config":{ "projects":{ "exclude":[ @@ -23500,7 +28635,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -23517,20 +28652,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "permutive-engineering/fs2-google-pubsub":{ - "project":"permutive-engineering/fs2-google-pubsub", - "repoUrl":"https://github.com/permutive-engineering/fs2-google-pubsub.git", - "revision":"v0.22.0", - "version":"0.22.0", - "targets":"com.permutive%fs2-google-pubsub com.permutive%fs2-google-pubsub-grpc com.permutive%fs2-google-pubsub-http", + "pjfanning/jackson-module-scala3-enum":{ + "project":"pjfanning/jackson-module-scala3-enum", + "repoUrl":"https://github.com/pjfanning/jackson-module-scala3-enum.git", + "revision":"v2.15.0", + "version":"2.15.0", + "targets":"com.github.pjfanning%jackson-module-scala3-enum", "config":{ "projects":{ "exclude":[ @@ -23541,7 +28672,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -23556,18 +28687,18 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ ] } }, - "permutive-engineering/functional-google-clients":{ - "project":"permutive-engineering/functional-google-clients", - "repoUrl":"https://github.com/permutive-engineering/functional-google-clients.git", - "revision":"v1.0.0-RC2", - "version":"1.0.0-RC2", - "targets":"com.permutive%google-project-id com.permutive%gcp-types com.permutive%google-project-pureconfig com.permutive%google-auth com.permutive%google-bigquery", + "pjfanning/micrometer-akka":{ + "project":"pjfanning/micrometer-akka", + "repoUrl":"https://github.com/pjfanning/micrometer-akka.git", + "revision":"v0.13.3", + "version":"0.13.3", + "targets":"com.github.pjfanning%micrometer-akka", "config":{ "projects":{ "exclude":[ @@ -23599,12 +28730,12 @@ ] } }, - "permutive-engineering/odin-contrib":{ - "project":"permutive-engineering/odin-contrib", - "repoUrl":"https://github.com/permutive-engineering/odin-contrib.git", - "revision":"v1.0.2", - "version":"1.0.2", - "targets":"com.permutive%log4cats-odin com.permutive%odin-dynamic com.permutive%odin-slf4j-bridge com.permutive%odin-testing", + "pjfanning/micrometer-pekko":{ + "project":"pjfanning/micrometer-pekko", + "repoUrl":"https://github.com/pjfanning/micrometer-pekko.git", + "revision":"v0.15.0", + "version":"0.15.0", + "targets":"com.github.pjfanning%micrometer-pekko", "config":{ "projects":{ "exclude":[ @@ -23636,12 +28767,12 @@ ] } }, - "permutive-engineering/prometheus4cats":{ - "project":"permutive-engineering/prometheus4cats", - "repoUrl":"https://github.com/permutive-engineering/prometheus4cats.git", - "revision":"v1.0.1", - "version":"1.0.1", - "targets":"com.permutive%prometheus4cats-testkit com.permutive%prometheus4cats com.permutive%prometheus4cats-docs com.permutive%prometheus4cats-testing com.permutive%prometheus4cats-java", + "pjfanning/pekko-http-json":{ + "project":"pjfanning/pekko-http-json", + "repoUrl":"https://github.com/pjfanning/pekko-http-json.git", + "revision":"v2.1.1", + "version":"2.1.1", + "targets":"com.github.pjfanning%pekko-http-zio-json com.github.pjfanning%pekko-http-jsoniter-scala com.github.pjfanning%pekko-http-argonaut com.github.pjfanning%pekko-http-json4s com.github.pjfanning%pekko-http-circe com.github.pjfanning%pekko-http-jackson com.github.pjfanning%pekko-http-play-json com.github.pjfanning%pekko-http-upickle", "config":{ "projects":{ "exclude":[ @@ -23652,7 +28783,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -23673,12 +28804,12 @@ ] } }, - "permutive-engineering/prometheus4cats-contrib":{ - "project":"permutive-engineering/prometheus4cats-contrib", - "repoUrl":"https://github.com/permutive-engineering/prometheus4cats-contrib.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"com.permutive%prometheus4cats-contrib-cats-effect com.permutive%prometheus4cats-contrib-fs2-kafka com.permutive%prometheus4cats-contrib-google-cloud-bigtable com.permutive%prometheus4cats-contrib-opencensus com.permutive%prometheus4cats-contrib-trace4cats com.permutive%prometheus4cats-contrib-refreshable", + "pjfanning/pekko-http-session":{ + "project":"pjfanning/pekko-http-session", + "repoUrl":"https://github.com/pjfanning/pekko-http-session.git", + "revision":"v0.8.0", + "version":"0.8.0", + "targets":"com.github.pjfanning%pekko-http-session-core com.github.pjfanning%pekko-http-session-jwt", "config":{ "projects":{ "exclude":[ @@ -23689,7 +28820,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -23706,16 +28837,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "permutive-engineering/refreshable":{ - "project":"permutive-engineering/refreshable", - "repoUrl":"https://github.com/permutive-engineering/refreshable.git", - "revision":"v1.1.0", - "version":"1.1.0", - "targets":"com.permutive%refreshable", + "pjfanning/pekko-mock-scheduler":{ + "project":"pjfanning/pekko-mock-scheduler", + "repoUrl":"https://github.com/pjfanning/pekko-mock-scheduler.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"com.github.pjfanning%pekko-mock-scheduler", "config":{ "projects":{ "exclude":[ @@ -23747,60 +28882,12 @@ ] } }, - "petitviolet/scala-operator":{ - "project":"petitviolet/scala-operator", - "repoUrl":"https://github.com/petitviolet/scala-operator.git", - "revision":"v0.7.0", - "version":"0.7.0", - "targets":"net.petitviolet%operator", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.0.0\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, - "phaller/spores3":{ - "project":"phaller/spores3", - "repoUrl":"https://github.com/phaller/spores3.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"com.phaller%spores3" - }, - "phenoscape/scowl":{ - "project":"phenoscape/scowl", - "repoUrl":"https://github.com/phenoscape/scowl.git", - "revision":"v1.4.1", - "version":"1.4.1", - "targets":"org.phenoscape%scowl org.phenoscape%scowl-owlapi5", + "pjfanning/pekko-rabbitmq":{ + "project":"pjfanning/pekko-rabbitmq", + "repoUrl":"https://github.com/pjfanning/pekko-rabbitmq.git", + "revision":"v7.0.0", + "version":"7.0.0", + "targets":"com.github.pjfanning%pekko-rabbitmq", "config":{ "projects":{ "exclude":[ @@ -23832,19 +28919,12 @@ ] } }, - "phillhenry/dreadnought":{ - "project":"phillhenry/dreadnought", - "repoUrl":"https://github.com/phillhenry/dreadnought.git", - "revision":"673a48408c3a084316b5444cd921bf1d4fb408d6", - "version":"0.1.1", - "targets":"uk.co.odinconsultants%dreadnought-examples uk.co.odinconsultants%dreadnought-docker uk.co.odinconsultants%dreadnought-core uk.co.odinconsultants%dreadnought-lib uk.co.odinconsultants%dreadnought uk.co.odinconsultants%dreadnought-it" - }, - "pismute/classy-optics":{ - "project":"pismute/classy-optics", - "repoUrl":"https://github.com/pismute/classy-optics.git", - "revision":"v0.2.0", - "version":"0.2.0", - "targets":"io.github.pismute%classy-optics io.github.pismute%classy-effect io.github.pismute%classy-mtl", + "pjfanning/pekko-serialization-jackson215":{ + "project":"pjfanning/pekko-serialization-jackson215", + "repoUrl":"https://github.com/pjfanning/pekko-serialization-jackson215.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"com.github.pjfanning%pekko-serialization-jackson215", "config":{ "projects":{ "exclude":[ @@ -23855,7 +28935,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -23874,18 +28954,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3Version = \"3.3.0\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "pityka/lamp":{ - "project":"pityka/lamp", - "repoUrl":"https://github.com/pityka/lamp.git", - "revision":"v0.0.100", - "version":"0.0.100", - "targets":"io.github.pityka%lamp-knn io.github.pityka%extratrees io.github.pityka%lamp-core io.github.pityka%lamp-saddle io.github.pityka%lamp-akka io.github.pityka%lamp-umap io.github.pityka%lamp-sten io.github.pityka%lamp-data io.github.pityka%lamp-onnx", + "pjfanning/scala-faker":{ + "project":"pjfanning/scala-faker", + "repoUrl":"https://github.com/pjfanning/scala-faker.git", + "revision":"", + "version":"0.5.3", + "targets":"com.github.pjfanning%scala-faker", "config":{ "projects":{ "exclude":[ @@ -23896,7 +28976,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -23917,12 +28997,19 @@ ] } }, - "pityka/nspl":{ - "project":"pityka/nspl", - "repoUrl":"https://github.com/pityka/nspl.git", - "revision":"v0.10.0", - "version":"0.10.0", - "targets":"io.github.pityka%nspl-shared-jvm io.github.pityka%nspl-awt io.github.pityka%nspl-saddle io.github.pityka%nspl-core io.github.pityka%nspl-scalatags-jvm", + "pjfanning/scala3-sample-classes":{ + "project":"pjfanning/scala3-sample-classes", + "repoUrl":"https://github.com/pjfanning/scala3-sample-classes.git", + "revision":"v0.1.2", + "version":"0.1.2", + "targets":"com.github.pjfanning%scala3-sample-classes" + }, + "pjfanning/zio-metrics-micrometer":{ + "project":"pjfanning/zio-metrics-micrometer", + "repoUrl":"https://github.com/pjfanning/zio-metrics-micrometer.git", + "revision":"v0.21.0", + "version":"0.21.0", + "targets":"com.github.pjfanning%zio-metrics-micrometer", "config":{ "projects":{ "exclude":[ @@ -23933,7 +29020,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -23954,19 +29041,19 @@ ] } }, - "pityka/pairwisealignment":{ - "project":"pityka/pairwisealignment", - "repoUrl":"https://github.com/pityka/pairwisealignment.git", - "revision":"v2.2.7", - "version":"2.2.7", - "targets":"io.github.pityka%pairwisealignment" + "playframework/anorm":{ + "project":"playframework/anorm", + "repoUrl":"https://github.com/playframework/anorm.git", + "revision":"2.7.0", + "version":"2.7.0", + "targets":"org.playframework.anorm%anorm org.playframework.anorm%anorm-akka org.playframework.anorm%anorm-postgres org.playframework.anorm%anorm-tokenizer" }, - "pityka/saddle":{ - "project":"pityka/saddle", - "repoUrl":"https://github.com/pityka/saddle.git", - "revision":"v4.0.0-M4", - "version":"4.0.0-M4", - "targets":"io.github.pityka%saddle-jsoniter io.github.pityka%saddle-ops-inlined io.github.pityka%saddle-core io.github.pityka%saddle-linalg io.github.pityka%saddle-time io.github.pityka%saddle-circe io.github.pityka%saddle-binary io.github.pityka%saddle-ops-inlined-macroimpl io.github.pityka%saddle-spire-prng io.github.pityka%saddle-io io.github.pityka%saddle-stats", + "playframework/cachecontrol":{ + "project":"playframework/cachecontrol", + "repoUrl":"https://github.com/playframework/cachecontrol.git", + "revision":"3.0.0", + "version":"3.0.0", + "targets":"org.playframework%cachecontrol", "config":{ "projects":{ "exclude":[ @@ -23977,7 +29064,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -23994,16 +29081,34 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val Scala3 = \"3.3.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "pjfanning/akka-rabbitmq":{ - "project":"pjfanning/akka-rabbitmq", - "repoUrl":"https://github.com/pjfanning/akka-rabbitmq.git", - "revision":"v6.1.0", - "version":"6.1.0", - "targets":"com.github.pjfanning%akka-rabbitmq", + "playframework/omnidoc":{ + "project":"playframework/omnidoc", + "repoUrl":"https://github.com/playframework/omnidoc.git", + "revision":"2.9.0-RC2", + "version":"2.9.0-RC2", + "targets":"com.typesafe.play%play-omnidoc" + }, + "playframework/play-doc":{ + "project":"playframework/play-doc", + "repoUrl":"https://github.com/playframework/play-doc.git", + "revision":"3.0.1", + "version":"3.0.1", + "targets":"org.playframework%play-doc" + }, + "playframework/play-ebean":{ + "project":"playframework/play-ebean", + "repoUrl":"https://github.com/playframework/play-ebean.git", + "revision":"8.0.0-M1", + "version":"8.0.0-M1", + "targets":"org.playframework%play-ebean", "config":{ "projects":{ "exclude":[ @@ -24018,7 +29123,7 @@ }, "sbt":{ "commands":[ - "set every Test/unmanagedSources/excludeFilter := HiddenFileFilter || \"PublishSubscribeSpec.scala\"" + ], "options":[ @@ -24031,16 +29136,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "pjfanning/jackson-module-enumeratum":{ - "project":"pjfanning/jackson-module-enumeratum", - "repoUrl":"https://github.com/pjfanning/jackson-module-enumeratum.git", - "revision":"v2.14.1", - "version":"2.14.1", - "targets":"com.github.pjfanning%jackson-module-enumeratum", + "playframework/play-file-watch":{ + "project":"playframework/play-file-watch", + "repoUrl":"https://github.com/playframework/play-file-watch.git", + "revision":"2.0.0", + "version":"2.0.0", + "targets":"org.playframework%play-file-watch", "config":{ "projects":{ "exclude":[ @@ -24051,7 +29160,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -24068,16 +29177,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val Scala3 = \"3.3.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "pjfanning/jackson-module-scala-duration":{ - "project":"pjfanning/jackson-module-scala-duration", - "repoUrl":"https://github.com/pjfanning/jackson-module-scala-duration.git", - "revision":"v2.15.0", - "version":"2.15.0", - "targets":"com.github.pjfanning%jackson-module-scala-duration", + "playframework/play-json":{ + "project":"playframework/play-json", + "repoUrl":"https://github.com/playframework/play-json.git", + "revision":"3.0.0", + "version":"3.0.0", + "targets":"org.playframework%play-json org.playframework%play-functional org.playframework%play-json-joda", "config":{ "projects":{ "exclude":[ @@ -24088,7 +29201,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -24103,18 +29216,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val Scala3 = \"3.3.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "pjfanning/jackson-module-scala3-enum":{ - "project":"pjfanning/jackson-module-scala3-enum", - "repoUrl":"https://github.com/pjfanning/jackson-module-scala3-enum.git", - "revision":"v2.15.0", - "version":"2.15.0", - "targets":"com.github.pjfanning%jackson-module-scala3-enum", + "playframework/play-mailer":{ + "project":"playframework/play-mailer", + "repoUrl":"https://github.com/playframework/play-mailer.git", + "revision":"10.0.0", + "version":"10.0.0", + "targets":"org.playframework%play-mailer org.playframework%play-mailer-guice", "config":{ "projects":{ "exclude":[ @@ -24125,7 +29242,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -24142,16 +29259,27 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val Scala3 = \"3.3.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "pjfanning/micrometer-akka":{ - "project":"pjfanning/micrometer-akka", - "repoUrl":"https://github.com/pjfanning/micrometer-akka.git", - "revision":"v0.13.3", - "version":"0.13.3", - "targets":"com.github.pjfanning%micrometer-akka", + "playframework/play-slick":{ + "project":"playframework/play-slick", + "repoUrl":"https://github.com/playframework/play-slick.git", + "revision":"6.0.0-M2", + "version":"6.0.0-M2", + "targets":"org.playframework%play-slick org.playframework%play-slick-evolutions" + }, + "playframework/play-ws":{ + "project":"playframework/play-ws", + "repoUrl":"https://github.com/playframework/play-ws.git", + "revision":"3.0.0", + "version":"3.0.0", + "targets":"org.playframework%play-ahc-ws-standalone org.playframework%play-ws-standalone org.playframework%play-ws-standalone-json org.playframework%play-ws-standalone-xml", "config":{ "projects":{ "exclude":[ @@ -24162,7 +29290,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -24179,16 +29307,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "pjfanning/scala-faker":{ - "project":"pjfanning/scala-faker", - "repoUrl":"https://github.com/pjfanning/scala-faker.git", - "revision":"a1285acb5d0356afb420ffb698227b62d56d4286", - "version":"0.5.3", - "targets":"com.github.pjfanning%scala-faker", + "playframework/playframework":{ + "project":"playframework/playframework", + "repoUrl":"https://github.com/playframework/playframework.git", + "revision":"3.0.0", + "version":"3.0.0", + "targets":"org.playframework%play-java-jdbc org.playframework%play-ahc-ws org.playframework%play org.playframework%play-guice org.playframework%play-specs2 org.playframework%play-jdbc-evolutions org.playframework%play-routes-compiler org.playframework%play-jdbc-api org.playframework%play-openid org.playframework%play-jcache org.playframework%play-java org.playframework%play-cache org.playframework%play-java-cluster-sharding org.playframework%play-pekko-http-server org.playframework%play-jdbc org.playframework%play-java-jpa org.playframework%play-bom org.playframework%play-server org.playframework%play-java-forms org.playframework%play-docs org.playframework%play-cluster-sharding org.playframework%play-pekko-http2-support org.playframework%play-configuration org.playframework%play-logback org.playframework%play-joda-forms org.playframework%play-ws org.playframework%play-netty-server org.playframework%play-test org.playframework%play-caffeine-cache org.playframework%play-ehcache org.playframework%play-streams org.playframework%play-filters-helpers", "config":{ "projects":{ "exclude":[ @@ -24216,23 +29348,27 @@ }, "tests":"compile-only", "sourcePatches":[ - + { + "path":"project/Versions.scala", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "pjfanning/scala3-sample-classes":{ - "project":"pjfanning/scala3-sample-classes", - "repoUrl":"https://github.com/pjfanning/scala3-sample-classes.git", - "revision":"v0.1.2", - "version":"0.1.2", - "targets":"com.github.pjfanning%scala3-sample-classes" + "playframework/scalatestplus-play":{ + "project":"playframework/scalatestplus-play", + "repoUrl":"https://github.com/playframework/scalatestplus-play.git", + "revision":"6.0.0", + "version":"6.0.0", + "targets":"org.scalatestplus.play%scalatestplus-play" }, - "pjfanning/zio-metrics-micrometer":{ - "project":"pjfanning/zio-metrics-micrometer", - "repoUrl":"https://github.com/pjfanning/zio-metrics-micrometer.git", - "revision":"v0.21.0", - "version":"0.21.0", - "targets":"com.github.pjfanning%zio-metrics-micrometer", + "playframework/twirl":{ + "project":"playframework/twirl", + "repoUrl":"https://github.com/playframework/twirl.git", + "revision":"2.0.1", + "version":"2.0.1", + "targets":"org.playframework.twirl%twirl-api org.playframework.twirl%twirl-compiler org.playframework.twirl%twirl-maven-plugin org.playframework.twirl%twirl-parser", "config":{ "projects":{ "exclude":[ @@ -24243,7 +29379,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -24260,24 +29396,14 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val Scala3 = \"3.3.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "playframework/anorm":{ - "project":"playframework/anorm", - "repoUrl":"https://github.com/playframework/anorm.git", - "revision":"2.7.0", - "version":"2.7.0", - "targets":"org.playframework.anorm%anorm org.playframework.anorm%anorm-akka org.playframework.anorm%anorm-postgres org.playframework.anorm%anorm-tokenizer" - }, - "playframework/scalatestplus-play":{ - "project":"playframework/scalatestplus-play", - "repoUrl":"https://github.com/playframework/scalatestplus-play.git", - "revision":"6.0.0-M3", - "version":"6.0.0-M3", - "targets":"org.scalatestplus.play%scalatestplus-play" - }, "plokhotnyuk/fast-string-interpolator":{ "project":"plokhotnyuk/fast-string-interpolator", "repoUrl":"https://github.com/plokhotnyuk/fast-string-interpolator.git", @@ -24288,8 +29414,8 @@ "plokhotnyuk/jsoniter-scala":{ "project":"plokhotnyuk/jsoniter-scala", "repoUrl":"https://github.com/plokhotnyuk/jsoniter-scala.git", - "revision":"v2.23.0", - "version":"2.23.0", + "revision":"v2.24.4", + "version":"2.24.4", "targets":"com.github.plokhotnyuk.jsoniter-scala%jsoniter-scala-core com.github.plokhotnyuk.jsoniter-scala%jsoniter-scala-circe com.github.plokhotnyuk.jsoniter-scala%jsoniter-scala-macros" }, "plokhotnyuk/rtree2d":{ @@ -24302,9 +29428,9 @@ "pme123/camundala":{ "project":"pme123/camundala", "repoUrl":"https://github.com/pme123/camundala.git", - "revision":"0.15.10", - "version":"0.15.10", - "targets":"io.github.pme123%camundala-bpmn io.github.pme123%camundala-api io.github.pme123%camundala-domain io.github.pme123%camundala-dmn io.github.pme123%camundala-simulation", + "revision":"v1.21.11", + "version":"1.21.11", + "targets":"io.github.pme123%camundala-bpmn io.github.pme123%camundala-camunda7-worker io.github.pme123%camundala-camunda io.github.pme123%camundala-api io.github.pme123%camundala-domain io.github.pme123%camundala-dmn io.github.pme123%camundala-simulation io.github.pme123%camundala-helper", "config":{ "projects":{ "exclude":[ @@ -24334,7 +29460,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", + "pattern":"val scala3Version = \"3.3.0\"", "replaceWith":"val scala3Version = \"\"" } ] @@ -24343,7 +29469,7 @@ "pmeheut/nscala-java-time":{ "project":"pmeheut/nscala-java-time", "repoUrl":"https://github.com/pmeheut/nscala-java-time.git", - "revision":"47bdca2e765b5318e41de426f9ea915dec714589", + "revision":"", "version":"0.1.1", "targets":"io.github.pmeheut%nscala-java-time" }, @@ -24622,6 +29748,47 @@ ] } }, + "polyvariant/smithy4s-caliban":{ + "project":"polyvariant/smithy4s-caliban", + "repoUrl":"https://github.com/polyvariant/smithy4s-caliban.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"org.polyvariant%smithy4s-caliban", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + "excludeLibraryDependency org.polyvariant:better-tostring_{scalaVersion}" + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.3.0\"", + "replaceWith":"val Scala3 = \"\"" + } + ] + } + }, "polyvariant/treesitter4s":{ "project":"polyvariant/treesitter4s", "repoUrl":"https://github.com/polyvariant/treesitter4s.git", @@ -24666,8 +29833,8 @@ "poslegm/munit-zio":{ "project":"poslegm/munit-zio", "repoUrl":"https://github.com/poslegm/munit-zio.git", - "revision":"v0.1.1", - "version":"0.1.1", + "revision":"v0.2.0", + "version":"0.2.0", "targets":"com.github.poslegm%munit-zio", "config":{ "projects":{ @@ -24698,7 +29865,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.1.0\"", + "pattern":"val scala3 = \"3.3.1\"", "replaceWith":"val scala3 = \"\"" } ] @@ -24707,8 +29874,8 @@ "postgresql-async/postgresql-async":{ "project":"postgresql-async/postgresql-async", "repoUrl":"https://github.com/postgresql-async/postgresql-async.git", - "revision":"v0.3.3", - "version":"0.3.3", + "revision":"v0.3.7", + "version":"0.3.7", "targets":"com.github.postgresql-async%postgresql-async com.github.postgresql-async%db-async-common com.github.postgresql-async%mysql-async", "config":{ "projects":{ @@ -24744,22 +29911,22 @@ "ppurang/abctemplates":{ "project":"ppurang/abctemplates", "repoUrl":"https://github.com/ppurang/abctemplates.git", - "revision":"09abf0511a8af8b7d8d2116c56ef3994ee86c537", - "version":"3.2.1", + "revision":"", + "version":"3.3.1", "targets":"org.purang.templates%abctemplates" }, "ppurang/asynch":{ "project":"ppurang/asynch", "repoUrl":"https://github.com/ppurang/asynch.git", - "revision":"5c279e0de6b5795de2be52b58cc5d4884093890b", + "revision":"", "version":"3.2.1-without-netty-cve", "targets":"org.purang.net%asynch" }, "profunktor/fs2-rabbit":{ "project":"profunktor/fs2-rabbit", "repoUrl":"https://github.com/profunktor/fs2-rabbit.git", - "revision":"v5.0.0", - "version":"5.0.0", + "revision":"v5.1.0", + "version":"5.1.0", "targets":"dev.profunktor%fs2-rabbit dev.profunktor%fs2-rabbit-circe dev.profunktor%fs2-rabbit-testkit", "config":{ "projects":{ @@ -24795,15 +29962,15 @@ "profunktor/http4s-jwt-auth":{ "project":"profunktor/http4s-jwt-auth", "repoUrl":"https://github.com/profunktor/http4s-jwt-auth.git", - "revision":"v1.2.0", - "version":"1.2.0", + "revision":"v1.2.1", + "version":"1.2.1", "targets":"dev.profunktor%http4s-jwt-auth" }, "profunktor/neutron":{ "project":"profunktor/neutron", "repoUrl":"https://github.com/profunktor/neutron.git", - "revision":"v0.7.2", - "version":"0.7.2", + "revision":"v0.8.0", + "version":"0.8.0", "targets":"dev.profunktor%neutron-circe dev.profunktor%neutron-core dev.profunktor%neutron-function", "config":{ "projects":{ @@ -24834,7 +30001,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] @@ -24843,8 +30010,8 @@ "profunktor/redis4cats":{ "project":"profunktor/redis4cats", "repoUrl":"https://github.com/profunktor/redis4cats.git", - "revision":"v1.4.1", - "version":"1.4.1", + "revision":"v1.5.2", + "version":"1.5.2", "targets":"dev.profunktor%redis4cats-core dev.profunktor%redis4cats-effects dev.profunktor%redis4cats-log4cats dev.profunktor%redis4cats-streams" }, "pureconfig/pureconfig":{ @@ -25051,12 +30218,295 @@ ] } }, - "pureharm/pureharm-db-core-jdbc":{ - "project":"pureharm/pureharm-db-core-jdbc", - "repoUrl":"https://github.com/pureharm/pureharm-db-core-jdbc.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"com.busymachines%pureharm-db-core-jdbc", + "pureharm/pureharm-db-core-jdbc":{ + "project":"pureharm/pureharm-db-core-jdbc", + "repoUrl":"https://github.com/pureharm/pureharm-db-core-jdbc.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"com.busymachines%pureharm-db-core-jdbc", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.0.1\"", + "replaceWith":"val Scala3 = \"\"" + } + ] + } + }, + "pureharm/pureharm-effects-cats":{ + "project":"pureharm/pureharm-effects-cats", + "repoUrl":"https://github.com/pureharm/pureharm-effects-cats.git", + "revision":"v0.5.0", + "version":"0.5.0", + "targets":"com.busymachines%pureharm-effects-cats com.busymachines%pureharm-effects-cats-2", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.0.1\"", + "replaceWith":"val Scala3 = \"\"" + } + ] + } + }, + "pureharm/pureharm-json-circe":{ + "project":"pureharm/pureharm-json-circe", + "repoUrl":"https://github.com/pureharm/pureharm-json-circe.git", + "revision":"v0.3.0-M1", + "version":"0.3.0-M1", + "targets":"com.busymachines%pureharm-json-circe", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.0.1\"", + "replaceWith":"val Scala3 = \"\"" + } + ] + } + }, + "pureharm/pureharm-testkit":{ + "project":"pureharm/pureharm-testkit", + "repoUrl":"https://github.com/pureharm/pureharm-testkit.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"com.busymachines%pureharm-testkit com.busymachines%pureharm-testkit-ce2", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.0.1\"", + "replaceWith":"val Scala3 = \"\"" + } + ] + } + }, + "purplekingdomgames/tyrian":{ + "project":"purplekingdomgames/tyrian", + "repoUrl":"https://github.com/purplekingdomgames/tyrian.git", + "revision":"v0.8.0", + "version":"0.8.0", + "targets":"io.indigoengine%tyrian", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.3.1\"", + "replaceWith":"val scala3Version = \"\"" + } + ] + } + }, + "purplekingdomgames/ultraviolet":{ + "project":"purplekingdomgames/ultraviolet", + "repoUrl":"https://github.com/purplekingdomgames/ultraviolet.git", + "revision":"v0.1.3", + "version":"0.1.3", + "targets":"io.indigoengine%ultraviolet", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.3.1\"", + "replaceWith":"val scala3Version = \"\"" + } + ] + } + }, + "quafadas/dedav4s":{ + "project":"quafadas/dedav4s", + "repoUrl":"https://github.com/quafadas/dedav4s.git", + "revision":"v0.9.0-RC7", + "version":"0.9.0-RC7", + "targets":"io.github.quafadas%dedav4s io.github.quafadas%dedav4s-docs io.github.quafadas%generated", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "quafadas/vecxt":{ + "project":"quafadas/vecxt", + "repoUrl":"https://github.com/quafadas/vecxt.git", + "revision":"v0.0.1", + "version":"0.0.1", + "targets":"io.github.quafadas%core", "config":{ "projects":{ "exclude":[ @@ -25084,102 +30534,30 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.0.1\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, - "pureharm/pureharm-effects-cats":{ - "project":"pureharm/pureharm-effects-cats", - "repoUrl":"https://github.com/pureharm/pureharm-effects-cats.git", - "revision":"v0.5.0", - "version":"0.5.0", - "targets":"com.busymachines%pureharm-effects-cats com.busymachines%pureharm-effects-cats-2", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.0.1\"", - "replaceWith":"val Scala3 = \"\"" - } - ] - } + "qwbarch/snowflake4s":{ + "project":"qwbarch/snowflake4s", + "repoUrl":"https://github.com/qwbarch/snowflake4s.git", + "revision":"v1.1.0-RC1", + "version":"1.1.0-RC1", + "targets":"io.github.qwbarch%snowflake4s io.github.qwbarch%snowflake4s-circe io.github.qwbarch%snowflake4s-http4s io.github.qwbarch%snowflake4s-skunk" }, - "pureharm/pureharm-json-circe":{ - "project":"pureharm/pureharm-json-circe", - "repoUrl":"https://github.com/pureharm/pureharm-json-circe.git", - "revision":"v0.3.0-M1", - "version":"0.3.0-M1", - "targets":"com.busymachines%pureharm-json-circe", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.0.1\"", - "replaceWith":"val Scala3 = \"\"" - } - ] - } + "raistlintao/scalalogger":{ + "project":"raistlintao/scalalogger", + "repoUrl":"https://github.com/raistlintao/scalalogger.git", + "revision":"", + "version":"1.0.0", + "targets":"io.github.raistlintao%logger" }, - "pureharm/pureharm-testkit":{ - "project":"pureharm/pureharm-testkit", - "repoUrl":"https://github.com/pureharm/pureharm-testkit.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"com.busymachines%pureharm-testkit com.busymachines%pureharm-testkit-ce2", + "rallyhealth/scalacheck-ops":{ + "project":"rallyhealth/scalacheck-ops", + "repoUrl":"https://github.com/rallyhealth/scalacheck-ops.git", + "revision":"v2.12.0", + "version":"2.12.0", + "targets":"com.rallyhealth%scalacheck-ops-joda_1 com.rallyhealth%scalacheck-ops-joda_1-15 com.rallyhealth%scalacheck-ops_1 com.rallyhealth%scalacheck-ops_1-15", "config":{ "projects":{ "exclude":[ @@ -25190,7 +30568,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -25208,19 +30586,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.0.1\"", - "replaceWith":"val Scala3 = \"\"" + "path":"project/Dependencies.scala", + "pattern":"val Scala_3 = \"3.2.0\"", + "replaceWith":"val Scala_3 = \"\"" } ] } }, - "purplekingdomgames/tyrian":{ - "project":"purplekingdomgames/tyrian", - "repoUrl":"https://github.com/purplekingdomgames/tyrian.git", - "revision":"v0.7.0", - "version":"0.7.0", - "targets":"io.indigoengine%tyrian", + "rallyhealth/weepickle":{ + "project":"rallyhealth/weepickle", + "repoUrl":"https://github.com/rallyhealth/weepickle.git", + "revision":"v1.9.1", + "version":"1.9.1", + "targets":"com.rallyhealth%weejson-play210-v1 com.rallyhealth%weeyaml-v1 com.rallyhealth%weejson-jackson-v1 com.rallyhealth%weejson-play30-v1 com.rallyhealth%weejson-json4s-v1 com.rallyhealth%weepickle-implicits-v1 com.rallyhealth%weepickle-core-v1 com.rallyhealth%weejson-upickle-v1 com.rallyhealth%weexml-v1 com.rallyhealth%weejson-v1 com.rallyhealth%weejson-circe-v1 com.rallyhealth%weepickle-v1 com.rallyhealth%weejson-argonaut-v1 com.rallyhealth%weepack-v1", "config":{ "projects":{ "exclude":[ @@ -25249,19 +30627,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" + "path":"project/WeePicklePlugin.scala", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "purplekingdomgames/ultraviolet":{ - "project":"purplekingdomgames/ultraviolet", - "repoUrl":"https://github.com/purplekingdomgames/ultraviolet.git", - "revision":"v0.1.1", - "version":"0.1.1", - "targets":"io.indigoengine%ultraviolet", + "ranyitz/brush":{ + "project":"ranyitz/brush", + "repoUrl":"https://github.com/ranyitz/brush.git", + "revision":"v0.3.0", + "version":"0.3.0", + "targets":"io.github.ranyitz%brush", "config":{ "projects":{ "exclude":[ @@ -25272,7 +30650,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -25291,69 +30669,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" - } - ] - } - }, - "quafadas/dedav4s":{ - "project":"quafadas/dedav4s", - "repoUrl":"https://github.com/quafadas/dedav4s.git", - "revision":"v0.9.0-RC1", - "version":"0.9.0-RC1", - "targets":"io.github.quafadas%dedav4s io.github.quafadas%dedav4s-docs io.github.quafadas%generated", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - + "pattern":"val Scala3: String = \"3.3.0\"", + "replaceWith":"val Scala3: String = \"\"" } - }, - "java":{ - "version":"8" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - ] } }, - "qwbarch/snowflake4s":{ - "project":"qwbarch/snowflake4s", - "repoUrl":"https://github.com/qwbarch/snowflake4s.git", - "revision":"v1.1.0-RC1", - "version":"1.1.0-RC1", - "targets":"io.github.qwbarch%snowflake4s io.github.qwbarch%snowflake4s-circe io.github.qwbarch%snowflake4s-http4s io.github.qwbarch%snowflake4s-skunk" - }, - "raistlintao/scalalogger":{ - "project":"raistlintao/scalalogger", - "repoUrl":"https://github.com/raistlintao/scalalogger.git", - "revision":"17b65304c5a04ff96ec06df3bfe4c72e51f7ba13", - "version":"1.0.0", - "targets":"io.github.raistlintao%logger" - }, - "rallyhealth/scalacheck-ops":{ - "project":"rallyhealth/scalacheck-ops", - "repoUrl":"https://github.com/rallyhealth/scalacheck-ops.git", - "revision":"v2.12.0", - "version":"2.12.0", - "targets":"com.rallyhealth%scalacheck-ops-joda_1 com.rallyhealth%scalacheck-ops-joda_1-15 com.rallyhealth%scalacheck-ops_1 com.rallyhealth%scalacheck-ops_1-15", + "ranyitz/casing":{ + "project":"ranyitz/casing", + "repoUrl":"https://github.com/ranyitz/casing.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"io.github.ranyitz%casing", "config":{ "projects":{ "exclude":[ @@ -25382,19 +30709,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/Dependencies.scala", - "pattern":"val Scala_3 = \"3.2.0\"", - "replaceWith":"val Scala_3 = \"\"" + "path":"build.sbt", + "pattern":"val Scala3: String = \"3.3.0\"", + "replaceWith":"val Scala3: String = \"\"" } ] } }, - "rallyhealth/weepickle":{ - "project":"rallyhealth/weepickle", - "repoUrl":"https://github.com/rallyhealth/weepickle.git", - "revision":"v1.8.0", - "version":"1.8.0", - "targets":"com.rallyhealth%weejson-play210-v1 com.rallyhealth%weeyaml-v1 com.rallyhealth%weejson-jackson-v1 com.rallyhealth%weejson-json4s-v1 com.rallyhealth%weepickle-implicits-v1 com.rallyhealth%weepickle-core-v1 com.rallyhealth%weejson-upickle-v1 com.rallyhealth%weexml-v1 com.rallyhealth%weejson-v1 com.rallyhealth%weejson-circe-v1 com.rallyhealth%weepickle-v1 com.rallyhealth%weejson-argonaut-v1 com.rallyhealth%weepack-v1", + "raquo/scala-dom-types":{ + "project":"raquo/scala-dom-types", + "repoUrl":"https://github.com/raquo/scala-dom-types.git", + "revision":"v17.1.0", + "version":"17.1.0", + "targets":"com.raquo%domtypes", "config":{ "projects":{ "exclude":[ @@ -25423,19 +30750,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/WeePicklePlugin.scala", - "pattern":"val scala3 = \"3.1.0\"", - "replaceWith":"val scala3 = \"\"" + "path":"project/Versions.scala", + "pattern":"val Scala_3 = \"3.3.0\"", + "replaceWith":"val Scala_3 = \"\"" } ] } }, - "raquo/scala-dom-types":{ - "project":"raquo/scala-dom-types", - "repoUrl":"https://github.com/raquo/scala-dom-types.git", - "revision":"v17.0.0", - "version":"17.0.0", - "targets":"com.raquo%domtypes", + "raquo/waypoint":{ + "project":"raquo/waypoint", + "repoUrl":"https://github.com/raquo/waypoint.git", + "revision":"v7.0.0", + "version":"7.0.0", + "targets":"com.raquo%waypoint", "config":{ "projects":{ "exclude":[ @@ -25465,18 +30792,18 @@ "sourcePatches":[ { "path":"project/Versions.scala", - "pattern":"val Scala_3 = \"3.2.0\"", + "pattern":"val Scala_3 = \"3.3.0\"", "replaceWith":"val Scala_3 = \"\"" } ] } }, - "raquo/waypoint":{ - "project":"raquo/waypoint", - "repoUrl":"https://github.com/raquo/waypoint.git", - "revision":"v6.0.0", - "version":"6.0.0", - "targets":"com.raquo%waypoint", + "reactific/riddl":{ + "project":"reactific/riddl", + "repoUrl":"https://github.com/reactific/riddl.git", + "revision":"0.27.4", + "version":"0.27.4", + "targets":"com.reactific%riddl-stats com.reactific%riddl-passes com.reactific%riddl-prettify com.reactific%riddl-language com.reactific%riddl-hugo com.reactific%riddl-commands com.reactific%riddl-utils com.reactific%riddl-testkit com.reactific%riddl-diagrams com.reactific%riddlc", "config":{ "projects":{ "exclude":[ @@ -25487,7 +30814,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -25504,11 +30831,7 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/Versions.scala", - "pattern":"val Scala_3 = \"3.2.0\"", - "replaceWith":"val Scala_3 = \"\"" - } + ] } }, @@ -25556,8 +30879,8 @@ "reactivemongo/reactivemongo":{ "project":"reactivemongo/reactivemongo", "repoUrl":"https://github.com/reactivemongo/reactivemongo.git", - "revision":"1.1.0-RC10", - "version":"1.1.0-RC10", + "revision":"1.1.0-RC11", + "version":"1.1.0-RC11", "targets":"org.reactivemongo%reactivemongo org.reactivemongo%reactivemongo-alias org.reactivemongo%reactivemongo-core org.reactivemongo%reactivemongo-test", "config":{ "projects":{ @@ -25595,9 +30918,9 @@ "reactivemongo/reactivemongo-bson":{ "project":"reactivemongo/reactivemongo-bson", "repoUrl":"https://github.com/reactivemongo/reactivemongo-bson.git", - "revision":"1.1.0-RC10", - "version":"1.1.0-RC10", - "targets":"org.reactivemongo%reactivemongo-bson-monocle org.reactivemongo%reactivemongo-bson-specs2 org.reactivemongo%reactivemongo-bson-geo org.reactivemongo%reactivemongo-bson-api org.reactivemongo%reactivemongo-bson-msb-compat", + "revision":"1.1.0-RC11", + "version":"1.1.0-RC11", + "targets":"org.reactivemongo%reactivemongo-bson-monocle org.reactivemongo%reactivemongo-bson-specs2 org.reactivemongo%reactivemongo-jmx org.reactivemongo%reactivemongo-bson-geo org.reactivemongo%reactivemongo-bson-api org.reactivemongo%reactivemongo-datadog org.reactivemongo%reactivemongo-bson-msb-compat org.reactivemongo%reactivemongo-kamon", "config":{ "projects":{ "exclude":[ @@ -25634,8 +30957,8 @@ "reactivemongo/reactivemongo-play-json":{ "project":"reactivemongo/reactivemongo-play-json", "repoUrl":"https://github.com/reactivemongo/reactivemongo-play-json.git", - "revision":"e1d41746b23bb9431e19bf0e6f819534e791a0b0", - "version":"1.1.0-play29-RC10", + "revision":"", + "version":"1.1.0-play29-RC11", "targets":"org.reactivemongo%reactivemongo-play-json-compat", "config":{ "projects":{ @@ -25671,8 +30994,8 @@ "reactivemongo/reactivemongo-streaming":{ "project":"reactivemongo/reactivemongo-streaming", "repoUrl":"https://github.com/reactivemongo/reactivemongo-streaming.git", - "revision":"1.1.0-RC10", - "version":"1.1.0-RC10", + "revision":"1.1.0-RC11", + "version":"1.1.0-RC11", "targets":"org.reactivemongo%reactivemongo-akkastream" }, "rediscala/rediscala":{ @@ -25719,8 +31042,8 @@ "regis-leray/fs2-ftp":{ "project":"regis-leray/fs2-ftp", "repoUrl":"https://github.com/regis-leray/fs2-ftp.git", - "revision":"v0.8.3", - "version":"0.8.3", + "revision":"v0.8.4", + "version":"0.8.4", "targets":"com.github.regis-leray%fs2-ftp", "config":{ "projects":{ @@ -25732,7 +31055,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -25838,8 +31161,8 @@ "rewards-network/pure-aws":{ "project":"rewards-network/pure-aws", "repoUrl":"https://github.com/rewards-network/pure-aws.git", - "revision":"v0.7.1", - "version":"0.7.1", + "revision":"v0.7.2", + "version":"0.7.2", "targets":"com.rewardsnetwork%pure-aws-s3-testing com.rewardsnetwork%pure-aws-core com.rewardsnetwork%pure-aws-sqs-refined com.rewardsnetwork%pure-aws-s3 com.rewardsnetwork%pure-aws-sqs", "config":{ "projects":{ @@ -25870,12 +31193,53 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.1.1\"", + "pattern":"val scala3 = \"3.1.3\"", "replaceWith":"val scala3 = \"\"" } ] } }, + "rolang/dumbo":{ + "project":"rolang/dumbo", + "repoUrl":"https://github.com/rolang/dumbo.git", + "revision":"v0.0.3", + "version":"0.0.3", + "targets":"dev.rolang%dumbo", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val `scala-3` = \"3.3.0\"", + "replaceWith":"val `scala-3` = \"\"" + } + ] + } + }, "rsemlal/clickhouse4cats":{ "project":"rsemlal/clickhouse4cats", "repoUrl":"https://github.com/rsemlal/clickhouse4cats.git", @@ -25920,9 +31284,9 @@ "rssh/cps-async-connect":{ "project":"rssh/cps-async-connect", "repoUrl":"https://github.com/rssh/cps-async-connect.git", - "revision":"0.9.12", - "version":"0.9.12", - "targets":"com.github.rssh%cps-async-connect-zio2 com.github.rssh%cps-async-connect-scalaz com.github.rssh%cps-async-connect-zio com.github.rssh%cps-async-connect-monix com.github.rssh%cps-async-connect-akka-stream com.github.rssh%cps-async-connect-fs2 com.github.rssh%cps-async-connect-cats-effect", + "revision":"0.9.19", + "version":"0.9.19", + "targets":"com.github.rssh%cps-async-connect-pekko-stream com.github.rssh%cps-async-connect-zio2 com.github.rssh%cps-async-connect-cats-effect-loom com.github.rssh%cps-async-connect-scalaz com.github.rssh%cps-async-connect-zio com.github.rssh%cps-async-connect-monix com.github.rssh%cps-async-connect-zio2-loom com.github.rssh%cps-async-connect-akka-stream com.github.rssh%cps-async-connect-fs2 com.github.rssh%cps-async-connect-cats-effect com.github.rssh%cps-async-connect-probabiliy-monad", "config":{ "projects":{ "exclude":[ @@ -25957,9 +31321,9 @@ "rssh/dotty-cps-async":{ "project":"rssh/dotty-cps-async", "repoUrl":"https://github.com/rssh/dotty-cps-async.git", - "revision":"0.9.16", - "version":"0.9.16", - "targets":"com.github.rssh%dotty-cps-async", + "revision":"0.9.19", + "version":"0.9.19", + "targets":"com.github.rssh%dotty-cps-async com.github.rssh%dotty-cps-async-compiler-plugin com.github.rssh%dotty-cps-async-loom", "config":{ "projects":{ "exclude":[ @@ -25970,7 +31334,7 @@ } }, "java":{ - "version":"17" + "version":"21" }, "sbt":{ "commands":[ @@ -25994,8 +31358,8 @@ "rssh/shim--scala-async--dotty-cps-async":{ "project":"rssh/shim--scala-async--dotty-cps-async", "repoUrl":"https://github.com/rssh/shim--scala-async--dotty-cps-async.git", - "revision":"0.9.16", - "version":"0.9.16", + "revision":"0.9.18", + "version":"0.9.18", "targets":"com.github.rssh%shim-scala-async-dotty-cps-async" }, "rssh/trackedfuture":{ @@ -26259,6 +31623,170 @@ ] } }, + "rustedbones/pekko-http-avro":{ + "project":"rustedbones/pekko-http-avro", + "repoUrl":"https://github.com/rustedbones/pekko-http-avro.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"fr.davit%pekko-http-avro", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "rustedbones/pekko-http-metrics":{ + "project":"rustedbones/pekko-http-metrics", + "repoUrl":"https://github.com/rustedbones/pekko-http-metrics.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"fr.davit%pekko-http-metrics-prometheus fr.davit%pekko-http-metrics-core fr.davit%pekko-http-metrics-datadog fr.davit%pekko-http-metrics-dropwizard fr.davit%pekko-http-metrics-dropwizard-v5 fr.davit%pekko-http-metrics-graphite", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "rustedbones/pekko-http-scalapb":{ + "project":"rustedbones/pekko-http-scalapb", + "repoUrl":"https://github.com/rustedbones/pekko-http-scalapb.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"fr.davit%pekko-http-scalapb fr.davit%pekko-http-scalapb-binary fr.davit%pekko-http-scalapb-json4s", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "rustedbones/pekko-http-thrift":{ + "project":"rustedbones/pekko-http-thrift", + "repoUrl":"https://github.com/rustedbones/pekko-http-thrift.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"fr.davit%pekko-http-thrift", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, "rustedbones/scout":{ "project":"rustedbones/scout", "repoUrl":"https://github.com/rustedbones/scout.git", @@ -26336,8 +31864,8 @@ "sageserpent-open/americium":{ "project":"sageserpent-open/americium", "repoUrl":"https://github.com/sageserpent-open/americium.git", - "revision":"v1.12.0", - "version":"1.12.0", + "revision":"v1.17.0", + "version":"1.17.0", "targets":"com.sageserpent%americium", "config":{ "projects":{ @@ -26370,6 +31898,43 @@ ] } }, + "sageserpent-open/kineticmerge":{ + "project":"sageserpent-open/kineticmerge", + "repoUrl":"https://github.com/sageserpent-open/kineticmerge.git", + "revision":"v0.1.9", + "version":"0.1.9", + "targets":"com.sageserpent%kinetic-merge", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, "sagifogel/proptics":{ "project":"sagifogel/proptics", "repoUrl":"https://github.com/sagifogel/proptics.git", @@ -26414,8 +31979,8 @@ "sake92/hepek":{ "project":"sake92/hepek", "repoUrl":"https://github.com/sake92/hepek.git", - "revision":"v0.10.0", - "version":"0.10.0", + "revision":"v0.14.0", + "version":"0.14.0", "targets":"ba.sake%hepek ba.sake%hepek-components", "config":{ "projects":{ @@ -26427,7 +31992,44 @@ } }, "java":{ - "version":"11" + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "sake92/sharaf":{ + "project":"sake92/sharaf", + "repoUrl":"https://github.com/sake92/sharaf.git", + "revision":"0.0.12", + "version":"0.0.12", + "targets":"ba.sake%sharaf ba.sake%formson ba.sake%querson ba.sake%validson", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" }, "sbt":{ "commands":[ @@ -26451,8 +32053,8 @@ "sake92/squery":{ "project":"sake92/squery", "repoUrl":"https://github.com/sake92/squery.git", - "revision":"0.0.5", - "version":"0.0.5", + "revision":"0.0.8", + "version":"0.0.8", "targets":"ba.sake%squery", "config":{ "projects":{ @@ -26464,7 +32066,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -26488,8 +32090,8 @@ "sake92/tupson":{ "project":"sake92/tupson", "repoUrl":"https://github.com/sake92/tupson.git", - "revision":"0.5.1", - "version":"0.5.1", + "revision":"0.8.0", + "version":"0.8.0", "targets":"ba.sake%tupson", "config":{ "projects":{ @@ -26501,7 +32103,7 @@ } }, "java":{ - "version":"11" + "version":"21" }, "sbt":{ "commands":[ @@ -26525,8 +32127,8 @@ "sakulk/serval":{ "project":"sakulk/serval", "repoUrl":"https://github.com/sakulk/serval.git", - "revision":"v0.4.0", - "version":"0.4.0", + "revision":"v0.5.0", + "version":"0.5.0", "targets":"io.github.sakulk%serval-core io.github.sakulk%serval-legacy", "config":{ "projects":{ @@ -26557,17 +32159,58 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.2\"", + "pattern":"val Scala3 = \"3.3.0\"", "replaceWith":"val Scala3 = \"\"" } ] } }, + "samueleresca/pekko-quartz-scheduler":{ + "project":"samueleresca/pekko-quartz-scheduler", + "repoUrl":"https://github.com/samueleresca/pekko-quartz-scheduler.git", + "revision":"1.1.0-pekko-1.0.x", + "version":"1.1.0-pekko-1.0.x", + "targets":"io.github.samueleresca%pekko-quartz-scheduler", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala3Version = \"3.3.0\"", + "replaceWith":"val Scala3Version = \"\"" + } + ] + } + }, "sangria-graphql/macro-visit":{ "project":"sangria-graphql/macro-visit", "repoUrl":"https://github.com/sangria-graphql/macro-visit.git", - "revision":"v0.2.0-RC1", - "version":"0.2.0-RC1", + "revision":"v0.2.0", + "version":"0.2.0", "targets":"org.sangria-graphql%macro-visit", "config":{ "projects":{ @@ -26579,7 +32222,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -26603,8 +32246,8 @@ "sangria-graphql/sangria":{ "project":"sangria-graphql/sangria", "repoUrl":"https://github.com/sangria-graphql/sangria.git", - "revision":"v4.0.0-RC5", - "version":"4.0.0-RC5", + "revision":"v4.1.0-RC2", + "version":"4.1.0-RC2", "targets":"org.sangria-graphql%sangria-parser org.sangria-graphql%sangria-derivation org.sangria-graphql%sangria-ast org.sangria-graphql%sangria org.sangria-graphql%sangria-core org.sangria-graphql%sangria-cats-effect-experimental", "config":{ "projects":{ @@ -26616,7 +32259,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -27010,8 +32653,8 @@ "sangria-graphql/sangria-relay":{ "project":"sangria-graphql/sangria-relay", "repoUrl":"https://github.com/sangria-graphql/sangria-relay.git", - "revision":"v3.0.1", - "version":"3.0.1", + "revision":"v4.0.0", + "version":"4.0.0", "targets":"org.sangria-graphql%sangria-relay", "config":{ "projects":{ @@ -27023,7 +32666,7 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ @@ -27047,8 +32690,8 @@ "sangria-graphql/sangria-slowlog":{ "project":"sangria-graphql/sangria-slowlog", "repoUrl":"https://github.com/sangria-graphql/sangria-slowlog.git", - "revision":"v2.0.5", - "version":"2.0.5", + "revision":"v3.0.0", + "version":"3.0.0", "targets":"org.sangria-graphql%sangria-slowlog", "config":{ "projects":{ @@ -27199,8 +32842,8 @@ "sbt-jib/sbt-jib":{ "project":"sbt-jib/sbt-jib", "repoUrl":"https://github.com/sbt-jib/sbt-jib.git", - "revision":"v1.3.4", - "version":"1.3.4", + "revision":"v1.3.6", + "version":"1.3.6", "targets":"de.gccc.sbt%jib-common", "config":{ "projects":{ @@ -27212,7 +32855,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -27236,8 +32879,8 @@ "sbt/io":{ "project":"sbt/io", "repoUrl":"https://github.com/sbt/io.git", - "revision":"v1.9.0-RC3", - "version":"1.9.0-RC3", + "revision":"v1.9.7", + "version":"1.9.7", "targets":"org.scala-sbt%io", "config":{ "projects":{ @@ -27268,7 +32911,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.1.3\"", + "pattern":"val scala3 = \"3.3.1\"", "replaceWith":"val scala3 = \"\"" } ] @@ -27393,6 +33036,13 @@ ] } }, + "scala-cli/directive-handler":{ + "project":"scala-cli/directive-handler", + "repoUrl":"https://github.com/scala-cli/directive-handler.git", + "revision":"v0.1.4", + "version":"0.1.4", + "targets":"io.github.alexarchambault.scala-cli%directive-handler" + }, "scala-cli/java-class-name":{ "project":"scala-cli/java-class-name", "repoUrl":"https://github.com/scala-cli/java-class-name.git", @@ -27515,8 +33165,8 @@ "scala-interop/slinc":{ "project":"scala-interop/slinc", "repoUrl":"https://github.com/scala-interop/slinc.git", - "revision":"0.4.0", - "version":"0.4.0", + "revision":"0.6.0", + "version":"0.6.0", "targets":"fr.hammons%slinc-core fr.hammons%slinc-j17 fr.hammons%slinc-j19 fr.hammons%slinc-runtime", "config":{ "projects":{ @@ -27589,8 +33239,8 @@ "scala-native/scala-native":{ "project":"scala-native/scala-native", "repoUrl":"https://github.com/scala-native/scala-native.git", - "revision":"v0.4.12", - "version":"0.4.12", + "revision":"v0.4.16", + "version":"0.4.16", "targets":"org.scala-native%nir org.scala-native%test-runner org.scala-native%tools org.scala-native%util", "config":{ "projects":{ @@ -27602,7 +33252,7 @@ } }, "java":{ - "version":"17" + "version":"21" }, "sbt":{ "commands":[ @@ -27630,8 +33280,8 @@ "scala-native/scala-native-cli":{ "project":"scala-native/scala-native-cli", "repoUrl":"https://github.com/scala-native/scala-native-cli.git", - "revision":"v0.4.12", - "version":"0.4.12", + "revision":"v0.4.16", + "version":"0.4.16", "targets":"org.scala-native%scala-native-cli", "config":{ "projects":{ @@ -27643,7 +33293,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -27667,7 +33317,7 @@ "scala-stm/scala-stm":{ "project":"scala-stm/scala-stm", "repoUrl":"https://github.com/scala-stm/scala-stm.git", - "revision":"3244edf13c41f22ff8b45143186745e9eb469220", + "revision":"", "version":"0.11.1", "targets":"org.scala-stm%scala-stm" }, @@ -27711,8 +33361,8 @@ "scala-ts/scala-ts":{ "project":"scala-ts/scala-ts", "repoUrl":"https://github.com/scala-ts/scala-ts.git", - "revision":"0.5.16", - "version":"0.5.16", + "revision":"0.5.17", + "version":"0.5.17", "targets":"io.github.scala-ts%scala-ts-core io.github.scala-ts%scala-ts-idtlt io.github.scala-ts%scala-ts-python" }, "scala-tsi/scala-tsi":{ @@ -27759,15 +33409,15 @@ "scala-workers/commons-lang3-bridge":{ "project":"scala-workers/commons-lang3-bridge", "repoUrl":"https://github.com/scala-workers/commons-lang3-bridge.git", - "revision":"5ff9b446fc01ff2cb35e95e5acc638eb5988f228", + "revision":"", "version":"0.1.0", "targets":"net.scalax%commons-lang3-bridge" }, "scala/scala-collection-compat":{ "project":"scala/scala-collection-compat", "repoUrl":"https://github.com/scala/scala-collection-compat.git", - "revision":"v2.10.0", - "version":"2.10.0", + "revision":"v2.11.0", + "version":"2.11.0", "targets":"org.scala-lang.modules%scala-collection-compat", "config":{ "projects":{ @@ -27962,8 +33612,8 @@ "scala/scala-xml":{ "project":"scala/scala-xml", "repoUrl":"https://github.com/scala/scala-xml.git", - "revision":"v2.1.0", - "version":"2.1.0", + "revision":"v2.2.0", + "version":"2.2.0", "targets":"org.scala-lang.modules%scala-xml", "config":{ "projects":{ @@ -27999,8 +33649,8 @@ "scala/toolkit":{ "project":"scala/toolkit", "repoUrl":"https://github.com/scala/toolkit.git", - "revision":"v0.1.7", - "version":"0.1.7", + "revision":"0.2.1", + "version":"0.2.1", "targets":"org.scala-lang%toolkit org.scala-lang%toolkit-test" }, "scalabin-no/http4s-directives":{ @@ -28010,11 +33660,48 @@ "version":"0.23.10", "targets":"no.scalabin.http4s%http4s-directives" }, + "scalacenter/course-management-tools":{ + "project":"scalacenter/course-management-tools", + "repoUrl":"https://github.com/scalacenter/course-management-tools.git", + "revision":"2.0.22", + "version":"2.0.22", + "targets":"ch.epfl.scala%cmt-core ch.epfl.scala%cmta ch.epfl.scala%cmtc", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, "scalacenter/scala-debug-adapter":{ "project":"scalacenter/scala-debug-adapter", "repoUrl":"https://github.com/scalacenter/scala-debug-adapter.git", - "revision":"v3.1.3", - "version":"3.1.3", + "revision":"v3.1.4", + "version":"3.1.4", "targets":"ch.epfl.scala%scala-debug-step-filter", "config":{ "projects":{ @@ -28050,7 +33737,7 @@ "scalacenter/simple-rockets-compiler":{ "project":"scalacenter/simple-rockets-compiler", "repoUrl":"https://github.com/scalacenter/simple-rockets-compiler.git", - "revision":"9e40e57dfce7497a409317b64d0b2135ed7e1e1e", + "revision":"", "version":"0.1.1", "targets":"com.akmetiuk%simple-rockets-compiler", "config":{ @@ -28091,8 +33778,8 @@ "scalacenter/tasty-mima":{ "project":"scalacenter/tasty-mima", "repoUrl":"https://github.com/scalacenter/tasty-mima.git", - "revision":"v0.2.3", - "version":"0.2.3", + "revision":"v1.0.0", + "version":"1.0.0", "targets":"ch.epfl.scala%tasty-mima", "config":{ "projects":{ @@ -28128,8 +33815,8 @@ "scalacenter/tasty-query":{ "project":"scalacenter/tasty-query", "repoUrl":"https://github.com/scalacenter/tasty-query.git", - "revision":"v0.7.9", - "version":"0.7.9", + "revision":"v1.0.0", + "version":"1.0.0", "targets":"ch.epfl.scala%tasty-query", "config":{ "projects":{ @@ -28141,7 +33828,7 @@ } }, "java":{ - "version":"17" + "version":"21" }, "sbt":{ "commands":[ @@ -28199,11 +33886,52 @@ ] } }, + "scalalandio/chimney":{ + "project":"scalalandio/chimney", + "repoUrl":"https://github.com/scalalandio/chimney.git", + "revision":"0.8.1", + "version":"0.8.1", + "targets":"io.scalaland%chimney-protobufs io.scalaland%chimney-cats io.scalaland%chimney io.scalaland%chimney-java-collections io.scalaland%chimney-macro-commons", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"21" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, "scalameta/mdoc":{ "project":"scalameta/mdoc", "repoUrl":"https://github.com/scalameta/mdoc.git", - "revision":"v2.3.7", - "version":"2.3.7", + "revision":"v2.4.0", + "version":"2.4.0", "targets":"org.scalameta%mdoc-js org.scalameta%mdoc-js-worker org.scalameta%mdoc-runtime org.scalameta%mdoc org.scalameta%mdoc-cli", "config":{ "projects":{ @@ -28234,7 +33962,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"def scala3 = \"3.1.3\"", + "pattern":"def scala3 = \"3.3.1\"", "replaceWith":"def scala3 = \"\"" } ] @@ -28243,9 +33971,91 @@ "scalameta/metaconfig":{ "project":"scalameta/metaconfig", "repoUrl":"https://github.com/scalameta/metaconfig.git", - "revision":"v0.11.1", - "version":"0.11.1", - "targets":"com.geirsson%metaconfig-core com.geirsson%metaconfig-typesafe-config com.geirsson%metaconfig-pprint com.geirsson%metaconfig-sconfig", + "revision":"v0.12.0", + "version":"0.12.0", + "targets":"com.geirsson%metaconfig-core com.geirsson%metaconfig-typesafe-config com.geirsson%metaconfig-pprint com.geirsson%metaconfig-sconfig com.geirsson%metaconfig-docs", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "scalameta/metals":{ + "project":"scalameta/metals", + "repoUrl":"https://github.com/scalameta/metals.git", + "revision":"v0.11.12", + "version":"0.11.12", + "targets":"org.scalameta%mtags-shared", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"project/V.scala", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "scalameta/munit":{ + "project":"scalameta/munit", + "repoUrl":"https://github.com/scalameta/munit.git", + "revision":"v1.0.0-M10", + "version":"1.0.0-M10", + "targets":"org.scalameta%munit org.scalameta%munit-scalacheck", "config":{ "projects":{ "exclude":[ @@ -28275,18 +34085,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.0.2\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"def scala3 = \"3.1.2\"", + "replaceWith":"def scala3 = \"\"" } ] } }, - "scalameta/metals":{ - "project":"scalameta/metals", - "repoUrl":"https://github.com/scalameta/metals.git", - "revision":"v0.11.12", - "version":"0.11.12", - "targets":"org.scalameta%mtags-shared", + "scalamolecule/molecule":{ + "project":"scalamolecule/molecule", + "repoUrl":"https://github.com/scalamolecule/molecule.git", + "revision":"v0.7.0", + "version":"0.7.0", + "targets":"org.scalamolecule%molecule-sql-mysql org.scalamolecule%molecule-sql-mariadb org.scalamolecule%molecule-core org.scalamolecule%molecule-boilerplate org.scalamolecule%molecule-sql-core org.scalamolecule%molecule-datalog-datomic org.scalamolecule%molecule-sql-h2 org.scalamolecule%molecule-sql-postgres org.scalamolecule%molecule-base org.scalamolecule%molecule-datalog-core", "config":{ "projects":{ "exclude":[ @@ -28297,7 +34107,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -28312,22 +34122,22 @@ ] }, - "tests":"full", + "tests":"disabled", "sourcePatches":[ { - "path":"project/V.scala", - "pattern":"val scala3 = \"3.2.2\"", + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "scalameta/munit":{ - "project":"scalameta/munit", - "repoUrl":"https://github.com/scalameta/munit.git", - "revision":"v1.0.0-M7", - "version":"1.0.0-M7", - "targets":"org.scalameta%munit org.scalameta%munit-scalacheck", + "scalanlp/breeze":{ + "project":"scalanlp/breeze", + "repoUrl":"https://github.com/scalanlp/breeze.git", + "revision":"releases/v2.1.0", + "version":"2.1.0", + "targets":"org.scalanlp%breeze-parent org.scalanlp%breeze-macros org.scalanlp%breeze-natives org.scalanlp%breeze org.scalanlp%breeze-viz", "config":{ "projects":{ "exclude":[ @@ -28342,7 +34152,7 @@ }, "sbt":{ "commands":[ - + "set math/Test/unmanagedSources/excludeFilter := HiddenFileFilter || \"OptimizationSpaceTest.scala\" || \"LinearAlgebraTest.scala\" || \"DenseMatrixTest.scala\" || \"CSCMatrixTest.scala\" || \"LUTest.scala\" || \"ProjectedQuasiNewtonTest.scala\" || \"InvGammaTest.scala\" " ], "options":[ @@ -28355,20 +34165,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"def scala3 = \"3.1.2\"", - "replaceWith":"def scala3 = \"\"" - } + ] } }, - "scalanlp/breeze":{ - "project":"scalanlp/breeze", - "repoUrl":"https://github.com/scalanlp/breeze.git", - "revision":"releases/v2.1.0", - "version":"2.1.0", - "targets":"org.scalanlp%breeze-parent org.scalanlp%breeze-macros org.scalanlp%breeze-natives org.scalanlp%breeze org.scalanlp%breeze-viz", + "scalapatisserie/muffin":{ + "project":"scalapatisserie/muffin", + "repoUrl":"https://github.com/scalapatisserie/muffin.git", + "revision":"v0.3.5", + "version":"0.3.5", + "targets":"space.scalapatisserie%muffin-circe-json-interop space.scalapatisserie%muffin-core space.scalapatisserie%muffin-http4s-http-interop space.scalapatisserie%muffin-sttp-http-interop space.scalapatisserie%muffin-zio-http-interop space.scalapatisserie%muffin-zio-json-interop", "config":{ "projects":{ "exclude":[ @@ -28379,11 +34185,11 @@ } }, "java":{ - "version":"11" + "version":"21" }, "sbt":{ "commands":[ - "set math/Test/unmanagedSources/excludeFilter := HiddenFileFilter || \"OptimizationSpaceTest.scala\" || \"LinearAlgebraTest.scala\" || \"DenseMatrixTest.scala\" || \"CSCMatrixTest.scala\" || \"LUTest.scala\" || \"ProjectedQuasiNewtonTest.scala\" || \"InvGammaTest.scala\" " + ], "options":[ @@ -28403,8 +34209,8 @@ "scalapb-json/scalapb-argonaut":{ "project":"scalapb-json/scalapb-argonaut", "repoUrl":"https://github.com/scalapb-json/scalapb-argonaut.git", - "revision":"v0.9.3", - "version":"0.9.3", + "revision":"v0.10.0", + "version":"0.10.0", "targets":"io.github.scalapb-json%scalapb-argonaut io.github.scalapb-json%scalapb-argonaut-macros", "config":{ "projects":{ @@ -28440,15 +34246,15 @@ "scalapb-json/scalapb-circe":{ "project":"scalapb-json/scalapb-circe", "repoUrl":"https://github.com/scalapb-json/scalapb-circe.git", - "revision":"v0.13.0", - "version":"0.13.0", + "revision":"v0.15.0", + "version":"0.15.0", "targets":"io.github.scalapb-json%scalapb-circe io.github.scalapb-json%scalapb-circe-macros" }, "scalapb-json/scalapb-json-common":{ "project":"scalapb-json/scalapb-json-common", "repoUrl":"https://github.com/scalapb-json/scalapb-json-common.git", - "revision":"v0.8.9", - "version":"0.8.9", + "revision":"v0.9.0", + "version":"0.9.0", "targets":"io.github.scalapb-json%scalapb-json-common io.github.scalapb-json%scalapb-json-macros io.github.scalapb-json%scalapb-json-macros-java", "config":{ "projects":{ @@ -28479,12 +34285,19 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", + "pattern":"val Scala3 = \"3.3.1\"", "replaceWith":"val Scala3 = \"\"" } ] } }, + "scalapb-json/scalapb-playjson":{ + "project":"scalapb-json/scalapb-playjson", + "repoUrl":"https://github.com/scalapb-json/scalapb-playjson.git", + "revision":"v0.17.0", + "version":"0.17.0", + "targets":"io.github.scalapb-json%scalapb-playjson io.github.scalapb-json%scalapb-playjson-macros" + }, "scalapb/common-protos":{ "project":"scalapb/common-protos", "repoUrl":"https://github.com/scalapb/common-protos.git", @@ -28570,8 +34383,8 @@ "scalapb/scalapb":{ "project":"scalapb/scalapb", "repoUrl":"https://github.com/scalapb/scalapb.git", - "revision":"v0.11.13", - "version":"0.11.13", + "revision":"v0.11.14", + "version":"0.11.14", "targets":"com.thesamet.scalapb%compilerplugin com.thesamet.scalapb%lenses com.thesamet.scalapb%scalapb-runtime com.thesamet.scalapb%scalapb-runtime-grpc", "config":{ "projects":{ @@ -28607,7 +34420,7 @@ }, { "path":"project/Dependencies.scala", - "pattern":"val Scala3 = \"3.2.2\"", + "pattern":"val Scala3 = \"3.3.1\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -28616,8 +34429,8 @@ "scalapb/scalapb-grpcweb":{ "project":"scalapb/scalapb-grpcweb", "repoUrl":"https://github.com/scalapb/scalapb-grpcweb.git", - "revision":"v0.6.6", - "version":"0.6.6", + "revision":"v0.7.0", + "version":"0.7.0", "targets":"com.thesamet.scalapb.grpcweb%scalapb-grpcweb-code-gen", "config":{ "projects":{ @@ -28648,7 +34461,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", + "pattern":"val Scala3 = \"3.3.0\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -28735,8 +34548,8 @@ "scalapb/zio-grpc":{ "project":"scalapb/zio-grpc", "repoUrl":"https://github.com/scalapb/zio-grpc.git", - "revision":"v0.6.0-test8", - "version":"0.6.0-test8", + "revision":"v0.6.0", + "version":"0.6.0", "targets":"com.thesamet.scalapb.zio-grpc%zio-grpc-codegen com.thesamet.scalapb.zio-grpc%zio-grpc-core", "config":{ "projects":{ @@ -28748,7 +34561,7 @@ } }, "java":{ - + "version":"8" }, "sbt":{ "commands":[ @@ -28767,7 +34580,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.1\"", + "pattern":"val Scala3 = \"3.3.0\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -28940,9 +34753,9 @@ "scalatest/scalatest":{ "project":"scalatest/scalatest", "repoUrl":"https://github.com/scalatest/scalatest.git", - "revision":"release-3.2.16", - "version":"3.2.16", - "targets":"org.scalatest%scalatest org.scalatest%scalatest-propspec org.scalatest%scalatest-shouldmatchers org.scalatest%scalatest-core org.scalatest%scalatest-funspec org.scalatest%scalatest-diagrams org.scalatest%scalatest-matchers-core org.scalatest%scalatest-refspec org.scalatest%scalatest-flatspec org.scalatest%scalatest-freespec org.scalatest%scalatest-featurespec org.scalatest%scalatest-funsuite org.scalatest%scalatest-mustmatchers org.scalatest%scalatest-wordspec", + "revision":"release-3.2.17", + "version":"3.2.17", + "targets":"org.scalatest%scalatest org.scalatest%scalatest-propspec org.scalatest%scalatest-app org.scalatest%scalatest-shouldmatchers org.scalatest%scalatest-core org.scalatest%scalatest-funspec org.scalatest%scalatest-diagrams org.scalatest%scalatest-matchers-core org.scalatest%scalatest-refspec org.scalatest%scalatest-flatspec org.scalatest%scalatest-freespec org.scalatest%scalatest-featurespec org.scalatest%scalatest-funsuite org.scalatest%scalatest-mustmatchers org.scalatest%scalatest-wordspec", "config":{ "projects":{ "exclude":[ @@ -28980,8 +34793,8 @@ "scalatest/scalatestplus-easymock":{ "project":"scalatest/scalatestplus-easymock", "repoUrl":"https://github.com/scalatest/scalatestplus-easymock.git", - "revision":"release-3.2.16.0-for-easymock-5.1", - "version":"3.2.16.0", + "revision":"release-3.2.17.0-for-easymock-5.1", + "version":"3.2.17.0", "targets":"org.scalatestplus%easymock-5-1", "config":{ "projects":{ @@ -29017,8 +34830,8 @@ "scalatest/scalatestplus-jmock":{ "project":"scalatest/scalatestplus-jmock", "repoUrl":"https://github.com/scalatest/scalatestplus-jmock.git", - "revision":"release-3.2.16.0-for-jmock-2.12", - "version":"3.2.16.0", + "revision":"release-3.2.17.0-for-jmock-2.12", + "version":"3.2.17.0", "targets":"org.scalatestplus%jmock-2-12", "config":{ "projects":{ @@ -29054,8 +34867,8 @@ "scalatest/scalatestplus-junit":{ "project":"scalatest/scalatestplus-junit", "repoUrl":"https://github.com/scalatest/scalatestplus-junit.git", - "revision":"release-3.2.16.0-for-junit-4.13", - "version":"3.2.16.0", + "revision":"release-3.2.17.0-for-junit-4.13", + "version":"3.2.17.0", "targets":"org.scalatestplus%junit-4-13", "config":{ "projects":{ @@ -29088,11 +34901,18 @@ ] } }, + "scalatest/scalatestplus-junit5":{ + "project":"scalatest/scalatestplus-junit5", + "repoUrl":"https://github.com/scalatest/scalatestplus-junit5.git", + "revision":"release-3.2.17.0-for-junit-5.10", + "version":"3.2.17.0", + "targets":"org.scalatestplus%junit-5-10" + }, "scalatest/scalatestplus-mockito":{ "project":"scalatest/scalatestplus-mockito", "repoUrl":"https://github.com/scalatest/scalatestplus-mockito.git", - "revision":"release-3.2.16.0-for-mockito-4.11", - "version":"3.2.16.0", + "revision":"release-3.2.17.0-for-mockito-4.11", + "version":"3.2.17.0", "targets":"org.scalatestplus%mockito-4-11", "config":{ "projects":{ @@ -29128,8 +34948,8 @@ "scalatest/scalatestplus-scalacheck":{ "project":"scalatest/scalatestplus-scalacheck", "repoUrl":"https://github.com/scalatest/scalatestplus-scalacheck.git", - "revision":"release-3.2.16.0-for-scalacheck-1.17", - "version":"3.2.16.0", + "revision":"release-3.2.17.0-for-scalacheck-1.17", + "version":"3.2.17.0", "targets":"org.scalatestplus%scalacheck-1-17", "config":{ "projects":{ @@ -29165,9 +34985,9 @@ "scalatest/scalatestplus-selenium":{ "project":"scalatest/scalatestplus-selenium", "repoUrl":"https://github.com/scalatest/scalatestplus-selenium.git", - "revision":"release-3.2.16.0-for-selenium-4.9", - "version":"3.2.16.0", - "targets":"org.scalatestplus%selenium-4-9 org.scalatestplus%testng-7-5", + "revision":"release-3.2.17.0-for-selenium-4.12", + "version":"3.2.17.0", + "targets":"org.scalatestplus%selenium-4-12 org.scalatestplus%testng-7-5", "config":{ "projects":{ "exclude":[ @@ -29202,9 +35022,9 @@ "scalatra/scalatra":{ "project":"scalatra/scalatra", "repoUrl":"https://github.com/scalatra/scalatra.git", - "revision":"v3.0.0-M3", - "version":"3.0.0-M3", - "targets":"org.scalatra%scalatra-auth org.scalatra%scalatra-common org.scalatra%scalatra-jetty org.scalatra%scalatra-metrics org.scalatra%scalatra-unidoc org.scalatra%scalatra-cache org.scalatra%scalatra-specs2 org.scalatra%scalatra-twirl org.scalatra%scalatra org.scalatra%scalatra-forms org.scalatra%scalatra-scalatest org.scalatra%scalatra-test org.scalatra%scalatra-json org.scalatra%scalatra-swagger", + "revision":"v3.0.0", + "version":"3.0.0", + "targets":"org.scalatra%scalatra-javax org.scalatra%scalatra-specs2-jakarta org.scalatra%scalatra-scalatest-jakarta org.scalatra%scalatra-common-jakarta org.scalatra%scalatra-forms-javax org.scalatra%scalatra-cache-javax org.scalatra%scalatra-json-jakarta org.scalatra%scalatra-scalatest-javax org.scalatra%scalatra-jetty-jakarta org.scalatra%scalatra-common-javax org.scalatra%scalatra-auth-javax org.scalatra%scalatra-jetty-javax org.scalatra%scalatra-json-javax org.scalatra%scalatra-jakarta org.scalatra%scalatra-twirl-javax org.scalatra%scalatra-twirl-jakarta org.scalatra%scalatra-forms-jakarta org.scalatra%scalatra-metrics-javax org.scalatra%scalatra-auth-jakarta org.scalatra%scalatra-specs2-javax org.scalatra%scalatra-test-jakarta org.scalatra%scalatra-cache-jakarta org.scalatra%scalatra-swagger-javax org.scalatra%scalatra-test-javax org.scalatra%scalatra-swagger-jakarta org.scalatra%scalatra-metrics-jakarta", "config":{ "projects":{ "exclude":[ @@ -29246,15 +35066,15 @@ "scalax/simple":{ "project":"scalax/simple", "repoUrl":"https://github.com/scalax/simple.git", - "revision":"71d4dcf35ab930f7d5e86e690773fdf33609ae71", - "version":"0.0.1-RC1", + "revision":"0.0.1", + "version":"0.0.1", "targets":"net.scalax.simple%simple-adt net.scalax.simple%simple-ghdmzsk net.scalax.simple%simple-adt-core net.scalax.simple%simple-adt-implemention" }, "scalaz/scalaz":{ "project":"scalaz/scalaz", "repoUrl":"https://github.com/scalaz/scalaz.git", - "revision":"v7.4.0-M13", - "version":"7.4.0-M13", + "revision":"v7.4.0-M14", + "version":"7.4.0-M14", "targets":"org.scalaz%scalaz-scalacheck-binding org.scalaz%scalaz-core org.scalaz%scalaz-effect org.scalaz%scalaz org.scalaz%scalaz-iteratee", "config":{ "projects":{ @@ -29285,7 +35105,7 @@ "sourcePatches":[ { "path":"project/build.scala", - "pattern":"def Scala3 = \"3.1.0\"", + "pattern":"def Scala3 = \"3.3.1\"", "replaceWith":"def Scala3 = \"\"" } ] @@ -29294,8 +35114,8 @@ "scalikejdbc/scalikejdbc":{ "project":"scalikejdbc/scalikejdbc", "repoUrl":"https://github.com/scalikejdbc/scalikejdbc.git", - "revision":"4.0.0", - "version":"4.0.0", + "revision":"4.1.0", + "version":"4.1.0", "targets":"org.scalikejdbc%scalikejdbc-core org.scalikejdbc%scalikejdbc-interpolation org.scalikejdbc%scalikejdbc-syntax-support-macro org.scalikejdbc%scalikejdbc-streams org.scalikejdbc%scalikejdbc-config org.scalikejdbc%scalikejdbc-interpolation-macro org.scalikejdbc%scalikejdbc org.scalikejdbc%scalikejdbc-test org.scalikejdbc%scalikejdbc-joda-time org.scalikejdbc%scalikejdbc-mapper-generator-core", "config":{ "projects":{ @@ -29307,7 +35127,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -29326,7 +35146,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"def Scala3 = \"3.1.0\"", + "pattern":"def Scala3 = \"3.3.1\"", "replaceWith":"def Scala3 = \"\"" } ] @@ -29413,8 +35233,8 @@ "scallop/scallop":{ "project":"scallop/scallop", "repoUrl":"https://github.com/scallop/scallop.git", - "revision":"v4.1.0", - "version":"4.1.0", + "revision":"v5.0.0", + "version":"5.0.0", "targets":"org.rogach%scallop", "config":{ "projects":{ @@ -29457,8 +35277,8 @@ "scanamo/scanamo":{ "project":"scanamo/scanamo", "repoUrl":"https://github.com/scanamo/scanamo.git", - "revision":"v1.0.0-M26", - "version":"1.0.0-M26", + "revision":"v1.0.0-M29", + "version":"1.0.0-M29", "targets":"org.scanamo%scanamo org.scanamo%scanamo-cats-effect org.scanamo%scanamo-joda org.scanamo%scanamo-testkit", "config":{ "projects":{ @@ -29667,49 +35487,49 @@ "sciss/equal":{ "project":"sciss/equal", "repoUrl":"https://github.com/sciss/equal.git", - "revision":"4340d3a6b503aad4fbea89ee6026923127e8b1ab", + "revision":"", "version":"0.1.6", "targets":"de.sciss%equal" }, "sciss/filecache":{ "project":"sciss/filecache", "repoUrl":"https://github.com/sciss/filecache.git", - "revision":"baece005fd299c7929219333b0baa9a583d11158", + "revision":"", "version":"1.1.2", "targets":"de.sciss%filecache-common de.sciss%filecache-mutable de.sciss%filecache-txn" }, "sciss/fileutil":{ "project":"sciss/fileutil", "repoUrl":"https://github.com/sciss/fileutil.git", - "revision":"56a31c58f1b76892b3a595be709df298c61693c3", + "revision":"", "version":"1.1.5", "targets":"de.sciss%fileutil" }, "sciss/fingertree":{ "project":"sciss/fingertree", "repoUrl":"https://github.com/sciss/fingertree.git", - "revision":"0ed006549a78036aac0b09375e90237e72f599fe", + "revision":"", "version":"1.5.5", "targets":"de.sciss%fingertree" }, "sciss/kollflitz":{ "project":"sciss/kollflitz", "repoUrl":"https://github.com/sciss/kollflitz.git", - "revision":"0b5c9127381b987c2456443e129688e8a34ebdd6", + "revision":"", "version":"0.2.4", "targets":"de.sciss%kollflitz" }, "sciss/linkernighantsp":{ "project":"sciss/linkernighantsp", "repoUrl":"https://github.com/sciss/linkernighantsp.git", - "revision":"aa3f2dac2823f9cac38bc3b8830e7a9277afe895", + "revision":"", "version":"0.1.3", "targets":"de.sciss%linkernighantsp" }, "sciss/log":{ "project":"sciss/log", "repoUrl":"https://github.com/sciss/log.git", - "revision":"1839754549ed690fbba2ea1b220e3f70f8d2ba91", + "revision":"", "version":"0.1.1", "targets":"de.sciss%log" }, @@ -29737,21 +35557,21 @@ "sciss/model":{ "project":"sciss/model", "repoUrl":"https://github.com/sciss/model.git", - "revision":"d797f70e9d178fa6a70d6aa2d3c3324bc1c27b48", + "revision":"", "version":"0.3.5", "targets":"de.sciss%model" }, "sciss/numbers":{ "project":"sciss/numbers", "repoUrl":"https://github.com/sciss/numbers.git", - "revision":"656dfd3f7c0a541b243e2d0f5aabbd20fc8bcea6", + "revision":"", "version":"0.2.1", "targets":"de.sciss%numbers" }, "sciss/optional":{ "project":"sciss/optional", "repoUrl":"https://github.com/sciss/optional.git", - "revision":"edfe85c4a4b9be52c4b8bd60d0d336e26c0ab89c", + "revision":"", "version":"1.0.1", "targets":"de.sciss%optional" }, @@ -29795,7 +35615,7 @@ "sciss/raphaelicons":{ "project":"sciss/raphaelicons", "repoUrl":"https://github.com/sciss/raphaelicons.git", - "revision":"6bfac7909f981cc45c002fbfd0a012ff820fb9e8", + "revision":"", "version":"1.0.7", "targets":"de.sciss%raphael-icons" }, @@ -29844,7 +35664,7 @@ "sciss/scissdsp":{ "project":"sciss/scissdsp", "repoUrl":"https://github.com/sciss/scissdsp.git", - "revision":"5694b9bfb9a93941c973b4acc6d2bda5b5679451", + "revision":"", "version":"2.2.6", "targets":"de.sciss%scissdsp" }, @@ -29895,21 +35715,21 @@ "sciss/topology":{ "project":"sciss/topology", "repoUrl":"https://github.com/sciss/topology.git", - "revision":"79e776388deaf115a4445509bbd2d4f6dd948ed8", + "revision":"", "version":"1.1.4", "targets":"de.sciss%topology" }, "sciss/transform4s":{ "project":"sciss/transform4s", "repoUrl":"https://github.com/sciss/transform4s.git", - "revision":"42351a0d7dabf31a522f7a1ce09212a18db20b67", + "revision":"", "version":"0.1.1", "targets":"de.sciss%transform4s" }, "sciss/treetable":{ "project":"sciss/treetable", "repoUrl":"https://github.com/sciss/treetable.git", - "revision":"4714a32b30467f8678804ebf6671757d915de173", + "revision":"", "version":"1.6.3", "targets":"de.sciss%treetable-scala" }, @@ -29953,8 +35773,8 @@ "scodec/scodec":{ "project":"scodec/scodec", "repoUrl":"https://github.com/scodec/scodec.git", - "revision":"v2.2.1", - "version":"2.2.1", + "revision":"v2.2.2", + "version":"2.2.2", "targets":"org.scodec%scodec-core org.scodec%scodec-testkit", "config":{ "projects":{ @@ -29990,8 +35810,8 @@ "scodec/scodec-bits":{ "project":"scodec/scodec-bits", "repoUrl":"https://github.com/scodec/scodec-bits.git", - "revision":"v1.1.37", - "version":"1.1.37", + "revision":"v1.1.38", + "version":"1.1.38", "targets":"org.scodec%scodec-bits", "config":{ "projects":{ @@ -30220,8 +36040,8 @@ "scoverage/scalac-scoverage-plugin":{ "project":"scoverage/scalac-scoverage-plugin", "repoUrl":"https://github.com/scoverage/scalac-scoverage-plugin.git", - "revision":"v2.0.8", - "version":"2.0.8", + "revision":"v2.0.11", + "version":"2.0.11", "targets":"org.scoverage%scalac-scoverage-domain org.scoverage%scalac-scoverage-reporter org.scoverage%scalac-scoverage-serializer", "config":{ "projects":{ @@ -30300,7 +36120,7 @@ "sean-ideabank/rudolf":{ "project":"sean-ideabank/rudolf", "repoUrl":"https://github.com/sean-ideabank/rudolf.git", - "revision":"eadfbd3cc01a4e45540356a8a1a55a3ec9b3d905", + "revision":"", "version":"0.1.1", "targets":"works.ideabank%rudolf", "config":{ @@ -30348,9 +36168,39 @@ "senia-psm/zio-test-akka-http":{ "project":"senia-psm/zio-test-akka-http", "repoUrl":"https://github.com/senia-psm/zio-test-akka-http.git", - "revision":"v2.0.4", - "version":"2.0.4", - "targets":"info.senia%zio-test-akka-http" + "revision":"v2.0.14", + "version":"2.0.14", + "targets":"info.senia%zio-test-akka-http", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } }, "seratch/awscala":{ "project":"seratch/awscala", @@ -30396,8 +36246,8 @@ "sfxcode/pebble-scala":{ "project":"sfxcode/pebble-scala", "repoUrl":"https://github.com/sfxcode/pebble-scala.git", - "revision":"v1.1.1", - "version":"1.1.1", + "revision":"v1.1.5", + "version":"1.1.5", "targets":"com.sfxcode.templating%pebble-scala", "config":{ "projects":{ @@ -30588,8 +36438,8 @@ "shiftleftsecurity/codepropertygraph":{ "project":"shiftleftsecurity/codepropertygraph", "repoUrl":"https://github.com/shiftleftsecurity/codepropertygraph.git", - "revision":"v1.3.603", - "version":"1.3.603", + "revision":"v1.4.25", + "version":"1.4.25", "targets":"io.shiftleft%schema2json io.shiftleft%codepropertygraph io.shiftleft%codepropertygraph-domain-classes io.shiftleft%codepropertygraph-schema io.shiftleft%codepropertygraph-protos", "config":{ "projects":{ @@ -30625,8 +36475,8 @@ "shiftleftsecurity/js2cpg":{ "project":"shiftleftsecurity/js2cpg", "repoUrl":"https://github.com/shiftleftsecurity/js2cpg.git", - "revision":"v0.2.229", - "version":"0.2.229", + "revision":"v0.2.243", + "version":"0.2.243", "targets":"io.shiftleft%js2cpg", "config":{ "projects":{ @@ -30662,8 +36512,8 @@ "shiftleftsecurity/overflowdb":{ "project":"shiftleftsecurity/overflowdb", "repoUrl":"https://github.com/shiftleftsecurity/overflowdb.git", - "revision":"v1.174", - "version":"1.174", + "revision":"v1.181", + "version":"1.181", "targets":"io.shiftleft%overflowdb-core io.shiftleft%overflowdb-formats io.shiftleft%overflowdb-traversal", "config":{ "projects":{ @@ -30699,8 +36549,8 @@ "shiftleftsecurity/overflowdb-codegen":{ "project":"shiftleftsecurity/overflowdb-codegen", "repoUrl":"https://github.com/shiftleftsecurity/overflowdb-codegen.git", - "revision":"v2.88", - "version":"2.88", + "revision":"v2.105", + "version":"2.105", "targets":"io.shiftleft%overflowdb-codegen", "config":{ "projects":{ @@ -30731,7 +36581,7 @@ "sourcePatches":[ { "path":"project/Build.scala", - "pattern":"val scala_3 = \"3.2.2\"", + "pattern":"val scala_3 = \"3.3.0\"", "replaceWith":"val scala_3 = \"\"" } ] @@ -30855,8 +36705,8 @@ "simy4/coregex":{ "project":"simy4/coregex", "repoUrl":"https://github.com/simy4/coregex.git", - "revision":"v1.0.4", - "version":"1.0.4", + "revision":"v1.0.7", + "version":"1.0.7", "targets":"com.github.simy4.coregex%coregex-scalacheck", "config":{ "projects":{ @@ -30887,7 +36737,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] @@ -30896,16 +36746,16 @@ "sinaghaffari/monadicsimplifier":{ "project":"sinaghaffari/monadicsimplifier", "repoUrl":"https://github.com/sinaghaffari/monadicsimplifier.git", - "revision":"d0ad87a124ad1ce3c1534b5b0010abdbd7deeccc", + "revision":"", "version":"0.1", "targets":"com.sinaghaffari%monadicsimplifier" }, "sirthias/borer":{ "project":"sirthias/borer", "repoUrl":"https://github.com/sirthias/borer.git", - "revision":"v1.10.3", - "version":"1.10.3", - "targets":"io.bullet%borer-compat-scodec io.bullet%borer-compat-akka io.bullet%borer-core io.bullet%borer-compat-cats io.bullet%borer-compat-circe io.bullet%borer-derivation", + "revision":"v1.12.0", + "version":"1.12.0", + "targets":"io.bullet%borer-compat-scodec io.bullet%borer-compat-akka io.bullet%borer-core io.bullet%borer-compat-cats io.bullet%borer-compat-circe io.bullet%borer-derivation io.bullet%borer-compat-pekko", "config":{ "projects":{ "exclude":[ @@ -30935,7 +36785,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"def scala3 = \"3.2.2\"", + "pattern":"def scala3 = \"3.3.1\"", "replaceWith":"def scala3 = \"\"" } ] @@ -30951,8 +36801,8 @@ "sirthias/parboiled2":{ "project":"sirthias/parboiled2", "repoUrl":"https://github.com/sirthias/parboiled2.git", - "revision":"v2.4.1", - "version":"2.4.1", + "revision":"v2.5.1", + "version":"2.5.1", "targets":"org.parboiled%parboiled", "config":{ "projects":{ @@ -30964,7 +36814,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -30983,7 +36833,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.1\"", + "pattern":"val Scala3 = \"3.3.1\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -31036,8 +36886,8 @@ "sksamuel/avro4s":{ "project":"sksamuel/avro4s", "repoUrl":"https://github.com/sksamuel/avro4s.git", - "revision":"07bb1ff48989a383fb8a38ee45587cf412d38883", - "version":"5.0.4", + "revision":"", + "version":"5.0.5", "targets":"com.sksamuel.avro4s%avro4s-cats com.sksamuel.avro4s%avro4s-core", "config":{ "projects":{ @@ -31073,9 +36923,9 @@ "sksamuel/elastic4s":{ "project":"sksamuel/elastic4s", "repoUrl":"https://github.com/sksamuel/elastic4s.git", - "revision":"v8.7.0", - "version":"8.7.0", - "targets":"com.sksamuel.elastic4s%elastic4s-json-zio com.sksamuel.elastic4s%elastic4s-json-jackson com.sksamuel.elastic4s%elastic4s-json-circe com.sksamuel.elastic4s%elastic4s-json-json4s com.sksamuel.elastic4s%elastic4s-testkit com.sksamuel.elastic4s%elastic4s-json-builder com.sksamuel.elastic4s%elastic4s-http-streams com.sksamuel.elastic4s%elastic4s-json-play com.sksamuel.elastic4s%elastic4s-handlers com.sksamuel.elastic4s%elastic4s-streams-akka com.sksamuel.elastic4s%elastic4s-client-core com.sksamuel.elastic4s%elastic4s-client-sniffed com.sksamuel.elastic4s%elastic4s-effect-monix com.sksamuel.elastic4s%elastic4s-effect-cats-2 com.sksamuel.elastic4s%elastic4s-effect-cats com.sksamuel.elastic4s%elastic4s-effect-zio com.sksamuel.elastic4s%elastic4s-effect-zio-1 com.sksamuel.elastic4s%elastic4s-core com.sksamuel.elastic4s%elastic4s-client-esjava com.sksamuel.elastic4s%elastic4s-domain com.sksamuel.elastic4s%elastic4s-client-sttp", + "revision":"v8.9.4", + "version":"8.9.4", + "targets":"com.sksamuel.elastic4s%elastic4s-json-zio com.sksamuel.elastic4s%elastic4s-json-jackson com.sksamuel.elastic4s%elastic4s-json-circe com.sksamuel.elastic4s%elastic4s-json-json4s com.sksamuel.elastic4s%elastic4s-testkit com.sksamuel.elastic4s%elastic4s-json-builder com.sksamuel.elastic4s%elastic4s-http-streams com.sksamuel.elastic4s%elastic4s-json-play com.sksamuel.elastic4s%elastic4s-handlers com.sksamuel.elastic4s%elastic4s-streams-akka com.sksamuel.elastic4s%elastic4s-client-core com.sksamuel.elastic4s%elastic4s-client-sniffed com.sksamuel.elastic4s%elastic4s-effect-monix com.sksamuel.elastic4s%elastic4s-effect-cats-2 com.sksamuel.elastic4s%elastic4s-effect-cats com.sksamuel.elastic4s%elastic4s-effect-zio com.sksamuel.elastic4s%elastic4s-effect-zio-1 com.sksamuel.elastic4s%elastic4s-core com.sksamuel.elastic4s%elastic4s-client-esjava com.sksamuel.elastic4s%elastic4s-domain com.sksamuel.elastic4s%elastic4s-client-pekko com.sksamuel.elastic4s%elastic4s-client-sttp com.sksamuel.elastic4s%elastic4s-streams-pekko", "config":{ "projects":{ "exclude":[ @@ -31107,6 +36957,47 @@ ] } }, + "sky-uk/fs2-kafka-topic-loader":{ + "project":"sky-uk/fs2-kafka-topic-loader", + "repoUrl":"https://github.com/sky-uk/fs2-kafka-topic-loader.git", + "revision":"v0.0.3", + "version":"0.0.3", + "targets":"uk.sky%fs2-kafka-topic-loader", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, "sky-uk/kafka-topic-loader":{ "project":"sky-uk/kafka-topic-loader", "repoUrl":"https://github.com/sky-uk/kafka-topic-loader.git", @@ -31148,12 +37039,12 @@ ] } }, - "smootoo/tablediff":{ - "project":"smootoo/tablediff", - "repoUrl":"https://github.com/smootoo/tablediff.git", - "revision":"a2129b3745376e993c3a39bb3782fd13890e3389", - "version":"1.1", - "targets":"org.suecarter%tablediff", + "slick/slick":{ + "project":"slick/slick", + "repoUrl":"https://github.com/slick/slick.git", + "revision":"v3.5.0-M4", + "version":"3.5.0-M4", + "targets":"com.typesafe.slick%slick com.typesafe.slick%slick-codegen com.typesafe.slick%slick-hikaricp com.typesafe.slick%slick-testkit", "config":{ "projects":{ "exclude":[ @@ -31181,16 +37072,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.2.2\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "snowplow/iglu-scala-core":{ - "project":"snowplow/iglu-scala-core", - "repoUrl":"https://github.com/snowplow/iglu-scala-core.git", - "revision":"1.1.3", - "version":"1.1.3", - "targets":"com.snowplowanalytics%iglu-core com.snowplowanalytics%iglu-core-circe", + "smootoo/tablediff":{ + "project":"smootoo/tablediff", + "repoUrl":"https://github.com/smootoo/tablediff.git", + "revision":"", + "version":"1.1", + "targets":"org.suecarter%tablediff", "config":{ "projects":{ "exclude":[ @@ -31201,7 +37096,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -31218,20 +37113,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/BuildSettings.scala", - "pattern":"val scala3 = \"3.2.0\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "snowplow/snowplow-scala-analytics-sdk":{ - "project":"snowplow/snowplow-scala-analytics-sdk", - "repoUrl":"https://github.com/snowplow/snowplow-scala-analytics-sdk.git", - "revision":"3.1.0", - "version":"3.1.0", - "targets":"com.snowplowanalytics%snowplow-scala-analytics-sdk", + "snowplow/iglu-scala-core":{ + "project":"snowplow/iglu-scala-core", + "repoUrl":"https://github.com/snowplow/iglu-scala-core.git", + "revision":"1.1.3", + "version":"1.1.3", + "targets":"com.snowplowanalytics%iglu-core com.snowplowanalytics%iglu-core-circe", "config":{ "projects":{ "exclude":[ @@ -31259,16 +37150,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/BuildSettings.scala", + "pattern":"val scala3 = \"3.2.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "softwaremill/diffx":{ - "project":"softwaremill/diffx", - "repoUrl":"https://github.com/softwaremill/diffx.git", - "revision":"v0.8.3", - "version":"0.8.3", - "targets":"com.softwaremill.diffx%diffx-cats com.softwaremill.diffx%diffx-scalatest-should com.softwaremill.diffx%diffx-scalatest-must com.softwaremill.diffx%diffx-scalatest com.softwaremill.diffx%diffx-tagging com.softwaremill.diffx%diffx-munit com.softwaremill.diffx%diffx-refined com.softwaremill.diffx%diffx-utest com.softwaremill.diffx%diffx-core", + "snowplow/snowplow-scala-analytics-sdk":{ + "project":"snowplow/snowplow-scala-analytics-sdk", + "repoUrl":"https://github.com/snowplow/snowplow-scala-analytics-sdk.git", + "revision":"3.1.0", + "version":"3.1.0", + "targets":"com.snowplowanalytics%snowplow-scala-analytics-sdk", "config":{ "projects":{ "exclude":[ @@ -31279,7 +37174,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -31296,20 +37191,16 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.3\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "softwaremill/macwire":{ - "project":"softwaremill/macwire", - "repoUrl":"https://github.com/softwaremill/macwire.git", - "revision":"v2.5.8", - "version":"2.5.8", - "targets":"com.softwaremill.macwire%macros com.softwaremill.macwire%proxy com.softwaremill.macwire%util", + "softwaremill/akka-http-session":{ + "project":"softwaremill/akka-http-session", + "repoUrl":"https://github.com/softwaremill/akka-http-session.git", + "revision":"v0.7.1", + "version":"0.7.1", + "targets":"com.softwaremill.pekko-http-session%core com.softwaremill.pekko-http-session%jwt", "config":{ "projects":{ "exclude":[ @@ -31320,11 +37211,12 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -31339,18 +37231,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.0.2\"", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "softwaremill/magnolia":{ - "project":"softwaremill/magnolia", - "repoUrl":"https://github.com/softwaremill/magnolia.git", - "revision":"scala3-v1.3.0", - "version":"1.3.0", - "targets":"com.softwaremill.magnolia1_3%magnolia", + "softwaremill/diffx":{ + "project":"softwaremill/diffx", + "repoUrl":"https://github.com/softwaremill/diffx.git", + "revision":"v0.9.0", + "version":"0.9.0", + "targets":"com.softwaremill.diffx%diffx-cats com.softwaremill.diffx%diffx-scalatest-should com.softwaremill.diffx%diffx-weaver com.softwaremill.diffx%diffx-scalatest-must com.softwaremill.diffx%diffx-scalatest com.softwaremill.diffx%diffx-tagging com.softwaremill.diffx%diffx-munit com.softwaremill.diffx%diffx-refined com.softwaremill.diffx%diffx-utest com.softwaremill.diffx%diffx-core", "config":{ "projects":{ "exclude":[ @@ -31386,6 +37278,88 @@ ] } }, + "softwaremill/macwire":{ + "project":"softwaremill/macwire", + "repoUrl":"https://github.com/softwaremill/macwire.git", + "revision":"v2.5.9", + "version":"2.5.9", + "targets":"com.softwaremill.macwire%macros com.softwaremill.macwire%proxy com.softwaremill.macwire%util", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.0.2\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "softwaremill/magnolia":{ + "project":"softwaremill/magnolia", + "repoUrl":"https://github.com/softwaremill/magnolia.git", + "revision":"scala3-v1.3.4", + "version":"1.3.4", + "targets":"com.softwaremill.magnolia1_3%magnolia", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, "softwaremill/odelay":{ "project":"softwaremill/odelay", "repoUrl":"https://github.com/softwaremill/odelay.git", @@ -31430,9 +37404,9 @@ "softwaremill/ox":{ "project":"softwaremill/ox", "repoUrl":"https://github.com/softwaremill/ox.git", - "revision":"v0.0.6", - "version":"0.0.6", - "targets":"com.softwaremill.ox%core com.softwaremill.ox%examples", + "revision":"v0.0.14", + "version":"0.0.14", + "targets":"com.softwaremill.ox%core com.softwaremill.ox%examples com.softwaremill.ox%kafka", "config":{ "projects":{ "exclude":[ @@ -31467,8 +37441,8 @@ "softwaremill/quicklens":{ "project":"softwaremill/quicklens", "repoUrl":"https://github.com/softwaremill/quicklens.git", - "revision":"v1.9.4", - "version":"1.9.4", + "revision":"v1.9.6", + "version":"1.9.6", "targets":"com.softwaremill.quicklens%quicklens", "config":{ "projects":{ @@ -31499,7 +37473,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] @@ -31545,7 +37519,7 @@ "softwaremill/scala-common":{ "project":"softwaremill/scala-common", "repoUrl":"https://github.com/softwaremill/scala-common.git", - "revision":"96c7308003e26a55cd176ec4be34416044be411a", + "revision":"", "version":"2.3.4", "targets":"com.softwaremill.common%tagging", "config":{ @@ -31577,7 +37551,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", + "pattern":"val scala3 = \"3.3.1\"", "replaceWith":"val scala3 = \"\"" } ] @@ -31627,9 +37601,9 @@ "softwaremill/sttp":{ "project":"softwaremill/sttp", "repoUrl":"https://github.com/softwaremill/sttp.git", - "revision":"v3.8.15", - "version":"3.8.15", - "targets":"com.softwaremill.sttp.client3%opentelemetry-tracing-zio1-backend com.softwaremill.sttp.client3%armeria-backend com.softwaremill.sttp.client3%async-http-client-backend-cats-ce2 com.softwaremill.sttp.client3%jsoniter com.softwaremill.sttp.client3%async-http-client-backend-fs2 com.softwaremill.sttp.client3%armeria-backend-monix com.softwaremill.sttp.client3%okhttp-backend-monix com.softwaremill.sttp.client3%zio com.softwaremill.sttp.client3%async-http-client-backend-zio1 com.softwaremill.sttp.client3%async-http-client-backend-future com.softwaremill.sttp.client3%async-http-client-backend-zio com.softwaremill.sttp.client3%slf4j-backend com.softwaremill.sttp.client3%fs2ce2 com.softwaremill.sttp.client3%async-http-client-backend-cats com.softwaremill.sttp.client3%async-http-client-backend com.softwaremill.sttp.client3%fs2 com.softwaremill.sttp.client3%okhttp-backend com.softwaremill.sttp.client3%prometheus-backend com.softwaremill.sttp.client3%zio-json com.softwaremill.sttp.client3%armeria-backend-cats com.softwaremill.sttp.client3%scribe-backend com.softwaremill.sttp.client3%opentelemetry-metrics-backend com.softwaremill.sttp.client3%upickle com.softwaremill.sttp.client3%armeria-backend-zio1 com.softwaremill.sttp.client3%async-http-client-backend-fs2-ce2 com.softwaremill.sttp.client3%catsce2 com.softwaremill.sttp.client3%circe com.softwaremill.sttp.client3%monix com.softwaremill.sttp.client3%zio1-json com.softwaremill.sttp.client3%zio1 com.softwaremill.sttp.client3%json-common com.softwaremill.sttp.client3%core com.softwaremill.sttp.client3%cats com.softwaremill.sttp.client3%opentelemetry-tracing-zio-backend com.softwaremill.sttp.client3%armeria-backend-zio com.softwaremill.sttp.client3%async-http-client-backend-monix com.softwaremill.sttp.client3%http4s-backend", + "revision":"v3.9.0", + "version":"3.9.0", + "targets":"com.softwaremill.sttp.client3%armeria-backend com.softwaremill.sttp.client3%async-http-client-backend-cats-ce2 com.softwaremill.sttp.client3%jsoniter com.softwaremill.sttp.client3%async-http-client-backend-fs2 com.softwaremill.sttp.client3%armeria-backend-monix com.softwaremill.sttp.client3%okhttp-backend-monix com.softwaremill.sttp.client3%zio com.softwaremill.sttp.client3%async-http-client-backend-zio1 com.softwaremill.sttp.client3%async-http-client-backend-future com.softwaremill.sttp.client3%async-http-client-backend-zio com.softwaremill.sttp.client3%slf4j-backend com.softwaremill.sttp.client3%pekko-http-backend com.softwaremill.sttp.client3%fs2ce2 com.softwaremill.sttp.client3%async-http-client-backend-cats com.softwaremill.sttp.client3%async-http-client-backend com.softwaremill.sttp.client3%fs2 com.softwaremill.sttp.client3%okhttp-backend com.softwaremill.sttp.client3%prometheus-backend com.softwaremill.sttp.client3%zio-json com.softwaremill.sttp.client3%armeria-backend-cats com.softwaremill.sttp.client3%scribe-backend com.softwaremill.sttp.client3%opentelemetry-metrics-backend com.softwaremill.sttp.client3%upickle com.softwaremill.sttp.client3%armeria-backend-zio1 com.softwaremill.sttp.client3%async-http-client-backend-fs2-ce2 com.softwaremill.sttp.client3%catsce2 com.softwaremill.sttp.client3%circe com.softwaremill.sttp.client3%monix com.softwaremill.sttp.client3%zio1-json com.softwaremill.sttp.client3%zio1 com.softwaremill.sttp.client3%json-common com.softwaremill.sttp.client3%core com.softwaremill.sttp.client3%cats com.softwaremill.sttp.client3%opentelemetry-tracing-zio-backend com.softwaremill.sttp.client3%armeria-backend-zio com.softwaremill.sttp.client3%async-http-client-backend-monix com.softwaremill.sttp.client3%http4s-backend", "config":{ "projects":{ "exclude":[ @@ -31659,7 +37633,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = List(\"3.2.2\")", + "pattern":"val scala3 = List(\"3.3.0\")", "replaceWith":"val scala3 = List(\"\")" } ] @@ -31668,8 +37642,8 @@ "softwaremill/sttp-apispec":{ "project":"softwaremill/sttp-apispec", "repoUrl":"https://github.com/softwaremill/sttp-apispec.git", - "revision":"v0.3.2", - "version":"0.3.2", + "revision":"v0.7.1", + "version":"0.7.1", "targets":"com.softwaremill.sttp.apispec%jsonschema-circe com.softwaremill.sttp.apispec%asyncapi-model com.softwaremill.sttp.apispec%openapi-model com.softwaremill.sttp.apispec%apispec-model com.softwaremill.sttp.apispec%openapi-circe-yaml com.softwaremill.sttp.apispec%asyncapi-circe-yaml com.softwaremill.sttp.apispec%asyncapi-circe com.softwaremill.sttp.apispec%openapi-circe", "config":{ "projects":{ @@ -31700,7 +37674,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.1\"", + "pattern":"val scala3 = \"3.3.1\"", "replaceWith":"val scala3 = \"\"" } ] @@ -31709,8 +37683,8 @@ "softwaremill/sttp-model":{ "project":"softwaremill/sttp-model", "repoUrl":"https://github.com/softwaremill/sttp-model.git", - "revision":"v1.5.5", - "version":"1.5.5", + "revision":"v1.7.6", + "version":"1.7.6", "targets":"com.softwaremill.sttp.model%core", "config":{ "projects":{ @@ -31741,7 +37715,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = List(\"3.2.2\")", + "pattern":"val scala3 = List(\"3.3.1\")", "replaceWith":"val scala3 = List(\"\")" } ] @@ -31750,8 +37724,8 @@ "softwaremill/sttp-openai":{ "project":"softwaremill/sttp-openai", "repoUrl":"https://github.com/softwaremill/sttp-openai.git", - "revision":"v0.0.6", - "version":"0.0.6", + "revision":"v0.0.7", + "version":"0.0.7", "targets":"com.softwaremill.sttp.openai%core", "config":{ "projects":{ @@ -31782,7 +37756,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = List(\"3.2.2\")", + "pattern":"val scala3 = List(\"3.3.0\")", "replaceWith":"val scala3 = List(\"\")" } ] @@ -31791,9 +37765,9 @@ "softwaremill/sttp-shared":{ "project":"softwaremill/sttp-shared", "repoUrl":"https://github.com/softwaremill/sttp-shared.git", - "revision":"v1.3.14", - "version":"1.3.14", - "targets":"com.softwaremill.sttp.shared%fs2-ce2 com.softwaremill.sttp.shared%fs2 com.softwaremill.sttp.shared%akka com.softwaremill.sttp.shared%vertx com.softwaremill.sttp.shared%monix com.softwaremill.sttp.shared%zio1 com.softwaremill.sttp.shared%core com.softwaremill.sttp.shared%ws com.softwaremill.sttp.shared%armeria com.softwaremill.sttp.shared%zio", + "revision":"v1.3.16", + "version":"1.3.16", + "targets":"com.softwaremill.sttp.shared%fs2-ce2 com.softwaremill.sttp.shared%fs2 com.softwaremill.sttp.shared%akka com.softwaremill.sttp.shared%vertx com.softwaremill.sttp.shared%monix com.softwaremill.sttp.shared%pekko com.softwaremill.sttp.shared%zio1 com.softwaremill.sttp.shared%core com.softwaremill.sttp.shared%ws com.softwaremill.sttp.shared%armeria com.softwaremill.sttp.shared%zio", "config":{ "projects":{ "exclude":[ @@ -31823,7 +37797,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = List(\"3.2.2\")", + "pattern":"val scala3 = List(\"3.3.0\")", "replaceWith":"val scala3 = List(\"\")" } ] @@ -31832,9 +37806,9 @@ "softwaremill/tapir":{ "project":"softwaremill/tapir", "repoUrl":"https://github.com/softwaremill/tapir.git", - "revision":"v1.4.0", - "version":"1.4.0", - "targets":"com.softwaremill.sttp.tapir%tapir-http4s-server-zio1 com.softwaremill.sttp.tapir%tapir-sttp-client com.softwaremill.sttp.tapir%tapir-redoc com.softwaremill.sttp.tapir%tapir-json-circe com.softwaremill.sttp.tapir%tapir-jsoniter-scala com.softwaremill.sttp.tapir%tapir-swagger-ui-bundle com.softwaremill.sttp.tapir%tapir-redoc-bundle com.softwaremill.sttp.tapir%tapir-aws-cdk com.softwaremill.sttp.tapir%tapir-cats com.softwaremill.sttp.tapir%tapir-http4s-client com.softwaremill.sttp.tapir%tapir-refined com.softwaremill.sttp.tapir%tapir-aws-sam com.softwaremill.sttp.tapir%tapir-armeria-server-zio com.softwaremill.sttp.tapir%tapir-asyncapi-docs com.softwaremill.sttp.tapir%tapir-vertx-server-cats com.softwaremill.sttp.tapir%tapir-swagger-ui com.softwaremill.sttp.tapir%tapir-json-zio1 com.softwaremill.sttp.tapir%tapir-json-upickle com.softwaremill.sttp.tapir%tapir-netty-server com.softwaremill.sttp.tapir%tapir-armeria-server-zio1 com.softwaremill.sttp.tapir%tapir-server com.softwaremill.sttp.tapir%tapir-vertx-server com.softwaremill.sttp.tapir%tapir-http4s-server com.softwaremill.sttp.tapir%tapir-datadog-metrics com.softwaremill.sttp.tapir%tapir-zio1-http-server com.softwaremill.sttp.tapir%tapir-armeria-server-cats com.softwaremill.sttp.tapir%tapir-netty-server-cats com.softwaremill.sttp.tapir%tapir-netty-server-zio1 com.softwaremill.sttp.tapir%tapir-zio-prelude com.softwaremill.sttp.tapir%tapir-aws-lambda com.softwaremill.sttp.tapir%tapir-zio1 com.softwaremill.sttp.tapir%tapir-json-spray com.softwaremill.sttp.tapir%tapir-files com.softwaremill.sttp.tapir%tapir-vertx-server-zio com.softwaremill.sttp.tapir%tapir-zio-metrics com.softwaremill.sttp.tapir%tapir-core com.softwaremill.sttp.tapir%tapir-zio com.softwaremill.sttp.tapir%tapir-http4s-server-zio com.softwaremill.sttp.tapir%tapir-armeria-server com.softwaremill.sttp.tapir%tapir-prometheus-metrics com.softwaremill.sttp.tapir%tapir-zio-http-server com.softwaremill.sttp.tapir%tapir-enumeratum com.softwaremill.sttp.tapir%tapir-opentelemetry-metrics com.softwaremill.sttp.tapir%tapir-cats-effect com.softwaremill.sttp.tapir%tapir-server-tests com.softwaremill.sttp.tapir%tapir-vertx-server-zio1 com.softwaremill.sttp.tapir%tapir-openapi-docs com.softwaremill.sttp.tapir%tapir-apispec-docs com.softwaremill.sttp.tapir%tapir-netty-server-zio com.softwaremill.sttp.tapir%tapir-testing com.softwaremill.sttp.tapir%tapir-monix-newtype com.softwaremill.sttp.tapir%tapir-sttp-stub-server com.softwaremill.sttp.tapir%tapir-json-zio com.softwaremill.sttp.tapir%tapir-tests com.softwaremill.sttp.tapir%tapir-sttp-client-ws-zio1 com.softwaremill.sttp.tapir%tapir-client", + "revision":"v1.8.5", + "version":"1.8.5", + "targets":"com.softwaremill.sttp.tapir%tapir-http4s-server-zio1 com.softwaremill.sttp.tapir%tapir-sttp-client com.softwaremill.sttp.tapir%tapir-redoc com.softwaremill.sttp.tapir%tapir-json-circe com.softwaremill.sttp.tapir%tapir-jsoniter-scala com.softwaremill.sttp.tapir%tapir-swagger-ui-bundle com.softwaremill.sttp.tapir%tapir-redoc-bundle com.softwaremill.sttp.tapir%tapir-aws-cdk com.softwaremill.sttp.tapir%tapir-cats com.softwaremill.sttp.tapir%tapir-http4s-client com.softwaremill.sttp.tapir%tapir-refined com.softwaremill.sttp.tapir%tapir-play-server com.softwaremill.sttp.tapir%tapir-aws-lambda-core com.softwaremill.sttp.tapir%tapir-jdkhttp-server com.softwaremill.sttp.tapir%tapir-json-pickler com.softwaremill.sttp.tapir%tapir-aws-sam com.softwaremill.sttp.tapir%tapir-armeria-server-zio com.softwaremill.sttp.tapir%tapir-pekko-grpc-server com.softwaremill.sttp.tapir%tapir-asyncapi-docs com.softwaremill.sttp.tapir%tapir-vertx-server-cats com.softwaremill.sttp.tapir%tapir-swagger-ui com.softwaremill.sttp.tapir%tapir-aws-lambda-zio com.softwaremill.sttp.tapir%tapir-json-play com.softwaremill.sttp.tapir%tapir-json-zio1 com.softwaremill.sttp.tapir%tapir-json-upickle com.softwaremill.sttp.tapir%tapir-netty-server com.softwaremill.sttp.tapir%tapir-armeria-server-zio1 com.softwaremill.sttp.tapir%tapir-server com.softwaremill.sttp.tapir%tapir-vertx-server com.softwaremill.sttp.tapir%tapir-http4s-server com.softwaremill.sttp.tapir%tapir-datadog-metrics com.softwaremill.sttp.tapir%tapir-zio1-http-server com.softwaremill.sttp.tapir%tapir-armeria-server-cats com.softwaremill.sttp.tapir%tapir-netty-server-cats com.softwaremill.sttp.tapir%tapir-zio-prelude com.softwaremill.sttp.tapir%tapir-aws-lambda com.softwaremill.sttp.tapir%tapir-zio1 com.softwaremill.sttp.tapir%tapir-json-spray com.softwaremill.sttp.tapir%tapir-files com.softwaremill.sttp.tapir%tapir-vertx-server-zio com.softwaremill.sttp.tapir%tapir-zio-metrics com.softwaremill.sttp.tapir%tapir-core com.softwaremill.sttp.tapir%tapir-zio com.softwaremill.sttp.tapir%tapir-play-client com.softwaremill.sttp.tapir%tapir-http4s-server-zio com.softwaremill.sttp.tapir%tapir-armeria-server com.softwaremill.sttp.tapir%tapir-pekko-http-server com.softwaremill.sttp.tapir%tapir-prometheus-metrics com.softwaremill.sttp.tapir%tapir-zio-http-server com.softwaremill.sttp.tapir%tapir-iron com.softwaremill.sttp.tapir%tapir-enumeratum com.softwaremill.sttp.tapir%tapir-opentelemetry-metrics com.softwaremill.sttp.tapir%tapir-cats-effect com.softwaremill.sttp.tapir%tapir-server-tests com.softwaremill.sttp.tapir%tapir-vertx-server-zio1 com.softwaremill.sttp.tapir%tapir-openapi-docs com.softwaremill.sttp.tapir%tapir-apispec-docs com.softwaremill.sttp.tapir%tapir-netty-server-zio com.softwaremill.sttp.tapir%tapir-testing com.softwaremill.sttp.tapir%tapir-monix-newtype com.softwaremill.sttp.tapir%tapir-sttp-stub-server com.softwaremill.sttp.tapir%tapir-json-zio com.softwaremill.sttp.tapir%tapir-tests com.softwaremill.sttp.tapir%tapir-sttp-client-ws-zio1 com.softwaremill.sttp.tapir%tapir-client", "config":{ "projects":{ "exclude":[ @@ -31878,7 +37852,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", + "pattern":"val scala3 = \"3.3.1\"", "replaceWith":"val scala3 = \"\"" } ] @@ -31887,8 +37861,8 @@ "softwaremill/tapir-loom":{ "project":"softwaremill/tapir-loom", "repoUrl":"https://github.com/softwaremill/tapir-loom.git", - "revision":"v0.1.1", - "version":"0.1.1", + "revision":"v0.2.5", + "version":"0.2.5", "targets":"com.softwaremill.sttp.tapir%tapir-netty-server-id com.softwaremill.sttp.tapir%tapir-nima-server", "config":{ "projects":{ @@ -31919,7 +37893,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = List(\"3.2.0\")", + "pattern":"val scala3 = List(\"3.3.1\")", "replaceWith":"val scala3 = List(\"\")" } ] @@ -31962,6 +37936,47 @@ ] } }, + "spilne/spilne":{ + "project":"spilne/spilne", + "repoUrl":"https://github.com/spilne/spilne.git", + "revision":"v0.2.0", + "version":"0.2.0", + "targets":"io.github.spilne%fs2-contrib-batcher io.github.spilne%redis4cats-contrib-core io.github.spilne%tapir-contrib-log4cats io.github.spilne%tapir-contrib-server", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.3.0\"", + "replaceWith":"val Scala3 = \"\"" + } + ] + } + }, "spotify/featran":{ "project":"spotify/featran", "repoUrl":"https://github.com/spotify/featran.git", @@ -32010,11 +38025,52 @@ "version":"1.3.6", "targets":"io.spray%spray-json" }, + "sqids/sqids-scala":{ + "project":"sqids/sqids-scala", + "repoUrl":"https://github.com/sqids/sqids-scala.git", + "revision":"v0.5.0", + "version":"0.5.0", + "targets":"org.sqids%sqids", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, "squeryl/squeryl":{ "project":"squeryl/squeryl", "repoUrl":"https://github.com/squeryl/squeryl.git", - "revision":"v0.10.0-RC2", - "version":"0.10.0-RC2", + "revision":"v0.10.0", + "version":"0.10.0", "targets":"org.squeryl%squeryl org.squeryl%macros" }, "ssanj/delight":{ @@ -32105,8 +38161,8 @@ "stryker-mutator/stryker4s":{ "project":"stryker-mutator/stryker4s", "repoUrl":"https://github.com/stryker-mutator/stryker4s.git", - "revision":"v0.14.3", - "version":"0.14.3", + "revision":"v0.15.0", + "version":"0.15.0", "targets":"io.stryker-mutator%sbt-stryker4s-testrunner io.stryker-mutator%stryker4s-api", "config":{ "projects":{ @@ -32137,7 +38193,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.1.0\"", + "pattern":"val scala3 = \"3.3.1\"", "replaceWith":"val scala3 = \"\"" } ] @@ -32146,8 +38202,8 @@ "stryker-mutator/weapon-regex":{ "project":"stryker-mutator/weapon-regex", "repoUrl":"https://github.com/stryker-mutator/weapon-regex.git", - "revision":"v1.1.0", - "version":"1.1.0", + "revision":"v1.1.1", + "version":"1.1.1", "targets":"io.stryker-mutator%weapon-regex io.stryker-mutator%docs", "config":{ "projects":{ @@ -32178,7 +38234,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", + "pattern":"val Scala3 = \"3.3.0\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -32268,8 +38324,8 @@ "svroonland/rezilience":{ "project":"svroonland/rezilience", "repoUrl":"https://github.com/svroonland/rezilience.git", - "revision":"v0.9.3", - "version":"0.9.3", + "revision":"v0.9.4", + "version":"0.9.4", "targets":"nl.vroste%rezilience nl.vroste%rezilience-config", "config":{ "projects":{ @@ -32300,17 +38356,58 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", + "pattern":"val scala3Version = \"3.3.0\"", "replaceWith":"val scala3Version = \"\"" } ] } }, + "svroonland/zio-amqp":{ + "project":"svroonland/zio-amqp", + "repoUrl":"https://github.com/svroonland/zio-amqp.git", + "revision":"v0.5.0", + "version":"0.5.0", + "targets":"nl.vroste%zio-amqp", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"compile-only", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, "svroonland/zio-kinesis":{ "project":"svroonland/zio-kinesis", "repoUrl":"https://github.com/svroonland/zio-kinesis.git", - "revision":"v0.30.1", - "version":"0.30.1", + "revision":"v0.32.0", + "version":"0.32.0", "targets":"nl.vroste%zio-kinesis nl.vroste%root nl.vroste%zio-kinesis-dynamic-consumer nl.vroste%zio-kinesis-future", "config":{ "projects":{ @@ -32346,8 +38443,8 @@ "swagger-akka-http/swagger-enumeratum-module":{ "project":"swagger-akka-http/swagger-enumeratum-module", "repoUrl":"https://github.com/swagger-akka-http/swagger-enumeratum-module.git", - "revision":"v2.6.2", - "version":"2.6.2", + "revision":"v2.8.0", + "version":"2.8.0", "targets":"com.github.swagger-akka-http%swagger-enumeratum-module", "config":{ "projects":{ @@ -32380,11 +38477,48 @@ ] } }, + "swagger-akka-http/swagger-pekko-http":{ + "project":"swagger-akka-http/swagger-pekko-http", + "repoUrl":"https://github.com/swagger-akka-http/swagger-pekko-http.git", + "revision":"v2.11.0", + "version":"2.11.0", + "targets":"com.github.swagger-akka-http%swagger-pekko-http", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, "swagger-akka-http/swagger-scala-module":{ "project":"swagger-akka-http/swagger-scala-module", "repoUrl":"https://github.com/swagger-akka-http/swagger-scala-module.git", - "revision":"v2.9.1", - "version":"2.9.1", + "revision":"v2.11.0", + "version":"2.11.0", "targets":"com.github.swagger-akka-http%swagger-scala-module", "config":{ "projects":{ @@ -32420,8 +38554,8 @@ "swagger-akka-http/swagger-scala3-enum-module":{ "project":"swagger-akka-http/swagger-scala3-enum-module", "repoUrl":"https://github.com/swagger-akka-http/swagger-scala3-enum-module.git", - "revision":"v2.3.1", - "version":"2.3.1", + "revision":"v2.5.0", + "version":"2.5.0", "targets":"com.github.swagger-akka-http%swagger-scala3-enum-module", "config":{ "projects":{ @@ -32457,8 +38591,8 @@ "swaldman/audiofluidity-rss":{ "project":"swaldman/audiofluidity-rss", "repoUrl":"https://github.com/swaldman/audiofluidity-rss.git", - "revision":"v0.0.2", - "version":"0.0.2", + "revision":"v0.0.3", + "version":"0.0.3", "targets":"com.mchange%audiofluidity-rss" }, "swaldman/failable":{ @@ -32468,6 +38602,20 @@ "version":"0.0.6", "targets":"com.mchange%failable com.mchange%failable-logging" }, + "swaldman/fossilphant":{ + "project":"swaldman/fossilphant", + "repoUrl":"https://github.com/swaldman/fossilphant.git", + "revision":"v0.0.3", + "version":"0.0.3", + "targets":"com.mchange%fossilphant" + }, + "swaldman/mchange-sysadmin-scala":{ + "project":"swaldman/mchange-sysadmin-scala", + "repoUrl":"https://github.com/swaldman/mchange-sysadmin-scala.git", + "revision":"v0.1.2", + "version":"0.1.2", + "targets":"com.mchange%mchange-sysadmin-scala" + }, "swaldman/mlog-scala":{ "project":"swaldman/mlog-scala", "repoUrl":"https://github.com/swaldman/mlog-scala.git", @@ -32475,18 +38623,25 @@ "version":"0.3.14", "targets":"com.mchange%mlog-scala" }, + "swaldman/texttable":{ + "project":"swaldman/texttable", + "repoUrl":"https://github.com/swaldman/texttable.git", + "revision":"v0.0.3", + "version":"0.0.3", + "targets":"com.mchange%texttable" + }, "swaldman/unstatic":{ "project":"swaldman/unstatic", "repoUrl":"https://github.com/swaldman/unstatic.git", - "revision":"v0.0.4", - "version":"0.0.4", + "revision":"v0.2.0", + "version":"0.2.0", "targets":"com.mchange%unstatic" }, "swaldman/untemplate":{ "project":"swaldman/untemplate", "repoUrl":"https://github.com/swaldman/untemplate.git", - "revision":"v0.0.4", - "version":"0.0.4", + "revision":"v0.1.1", + "version":"0.1.1", "targets":"com.mchange%untemplate" }, "sweet-delights/delightful-cron":{ @@ -32618,8 +38773,8 @@ "systemfw/upperbound":{ "project":"systemfw/upperbound", "repoUrl":"https://github.com/systemfw/upperbound.git", - "revision":"v0.4.0", - "version":"0.4.0", + "revision":"v0.5.0", + "version":"0.5.0", "targets":"org.systemfw%upperbound", "config":{ "projects":{ @@ -32803,8 +38958,8 @@ "taig/babel":{ "project":"taig/babel", "repoUrl":"https://github.com/taig/babel.git", - "revision":"0.5.1", - "version":"0.5.1", + "revision":"0.5.2", + "version":"0.5.2", "targets":"io.taig%babel-circe io.taig%babel-cats io.taig%babel-loader io.taig%babel io.taig%babel-generic io.taig%babel-core", "config":{ "projects":{ @@ -32816,7 +38971,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -32835,7 +38990,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.0\"", + "pattern":"val Scala3 = \"3.3.0\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -32844,9 +38999,46 @@ "taig/cloud-sql-proxy":{ "project":"taig/cloud-sql-proxy", "repoUrl":"https://github.com/taig/cloud-sql-proxy.git", - "revision":"0.0.1", - "version":"0.0.1", - "targets":"io.taig%cloud-sql-proxy-core io.taig%cloud-sql-proxy-darwin-amd64 io.taig%cloud-sql-proxy-linux-amd64", + "revision":"0.2.0", + "version":"0.2.0", + "targets":"io.taig%cloud-sql-proxy-core", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "taig/enumeration-ext":{ + "project":"taig/enumeration-ext", + "repoUrl":"https://github.com/taig/enumeration-ext.git", + "revision":"0.0.3", + "version":"0.0.3", + "targets":"io.taig%enumeration-ext-circe io.taig%enumeration-ext-core io.taig%enumeration-ext-skunk", "config":{ "projects":{ "exclude":[ @@ -32881,9 +39073,9 @@ "taig/flog":{ "project":"taig/flog", "repoUrl":"https://github.com/taig/flog.git", - "revision":"0.13.1", - "version":"0.13.1", - "targets":"io.taig%flog-http4s io.taig%flog io.taig%flog-stackdriver-grpc io.taig%flog-http4s-server io.taig%flog-logstash io.taig%flog-stackdriver-http io.taig%flog-http4s-client io.taig%flog-core io.taig%flog-slf4j", + "revision":"0.16.1", + "version":"0.16.1", + "targets":"io.taig%flog-http4s io.taig%flog io.taig%flog-http4s-server io.taig%flog-slf4j-2 io.taig%flog-log4cats io.taig%flog-http4s-client io.taig%flog-core io.taig%flog-slf4j", "config":{ "projects":{ "exclude":[ @@ -32913,7 +39105,48 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.0\"", + "pattern":"val Scala3 = \"3.3.0\"", + "replaceWith":"val Scala3 = \"\"" + } + ] + } + }, + "taig/geojson":{ + "project":"taig/geojson", + "repoUrl":"https://github.com/taig/geojson.git", + "revision":"0.0.1", + "version":"0.0.1", + "targets":"io.taig%geojson io.taig%geojson-circe io.taig%geojson-core", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.3.0\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -33032,18 +39265,218 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.0\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val Scala3 = \"3.1.0\"", + "replaceWith":"val Scala3 = \"\"" + } + ] + } + }, + "taig/skunk-ext":{ + "project":"taig/skunk-ext", + "repoUrl":"https://github.com/taig/skunk-ext.git", + "revision":"0.8.2", + "version":"0.8.2", + "targets":"io.taig%skunk-ext", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "takezoe/scala-jdbc":{ + "project":"takezoe/scala-jdbc", + "repoUrl":"https://github.com/takezoe/scala-jdbc.git", + "revision":"1.0.6", + "version":"1.0.6", + "targets":"com.github.takezoe%scala-jdbc" + }, + "takezoe/solr-scala-client":{ + "project":"takezoe/solr-scala-client", + "repoUrl":"https://github.com/takezoe/solr-scala-client.git", + "revision":"0.0.27", + "version":"0.0.27", + "targets":"com.github.takezoe%solr-scala-client", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"compile-only", + "sourcePatches":[ + + ] + } + }, + "tarao/collection-scala":{ + "project":"tarao/collection-scala", + "repoUrl":"https://github.com/tarao/collection-scala.git", + "revision":"", + "version":"1.0.0", + "targets":"com.github.tarao%collection", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.2.0\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "testcontainers/testcontainers-scala":{ + "project":"testcontainers/testcontainers-scala", + "repoUrl":"https://github.com/testcontainers/testcontainers-scala.git", + "revision":"v0.41.0", + "version":"0.41.0", + "targets":"com.dimafeng%testcontainers-scala-cockroachdb com.dimafeng%testcontainers-scala com.dimafeng%testcontainers-scala-presto com.dimafeng%testcontainers-scala-munit com.dimafeng%testcontainers-scala-db2 com.dimafeng%testcontainers-scala-kafka com.dimafeng%testcontainers-scala-scalatest-selenium com.dimafeng%testcontainers-scala-pulsar com.dimafeng%testcontainers-scala-elasticsearch com.dimafeng%testcontainers-scala-nginx com.dimafeng%testcontainers-scala-mariadb com.dimafeng%testcontainers-scala-solr com.dimafeng%testcontainers-scala-gcloud com.dimafeng%testcontainers-scala-toxiproxy com.dimafeng%testcontainers-scala-vault com.dimafeng%testcontainers-scala-rabbitmq com.dimafeng%testcontainers-scala-influxdb com.dimafeng%testcontainers-scala-postgresql com.dimafeng%testcontainers-scala-localstack com.dimafeng%testcontainers-scala-dynalite com.dimafeng%testcontainers-scala-neo4j com.dimafeng%testcontainers-scala-localstack-v2 com.dimafeng%testcontainers-scala-clickhouse com.dimafeng%testcontainers-scala-couchbase com.dimafeng%testcontainers-scala-mysql com.dimafeng%testcontainers-scala-oracle-xe com.dimafeng%testcontainers-scala-scalatest com.dimafeng%testcontainers-scala-mongodb com.dimafeng%testcontainers-scala-mockserver com.dimafeng%testcontainers-scala-orientdb com.dimafeng%testcontainers-scala-core com.dimafeng%testcontainers-scala-redpanda com.dimafeng%testcontainers-scala-cassandra com.dimafeng%testcontainers-scala-mssqlserver com.dimafeng%testcontainers-scala-trino com.dimafeng%testcontainers-scala-jdbc", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"compile-only", + "sourcePatches":[ + + ] + } + }, + "tethys-json/tethys":{ + "project":"tethys-json/tethys", + "repoUrl":"https://github.com/tethys-json/tethys.git", + "revision":"", + "version":"0.28.0", + "targets":"com.tethys-json%tethys-json4s com.tethys-json%tethys-derivation com.tethys-json%tethys com.tethys-json%tethys-core com.tethys-json%tethys-enumeratum com.tethys-json%tethys-jackson212 com.tethys-json%tethys-jackson213 com.tethys-json%tethys-refined com.tethys-json%tethys-circe com.tethys-json%tethys-jackson211", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1-RC1-bin-20230318-7226ba6-NIGHTLY\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "taig/skunk-ext":{ - "project":"taig/skunk-ext", - "repoUrl":"https://github.com/taig/skunk-ext.git", - "revision":"0.4.2", - "version":"0.4.2", - "targets":"io.taig%skunk-ext", + "tharwaninitin/cache4s":{ + "project":"tharwaninitin/cache4s", + "repoUrl":"https://github.com/tharwaninitin/cache4s.git", + "revision":"", + "version":"0.1.0", + "targets":"com.github.tharwaninitin%cache4s", "config":{ "projects":{ "exclude":[ @@ -33054,7 +39487,7 @@ } }, "java":{ - "version":"17" + }, "sbt":{ "commands":[ @@ -33071,23 +39504,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"project/Versions.scala", + "pattern":"val scala3 = \"3.1.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "takezoe/scala-jdbc":{ - "project":"takezoe/scala-jdbc", - "repoUrl":"https://github.com/takezoe/scala-jdbc.git", - "revision":"1.0.6", - "version":"1.0.6", - "targets":"com.github.takezoe%scala-jdbc" - }, - "takezoe/solr-scala-client":{ - "project":"takezoe/solr-scala-client", - "repoUrl":"https://github.com/takezoe/solr-scala-client.git", - "revision":"0.0.27", - "version":"0.0.27", - "targets":"com.github.takezoe%solr-scala-client", + "tharwaninitin/cron4zio":{ + "project":"tharwaninitin/cron4zio", + "repoUrl":"https://github.com/tharwaninitin/cron4zio.git", + "revision":"1.0.0", + "version":"1.0.0", + "targets":"com.github.tharwaninitin%cron4zio", "config":{ "projects":{ "exclude":[ @@ -33102,7 +39532,8 @@ }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -33113,18 +39544,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ - + { + "path":"project/Versions.scala", + "pattern":"val scala3 = \"3.2.1\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "tarao/collection-scala":{ - "project":"tarao/collection-scala", - "repoUrl":"https://github.com/tarao/collection-scala.git", - "revision":"37d1b00a5822a5712163d7bcad6c8963620a3bd7", - "version":"1.0.0", - "targets":"com.github.tarao%collection", + "tharwaninitin/crypto4s":{ + "project":"tharwaninitin/crypto4s", + "repoUrl":"https://github.com/tharwaninitin/crypto4s.git", + "revision":"", + "version":"0.2.0", + "targets":"com.github.tharwaninitin%crypto4s", "config":{ "projects":{ "exclude":[ @@ -33135,7 +39570,7 @@ } }, "java":{ - "version":"8" + }, "sbt":{ "commands":[ @@ -33153,19 +39588,19 @@ "tests":"full", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.0\"", + "path":"project/Versions.scala", + "pattern":"val scala3 = \"3.1.0\"", "replaceWith":"val scala3 = \"\"" } ] } }, - "testcontainers/testcontainers-scala":{ - "project":"testcontainers/testcontainers-scala", - "repoUrl":"https://github.com/testcontainers/testcontainers-scala.git", - "revision":"v0.40.15", - "version":"0.40.15", - "targets":"com.dimafeng%testcontainers-scala-cockroachdb com.dimafeng%testcontainers-scala com.dimafeng%testcontainers-scala-presto com.dimafeng%testcontainers-scala-munit com.dimafeng%testcontainers-scala-db2 com.dimafeng%testcontainers-scala-kafka com.dimafeng%testcontainers-scala-scalatest-selenium com.dimafeng%testcontainers-scala-pulsar com.dimafeng%testcontainers-scala-elasticsearch com.dimafeng%testcontainers-scala-nginx com.dimafeng%testcontainers-scala-mariadb com.dimafeng%testcontainers-scala-solr com.dimafeng%testcontainers-scala-gcloud com.dimafeng%testcontainers-scala-toxiproxy com.dimafeng%testcontainers-scala-vault com.dimafeng%testcontainers-scala-rabbitmq com.dimafeng%testcontainers-scala-influxdb com.dimafeng%testcontainers-scala-postgresql com.dimafeng%testcontainers-scala-localstack com.dimafeng%testcontainers-scala-dynalite com.dimafeng%testcontainers-scala-neo4j com.dimafeng%testcontainers-scala-localstack-v2 com.dimafeng%testcontainers-scala-clickhouse com.dimafeng%testcontainers-scala-couchbase com.dimafeng%testcontainers-scala-mysql com.dimafeng%testcontainers-scala-oracle-xe com.dimafeng%testcontainers-scala-scalatest com.dimafeng%testcontainers-scala-mongodb com.dimafeng%testcontainers-scala-mockserver com.dimafeng%testcontainers-scala-orientdb com.dimafeng%testcontainers-scala-core com.dimafeng%testcontainers-scala-redpanda com.dimafeng%testcontainers-scala-cassandra com.dimafeng%testcontainers-scala-mssqlserver com.dimafeng%testcontainers-scala-trino com.dimafeng%testcontainers-scala-jdbc", + "tharwaninitin/etlflow":{ + "project":"tharwaninitin/etlflow", + "repoUrl":"https://github.com/tharwaninitin/etlflow.git", + "revision":"1.7.3", + "version":"1.7.3", + "targets":"com.github.tharwaninitin%etlflow-k8s com.github.tharwaninitin%etlflow-ftp com.github.tharwaninitin%etlflow-aws com.github.tharwaninitin%etlflow-http com.github.tharwaninitin%etlflow-core com.github.tharwaninitin%etlflow-gcp com.github.tharwaninitin%etlflow-jdbc com.github.tharwaninitin%etlflow-email", "config":{ "projects":{ "exclude":[ @@ -33176,11 +39611,12 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -33193,16 +39629,20 @@ }, "tests":"compile-only", "sourcePatches":[ - + { + "path":"project/Versions.scala", + "pattern":"val Scala3 = \"3.3.0\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "tharwaninitin/cache4s":{ - "project":"tharwaninitin/cache4s", - "repoUrl":"https://github.com/tharwaninitin/cache4s.git", - "revision":"bd4e3be03e7913ca4babab6c9a2b2ed70782dd94", - "version":"0.1.0", - "targets":"com.github.tharwaninitin%cache4s", + "tharwaninitin/gcp4zio":{ + "project":"tharwaninitin/gcp4zio", + "repoUrl":"https://github.com/tharwaninitin/gcp4zio.git", + "revision":"1.4.1", + "version":"1.4.1", + "targets":"com.github.tharwaninitin%gcp4zio-monitoring com.github.tharwaninitin%gcp4zio-bq com.github.tharwaninitin%gcp4zio-gcs com.github.tharwaninitin%gcp4zio-pubsub com.github.tharwaninitin%gcp4zio-dp", "config":{ "projects":{ "exclude":[ @@ -33213,11 +39653,12 @@ } }, "java":{ - + "version":"11" }, "sbt":{ "commands":[ - + "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", + "removeScalacOptionsStartingWith -P:wartremover" ], "options":[ @@ -33228,22 +39669,22 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ { "path":"project/Versions.scala", - "pattern":"val scala3 = \"3.1.0\"", - "replaceWith":"val scala3 = \"\"" + "pattern":"val Scala3 = \"3.2.1\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "tharwaninitin/cron4zio":{ - "project":"tharwaninitin/cron4zio", - "repoUrl":"https://github.com/tharwaninitin/cron4zio.git", - "revision":"1.0.0", - "version":"1.0.0", - "targets":"com.github.tharwaninitin%cron4zio", + "thatscalaguy/circe-jq":{ + "project":"thatscalaguy/circe-jq", + "repoUrl":"https://github.com/thatscalaguy/circe-jq.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"de.thatscalaguy%circe-jq", "config":{ "projects":{ "exclude":[ @@ -33254,12 +39695,11 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -33273,19 +39713,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/Versions.scala", - "pattern":"val scala3 = \"3.2.1\"", - "replaceWith":"val scala3 = \"\"" + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.1\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "tharwaninitin/crypto4s":{ - "project":"tharwaninitin/crypto4s", - "repoUrl":"https://github.com/tharwaninitin/crypto4s.git", - "revision":"0c033f5ab4cf981d0f10024f42b317fec86e6244", + "thatscalaguy/nats4cats":{ + "project":"thatscalaguy/nats4cats", + "repoUrl":"https://github.com/thatscalaguy/nats4cats.git", + "revision":"v0.2.0", "version":"0.2.0", - "targets":"com.github.tharwaninitin%crypto4s", + "targets":"de.thatscalaguy%nats4cats de.thatscalaguy%nats4cats-circe de.thatscalaguy%root", "config":{ "projects":{ "exclude":[ @@ -33296,7 +39736,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -33314,19 +39754,19 @@ "tests":"full", "sourcePatches":[ { - "path":"project/Versions.scala", - "pattern":"val scala3 = \"3.1.0\"", - "replaceWith":"val scala3 = \"\"" + "path":"build.sbt", + "pattern":"val Scala3 = \"3.3.0\"", + "replaceWith":"val Scala3 = \"\"" } ] } }, - "tharwaninitin/etlflow":{ - "project":"tharwaninitin/etlflow", - "repoUrl":"https://github.com/tharwaninitin/etlflow.git", - "revision":"1.7.2", - "version":"1.7.2", - "targets":"com.github.tharwaninitin%etlflow-k8s com.github.tharwaninitin%etlflow-aws com.github.tharwaninitin%etlflow-http com.github.tharwaninitin%etlflow-core com.github.tharwaninitin%etlflow-gcp com.github.tharwaninitin%etlflow-jdbc com.github.tharwaninitin%etlflow-email", + "thatscalaguy/ulid4cats":{ + "project":"thatscalaguy/ulid4cats", + "repoUrl":"https://github.com/thatscalaguy/ulid4cats.git", + "revision":"v1.3.3", + "version":"1.3.3", + "targets":"de.thatscalaguy%ulid4cats", "config":{ "projects":{ "exclude":[ @@ -33337,12 +39777,11 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -33353,22 +39792,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ { - "path":"project/Versions.scala", - "pattern":"val Scala3 = \"3.2.1\"", + "path":"build.sbt", + "pattern":"val Scala3 = \"3.3.1\"", "replaceWith":"val Scala3 = \"\"" } ] } }, - "tharwaninitin/gcp4zio":{ - "project":"tharwaninitin/gcp4zio", - "repoUrl":"https://github.com/tharwaninitin/gcp4zio.git", - "revision":"1.4.1", - "version":"1.4.1", - "targets":"com.github.tharwaninitin%gcp4zio-monitoring com.github.tharwaninitin%gcp4zio-bq com.github.tharwaninitin%gcp4zio-gcs com.github.tharwaninitin%gcp4zio-pubsub com.github.tharwaninitin%gcp4zio-dp", + "thedrawingcoder-gamer/swing.io":{ + "project":"thedrawingcoder-gamer/swing.io", + "repoUrl":"https://github.com/thedrawingcoder-gamer/swing.io.git", + "revision":"v0.1.0-M1", + "version":"0.1.0-M1", + "targets":"io.github.thedrawingcoder-gamer%swing-io", "config":{ "projects":{ "exclude":[ @@ -33379,12 +39818,11 @@ } }, "java":{ - "version":"11" + "version":"8" }, "sbt":{ "commands":[ - "excludeLibraryDependency org.wartremover:wartremover_{scalaVersion}", - "removeScalacOptionsStartingWith -P:wartremover" + ], "options":[ @@ -33395,22 +39833,22 @@ ] }, - "tests":"compile-only", + "tests":"full", "sourcePatches":[ { - "path":"project/Versions.scala", - "pattern":"val Scala3 = \"3.2.1\"", - "replaceWith":"val Scala3 = \"\"" + "path":"build.sbt", + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "thatscalaguy/circe-jq":{ - "project":"thatscalaguy/circe-jq", - "repoUrl":"https://github.com/thatscalaguy/circe-jq.git", - "revision":"v0.1.0", - "version":"0.1.0", - "targets":"de.thatscalaguy%circe-jq", + "theiterators/http4s-stir":{ + "project":"theiterators/http4s-stir", + "repoUrl":"https://github.com/theiterators/http4s-stir.git", + "revision":"v0.2", + "version":"0.2", + "targets":"pl.iterators%http4s-stir pl.iterators%http4s-stir-testkit", "config":{ "projects":{ "exclude":[ @@ -33421,7 +39859,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -33440,18 +39878,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.1\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala_3 = \"3.3.0\"", + "replaceWith":"val scala_3 = \"\"" } ] } }, - "thatscalaguy/ulid4cats":{ - "project":"thatscalaguy/ulid4cats", - "repoUrl":"https://github.com/thatscalaguy/ulid4cats.git", - "revision":"v1.3.1", - "version":"1.3.1", - "targets":"de.thatscalaguy%ulid4cats", + "theiterators/kebs":{ + "project":"theiterators/kebs", + "repoUrl":"https://github.com/theiterators/kebs.git", + "revision":"v1.9.6", + "version":"1.9.6", + "targets":"pl.iterators%kebs-scalacheck pl.iterators%kebs-instances pl.iterators%kebs-core pl.iterators%kebs-http4s-stir pl.iterators%kebs-macro-utils pl.iterators%kebs-opaque pl.iterators%kebs-pekko-http pl.iterators%kebs-circe pl.iterators%kebs-doobie pl.iterators%kebs-http4s", "config":{ "projects":{ "exclude":[ @@ -33481,18 +39919,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala_3 = \"3.3.0\"", + "replaceWith":"val scala_3 = \"\"" } ] } }, - "thedrawingcoder-gamer/swing.io":{ - "project":"thedrawingcoder-gamer/swing.io", - "repoUrl":"https://github.com/thedrawingcoder-gamer/swing.io.git", - "revision":"v0.1.0-M1", - "version":"0.1.0-M1", - "targets":"io.github.thedrawingcoder-gamer%swing-io", + "theiterators/sealed-monad":{ + "project":"theiterators/sealed-monad", + "repoUrl":"https://github.com/theiterators/sealed-monad.git", + "revision":"v1.2.0", + "version":"1.2.0", + "targets":"pl.iterators%sealed-monad", "config":{ "projects":{ "exclude":[ @@ -33503,7 +39941,7 @@ } }, "java":{ - "version":"8" + "version":"17" }, "sbt":{ "commands":[ @@ -33520,20 +39958,23 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, - "theiterators/kebs":{ - "project":"theiterators/kebs", - "repoUrl":"https://github.com/theiterators/kebs.git", - "revision":"v1.9.5", - "version":"1.9.5", - "targets":"pl.iterators%kebs-instances pl.iterators%kebs-macro-utils pl.iterators%kebs-opaque pl.iterators%kebs-doobie pl.iterators%kebs-http4s", + "themillhousegroup/scoup":{ + "project":"themillhousegroup/scoup", + "repoUrl":"https://github.com/themillhousegroup/scoup.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"com.themillhousegroup%scoup" + }, + "thoughtworksinc/bindable.scala":{ + "project":"thoughtworksinc/bindable.scala", + "repoUrl":"https://github.com/thoughtworksinc/bindable.scala.git", + "revision":"v3.0.0", + "version":"3.0.0", + "targets":"com.thoughtworks.binding%bindable", "config":{ "projects":{ "exclude":[ @@ -33544,7 +39985,7 @@ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -33565,23 +40006,28 @@ ] } }, - "theiterators/sealed-monad":{ - "project":"theiterators/sealed-monad", - "repoUrl":"https://github.com/theiterators/sealed-monad.git", - "revision":"v1.2.0", - "version":"1.2.0", - "targets":"pl.iterators%sealed-monad", + "thoughtworksinc/binding.scala":{ + "project":"thoughtworksinc/binding.scala", + "repoUrl":"https://github.com/thoughtworksinc/binding.scala.git", + "revision":"v12.2.0", + "version":"12.2.0", + "targets":"com.thoughtworks.binding%binding com.thoughtworks.binding%safebuffer", "config":{ "projects":{ "exclude":[ - + "com.thoughtworks.binding%bindable-bindableseq", + "com.thoughtworks.binding%covariantstreamt", + "com.thoughtworks.binding%defaultfuture", + "com.thoughtworks.binding%keywords-bind", + "com.thoughtworks.binding%patchstreamt", + "com.thoughtworks.binding%streamt" ], "overrides":{ } }, "java":{ - "version":"17" + "version":"11" }, "sbt":{ "commands":[ @@ -33602,19 +40048,12 @@ ] } }, - "themillhousegroup/scoup":{ - "project":"themillhousegroup/scoup", - "repoUrl":"https://github.com/themillhousegroup/scoup.git", - "revision":"v1.0.0", - "version":"1.0.0", - "targets":"com.themillhousegroup%scoup" - }, - "thoughtworksinc/bindable.scala":{ - "project":"thoughtworksinc/bindable.scala", - "repoUrl":"https://github.com/thoughtworksinc/bindable.scala.git", - "revision":"v3.0.0", - "version":"3.0.0", - "targets":"com.thoughtworks.binding%bindable", + "thoughtworksinc/dsl.scala":{ + "project":"thoughtworksinc/dsl.scala", + "repoUrl":"https://github.com/thoughtworksinc/dsl.scala.git", + "revision":"v2.0.0", + "version":"2.0.0", + "targets":"com.thoughtworks.dsl%keywords-shift com.thoughtworks.dsl%keywords-nonesafe com.thoughtworks.dsl%keywords-while com.thoughtworks.dsl%keywords-tryfinally com.thoughtworks.dsl%domains-scalaz com.thoughtworks.dsl%keywords-await com.thoughtworks.dsl%keywords-monadic com.thoughtworks.dsl%keywords-asynchronousio com.thoughtworks.dsl%keywords-flatmap com.thoughtworks.dsl%keywords-return com.thoughtworks.dsl%keywords-trycatch com.thoughtworks.dsl%keywords-using com.thoughtworks.dsl%macros-reset com.thoughtworks.dsl%keywords-suspend com.thoughtworks.dsl%keywords-put com.thoughtworks.dsl%domains-continuation com.thoughtworks.dsl%keywords-yield com.thoughtworks.dsl%keywords-pure com.thoughtworks.dsl%keywords-typed com.thoughtworks.dsl%keywords-match com.thoughtworks.dsl%keywords-fence com.thoughtworks.dsl%keywords-each com.thoughtworks.dsl%domains-task com.thoughtworks.dsl%keywords-trycatchfinally com.thoughtworks.dsl%scala-async com.thoughtworks.dsl%keywords-if com.thoughtworks.dsl%dsl com.thoughtworks.dsl%keywords-get", "config":{ "projects":{ "exclude":[ @@ -33646,54 +40085,12 @@ ] } }, - "thoughtworksinc/binding.scala":{ - "project":"thoughtworksinc/binding.scala", - "repoUrl":"https://github.com/thoughtworksinc/binding.scala.git", - "revision":"v12.2.0", - "version":"12.2.0", - "targets":"com.thoughtworks.binding%binding com.thoughtworks.binding%safebuffer", - "config":{ - "projects":{ - "exclude":[ - "com.thoughtworks.binding%bindable-bindableseq", - "com.thoughtworks.binding%covariantstreamt", - "com.thoughtworks.binding%defaultfuture", - "com.thoughtworks.binding%keywords-bind", - "com.thoughtworks.binding%patchstreamt", - "com.thoughtworks.binding%streamt" - ], - "overrides":{ - - } - }, - "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "thoughtworksinc/dsl.scala":{ - "project":"thoughtworksinc/dsl.scala", - "repoUrl":"https://github.com/thoughtworksinc/dsl.scala.git", - "revision":"v2.0.0", - "version":"2.0.0", - "targets":"com.thoughtworks.dsl%keywords-shift com.thoughtworks.dsl%keywords-nonesafe com.thoughtworks.dsl%keywords-while com.thoughtworks.dsl%keywords-tryfinally com.thoughtworks.dsl%domains-scalaz com.thoughtworks.dsl%keywords-await com.thoughtworks.dsl%keywords-monadic com.thoughtworks.dsl%keywords-asynchronousio com.thoughtworks.dsl%keywords-flatmap com.thoughtworks.dsl%keywords-return com.thoughtworks.dsl%keywords-trycatch com.thoughtworks.dsl%keywords-using com.thoughtworks.dsl%macros-reset com.thoughtworks.dsl%keywords-suspend com.thoughtworks.dsl%keywords-put com.thoughtworks.dsl%domains-continuation com.thoughtworks.dsl%keywords-yield com.thoughtworks.dsl%keywords-pure com.thoughtworks.dsl%keywords-typed com.thoughtworks.dsl%keywords-match com.thoughtworks.dsl%keywords-fence com.thoughtworks.dsl%keywords-each com.thoughtworks.dsl%domains-task com.thoughtworks.dsl%keywords-trycatchfinally com.thoughtworks.dsl%scala-async com.thoughtworks.dsl%keywords-if com.thoughtworks.dsl%dsl com.thoughtworks.dsl%keywords-get", + "thoughtworksinc/tryt.scala":{ + "project":"thoughtworksinc/tryt.scala", + "repoUrl":"https://github.com/thoughtworksinc/tryt.scala.git", + "revision":"v3.0.0", + "version":"3.0.0", + "targets":"com.thoughtworks.tryt%covariant com.thoughtworks.tryt%invariant", "config":{ "projects":{ "exclude":[ @@ -33725,12 +40122,12 @@ ] } }, - "thoughtworksinc/tryt.scala":{ - "project":"thoughtworksinc/tryt.scala", - "repoUrl":"https://github.com/thoughtworksinc/tryt.scala.git", - "revision":"v3.0.0", - "version":"3.0.0", - "targets":"com.thoughtworks.tryt%covariant com.thoughtworks.tryt%invariant", + "throup/couldbe":{ + "project":"throup/couldbe", + "repoUrl":"https://github.com/throup/couldbe.git", + "revision":"v0.2.1", + "version":"0.2.1", + "targets":"eu.throup%couldbe eu.throup%couldbe-cats eu.throup%couldbe-core eu.throup%couldbe-testsupport", "config":{ "projects":{ "exclude":[ @@ -33806,9 +40203,9 @@ "timbertson/backpressure-sensor":{ "project":"timbertson/backpressure-sensor", "repoUrl":"https://github.com/timbertson/backpressure-sensor.git", - "revision":"4d4d42d27a1190aecbd9b79a64e300c306e91252", - "version":"0.5.0", - "targets":"net.gfxmonk%backpressure-sensor-monix net.gfxmonk%backpressure-sensor-fs2-cats2 net.gfxmonk%backpressure-sensor-statsd net.gfxmonk%backpressure-sensor-testkit net.gfxmonk%backpressure-sensor-akka net.gfxmonk%backpressure-sensor-core", + "revision":"version-0.6.1", + "version":"0.6.1", + "targets":"net.gfxmonk%backpressure-sensor-monix net.gfxmonk%backpressure-sensor-pekko net.gfxmonk%backpressure-sensor-fs2-cats2 net.gfxmonk%backpressure-sensor-statsd net.gfxmonk%backpressure-sensor-testkit net.gfxmonk%backpressure-sensor-core", "config":{ "projects":{ "exclude":[ @@ -33838,7 +40235,7 @@ "sourcePatches":[ { "path":"project/src/main/scala/PublishSettings.scala", - "pattern":"val scala3Version = \"3.2.2\"", + "pattern":"val scala3Version = \"3.3.0\"", "replaceWith":"val scala3Version = \"\"" } ] @@ -33925,8 +40322,8 @@ "tinkoff/muffin":{ "project":"tinkoff/muffin", "repoUrl":"https://github.com/tinkoff/muffin.git", - "revision":"v0.2.1", - "version":"0.2.1", + "revision":"v0.3.0", + "version":"0.3.0", "targets":"ru.tinkoff%muffin-circe-json-interop ru.tinkoff%muffin-core ru.tinkoff%muffin-http4s-http-interop ru.tinkoff%muffin-sttp-http-interop ru.tinkoff%muffin-zio-http-interop ru.tinkoff%muffin-zio-json-interop", "config":{ "projects":{ @@ -33969,8 +40366,8 @@ "tkrs/fluflu":{ "project":"tkrs/fluflu", "repoUrl":"https://github.com/tkrs/fluflu.git", - "revision":"v0.24.8", - "version":"0.24.8", + "revision":"v0.24.9", + "version":"0.24.9", "targets":"com.github.tkrs%fluflu-core com.github.tkrs%fluflu-msgpack com.github.tkrs%fluflu-msgpack-mess", "config":{ "projects":{ @@ -34001,7 +40398,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.2.2\"", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] @@ -34010,8 +40407,8 @@ "tkrs/mess":{ "project":"tkrs/mess", "repoUrl":"https://github.com/tkrs/mess.git", - "revision":"v0.3.3", - "version":"0.3.3", + "revision":"v0.3.5", + "version":"0.3.5", "targets":"com.github.tkrs%mess-core", "config":{ "projects":{ @@ -34042,7 +40439,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.2.2\"", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] @@ -34092,8 +40489,8 @@ "tkrs/orcus":{ "project":"tkrs/orcus", "repoUrl":"https://github.com/tkrs/orcus.git", - "revision":"v0.28.1", - "version":"0.28.1", + "revision":"v0.28.4", + "version":"0.28.4", "targets":"com.github.tkrs%orcus-core com.github.tkrs%orcus-bigtable com.github.tkrs%orcus-cats-effect", "config":{ "projects":{ @@ -34124,7 +40521,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.2.2\"", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] @@ -34133,7 +40530,7 @@ "tlsomers/scala-suspendable":{ "project":"tlsomers/scala-suspendable", "repoUrl":"https://github.com/tlsomers/scala-suspendable.git", - "revision":"216c680634ab4d958046605668544d3280326a0f", + "revision":"", "version":"0.1.1", "targets":"com.tomtrein%suspendable" }, @@ -34440,8 +40837,8 @@ "tofu-tf/glass":{ "project":"tofu-tf/glass", "repoUrl":"https://github.com/tofu-tf/glass.git", - "revision":"v0.2.1", - "version":"0.2.1", + "revision":"v0.2.2", + "version":"0.2.2", "targets":"tf.tofu%glass tf.tofu%glass-core tf.tofu%glass-interop tf.tofu%glass-macro", "config":{ "projects":{ @@ -34472,7 +40869,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.2.1\"", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] @@ -34556,6 +40953,43 @@ ] } }, + "toniogela/cross":{ + "project":"toniogela/cross", + "repoUrl":"https://github.com/toniogela/cross.git", + "revision":"v0.0.2", + "version":"0.0.2", + "targets":"dev.toniogela%cross dev.toniogela%cross-unidocs", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, "torrentdam/bencode":{ "project":"torrentdam/bencode", "repoUrl":"https://github.com/torrentdam/bencode.git", @@ -34630,6 +41064,43 @@ ] } }, + "tototoshi/nyanda":{ + "project":"tototoshi/nyanda", + "repoUrl":"https://github.com/tototoshi/nyanda.git", + "revision":"0.1.0", + "version":"0.1.0", + "targets":"com.github.tototoshi%nyanda", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, "tototoshi/scala-csv":{ "project":"tototoshi/scala-csv", "repoUrl":"https://github.com/tototoshi/scala-csv.git", @@ -34640,10 +41111,51 @@ "tototoshi/slick-joda-mapper":{ "project":"tototoshi/slick-joda-mapper", "repoUrl":"https://github.com/tototoshi/slick-joda-mapper.git", - "revision":"2.6.0", - "version":"2.6.0", + "revision":"2.8.0", + "version":"2.8.0", "targets":"com.github.tototoshi%slick-joda-mapper" }, + "tpataky/duckling":{ + "project":"tpataky/duckling", + "repoUrl":"https://github.com/tpataky/duckling.git", + "revision":"", + "version":"0.0.2", + "targets":"io.github.tpataky%duckling", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, "tpolecat/atto":{ "project":"tpolecat/atto", "repoUrl":"https://github.com/tpolecat/atto.git", @@ -34684,9 +41196,9 @@ "tpolecat/doobie":{ "project":"tpolecat/doobie", "repoUrl":"https://github.com/tpolecat/doobie.git", - "revision":"v1.0.0-RC2", - "version":"1.0.0-RC2", - "targets":"org.tpolecat%doobie-postgres org.tpolecat%doobie-h2-circe org.tpolecat%doobie-refined org.tpolecat%doobie-h2 org.tpolecat%doobie-scalatest org.tpolecat%doobie-core org.tpolecat%doobie-postgres-circe org.tpolecat%doobie-hikari org.tpolecat%doobie-free org.tpolecat%doobie-munit", + "revision":"v1.0.0-RC4", + "version":"1.0.0-RC4", + "targets":"org.tpolecat%doobie-postgres org.tpolecat%doobie-h2-circe org.tpolecat%doobie-refined org.tpolecat%doobie-specs2 org.tpolecat%doobie-h2 org.tpolecat%doobie-scalatest org.tpolecat%doobie-core org.tpolecat%doobie-postgres-circe org.tpolecat%doobie-hikari org.tpolecat%doobie-weaver org.tpolecat%doobie-free org.tpolecat%doobie-munit", "config":{ "projects":{ "exclude":[ @@ -34722,7 +41234,11 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3Version = \"3.3.0\"", + "replaceWith":"val scala3Version = \"\"" + } ] } }, @@ -34848,8 +41364,8 @@ "trace4cats/trace4cats":{ "project":"trace4cats/trace4cats", "repoUrl":"https://github.com/trace4cats/trace4cats.git", - "revision":"v0.14.2", - "version":"0.14.2", + "revision":"v0.14.6", + "version":"0.14.6", "targets":"io.janstenpickle%trace4cats-tail-sampling io.janstenpickle%trace4cats-iolocal io.janstenpickle%trace4cats-context-utils io.janstenpickle%trace4cats-kernel io.janstenpickle%trace4cats-meta io.janstenpickle%trace4cats-core io.janstenpickle%trace4cats-fs2 io.janstenpickle%trace4cats-testkit io.janstenpickle%trace4cats-context-utils-laws", "config":{ "projects":{ @@ -34881,7 +41397,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.1.3\"", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] @@ -35013,8 +41529,8 @@ "trace4cats/trace4cats-datadog":{ "project":"trace4cats/trace4cats-datadog", "repoUrl":"https://github.com/trace4cats/trace4cats-datadog.git", - "revision":"v0.14.0", - "version":"0.14.0", + "revision":"v0.14.1", + "version":"0.14.1", "targets":"io.janstenpickle%trace4cats-datadog-http-exporter", "config":{ "projects":{ @@ -35045,7 +41561,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.1.3\"", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] @@ -35092,47 +41608,47 @@ ] } }, - "trace4cats/trace4cats-http4s":{ - "project":"trace4cats/trace4cats-http4s", - "repoUrl":"https://github.com/trace4cats/trace4cats-http4s.git", - "revision":"v0.14.0", - "version":"0.14.0", - "targets":"io.janstenpickle%trace4cats-http4s-client io.janstenpickle%trace4cats-http4s-common io.janstenpickle%trace4cats-http4s-server", - "config":{ - "projects":{ - "exclude":[ - - ], - "overrides":{ - - } - }, - "java":{ - "version":"17" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - { - "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.1.3\"", - "replaceWith":"val scala3 = \"\"" - } - ] - } - }, + "trace4cats/trace4cats-http4s":{ + "project":"trace4cats/trace4cats-http4s", + "repoUrl":"https://github.com/trace4cats/trace4cats-http4s.git", + "revision":"v0.14.1", + "version":"0.14.1", + "targets":"io.janstenpickle%trace4cats-http4s-client io.janstenpickle%trace4cats-http4s-common io.janstenpickle%trace4cats-http4s-server", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, "trace4cats/trace4cats-jaeger":{ "project":"trace4cats/trace4cats-jaeger", "repoUrl":"https://github.com/trace4cats/trace4cats-jaeger.git", @@ -35177,8 +41693,8 @@ "trace4cats/trace4cats-jaeger-integration-test":{ "project":"trace4cats/trace4cats-jaeger-integration-test", "repoUrl":"https://github.com/trace4cats/trace4cats-jaeger-integration-test.git", - "revision":"v0.14.0", - "version":"0.14.0", + "revision":"v0.14.2", + "version":"0.14.2", "targets":"io.janstenpickle%trace4cats-jaeger-integration-test", "config":{ "projects":{ @@ -35209,7 +41725,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.1.3\"", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] @@ -35218,8 +41734,8 @@ "trace4cats/trace4cats-kafka":{ "project":"trace4cats/trace4cats-kafka", "repoUrl":"https://github.com/trace4cats/trace4cats-kafka.git", - "revision":"v0.14.1", - "version":"0.14.1", + "revision":"v0.14.3", + "version":"0.14.3", "targets":"io.janstenpickle%trace4cats-kafka-client", "config":{ "projects":{ @@ -35250,7 +41766,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.1.3\"", + "pattern":"val scala3 = \"3.2.2\"", "replaceWith":"val scala3 = \"\"" } ] @@ -35341,9 +41857,9 @@ "trace4cats/trace4cats-opentelemetry":{ "project":"trace4cats/trace4cats-opentelemetry", "repoUrl":"https://github.com/trace4cats/trace4cats-opentelemetry.git", - "revision":"v0.14.1", - "version":"0.14.1", - "targets":"io.janstenpickle%trace4cats-opentelemetry-otlp-grpc-exporter io.janstenpickle%trace4cats-opentelemetry-jaeger-exporter io.janstenpickle%trace4cats-opentelemetry-otlp-http-exporter io.janstenpickle%trace4cats-opentelemetry-common", + "revision":"v0.14.4", + "version":"0.14.4", + "targets":"io.janstenpickle%trace4cats-opentelemetry-otlp-grpc-exporter io.janstenpickle%trace4cats-opentelemetry-jaeger-exporter io.janstenpickle%trace4cats-opentelemetry-otlp-http4s-grpc-exporter io.janstenpickle%trace4cats-opentelemetry-otlp-http-exporter io.janstenpickle%trace4cats-opentelemetry-common", "config":{ "projects":{ "exclude":[ @@ -35373,7 +41889,7 @@ "sourcePatches":[ { "path":"project/Dependencies.scala", - "pattern":"val scala3 = \"3.1.3\"", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] @@ -35464,9 +41980,9 @@ "trace4cats/trace4cats-xray":{ "project":"trace4cats/trace4cats-xray", "repoUrl":"https://github.com/trace4cats/trace4cats-xray.git", - "revision":"e164cffc955fb26506dd9e1e15d9a00d80f24884", + "revision":"", "version":"0.0.0+2-85ca34a3", - "targets":"io.janstenpickle%trace4cats-xray-udp-exporter", + "targets":"", "config":{ "projects":{ "exclude":[ @@ -35663,8 +42179,8 @@ "twitter/util":{ "project":"twitter/util", "repoUrl":"https://github.com/twitter/util.git", - "revision":"util-22.12.0", - "version":"22.12.0", + "revision":"util-23.11.0", + "version":"23.11.0", "targets":"com.twitter%util-cache com.twitter%util-app com.twitter%util-app-lifecycle com.twitter%util-jvm com.twitter%util-slf4j-jul-bridge com.twitter%util-logging com.twitter%util-zk-test com.twitter%util-hashing com.twitter%util-routing com.twitter%util-core com.twitter%util-slf4j-api com.twitter%util-stats com.twitter%util-cache-guava com.twitter%util-thrift com.twitter%util-codec com.twitter%util-registry com.twitter%util-lint com.twitter%util-security", "config":{ "projects":{ @@ -35699,10 +42215,47 @@ ] } }, + "typebricks/pureconfig-toggleable":{ + "project":"typebricks/pureconfig-toggleable", + "repoUrl":"https://github.com/typebricks/pureconfig-toggleable.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"io.github.typebricks%pureconfig-toggleable", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, "typelevel/bobcats":{ "project":"typelevel/bobcats", "repoUrl":"https://github.com/typelevel/bobcats.git", - "revision":"d3032a72d5f3593099623af822b91ca7d6176925", + "revision":"", "version":"0.1-094962b", "targets":"com.armanbilge%bobcats", "config":{ @@ -35776,8 +42329,8 @@ "typelevel/catapult":{ "project":"typelevel/catapult", "repoUrl":"https://github.com/typelevel/catapult.git", - "revision":"v0.4.0", - "version":"0.4.0", + "revision":"v0.4.3", + "version":"0.4.3", "targets":"org.typelevel%catapult org.typelevel%catapult-testkit", "config":{ "projects":{ @@ -35813,8 +42366,8 @@ "typelevel/cats":{ "project":"typelevel/cats", "repoUrl":"https://github.com/typelevel/cats.git", - "revision":"v2.9.0", - "version":"2.9.0", + "revision":"v2.10.0", + "version":"2.10.0", "targets":"org.typelevel%cats-free org.typelevel%cats-kernel org.typelevel%cats-kernel-laws org.typelevel%alleycats-core org.typelevel%cats-docs org.typelevel%cats-testkit org.typelevel%algebra-laws org.typelevel%alleycats-laws org.typelevel%algebra org.typelevel%cats-core org.typelevel%cats-laws", "config":{ "projects":{ @@ -35845,7 +42398,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.1\"", + "pattern":"val Scala3 = \"3.3.0\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -35854,8 +42407,8 @@ "typelevel/cats-collections":{ "project":"typelevel/cats-collections", "repoUrl":"https://github.com/typelevel/cats-collections.git", - "revision":"v0.9.6", - "version":"0.9.6", + "revision":"v0.9.8", + "version":"0.9.8", "targets":"org.typelevel%cats-collections-core org.typelevel%cats-collections-laws org.typelevel%cats-collections-scalacheck", "config":{ "projects":{ @@ -35886,7 +42439,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", + "pattern":"val Scala3 = \"3.3.1\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -35895,8 +42448,8 @@ "typelevel/cats-effect":{ "project":"typelevel/cats-effect", "repoUrl":"https://github.com/typelevel/cats-effect.git", - "revision":"v3.5.0", - "version":"3.5.0", + "revision":"v3.5.2", + "version":"3.5.2", "targets":"org.typelevel%cats-effect org.typelevel%cats-effect-laws org.typelevel%cats-effect-kernel org.typelevel%cats-effect-kernel-testkit org.typelevel%cats-effect-std org.typelevel%cats-effect-testkit", "config":{ "projects":{ @@ -36015,8 +42568,8 @@ "typelevel/cats-mtl":{ "project":"typelevel/cats-mtl", "repoUrl":"https://github.com/typelevel/cats-mtl.git", - "revision":"v1.3.1", - "version":"1.3.1", + "revision":"v1.4.0", + "version":"1.4.0", "targets":"org.typelevel%cats-mtl org.typelevel%cats-mtl-docs org.typelevel%cats-mtl-laws", "config":{ "projects":{ @@ -36052,8 +42605,8 @@ "typelevel/cats-parse":{ "project":"typelevel/cats-parse", "repoUrl":"https://github.com/typelevel/cats-parse.git", - "revision":"v0.3.9", - "version":"0.3.9", + "revision":"v0.3.10", + "version":"0.3.10", "targets":"org.typelevel%cats-parse", "config":{ "projects":{ @@ -36084,12 +42637,53 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.1\"", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] } }, + "typelevel/cats-tagless":{ + "project":"typelevel/cats-tagless", + "repoUrl":"https://github.com/typelevel/cats-tagless.git", + "revision":"v0.15.0", + "version":"0.15.0", + "targets":"org.typelevel%cats-tagless-core org.typelevel%cats-tagless-laws", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } + ] + } + }, "typelevel/cats-testkit-scalatest":{ "project":"typelevel/cats-testkit-scalatest", "repoUrl":"https://github.com/typelevel/cats-testkit-scalatest.git", @@ -36356,9 +42950,9 @@ "typelevel/fabric":{ "project":"typelevel/fabric", "repoUrl":"https://github.com/typelevel/fabric.git", - "revision":"v1.10.8", - "version":"1.10.8", - "targets":"org.typelevel%fabric-io org.typelevel%fabric-core", + "revision":"v1.12.6", + "version":"1.12.6", + "targets":"org.typelevel%fabric-io org.typelevel%fabric-core org.typelevel%fabric-reactify", "config":{ "projects":{ "exclude":[ @@ -36388,7 +42982,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] @@ -36397,8 +42991,8 @@ "typelevel/feral":{ "project":"typelevel/feral", "repoUrl":"https://github.com/typelevel/feral.git", - "revision":"v0.2.2", - "version":"0.2.2", + "revision":"v0.2.4", + "version":"0.2.4", "targets":"org.typelevel%feral-lambda-cloudformation-custom-resource org.typelevel%feral-lambda org.typelevel%feral-core org.typelevel%feral-docs org.typelevel%feral-lambda-http4s", "config":{ "projects":{ @@ -36410,7 +43004,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -36429,7 +43023,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", + "pattern":"val Scala3 = \"3.3.1\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -36438,8 +43032,8 @@ "typelevel/fs2":{ "project":"typelevel/fs2", "repoUrl":"https://github.com/typelevel/fs2.git", - "revision":"v3.7.0", - "version":"3.7.0", + "revision":"v3.9.2", + "version":"3.9.2", "targets":"co.fs2%fs2-scodec co.fs2%fs2-io co.fs2%fs2-docs co.fs2%fs2-core co.fs2%fs2-protocols co.fs2%fs2-reactive-streams", "config":{ "projects":{ @@ -36475,8 +43069,8 @@ "typelevel/fs2-grpc":{ "project":"typelevel/fs2-grpc", "repoUrl":"https://github.com/typelevel/fs2-grpc.git", - "revision":"v2.6.0", - "version":"2.6.0", + "revision":"v2.7.11", + "version":"2.7.11", "targets":"org.typelevel%fs2-grpc-codegen org.typelevel%fs2-grpc-runtime", "config":{ "projects":{ @@ -36507,7 +43101,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", + "pattern":"val Scala3 = \"3.3.1\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -36516,9 +43110,9 @@ "typelevel/grackle":{ "project":"typelevel/grackle", "repoUrl":"https://github.com/typelevel/grackle.git", - "revision":"v0.12.0", - "version":"0.12.0", - "targets":"edu.gemini%gsp-graphql-skunk edu.gemini%gsp-graphql-circe edu.gemini%gsp-graphql-generic edu.gemini%gsp-graphql-doobie-pg edu.gemini%gsp-graphql-sql edu.gemini%gsp-graphql-core", + "revision":"v0.14.0", + "version":"0.14.0", + "targets":"edu.gemini%gsp-graphql-sql edu.gemini%gsp-graphql-skunk edu.gemini%gsp-graphql-circe edu.gemini%gsp-graphql-generic edu.gemini%gsp-graphql-doobie-pg edu.gemini%gsp-graphql-core", "config":{ "projects":{ "exclude":[ @@ -36548,7 +43142,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", + "pattern":"val Scala3 = \"3.3.1\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -36598,8 +43192,8 @@ "typelevel/jawn":{ "project":"typelevel/jawn", "repoUrl":"https://github.com/typelevel/jawn.git", - "revision":"v1.4.0", - "version":"1.4.0", + "revision":"v1.5.1", + "version":"1.5.1", "targets":"org.typelevel%jawn-parser org.typelevel%jawn-ast org.typelevel%jawn-util", "config":{ "projects":{ @@ -36630,7 +43224,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.1.3\"", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] @@ -36713,8 +43307,8 @@ "typelevel/kittens":{ "project":"typelevel/kittens", "repoUrl":"https://github.com/typelevel/kittens.git", - "revision":"v3.0.0", - "version":"3.0.0", + "revision":"v3.1.0", + "version":"3.1.0", "targets":"org.typelevel%kittens", "config":{ "projects":{ @@ -36726,7 +43320,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -36750,7 +43344,48 @@ }, { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.0\"", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" + } + ] + } + }, + "typelevel/laika":{ + "project":"typelevel/laika", + "repoUrl":"https://github.com/typelevel/laika.git", + "revision":"v1.0.0", + "version":"1.0.0", + "targets":"org.typelevel%laika-core org.typelevel%laika-io org.typelevel%laika-pdf org.typelevel%laika-preview org.typelevel%laika-docs", + "config":{ + "projects":{ + "exclude":[ + "org.typelevel%laika-docs" + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"compile-only", + "sourcePatches":[ + { + "path":"project/Dependencies.scala", + "pattern":"val scala3 = \"3.3.1\"", "replaceWith":"val scala3 = \"\"" } ] @@ -36997,8 +43632,8 @@ "typelevel/natchez":{ "project":"typelevel/natchez", "repoUrl":"https://github.com/typelevel/natchez.git", - "revision":"v0.3.1", - "version":"0.3.1", + "revision":"v0.3.3", + "version":"0.3.3", "targets":"org.tpolecat%natchez-lightstep org.tpolecat%natchez-lightstep-grpc org.tpolecat%natchez-lightstep-http org.tpolecat%natchez-jaeger org.tpolecat%natchez-opencensus org.tpolecat%natchez-noop org.tpolecat%natchez-log-odin org.tpolecat%natchez-mock org.tpolecat%natchez-core org.tpolecat%natchez-mtl org.tpolecat%natchez-log org.tpolecat%natchez-opentracing org.tpolecat%natchez-opentelemetry org.tpolecat%natchez-datadog org.tpolecat%newrelic org.tpolecat%natchez-xray org.tpolecat%natchez-testkit org.tpolecat%natchez-honeycomb", "config":{ "projects":{ @@ -37075,9 +43710,9 @@ "typelevel/otel4s":{ "project":"typelevel/otel4s", "repoUrl":"https://github.com/typelevel/otel4s.git", - "revision":"v0.2.1", - "version":"0.2.1", - "targets":"org.typelevel%otel4s-docs org.typelevel%otel4s-core-metrics org.typelevel%otel4s-java-metrics org.typelevel%otel4s-testkit org.typelevel%otel4s-testkit-common org.typelevel%otel4s-java-trace org.typelevel%otel4s-core-common org.typelevel%otel4s-core org.typelevel%otel4s-core-trace org.typelevel%otel4s-testkit-metrics org.typelevel%otel4s-java org.typelevel%otel4s-java-common", + "revision":"v0.3.0-RC2", + "version":"0.3.0-RC2", + "targets":"org.typelevel%otel4s-docs org.typelevel%otel4s-core-metrics org.typelevel%otel4s-java-metrics org.typelevel%otel4s-testkit org.typelevel%otel4s-testkit-common org.typelevel%otel4s-java-trace org.typelevel%otel4s-core-common org.typelevel%otel4s-core org.typelevel%otel4s-semconv org.typelevel%otel4s-core-trace org.typelevel%otel4s-testkit-metrics org.typelevel%otel4s-java org.typelevel%otel4s-java-common", "config":{ "projects":{ "exclude":[ @@ -37112,8 +43747,8 @@ "typelevel/paiges":{ "project":"typelevel/paiges", "repoUrl":"https://github.com/typelevel/paiges.git", - "revision":"v0.4.2", - "version":"0.4.2", + "revision":"v0.4.3", + "version":"0.4.3", "targets":"org.typelevel%paiges-cats org.typelevel%paiges-core", "config":{ "projects":{ @@ -37142,15 +43777,19 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3Version = \"3.3.0\"", + "replaceWith":"val Scala3Version = \"\"" + } ] } }, "typelevel/scalac-compat":{ "project":"typelevel/scalac-compat", "repoUrl":"https://github.com/typelevel/scalac-compat.git", - "revision":"v0.1.0", - "version":"0.1.0", + "revision":"v0.1.2", + "version":"0.1.2", "targets":"org.typelevel%scalac-compat-annotation", "config":{ "projects":{ @@ -37181,7 +43820,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.0\"", + "pattern":"val Scala3 = \"3.3.0\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -37190,8 +43829,8 @@ "typelevel/scalac-options":{ "project":"typelevel/scalac-options", "repoUrl":"https://github.com/typelevel/scalac-options.git", - "revision":"v0.1.1", - "version":"0.1.1", + "revision":"v0.1.4", + "version":"0.1.4", "targets":"org.typelevel%scalac-options", "config":{ "projects":{ @@ -37222,7 +43861,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.3\"", + "pattern":"val Scala3 = \"3.3.1\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -37421,12 +44060,49 @@ ] } }, - "typelevel/skunk":{ - "project":"typelevel/skunk", - "repoUrl":"https://github.com/typelevel/skunk.git", - "revision":"v0.6.0-RC2", - "version":"0.6.0-RC2", - "targets":"org.tpolecat%refined org.tpolecat%skunk-core org.tpolecat%skunk-circe", + "typelevel/skunk":{ + "project":"typelevel/skunk", + "repoUrl":"https://github.com/typelevel/skunk.git", + "revision":"v0.6.1", + "version":"0.6.1", + "targets":"org.tpolecat%skunk-core org.tpolecat%skunk-docs org.tpolecat%skunk-circe org.tpolecat%skunk-refined", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "typelevel/spire":{ + "project":"typelevel/spire", + "repoUrl":"https://github.com/typelevel/spire.git", + "revision":"v0.18.0", + "version":"0.18.0", + "targets":"org.typelevel%spire-legacy org.typelevel%spire-util org.typelevel%spire-laws org.typelevel%spire org.typelevel%spire-extras org.typelevel%spire-platform org.typelevel%spire-data org.typelevel%spire-macros", "config":{ "projects":{ "exclude":[ @@ -37437,7 +44113,7 @@ } }, "java":{ - "version":"11" + "version":"17" }, "sbt":{ "commands":[ @@ -37454,16 +44130,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.1.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "typelevel/spire":{ - "project":"typelevel/spire", - "repoUrl":"https://github.com/typelevel/spire.git", - "revision":"v0.18.0", - "version":"0.18.0", - "targets":"org.typelevel%spire-legacy org.typelevel%spire-util org.typelevel%spire-laws org.typelevel%spire org.typelevel%spire-extras org.typelevel%spire-platform org.typelevel%spire-data org.typelevel%spire-macros", + "typelevel/spotted-leopards":{ + "project":"typelevel/spotted-leopards", + "repoUrl":"https://github.com/typelevel/spotted-leopards.git", + "revision":"v0.1.0", + "version":"0.1.0", + "targets":"org.typelevel%spotted-leopards", "config":{ "projects":{ "exclude":[ @@ -37474,7 +44154,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -37491,11 +44171,7 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.1.2\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, @@ -37509,8 +44185,8 @@ "typelevel/toolkit":{ "project":"typelevel/toolkit", "repoUrl":"https://github.com/typelevel/toolkit.git", - "revision":"v0.0.11", - "version":"0.0.11", + "revision":"v0.1.17", + "version":"0.1.17", "targets":"org.typelevel%toolkit org.typelevel%toolkit-test", "config":{ "projects":{ @@ -37546,8 +44222,8 @@ "typelevel/twiddles":{ "project":"typelevel/twiddles", "repoUrl":"https://github.com/typelevel/twiddles.git", - "revision":"v0.6.0", - "version":"0.6.0", + "revision":"v0.7.0", + "version":"0.7.0", "targets":"org.typelevel%twiddles-core", "config":{ "projects":{ @@ -37665,15 +44341,15 @@ "typesafeconfigops/typesafeconfigops":{ "project":"typesafeconfigops/typesafeconfigops", "repoUrl":"https://github.com/typesafeconfigops/typesafeconfigops.git", - "revision":"d757c4995500d23df42dff241cfbf2ba4d4e56bd", - "version":"1.4.1.1", + "revision":"", + "version":"3.0", "targets":"io.github.typesafeconfigops%typesafe-config-ops" }, "ua-parser/uap-scala":{ "project":"ua-parser/uap-scala", "repoUrl":"https://github.com/ua-parser/uap-scala.git", - "revision":"v0.15.0", - "version":"0.15.0", + "revision":"v0.16.0", + "version":"0.16.0", "targets":"org.uaparser%uap-scala", "config":{ "projects":{ @@ -37746,9 +44422,9 @@ "unfiltered/unfiltered":{ "project":"unfiltered/unfiltered", "repoUrl":"https://github.com/unfiltered/unfiltered.git", - "revision":"v0.12.0", - "version":"0.12.0", - "targets":"ws.unfiltered%unfiltered-directives ws.unfiltered%unfiltered-jetty ws.unfiltered%unfiltered-uploads ws.unfiltered%unfiltered-netty ws.unfiltered%unfiltered ws.unfiltered%unfiltered-filter ws.unfiltered%unfiltered-util ws.unfiltered%unfiltered-scalatest ws.unfiltered%unfiltered-specs2 ws.unfiltered%unfiltered-agents ws.unfiltered%unfiltered-netty-uploads ws.unfiltered%unfiltered-netty-server ws.unfiltered%unfiltered-filter-async ws.unfiltered%unfiltered-json4s ws.unfiltered%unfiltered-netty-websockets ws.unfiltered%unfiltered-filter-uploads", + "revision":"v0.13.0-M1", + "version":"0.13.0-M1", + "targets":"ws.unfiltered%unfiltered-directives ws.unfiltered%unfiltered-jetty ws.unfiltered%unfiltered-uploads ws.unfiltered%unfiltered-netty ws.unfiltered%unfiltered-all ws.unfiltered%unfiltered ws.unfiltered%unfiltered-filter ws.unfiltered%unfiltered-util ws.unfiltered%unfiltered-scalatest ws.unfiltered%unfiltered-specs2 ws.unfiltered%unfiltered-agents ws.unfiltered%unfiltered-netty-uploads ws.unfiltered%unfiltered-netty-server ws.unfiltered%unfiltered-filter-async ws.unfiltered%unfiltered-json4s ws.unfiltered%unfiltered-netty-websockets ws.unfiltered%unfiltered-filter-uploads", "config":{ "projects":{ "exclude":[ @@ -37783,8 +44459,8 @@ "unibas-gravis/scalismo":{ "project":"unibas-gravis/scalismo", "repoUrl":"https://github.com/unibas-gravis/scalismo.git", - "revision":"v0.92-RC1", - "version":"0.92-RC1", + "revision":"v0.92.0", + "version":"0.92.0", "targets":"ch.unibas.cs.gravis%scalismo ch.unibas.cs.gravis%scalismo-ui", "config":{ "projects":{ @@ -37940,9 +44616,9 @@ "valdemargr/gql":{ "project":"valdemargr/gql", "repoUrl":"https://github.com/valdemargr/gql.git", - "revision":"v0.2.4", - "version":"0.2.4", - "targets":"io.github.valdemargr%gql-parser io.github.valdemargr%gql-server io.github.valdemargr%gql-client-codegen io.github.valdemargr%gql-client-http4s io.github.valdemargr%gql io.github.valdemargr%gql-client io.github.valdemargr%gql-graphqlws io.github.valdemargr%gql-core io.github.valdemargr%gql-server-http4s io.github.valdemargr%gql-server-graphqlws io.github.valdemargr%gql-client-codegen-cli io.github.valdemargr%gql-server-goi", + "revision":"v0.3.3", + "version":"0.3.3", + "targets":"io.github.valdemargr%gql-parser io.github.valdemargr%gql-relational-doobie io.github.valdemargr%gql-server io.github.valdemargr%gql-client-codegen io.github.valdemargr%gql-client-http4s io.github.valdemargr%gql io.github.valdemargr%gql-client io.github.valdemargr%gql-graphqlws io.github.valdemargr%gql-core io.github.valdemargr%gql-server-http4s io.github.valdemargr%gql-natchez io.github.valdemargr%gql-server-graphqlws io.github.valdemargr%gql-relational-skunk io.github.valdemargr%gql-client-codegen-cli io.github.valdemargr%gql-server-goi io.github.valdemargr%gql-relational", "config":{ "projects":{ "exclude":[ @@ -37953,7 +44629,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -37977,8 +44653,8 @@ "valencik/textmogrify":{ "project":"valencik/textmogrify", "repoUrl":"https://github.com/valencik/textmogrify.git", - "revision":"v0.0.4", - "version":"0.0.4", + "revision":"v0.0.6", + "version":"0.0.6", "targets":"io.pig%textmogrify-docs io.pig%textmogrify-lucene", "config":{ "projects":{ @@ -38055,7 +44731,7 @@ "varwise/prometheus-akka-http":{ "project":"varwise/prometheus-akka-http", "repoUrl":"https://github.com/varwise/prometheus-akka-http.git", - "revision":"64bc56b7aa9222f959a19edde48ef80db5c9859b", + "revision":"", "version":"0.6.0", "targets":"com.varwise%prometheus-akka-http", "config":{ @@ -38413,11 +45089,48 @@ ] } }, + "virtuslab/java-class-name":{ + "project":"virtuslab/java-class-name", + "repoUrl":"https://github.com/virtuslab/java-class-name.git", + "revision":"v0.1.1", + "version":"0.1.1", + "targets":"org.virtuslab.scala-cli.java-class-name%java-class-name", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, "virtuslab/scala-cli":{ "project":"virtuslab/scala-cli", "repoUrl":"https://github.com/virtuslab/scala-cli.git", - "revision":"v1.0.0-RC2", - "version":"1.0.0-RC2", + "revision":"v1.0.5", + "version":"1.0.5", "targets":"org.virtuslab.scala-cli%scala3-graal org.virtuslab.scala-cli%directives org.virtuslab.scala-cli%build-module org.virtuslab.scala-cli%scala3-runtime org.virtuslab.scala-cli%options org.virtuslab.scala-cli%build-macros org.virtuslab.scala-cli%specification-level org.virtuslab.scala-cli%runner org.virtuslab.scala-cli%config org.virtuslab.scala-cli%scala3-graal-processor org.virtuslab.scala-cli%tasty-lib org.virtuslab.scala-cli%cli org.virtuslab.scala-cli%core org.virtuslab.scala-cli%test-runner", "config":{ "projects":{ @@ -38456,7 +45169,7 @@ "sourcePatches":[ { "path":"project/deps.sc", - "pattern":"def scala3 = \"3.2.2\"", + "pattern":"def scala3 = \"3.3.1\"", "replaceWith":"def scala3 = \"\"" } ] @@ -38465,8 +45178,8 @@ "virtuslab/scala-cli-signing":{ "project":"virtuslab/scala-cli-signing", "repoUrl":"https://github.com/virtuslab/scala-cli-signing.git", - "revision":"v0.2.1", - "version":"0.2.1", + "revision":"v0.2.3", + "version":"0.2.3", "targets":"org.virtuslab.scala-cli-signing%cli org.virtuslab.scala-cli-signing%native-cli org.virtuslab.scala-cli-signing%shared", "config":{ "projects":{ @@ -38497,7 +45210,7 @@ "sourcePatches":[ { "path":"build.sc", - "pattern":"def scala3 = \"3.2.2\"", + "pattern":"def scala3 = \"3.3.1\"", "replaceWith":"def scala3 = \"\"" } ] @@ -38506,8 +45219,8 @@ "virtuslab/scala-yaml":{ "project":"virtuslab/scala-yaml", "repoUrl":"https://github.com/virtuslab/scala-yaml.git", - "revision":"v0.0.7", - "version":"0.0.7", + "revision":"v0.0.8", + "version":"0.0.8", "targets":"org.virtuslab%scala-yaml", "config":{ "projects":{ @@ -38538,7 +45251,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"def scala3Version = \"3.2.2\"", + "pattern":"def scala3Version = \"3.3.0\"", "replaceWith":"def scala3Version = \"\"" } ] @@ -38588,8 +45301,8 @@ "vitaliihonta/zio-temporal":{ "project":"vitaliihonta/zio-temporal", "repoUrl":"https://github.com/vitaliihonta/zio-temporal.git", - "revision":"0.2.0-RC3", - "version":"0.2.0-RC3", + "revision":"v0.6.0", + "version":"0.6.0", "targets":"dev.vhonta%zio-temporal-core dev.vhonta%zio-temporal-protobuf dev.vhonta%zio-temporal-testkit", "config":{ "projects":{ @@ -38601,7 +45314,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -38620,7 +45333,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] @@ -38660,31 +45373,190 @@ "tests":"full", "sourcePatches":[ { - "path":"core/src/test/scala/com/vladkopanev/cats/saga/SagaLawsSpec.scala", - "pattern":"implicit val ticker = Ticker()", - "replaceWith":"implicit val ticker: Ticker = Ticker()" - }, - { - "path":"core/src/test/scala/com/vladkopanev/cats/saga/CatsSagaSpec.scala", - "pattern":"bookCar compensateIfFail", - "replaceWith":"bookCar.compensateIfFail" + "path":"core/src/test/scala/com/vladkopanev/cats/saga/SagaLawsSpec.scala", + "pattern":"implicit val ticker = Ticker()", + "replaceWith":"implicit val ticker: Ticker = Ticker()" + }, + { + "path":"core/src/test/scala/com/vladkopanev/cats/saga/CatsSagaSpec.scala", + "pattern":"bookCar compensateIfFail", + "replaceWith":"bookCar.compensateIfFail" + } + ] + } + }, + "vladkopanev/zio-saga":{ + "project":"vladkopanev/zio-saga", + "repoUrl":"https://github.com/vladkopanev/zio-saga.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"com.vladkopanev%zio-saga-core" + }, + "vlmiroshnikov/aero3":{ + "project":"vlmiroshnikov/aero3", + "repoUrl":"https://github.com/vlmiroshnikov/aero3.git", + "revision":"v0.0.11", + "version":"0.0.11", + "targets":"io.github.vlmiroshnikov%aero-core", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "vlmiroshnikov/authz":{ + "project":"vlmiroshnikov/authz", + "repoUrl":"https://github.com/vlmiroshnikov/authz.git", + "revision":"v0.3.5", + "version":"0.3.5", + "targets":"io.github.vlmiroshnikov%authz-circe io.github.vlmiroshnikov%authz-core", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "vlmiroshnikov/saga":{ + "project":"vlmiroshnikov/saga", + "repoUrl":"https://github.com/vlmiroshnikov/saga.git", + "revision":"v0.0.3", + "version":"0.0.3", + "targets":"io.github.vlmiroshnikov%saga-core", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, + "vlovgr/ciris":{ + "project":"vlovgr/ciris", + "repoUrl":"https://github.com/vlovgr/ciris.git", + "revision":"v3.4.0", + "version":"3.4.0", + "targets":"is.cir%ciris-squants is.cir%ciris is.cir%ciris-enumeratum is.cir%ciris-circe is.cir%ciris-circe-yaml is.cir%ciris-refined is.cir%ciris-http4s", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.1\"", + "replaceWith":"val scala3 = \"\"" } ] } }, - "vladkopanev/zio-saga":{ - "project":"vladkopanev/zio-saga", - "repoUrl":"https://github.com/vladkopanev/zio-saga.git", - "revision":"v0.6.0", - "version":"0.6.0", - "targets":"com.vladkopanev%zio-saga-core" + "wangzaixiang/scala-sql":{ + "project":"wangzaixiang/scala-sql", + "repoUrl":"https://github.com/wangzaixiang/scala-sql.git", + "revision":"", + "version":"3.0.0-RC2", + "targets":"com.github.wangzaixiang%wsql" }, - "vlmiroshnikov/aero3":{ - "project":"vlmiroshnikov/aero3", - "repoUrl":"https://github.com/vlmiroshnikov/aero3.git", - "revision":"v0.0.11", - "version":"0.0.11", - "targets":"io.github.vlmiroshnikov%aero-core", + "webjars/webjars-play":{ + "project":"webjars/webjars-play", + "repoUrl":"https://github.com/webjars/webjars-play.git", + "revision":"3.0.0", + "version":"3.0.0", + "targets":"org.webjars%webjars-play", "config":{ "projects":{ "exclude":[ @@ -38712,16 +45584,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.3.1\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "vlmiroshnikov/authz":{ - "project":"vlmiroshnikov/authz", - "repoUrl":"https://github.com/vlmiroshnikov/authz.git", - "revision":"v0.3.5", - "version":"0.3.5", - "targets":"io.github.vlmiroshnikov%authz-circe io.github.vlmiroshnikov%authz-core", + "whisklabs/docker-it-scala":{ + "project":"whisklabs/docker-it-scala", + "repoUrl":"https://github.com/whisklabs/docker-it-scala.git", + "revision":"v0.11.0", + "version":"0.11.0", + "targets":"com.whisk%docker-testkit-core-shaded com.whisk%docker-testkit-samples com.whisk%docker-testkit-core com.whisk%docker-testkit-scalatest", "config":{ "projects":{ "exclude":[ @@ -38753,12 +45629,40 @@ ] } }, - "vlmiroshnikov/saga":{ - "project":"vlmiroshnikov/saga", - "repoUrl":"https://github.com/vlmiroshnikov/saga.git", + "windymelt/happy-birthday":{ + "project":"windymelt/happy-birthday", + "repoUrl":"https://github.com/windymelt/happy-birthday.git", "revision":"v0.0.1", "version":"0.0.1", - "targets":"io.github.vlmiroshnikov%saga-core", + "targets":"io.github.windymelt%happy-birthday" + }, + "windymelt/qw.scala":{ + "project":"windymelt/qw.scala", + "repoUrl":"https://github.com/windymelt/qw.scala.git", + "revision":"v0.1.5", + "version":"0.1.5", + "targets":"io.github.windymelt%qw" + }, + "windymelt/rss2discord":{ + "project":"windymelt/rss2discord", + "repoUrl":"https://github.com/windymelt/rss2discord.git", + "revision":"v0.0.6", + "version":"0.0.6", + "targets":"io.github.windymelt%rss2discord" + }, + "wiringbits/wiringbits-webapp-utils":{ + "project":"wiringbits/wiringbits-webapp-utils", + "repoUrl":"https://github.com/wiringbits/wiringbits-webapp-utils.git", + "revision":"v0.7.2", + "version":"0.7.2", + "targets":"net.wiringbits%webapp-common" + }, + "wolfendale/scalacheck-gen-regexp":{ + "project":"wolfendale/scalacheck-gen-regexp", + "repoUrl":"https://github.com/wolfendale/scalacheck-gen-regexp.git", + "revision":"v1.1.0", + "version":"1.1.0", + "targets":"io.github.wolfendale%scalacheck-gen-regexp", "config":{ "projects":{ "exclude":[ @@ -38790,23 +45694,31 @@ ] } }, - "vlovgr/ciris":{ - "project":"vlovgr/ciris", - "repoUrl":"https://github.com/vlovgr/ciris.git", - "revision":"v3.1.0", - "version":"3.1.0", - "targets":"is.cir%ciris-squants is.cir%ciris is.cir%ciris-enumeratum is.cir%ciris-circe is.cir%ciris-circe-yaml is.cir%ciris-refined is.cir%ciris-http4s", + "wvlet/airframe":{ + "project":"wvlet/airframe", + "repoUrl":"https://github.com/wvlet/airframe.git", + "revision":"v23.11.1", + "version":"23.11.1", + "targets":"org.wvlet.airframe%airframe-http-recorder org.wvlet.airframe%airframe-config org.wvlet.airframe%airframe-jdbc org.wvlet.airframe%airframe-parquet org.wvlet.airframe%airframe-http org.wvlet.airframe%airframe-control org.wvlet.airframe%airframe-ulid org.wvlet.airframe%airframe-canvas org.wvlet.airframe%airframe-http-okhttp org.wvlet.airframe%airframe-http-grpc org.wvlet.airframe%airframe-codec org.wvlet.airframe%airframe-di-macros org.wvlet.airframe%airframe-http-netty org.wvlet.airframe%airframe-metrics org.wvlet.airframe%airframe-http-codegen org.wvlet.airframe%airframe-rx-html org.wvlet.airframe%airframe-jmx org.wvlet.airframe%airframe-log org.wvlet.airframe%airframe-json org.wvlet.airframe%airspec org.wvlet.airframe%airframe-sql org.wvlet.airframe%airframe-launcher org.wvlet.airframe%airframe-msgpack org.wvlet.airframe%airframe org.wvlet.airframe%airframe-rx org.wvlet.airframe%airframe-surface org.wvlet.airframe%airframe-fluentd", "config":{ "projects":{ "exclude":[ - + "org.wvlet.airframe%airspec" ], "overrides":{ - + "airframe-codec":{ + "tests":"compile-only" + }, + "airframe-ulid":{ + "tests":"compile-only" + }, + "airframe":{ + "tests":"compile-only" + } } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -38823,27 +45735,23 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", - "replaceWith":"val scala3 = \"\"" - } + ] } }, - "wangzaixiang/scala-sql":{ - "project":"wangzaixiang/scala-sql", - "repoUrl":"https://github.com/wangzaixiang/scala-sql.git", - "revision":"04648b273375712b01abd44e999f7b66bf08fc5a", - "version":"3.0.0-RC1", - "targets":"com.github.wangzaixiang%wsql" + "wz7982/easysql-scala":{ + "project":"wz7982/easysql-scala", + "repoUrl":"https://github.com/wz7982/easysql-scala.git", + "revision":"", + "version":"2.1.1", + "targets":"io.github.wz7982%core io.github.wz7982%jdbc" }, - "webjars/webjars-play":{ - "project":"webjars/webjars-play", - "repoUrl":"https://github.com/webjars/webjars-play.git", - "revision":"v2.9.0-M3", - "version":"2.9.0-M3", - "targets":"org.webjars%webjars-play", + "xebia-functional/fetch":{ + "project":"xebia-functional/fetch", + "repoUrl":"https://github.com/xebia-functional/fetch.git", + "revision":"v3.1.2", + "version":"3.1.2", + "targets":"com.47deg%fetch com.47deg%fetch-debug", "config":{ "projects":{ "exclude":[ @@ -38873,18 +45781,18 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val Scala3 = \"3.3.0-RC3\"", - "replaceWith":"val Scala3 = \"\"" + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" } ] } }, - "whisklabs/docker-it-scala":{ - "project":"whisklabs/docker-it-scala", - "repoUrl":"https://github.com/whisklabs/docker-it-scala.git", - "revision":"v0.11.0", - "version":"0.11.0", - "targets":"com.whisk%docker-testkit-core-shaded com.whisk%docker-testkit-samples com.whisk%docker-testkit-core com.whisk%docker-testkit-scalatest", + "xebia-functional/karat-scalacheck":{ + "project":"xebia-functional/karat-scalacheck", + "repoUrl":"https://github.com/xebia-functional/karat-scalacheck.git", + "revision":"v0.0.6", + "version":"0.0.6", + "targets":"com.xebia%karat-scalacheck com.xebia%karat-scalacheck-effect com.xebia%karat-scalacheck-http4s", "config":{ "projects":{ "exclude":[ @@ -38912,23 +45820,20 @@ }, "tests":"full", "sourcePatches":[ - + { + "path":"build.sbt", + "pattern":"val scala3 = \"3.3.0\"", + "replaceWith":"val scala3 = \"\"" + } ] } }, - "wiringbits/wiringbits-webapp-utils":{ - "project":"wiringbits/wiringbits-webapp-utils", - "repoUrl":"https://github.com/wiringbits/wiringbits-webapp-utils.git", - "revision":"v0.6.1", - "version":"0.6.1", - "targets":"net.wiringbits%admin-data-explorer-api net.wiringbits%webapp-common" - }, - "wolfendale/scalacheck-gen-regexp":{ - "project":"wolfendale/scalacheck-gen-regexp", - "repoUrl":"https://github.com/wolfendale/scalacheck-gen-regexp.git", - "revision":"v1.1.0", - "version":"1.1.0", - "targets":"io.github.wolfendale%scalacheck-gen-regexp", + "xebia-functional/munit-compiler-toolkit":{ + "project":"xebia-functional/munit-compiler-toolkit", + "repoUrl":"https://github.com/xebia-functional/munit-compiler-toolkit.git", + "revision":"v0.4.0", + "version":"0.4.0", + "targets":"com.xebia%munit-compiler-toolkit", "config":{ "projects":{ "exclude":[ @@ -38939,52 +45844,7 @@ } }, "java":{ - "version":"11" - }, - "sbt":{ - "commands":[ - - ], - "options":[ - - ] - }, - "mill":{ - "options":[ - - ] - }, - "tests":"full", - "sourcePatches":[ - - ] - } - }, - "wvlet/airframe":{ - "project":"wvlet/airframe", - "repoUrl":"https://github.com/wvlet/airframe.git", - "revision":"v23.5.4", - "version":"23.5.4", - "targets":"org.wvlet.airframe%airframe-http-recorder org.wvlet.airframe%airframe-config org.wvlet.airframe%airframe-jdbc org.wvlet.airframe%airframe-parquet org.wvlet.airframe%airframe-http org.wvlet.airframe%airframe-control org.wvlet.airframe%airframe-ulid org.wvlet.airframe%airframe-canvas org.wvlet.airframe%airframe-http-okhttp org.wvlet.airframe%airframe-http-grpc org.wvlet.airframe%airframe-codec org.wvlet.airframe%airframe-di-macros org.wvlet.airframe%airframe-http-netty org.wvlet.airframe%airframe-metrics org.wvlet.airframe%airframe-http-codegen org.wvlet.airframe%airframe-rx-html org.wvlet.airframe%airframe-jmx org.wvlet.airframe%airframe-log org.wvlet.airframe%airframe-json org.wvlet.airframe%airspec org.wvlet.airframe%airframe-sql org.wvlet.airframe%airframe-launcher org.wvlet.airframe%airframe-msgpack org.wvlet.airframe%airframe org.wvlet.airframe%airframe-rx org.wvlet.airframe%airframe-surface org.wvlet.airframe%airframe-fluentd", - "config":{ - "projects":{ - "exclude":[ - "org.wvlet.airframe%airspec" - ], - "overrides":{ - "airframe-codec":{ - "tests":"compile-only" - }, - "airframe-ulid":{ - "tests":"compile-only" - }, - "airframe":{ - "tests":"compile-only" - } - } - }, - "java":{ - "version":"17" + "version":"21" }, "sbt":{ "commands":[ @@ -39005,19 +45865,12 @@ ] } }, - "wz7982/easysql-scala":{ - "project":"wz7982/easysql-scala", - "repoUrl":"https://github.com/wz7982/easysql-scala.git", - "revision":"eeb451568cdfefc9a8478dd3d3f836ca4abd4d83", - "version":"1.4.0", - "targets":"io.github.wz7982%core io.github.wz7982%jdbc" - }, - "xebia-functional/fetch":{ - "project":"xebia-functional/fetch", - "repoUrl":"https://github.com/xebia-functional/fetch.git", - "revision":"v3.1.2", - "version":"3.1.2", - "targets":"com.47deg%fetch com.47deg%fetch-debug", + "xebia-functional/munit-snap":{ + "project":"xebia-functional/munit-snap", + "repoUrl":"https://github.com/xebia-functional/munit-snap.git", + "revision":"v0.1.6", + "version":"0.1.6", + "targets":"com.xebia%munit-snap com.xebia%munit-snap-root", "config":{ "projects":{ "exclude":[ @@ -39045,11 +45898,7 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val scala3Version = \"3.2.2\"", - "replaceWith":"val scala3Version = \"\"" - } + ] } }, @@ -39167,8 +46016,8 @@ "xuwei-k/jwt-scala":{ "project":"xuwei-k/jwt-scala", "repoUrl":"https://github.com/xuwei-k/jwt-scala.git", - "revision":"v1.9.0", - "version":"1.9.0", + "revision":"v2.0.0", + "version":"2.0.0", "targets":"com.github.xuwei-k%jwt-scala", "config":{ "projects":{ @@ -39180,7 +46029,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -39234,16 +46083,57 @@ }, "tests":"full", "sourcePatches":[ - + + ] + } + }, + "xuwei-k/optparse-applicative":{ + "project":"xuwei-k/optparse-applicative", + "repoUrl":"https://github.com/xuwei-k/optparse-applicative.git", + "revision":"v0.9.3", + "version":"0.9.3", + "targets":"com.github.xuwei-k%optparse-applicative", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"8" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"build.sbt", + "pattern":"val Scala3 = \"3.2.2\"", + "replaceWith":"val Scala3 = \"\"" + } ] } }, - "xuwei-k/optparse-applicative":{ - "project":"xuwei-k/optparse-applicative", - "repoUrl":"https://github.com/xuwei-k/optparse-applicative.git", - "revision":"v0.9.3", - "version":"0.9.3", - "targets":"com.github.xuwei-k%optparse-applicative", + "xuwei-k/play2scalaz":{ + "project":"xuwei-k/play2scalaz", + "repoUrl":"https://github.com/xuwei-k/play2scalaz.git", + "revision":"v0.12.0", + "version":"0.12.0", + "targets":"com.github.xuwei-k%play2scalaz", "config":{ "projects":{ "exclude":[ @@ -39254,7 +46144,7 @@ } }, "java":{ - "version":"8" + "version":"11" }, "sbt":{ "commands":[ @@ -39271,19 +46161,15 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"build.sbt", - "pattern":"val Scala3 = \"3.2.2\"", - "replaceWith":"val Scala3 = \"\"" - } + ] } }, "xuwei-k/scala3profile":{ "project":"xuwei-k/scala3profile", "repoUrl":"https://github.com/xuwei-k/scala3profile.git", - "revision":"v0.1.0", - "version":"0.1.0", + "revision":"v0.1.1", + "version":"0.1.1", "targets":"com.github.xuwei-k%scala3profile", "config":{ "projects":{ @@ -39319,8 +46205,8 @@ "xuwei-k/unused-proto":{ "project":"xuwei-k/unused-proto", "repoUrl":"https://github.com/xuwei-k/unused-proto.git", - "revision":"v0.1.3", - "version":"0.1.3", + "revision":"v0.1.5", + "version":"0.1.5", "targets":"com.github.xuwei-k%unused-proto com.github.xuwei-k%unused-proto-common", "config":{ "projects":{ @@ -39351,7 +46237,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"def Scala3 = \"3.2.2\"", + "pattern":"def Scala3 = \"3.3.0\"", "replaceWith":"def Scala3 = \"\"" } ] @@ -39479,7 +46365,7 @@ "yakivy/dupin":{ "project":"yakivy/dupin", "repoUrl":"https://github.com/yakivy/dupin.git", - "revision":"e5e990be16093ac7755235aa7bc27ebb5a690d1d", + "revision":"", "version":"0.6.0", "targets":"com.github.yakivy%dupin-core", "config":{ @@ -39520,8 +46406,8 @@ "yakivy/jam":{ "project":"yakivy/jam", "repoUrl":"https://github.com/yakivy/jam.git", - "revision":"73699c2391d3c18ea642082cee8df76b983c0447", - "version":"0.4.0", + "revision":"", + "version":"0.4.3", "targets":"com.github.yakivy%jam-cats com.github.yakivy%jam-core com.github.yakivy%jam-monad", "config":{ "projects":{ @@ -39561,8 +46447,8 @@ "yakivy/poppet":{ "project":"yakivy/poppet", "repoUrl":"https://github.com/yakivy/poppet.git", - "revision":"fd3e1dca6b01b774558de9e153c72a5f0cd7dcdf", - "version":"0.3.1", + "revision":"", + "version":"0.3.3", "targets":"com.github.yakivy%poppet-circe com.github.yakivy%poppet-core com.github.yakivy%poppet-jackson com.github.yakivy%poppet-upickle", "config":{ "projects":{ @@ -39643,10 +46529,47 @@ "yrichika/scalahtml":{ "project":"yrichika/scalahtml", "repoUrl":"https://github.com/yrichika/scalahtml.git", - "revision":"731e1571d520bf412bba9902ab9a42d20df0ab9f", + "revision":"", "version":"0.1.1", "targets":"io.github.yrichika%scalahtml" }, + "ysthakur/sline":{ + "project":"ysthakur/sline", + "repoUrl":"https://github.com/ysthakur/sline.git", + "revision":"", + "version":"0.0.0-1-7984e6", + "targets":"io.github.ysthakur%sline", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, "yurikpanic/zio-postgres":{ "project":"yurikpanic/zio-postgres", "repoUrl":"https://github.com/yurikpanic/zio-postgres.git", @@ -39725,11 +46648,48 @@ ] } }, + "zaneli/scalikejdbc-athena":{ + "project":"zaneli/scalikejdbc-athena", + "repoUrl":"https://github.com/zaneli/scalikejdbc-athena.git", + "revision":"0.3.0", + "version":"0.3.0", + "targets":"com.zaneli%scalikejdbc-athena", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"11" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, "zeal18/zio-mongodb":{ "project":"zeal18/zio-mongodb", "repoUrl":"https://github.com/zeal18/zio-mongodb.git", - "revision":"v0.10.1", - "version":"0.10.1", + "revision":"v0.10.2", + "version":"0.10.2", "targets":"io.github.zeal18%zio-mongodb-bson io.github.zeal18%zio-mongodb-driver io.github.zeal18%zio-mongodb-testkit", "config":{ "projects":{ @@ -39760,7 +46720,7 @@ "sourcePatches":[ { "path":"build.sbt", - "pattern":"val scala3 = \"3.2.2\"", + "pattern":"val scala3 = \"3.3.0\"", "replaceWith":"val scala3 = \"\"" } ] @@ -39840,6 +46800,13 @@ ] } }, + "zhranklin/scala-tricks":{ + "project":"zhranklin/scala-tricks", + "repoUrl":"https://github.com/zhranklin/scala-tricks.git", + "revision":"", + "version":"0.2.5", + "targets":"com.zhranklin%scala-tricks" + }, "zio/caliban-deriving":{ "project":"zio/caliban-deriving", "repoUrl":"https://github.com/zio/caliban-deriving.git", @@ -39884,9 +46851,9 @@ "zio/interop-cats":{ "project":"zio/interop-cats", "repoUrl":"https://github.com/zio/interop-cats.git", - "revision":"v23.0.0.5", - "version":"23.0.0.5", - "targets":"dev.zio%zio-interop-cats dev.zio%zio-interop-cats-tests", + "revision":"v23.1.0.0", + "version":"23.1.0.0", + "targets":"dev.zio%zio-interop-cats dev.zio%zio-interop-cats-tests dev.zio%zio-interop-tracer", "config":{ "projects":{ "exclude":[ @@ -39916,7 +46883,7 @@ "sourcePatches":[ { "path":"project/BuildHelper.scala", - "pattern":"val Scala3 = \"3.2.1\"", + "pattern":"val Scala3 = \"3.3.0\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -40048,8 +47015,8 @@ "zio/izumi-reflect":{ "project":"zio/izumi-reflect", "repoUrl":"https://github.com/zio/izumi-reflect.git", - "revision":"v2.3.7", - "version":"2.3.7", + "revision":"v2.3.8", + "version":"2.3.8", "targets":"dev.zio%izumi-reflect dev.zio%izumi-reflect-thirdparty-boopickle-shaded", "config":{ "projects":{ @@ -40085,8 +47052,8 @@ "zio/zio":{ "project":"zio/zio", "repoUrl":"https://github.com/zio/zio.git", - "revision":"v2.0.13", - "version":"2.0.13", + "revision":"v2.0.18", + "version":"2.0.18", "targets":"dev.zio%zio-test-junit dev.zio%zio dev.zio%zio-test-magnolia dev.zio%zio-streams dev.zio%zio-managed dev.zio%zio-internal-macros dev.zio%zio-test-sbt dev.zio%zio-stacktracer dev.zio%zio-test-scalacheck dev.zio%zio-test dev.zio%zio-macros dev.zio%zio-concurrent dev.zio%zio-test-refined", "config":{ "projects":{ @@ -40123,12 +47090,12 @@ ] } }, - "zio/zio-amqp":{ - "project":"zio/zio-amqp", - "repoUrl":"https://github.com/zio/zio-amqp.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"nl.vroste%zio-amqp", + "zio/zio-aws":{ + "project":"zio/zio-aws", + "repoUrl":"https://github.com/zio/zio-aws.git", + "revision":"v6.20.162.2", + "version":"6.20.162.2", + "targets":"dev.zio%zio-aws-keyspaces dev.zio%zio-aws-networkmanager dev.zio%zio-aws-codegurureviewer dev.zio%zio-aws-dynamodbstreams dev.zio%zio-aws-iam dev.zio%zio-aws-ssmincidents dev.zio%zio-aws-servicecatalogappregistry dev.zio%zio-aws-marketplacecatalog dev.zio%zio-aws-migrationhubconfig dev.zio%zio-aws-snowball dev.zio%zio-aws-worklink dev.zio%zio-aws-dynamodb dev.zio%zio-aws-sso dev.zio%zio-aws-licensemanagerlinuxsubscriptions dev.zio%zio-aws-wafv2 dev.zio%zio-aws-panorama dev.zio%zio-aws-detective dev.zio%zio-aws-mobile dev.zio%zio-aws-codeartifact dev.zio%zio-aws-marketplacemetering dev.zio%zio-aws-migrationhubrefactorspaces dev.zio%zio-aws-proton dev.zio%zio-aws-lakeformation dev.zio%zio-aws-dlm dev.zio%zio-aws-emrcontainers dev.zio%zio-aws-sagemakeredge dev.zio%zio-aws-akka-http dev.zio%zio-aws-databasemigration dev.zio%zio-aws-groundstation dev.zio%zio-aws-cloudtrail dev.zio%zio-aws-backupstorage dev.zio%zio-aws-costexplorer dev.zio%zio-aws-personalize dev.zio%zio-aws-codebuild dev.zio%zio-aws-healthlake dev.zio%zio-aws-lambda dev.zio%zio-aws-securityhub dev.zio%zio-aws-batch dev.zio%zio-aws-redshiftdata dev.zio%zio-aws-macie2 dev.zio%zio-aws-lexmodelsv2 dev.zio%zio-aws-wisdom dev.zio%zio-aws-rbin dev.zio%zio-aws-route53recoveryreadiness dev.zio%zio-aws-iot1clickdevices dev.zio%zio-aws-ecs dev.zio%zio-aws-cloudwatch dev.zio%zio-aws-rum dev.zio%zio-aws-mediatailor dev.zio%zio-aws-docdb dev.zio%zio-aws-iotfleethub dev.zio%zio-aws-elasticloadbalancingv2 dev.zio%zio-aws-cloudwatchlogs dev.zio%zio-aws-pinpoint dev.zio%zio-aws-omics dev.zio%zio-aws-schemas dev.zio%zio-aws-appconfig dev.zio%zio-aws-machinelearning dev.zio%zio-aws-codepipeline dev.zio%zio-aws-auditmanager dev.zio%zio-aws-redshiftserverless dev.zio%zio-aws-opsworks dev.zio%zio-aws-identitystore dev.zio%zio-aws-mwaa dev.zio%zio-aws-m2 dev.zio%zio-aws-xray dev.zio%zio-aws-location dev.zio%zio-aws-securitylake dev.zio%zio-aws-serverlessapplicationrepository dev.zio%zio-aws-ec2instanceconnect dev.zio%zio-aws-datasync dev.zio%zio-aws-route53 dev.zio%zio-aws-licensemanagerusersubscriptions dev.zio%zio-aws-cloudsearch dev.zio%zio-aws-robomaker dev.zio%zio-aws-inspector dev.zio%zio-aws-resourceexplorer2 dev.zio%zio-aws-imagebuilder dev.zio%zio-aws-wafregional dev.zio%zio-aws-connectparticipant dev.zio%zio-aws-workdocs dev.zio%zio-aws-shield dev.zio%zio-aws-rolesanywhere dev.zio%zio-aws-account dev.zio%zio-aws-guardduty dev.zio%zio-aws-fis dev.zio%zio-aws-workspaces dev.zio%zio-aws-pricing dev.zio%zio-aws-secretsmanager dev.zio%zio-aws-kafka dev.zio%zio-aws-kinesis dev.zio%zio-aws-dax dev.zio%zio-aws-kendra dev.zio%zio-aws-mq dev.zio%zio-aws-s3control dev.zio%zio-aws-workmail dev.zio%zio-aws-signer dev.zio%zio-aws-route53recoverycluster dev.zio%zio-aws-s3outposts dev.zio%zio-aws-codestarnotifications dev.zio%zio-aws-frauddetector dev.zio%zio-aws-comprehendmedical dev.zio%zio-aws-route53resolver dev.zio%zio-aws-appsync dev.zio%zio-aws-codeguruprofiler dev.zio%zio-aws-eventbridge dev.zio%zio-aws-supportapp dev.zio%zio-aws-sagemakergeospatial dev.zio%zio-aws-simspaceweaver dev.zio%zio-aws-gamelift dev.zio%zio-aws-transcribestreaming dev.zio%zio-aws-cognitoidentityprovider dev.zio%zio-aws-migrationhub dev.zio%zio-aws-iottwinmaker dev.zio%zio-aws-pinpointsmsvoice dev.zio%zio-aws-sts dev.zio%zio-aws-computeoptimizer dev.zio%zio-aws-kafkaconnect dev.zio%zio-aws-iotsitewise dev.zio%zio-aws-snowdevicemanagement dev.zio%zio-aws-sagemakermetrics dev.zio%zio-aws-ioteventsdata dev.zio%zio-aws-networkfirewall dev.zio%zio-aws-dataexchange dev.zio%zio-aws-sagemakera2iruntime dev.zio%zio-aws-kinesisanalyticsv2 dev.zio%zio-aws-cloudfront dev.zio%zio-aws-http4s dev.zio%zio-aws-evidently dev.zio%zio-aws-migrationhuborchestrator dev.zio%zio-aws-core dev.zio%zio-aws-lookoutequipment dev.zio%zio-aws-mediapackagevod dev.zio%zio-aws-servicequotas dev.zio%zio-aws-mturk dev.zio%zio-aws-nimble dev.zio%zio-aws-cognitoidentity dev.zio%zio-aws-honeycode dev.zio%zio-aws-databrew dev.zio%zio-aws-connect dev.zio%zio-aws-acm dev.zio%zio-aws-ec2 dev.zio%zio-aws-route53domains dev.zio%zio-aws-wellarchitected dev.zio%zio-aws-personalizeevents dev.zio%zio-aws-rds dev.zio%zio-aws-ecr dev.zio%zio-aws-autoscaling dev.zio%zio-aws-customerprofiles dev.zio%zio-aws-ssooidc dev.zio%zio-aws-elastictranscoder dev.zio%zio-aws-amplify dev.zio%zio-aws-greengrass dev.zio%zio-aws-kinesisvideosignaling dev.zio%zio-aws-billingconductor dev.zio%zio-aws-neptune dev.zio%zio-aws-codestarconnections dev.zio%zio-aws-chimesdkvoice dev.zio%zio-aws-pinpointemail dev.zio%zio-aws-resiliencehub dev.zio%zio-aws-resourcegroupstaggingapi dev.zio%zio-aws-kinesisvideomedia dev.zio%zio-aws-outposts dev.zio%zio-aws-polly dev.zio%zio-aws-timestreamwrite dev.zio%zio-aws-opsworkscm dev.zio%zio-aws-rdsdata dev.zio%zio-aws-amplifyuibuilder dev.zio%zio-aws-elasticache dev.zio%zio-aws-accessanalyzer dev.zio%zio-aws-chimesdkmediapipelines dev.zio%zio-aws-ssm dev.zio%zio-aws-qldb dev.zio%zio-aws-qldbsession dev.zio%zio-aws-waf dev.zio%zio-aws-pipes dev.zio%zio-aws-kinesisvideoarchivedmedia dev.zio%zio-aws-ses dev.zio%zio-aws-efs dev.zio%zio-aws-cloudformation dev.zio%zio-aws-ebs dev.zio%zio-aws-opensearchserverless dev.zio%zio-aws-applicationdiscovery dev.zio%zio-aws-personalizeruntime dev.zio%zio-aws-medialive dev.zio%zio-aws-devopsguru dev.zio%zio-aws-fms dev.zio%zio-aws-athena dev.zio%zio-aws-iotanalytics dev.zio%zio-aws-appconfigdata dev.zio%zio-aws-opensearch dev.zio%zio-aws-alexaforbusiness dev.zio%zio-aws-rekognition dev.zio%zio-aws-ecrpublic dev.zio%zio-aws-pinpointsmsvoicev2 dev.zio%zio-aws-firehose dev.zio%zio-aws-organizations dev.zio%zio-aws-grafana dev.zio%zio-aws-transfer dev.zio%zio-aws-controltower dev.zio%zio-aws-clouddirectory dev.zio%zio-aws-iotthingsgraph dev.zio%zio-aws-drs dev.zio%zio-aws-apigateway dev.zio%zio-aws-codestar dev.zio%zio-aws-codecatalyst dev.zio%zio-aws-route53recoverycontrolconfig dev.zio%zio-aws-appmesh dev.zio%zio-aws-oam dev.zio%zio-aws-devicefarm dev.zio%zio-aws-sesv2 dev.zio%zio-aws-iotsecuretunneling dev.zio%zio-aws-ssmsap dev.zio%zio-aws-managedblockchain dev.zio%zio-aws-savingsplans dev.zio%zio-aws-marketplacecommerceanalytics dev.zio%zio-aws-backup dev.zio%zio-aws-amplifybackend dev.zio%zio-aws-cloudhsm dev.zio%zio-aws-memorydb dev.zio%zio-aws-apigatewayv2 dev.zio%zio-aws-forecast dev.zio%zio-aws-servicecatalog dev.zio%zio-aws-emr dev.zio%zio-aws-connectcontactlens dev.zio%zio-aws-applicationinsights dev.zio%zio-aws-mediastoredata dev.zio%zio-aws-connectcampaigns dev.zio%zio-aws-forecastquery dev.zio%zio-aws-iot dev.zio%zio-aws-inspector2 dev.zio%zio-aws-lightsail dev.zio%zio-aws-kms dev.zio%zio-aws-sns dev.zio%zio-aws-pi dev.zio%zio-aws-cloudwatchevents dev.zio%zio-aws-resourcegroups dev.zio%zio-aws-quicksight dev.zio%zio-aws-codecommit dev.zio%zio-aws-chimesdkidentity dev.zio%zio-aws-iotdataplane dev.zio%zio-aws-costandusagereport dev.zio%zio-aws-cognitosync dev.zio%zio-aws-redshift dev.zio%zio-aws-applicationcostprofiler dev.zio%zio-aws-workspacesweb dev.zio%zio-aws-iotjobsdataplane dev.zio%zio-aws-mediastore dev.zio%zio-aws-finspacedata dev.zio%zio-aws-mgn dev.zio%zio-aws-elasticbeanstalk dev.zio%zio-aws-ivschat dev.zio%zio-aws-comprehend dev.zio%zio-aws-textract dev.zio%zio-aws-applicationautoscaling dev.zio%zio-aws-synthetics dev.zio%zio-aws-emrserverless dev.zio%zio-aws-iotevents dev.zio%zio-aws-elasticsearch dev.zio%zio-aws-docdbelastic dev.zio%zio-aws-ssmcontacts dev.zio%zio-aws-greengrassv2 dev.zio%zio-aws-netty dev.zio%zio-aws-support dev.zio%zio-aws-iot1clickprojects dev.zio%zio-aws-sqs dev.zio%zio-aws-lookoutmetrics dev.zio%zio-aws-voiceid dev.zio%zio-aws-timestreamquery dev.zio%zio-aws-migrationhubstrategy dev.zio%zio-aws-chimesdkmeetings dev.zio%zio-aws-iotdeviceadvisor dev.zio%zio-aws-translate dev.zio%zio-aws-glacier dev.zio%zio-aws-budgets dev.zio%zio-aws-storagegateway dev.zio%zio-aws-ram dev.zio%zio-aws-apigatewaymanagementapi dev.zio%zio-aws-acmpca dev.zio%zio-aws-connectcases dev.zio%zio-aws-elasticinference dev.zio%zio-aws-elasticloadbalancing dev.zio%zio-aws-macie dev.zio%zio-aws-glue dev.zio%zio-aws-iotroborunner dev.zio%zio-aws-lexruntimev2 dev.zio%zio-aws-mediaconnect dev.zio%zio-aws-cloudsearchdomain dev.zio%zio-aws-kinesisvideowebrtcstorage dev.zio%zio-aws-appintegrations dev.zio%zio-aws-workmailmessageflow dev.zio%zio-aws-apprunner dev.zio%zio-aws-sagemakerruntime dev.zio%zio-aws-sagemaker dev.zio%zio-aws-health dev.zio%zio-aws-backupgateway dev.zio%zio-aws-chime dev.zio%zio-aws-mediaconvert dev.zio%zio-aws-directory dev.zio%zio-aws-cloudhsmv2 dev.zio%zio-aws-arczonalshift dev.zio%zio-aws-sagemakerfeaturestoreruntime dev.zio%zio-aws-marketplaceentitlement dev.zio%zio-aws-servicediscovery dev.zio%zio-aws-autoscalingplans dev.zio%zio-aws-kinesisvideo dev.zio%zio-aws-codedeploy dev.zio%zio-aws-config dev.zio%zio-aws-datapipeline dev.zio%zio-aws-directconnect dev.zio%zio-aws-privatenetworks dev.zio%zio-aws-appflow dev.zio%zio-aws-sms dev.zio%zio-aws-ssoadmin dev.zio%zio-aws-mediapackage dev.zio%zio-aws-gamesparks dev.zio%zio-aws-s3 dev.zio%zio-aws-eks dev.zio%zio-aws-swf dev.zio%zio-aws-lookoutvision dev.zio%zio-aws-amp dev.zio%zio-aws-iotwireless dev.zio%zio-aws-finspace dev.zio%zio-aws-iotfleetwise dev.zio%zio-aws-lexmodelbuilding dev.zio%zio-aws-ivs dev.zio%zio-aws-appstream dev.zio%zio-aws-lexruntime dev.zio%zio-aws-globalaccelerator dev.zio%zio-aws-chimesdkmessaging dev.zio%zio-aws-licensemanager dev.zio%zio-aws-transcribe dev.zio%zio-aws-braket dev.zio%zio-aws-sfn dev.zio%zio-aws-cloud9 dev.zio%zio-aws-cloudcontrol dev.zio%zio-aws-scheduler dev.zio%zio-aws-fsx dev.zio%zio-aws-kinesisanalytics", "config":{ "projects":{ "exclude":[ @@ -40139,7 +47106,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -40154,12 +47121,12 @@ ] }, - "tests":"full", + "tests":"compile-only", "sourcePatches":[ { - "path":"build.sbt", - "pattern":"val scala3 = \"3.1.3\"", - "replaceWith":"val scala3 = \"\"" + "path":"project/Common.scala", + "pattern":"val scala3Version = \"3.2.2\"", + "replaceWith":"val scala3Version = \"\"" } ] } @@ -40167,8 +47134,8 @@ "zio/zio-bson":{ "project":"zio/zio-bson", "repoUrl":"https://github.com/zio/zio-bson.git", - "revision":"v1.0.2", - "version":"1.0.2", + "revision":"v1.0.5", + "version":"1.0.5", "targets":"dev.zio%zio-bson", "config":{ "projects":{ @@ -40180,7 +47147,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -40197,11 +47164,7 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/BuildHelper.scala", - "pattern":"val Scala3: String = versions(\"3.2\")", - "replaceWith":"val Scala3: String = \"\"" - } + ] } }, @@ -40452,8 +47415,8 @@ "zio/zio-dynamodb":{ "project":"zio/zio-dynamodb", "repoUrl":"https://github.com/zio/zio-dynamodb.git", - "revision":"v0.2.9", - "version":"0.2.9", + "revision":"v0.2.12", + "version":"0.2.12", "targets":"dev.zio%zio-dynamodb", "config":{ "projects":{ @@ -40534,8 +47497,8 @@ "zio/zio-http":{ "project":"zio/zio-http", "repoUrl":"https://github.com/zio/zio-http.git", - "revision":"v3.0.0-RC1", - "version":"3.0.0-RC1", + "revision":"v3.0.0-RC3", + "version":"3.0.0-RC3", "targets":"dev.zio%zio-http-docs dev.zio%zio-http-cli dev.zio%zio-http dev.zio%zio-http-testkit", "config":{ "projects":{ @@ -40566,7 +47529,7 @@ "sourcePatches":[ { "path":"project/BuildHelper.scala", - "pattern":"val Scala3 = \"3.2.2\"", + "pattern":"val Scala3 = \"3.3.0\"", "replaceWith":"val Scala3 = \"\"" } ] @@ -40575,8 +47538,8 @@ "zio/zio-jdbc":{ "project":"zio/zio-jdbc", "repoUrl":"https://github.com/zio/zio-jdbc.git", - "revision":"v0.0.2", - "version":"0.0.2", + "revision":"v0.1.0", + "version":"0.1.0", "targets":"dev.zio%zio-jdbc", "config":{ "projects":{ @@ -40616,8 +47579,8 @@ "zio/zio-json":{ "project":"zio/zio-json", "repoUrl":"https://github.com/zio/zio-json.git", - "revision":"v0.5.0", - "version":"0.5.0", + "revision":"v0.6.2", + "version":"0.6.2", "targets":"dev.zio%zio-json dev.zio%zio-json-golden dev.zio%zio-json-interop-refined dev.zio%zio-json-yaml", "config":{ "projects":{ @@ -40656,7 +47619,7 @@ "sourcePatches":[ { "path":"project/BuildHelper.scala", - "pattern":"val ScalaDotty: String = \"3.2.2\"", + "pattern":"val ScalaDotty: String = \"3.3.0\"", "replaceWith":"val ScalaDotty: String = \"\"" } ] @@ -40665,8 +47628,8 @@ "zio/zio-kafka":{ "project":"zio/zio-kafka", "repoUrl":"https://github.com/zio/zio-kafka.git", - "revision":"v2.3.1", - "version":"2.3.1", + "revision":"v2.6.0", + "version":"2.6.0", "targets":"dev.zio%zio-kafka dev.zio%zio-kafka-docs dev.zio%zio-kafka-testkit", "config":{ "projects":{ @@ -40702,8 +47665,8 @@ "zio/zio-lambda":{ "project":"zio/zio-lambda", "repoUrl":"https://github.com/zio/zio-lambda.git", - "revision":"v1.0.3", - "version":"1.0.3", + "revision":"v1.0.4", + "version":"1.0.4", "targets":"dev.zio%zio-lambda dev.zio%zio-lambda-event dev.zio%zio-lambda-response", "config":{ "projects":{ @@ -40743,8 +47706,8 @@ "zio/zio-logging":{ "project":"zio/zio-logging", "repoUrl":"https://github.com/zio/zio-logging.git", - "revision":"v2.1.13", - "version":"2.1.13", + "revision":"v2.1.14", + "version":"2.1.14", "targets":"dev.zio%zio-logging-slf4j2 dev.zio%zio-logging-slf4j2-bridge dev.zio%zio-logging-jpl dev.zio%zio-logging-slf4j-bridge dev.zio%zio-logging dev.zio%zio-logging-slf4j", "config":{ "projects":{ @@ -40780,9 +47743,9 @@ "zio/zio-metrics-connectors":{ "project":"zio/zio-metrics-connectors", "repoUrl":"https://github.com/zio/zio-metrics-connectors.git", - "revision":"v2.0.8", - "version":"2.0.8", - "targets":"dev.zio%zio-metrics-connectors", + "revision":"v2.2.1", + "version":"2.2.1", + "targets":"dev.zio%zio-metrics-connectors-prometheus dev.zio%zio-metrics-connectors-statsd dev.zio%zio-metrics-connectors-newrelic dev.zio%zio-metrics-connectors-micrometer dev.zio%zio-metrics-connectors-datadog dev.zio%zio-metrics-connectors", "config":{ "projects":{ "exclude":[ @@ -40812,8 +47775,8 @@ "sourcePatches":[ { "path":"project/Version.scala", - "pattern":"val ScalaDotty = \"3.2.1\"", - "replaceWith":"val ScalaDotty = \"\"" + "pattern":"val Scala3 = \"3.3.0\"", + "replaceWith":"val Scala3 = \"\"" } ] } @@ -40903,7 +47866,7 @@ "zio/zio-morphir":{ "project":"zio/zio-morphir", "repoUrl":"https://github.com/zio/zio-morphir.git", - "revision":"6a3734aa49b9d7e028b7adcdea714c3352e67441", + "revision":"", "version":"0.1.0-M1", "targets":"", "config":{ @@ -40944,8 +47907,8 @@ "zio/zio-nio":{ "project":"zio/zio-nio", "repoUrl":"https://github.com/zio/zio-nio.git", - "revision":"v2.0.1", - "version":"2.0.1", + "revision":"v2.0.2", + "version":"2.0.2", "targets":"dev.zio%zio-nio", "config":{ "projects":{ @@ -40985,8 +47948,8 @@ "zio/zio-openai":{ "project":"zio/zio-openai", "repoUrl":"https://github.com/zio/zio-openai.git", - "revision":"v0.2.1", - "version":"0.2.1", + "revision":"v0.3.0", + "version":"0.3.0", "targets":"dev.zio%zio-openai", "config":{ "projects":{ @@ -41017,7 +47980,7 @@ "sourcePatches":[ { "path":"project/BuildHelper.scala", - "pattern":"val ScalaDotty: String = versions(\"3.2\")", + "pattern":"val ScalaDotty: String = versions(\"3.3\")", "replaceWith":"val ScalaDotty: String = \"\"" } ] @@ -41104,8 +48067,8 @@ "zio/zio-prelude":{ "project":"zio/zio-prelude", "repoUrl":"https://github.com/zio/zio-prelude.git", - "revision":"v1.0.0-RC19", - "version":"1.0.0-RC19", + "revision":"v1.0.0-RC21", + "version":"1.0.0-RC21", "targets":"dev.zio%zio-prelude-docs dev.zio%zio-prelude-experimental-laws dev.zio%zio-laws-laws dev.zio%zio-prelude dev.zio%zio-prelude-experimental-tests dev.zio%zio-prelude-macros dev.zio%zio-prelude-experimental dev.zio%zio-prelude-scala-parallel-collections", "config":{ "projects":{ @@ -41136,7 +48099,7 @@ "sourcePatches":[ { "path":"project/BuildHelper.scala", - "pattern":"val Scala3: String = \"3.2.2\"", + "pattern":"val Scala3: String = \"3.3.0\"", "replaceWith":"val Scala3: String = \"\"" } ] @@ -41186,8 +48149,8 @@ "zio/zio-profiling":{ "project":"zio/zio-profiling", "repoUrl":"https://github.com/zio/zio-profiling.git", - "revision":"v0.2.0", - "version":"0.2.0", + "revision":"v0.2.1", + "version":"0.2.1", "targets":"dev.zio%zio-profiling dev.zio%zio-profiling-jmh dev.zio%zio-profiling-tagging-plugin", "config":{ "projects":{ @@ -41227,8 +48190,8 @@ "zio/zio-protoquill":{ "project":"zio/zio-protoquill", "repoUrl":"https://github.com/zio/zio-protoquill.git", - "revision":"v4.6.0.1", - "version":"4.6.0.1", + "revision":"v4.8.0", + "version":"4.8.0", "targets":"io.getquill%quill-jasync io.getquill%quill-zio io.getquill%quill-jasync-postgres io.getquill%quill-doobie io.getquill%quill-sql io.getquill%quill-jdbc io.getquill%quill-cassandra-zio io.getquill%quill-caliban io.getquill%quill-cassandra io.getquill%quill-jdbc-zio", "config":{ "projects":{ @@ -41240,7 +48203,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -41264,9 +48227,9 @@ "zio/zio-query":{ "project":"zio/zio-query", "repoUrl":"https://github.com/zio/zio-query.git", - "revision":"v0.4.0", - "version":"0.4.0", - "targets":"dev.zio%zio-query dev.zio%zio-query-docs", + "revision":"v0.5.1", + "version":"0.5.1", + "targets":"dev.zio%zio-query", "config":{ "projects":{ "exclude":[ @@ -41294,19 +48257,15 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/BuildHelper.scala", - "pattern":"val ScalaDotty: String = versions(\"3.2\")", - "replaceWith":"val ScalaDotty: String = \"\"" - } + ] } }, "zio/zio-quill":{ "project":"zio/zio-quill", "repoUrl":"https://github.com/zio/zio-quill.git", - "revision":"v4.6.0", - "version":"4.6.0", + "revision":"v4.8.0", + "version":"4.8.0", "targets":"io.getquill%quill-engine io.getquill%quill-util", "config":{ "projects":{ @@ -41318,7 +48277,7 @@ } }, "java":{ - + "version":"17" }, "sbt":{ "commands":[ @@ -41383,8 +48342,8 @@ "zio/zio-rocksdb":{ "project":"zio/zio-rocksdb", "repoUrl":"https://github.com/zio/zio-rocksdb.git", - "revision":"v0.4.2", - "version":"0.4.2", + "revision":"v0.4.3", + "version":"0.4.3", "targets":"dev.zio%zio-rocksdb", "config":{ "projects":{ @@ -41461,9 +48420,9 @@ "zio/zio-schema":{ "project":"zio/zio-schema", "repoUrl":"https://github.com/zio/zio-schema.git", - "revision":"v0.4.11", - "version":"0.4.11", - "targets":"dev.zio%zio-schema-derivation dev.zio%zio-schema-docs dev.zio%zio-schema-zio-test dev.zio%zio-schema-macros dev.zio%zio-schema-msg-pack dev.zio%zio-schema-protobuf dev.zio%zio-schema-thrift dev.zio%zio-schema-json dev.zio%zio-schema-avro dev.zio%zio-schema dev.zio%zio-schema-optics", + "revision":"v0.4.15", + "version":"0.4.15", + "targets":"dev.zio%zio-schema-bson dev.zio%zio-schema-derivation dev.zio%zio-schema-docs dev.zio%zio-schema-zio-test dev.zio%zio-schema-macros dev.zio%zio-schema-msg-pack dev.zio%zio-schema-protobuf dev.zio%zio-schema-thrift dev.zio%zio-schema-json dev.zio%zio-schema-avro dev.zio%zio-schema dev.zio%zio-schema-optics", "config":{ "projects":{ "exclude":[ @@ -41540,12 +48499,49 @@ ] } }, + "zio/zio-sqs":{ + "project":"zio/zio-sqs", + "repoUrl":"https://github.com/zio/zio-sqs.git", + "revision":"v0.6.0", + "version":"0.6.0", + "targets":"dev.zio%zio-sqs dev.zio%zio-sqs-docs", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + + ] + } + }, "zio/zio-telemetry":{ "project":"zio/zio-telemetry", "repoUrl":"https://github.com/zio/zio-telemetry.git", - "revision":"v3.0.0-RC10", - "version":"3.0.0-RC10", - "targets":"dev.zio%zio-opencensus dev.zio%zio-opentelemetry dev.zio%zio-opentracing", + "revision":"v3.0.0-RC17", + "version":"3.0.0-RC17", + "targets":"dev.zio%zio-opencensus dev.zio%zio-opentelemetry dev.zio%zio-opentracing dev.zio%zio-telemetry-docs", "config":{ "projects":{ "exclude":[ @@ -41556,7 +48552,7 @@ } }, "java":{ - "version":"17" + "version":"8" }, "sbt":{ "commands":[ @@ -41573,11 +48569,7 @@ }, "tests":"full", "sourcePatches":[ - { - "path":"project/BuildHelper.scala", - "pattern":"val Scala3: String = versions(\"3\")", - "replaceWith":"val Scala3: String = \"\"" - } + ] } }, @@ -41622,6 +48614,47 @@ ] } }, + "zio/zio-wasm":{ + "project":"zio/zio-wasm", + "repoUrl":"https://github.com/zio/zio-wasm.git", + "revision":"v0.1.4", + "version":"0.1.4", + "targets":"dev.zio%zio-wasm", + "config":{ + "projects":{ + "exclude":[ + + ], + "overrides":{ + + } + }, + "java":{ + "version":"17" + }, + "sbt":{ + "commands":[ + + ], + "options":[ + + ] + }, + "mill":{ + "options":[ + + ] + }, + "tests":"full", + "sourcePatches":[ + { + "path":"project/BuildHelper.scala", + "pattern":"val Scala3: String = versions(\"3.3\")", + "replaceWith":"val Scala3: String = \"\"" + } + ] + } + }, "zygfryd/scala-zygf-jackshaft":{ "project":"zygfryd/scala-zygf-jackshaft", "repoUrl":"https://github.com/zygfryd/scala-zygf-jackshaft.git", diff --git a/.github/workflows/buildPlan-A.yaml b/.github/workflows/buildPlan-A.yaml index 27f196a1..333e1225 100644 --- a/.github/workflows/buildPlan-A.yaml +++ b/.github/workflows/buildPlan-A.yaml @@ -65,12 +65,18 @@ jobs: - name: "akka/akka" - name: "akka/akka-http" - name: "akka/akka-persistence-cassandra" + - name: "apache/incubator-pekko" + - name: "apache/incubator-pekko-connectors-kafka" + - name: "apache/incubator-pekko-http" + - name: "automorph-org/automorph" - name: "babylonhealth/lit-fhir" + - name: "haifengl/smile" - name: "hnaderi/scala-k8s" - name: "lichess-org/lila" - name: "softwaremill/sttp" - name: "softwaremill/tapir" - name: "thoughtworksinc/dsl.scala" + - name: "zio/zio-aws" steps: - name: "Git Checkout" uses: actions/checkout@v3 @@ -95,19 +101,20 @@ jobs: include: - name: "afsalthaj/constraintless" - name: "akka/alpakka" - - name: "almond-sh/almond" - name: "apache/incubator-pekko-persistence-dynamodb" - - name: "cequence-io/openai-scala-client" + - name: "bishabosha/enum-extensions" - name: "cequence-io/pinecone-scala" - name: "com-lihaoyi/geny" - name: "com-lihaoyi/sourcecode" - name: "com-lihaoyi/utest" - name: "cquiroz/scala-java-time" + - name: "davenverse/googleapis-http4s" - name: "devlaam/leucine" - name: "dieproht/matr" + - name: "dragonfly-ai/cliviz" - name: "dragonfly-ai/narr" + - name: "eed3si9n/ifdef" - name: "eed3si9n/verify" - - name: "eltherion/http4s-timer" - name: "epfl-lara/lisa" - name: "fdietze/formidable" - name: "fommil/jzon" @@ -115,13 +122,12 @@ jobs: - name: "getshaka-org/native-converter" - name: "gvolpe/trading" - name: "hamnis/dataclass-scalafix" - - name: "http4s/hpack" - name: "iheartradio/ficus" - name: "indoorvivants/sn-bindgen" - name: "j5ik2o/akka-persistence-s3" - name: "jcouyang/jujiu" - name: "jodersky/simplesql" - - name: "jphmrst/scala-latex" + - name: "jvican/dijon" - name: "kubukoz/debug-utils" - name: "kuceramartin/tyqu" - name: "lichess-org/lila-ws" @@ -131,7 +137,6 @@ jobs: - name: "lolgab/snunit" - name: "lunduniversity/introprog-scalalib" - name: "max-leuthaeuser/scroll" - - name: "mimoguz/layeredfonticon" - name: "nafg/scala-phonenumber" - name: "nscala-time/nscala-time" - name: "nthportal/spaghetti" @@ -139,12 +144,8 @@ jobs: - name: "openmole/scaladget" - name: "otavia-projects/mill-rust-jni" - name: "outr/perfolation" - - name: "pjfanning/akka-rabbitmq" - - name: "raistlintao/scalalogger" - - name: "reactivemongo/reactivemongo-bson" + - name: "playframework/omnidoc" - name: "rssh/dotty-cps-async" - - name: "sake92/squery" - - name: "sangria-graphql/sangria-streaming-api" - name: "sbt/sbt-jni" - name: "scala-cli/libdaemon-jvm" - name: "scala-interop/slinc" @@ -159,9 +160,7 @@ jobs: - name: "scalameta/metals" - name: "scalqa/scalqa" - name: "sciss/fileutil" - - name: "sciss/linkernighantsp" - name: "sciss/raphaelicons" - - name: "sciss/transform4s" - name: "sciss/treetable" - name: "sirthias/macrolizer" - name: "softwaremill/magnolia" @@ -174,7 +173,6 @@ jobs: - name: "typelevel/literally" - name: "typelevel/scalacheck" - name: "typelevel/simulacrum-scalafix" - - name: "webjars/webjars-play" - name: "xuwei-k/nobox" - name: "zio/zio-morphir" steps: @@ -207,18 +205,14 @@ jobs: - name: "com-lihaoyi/os-lib" - name: "com-lihaoyi/requests-scala" - name: "com-lihaoyi/scalatags" - - name: "dragonfly-ai/slash" + - name: "dragonfly-ai/matrix" - name: "eed3si9n/expecty" - name: "ekrich/sconfig" + - name: "etorreborre/specs2" - name: "fomkin/levsha" - name: "ichoran/kse3" - - name: "indoorvivants/sn-demangler" - name: "jd557/minart" - - name: "martinhh/scalacheck-derived" - name: "monix/minitest" - - name: "reactivemongo/reactivemongo" - - name: "reactivemongo/reactivemongo-play-json" - - name: "rssh/shim--scala-async--dotty-cps-async" - name: "sbt-jib/sbt-jib" - name: "sbt/sbinary" - name: "sbt/sbt-dynver" @@ -231,10 +225,10 @@ jobs: - name: "scopt/scopt" - name: "simy4/coregex" - name: "sirthias/parboiled2" + - name: "slick/slick" - name: "suzaku-io/boopickle" - name: "typelevel/discipline" - name: "typelevel/jawn" - - name: "typelevel/scalacheck-xml" - name: "wz7982/easysql-scala" steps: - name: "Git Checkout" @@ -258,7 +252,6 @@ jobs: strategy: matrix: include: - - name: "2m/yabai-scala" - name: "47degrees/munit-akka" - name: "aaronp/args4c" - name: "aaronp/eie" @@ -266,6 +259,7 @@ jobs: - name: "akka/akka-persistence-r2dbc" - name: "akka/alpakka-kafka" - name: "altoo-ag/akka-kryo-serialization" + - name: "altoo-ag/scala-kryo-serialization" - name: "andyglow/scala-range" - name: "andyglow/scala-xml-diff" - name: "andyglow/typesafe-config-scala" @@ -274,11 +268,11 @@ jobs: - name: "arturopala/buffer-and-slice" - name: "arturopala/gitignore" - name: "arturopala/validator" + - name: "asflierl/sglicko2" - name: "ashwinbhaskar/sight-scala" - name: "atry/html.scala" - name: "autodeployai/pmml4s" - - name: "bilal-fazlani/swiftbar4s" - - name: "bitmarck-service/base32check-scala" + - name: "bahmanm/persianutils" - name: "blemale/scaffeine" - name: "bpholt/java-time-literals" - name: "carlosedp/riscvassembler" @@ -287,48 +281,49 @@ jobs: - name: "chrisokasaki/hwtest" - name: "chronoscala/chronoscala" - name: "ciaraobrien/dottytags" - - name: "codacy/codacy-plugins-api" + - name: "cjmx/cjmx" - name: "codingwell/scala-guice" - name: "com-lihaoyi/pprint" - name: "cornerman/scala-cuid" - name: "cquiroz/sbt-locales" - - name: "dacr/drools-scripting" - name: "dacr/jassh" - - name: "dacr/naturalsort" - name: "dacr/primes" - name: "davegurnell/unindent" - - name: "davidledwards/scalop" - - name: "dragonfly-ai/cliviz" + - name: "donderom/llm4s" + - name: "dvgica/healthful" - name: "dvreeze/yaidom" - name: "eed3si9n/gigahorse" - name: "eed3si9n/sjson-new" - name: "embeddedkafka/embedded-kafka" + - name: "enragedginger/akka-quartz-scheduler" - name: "enriquerodbe/borsh4s" - name: "erikvanoosten/metrics-scala" - name: "failurewall/failurewall" - name: "fasterxml/jackson-module-scala" + - name: "fmonniot/scala3mock" + - name: "folone/poi.scala" - name: "foundweekends/knockoff" + - name: "frugalmechanic/fm-common" - name: "frugalmechanic/scala-optparse" - name: "gekomad/scala-compress" - name: "ghik/anodi" - name: "giabao/paho-akka" - name: "giiita/refuel" - - name: "greenfossil/commons-i18n" - - name: "greenfossil/commons-json" + - name: "greenfossil/thorium" - name: "greenleafoss/green-leaf-mongo" - name: "guardian/fastly-api-client" - name: "guardian/pa-football-client" + - name: "guardian/play-brotli-filter" + - name: "guntiso/mojoz" - name: "gzoller/scalajack" - - name: "h8io/borscht" + - name: "hagay3/skuber" - name: "hedgehogqa/scala-hedgehog" - - name: "herminiogg/shexml" - name: "hseeberger/slf4s" - name: "http4s/http4s-finagle" - name: "i10416/cssminifier" - name: "i10416/munkres" - name: "ij-plugins/ijp-javacv" - name: "ij-plugins/ijp-toolkit" - - name: "indoorvivants/rendition" - name: "irevive/union-derivation" - name: "j5ik2o/base64scala" - name: "j5ik2o/docker-controller-scala" @@ -336,29 +331,25 @@ jobs: - name: "jandom-devel/scalafix" - name: "jcouyang/dhall-generic" - name: "jcouyang/meow" - - name: "jkugiya/aws-v4-signer-scala" - - name: "jkugiya/ulid-scala" + - name: "jd557/interim" + - name: "jozic/scalaj" - name: "jozic/scalax-collection" - name: "jphmrst/bps" + - name: "julianpeeters/avrohugger" - name: "kcrypt/scala-biginteger" - name: "kcrypt/scala-blake3" - name: "kcrypt/scala-sha" - - name: "kzmake/uuid7s" - - name: "lambdaworks/scountries" - - name: "lhns/scala-edifact" + - name: "kolotaev/ride" - name: "lightbend-labs/lightbend-emoji" - name: "lightbend-labs/scala-logging" - name: "lightbend/mima" - name: "lloydmeta/ltsv-logger" - name: "log4s/log4s" - name: "lomigmegard/akka-http-cors" - - name: "lorandszakacs/enclosure" - name: "losizm/grapple" - - name: "losizm/little-config" - - name: "losizm/little-json" - - name: "losizm/little-time" - name: "losizm/scamper" - name: "makiftutuncu/effect" + - name: "makingthematrix/inject" - name: "makingthematrix/signals3" - name: "malliina/mobile-push" - name: "marchliu/jaskell-dotty" @@ -366,42 +357,43 @@ jobs: - name: "metarank/cfor" - name: "mixql/mixql-core" - name: "monix/implicitbox" - - name: "mrdimosthenis/glicko2" - name: "nafg/css-dsl" - - name: "nicolasfara/ecscala" - name: "note/mini-refined" - name: "nremond/pbkdf2-scala" - - name: "nthportal/scala-platform" + - name: "nulab/scala-oauth2-provider" - name: "ohze/akka-guice" + - name: "ohze/couchbase-scala" - name: "ohze/php-utils" - - name: "opaliasystems/opalia-commons-core" - name: "outr/lucene4s" - name: "outr/reactify" - name: "paoloboni/spray-json-derived-codecs" - name: "pathikrit/better-files" - name: "petitviolet/scala-operator" - name: "phenoscape/scowl" - - name: "pityka/pairwisealignment" - name: "pjfanning/micrometer-akka" + - name: "pjfanning/micrometer-pekko" - name: "pjfanning/scala-faker" - - name: "playframework/scalatestplus-play" + - name: "playframework/cachecontrol" + - name: "playframework/play-json" + - name: "playframework/twirl" - name: "plokhotnyuk/fast-string-interpolator" - name: "plokhotnyuk/rtree2d" - name: "polyvariant/colorize-scala" - name: "postgresql-async/postgresql-async" - name: "purplekingdomgames/ultraviolet" + - name: "ranyitz/brush" + - name: "ranyitz/casing" - name: "raquo/scala-dom-types" - - name: "reactivemongo/reactivemongo-streaming" - name: "rescala-lang/rescala" - name: "rssh/trackedfuture" - - name: "rtyley/line-break-preserving-line-splitting" - name: "rtyley/scala-textmatching" - - name: "sake92/tupson" - - name: "sangria-graphql/macro-visit" + - name: "ruippeixotog/akka-testkit-specs2" + - name: "ruippeixotog/scala-scraper" + - name: "sake92/hepek" + - name: "samueleresca/pekko-quartz-scheduler" - name: "sangria-graphql/sangria-marshalling-api" - name: "sbt/io" - name: "scala-native/scala-native" - - name: "scala-tessella/ring-seq" - name: "scala-tsi/scala-tsi" - name: "scala-workers/commons-lang3-bridge" - name: "scala/scala-swing" @@ -411,24 +403,20 @@ jobs: - name: "scalaprops/scalaprops" - name: "scalapy/python-native-libs" - name: "scalapy/scalapy" - - name: "scalatest/scalatestplus-easymock" - - name: "scalatest/scalatestplus-jmock" - name: "scalatest/scalatestplus-junit" + - name: "scalatest/scalatestplus-junit5" - name: "scalatest/scalatestplus-mockito" - name: "scalatest/scalatestplus-scalacheck" - name: "scalatest/scalatestplus-selenium" - - name: "scalikejdbc/scalikejdbc" - name: "scallop/scallop" - name: "scf37/config3" - name: "scf37/hottie" - name: "sciss/audiofile" - - name: "sciss/equal" - name: "sciss/fingertree" - name: "sciss/kollflitz" - name: "sciss/numbers" - name: "sciss/scalaosc" - name: "sciss/topology" - - name: "scodec/scodec-bits" - name: "scoverage/scalac-scoverage-plugin" - name: "sellmerfud/optparse" - name: "sfxcode/pebble-scala" @@ -438,17 +426,14 @@ jobs: - name: "sirthias/spliff" - name: "smootoo/tablediff" - name: "softwaremill/macwire" - - name: "softwaremill/ox" - name: "softwaremill/quicklens" - name: "softwaremill/retry" - name: "softwaremill/sttp-model" - - name: "softwaremill/tapir-loom" - name: "spotify/featran" + - name: "sqids/sqids-scala" - name: "squeryl/squeryl" - - name: "ssanj/delight" - name: "staeff777/scalaveusz" - name: "sullis/jms-testkit" - - name: "sweet-delights/delightful-cron" - name: "tabdulradi/nullable" - name: "takezoe/scala-jdbc" - name: "takezoe/solr-scala-client" @@ -462,10 +447,10 @@ jobs: - name: "tpolecat/typename" - name: "typelevel/discipline-munit" - name: "typelevel/discipline-scalatest" - - name: "typelevel/fabric" + - name: "typelevel/discipline-specs2" - name: "typelevel/scalac-compat" - - name: "typelevel/scalac-options" - name: "typelevel/squants" + - name: "ua-parser/uap-scala" - name: "vincenzobaz/spark-scala3" - name: "wangzaixiang/scala-sql" - name: "whisklabs/docker-it-scala" @@ -474,7 +459,9 @@ jobs: - name: "xuwei-k/applybuilder" - name: "xuwei-k/iarray" - name: "xuwei-k/jwt-scala" + - name: "xuwei-k/play2scalaz" - name: "xuwei-k/zeroapply" + - name: "zengularity/benji" - name: "zero-deps/proto" - name: "zio/izumi-reflect" steps: @@ -499,36 +486,50 @@ jobs: strategy: matrix: include: + - name: "ajozwik/pekko-smtp-server" - name: "akka/akka-grpc" - name: "akka/akka-management" - - name: "atry/futurebinding.scala" + - name: "apache/incubator-pekko-grpc" + - name: "apache/incubator-pekko-management" + - name: "augustnagro/magnum" + - name: "benhutchison/scalaswingcontrib" + - name: "cequence-io/openai-scala-client" - name: "cquiroz/scala-java-locales" - name: "cucumber/cucumber-jvm-scala" + - name: "doriordan/skuber" + - name: "dragonfly-ai/slash" - name: "dvreeze/tqa" - name: "embeddedkafka/embedded-kafka-schema-registry" + - name: "frugalmechanic/fm-lazyseq" + - name: "frugalmechanic/fm-serializer" - name: "gekomad/scala-regex-collection" + - name: "gitbucket/blocking-slick" - name: "gmethvin/directory-watcher" - - name: "greenfossil/data-mapping" + - name: "herminiogg/shexml" - name: "ij-plugins/ijp-color" - name: "ij-plugins/ijp-debayer2sx" - - name: "ij-plugins/ijp-scala-console" - name: "inkytonik/kiama" - name: "j-mie6/parsley" - - name: "jelly-rdf/jelly-jvm" + - name: "j5ik2o/akka-persistence-dynamodb" - name: "jobial-io/scase" - name: "json4s/json4s" - name: "juliano/pokeapi-scala" - name: "kevin-lee/just-semver" + - name: "leviysoft/oolong" + - name: "matsluni/aws-spi-akka-http" - name: "metarank/ltrlib" - name: "msgpack4z/msgpack4z-core" - name: "norbert-radyk/spoiwo" - name: "nrinaudo/kantan.parsers" - - name: "outr/profig" - - name: "pjfanning/jackson-module-enumeratum" - name: "pjfanning/jackson-module-scala3-enum" + - name: "playframework/play-doc" + - name: "playframework/play-file-watch" + - name: "playframework/play-ws" + - name: "playframework/scalatestplus-play" - name: "rallyhealth/scalacheck-ops" - name: "rediscala/rediscala" - - name: "sake92/hepek" + - name: "sake92/sharaf" + - name: "sake92/squery" - name: "sangria-graphql/sangria-ion" - name: "sangria-graphql/sangria-msgpack" - name: "sangria-graphql/sangria-play-json" @@ -540,21 +541,26 @@ jobs: - name: "scalapb-json/scalapb-json-common" - name: "scalapb/common-protos" - name: "scalapb/scalapb-grpcweb" - - name: "scalikejdbc/scalikejdbc-async" - - name: "scalikejdbc/scalikejdbc-play-support" + - name: "scalikejdbc/scalikejdbc" - name: "sciss/scalacolliderugens" - name: "sciss/scissdsp" - - name: "scodec/scodec" + - name: "scodec/scodec-bits" - name: "seratch/awscala" - name: "shiftleftsecurity/overflowdb" - name: "shiftleftsecurity/overflowdb-codegen" + - name: "softwaremill/ox" - name: "softwaremill/scala-id-generator" + - name: "softwaremill/tapir-loom" - name: "stryker-mutator/stryker4s" - name: "swagger-akka-http/swagger-scala-module" + - name: "thoughtworksinc/bindable.scala" - name: "tkrs/fluflu" - name: "tototoshi/slick-joda-mapper" - name: "twitter/util" - name: "typelevel/cats" + - name: "typelevel/fabric" + - name: "typelevel/scalac-options" + - name: "typelevel/spotted-leopards" - name: "vagmcs/optimus" - name: "virtuslab/scala-yaml" - name: "xuwei-k/optparse-applicative" @@ -585,75 +591,65 @@ jobs: - name: "akka/akka-projection" - name: "andyglow/websocket-scala-client" - name: "ariskk/flink4s" - - name: "armanbilge/litter" - - name: "bcarter97/id-generator" - name: "bilal-fazlani/zio-ulid" - - name: "billzabob/fordeckmacia" - name: "bitlap/rolls" - name: "carlosedp/zio-channel" - - name: "casehubdk/hxl" - name: "clulab/processors" - name: "codedx/mapk" - - name: "cornerman/sloth" - name: "dacr/zio-worksheet" - name: "davenverse/cats-scalacheck" + - name: "dfianthdl/dfiant" - name: "disneystreaming/alloy" - name: "dobrynya/zio-jms" - name: "dvgica/managerial" - name: "earogov/ordset" - - name: "errors4s/errors4s-core" - name: "findify/flink-adt" + - name: "frugalmechanic/fm-flatfile" - name: "fthomas/status-page" - - name: "gchudnov/bscript" - name: "gchudnov/swearwolf" - name: "geirolz/fluent-copy" - name: "geirolz/scope" - - name: "greenfossil/thorium" - - name: "guidoschmidt17/zio-pgcopy" + - name: "hmemcpy/zio-clippy" - name: "inoio/solrs" - name: "j-mie6/parsley-cats" - name: "japgolly/univeq" - - name: "jatcwang/difflicious" - name: "jczuchnowski/zio-pulsar" - - name: "jkobejs/cron" - name: "kitlangton/animus" - name: "kitlangton/quotidian" - name: "kubukoz/drops" - name: "marcinzh/turbolift" - - name: "marcinzh/yamlike" - - name: "msgpack4z/msgpack4z-jawn" - name: "msgpack4z/msgpack4z-play" - name: "noelwelsh/mads" - - name: "outr/scalapass" - - name: "palanga/parana" + - name: "outr/profig" - name: "palanga/zio-cassandra" - - name: "pjfanning/zio-metrics-micrometer" + - name: "playframework/playframework" - name: "polynote/uzhttp" - name: "poslegm/munit-zio" - name: "purplekingdomgames/tyrian" - - name: "sangria-graphql/sangria-json4s-jackson" + - name: "scalalandio/chimney" - name: "scalapb/scalapb-json4s" - name: "scalapb/scalapb-validate" - name: "scalapb/zio-grpc" - - name: "sciss/lucre" + - name: "scalatra/scalatra" + - name: "scalikejdbc/scalikejdbc-async" + - name: "scalikejdbc/scalikejdbc-play-support" - name: "sciss/scalacollider" - - name: "scodec/scodec-cats" + - name: "scodec/scodec" - name: "senia-psm/zio-test-akka-http" - name: "shiftleftsecurity/codepropertygraph" - name: "sideeffffect/zio-testcontainers" - name: "sksamuel/avro4s" - name: "sky-uk/kafka-topic-loader" - - name: "swagger-akka-http/swagger-enumeratum-module" - - name: "swaldman/untemplate" + - name: "softwaremill/akka-http-session" + - name: "swagger-akka-http/swagger-pekko-http" - name: "tharwaninitin/cron4zio" - - name: "thoughtworksinc/bindable.scala" - name: "tomasmikula/libretto" - name: "tomasmikula/nutcracker" - - name: "torrentdam/bencode" - name: "typelevel/case-insensitive" - name: "typelevel/cats-collections" - name: "typelevel/cats-mtl" - name: "typelevel/cats-parse" + - name: "typelevel/cats-tagless" - name: "typelevel/cats-testkit-scalatest" - name: "typelevel/cats-time" - name: "typelevel/idna4s" @@ -663,18 +659,19 @@ jobs: - name: "typelevel/shapeless-3" - name: "typelevel/spire" - name: "typelevel/twiddles" + - name: "unfiltered/unfiltered" - name: "vitaliihonta/zio-temporal" - name: "vladkopanev/zio-saga" - name: "yakivy/dupin" + - name: "zaneli/scalikejdbc-athena" - name: "zio/interop-guava" - name: "zio/interop-reactive-streams" - - name: "zio/zio-bson" - name: "zio/zio-cache" - name: "zio/zio-nio" - name: "zio/zio-parser" - name: "zio/zio-profiling" + - name: "zio/zio-query" - name: "zio/zio-rocksdb" - - name: "zio/zio-telemetry" - name: "zio/zio-test-intellij" steps: - name: "Git Checkout" @@ -698,26 +695,34 @@ jobs: strategy: matrix: include: - - name: "cozydev-pink/snakecase" + - name: "billzabob/fordeckmacia" + - name: "devsisters/zio-agones" - name: "dvreeze/xpathparser" - name: "dwickern/scala-nameof" - name: "endpoints4s/endpoints4s" - name: "findify/flink-scala-api" - - name: "flink-extended/flink-scala-api" + - name: "flyway/flyway-play" + - name: "foundweekends/pamflet" - name: "higherkindness/droste" - name: "ironcorelabs/cats-scalatest" - name: "johnspade/csv3s" - name: "lemonlabsuk/scala-uri" - name: "milessabin/shapeless" + - name: "nulab/play2-oauth2-provider" + - name: "outr/scalapass" + - name: "playframework/play-ebean" + - name: "playframework/play-mailer" + - name: "playframework/play-slick" - name: "sagifogel/proptics" - - name: "scalameta/metaconfig" - name: "scalanlp/breeze" - name: "scalaprops/scalaprops-shapeless" - name: "sciss/scalacolliderswing" + - name: "scodec/scodec-cats" - name: "systemfw/dynosaur" - name: "theiterators/sealed-monad" - name: "typelevel/coop" - name: "typelevel/kittens" + - name: "webjars/webjars-play" - name: "y-yu/slick-bulk-insert" - name: "zeal18/zio-mongodb" - name: "zio/zio-logging" @@ -746,13 +751,14 @@ jobs: include: - name: "cheleb/zio-pravega" - name: "geirolz/advxml" + - name: "hjfruit/scalikejdbc-helper" - name: "lambdaworks/scurl-detector" - name: "ollls/zio-quartz-h2" - - name: "saucam/shiva" - - name: "scalameta/mdoc" + - name: "scalapb-json/scalapb-playjson" - name: "sciss/soundprocesses" - name: "svroonland/zio-kinesis" - name: "tharwaninitin/gcp4zio" + - name: "typelevel/cats-effect" - name: "unibas-gravis/scalismo" steps: - name: "Git Checkout" @@ -773,178 +779,56 @@ jobs: needs: [ setup-build, stage-7 ] continue-on-error: true timeout-minutes: 360 - strategy: - matrix: - include: - - name: "darrenjw/scala-glm" - - name: "darrenjw/scala-smfsb" - - name: "sciss/patterns" - - name: "sciss/wolkenpumpe" - - name: "stryker-mutator/weapon-regex" - - name: "zio/zio-constraintless" - - name: "zio/zio-ftp" - - name: "zio/zio-kafka" - - name: "zio/zio-mock" - - name: "zio/zio-optics" - - name: "zio/zio-prelude" - - name: "zio/zio-process" - - name: "zio/zio-query" - - name: "zio/zio-sql" - steps: - - name: "Git Checkout" - uses: actions/checkout@v3 - - name: "Build project" - uses: ./.github/actions/build-project - timeout-minutes: 60 - with: - project-name: ${{ matrix.name }} - extra-scalac-options: ${{ inputs.extra-scalac-options }} - disabled-scalac-options: ${{ inputs.disabled-scalac-options }} - scala-version: ${{ needs.setup-build.outputs.scala-version }} - maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} - elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} - elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-9: - runs-on: ubuntu-22.04 - needs: [ setup-build, stage-8 ] - continue-on-error: true - timeout-minutes: 360 - strategy: - matrix: - include: - - name: "kitlangton/zio-tui" - - name: "stuartapp/zcaffeine" - - name: "univalence/zio-spark" - - name: "zio/zio-amqp" - - name: "zio/zio-direct" - steps: - - name: "Git Checkout" - uses: actions/checkout@v3 - - name: "Build project" - uses: ./.github/actions/build-project - timeout-minutes: 60 - with: - project-name: ${{ matrix.name }} - extra-scalac-options: ${{ inputs.extra-scalac-options }} - disabled-scalac-options: ${{ inputs.disabled-scalac-options }} - scala-version: ${{ needs.setup-build.outputs.scala-version }} - maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} - elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} - elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-10: - runs-on: ubuntu-22.04 - needs: [ setup-build, stage-9 ] - continue-on-error: true - timeout-minutes: 360 - strategy: - matrix: - include: - - name: "creativescala/doodle" - - name: "creativescala/doodle-svg" - - name: "etorreborre/specs2" - - name: "japgolly/microlibs-scala" - - name: "japgolly/nyaya" - - name: "outr/scribe" - - name: "outr/spice" - - name: "typelevel/cats-effect" - steps: - - name: "Git Checkout" - uses: actions/checkout@v3 - - name: "Build project" - uses: ./.github/actions/build-project - timeout-minutes: 60 - with: - project-name: ${{ matrix.name }} - extra-scalac-options: ${{ inputs.extra-scalac-options }} - disabled-scalac-options: ${{ inputs.disabled-scalac-options }} - scala-version: ${{ needs.setup-build.outputs.scala-version }} - maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} - elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} - elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-11: - runs-on: ubuntu-22.04 - needs: [ setup-build, stage-10 ] - continue-on-error: true - timeout-minutes: 360 strategy: matrix: include: - name: "alexarchambault/case-app" - name: "ant8e/uuid4cats-effect" - - name: "argonaut-io/argonaut" - - name: "asflierl/sglicko2" - - name: "benhutchison/scalaswingcontrib" - - name: "carueda/tscfg" - name: "cb372/cats-retry" - - name: "cchantep/acolyte" - name: "comcast/ip4s" - name: "davenverse/cats-effect-time" - name: "davenverse/circuit" - name: "davenverse/clippette" - - name: "davenverse/condemned" - name: "davenverse/crossplatformioapp" - - name: "davenverse/env" - name: "davenverse/epimetheus" - - name: "davenverse/fiberlocal" - name: "davenverse/keysemaphore" - name: "davenverse/lock" - name: "davenverse/mapref" - name: "davenverse/mules" - - name: "davenverse/os-detect" - name: "davenverse/single-fibered" - - name: "enragedginger/akka-quartz-scheduler" - - name: "folone/poi.scala" + - name: "evolution-gaming/random" + - name: "evolution-gaming/scache" - name: "geirolz/cats-xml" - name: "geirolz/fly4s" - name: "gonzih/cats-nats" - - name: "hagay3/skuber" - name: "http4s/http4s-crypto" - - name: "indoorvivants/mdoc-effect" - name: "itv/quartz4s" - name: "janstenpickle/hotswap-ref" - - name: "japgolly/clear-config" - - name: "japgolly/scala-graal" - - name: "japgolly/scalacss" - - name: "japgolly/test-state" - name: "kamon-io/kamon" - name: "lhns/munit-tagless-final" - name: "liquibase4s/liquibase4s" - name: "monix/monix" - name: "nafg/simpleivr" - - name: "ohze/couchbase-scala" - - name: "ohze/sd-util" - - name: "outr/mailgun4s" - - name: "outr/robobrowser" - - name: "ovotech/meters4s" - name: "permutive-engineering/prometheus4cats" - name: "ppurang/abctemplates" - name: "ppurang/asynch" - - name: "rsemlal/clickhouse4cats" - - name: "ruippeixotog/akka-testkit-specs2" - - name: "ruippeixotog/scala-scraper" - - name: "scalatra/scalatra" - - name: "swaldman/unstatic" - - name: "thatscalaguy/ulid4cats" + - name: "sciss/wolkenpumpe" - name: "timwspence/cats-stm" - name: "tkrs/orcus" + - name: "tototoshi/nyanda" - name: "tpolecat/pool-party" - name: "travisbrown/iteratee" - name: "typelevel/bobcats" - name: "typelevel/cats-effect-testing" - - name: "typelevel/discipline-specs2" - name: "typelevel/keypool" - name: "typelevel/log4cats" - name: "typelevel/munit-cats-effect" - name: "typelevel/scalacheck-effect" - name: "typelevel/unique" - name: "typelevel/vault" - - name: "ua-parser/uap-scala" - - name: "unfiltered/unfiltered" - name: "virtuslab/avocado" - - name: "vlmiroshnikov/aero3" - name: "xebia-functional/fetch" - name: "yakivy/jam" - - name: "zengularity/benji" steps: - name: "Git Checkout" uses: actions/checkout@v3 @@ -959,35 +843,25 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-12: + stage-9: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-11 ] + needs: [ setup-build, stage-8 ] continue-on-error: true timeout-minutes: 360 strategy: matrix: include: - name: "akiomik/cats-nio-file" - - name: "davenverse/epimetheus-log4cats" - name: "emergentorder/onnx-scala" - name: "fiatjaf/scoin" - - name: "foundweekends/pamflet" - - name: "jvican/dijon" - name: "kailuowang/mau" - name: "kevin-lee/effectie" - - name: "lancewalton/treelog" - name: "monix/monix-bio" - name: "monix/monix-testing" - - name: "msgpack4z/msgpack4z-argonaut" - - name: "playframework/anorm" - - name: "sangria-graphql/sangria-argonaut" - name: "sangria-graphql/sangria-monix" - - name: "scalapb-json/scalapb-argonaut" - name: "typelevel/cats-effect-cps" - name: "typelevel/fs2" - name: "vladkopanev/cats-saga" - - name: "xuwei-k/httpz" - - name: "xuwei-k/unused-proto" - name: "yoohaemin/decrel" - name: "zio/interop-monix" steps: @@ -1004,9 +878,9 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-13: + stage-10: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-12 ] + needs: [ setup-build, stage-9 ] continue-on-error: true timeout-minutes: 360 strategy: @@ -1016,29 +890,28 @@ jobs: - name: "armanbilge/porcupine" - name: "armanbilge/schrodinger" - name: "armanbilge/van-cats" + - name: "creativescala/doodle" - name: "davenverse/catscript" - name: "davenverse/process" - - name: "delimobil/fs2-hbase" - name: "disneystreaming/weaver-test" - name: "durban/choam" + - name: "dwolla/fs2-aws" - name: "eikek/binny" - name: "fehu/opentracing-scala" - name: "filosganga/batcher" - name: "fingo/spata" - name: "fs2-blobstore/fs2-blobstore" - name: "gekomad/itto-csv" - - name: "jwojnowski/fs2-aes" - name: "keirlawson/fs2-progress" - name: "kevin-lee/logger-f" - name: "kovstas/fs2-throttler" - - name: "laserdisc-io/log-effect" - name: "lhns/fs2-compress" - name: "mjakubowski84/parquet4s" - name: "mkroli/dns4s" - name: "naoh87/lettucef" - name: "ollls/quartz-h2" - - name: "outr/scarango" - name: "profunktor/redis4cats" + - name: "pureharm/pureharm-aws" - name: "regis-leray/fs2-ftp" - name: "rssh/cps-async-connect" - name: "rustedbones/taxonomy" @@ -1068,29 +941,26 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-14: + stage-11: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-13 ] + needs: [ setup-build, stage-10 ] continue-on-error: true timeout-minutes: 360 strategy: matrix: include: - - name: "armanbilge/sadalsuud" - - name: "davenverse/epimetheus-redis4cats" + - name: "dieproht/molly" - name: "indoorvivants/weaver-playwright" - - name: "minosiants/pencil" + - name: "jatcwang/difflicious" + - name: "lowmelvin/formify-scala" + - name: "lowmelvin/hammer-scala" - name: "mvv/sager" - name: "polyvariant/scala-git-markers" - - name: "polyvariant/scodec-java-classfile" - name: "polyvariant/treesitter4s" - name: "rustedbones/scout" - name: "scodec/scodec-protocols" - - name: "trace4cats/trace4cats-zio" - name: "typelevel/catapult" - name: "user-signal/fs2-mqtt" - - name: "vigoo/prox" - - name: "zio/zio-connect" steps: - name: "Git Checkout" uses: actions/checkout@v3 @@ -1105,90 +975,230 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-15: + stage-12: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-14 ] + needs: [ setup-build, stage-11 ] continue-on-error: true timeout-minutes: 360 strategy: matrix: include: - - name: "2m/ciris-hocon" - - name: "analogweb/analogweb-scala" - - name: "andimiller/hedgehogs" - - name: "armanbilge/bayou" - - name: "armanbilge/scala-native-config-brew" - - name: "atnos-org/eff" - - name: "avast/datadog4s" - - name: "bkirwi/decline" - - name: "blackdoor/jose" - - name: "camunda-community-hub/camunda-dmn-tester" - - name: "cb372/scalacache" - - name: "chatwork/scala-jwk" - - name: "circe/circe-jackson" - - name: "clevercloud/pulsar4s" - - name: "cognitedata/cognite-sdk-scala" - - name: "com-lihaoyi/cask" - - name: "com-lihaoyi/upickle" - - name: "dacr/code-examples-manager" - - name: "dapperware/zio-slack" - - name: "data-tools/big-data-types" - - name: "davenverse/epimetheus-http4s" - - name: "davenverse/googleapis-http4s" - - name: "davenverse/mules-http4s" - - name: "delimobil/cabbit" - - name: "dylemma/xml-spac" - - name: "eikek/emil" - - name: "eikek/yamusca" - - name: "erikerlandson/coulomb" - - name: "eventstore/eventstore.jvm" - - name: "evolution-gaming/derivation" - - name: "fabiopinheiro/scala-did" - - name: "fd4s/fs2-kafka" + - name: "japgolly/microlibs-scala" + - name: "japgolly/nyaya" + - name: "nebula-contrib/testcontainers-nebula" + - name: "nebula-contrib/zio-nebula" + - name: "outr/scribe" + - name: "outr/spice" + - name: "reactivemongo/reactivemongo" + - name: "reactivemongo/reactivemongo-bson" + - name: "sangria-graphql/macro-visit" + - name: "sangria-graphql/sangria" + - name: "scalameta/mdoc" + - name: "scalameta/metaconfig" + - name: "zio/zio-config" + steps: + - name: "Git Checkout" + uses: actions/checkout@v3 + - name: "Build project" + uses: ./.github/actions/build-project + timeout-minutes: 60 + with: + project-name: ${{ matrix.name }} + extra-scalac-options: ${{ inputs.extra-scalac-options }} + disabled-scalac-options: ${{ inputs.disabled-scalac-options }} + scala-version: ${{ needs.setup-build.outputs.scala-version }} + maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} + elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} + elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} + stage-13: + runs-on: ubuntu-22.04 + needs: [ setup-build, stage-12 ] + continue-on-error: true + timeout-minutes: 360 + strategy: + matrix: + include: + - name: "carueda/tscfg" + - name: "darrenjw/scala-glm" + - name: "darrenjw/scala-smfsb" + - name: "flink-extended/flink-scala-api" + - name: "indoorvivants/mdoc-effect" + - name: "japgolly/clear-config" + - name: "japgolly/scala-graal" + - name: "japgolly/scalacss" + - name: "japgolly/test-state" + - name: "kaizen-solutions/virgil" + - name: "laserdisc-io/log-effect" + - name: "outr/mailgun4s" + - name: "outr/media4s" + - name: "outr/robobrowser" + - name: "outr/scarango" + - name: "reactivemongo/reactivemongo-play-json" + - name: "reactivemongo/reactivemongo-streaming" + - name: "sangria-graphql/sangria-relay" + - name: "sangria-graphql/sangria-slowlog" + - name: "scalamolecule/molecule" + - name: "stryker-mutator/weapon-regex" + - name: "svroonland/rezilience" + - name: "zio/zio-constraintless" + - name: "zio/zio-ftp" + - name: "zio/zio-kafka" + - name: "zio/zio-mock" + - name: "zio/zio-optics" + - name: "zio/zio-prelude" + - name: "zio/zio-process" + - name: "zio/zio-sql" + - name: "zio/zio-sqs" + - name: "zio/zio-telemetry" + steps: + - name: "Git Checkout" + uses: actions/checkout@v3 + - name: "Build project" + uses: ./.github/actions/build-project + timeout-minutes: 60 + with: + project-name: ${{ matrix.name }} + extra-scalac-options: ${{ inputs.extra-scalac-options }} + disabled-scalac-options: ${{ inputs.disabled-scalac-options }} + scala-version: ${{ needs.setup-build.outputs.scala-version }} + maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} + elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} + elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} + stage-14: + runs-on: ubuntu-22.04 + needs: [ setup-build, stage-13 ] + continue-on-error: true + timeout-minutes: 360 + strategy: + matrix: + include: + - name: "cchantep/acolyte" + - name: "kitlangton/zio-tui" + - name: "stuartapp/zcaffeine" + - name: "svroonland/zio-amqp" + - name: "univalence/zio-spark" + - name: "vigoo/prox" + - name: "zio/zio-connect" + - name: "zio/zio-direct" + - name: "zio/zio-wasm" + steps: + - name: "Git Checkout" + uses: actions/checkout@v3 + - name: "Build project" + uses: ./.github/actions/build-project + timeout-minutes: 60 + with: + project-name: ${{ matrix.name }} + extra-scalac-options: ${{ inputs.extra-scalac-options }} + disabled-scalac-options: ${{ inputs.disabled-scalac-options }} + scala-version: ${{ needs.setup-build.outputs.scala-version }} + maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} + elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} + elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} + stage-15: + runs-on: ubuntu-22.04 + needs: [ setup-build, stage-14 ] + continue-on-error: true + timeout-minutes: 360 + strategy: + matrix: + include: + - name: "playframework/anorm" + steps: + - name: "Git Checkout" + uses: actions/checkout@v3 + - name: "Build project" + uses: ./.github/actions/build-project + timeout-minutes: 60 + with: + project-name: ${{ matrix.name }} + extra-scalac-options: ${{ inputs.extra-scalac-options }} + disabled-scalac-options: ${{ inputs.disabled-scalac-options }} + scala-version: ${{ needs.setup-build.outputs.scala-version }} + maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} + elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} + elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} + stage-16: + runs-on: ubuntu-22.04 + needs: [ setup-build, stage-15 ] + continue-on-error: true + timeout-minutes: 360 + strategy: + matrix: + include: + - name: "2m/ciris-hocon" + - name: "analogweb/analogweb-scala" + - name: "apache/incubator-pekko-persistence-cassandra" + - name: "apache/incubator-pekko-projection" + - name: "argonaut-io/argonaut" + - name: "armanbilge/bayou" + - name: "armanbilge/scala-native-config-brew" + - name: "arturaz/doobie-typesafe" + - name: "asragab/unstructured4s" + - name: "atnos-org/eff" + - name: "avast/datadog4s" + - name: "bilal-fazlani/zio-maelstrom" + - name: "bkirwi/decline" + - name: "blackdoor/jose" + - name: "bot4s/zmatrix" + - name: "camunda-community-hub/camunda-dmn-tester" + - name: "cb372/scalacache" + - name: "chatwork/scala-jwk" + - name: "circe/circe-jackson" + - name: "clevercloud/pulsar4s" + - name: "cognitedata/cognite-sdk-scala" + - name: "com-lihaoyi/cask" + - name: "com-lihaoyi/upickle" + - name: "dacr/zio-lmdb" + - name: "dapperware/zio-slack" + - name: "data-tools/big-data-types" + - name: "davenverse/epimetheus-http4s" + - name: "davenverse/mules-http4s" + - name: "delimobil/cabbit" + - name: "dylemma/xml-spac" + - name: "eikek/emil" + - name: "eikek/yamusca" + - name: "eventstore/eventstore.jvm" + - name: "evolution-gaming/derivation" + - name: "fabiopinheiro/scala-did" + - name: "fd4s/fs2-kafka" - name: "fd4s/vulcan" + - name: "foldables-io/skunk-tables" - name: "fomkin/korolev" - name: "fthomas/fs2-cron" - name: "fthomas/refined" - name: "gaelrenoux/tranzactio" - name: "geirolz/erules" - - name: "gemini-hlsw/lucuma-refined" - name: "gemini-hlsw/refined-algebra" - name: "getkyo/kyo" - name: "gnieh/diffson" - - name: "hamnis/jsonschema" + - name: "guizmaii-opensource/zio-uuid" - name: "higherkindness/mu-scala" - name: "http4s/http4s-armeria" - name: "http4s/http4s-fabric" - name: "http4s/http4s-prometheus-metrics" - name: "http4s/http4s-servlet" - - name: "imaxmelnyk/openai-scala" - name: "jap-company/fields" - - name: "jmcardon/tsec" + - name: "jilen/play-circe" - name: "jodersky/scala-argparse" - name: "jodersky/scalapb-ujson" - name: "jodersky/yamlesque" - - name: "johnspade/tgbot-utils" - name: "katrix/perspective" - name: "katrix/typenbt" - - name: "kiberstender/fjwt" - - name: "kierendavies/skunk-migrate" - - name: "killaitis/http4s-cloud-functions" - - name: "kolemannix/spack" + - name: "kordyjan/pytanie" - name: "kory33/s2mc-test" - name: "koterpillar/refinery" - - name: "laserdisc-io/scanamo-circe" - - name: "lhns/http4s-errors" - - name: "lhns/remote-io" - - name: "lloydmeta/enumeratum" + - name: "lambdaworks/scountries" + - name: "lancewalton/treelog" - name: "m2-oss/calypso" - - name: "medeia/medeia" - - name: "molarmanful/sclin" + - name: "marcinzh/enterprise" + - name: "mdedetrich/pekko-streams-circe" - name: "monix/monix-connect" - name: "mpollmeier/scala-repl-pp" - name: "mrdimosthenis/scala-synapses" + - name: "msgpack4z/msgpack4z-argonaut" - name: "msgpack4z/msgpack4z-circe" - - name: "narma/tranzactio" - - name: "note/dhallj-magnolia" + - name: "nau/scalus" - name: "ollls/zio-tls-http" - name: "openmole/gridscale" - name: "openmole/mgo" @@ -1196,18 +1206,20 @@ jobs: - name: "ovotech/ciris-aws-secretsmanager" - name: "phaller/spores3" - name: "pityka/nspl" + - name: "pjfanning/jackson-module-enumeratum" - name: "plokhotnyuk/jsoniter-scala" - name: "polystat/odin" - - name: "polyvariant/caliban-gitlab" - name: "profunktor/fs2-rabbit" - name: "profunktor/neutron" - - name: "pureconfig/pureconfig" - name: "raquo/waypoint" + - name: "reactific/riddl" - name: "reactivecore/rc-circe-json-schema" + - name: "rolang/dumbo" + - name: "rustedbones/pekko-http-metrics" - name: "sageserpent-open/americium" - - name: "sangria-graphql/sangria-relay" - name: "scala-cli/scala-cli-signing" - name: "scala/toolkit" + - name: "scalapb-json/scalapb-argonaut" - name: "scalapb-json/scalapb-circe" - name: "scalax/simple" - name: "sfxcode/sapphire-data" @@ -1217,30 +1229,30 @@ jobs: - name: "softwaremill/diffx" - name: "softwaremill/sttp-openai" - name: "spaceteams/scala-json-logging" - - name: "svroonland/rezilience" - name: "taig/babel" + - name: "tharwaninitin/etlflow" - name: "thatscalaguy/circe-jq" + - name: "theiterators/http4s-stir" - name: "timbertson/foperator" - name: "tofu-tf/glass" - name: "tpolecat/atto" - name: "trace4cats/trace4cats-http4s" - - name: "trace4cats/trace4cats-kafka" - name: "trace4cats/trace4cats-sttp" - - name: "trace4cats/trace4cats-xray" - - name: "ulitol97/comet" + - name: "typebricks/pureconfig-toggleable" + - name: "typelevel/laika" - name: "valskalla/odin" - name: "vigoo/clipp" - name: "vitaliihonta/scala-ql" - name: "vlmiroshnikov/authz" + - name: "windymelt/rss2discord" + - name: "xuwei-k/httpz" - name: "y-yu/excel-reads" - name: "zio/caliban-deriving" - name: "zio/zio-cli" - - name: "zio/zio-config" - name: "zio/zio-dynamodb" - name: "zio/zio-jdbc" - name: "zio/zio-lambda" - name: "zio/zio-redis" - - name: "zio/zio-schema" steps: - name: "Git Checkout" uses: actions/checkout@v3 @@ -1255,21 +1267,24 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-16: + stage-17: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-15 ] + needs: [ setup-build, stage-16 ] continue-on-error: true timeout-minutes: 360 strategy: matrix: include: - name: "alhuelamo/dbjobs" + - name: "almond-sh/almond" + - name: "andimiller/decline-completion" - name: "circe/circe" - - name: "geirolz/toolkit" - - name: "indoorvivants/subatomic" + - name: "dacr/code-examples-manager" + - name: "jchapuis/fs2-kafka-mock" - name: "optics-dev/monocle" - name: "rewards-network/combos" - name: "rewards-network/pure-aws" + - name: "swaldman/fossilphant" - name: "virtuslab/scala-cli" steps: - name: "Git Checkout" @@ -1285,26 +1300,23 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-17: + stage-18: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-16 ] + needs: [ setup-build, stage-17 ] continue-on-error: true timeout-minutes: 360 strategy: matrix: include: - - name: "7mind/izumi" - name: "ahjohannessen/sec" - name: "armanbilge/circe-scala-yaml" - - name: "banno/cosmos4s" - name: "circe/circe-config" - name: "circe/circe-fs2" + - name: "circe/circe-optics" - name: "circe/circe-yaml" - - name: "cornerman/chameleon" - name: "eventstore/eventstore.akka.persistence" - name: "filosganga/jsonpath" - name: "gemini-hlsw/crystal" - - name: "gemini-hlsw/lucuma-core" - name: "gnieh/fs2-data" - name: "gnieh/geo-scala" - name: "hnaderi/lepus" @@ -1312,17 +1324,17 @@ jobs: - name: "imrafaelmerino/json-scala-values" - name: "indoorvivants/sn-vcpkg" - name: "joernio/joern" - - name: "kovacshuni/circe-config" - name: "laserdisc-io/fs2-aws" - name: "logging4s/logging4s" + - name: "nrkno/bigquery-scala" - name: "ocadotechnology/sttp-oauth2" - name: "pityka/saddle" - - name: "pureharm/pureharm-json-circe" - name: "quafadas/dedav4s" - name: "rallyhealth/weepickle" - name: "sangria-graphql/sangria-circe" - name: "snowplow/snowplow-scala-analytics-sdk" - name: "stephennancekivell/scalatest-json" + - name: "tethys-json/tethys" - name: "tpolecat/doobie" - name: "typelevel/natchez" - name: "yakivy/poppet" @@ -1341,9 +1353,9 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-18: + stage-19: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-17 ] + needs: [ setup-build, stage-18 ] continue-on-error: true timeout-minutes: 360 strategy: @@ -1354,59 +1366,55 @@ jobs: - name: "armanbilge/gcp4s" - name: "azhur/kafka-serde-scala" - name: "banno/vault4s" - - name: "bot4s/zmatrix" - name: "coralogix/zio-k8s" - - name: "dacr/zio-lmdb" + - name: "cornerman/chameleon" + - name: "creativescala/krop" - name: "davenverse/circuit-http4s" - name: "davenverse/fuuid" - name: "davenverse/github" - name: "davenverse/http4s-grpc" - name: "davenverse/natchez-http4s-otel" - name: "davenverse/snickerdoodle" + - name: "davenverse/tsec" - name: "davenverse/whale-tail" - name: "disneystreaming/smithy4s" - name: "eikek/calev" - name: "fgrutsch/emergence" - name: "gemini-hlsw/clue" - - name: "gemini-hlsw/lucuma-catalog" - name: "hamnis/jwk" - - name: "hnaderi/yaml4s" - name: "http4s/blaze" - name: "http4s/http4s-fs2-data" - name: "http4s/http4s-jdk-http-client" - name: "http4s/http4s-jetty" + - name: "http4s/http4s-play-json" - name: "http4s/http4s-scala-xml" - name: "http4s/http4s-scalatags" - - name: "http4s/http4s-tomcat" + - name: "http4s/http4s-session" - name: "http4s/http4s-twirl" - name: "japgolly/webapp-util" - name: "jbwheatley/pact4s" - name: "jwt-scala/jwt-scala" - name: "kirill5k/mongo4cats" - name: "kubukoz/sup" - - name: "lambdaworks/zio-elasticsearch" + - name: "laserdisc-io/slack4s" - name: "lego/woof" - - name: "linyxus/papiers-core" + - name: "minosiants/pencil" - name: "mobimeo/fs2-gtfs" - name: "neandertech/langoustine" + - name: "ovotech/meters4s" - name: "ovotech/natchez-extras" - name: "pac4j/http4s-pac4j" - name: "permutive-engineering/fs2-google-pubsub" - name: "pityka/lamp" - - name: "pureharm/pureharm-aws" - - name: "sangria-graphql/sangria" - - name: "sideeffffect/zio-doobie" + - name: "pjfanning/pekko-http-json" - name: "sksamuel/elastic4s" - name: "softwaremill/sttp-apispec" - - name: "taig/flog" - - name: "tharwaninitin/etlflow" - - name: "theiterators/kebs" - - name: "tinkoff/muffin" - name: "typelevel/feral" - name: "typelevel/natchez-http4s" - name: "typelevel/skunk" - name: "typelevel/toolkit" - - name: "vlovgr/ciris" + - name: "xebia-functional/karat-scalacheck" + - name: "zio/zio-schema" steps: - name: "Git Checkout" uses: actions/checkout@v3 @@ -1421,9 +1429,9 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-19: + stage-20: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-18 ] + needs: [ setup-build, stage-19 ] continue-on-error: true timeout-minutes: 360 strategy: @@ -1431,38 +1439,32 @@ jobs: include: - name: "47degrees/memeid" - name: "47degrees/sbt-energymonitor" - - name: "andreamarcolin/oidc4s" + - name: "apache/incubator-pekko-connectors" - name: "apimorphism/telegramium" - name: "atedeg/mdm" - name: "augustjune/canoe" - - name: "avast/scala-server-toolkit" - - name: "bilal-fazlani/akka-http-jwt-auth" + - name: "cornerman/sloth" - name: "danslapman/morphling" - name: "davenverse/rediculous" - - name: "etspaceman/kinesis4cats" - - name: "gemini-hlsw/lucuma-sso" + - name: "hamnis/jsonschema" - name: "hnaderi/edomata" - name: "http4s/http4s-netty" - name: "itv/scala-pact" + - name: "jmcardon/tsec" - name: "joan38/kubernetes-client" - - name: "jwojnowski/googlecloud4s" - name: "jwojnowski/oidc4s" + - name: "kamon-io/kamon-http4s" - name: "kubukoz/spotify-next" - - name: "lhns/http4s-jwt-auth" - - name: "lhns/http4s-spa" + - name: "lambdaworks/zio-elasticsearch" - name: "paoloboni/binance-scala-client" - name: "pme123/camundala" - - name: "polystat/polystat-cli" - name: "profunktor/http4s-jwt-auth" - - name: "qwbarch/snowflake4s" - - name: "sangria-graphql/sangria-slowlog" - name: "scalabin-no/http4s-directives" + - name: "scalacenter/course-management-tools" - name: "torrentdam/bittorrent" - name: "trace4cats/trace4cats-datadog" - - name: "trace4cats/trace4cats-jaeger-integration-test" - name: "travisbrown/dhallj" - name: "typelevel/grackle" - - name: "valdemargr/gql" - name: "virtuslab/inkuire" - name: "zio/zio-http" - name: "zio/zio-metrics-legacy" @@ -1480,21 +1482,21 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-20: + stage-21: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-19 ] + needs: [ setup-build, stage-20 ] continue-on-error: true timeout-minutes: 360 strategy: matrix: include: - name: "carlos-verdes/zio-arangodb" - - name: "davenverse/natchez-rediculous" - name: "davenverse/rediculous-concurrent" - - name: "gemini-hlsw/lucuma-graphql-routes" - name: "ghostdogpr/caliban" + - name: "kaizen-solutions/trace4cats-zio-extras" + - name: "scalapatisserie/muffin" - name: "scottweaver/testcontainers-for-zio" - - name: "trace4cats/trace4cats-opentelemetry" + - name: "tinkoff/muffin" - name: "zio/zio-metrics-connectors" - name: "zio/zio-openai" steps: @@ -1511,15 +1513,16 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-21: + stage-22: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-20 ] + needs: [ setup-build, stage-21 ] continue-on-error: true timeout-minutes: 360 strategy: matrix: include: - name: "devsisters/shardcake" + - name: "polyvariant/smithy4s-caliban" - name: "zio/zio-protoquill" steps: - name: "Git Checkout" @@ -1535,9 +1538,9 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-22: + stage-23: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-21 ] + needs: [ setup-build, stage-22 ] continue-on-error: true timeout-minutes: 360 strategy: @@ -1545,6 +1548,7 @@ jobs: include: - name: "kitlangton/neotype" - name: "liewhite/swopen" + - name: "lloydmeta/enumeratum" - name: "vigoo/desert" steps: - name: "Git Checkout" @@ -1560,3 +1564,109 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} + stage-24: + runs-on: ubuntu-22.04 + needs: [ setup-build, stage-23 ] + continue-on-error: true + timeout-minutes: 360 + strategy: + matrix: + include: + - name: "imaxmelnyk/openai-scala" + - name: "medeia/medeia" + - name: "neotypes/neotypes" + - name: "pureconfig/pureconfig" + - name: "theiterators/kebs" + - name: "valdemargr/gql" + - name: "vlovgr/ciris" + steps: + - name: "Git Checkout" + uses: actions/checkout@v3 + - name: "Build project" + uses: ./.github/actions/build-project + timeout-minutes: 60 + with: + project-name: ${{ matrix.name }} + extra-scalac-options: ${{ inputs.extra-scalac-options }} + disabled-scalac-options: ${{ inputs.disabled-scalac-options }} + scala-version: ${{ needs.setup-build.outputs.scala-version }} + maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} + elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} + elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} + stage-25: + runs-on: ubuntu-22.04 + needs: [ setup-build, stage-24 ] + continue-on-error: true + timeout-minutes: 360 + strategy: + matrix: + include: + - name: "7mind/izumi" + - name: "avast/scala-server-toolkit" + - name: "avokka/avokka" + - name: "erikerlandson/coulomb" + - name: "etspaceman/kinesis4cats" + - name: "etspaceman/scalacheck-faker" + - name: "geirolz/toolkit" + - name: "polystat/polystat-cli" + steps: + - name: "Git Checkout" + uses: actions/checkout@v3 + - name: "Build project" + uses: ./.github/actions/build-project + timeout-minutes: 60 + with: + project-name: ${{ matrix.name }} + extra-scalac-options: ${{ inputs.extra-scalac-options }} + disabled-scalac-options: ${{ inputs.disabled-scalac-options }} + scala-version: ${{ needs.setup-build.outputs.scala-version }} + maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} + elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} + elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} + stage-26: + runs-on: ubuntu-22.04 + needs: [ setup-build, stage-25 ] + continue-on-error: true + timeout-minutes: 360 + strategy: + matrix: + include: + - name: "gemini-hlsw/lucuma-core" + steps: + - name: "Git Checkout" + uses: actions/checkout@v3 + - name: "Build project" + uses: ./.github/actions/build-project + timeout-minutes: 60 + with: + project-name: ${{ matrix.name }} + extra-scalac-options: ${{ inputs.extra-scalac-options }} + disabled-scalac-options: ${{ inputs.disabled-scalac-options }} + scala-version: ${{ needs.setup-build.outputs.scala-version }} + maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} + elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} + elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} + stage-27: + runs-on: ubuntu-22.04 + needs: [ setup-build, stage-26 ] + continue-on-error: true + timeout-minutes: 360 + strategy: + matrix: + include: + - name: "gemini-hlsw/lucuma-odb" + - name: "gemini-hlsw/lucuma-sso" + steps: + - name: "Git Checkout" + uses: actions/checkout@v3 + - name: "Build project" + uses: ./.github/actions/build-project + timeout-minutes: 60 + with: + project-name: ${{ matrix.name }} + extra-scalac-options: ${{ inputs.extra-scalac-options }} + disabled-scalac-options: ${{ inputs.disabled-scalac-options }} + scala-version: ${{ needs.setup-build.outputs.scala-version }} + maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} + elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} + elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} diff --git a/.github/workflows/buildPlan-B.yaml b/.github/workflows/buildPlan-B.yaml index 86a1e33d..38527d2c 100644 --- a/.github/workflows/buildPlan-B.yaml +++ b/.github/workflows/buildPlan-B.yaml @@ -1,5 +1,5 @@ -# projects total: 253 +# projects total: 471 # min stars count: -1 # max projects count: 1000 @@ -62,219 +62,411 @@ jobs: strategy: matrix: include: + - name: "ablearthy/tdjson-bind" + - name: "aholland/aholland-scala-utils" + - name: "ajozwik/protoquill-generic" + - name: "alejandrohdezma/sbt-mdoc-toc" + - name: "alexarchambault/class-path-inspector" + - name: "altoo-ag/pekko-kryo-serialization" + - name: "antognini/type-safe-equality" + - name: "armanbilge/feral" + - name: "armanbilge/saslprep" + - name: "banno/cosmos4s" + - name: "barnardb/tinyplate" + - name: "bcarter97/id-generator" + - name: "beangle/db" + - name: "benoitlouy/tele" + - name: "bilal-fazlani/akka-http-jwt-auth" + - name: "bilal-fazlani/csv-schema" + - name: "bilal-fazlani/jslt-parser" + - name: "bilal-fazlani/rainbowcli" + - name: "bilal-fazlani/swiftbar4s" + - name: "bilal-fazlani/zio-mongo" + - name: "cake-lier/tuples-space-core" + - name: "christian-schlichtherle/circe-kafka" + - name: "cozydev-pink/lucille" + - name: "creativescala/doodle-explore" + - name: "dacr/split" + - name: "davenverse/env" + - name: "davenverse/os-detect" + - name: "davenverse/publicsuffix" + - name: "delimobil/fs2-hbase" + - name: "fiatjaf/nlog" + - name: "frugalmechanic/fm-xml" + - name: "gchudnov/bscript" + - name: "gnp/ident" + - name: "guardian/etag-caching" + - name: "guymers/ceesvee" + - name: "hjfruit/zio-pulsar" + - name: "hnaderi/named-codec" + - name: "http4s/hpack" + - name: "http4s/http4s-async-http-client" + - name: "ij-plugins/ijp-scala-console" + - name: "ivoah/vial" + - name: "jkobejs/cron" + - name: "jkugiya/aws-v4-signer-scala" + - name: "jodersky/cronic" + - name: "jodersky/ustats" + - name: "johnhungerford/generic-schema" + - name: "joohnnie/retry" + - name: "karazinscalausersgroup/mongo-literals" + - name: "kevin-lee/just-sysprocess" + - name: "kevin-lee/openai4s" + - name: "kolemannix/spack" + - name: "krrrr38/protoquill-finagle-mysql" + - name: "lhns/doobie-flyway" + - name: "lhns/http4s-jwt-auth" + - name: "lhns/nifi-scala" + - name: "liewhite/common" + - name: "likeligood-ab/scala-react" + - name: "linyxus/papiers-core" + - name: "lloydmeta/play-csv" + - name: "losizm/little-cli" + - name: "losizm/little-config" + - name: "losizm/little-json" + - name: "losizm/little-sql" + - name: "martinhh/scalacheck-derived" + - name: "mrdimosthenis/glicko2" + - name: "mvv/typine" + - name: "nafg/cloud-logging-logback-scala" + - name: "nafg/scheduler" + - name: "nafg/simple-router" + - name: "nthportal/scala-platform" + - name: "openmole/container" + - name: "outr/dd-scala" + - name: "outr/moduload" + - name: "permutive-engineering/refreshable" + - name: "phillhenry/dreadnought" + - name: "philwalk/pallet" + - name: "pityka/pairwisealignment" + - name: "pjfanning/acked-stream" + - name: "pjfanning/jackson-module-scala-duration" + - name: "pjfanning/pekko-rabbitmq" + - name: "pjfanning/pekko-serialization-jackson215" + - name: "pjfanning/zio-metrics-micrometer" + - name: "pmeheut/nscala-java-time" + - name: "quafadas/vecxt" + - name: "raistlintao/scalalogger" + - name: "sageserpent-open/kineticmerge" + - name: "sangria-graphql/sangria-streaming-api" + - name: "saucam/shiva" + - name: "scala-cli/java-class-name" + - name: "sciss/audiowidgets" + - name: "sciss/linkernighantsp" + - name: "sciss/log" + - name: "sciss/optional" + - name: "sciss/scalacollider-if" + - name: "sean-ideabank/rudolf" + - name: "shawjef3/tryutils" + - name: "ssanj/delight" + - name: "swaldman/audiofluidity-rss" + - name: "sweet-delights/delightful-typeclasses" + - name: "t-sasaki915/typesafe-scalajs" + - name: "taig/enumeration-ext" + - name: "taig/geojson" + - name: "taig/object-fit" + - name: "taig/scala-linguist" + - name: "taig/scala-pygments" + - name: "tharwaninitin/cache4s" + - name: "timbertson/auditspec" + - name: "timbertson/backpressure-sensor" + - name: "tkrs/mess" + - name: "tmccarthy/ausgeo" + - name: "tmccarthy/tmmutils" + - name: "toniogela/cross" + - name: "torrentdam/bencode" + - name: "tpataky/duckling" + - name: "trace4cats/trace4cats-exporter-http" + - name: "ulitol97/comet" + - name: "vasilmkd/discipline" + - name: "windymelt/qw.scala" + - name: "wiringbits/wiringbits-webapp-utils" + - name: "xebia-functional/munit-compiler-toolkit" + - name: "xebia-functional/munit-snap" + - name: "zhranklin/scala-tricks" + steps: + - name: "Git Checkout" + uses: actions/checkout@v3 + - name: "Build project" + uses: ./.github/actions/build-project + timeout-minutes: 360 + with: + project-name: ${{ matrix.name }} + extra-scalac-options: ${{ inputs.extra-scalac-options }} + disabled-scalac-options: ${{ inputs.disabled-scalac-options }} + scala-version: ${{ needs.setup-build.outputs.scala-version }} + maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} + elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} + elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} + stage-1: + runs-on: ubuntu-22.04 + needs: [ setup-build ] + continue-on-error: true + timeout-minutes: 360 + strategy: + matrix: + include: + - name: "2m/yabai-scala" - name: "aaronp/code-template" - name: "aaronp/franz" - name: "ablearthy/td-types" - - name: "ablearthy/tdjson-bind" + - name: "absaoss/absa-shaded-jackson-module-scala" - name: "acsgh/scala-common" - name: "ahjohannessen/smithy4s-repro-lib" - name: "ahjohannessen/unum" - name: "aiyanbo/scala-i18n" - - name: "ajozwik/protoquill-generic" - name: "akiomik/seaw" - name: "alejandrohdezma/dummy" - - name: "alejandrohdezma/sbt-mdoc-toc" - name: "alejandrohdezma/sbt-propagate" - name: "alexarchambault/case-app-entrypoint-annotation" - - name: "alexarchambault/class-path-inspector" - name: "alexdupre/coinpayments-scala" + - name: "alterationx10/opinionated-zio" + - name: "andimiller/hedgehogs" - name: "aoiroaoino/nanolens" - name: "aparo/zio-json-extra" - - name: "armanbilge/feral" - name: "armanbilge/fs2" + - name: "armanbilge/litter" - name: "armanbilge/munit-cats-effect" - - name: "armanbilge/saslprep" - name: "armanbilge/scalacheck-effect" + - name: "assist-iot-sripas/scala-mqtt-wrapper" - name: "atedeg/scala-release" - - name: "barnardb/tinyplate" - - name: "beangle/db" + - name: "atry/futurebinding.scala" + - name: "augustnagro/form-url-codec" - name: "beangle/doc" - - name: "beangle/ids" - name: "beangle/notify" - - name: "benoitlouy/tele" - name: "besselstudio/coingecko" - name: "bilal-fazlani/circe-json-schema" - - name: "bilal-fazlani/csv-schema" - - name: "bilal-fazlani/jslt-parser" - - name: "bilal-fazlani/rainbowcli" - - name: "bilal-fazlani/zio-mongo" + - name: "bilal-fazlani/csv-codec" + - name: "bilal-fazlani/scala-aql" + - name: "bitmarck-service/base32check-scala" - name: "bitmarck-service/fs2-secon" - name: "bp3r/jsonrpc2" - name: "carlos-verdes/zio-resource" - name: "catap/scala-blake3" - name: "catap/scala-sha" - - name: "christian-schlichtherle/circe-kafka" - name: "clockworkconsulting/csexp" - name: "clockworkconsulting/peregrin" - name: "clulab/fatdynet" + - name: "codacy/codacy-plugins-api" - name: "cornerman/simple-scalajs-requests" - name: "coursier/class-path-util" - - name: "creativescala/doodle-explore" + - name: "cozydev-pink/snakecase" + - name: "creativescala/doodle-svg" - name: "cric96/distributed-frp" - name: "cucumber/action-publish-sbt" + - name: "dacr/drools-scripting" - name: "dacr/json2props" - - name: "dacr/split" + - name: "dacr/naturalsort" - name: "dacr/unittools" + - name: "daenyth/cats-effect-guava" - name: "daghemberg/paut-program" - name: "daghemberg/problemutils" + - name: "damon-v79/cassandra-migration" + - name: "datastrophic-games/dice" + - name: "davenverse/condemned" - name: "davenverse/epimetheus-circuit" + - name: "davenverse/epimetheus-redis4cats" - name: "davenverse/namecase" - - name: "davenverse/natchez-local" - - name: "davenverse/publicsuffix" + - name: "davenverse/natchez-rediculous" + - name: "davidledwards/scalop" - name: "dragonfly-ai/democrossy" + - name: "dragonfly-ai/mesh" + - name: "dvgica/periodic" - name: "eikek/bitpeace" - - name: "errors4s/errors4s-core-scalacheck" - - name: "errors4s/errors4s-http" + - name: "eltherion/http4s-timer" + - name: "estrondo/farango" - name: "estrondo/sweet-mockito" + - name: "fenixedu/fenixedu-scala-sdk" - name: "fgrutsch/akka-persistence-mapdb" - - name: "fiatjaf/nlog" - name: "frawa/inline-files" + - name: "frugalmechanic/fm-html" + - name: "frugalmechanic/fm-http" + - name: "frugalmechanic/fm-json" - name: "gchudnov/mindthegap" - name: "gemini-hlsw/lucuma-jts" + - name: "gemini-hlsw/lucuma-refined" - name: "gemini-hlsw/lucuma-schemas" - name: "giabao/asm-flow" - name: "gnp/zio-data-streams" - name: "gochaorg/json4s3" + - name: "greenfossil/commons-json" - name: "greenfossil/typesafe-config-ext" - - name: "guymers/ceesvee" + - name: "grouzen/zio-apache-arrow" + - name: "guardian/mobile-apps-api-models" + - name: "guidoschmidt17/zio-pgcopy" + - name: "guizmaii-opensource/zio-aes" - name: "guymers/foobie" - name: "gzoller/deploysample" + - name: "gzoller/listzipper" + - name: "h8io/borscht" - name: "herminiogg/dmaog" - name: "herminiogg/label2thesaurus" + - name: "hinadt/hina-cloud-android-plugin" - name: "hireproof/screening" - - name: "hnaderi/named-codec" - name: "hnaderi/scala-readpass" + - name: "hnaderi/yaml4s" - name: "hsci-r/lucene-perfieldpostingsformatordtermvectorscodec" + - name: "hshn/slick-codegen-patch" + - name: "http4s/http4s-tomcat" - name: "hughsimpson/scalameter" - name: "indoorvivants/detective" - name: "indoorvivants/opaque-newtypes" + - name: "indoorvivants/rendition" + - name: "indoorvivants/sn-demangler" + - name: "indoorvivants/subatomic" - name: "indoorvivants/yank" + - name: "ingarabr/gcs-lock" - name: "ingarabr/http4s-cloud-functions" - - name: "ivoah/vial" + - name: "ist-dsi/scala-openstack-common-clients" + - name: "j5ik2o/pekko-kinesis" + - name: "j5ik2o/pekko-persistence-dynamodb" + - name: "jamesward/zio-mavencentral" - name: "janlisse/zio-jwt-validator" + - name: "jelly-rdf/jelly-jvm" + - name: "jkugiya/ulid-scala" + - name: "jodersky/applib" - name: "jodersky/identicon" - name: "jodersky/redicl" - - name: "jodersky/ustats" - - name: "johnhungerford/generic-schema" - - name: "joohnnie/retry" - - name: "jphmrst/scala-automata" + - name: "johnspade/tgbot-utils" + - name: "jphmrst/scala-latex" - name: "jphmrst/scalautils" + - name: "julianpeeters/dc10" - name: "kalin-rudnicki/harness" - - name: "karazinscalausersgroup/mongo-literals" - name: "katrix/minejson" - - name: "kevin-lee/just-sysprocess" + - name: "kiberstender/fjwt" + - name: "kierendavies/skunk-migrate" - name: "kijuky/enumeratum-scalikejdbc" + - name: "killaitis/http4s-cloud-functions" + - name: "kordyjan/ogrodnik" - name: "kordyjan/typelogger" - - name: "krrrr38/protoquill-finagle-mysql" + - name: "kzmake/uuid7s" - name: "l-space/types" + - name: "laserdisc-io/scanamo-circe" - name: "lhns/cats-effect-utils" - - name: "lhns/doobie-flyway" + - name: "lhns/fs2-functork" - name: "lhns/fs2-utils" - - name: "lhns/nifi-scala" + - name: "lhns/http4s-errors" + - name: "lhns/http4s-spa" + - name: "lhns/remote-io" - name: "lhns/scala-commandline" + - name: "lhns/scala-edifact" - name: "lhns/scala-trustmanager-utils" - - name: "liewhite/common" - - name: "likeligood-ab/scala-react" + - name: "lorandszakacs/enclosure" - name: "losizm/bolster" - name: "losizm/ergo" - - name: "losizm/little-cli" - name: "losizm/little-io" - name: "losizm/little-security" - - name: "losizm/little-sql" + - name: "losizm/little-time" - name: "losizm/t2" + - name: "lunatech-labs/lunatech-play-googleopenconnect" - name: "malliina/sbt-utils" - name: "malliina/util-base" - name: "malyszaryczlowiek/foo-repo" - name: "malyszaryczlowiek/kessenger-lib" + - name: "marcinzh/yamlike" - name: "massimosiani/monix-newtypes-cats" - name: "massimosiani/skunk" - name: "mattlangsenkamp/svgbounds" - name: "mdedetrich/scalacheck" + - name: "mercurievv/minuscles" + - name: "mimoguz/layeredfonticon" + - name: "mixql/mixql-engine-stub" - name: "mixql/mixql-protobuf" - name: "mkroli/lpm" + - name: "molarmanful/sclin" + - name: "mpollmeier/colordiff" + - name: "msgpack4z/msgpack4z-jawn" - name: "mutsuhiro6/ulid-scala3" - - name: "mvv/typine" - - name: "nafg/cloud-logging-logback-scala" - - name: "nafg/scheduler" - - name: "nafg/simple-router" + - name: "narma/tranzactio" - name: "narma/zio-docker" - name: "nationalarchives/dr2-preservica-client" - - name: "openmole/container" - - name: "outr/dd-scala" - - name: "outr/moduload" + - name: "nicolasfara/ecscala" + - name: "nomadblacky/scalatest-otel-reporter" + - name: "note/dhallj-magnolia" + - name: "ohze/sd-util" + - name: "opaliasystems/opalia-commons-core" - name: "outr/sendgrid4s" + - name: "palanga/parana" - name: "pbyrne84/scala-case-class-prettification" - name: "pbyrne84/scala-wiremock-api" - - name: "permutive-engineering/refreshable" - - name: "phillhenry/dreadnought" - - name: "pjfanning/jackson-module-scala-duration" + - name: "pjfanning/akka-rabbitmq" + - name: "pjfanning/aws-spi-pekko-http" + - name: "pjfanning/pekko-http-session" + - name: "pjfanning/pekko-mock-scheduler" - name: "pjfanning/scala3-sample-classes" - - name: "pmeheut/nscala-java-time" + - name: "polyvariant/caliban-gitlab" + - name: "polyvariant/scodec-java-classfile" - name: "pureharm/pureharm-core" + - name: "rsemlal/clickhouse4cats" + - name: "rssh/shim--scala-async--dotty-cps-async" - name: "rtyley/rate-limit-status" - name: "rtyley/scala-collection-plus" - name: "ruimo/gh-sonatype-example" - name: "ruimo/scoins" + - name: "rustedbones/pekko-http-avro" + - name: "rustedbones/pekko-http-scalapb" + - name: "rustedbones/pekko-http-thrift" + - name: "sake92/tupson" - name: "sakulk/serval" - name: "sangria-graphql/sangria-marshalling-testkit" - - name: "scala-cli/java-class-name" + - name: "scala-cli/directive-handler" + - name: "scala-tessella/ring-seq" + - name: "scalatest/scalatestplus-easymock" + - name: "scalatest/scalatestplus-jmock" - name: "scf37/filewatch" - - name: "sciss/audiowidgets" + - name: "sciss/equal" - name: "sciss/filecache" - - name: "sciss/log" - name: "sciss/lucrepi" - name: "sciss/model" - - name: "sciss/optional" - name: "sciss/scalacollider-dot" - - name: "sciss/scalacollider-if" + - name: "sciss/transform4s" - name: "sdrafahl/codec" - - name: "sean-ideabank/rudolf" - - name: "shawjef3/tryutils" - name: "shopstic/caliban" + - name: "sideeffffect/zio-doobie" - name: "sinaghaffari/monadicsimplifier" - name: "snowplow/iglu-scala-core" + - name: "swagger-akka-http/swagger-enumeratum-module" - name: "swagger-akka-http/swagger-scala3-enum-module" - - name: "swaldman/audiofluidity-rss" - name: "swaldman/mlog-scala" - - name: "sweet-delights/delightful-typeclasses" - - name: "t-sasaki915/typesafe-scalajs" - - name: "taig/cloud-sql-proxy" - - name: "taig/object-fit" - - name: "taig/scala-linguist" - - name: "taig/scala-pygments" - - name: "taig/skunk-ext" - - name: "tharwaninitin/cache4s" + - name: "swaldman/texttable" + - name: "swaldman/untemplate" + - name: "sweet-delights/delightful-cron" - name: "tharwaninitin/crypto4s" - - name: "timbertson/auditspec" - - name: "timbertson/backpressure-sensor" - - name: "tkrs/mess" + - name: "thatscalaguy/ulid4cats" + - name: "throup/couldbe" - name: "tkrs/mmdb-grpc-scala" - name: "tlsomers/scala-suspendable" - - name: "tmccarthy/ausgeo" - name: "tmccarthy/digest4s" - name: "tmccarthy/scala-db" - - name: "tmccarthy/tmmutils" - name: "todokr/grokschema" - - name: "trace4cats/trace4cats-exporter-http" + - name: "trace4cats/trace4cats-jaeger-integration-test" + - name: "trace4cats/trace4cats-kafka" - name: "trace4cats/trace4cats-natchez" - name: "trace4cats/trace4cats-tail-sampling-extras" + - name: "trace4cats/trace4cats-xray" + - name: "trace4cats/trace4cats-zio" + - name: "typelevel/scalacheck-xml" - name: "typesafeconfigops/typesafeconfigops" - name: "varwise/prometheus-akka-http" - - name: "vasilmkd/discipline" + - name: "virtuslab/java-class-name" - name: "virtuslab/scala-cli-signing" + - name: "vlmiroshnikov/aero3" - name: "vlmiroshnikov/saga" - - name: "wiringbits/wiringbits-webapp-utils" + - name: "windymelt/happy-birthday" - name: "xuwei-k/scala3profile" + - name: "xuwei-k/unused-proto" - name: "yrichika/scalahtml" + - name: "ysthakur/sline" - name: "yurikpanic/zio-postgres" - name: "yurique/embedded-files-macro" + - name: "zio/zio-bson" - name: "zygfryd/scala-zygf-jackshaft" steps: - name: "Git Checkout" uses: actions/checkout@v3 - name: "Build project" uses: ./.github/actions/build-project - timeout-minutes: 360 + timeout-minutes: 60 with: project-name: ${{ matrix.name }} extra-scalac-options: ${{ inputs.extra-scalac-options }} @@ -283,9 +475,9 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-1: + stage-2: runs-on: ubuntu-22.04 - needs: [ setup-build ] + needs: [ setup-build, stage-1 ] continue-on-error: true timeout-minutes: 360 strategy: @@ -295,33 +487,57 @@ jobs: - name: "armanbilge/ip4s" - name: "armanbilge/jawn-fs2" - name: "armanbilge/log4cats" + - name: "armanbilge/sadalsuud" - name: "armanbilge/stratus" + - name: "beangle/ids" - name: "beangle/otk" + - name: "cake-lier/tuples-space-client" + - name: "casehubdk/hxl" - name: "davenverse/epimetheus-rediculous" + - name: "davenverse/fiberlocal" - name: "dwolla/epimetheus-server" - - name: "errors4s/errors4s-core-cats" - name: "frawa/typed-json" - name: "funkode-io/web3-auth" + - name: "gemini-hlsw/giapi-scala" + - name: "gemini-hlsw/lucuma-catalog" + - name: "greenfossil/commons-i18n" + - name: "greenfossil/data-mapping" - name: "hnaderi/portainer-client" - name: "hsci-r/octavo-indexer" - name: "indoorvivants/mdoc-d2" + - name: "ist-dsi/scala-keystone-client" + - name: "jphmrst/scala-automata" + - name: "julianpeeters/dc10-scala" + - name: "julianpeeters/schemabuilder4cats" + - name: "jwojnowski/fs2-aes" - name: "kalin-rudnicki/slyce-zio" + - name: "kovacshuni/circe-config" - name: "mixql/mixql-engine" - name: "pismute/classy-optics" - name: "pureharm/pureharm-config-ciris" - name: "pureharm/pureharm-db-core-jdbc" - name: "pureharm/pureharm-effects-cats" + - name: "pureharm/pureharm-json-circe" + - name: "rtyley/line-break-preserving-line-splitting" - name: "ruimo/csvparser" - name: "ruimo/graphics" + - name: "sangria-graphql/sangria-argonaut" + - name: "sangria-graphql/sangria-json4s-jackson" - name: "sangria-graphql/sangria-json4s-native" - name: "sciss/asyncfile" + - name: "sciss/lucre" - name: "sciss/lucreswing" - name: "sciss/sonogramoverview" - name: "swaldman/failable" + - name: "swaldman/mchange-sysadmin-scala" + - name: "swaldman/unstatic" - name: "sweet-delights/delightful-parsing" + - name: "taig/skunk-ext" + - name: "thatscalaguy/nats4cats" - name: "tmccarthy/tmm-scala-collections" - name: "trace4cats/trace4cats-jaeger" - name: "trace4cats/trace4cats-newrelic" + - name: "trace4cats/trace4cats-opentelemetry" - name: "trace4cats/trace4cats-zipkin" - name: "valencik/textmogrify" - name: "vasilmkd/discipline-specs2" @@ -339,20 +555,40 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-2: + stage-3: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-1 ] + needs: [ setup-build, stage-2 ] continue-on-error: true timeout-minutes: 360 strategy: matrix: include: + - name: "andreamarcolin/oidc4s" - name: "armanbilge/cheshire" + - name: "davenverse/epimetheus-community" + - name: "davenverse/epimetheus-log4cats" + - name: "davenverse/http4s-log4cats-contextlog" + - name: "davenverse/natchez-local" + - name: "firstbirdtech/emergence" + - name: "gemini-hlsw/lucuma-graphql-routes" - name: "gemini-hlsw/lucuma-itc" + - name: "ist-dsi/scala-cinder-client" + - name: "ist-dsi/scala-designate-client" + - name: "ist-dsi/scala-neutron-client" + - name: "ist-dsi/scala-nova-client" + - name: "julianpeeters/dc10-cats" + - name: "julianpeeters/dc10-cats-effect" + - name: "jwojnowski/googlecloud4s" - name: "permutive-engineering/functional-google-clients" - name: "permutive-engineering/odin-contrib" - name: "permutive-engineering/prometheus4cats-contrib" - name: "pureharm/pureharm-testkit" + - name: "qwbarch/snowflake4s" + - name: "sciss/patterns" + - name: "sky-uk/fs2-kafka-topic-loader" + - name: "spilne/spilne" + - name: "taig/cloud-sql-proxy" + - name: "taig/flog" - name: "tmccarthy/fetch" - name: "trace4cats/trace4cats-avro" - name: "trace4cats/trace4cats-cloudtrace" @@ -371,9 +607,9 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} - stage-3: + stage-4: runs-on: ubuntu-22.04 - needs: [ setup-build, stage-2 ] + needs: [ setup-build, stage-3 ] continue-on-error: true timeout-minutes: 360 strategy: @@ -395,3 +631,51 @@ jobs: maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} + stage-5: + runs-on: ubuntu-22.04 + needs: [ setup-build, stage-4 ] + continue-on-error: true + timeout-minutes: 360 + strategy: + matrix: + include: + - name: "errors4s/errors4s-core" + - name: "errors4s/errors4s-core-scalacheck" + steps: + - name: "Git Checkout" + uses: actions/checkout@v3 + - name: "Build project" + uses: ./.github/actions/build-project + timeout-minutes: 60 + with: + project-name: ${{ matrix.name }} + extra-scalac-options: ${{ inputs.extra-scalac-options }} + disabled-scalac-options: ${{ inputs.disabled-scalac-options }} + scala-version: ${{ needs.setup-build.outputs.scala-version }} + maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} + elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} + elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} + stage-6: + runs-on: ubuntu-22.04 + needs: [ setup-build, stage-5 ] + continue-on-error: true + timeout-minutes: 360 + strategy: + matrix: + include: + - name: "errors4s/errors4s-core-cats" + - name: "errors4s/errors4s-http" + steps: + - name: "Git Checkout" + uses: actions/checkout@v3 + - name: "Build project" + uses: ./.github/actions/build-project + timeout-minutes: 60 + with: + project-name: ${{ matrix.name }} + extra-scalac-options: ${{ inputs.extra-scalac-options }} + disabled-scalac-options: ${{ inputs.disabled-scalac-options }} + scala-version: ${{ needs.setup-build.outputs.scala-version }} + maven-repo-url: ${{ needs.setup-build.outputs.maven-repo-url }} + elastic-user: ${{ secrets.OPENCB_ELASTIC_USER }} + elastic-password: ${{ secrets.OPENCB_ELASTIC_PSWD }} diff --git a/coordinator/src/main/scala/GitOps.scala b/coordinator/src/main/scala/GitOps.scala index 6f504cec..64f70269 100644 --- a/coordinator/src/main/scala/GitOps.scala +++ b/coordinator/src/main/scala/GitOps.scala @@ -90,7 +90,7 @@ object Git { ) if (proc.exitCode != 0) System.err.println( - s"Failed to checkout $repoUrl, revision $revision: " + proc.out + s"Failed to checkout revision $revision: " + proc.out .lines() .mkString )