From cf38904f670646dfb43d2ecc03131032fe446500 Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:02:38 +0000 Subject: [PATCH 01/24] Update sbt-scalafix to 0.13.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index f9416e4..f25373b 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,4 +1,4 @@ -addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.12.1") +addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.13.0") addSbtPlugin("com.alejandrohdezma" % "sbt-ci" % "2.15.0") addSbtPlugin("com.alejandrohdezma" % "sbt-fix" % "0.7.1") addSbtPlugin("com.alejandrohdezma" % "sbt-github-mdoc" % "0.11.13") From c765a174f4b68a4e39bae3dde4d7223169ccdfe5 Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:02:38 +0000 Subject: [PATCH 02/24] Update logback-classic to 1.2.13 --- project/Dependencies.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 124a8e0..ca4ab6c 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -40,7 +40,7 @@ object Dependencies { "com.github.fd4s" %% "fs2-kafka" % "3.5.1", "com.permutive" %% "prometheus4cats" % "3.0.0" ) ++ Seq( - "ch.qos.logback" % "logback-classic" % "1.2.11", // scala-steward:of, + "ch.qos.logback" % "logback-classic" % "1.2.13", // scala-steward:of, "com.dimafeng" %% "testcontainers-scala-kafka" % "0.41.4", "com.dimafeng" %% "testcontainers-scala-munit" % "0.41.4", "com.permutive" %% "prometheus4cats-java" % "3.0.0", From cfe58f59607758f9ca5077fd1ca005ec0594ffc9 Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:02:38 +0000 Subject: [PATCH 03/24] Update sbt-ci to 2.15.1 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index f25373b..44393ff 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,5 +1,5 @@ addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.13.0") -addSbtPlugin("com.alejandrohdezma" % "sbt-ci" % "2.15.0") +addSbtPlugin("com.alejandrohdezma" % "sbt-ci" % "2.15.1") addSbtPlugin("com.alejandrohdezma" % "sbt-fix" % "0.7.1") addSbtPlugin("com.alejandrohdezma" % "sbt-github-mdoc" % "0.11.13") addSbtPlugin("com.alejandrohdezma" % "sbt-github-header" % "0.11.13") From b96d678aaab54a7175d16aac1866c7b05cf3a2e6 Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:02:56 +0000 Subject: [PATCH 04/24] Run `sbt generateCiFiles` Executed command: sbt generateCiFiles --- .github/workflows/ci.yml | 5 +++-- .github/workflows/release.yml | 8 ++++---- 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c1dcd0d..e47a1cf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -59,12 +59,13 @@ jobs: - 17 steps: - name: Checkout project - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: ref: ${{ github.head_ref }} + repository: ${{ github.event.pull_request.head.repo.full_name }} fetch-depth: 0 - - uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0 + - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 with: distribution: "liberica" java-version: ${{ matrix.jdk }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 444c661..87f08e6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -29,7 +29,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout project - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: fetch-depth: 0 @@ -37,7 +37,7 @@ jobs: if: github.event_name == 'push' uses: alejandrohdezma/actions/check-semver-tag@v1 - - uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0 + - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 with: distribution: "liberica" java-version: "11" @@ -59,13 +59,13 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout project - uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 + uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7 with: fetch-depth: 0 ref: main token: ${{ secrets.ADMIN_GITHUB_TOKEN }} - - uses: actions/setup-java@387ac29b308b003ca37ba93a6cab5eb57c8f5f93 # v4.0.0 + - uses: actions/setup-java@99b8673ff64fbf99d8d325f52d9a5bdedb8483e9 # v4.2.1 with: distribution: "liberica" java-version: "17" From 00359f8fff5038fba2f3bccc7b6accc12e82e8a1 Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:02:56 +0000 Subject: [PATCH 05/24] Update sbt-fix to 0.7.2 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 44393ff..744dd80 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,6 +1,6 @@ addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.13.0") addSbtPlugin("com.alejandrohdezma" % "sbt-ci" % "2.15.1") -addSbtPlugin("com.alejandrohdezma" % "sbt-fix" % "0.7.1") +addSbtPlugin("com.alejandrohdezma" % "sbt-fix" % "0.7.2") addSbtPlugin("com.alejandrohdezma" % "sbt-github-mdoc" % "0.11.13") addSbtPlugin("com.alejandrohdezma" % "sbt-github-header" % "0.11.13") addSbtPlugin("com.alejandrohdezma" % "sbt-scalafix-defaults" % "0.13.0") From 5d24ef095f04473aacc60f4f23b88c66b665bcbb Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:02:56 +0000 Subject: [PATCH 06/24] Update sbt-github-header to 0.12.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 744dd80..efeddcc 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -2,7 +2,7 @@ addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0. addSbtPlugin("com.alejandrohdezma" % "sbt-ci" % "2.15.1") addSbtPlugin("com.alejandrohdezma" % "sbt-fix" % "0.7.2") addSbtPlugin("com.alejandrohdezma" % "sbt-github-mdoc" % "0.11.13") -addSbtPlugin("com.alejandrohdezma" % "sbt-github-header" % "0.11.13") +addSbtPlugin("com.alejandrohdezma" % "sbt-github-header" % "0.12.0") addSbtPlugin("com.alejandrohdezma" % "sbt-scalafix-defaults" % "0.13.0") addSbtPlugin("com.alejandrohdezma" % "sbt-scalafmt-defaults" % "0.9.0") addSbtPlugin("com.alejandrohdezma" % "sbt-mdoc-toc" % "0.4.1") From 5e5ad37a0591a754d965902da501d6b0d1689fbf Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:02:56 +0000 Subject: [PATCH 07/24] Update sbt-github-mdoc to 0.12.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index efeddcc..57232e2 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -1,7 +1,7 @@ addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.13.0") addSbtPlugin("com.alejandrohdezma" % "sbt-ci" % "2.15.1") addSbtPlugin("com.alejandrohdezma" % "sbt-fix" % "0.7.2") -addSbtPlugin("com.alejandrohdezma" % "sbt-github-mdoc" % "0.11.13") +addSbtPlugin("com.alejandrohdezma" % "sbt-github-mdoc" % "0.12.0") addSbtPlugin("com.alejandrohdezma" % "sbt-github-header" % "0.12.0") addSbtPlugin("com.alejandrohdezma" % "sbt-scalafix-defaults" % "0.13.0") addSbtPlugin("com.alejandrohdezma" % "sbt-scalafmt-defaults" % "0.9.0") From 8d11ca0bfdc72ba4ca141e7cc8e2f79c619f7e8e Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:02:56 +0000 Subject: [PATCH 08/24] Update sbt-mdoc-toc to 0.4.2 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 57232e2..06e6e6c 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -5,7 +5,7 @@ addSbtPlugin("com.alejandrohdezma" % "sbt-github-mdoc" % "0. addSbtPlugin("com.alejandrohdezma" % "sbt-github-header" % "0.12.0") addSbtPlugin("com.alejandrohdezma" % "sbt-scalafix-defaults" % "0.13.0") addSbtPlugin("com.alejandrohdezma" % "sbt-scalafmt-defaults" % "0.9.0") -addSbtPlugin("com.alejandrohdezma" % "sbt-mdoc-toc" % "0.4.1") +addSbtPlugin("com.alejandrohdezma" % "sbt-mdoc-toc" % "0.4.2") addSbtPlugin("com.alejandrohdezma" % "sbt-modules" % "0.3.1") addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.2") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") From b605ebe4b8e3f0054d2deeef1555649dfb7f825f Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:02:56 +0000 Subject: [PATCH 09/24] Update sbt-modules to 0.3.2 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 06e6e6c..07e595f 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -6,7 +6,7 @@ addSbtPlugin("com.alejandrohdezma" % "sbt-github-header" % "0. addSbtPlugin("com.alejandrohdezma" % "sbt-scalafix-defaults" % "0.13.0") addSbtPlugin("com.alejandrohdezma" % "sbt-scalafmt-defaults" % "0.9.0") addSbtPlugin("com.alejandrohdezma" % "sbt-mdoc-toc" % "0.4.2") -addSbtPlugin("com.alejandrohdezma" % "sbt-modules" % "0.3.1") +addSbtPlugin("com.alejandrohdezma" % "sbt-modules" % "0.3.2") addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.2") addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0") From 5b1397c5281a90386091bf4a4c5e622bd72d5a7c Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:02:56 +0000 Subject: [PATCH 10/24] Update sbt-scalafix-defaults to 0.13.1 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 07e595f..ba317aa 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -3,7 +3,7 @@ addSbtPlugin("com.alejandrohdezma" % "sbt-ci" % "2. addSbtPlugin("com.alejandrohdezma" % "sbt-fix" % "0.7.2") addSbtPlugin("com.alejandrohdezma" % "sbt-github-mdoc" % "0.12.0") addSbtPlugin("com.alejandrohdezma" % "sbt-github-header" % "0.12.0") -addSbtPlugin("com.alejandrohdezma" % "sbt-scalafix-defaults" % "0.13.0") +addSbtPlugin("com.alejandrohdezma" % "sbt-scalafix-defaults" % "0.13.1") addSbtPlugin("com.alejandrohdezma" % "sbt-scalafmt-defaults" % "0.9.0") addSbtPlugin("com.alejandrohdezma" % "sbt-mdoc-toc" % "0.4.2") addSbtPlugin("com.alejandrohdezma" % "sbt-modules" % "0.3.2") From ef0ec515e7586fd8cbdef3576a94066ad0456c96 Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:03:37 +0000 Subject: [PATCH 11/24] Update sbt-scalafmt-defaults to 0.9.1 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index ba317aa..cbfe053 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -4,7 +4,7 @@ addSbtPlugin("com.alejandrohdezma" % "sbt-fix" % "0. addSbtPlugin("com.alejandrohdezma" % "sbt-github-mdoc" % "0.12.0") addSbtPlugin("com.alejandrohdezma" % "sbt-github-header" % "0.12.0") addSbtPlugin("com.alejandrohdezma" % "sbt-scalafix-defaults" % "0.13.1") -addSbtPlugin("com.alejandrohdezma" % "sbt-scalafmt-defaults" % "0.9.0") +addSbtPlugin("com.alejandrohdezma" % "sbt-scalafmt-defaults" % "0.9.1") addSbtPlugin("com.alejandrohdezma" % "sbt-mdoc-toc" % "0.4.2") addSbtPlugin("com.alejandrohdezma" % "sbt-modules" % "0.3.2") addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.2") From d2d54a8671701400da18d626bebfb5d64d46b4b6 Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:03:59 +0000 Subject: [PATCH 12/24] Run `sbt fix` Executed command: sbt fix --- .../catseffect/CatsEffectMBeans.scala | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/modules/prometheus4cats-contrib-cats-effect/src/main/scala/prometheus4cats/catseffect/CatsEffectMBeans.scala b/modules/prometheus4cats-contrib-cats-effect/src/main/scala/prometheus4cats/catseffect/CatsEffectMBeans.scala index 5b03e73..67e333b 100644 --- a/modules/prometheus4cats-contrib-cats-effect/src/main/scala/prometheus4cats/catseffect/CatsEffectMBeans.scala +++ b/modules/prometheus4cats-contrib-cats-effect/src/main/scala/prometheus4cats/catseffect/CatsEffectMBeans.scala @@ -156,12 +156,7 @@ object CatsEffectMBeans { Right((MetricCollection.empty, 0, 0)) )( readAttributes( - mbs, - _, - MetricCollection.empty, - "compute_pool", - nameMap, - Map.empty + mbs, _, MetricCollection.empty, "compute_pool", nameMap, Map.empty ) ) cpuStarvationRes <- cpuStarvation @@ -171,12 +166,7 @@ object CatsEffectMBeans { val (col, parseErrors, errors) = computePoolRes readAttributes( - mbs, - cpuStarvationMBean, - col, - "cpu_starvation", - nameMap, - Map.empty + mbs, cpuStarvationMBean, col, "cpu_starvation", nameMap, Map.empty ).map { case (c, pe, e) => (c, parseErrors + pe, errors + e) } From b4cf6c1caca636fc2bc494670f3fad8d1b553dcc Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:03:59 +0000 Subject: [PATCH 13/24] Update sbt-ci-release to 1.9.0 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index cbfe053..7448094 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -8,7 +8,7 @@ addSbtPlugin("com.alejandrohdezma" % "sbt-scalafmt-defaults" % "0. addSbtPlugin("com.alejandrohdezma" % "sbt-mdoc-toc" % "0.4.2") addSbtPlugin("com.alejandrohdezma" % "sbt-modules" % "0.3.2") addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3.0.2") -addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.5.12") +addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.0") addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0") addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "3.2.1") addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.1") From 2641c1722c0083c01d93798a411c005d64ac39e0 Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:03:59 +0000 Subject: [PATCH 14/24] Update google-cloud-bigtable to 2.47.0 --- project/Dependencies.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index ca4ab6c..3ab998c 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -22,7 +22,7 @@ object Dependencies { ) lazy val `prometheus4cats-contrib-google-cloud-bigtable` = Seq( - "com.google.cloud" % "google-cloud-bigtable" % "2.42.0", + "com.google.cloud" % "google-cloud-bigtable" % "2.47.0", "com.permutive" %% "prometheus4cats" % "3.0.0" ) ++ Seq( "com.google.cloud" % "google-cloud-bigtable-emulator" % "0.179.0", From 9a99a7e544e4af9787308a707d87d0f62e0adef5 Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:03:59 +0000 Subject: [PATCH 15/24] Update google-cloud-bigtable-emulator to 0.184.0 --- project/Dependencies.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 3ab998c..efcb7e6 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -25,7 +25,7 @@ object Dependencies { "com.google.cloud" % "google-cloud-bigtable" % "2.47.0", "com.permutive" %% "prometheus4cats" % "3.0.0" ) ++ Seq( - "com.google.cloud" % "google-cloud-bigtable-emulator" % "0.179.0", + "com.google.cloud" % "google-cloud-bigtable-emulator" % "0.184.0", "org.scalameta" %% "munit" % "1.0.1", "org.typelevel" %% "cats-effect-testkit" % "3.5.4", "org.typelevel" %% "munit-cats-effect" % "2.0.0" From 109abe238c74de6838e7233e1011eab4c940e723 Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:04:00 +0000 Subject: [PATCH 16/24] Update scala-library to 2.12.20 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 161e978..84933f9 100644 --- a/build.sbt +++ b/build.sbt @@ -1,5 +1,5 @@ ThisBuild / scalaVersion := "2.13.14" -ThisBuild / crossScalaVersions := Seq("2.12.19", "2.13.14", "3.3.3") +ThisBuild / crossScalaVersions := Seq("2.12.20", "2.13.14", "3.3.3") ThisBuild / organization := "com.permutive" ThisBuild / versionPolicyIntention := Compatibility.BinaryAndSourceCompatible From 42e5737eb2498d973ffd909a4a2c7a95ba6bdbcb Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:04:00 +0000 Subject: [PATCH 17/24] Update scala-library to 2.13.15 --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index 84933f9..4231b0b 100644 --- a/build.sbt +++ b/build.sbt @@ -1,5 +1,5 @@ -ThisBuild / scalaVersion := "2.13.14" -ThisBuild / crossScalaVersions := Seq("2.12.20", "2.13.14", "3.3.3") +ThisBuild / scalaVersion := "2.13.15" +ThisBuild / crossScalaVersions := Seq("2.12.20", "2.13.15", "3.3.3") ThisBuild / organization := "com.permutive" ThisBuild / versionPolicyIntention := Compatibility.BinaryAndSourceCompatible From 2a26663e7e755364bcafc850ef5aaebdfbd15efa Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:04:00 +0000 Subject: [PATCH 18/24] Update scala3-compiler to 3.3.4 --- build.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build.sbt b/build.sbt index 4231b0b..277de4d 100644 --- a/build.sbt +++ b/build.sbt @@ -1,5 +1,5 @@ ThisBuild / scalaVersion := "2.13.15" -ThisBuild / crossScalaVersions := Seq("2.12.20", "2.13.15", "3.3.3") +ThisBuild / crossScalaVersions := Seq("2.12.20", "2.13.15", "3.3.4") ThisBuild / organization := "com.permutive" ThisBuild / versionPolicyIntention := Compatibility.BinaryAndSourceCompatible From 42db626062412e26338c349d39612cf21a6405bf Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:04:00 +0000 Subject: [PATCH 19/24] Update sbt to 1.10.5 --- project/build.properties | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/build.properties b/project/build.properties index cb409aa..c7450fc 100644 --- a/project/build.properties +++ b/project/build.properties @@ -1 +1 @@ -sbt.version=1.10.1 \ No newline at end of file +sbt.version=1.10.5 \ No newline at end of file From 5a032fa4d70ea2f9e23ba888965714a46b274c03 Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:04:00 +0000 Subject: [PATCH 20/24] Update munit to 1.0.2 --- project/Dependencies.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index efcb7e6..d71413d 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -26,7 +26,7 @@ object Dependencies { "com.permutive" %% "prometheus4cats" % "3.0.0" ) ++ Seq( "com.google.cloud" % "google-cloud-bigtable-emulator" % "0.184.0", - "org.scalameta" %% "munit" % "1.0.1", + "org.scalameta" %% "munit" % "1.0.2", "org.typelevel" %% "cats-effect-testkit" % "3.5.4", "org.typelevel" %% "munit-cats-effect" % "2.0.0" ).map(_ % Test) From 5320cd25f390c79f6b59ff22f53728781126ba4b Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:04:00 +0000 Subject: [PATCH 21/24] Update sbt-mdoc to 2.6.1 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 7448094..8bb51a0 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -12,5 +12,5 @@ addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1. addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0") addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "3.2.1") addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.1") -addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.5.4") +addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.6.1") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2") From d8ab44b6309aef060bdfc4f4be7e6d8c65e95e3e Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:04:00 +0000 Subject: [PATCH 22/24] Update cats-effect to 3.5.5 --- project/Dependencies.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index d71413d..b416e84 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -8,7 +8,7 @@ object Dependencies { lazy val `prometheus4cats-contrib-cats-effect` = Seq( "com.permutive" %% "prometheus4cats" % "3.0.0", - "org.typelevel" %% "cats-effect" % "3.5.4" + "org.typelevel" %% "cats-effect" % "3.5.5" ) lazy val `prometheus4cats-contrib-trace4cats` = Seq( From 5eb47366fbc44b0c8ed1d6b4d078799115c0b239 Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:04:00 +0000 Subject: [PATCH 23/24] Update cats-effect-testkit to 3.5.5 --- project/Dependencies.scala | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/project/Dependencies.scala b/project/Dependencies.scala index b416e84..5f8085e 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -27,7 +27,7 @@ object Dependencies { ) ++ Seq( "com.google.cloud" % "google-cloud-bigtable-emulator" % "0.184.0", "org.scalameta" %% "munit" % "1.0.2", - "org.typelevel" %% "cats-effect-testkit" % "3.5.4", + "org.typelevel" %% "cats-effect-testkit" % "3.5.5", "org.typelevel" %% "munit-cats-effect" % "2.0.0" ).map(_ % Test) @@ -44,7 +44,7 @@ object Dependencies { "com.dimafeng" %% "testcontainers-scala-kafka" % "0.41.4", "com.dimafeng" %% "testcontainers-scala-munit" % "0.41.4", "com.permutive" %% "prometheus4cats-java" % "3.0.0", - "org.typelevel" %% "cats-effect-testkit" % "3.5.4", + "org.typelevel" %% "cats-effect-testkit" % "3.5.5", "org.typelevel" %% "log4cats-slf4j" % "2.7.0", "org.typelevel" %% "munit-cats-effect" % "2.0.0" ).map(_ % Test) From c34d6b960f3996f630218154bc0b01614e33b2c3 Mon Sep 17 00:00:00 2001 From: "permutive-steward[bot]" <155995252+permutive-steward[bot]@users.noreply.github.com> Date: Fri, 15 Nov 2024 05:04:00 +0000 Subject: [PATCH 24/24] Update sbt-tpolecat to 0.5.2 --- project/plugins.sbt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/project/plugins.sbt b/project/plugins.sbt index 8bb51a0..d851b67 100644 --- a/project/plugins.sbt +++ b/project/plugins.sbt @@ -11,6 +11,6 @@ addSbtPlugin("com.thoughtworks.sbt-api-mappings" % "sbt-api-mappings" % "3. addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.0") addSbtPlugin("de.heikoseeberger" % "sbt-header" % "5.10.0") addSbtPlugin("ch.epfl.scala" % "sbt-version-policy" % "3.2.1") -addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.1") +addSbtPlugin("org.typelevel" % "sbt-tpolecat" % "0.5.2") addSbtPlugin("org.scalameta" % "sbt-mdoc" % "2.6.1") addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")