)]}'
{
  "log": [
    {
      "commit": "01e9e5ea3e79993eada93e6a2d5e24415fc52866",
      "tree": "3a8941de75fc9e984b0c1979ad97285ca90f3a7f",
      "parents": [
        "967ffcbcf81560889598dd8bcb40ac6aa0a2102b"
      ],
      "author": {
        "name": "He-Pin(kerr)",
        "email": "hepin1989@gmail.com",
        "time": "Mon Jun 15 10:50:29 2026 +0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 15 10:50:29 2026 +0800"
      },
      "message": "fix: Scala 3.8+ forward compatibility (#523)\n\nMotivation:\nPrepare for Scala 3.8/3.9 adoption by fixing deprecation warnings\nthat appear with newer Scala compilers while maintaining compatibility\nwith current Scala 3.3.x and 2.13.x.\n\nModification:\n- Replace `\u003d _` with explicit `\u003d null` in var declarations (deprecated in 3.8)\n- Replace `private[this]` with `private` (deprecated in 3.8)\n- Add -Wconf suppressions for cross-version incompatible warnings:\n  context bounds, wildcard types, eta-expansion, with operator,\n  unreachable null cases, vararg splices, infix types,\n  -Xfatal-warnings deprecation, generated code private[this],\n  trait App deprecation, and -Yfuture-lazy-vals bad option\n\nResult:\nClean compilation on Scala 3.8.4 with zero warnings.\nNo Scala version changes in production build."
    },
    {
      "commit": "967ffcbcf81560889598dd8bcb40ac6aa0a2102b",
      "tree": "818fcf4d8a562e563d6cf4d86ca2d2879a1ae95f",
      "parents": [
        "67e8cab8292c9bc5b07c245074944384027f7f83"
      ],
      "author": {
        "name": "He-Pin(kerr)",
        "email": "hepin1989@gmail.com",
        "time": "Mon Jun 15 02:04:24 2026 +0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 15 02:04:24 2026 +0800"
      },
      "message": "docs: add AGENTS.md and CLAUDE.md for AI coding agents (#522)\n\nMotivation:\nAI coding agents benefit from project-specific instructions to follow\nconventions, run correct validation, and produce consistent PRs.\n\nModification:\nAdd AGENTS.md with comprehensive rules (worktree, licensing, PR,\nformatting, validation, test, code, CI, commit format) and CLAUDE.md\nwith a pre-PR verification checklist.\n\nResult:\nAI agents working on this repository will follow established\nconventions and produce higher-quality contributions.\n\nTests:\nNot run - docs only\n\nReferences:\nNone - AI agent configuration"
    },
    {
      "commit": "67e8cab8292c9bc5b07c245074944384027f7f83",
      "tree": "c0b3dd70c8903b857cb512d72b7d51e058faef4c",
      "parents": [
        "3573f49dbda7cd2e45845318cb5b73c276a5a586"
      ],
      "author": {
        "name": "He-Pin(kerr)",
        "email": "hepin1989@gmail.com",
        "time": "Sun Jun 14 23:41:36 2026 +0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Jun 14 23:41:36 2026 +0800"
      },
      "message": "chore: Rewrite to scala3 syntax (#519)\n\nMotivation:\nLet Scala 3 Community build compile pekko-projection.\n\nModification:\nUpdate .scalafmt.conf dialect to scala213source3 and enable\nscala3 syntax rewrite rules, then reformat all sources.\n\nResult:\nWildcard types use ? syntax (e.g. Class[?] instead of Class[_]).\n\nTests:\nNot run - formatting only\n\nReferences:\nRefs apache/pekko#3048"
    },
    {
      "commit": "3573f49dbda7cd2e45845318cb5b73c276a5a586",
      "tree": "5a527a190eebbca7673083eab4b478814e551998",
      "parents": [
        "a245cc09c840afc5be8039ddf9a11e0240220629"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Sun Jun 14 17:17:14 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Jun 14 16:17:14 2026 +0100"
      },
      "message": "Update sbt, scripted-plugin to 1.12.12 (#521)"
    },
    {
      "commit": "a245cc09c840afc5be8039ddf9a11e0240220629",
      "tree": "9928c35fb97500110a849c744e340d52e72b1404",
      "parents": [
        "f015ee1fc4f41c707ae3000bf1b68e523f9a6c04"
      ],
      "author": {
        "name": "He-Pin(kerr)",
        "email": "hepin1989@gmail.com",
        "time": "Sun Jun 14 21:46:54 2026 +0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Jun 14 21:46:54 2026 +0800"
      },
      "message": "chore: unify formatter config - standardize aliases, add JDK17 setting (#520)\n\n* chore: unify formatter config across pekko sub-projects\n\nMotivation:\nAlign formatter plugins, command aliases, and JDK settings with other\npekko sub-projects to reduce maintenance burden.\n\nModification:\n- Standardize checkCodeStyle/applyCodeStyle command aliases\n- Add ThisBuild / javafmtFormatterCompatibleJavaVersion :\u003d 17 where missing\n- Replace custom verifyCodeFmt tasks with standard aliases where applicable\n- Upgrade sbt-java-formatter plugin where needed\n\nResult:\nConsistent formatter configuration across all pekko sub-projects.\n\nTests:\nNot run - build config change only\n\nReferences:\nNone - formatter unification across pekko sub-projects\n\n* fix: update CI workflow to use checkCodeStyle alias\n\nMotivation:\nCI was calling the removed verifyCodeStyle command.\n\nModification:\nReplace verifyCodeStyle with checkCodeStyle in checks.yml.\n\nResult:\nCI code style check works with the unified alias.\n\nTests:\nNot run - CI config change only\n\nReferences:\nNone"
    },
    {
      "commit": "f015ee1fc4f41c707ae3000bf1b68e523f9a6c04",
      "tree": "36e5422c7afd9f68e818cbd5f309186af24fcb32",
      "parents": [
        "ee72cfb446c1b670dd772e3848ebd68f401c1db3"
      ],
      "author": {
        "name": "He-Pin(kerr)",
        "email": "hepin1989@gmail.com",
        "time": "Sun Jun 14 19:15:00 2026 +0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Jun 14 19:15:00 2026 +0800"
      },
      "message": "Add -Yfuture-lazy-vals for Scala 3.3.x builds (#518)\n\n* feat: Add -Yfuture-lazy-vals for Scala 3.3.x builds\n\nMotivation:\nThe Scala 3.3.8 compiler introduced the -Yfuture-lazy-vals flag to\noptionally use VarHandle instead of sun.misc.Unsafe for lazy val\nimplementation. This prepares libraries for upcoming JDK releases\nthat restrict sun.misc.Unsafe access.\n\nModification:\nAdd -Yfuture-lazy-vals to scalacOptions, conditionally applied only\nfor Scala 3.3.x via CrossVersion.partialVersion or scalaBinaryVersion.\n\nResult:\nScala 3.3.x build uses the future-proof VarHandle-based lazy val\nimplementation, compatible with all JDK 9+ versions including future\nreleases that restrict sun.misc.Unsafe.\n\nReferences:\nRefs scala/scala3-lts#637\nRefs apache/pekko#3059\n\n* fix: Add -release:17 required by -Yfuture-lazy-vals\n\nThe -Yfuture-lazy-vals flag requires explicit -java-output-version\nset to minimum version 9 or higher. Add -release:17 to satisfy\nthis requirement for Scala 3.3.x builds."
    },
    {
      "commit": "ee72cfb446c1b670dd772e3848ebd68f401c1db3",
      "tree": "74b0318daac1450b39f8a89c319a2535f623936a",
      "parents": [
        "a1068ba99afe711030d716b85242a60b39172167"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Fri Jun 12 22:32:53 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Jun 12 21:32:53 2026 +0100"
      },
      "message": "Update scala3-library to 3.3.8 (#517)"
    },
    {
      "commit": "a1068ba99afe711030d716b85242a60b39172167",
      "tree": "39773231c654c33991bc9c937559a66960221163",
      "parents": [
        "2875a7eeaca147bbc039057ce9e39a0970dd5998"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Wed Jun 10 16:21:52 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 10 15:21:52 2026 +0100"
      },
      "message": "Update hibernate-core to 7.4.1.Final (#516)"
    },
    {
      "commit": "2875a7eeaca147bbc039057ce9e39a0970dd5998",
      "tree": "2e4a227d3bce476d3914a3ecba1ad81d5e201678",
      "parents": [
        "dca937632489d0e8804607ae1216af6f8314bad1"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Thu Jun 04 09:42:12 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jun 04 09:42:12 2026 +0100"
      },
      "message": "Update PekkoCoreDependency.scala (#514)"
    },
    {
      "commit": "dca937632489d0e8804607ae1216af6f8314bad1",
      "tree": "8d46873cf0afb0acd8dc63580cc618167d41a78e",
      "parents": [
        "42473937c5e1563f3f628805adab3fcec06b3642"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jun 03 19:59:55 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 03 19:59:55 2026 +0100"
      },
      "message": "Bump sbt/setup-sbt from 1.1.24 to 1.2.1 (#510)\n\nBumps [sbt/setup-sbt](https://github.com/sbt/setup-sbt) from 1.1.24 to 1.2.1.\n- [Release notes](https://github.com/sbt/setup-sbt/releases)\n- [Commits](https://github.com/sbt/setup-sbt/compare/2e222825582620cc38d2a54e674f3c01b7c14f5d...af116cce31c00823d3903ce687f9cda3a4f19f1b)\n\n---\nupdated-dependencies:\n- dependency-name: sbt/setup-sbt\n  dependency-version: 1.2.1\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e\nCo-authored-by: PJ Fanning \u003cpjfanning@users.noreply.github.com\u003e"
    },
    {
      "commit": "42473937c5e1563f3f628805adab3fcec06b3642",
      "tree": "d48c04c9777e2468d294af7ee1ce64bff0318577",
      "parents": [
        "4ee506a0d72aea2ea3efb35d1334cc5346c8cfb7"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jun 03 17:07:01 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 03 17:07:01 2026 +0100"
      },
      "message": "Bump actions/checkout from 6.0.2 to 6.0.3 (#511)\n\nBumps [actions/checkout](https://github.com/actions/checkout) from 6.0.2 to 6.0.3.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/de0fac2e4500dabe0009e67214ff5f5447ce83dd...df4cb1c069e1874edd31b4311f1884172cec0e10)\n\n---\nupdated-dependencies:\n- dependency-name: actions/checkout\n  dependency-version: 6.0.3\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "4ee506a0d72aea2ea3efb35d1334cc5346c8cfb7",
      "tree": "40028c494d26cfed2b7b7a4c560104aa48a78e2e",
      "parents": [
        "6ec98dd121b2e1d6ab2a08ebebe7f0d001faa7d0"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jun 03 17:06:29 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 03 17:06:29 2026 +0100"
      },
      "message": "Bump scalacenter/sbt-dependency-submission from 3.2.2 to 3.2.3 (#512)\n\nBumps [scalacenter/sbt-dependency-submission](https://github.com/scalacenter/sbt-dependency-submission) from 3.2.2 to 3.2.3.\n- [Release notes](https://github.com/scalacenter/sbt-dependency-submission/releases)\n- [Commits](https://github.com/scalacenter/sbt-dependency-submission/compare/1cc96a7038ea2b014c200c1dae3a0cc92293b91d...d84eef4c09e633bcf5f113bcad7fd5e9af1baee9)\n\n---\nupdated-dependencies:\n- dependency-name: scalacenter/sbt-dependency-submission\n  dependency-version: 3.2.3\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "6ec98dd121b2e1d6ab2a08ebebe7f0d001faa7d0",
      "tree": "3ffbd84cab6fd476242d6c6c0a9e8c3b02eb3787",
      "parents": [
        "47ae3e490e9abe68944bf9fe295cb15ab5946aa4"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Tue Jun 02 17:01:36 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jun 02 16:01:36 2026 +0100"
      },
      "message": "Update logback-classic to 1.5.34 (#508)"
    },
    {
      "commit": "47ae3e490e9abe68944bf9fe295cb15ab5946aa4",
      "tree": "4c4247218d8ee0a3eaee927837f8df7bd8cece63",
      "parents": [
        "7282bcd777872e4a47707995d30618f16038c6d8"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Mon Jun 01 18:25:10 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 01 18:25:10 2026 +0100"
      },
      "message": "update docs to include changes from akka projections 1.4.1 (#505)\n\n* Sync docs with akka 1.4.x\n\nCo-authored-by: Copilot \u003c223556219+Copilot@users.noreply.github.com\u003e\n\nsome reverts\n\nUpdate running.md\n\nUpdate snapshots.md\n\nrevert\n\nCreate intro-video.png\n\nreverts\n\nmore\n\nmore\n\nmore\n\nmore\n\nmore\n\nmore\n\nmore\n\nmore reverts\n\nUpdate running.md\n\nrevert\n\nUpdate index.md\n\n* more\n\n* more\n\n* merge issues\n\n* Update slick.md\n\n* more\n\n* more\n\n* links\n\n* Update jdbc.md\n\n* Update slick.md\n\n* fix fqcns\n\n* Update setup-your-app.md\n\n* Replace pekko.apache.org/docs/pekko/current/ links with @extref format\n\n* temp enable link validator\n\n* Update link-validator.yml\n\n* more reverts\n\n* more fixes\n\n* Update build.sbt\n\n---------\n\nCo-authored-by: copilot-swe-agent[bot] \u003c198982749+Copilot@users.noreply.github.com\u003e"
    },
    {
      "commit": "7282bcd777872e4a47707995d30618f16038c6d8",
      "tree": "704035df7a051c1657152621c9695929632a4dd4",
      "parents": [
        "592eef2204e88119eb136c340313c3d376ff583e"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Sun May 31 16:41:39 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun May 31 15:41:39 2026 +0100"
      },
      "message": "Update logback-classic to 1.5.33 (#502)\n\nCo-authored-by: PJ Fanning \u003cpjfanning@users.noreply.github.com\u003e"
    },
    {
      "commit": "592eef2204e88119eb136c340313c3d376ff583e",
      "tree": "90e2b6b7cfd9db423901cc9ad5a7a299e853378a",
      "parents": [
        "16a216819842940e8d1eb80283ecfaa712615f1e"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Sun May 31 16:39:35 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun May 31 15:39:35 2026 +0100"
      },
      "message": "Update jackson-databind to 2.21.4 (#503)"
    },
    {
      "commit": "16a216819842940e8d1eb80283ecfaa712615f1e",
      "tree": "9650cf7fc7971c5498bc648ac1fb194c5c074195",
      "parents": [
        "e9bfe5051b814670b9b62650071271107b830e55"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Sun May 31 14:57:52 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun May 31 14:57:52 2026 +0100"
      },
      "message": "grpc: better support Protobuf Message (#507)\n\n* Update ProtoAnySerialization.scala\n\n* partial revert\n\n* Update ProtoAnySerialization.scala"
    },
    {
      "commit": "e9bfe5051b814670b9b62650071271107b830e55",
      "tree": "ed10a9739bc3f71bdbb665d95a8cec326a6aae64",
      "parents": [
        "94fc6478af0cc8fb3c3b8408ef2e4adab4ae3078"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Sat May 30 13:01:46 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat May 30 13:01:46 2026 +0100"
      },
      "message": "copy over changes from akka projections 1.4.1 (#504)\n\n* Port akka-projection PRs #898 and #908: batch offset inserts and fix grouped async offsets\n\n* scalafmt\n\n---------\n\nCo-authored-by: copilot-swe-agent[bot] \u003c198982749+Copilot@users.noreply.github.com\u003e"
    },
    {
      "commit": "94fc6478af0cc8fb3c3b8408ef2e4adab4ae3078",
      "tree": "51e2e8a1db04ee6e3f57d5fa665da53120be5c64",
      "parents": [
        "bbb841f41156baf602b2771d2afa619cbb1abd75"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Wed May 27 16:54:01 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 27 16:54:01 2026 +0200"
      },
      "message": "Update hibernate-core to 7.4.0.Final (#501)"
    },
    {
      "commit": "bbb841f41156baf602b2771d2afa619cbb1abd75",
      "tree": "295706a804a07bccd0fa6908c18a834b03c44604",
      "parents": [
        "962134360a476fa47eb1b78d207289c399cce318"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Wed May 27 10:43:34 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 27 10:43:34 2026 +0100"
      },
      "message": "test with persistence-r2dbc 2.0.0-M1 (#494)\n\n* test with persistence-r2dbc 2.0.0-M1\n\n* Update build.sbt"
    },
    {
      "commit": "962134360a476fa47eb1b78d207289c399cce318",
      "tree": "1e65780a0e158eaf3156287cd00ff858ab16a722",
      "parents": [
        "22a9851a589d6482be411451cec57209aa44d999"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Tue May 26 20:42:19 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue May 26 20:42:19 2026 +0100"
      },
      "message": "test with latest 1.x dependencies (#500)"
    },
    {
      "commit": "22a9851a589d6482be411451cec57209aa44d999",
      "tree": "5a5864df48068ef3701ef8b118e2d9aaf1411163",
      "parents": [
        "10fd0b39bd2f55626451a968ccd52643b5d99a64"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon May 25 23:39:35 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 25 23:39:35 2026 +0100"
      },
      "message": "Bump coursier/cache-action from 8.1.0 to 8.1.1 (#499)\n\nBumps [coursier/cache-action](https://github.com/coursier/cache-action) from 8.1.0 to 8.1.1.\n- [Release notes](https://github.com/coursier/cache-action/releases)\n- [Commits](https://github.com/coursier/cache-action/compare/v8.1...95e5b1029b6b86e7bac033ee44a0697d8a527d2d)\n\n---\nupdated-dependencies:\n- dependency-name: coursier/cache-action\n  dependency-version: 8.1.1\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "10fd0b39bd2f55626451a968ccd52643b5d99a64",
      "tree": "2de08d54e0672fd054e884e43ce92bc32142407d",
      "parents": [
        "387aec9ffd06ed5642c1211421f72c3fb8df3043"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon May 25 23:39:08 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 25 23:39:08 2026 +0100"
      },
      "message": "Bump sbt/setup-sbt from 1.1.22 to 1.1.24 (#498)\n\nBumps [sbt/setup-sbt](https://github.com/sbt/setup-sbt) from 1.1.22 to 1.1.24.\n- [Release notes](https://github.com/sbt/setup-sbt/releases)\n- [Commits](https://github.com/sbt/setup-sbt/compare/v1.1.22...2e222825582620cc38d2a54e674f3c01b7c14f5d)\n\n---\nupdated-dependencies:\n- dependency-name: sbt/setup-sbt\n  dependency-version: 1.1.24\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "387aec9ffd06ed5642c1211421f72c3fb8df3043",
      "tree": "b39e0a9fe9c90749d65a5c4c761695f396dd9320",
      "parents": [
        "8683f703b00491f7e7dd3f8f73df44c24ad8b528"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Mon May 25 18:01:22 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 25 18:01:22 2026 +0100"
      },
      "message": "Revise license header in test specification file (#497)\n\nUpdated license header in MySQLR2dbcOffsetStoreSqlSpec.scala"
    },
    {
      "commit": "8683f703b00491f7e7dd3f8f73df44c24ad8b528",
      "tree": "8d0c268309bb2884081d357d26c74925e4bf5859",
      "parents": [
        "da6ee92370835058233b6816e0d329ebe404e622"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Mon May 25 16:10:27 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 25 16:10:27 2026 +0100"
      },
      "message": "projection-r2dbc: support mysql (#495)\n\n* try mysql\n\n* Update integration-tests-r2dbc.yml\n\n* Update integration-tests-r2dbc.yml\n\n* Update create_tables_mysql.sql\n\n* Fix MySQL R2DBC issues: batch insert ordering and sql interpolation in tests\n\n* Fix MySQL R2DBC: move dialect-specific fixes into MySQLR2dbcOffsetStore\n\n- Revert insertTimestampOffsetInTx in R2dbcOffsetStore back to original\n  add-before-bind ordering (correct for PostgreSQL/Yugabyte)\n- Extract bindTimestampOffsetRecord as a protected helper method\n- Extract executeDeleteOldTimestampOffsets as a protected hook method\n- Make timestampOffsetTable, insertTimestampOffsetSql, and logger protected\n  so MySQL subclass can access them\n- Override insertTimestampOffsetInTx in MySQLR2dbcOffsetStore with\n  bind-before-add ordering required by the MySQL R2DBC driver\n- Override executeDeleteOldTimestampOffsets in MySQLR2dbcOffsetStore with\n  MySQL-compatible SQL: CONCAT() instead of ||, NOT IN (?,?,...) instead\n  of \u003d ANY (?), dynamic placeholders for the exclusion list, and handles\n  the empty-exclusion-list case\n\n* Fix compile error: replace trace2 with trace in MySQLR2dbcOffsetStore\n\n* Fix MySQL test failures: identifier quoting and timestamp precision (#13)\n\n* fix: MySQL test issues - double-quoted table name and timestamp precision\n\n* fix: make createTableSql dialect-aware, preserving double-quote quoting for postgres/yugabyte\n\n---------\n\nCo-authored-by: copilot-swe-agent[bot] \u003c198982749+Copilot@users.noreply.github.com\u003e\n\n* Fix savePaused to accept MySQL ON DUPLICATE KEY UPDATE row count and include count in error (#14)\n\nCo-authored-by: copilot-swe-agent[bot] \u003c198982749+Copilot@users.noreply.github.com\u003e\n\n* Potential fix for pull request finding\n\nCo-authored-by: Copilot Autofix powered by AI \u003c175728472+Copilot@users.noreply.github.com\u003e\n\n* Add MySQLR2dbcOffsetStoreSqlSpec unit tests for delete SQL correctness (#15)\n\nCo-authored-by: copilot-swe-agent[bot] \u003c198982749+Copilot@users.noreply.github.com\u003e\n\n* Update MySQLR2dbcOffsetStoreSqlSpec.scala\n\n---------\n\nCo-authored-by: copilot-swe-agent[bot] \u003c198982749+Copilot@users.noreply.github.com\u003e\nCo-authored-by: Copilot Autofix powered by AI \u003c175728472+Copilot@users.noreply.github.com\u003e"
    },
    {
      "commit": "da6ee92370835058233b6816e0d329ebe404e622",
      "tree": "da67d6371faef32738f0666692c70a17671b9a2e",
      "parents": [
        "6ac4e98f61ad90793dde56d6ca104a0582ecbc31"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Mon May 25 15:51:10 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 25 14:51:10 2026 +0100"
      },
      "message": "Update hibernate-core to 7.3.6.Final (#496)"
    },
    {
      "commit": "6ac4e98f61ad90793dde56d6ca104a0582ecbc31",
      "tree": "95b7f7c974e9249520b927d63c3be7784d5e3624",
      "parents": [
        "0ff44405b920e0b36a5088f385d0d52a6cf45eb4"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Sun May 24 00:38:26 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun May 24 00:38:26 2026 +0100"
      },
      "message": "fix issues in integration test workflow (#493)"
    },
    {
      "commit": "0ff44405b920e0b36a5088f385d0d52a6cf45eb4",
      "tree": "d5ecd91a2591944f2c27d1eb4c6370837936112c",
      "parents": [
        "9f5a4ec0edeefd89a0944630a7dc649d20a31357"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Sat May 23 17:49:59 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat May 23 17:49:59 2026 +0100"
      },
      "message": "test with yugabyte (#491)\n\n* test with yugabyte\n\n* missing file\n\n* Update integration-tests-r2dbc.yml\n\n* only run for this repo"
    },
    {
      "commit": "9f5a4ec0edeefd89a0944630a7dc649d20a31357",
      "tree": "f0bd2f03b603176c0492ed6ebdac4da1969aac23",
      "parents": [
        "2b14567bd8243f40256374d69aaa5e65f3438fe9"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Sat May 23 11:34:08 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat May 23 11:34:08 2026 +0100"
      },
      "message": "add r2dbc docs (#489)\n\n* r2dbc docs\n\n* Update build.sbt\n\n* Update R2dbcProjectionDocExample.java\n\n* Update R2dbcProjectionDocExample.scala\n\n* Update R2dbcProjectionDocExample.scala\n\n* Update R2dbcProjectionDocExample.scala"
    },
    {
      "commit": "2b14567bd8243f40256374d69aaa5e65f3438fe9",
      "tree": "33ff976d052384de19ecf8b863efe37097ff1617",
      "parents": [
        "be405acfae09ed0edb78189c833915176e0bb7c4"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Fri May 22 11:48:24 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 22 11:48:24 2026 +0100"
      },
      "message": "enable ignored tests (#488)"
    },
    {
      "commit": "be405acfae09ed0edb78189c833915176e0bb7c4",
      "tree": "0e636a490f2f9c2262ae7b577e9d257e616c6334",
      "parents": [
        "09ebb425f5a0d3754a1f626d4f7db660fc9de279"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Fri May 22 09:31:41 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 22 09:31:41 2026 +0100"
      },
      "message": "add grpc replication tests (#487)\n\n* add grpc replication tests\n\n* Update ReplicationJavaDSLIntegrationSpec.scala\n\n* Update build.sbt"
    },
    {
      "commit": "09ebb425f5a0d3754a1f626d4f7db660fc9de279",
      "tree": "3f1e989c3c0036bbd93132c42847f8d97c601572",
      "parents": [
        "9fe9a7a7740c07a45c891a3184a90e1ca31d5486"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Fri May 22 08:44:49 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 22 08:44:49 2026 +0100"
      },
      "message": "synch up code with akka-projection-r2dbc 1.4.0 (#484)\n\n* Port r2dbc changes from akka-projection 1.4.x\n\n- Add warnAboutFilteredEventsInFlow setting to R2dbcProjectionSettings\n- Update R2dbcOffsetStore with slice field in Record, sizeAfterEvict in State,\n  Validation sealed trait (Accepted/Duplicate/RejectedSeqNr/RejectedBacktrackingSeqNr)\n- Update R2dbcProjectionImpl with new offset store validation API and\n  warnAboutFilteredEventsInFlow check in adaptedHandlerForFlow\n- Add R2dbcReplication helpers (scaladsl and javadsl)\n- Update BySliceSourceProviderAdapter, R2dbcHandlerAdapter, handler traits\n- Port updated integration test files\n\nCo-authored-by: Copilot \u003c223556219+Copilot@users.noreply.github.com\u003e\n\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e\n\n* Fix logback-test.xml and javadsl scaladoc references\n\nCo-authored-by: Copilot \u003c223556219+Copilot@users.noreply.github.com\u003e\n\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e\n\n* Fix R2dbcOffsetStore.fromConfig call and ExecutionContexts.parasitic in r2dbc module\n\nAgent-Logs-Url: https://github.com/pjfanning/incubator-pekko-projection/sessions/2e8fd0eb-1908-4b34-a538-181f6fafc2fe\n\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e\n\n* refactor\n\n* some issues\n\n* more updates\n\n* update\n\n* Update R2dbcOffsetStoreSpec.scala\n\n* Fix compile error: use false for fromBacktracking in UpdatedDurableState case\n\n* Update TestDbLifecycle.scala\n\n* compile warnings\n\n* Update R2dbcProjectionImpl.scala\n\n* Create synch-akka-projection-r2dbc-1.4.0.excludes\n\n* compile issues\n\n* test runtime issue\n\n* Update Dependencies.scala\n\n* some more changes\n\n* Update TestClock.scala\n\n* more issues\n\n* revert some changes\n\n* Update R2dbcOffsetStoreSpec.scala\n\n---------\n\nCo-authored-by: copilot-swe-agent[bot] \u003c198982749+Copilot@users.noreply.github.com\u003e\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e"
    },
    {
      "commit": "9fe9a7a7740c07a45c891a3184a90e1ca31d5486",
      "tree": "88053161f317ab2210cb229b10e414f8232e1468",
      "parents": [
        "5a93dfb01f6fa5259e2b25bd44467b392dd8e0b4"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Thu May 21 20:00:30 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 21 20:00:30 2026 +0100"
      },
      "message": "Bring grpc code up to date with akka-projection-grpc 1.4.0 (#478)\n\n* Split grpc tests into grpc-test\n\nAgent-Logs-Url: https://github.com/pjfanning/incubator-pekko-projection/sessions/01087f42-1a9d-4f99-8004-5dad29e00b22\n\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e\n\n* imports\n\n* some more fixes\n\n* imports\n\n* more fixes\n\n* fix issues\n\n* pekko refs\n\n* pekko ports\n\n* Update logback-test.xml\n\n* Update build.sbt\n\n* Update PekkoPersistenceR2DBCDependency.scala\n\n* Update EventSourcedPubSubSpec.scala\n\n* temporarily remove the replication tests\n\n* Fix grpc-test logback config\n\n* Update TestDbLifecycle.scala\n\n* Update TestContainerConf.scala\n\n* Update TestContainerConf.scala\n\n* temp ignore tests\n\n* akka refs\n\n* Update overview.md\n\n* akka refs\n\n---------\n\nCo-authored-by: copilot-swe-agent[bot] \u003c198982749+Copilot@users.noreply.github.com\u003e\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e"
    },
    {
      "commit": "5a93dfb01f6fa5259e2b25bd44467b392dd8e0b4",
      "tree": "a86c232a5c9ace43d7028f5586a7ea549c307705",
      "parents": [
        "0f01603ca756ccbb3d7766b6eef6584fe99873df"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu May 21 19:50:33 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 21 19:50:33 2026 +0100"
      },
      "message": "Bump sbt/setup-sbt from 1.1.22 to 1.1.24 (#462)\n\nBumps [sbt/setup-sbt](https://github.com/sbt/setup-sbt) from 1.1.22 to 1.1.24.\n- [Release notes](https://github.com/sbt/setup-sbt/releases)\n- [Commits](https://github.com/sbt/setup-sbt/compare/508b753e53cb6095967669e0911487d2b9bc9f41...2e222825582620cc38d2a54e674f3c01b7c14f5d)\n\n---\nupdated-dependencies:\n- dependency-name: sbt/setup-sbt\n  dependency-version: 1.1.23\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "0f01603ca756ccbb3d7766b6eef6584fe99873df",
      "tree": "369ec1318548306b194b5773544ae2cd93edfb52",
      "parents": [
        "ed63a7ec201871e192fec9a4456d00413ea58101"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Tue May 19 19:46:43 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue May 19 19:46:43 2026 +0100"
      },
      "message": "move projection-r2dbc (from pekko-persistence-r2dbc) (#479)\n\n* move projection-r2dbc\n\n* partial fix\n\n* more changes\n\n* Update R2dbcProjectionImpl.scala\n\n* Update RuntimePluginConfigSpec.scala\n\n* Update R2dbcProjectionImpl.scala\n\n* more changes\n\n* more unused stuff\n\n* Update RuntimePluginConfigSpec.scala\n\n* separate int tests\n\n* move other r2dbc tests\n\n* Update IntegrationSpec.scala\n\n* Revert \"Update IntegrationSpec.scala\"\n\nThis reverts commit ecf6f211a229e7b38dddf6790c3cfbe7ec5030ce.\n\n* Update R2dbcProjectionSettings.scala\n\n* Update IntegrationSpec.scala\n\n* r2dbc int test job"
    },
    {
      "commit": "ed63a7ec201871e192fec9a4456d00413ea58101",
      "tree": "d61304ec04b1841518a4da7a9c2d3c000e4262b5",
      "parents": [
        "a1c5e4a104d2a3611103166ccbd4cf37cdb7f44a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue May 19 09:36:23 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue May 19 09:36:23 2026 +0100"
      },
      "message": "Bump coursier/cache-action from 8.1.0 to 8.1.1 (#481)\n\nBumps [coursier/cache-action](https://github.com/coursier/cache-action) from 8.1.0 to 8.1.1.\n- [Release notes](https://github.com/coursier/cache-action/releases)\n- [Commits](https://github.com/coursier/cache-action/compare/90c37294538be80a558fd665531fcdc2b467b475...95e5b1029b6b86e7bac033ee44a0697d8a527d2d)\n\n---\nupdated-dependencies:\n- dependency-name: coursier/cache-action\n  dependency-version: 8.1.1\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "a1c5e4a104d2a3611103166ccbd4cf37cdb7f44a",
      "tree": "726bdd6dc580fac7b98f8f2762941031f1f09e94",
      "parents": [
        "4794ebb62ae2e9ed11f189f45721424b918bed22"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue May 19 09:35:59 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue May 19 09:35:59 2026 +0100"
      },
      "message": "Bump scalacenter/sbt-dependency-submission from 3.2.1 to 3.2.2 (#480)\n\nBumps [scalacenter/sbt-dependency-submission](https://github.com/scalacenter/sbt-dependency-submission) from 3.2.1 to 3.2.2.\n- [Release notes](https://github.com/scalacenter/sbt-dependency-submission/releases)\n- [Commits](https://github.com/scalacenter/sbt-dependency-submission/compare/f43202114d7522a4b233e052f82c2eea8d658134...1cc96a7038ea2b014c200c1dae3a0cc92293b91d)\n\n---\nupdated-dependencies:\n- dependency-name: scalacenter/sbt-dependency-submission\n  dependency-version: 3.2.2\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "4794ebb62ae2e9ed11f189f45721424b918bed22",
      "tree": "764c6e6a1a4eeed042c2d9095ba931bc5dfce2d9",
      "parents": [
        "4b19e82790064bd278dad11e05a299703a7157bc"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Sun May 17 16:02:30 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun May 17 16:02:30 2026 +0200"
      },
      "message": "Update hibernate-core to 7.3.5.Final (#477)"
    },
    {
      "commit": "4b19e82790064bd278dad11e05a299703a7157bc",
      "tree": "9fd8e1d555cded3f6466be405aa3e955962b2165",
      "parents": [
        "2799a92a09ade15c32f0792d7ff03de55582863d"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Fri May 15 14:34:37 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 15 14:34:37 2026 +0100"
      },
      "message": "Port CanTriggerReplay and ScalaBySlicesSourceProviderAdapter from akka-projection 1.4.x (#476)\n\nAgent-Logs-Url: https://github.com/pjfanning/incubator-pekko-projection/sessions/5ed34547-44f6-4f51-ad38-2ce0babfb1be\n\nCo-authored-by: copilot-swe-agent[bot] \u003c198982749+Copilot@users.noreply.github.com\u003e\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e"
    },
    {
      "commit": "2799a92a09ade15c32f0792d7ff03de55582863d",
      "tree": "360c868677595b624fea8cdd938760975b16b04c",
      "parents": [
        "2746ce4b421e7c4cd8bf7aea9aaea6b2f700b58e"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Thu May 14 14:17:17 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 14 14:17:17 2026 +0100"
      },
      "message": "Update pekko core version to 2.0.0-M2 (#474)\n\n* Update pekko core version to 2.0.0-M2\n\n* Update Dependencies.scala"
    },
    {
      "commit": "2746ce4b421e7c4cd8bf7aea9aaea6b2f700b58e",
      "tree": "1140742ebe19be13f365fc9c480eca4fbb666b0d",
      "parents": [
        "36f9f2147d0257356330ea12aa7e07ba5cb1d4b5"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Mon May 11 20:09:56 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 11 20:09:56 2026 +0200"
      },
      "message": "Update scalafmt-core to 3.11.1 (#473)"
    },
    {
      "commit": "36f9f2147d0257356330ea12aa7e07ba5cb1d4b5",
      "tree": "def145851ca8b8a44a4273d916e1900d2080e03d",
      "parents": [
        "f5c35c6993ebed15c5df7d6aefb22f6ab5438279"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Mon May 11 20:09:35 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 11 20:09:35 2026 +0200"
      },
      "message": "Update sbt-scalafmt to 2.6.1 (#472)"
    },
    {
      "commit": "f5c35c6993ebed15c5df7d6aefb22f6ab5438279",
      "tree": "a4791f0cd583164057a58f0f4bf29052a108e69c",
      "parents": [
        "fcd459898c2d2b3ed3d30efd644d5d6d65f6bfcc"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Mon May 11 20:08:00 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 11 20:08:00 2026 +0200"
      },
      "message": "Update hibernate-core to 7.3.4.Final (#471)"
    },
    {
      "commit": "fcd459898c2d2b3ed3d30efd644d5d6d65f6bfcc",
      "tree": "40c114c14eb65d2b340f1bc3d05c7cb4680bc838",
      "parents": [
        "01a3f11de046b30c1eef3ef9608ad4ec0378cc2a"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Fri May 08 12:33:44 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 08 12:33:44 2026 +0100"
      },
      "message": "add grpc int tests module (#467)\n\n* Add grpc-int-test module with integration tests ported from akka-projection\n\nAgent-Logs-Url: https://github.com/pjfanning/incubator-pekko-projection/sessions/bea6fbd0-2080-45d8-beb2-b0874db6b9e4\n\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e\n\n* Fix EventTimestampQuerySpec: use timestampB in assertion for event B\n\nAgent-Logs-Url: https://github.com/pjfanning/incubator-pekko-projection/sessions/bea6fbd0-2080-45d8-beb2-b0874db6b9e4\n\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e\n\n* Update test dependencies to use lowercase \u0027test\u0027\n\n* compile issue\n\n* Update TestContainerConf.scala\n\n* workflow\n\n* Update Dependencies.scala\n\n* snapshot jars\n\n* Update Dependencies.scala\n\n* Update build.sbt\n\n* Update TestEntity.scala\n\n---------\n\nCo-authored-by: copilot-swe-agent[bot] \u003c198982749+Copilot@users.noreply.github.com\u003e\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e"
    },
    {
      "commit": "01a3f11de046b30c1eef3ef9608ad4ec0378cc2a",
      "tree": "a2bf2c83196eaabb3e80ac52c47548abff69b828",
      "parents": [
        "32d8af8c7aa55c3c9664f10e7c42262dcf77a064"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Fri May 08 10:49:58 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 08 10:49:58 2026 +0100"
      },
      "message": "add grpc docs (#468)\n\n* Add grpc.md with Pekko references and update index.md\n\nAgent-Logs-Url: https://github.com/pjfanning/incubator-pekko-projection/sessions/2e455f7c-97cc-447a-85d5-ad128cc892a5\n\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e\n\n* Add grpc-overview.png image referenced by grpc.md\n\nAgent-Logs-Url: https://github.com/pjfanning/incubator-pekko-projection/sessions/d88fbdba-7808-42ef-ada7-15f05e7de296\n\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e\n\n* refs\n\n* remove mention of missing examples\n\n* fix refs\n\n---------\n\nCo-authored-by: copilot-swe-agent[bot] \u003c198982749+Copilot@users.noreply.github.com\u003e\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e"
    },
    {
      "commit": "32d8af8c7aa55c3c9664f10e7c42262dcf77a064",
      "tree": "092782ce422ebddfc0fb9f3de294146973dbf887",
      "parents": [
        "3eea69e0baba84904d6dc8c11d9d6987610df743"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Thu May 07 20:48:45 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 07 20:48:45 2026 +0100"
      },
      "message": "test: increase test coverage for EventSourcedProvider and DurableStateSourceProvider (#465)\n\n* test: increase test coverage for EventSourcedProvider and DurableStateSourceProvider\n\n- EventSourcedProviderSpec: add tests for eventsByTag/eventsBySlices with\n  direct query instance overloads; add sliceForPersistenceId/sliceRanges\n  without custom Config (using default plugin ID)\n- DurableStateSourceProviderSpec: add tests for changesByTag with direct\n  query instance; add changesBySlices (pluginId and direct query variants);\n  add sliceForPersistenceId and sliceRanges tests\n\nAddresses apache/pekko-projection#458\n\nAgent-Logs-Url: https://github.com/pjfanning/incubator-pekko-projection/sessions/912ca590-0b37-4697-acfa-97c41236e831\n\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e\n\n* test: add negative tests, non-default config tests, and robust direct-query tests\n\nEventSourcedProviderSpec:\n- Update \"using direct query instance\" tests to write to a custom journal\n  and create the query from that journal\u0027s config; if implementation ignores\n  the passed instance and reads the default journal, events are not found\n- Add negative tests: timestampOf and loadEnvelope fail with\n  IllegalStateException when underlying query does not implement those\n  interfaces\n\nDurableStateSourceProviderSpec:\n- Add custom-durable-state-store plugin config (clearly non-default)\n- Add changesByTag and changesBySlices tests using the non-default plugin\n- Add negative test: getObject returns None for non-existent persistenceId\n- Add negative test: changesByTag with unmatched tag returns empty source\n- Consolidate implicit ExecutionContext to class level (removes repeated\n  unused-local warnings that were present in the original code too)\n\nAgent-Logs-Url: https://github.com/pjfanning/incubator-pekko-projection/sessions/4699cea0-ed57-49f8-9ce7-f0e57d4e5d9f\n\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e\n\n* scalafmt\n\n---------\n\nCo-authored-by: copilot-swe-agent[bot] \u003c198982749+Copilot@users.noreply.github.com\u003e\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e"
    },
    {
      "commit": "3eea69e0baba84904d6dc8c11d9d6987610df743",
      "tree": "4c3b1c80470837897c114fcf1138e6beb2c49cdf",
      "parents": [
        "1f31e054bd0c06f079f97d6845339e6b33c0d1e1"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Thu May 07 18:04:58 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 07 19:04:58 2026 +0200"
      },
      "message": "update docker-compose command (#466)"
    },
    {
      "commit": "1f31e054bd0c06f079f97d6845339e6b33c0d1e1",
      "tree": "1ef18290cd76d596211d0a8bd0aa086d5b92cb2f",
      "parents": [
        "14bcba1d00a49965f42fcc005a83be20a7832193"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Thu May 07 10:58:13 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 07 10:58:13 2026 +0100"
      },
      "message": "add pekko-projection-grpc module (#457)\n\n* Add grpc module ported from akka-projection-grpc\n\nPort of the gRPC event producer/consumer module from pjfanning/akka-projection.\n\n- Add grpc module with event producer (scaladsl/javadsl) and consumer\n- Add ProtoAnySerialization for serializing events as Protobuf Any\n- Add EventProducerServiceImpl implementing gRPC service\n- Add GrpcReadJournal for consuming events over gRPC\n- All Akka references converted to Pekko equivalents\n- Use pekko-grpc-runtime 2.0.0-M1 (compatible with pekko 2.0.0-M1)\n- Add PekkoGrpcPlugin (pekko-grpc-sbt-plugin 2.0.0-M1) to build\n- Add test specs for EventProducerService, ProtoAnySerialization, GrpcQuerySettings\n- Config prefix: pekko.projection.grpc.*\n- Type URL prefix: ser.pekko.io/ (instead of ser.akka.io/)\n- GrpcReadJournal identifier: pekko.projection.grpc.consumer\n\nCo-authored-by: Copilot \u003c223556219+Copilot@users.noreply.github.com\u003e\n\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e\n\n* Address code review feedback for grpc module\n\n- Fix documentation URL: akka -\u003e pekko docs\n- Fix error message in EventProducerSource: \u0027Entity type must not be empty\u0027\n- Fix documentation comment double backticks in GrpcReadJournalProvider\n- Fix seq nr in EventProducerServiceSpec: env3 should use seqNr 3L\n\nCo-authored-by: Copilot \u003c223556219+Copilot@users.noreply.github.com\u003e\n\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e\n\n* scalafmt\n\n* ExecutionContext.parasitic\n\n* copyrights\n\n* Update build.sbt\n\n* build issue\n\n* Update GrpcReadJournal.scala\n\n* unnecessary nowarn\n\n* Update EventProducerServiceSpec.scala\n\n* Consolidate org.apache.pekko imports using root import alias pattern\n\nAgent-Logs-Url: https://github.com/pjfanning/incubator-pekko-projection/sessions/4aa218fe-e995-4255-a15c-64cdfd5ba68f\n\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e\n\n* Update ProtoAnySerialization.scala\n\n* Fix Scala 3.3 compile error: override val -\u003e override def in GrpcReadJournalProvider\n\nAgent-Logs-Url: https://github.com/pjfanning/incubator-pekko-projection/sessions/12bb5942-8c5d-43ae-af0e-e0e23abe6e86\n\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e\n\n* Update Dependencies.scala\n\n* Reorder import statements in Transformation.scala\n\n* Update Dependencies.scala\n\n* Update Dependencies.scala\n\n---------\n\nCo-authored-by: copilot-swe-agent[bot] \u003c198982749+Copilot@users.noreply.github.com\u003e\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e"
    },
    {
      "commit": "14bcba1d00a49965f42fcc005a83be20a7832193",
      "tree": "5b2bd3507caa0fa4621f9a156371a6a19e03a4fe",
      "parents": [
        "f1199727a44fe3dab472589b19615a6bdf56768d"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Thu May 07 08:50:56 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 07 08:50:56 2026 +0100"
      },
      "message": "fix: move latch.countDown() after buffer.append() in concatHandler to fix race condition (#464)\n\nAgent-Logs-Url: https://github.com/pjfanning/incubator-pekko-projection/sessions/ce3146fc-412a-4b16-8a66-f450145aa6fa\n\nCo-authored-by: copilot-swe-agent[bot] \u003c198982749+Copilot@users.noreply.github.com\u003e\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e"
    },
    {
      "commit": "f1199727a44fe3dab472589b19615a6bdf56768d",
      "tree": "d6f34408c7633461d9de58d80572e1730f805fbb",
      "parents": [
        "1fcac134d350889e8ee7f969fe51e69cdf5d9944"
      ],
      "author": {
        "name": "Philippus",
        "email": "philippus@gmail.com",
        "time": "Mon May 04 08:36:39 2026 +0200"
      },
      "committer": {
        "name": "Philippus Baalman",
        "email": "philippus@gmail.com",
        "time": "Wed May 06 11:51:07 2026 +0200"
      },
      "message": "Reformat with sbt-java-formatter 0.12.0\n"
    },
    {
      "commit": "1fcac134d350889e8ee7f969fe51e69cdf5d9944",
      "tree": "45cf280ac9ef0980bfca6c239aeecc97b25dfb4b",
      "parents": [
        "ee46a9a16a935a06935e1b11f55d9e5e96668276"
      ],
      "author": {
        "name": "Philippus",
        "email": "philippus@gmail.com",
        "time": "Mon May 04 08:36:12 2026 +0200"
      },
      "committer": {
        "name": "Philippus Baalman",
        "email": "philippus@gmail.com",
        "time": "Wed May 06 11:51:07 2026 +0200"
      },
      "message": "Update sbt-java-formatter to 0.12.0\n"
    },
    {
      "commit": "ee46a9a16a935a06935e1b11f55d9e5e96668276",
      "tree": "d5d1838312547c014f65c0597030c50e9afda0a0",
      "parents": [
        "268e0cdad2d91793553d479d98554bbc08f3dee9"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Sun May 03 23:41:53 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun May 03 22:41:53 2026 +0100"
      },
      "message": "Update sbt, scripted-plugin to 1.12.11 (#460)"
    },
    {
      "commit": "268e0cdad2d91793553d479d98554bbc08f3dee9",
      "tree": "fdd4f1b7d4ac6482e068ecc178d4b6935f45deff",
      "parents": [
        "4a6fe5d66f48a621b0998e509397b660140c3f06"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Sun May 03 17:27:30 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun May 03 16:27:30 2026 +0100"
      },
      "message": "Update hibernate-core to 7.3.3.Final (#459)"
    },
    {
      "commit": "4a6fe5d66f48a621b0998e509397b660140c3f06",
      "tree": "9608e27cfb14bed4d20b3ee5d37e85eb6e599b36",
      "parents": [
        "cd5dce52a48562ff5d788e5a68f00b5bd7ede71c"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Fri May 01 13:34:58 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 01 13:34:58 2026 +0100"
      },
      "message": "Port akka-projection PR #684: add query plugin instance overloads to source providers (#454)\n\nAgent-Logs-Url: https://github.com/pjfanning/incubator-pekko-projection/sessions/cac51e5c-2e6d-4f84-99ff-01a1f44ff83a\n\nCo-authored-by: copilot-swe-agent[bot] \u003c198982749+Copilot@users.noreply.github.com\u003e\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e"
    },
    {
      "commit": "cd5dce52a48562ff5d788e5a68f00b5bd7ede71c",
      "tree": "9a726ee8442e2a4d2a7d85cc5f05d2b940728ddf",
      "parents": [
        "b6cde0ba9d23634fd6276e2bdd6070f17589a2cb"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Fri May 01 13:34:47 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 01 13:34:47 2026 +0100"
      },
      "message": "fix: handle DeletedDurableState in extractCreationTime implementations (#453)\n\nAgent-Logs-Url: https://github.com/pjfanning/incubator-pekko-projection/sessions/83974b22-4556-491a-a5af-090d19cd9968\n\nCo-authored-by: copilot-swe-agent[bot] \u003c198982749+Copilot@users.noreply.github.com\u003e\nCo-authored-by: pjfanning \u003c11783444+pjfanning@users.noreply.github.com\u003e"
    },
    {
      "commit": "b6cde0ba9d23634fd6276e2bdd6070f17589a2cb",
      "tree": "e73233cb5c8b00b91b43fe60f09c9115274a506e",
      "parents": [
        "9d9aff6d03cc621fbcab1d2f3e264f2e2cba26f3"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Wed Apr 29 20:13:14 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Apr 29 20:13:14 2026 +0200"
      },
      "message": "Update postgresql to 42.7.11 (#456)"
    },
    {
      "commit": "9d9aff6d03cc621fbcab1d2f3e264f2e2cba26f3",
      "tree": "e4ef6298355ffc570cf823ef0d83f9b91d5a0628",
      "parents": [
        "c562ec6e270bad50cfbf04e735f5561e14b4cea9"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Wed Apr 29 17:40:59 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Apr 29 17:40:59 2026 +0200"
      },
      "message": "Update jackson-databind to 2.21.3 (#455)"
    },
    {
      "commit": "c562ec6e270bad50cfbf04e735f5561e14b4cea9",
      "tree": "ff5ec6bb5c3eb8119a56dc949bdc2d904eeeea29",
      "parents": [
        "2181d02c740adb8b2fd7a07437dbdfbc70d37eb1"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Mon Apr 27 16:37:23 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Apr 27 16:37:23 2026 +0200"
      },
      "message": "Update sbt, scripted-plugin to 1.12.10 (#452)"
    },
    {
      "commit": "2181d02c740adb8b2fd7a07437dbdfbc70d37eb1",
      "tree": "418eebdc0cc89b6ed281430e336224b4c3166c73",
      "parents": [
        "171a93851547415eb80a88ec9aeab32eda71df0c"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Sat Apr 25 11:36:33 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Apr 25 11:36:33 2026 +0200"
      },
      "message": "test with pekko2 (#449)\n\n* test with pekko2\n\n* more changes\n\n* watchTermination\n\n* Update OffsetSerializationSpec.scala\n\n* Remove Apache Maven Staging Repo from resolvers"
    },
    {
      "commit": "171a93851547415eb80a88ec9aeab32eda71df0c",
      "tree": "61ffbc43058fd8b72db481980c2283d336b0367e",
      "parents": [
        "4b506892b37e67b3899d98b239550a00957109de"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Fri Apr 24 10:01:54 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Apr 24 10:01:54 2026 +0200"
      },
      "message": "upgrade protoc to 4.33.1 (#450)\n\n* upgrade protoc to 4.33.4\n\n* 4.33.1\n\n* Create protoc33.excludes\n\n* Update protoc33.excludes"
    },
    {
      "commit": "4b506892b37e67b3899d98b239550a00957109de",
      "tree": "636ed4dc5208d76920ed9198c826fcb57f245e61",
      "parents": [
        "78339134bddef8099eab18f6a0ef7284c1391dbb"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Fri Apr 24 10:01:32 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Apr 24 10:01:32 2026 +0200"
      },
      "message": "avoid deprecated StringUtils (#451)"
    },
    {
      "commit": "78339134bddef8099eab18f6a0ef7284c1391dbb",
      "tree": "7d1dab70d94c22b651fe4a199607745e8be0e568",
      "parents": [
        "2252555e2bbae077c0016081e6464a55d7c9f8d0"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Thu Apr 23 18:34:53 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Apr 23 18:34:53 2026 +0200"
      },
      "message": "Update mysql-connector-j to 9.7.0 (#448)"
    },
    {
      "commit": "2252555e2bbae077c0016081e6464a55d7c9f8d0",
      "tree": "d0c1fae027f8f3323d585186f8e969a4d38e1d97",
      "parents": [
        "4a1d6ec9f989ca75f560031a4cefd51bb02e2212"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Tue Apr 21 17:11:51 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Apr 21 17:11:51 2026 +0200"
      },
      "message": "Update hibernate-core to 7.3.2.Final (#446)"
    },
    {
      "commit": "4a1d6ec9f989ca75f560031a4cefd51bb02e2212",
      "tree": "86211325ab3aaf04bd5068fae2f670eaeac0436f",
      "parents": [
        "0026a939cf83bab3b1135cea0a12c2e1f3f9692c"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Tue Apr 21 17:11:19 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Apr 21 17:11:19 2026 +0200"
      },
      "message": "Update testcontainers-cassandra, ... to 2.0.5 (#447)"
    },
    {
      "commit": "0026a939cf83bab3b1135cea0a12c2e1f3f9692c",
      "tree": "0b5913eb576b9ee49454e14eb8b5717e0858589b",
      "parents": [
        "7038274f183909ca7618a2e7da8c1ed4e2ec555a"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Fri Apr 17 12:48:47 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Apr 17 12:48:47 2026 +0200"
      },
      "message": "Update sbt-scalafmt to 2.6.0 (#443)"
    },
    {
      "commit": "7038274f183909ca7618a2e7da8c1ed4e2ec555a",
      "tree": "4007b9adaf1c1ff69eb1f5a6a92de39044b42a87",
      "parents": [
        "793ccf448a4cf998c2bbabcab39d9b61f3202c43"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Fri Apr 17 12:48:29 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Apr 17 12:48:29 2026 +0200"
      },
      "message": "Update scalafmt-core to 3.11.0 (#444)"
    },
    {
      "commit": "793ccf448a4cf998c2bbabcab39d9b61f3202c43",
      "tree": "226818b17c0b9cb0cf2d24187208d503bd2b4537",
      "parents": [
        "f681d92d56a3d7096c805f9313c0d3790001f4f5"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Sat Apr 11 17:17:49 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Apr 11 17:17:49 2026 +0200"
      },
      "message": "Update hibernate-core to 7.3.1.Final (#442)"
    },
    {
      "commit": "f681d92d56a3d7096c805f9313c0d3790001f4f5",
      "tree": "229ec6bbf8c91006001e91e81991e54afeca7ca7",
      "parents": [
        "76e896027eb08fd2d58bb7ab7c24fce83c7a8935"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Tue Apr 07 17:45:23 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Apr 07 17:45:23 2026 +0200"
      },
      "message": "Update sbt, scripted-plugin to 1.12.9 (#441)"
    },
    {
      "commit": "76e896027eb08fd2d58bb7ab7c24fce83c7a8935",
      "tree": "a75afc8f6631deceeba74f518d689a64e3cecbfe",
      "parents": [
        "2de70916ba179370eb09505d60267d41b0f3a2f1"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Apr 06 19:50:38 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Apr 06 19:50:38 2026 +0200"
      },
      "message": "Bump jrouly/scalafmt-native-action from 4 to 5 (#440)\n\nBumps [jrouly/scalafmt-native-action](https://github.com/jrouly/scalafmt-native-action) from 4 to 5.\n- [Release notes](https://github.com/jrouly/scalafmt-native-action/releases)\n- [Changelog](https://github.com/jrouly/scalafmt-native-action/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/jrouly/scalafmt-native-action/compare/v4...v5)\n\n---\nupdated-dependencies:\n- dependency-name: jrouly/scalafmt-native-action\n  dependency-version: \u00275\u0027\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "2de70916ba179370eb09505d60267d41b0f3a2f1",
      "tree": "4f15c113b6d6fd9bde8cca4567972e9ec829896e",
      "parents": [
        "9a65fc9e584721bacb0320aaea0a6458ee317315"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Mon Apr 06 18:57:01 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Apr 06 19:57:01 2026 +0300"
      },
      "message": "Update sbt-java-formatter to 0.11.0 (#439)"
    },
    {
      "commit": "9a65fc9e584721bacb0320aaea0a6458ee317315",
      "tree": "000ff951f3cad886aedb982f32f8f8ead2bcc078",
      "parents": [
        "3549e86e611afbb7985b5260a3d237366526e470"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Mar 30 20:14:12 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Mar 30 20:14:12 2026 +0200"
      },
      "message": "Bump sbt/setup-sbt from 1.1.20 to 1.1.22 (#438)\n\nBumps [sbt/setup-sbt](https://github.com/sbt/setup-sbt) from 1.1.20 to 1.1.22.\n- [Release notes](https://github.com/sbt/setup-sbt/releases)\n- [Commits](https://github.com/sbt/setup-sbt/compare/dd1ef7d7798fab5ce802a6adab3b782817b8c2d0...508b753e53cb6095967669e0911487d2b9bc9f41)\n\n---\nupdated-dependencies:\n- dependency-name: sbt/setup-sbt\n  dependency-version: 1.1.22\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "3549e86e611afbb7985b5260a3d237366526e470",
      "tree": "905c2c159c219d599b20f5460ab697ef3cb6450f",
      "parents": [
        "88d7e06b3b64ac53750bf564cbf4be22b5575117"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Fri Mar 27 02:50:14 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Mar 27 02:50:14 2026 +0100"
      },
      "message": "Update scalatest to 3.2.20 (#437)"
    },
    {
      "commit": "88d7e06b3b64ac53750bf564cbf4be22b5575117",
      "tree": "d430462a39b51c10f08b2f722e66c2ab5bf197b6",
      "parents": [
        "39bc57923f707e9be44a02816dc29d91d762654b"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Fri Mar 27 01:59:41 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Mar 27 01:59:41 2026 +0100"
      },
      "message": "Update sbt, scripted-plugin to 1.12.8 (#436)"
    },
    {
      "commit": "39bc57923f707e9be44a02816dc29d91d762654b",
      "tree": "23c185177ca7ff3b638fe76b2487f01deab7a464",
      "parents": [
        "2104a6333ab8d8991150a74e900c10017b54a58c"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Tue Mar 24 17:21:30 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Mar 24 17:21:30 2026 +0100"
      },
      "message": "Update hibernate-core to 7.3.0.Final (#434)"
    },
    {
      "commit": "2104a6333ab8d8991150a74e900c10017b54a58c",
      "tree": "d2f2fdaacd2feb437620afab8b64e4f800b6e777",
      "parents": [
        "28a5a7d5528912c5a58b6bf37cb401609b67fcba"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Tue Mar 24 17:18:32 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Mar 24 17:18:32 2026 +0100"
      },
      "message": "Update sbt, scripted-plugin to 1.12.7 (#435)"
    },
    {
      "commit": "28a5a7d5528912c5a58b6bf37cb401609b67fcba",
      "tree": "e3629aa5f9887d39ade3560ab0b5418295a163b3",
      "parents": [
        "7ac5947da365bf4e8bdf63fc8a06b28f2f7dbcd5"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Mar 23 20:14:46 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Mar 23 20:14:46 2026 +0100"
      },
      "message": "Bump sbt/setup-sbt from 1.1.19 to 1.1.20 (#431)\n\nBumps [sbt/setup-sbt](https://github.com/sbt/setup-sbt) from 1.1.19 to 1.1.20.\n- [Release notes](https://github.com/sbt/setup-sbt/releases)\n- [Commits](https://github.com/sbt/setup-sbt/compare/6bec67c98f542b9e17369bfca0ec822ac1363194...dd1ef7d7798fab5ce802a6adab3b782817b8c2d0)\n\n---\nupdated-dependencies:\n- dependency-name: sbt/setup-sbt\n  dependency-version: 1.1.20\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "7ac5947da365bf4e8bdf63fc8a06b28f2f7dbcd5",
      "tree": "e62407ffbbe40811ccea9e44f0b85dc1c767cdf5",
      "parents": [
        "123e14d2ad9b45db5def77f87cf0d42d7acd2ec5"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Mar 23 20:14:25 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Mar 23 20:14:25 2026 +0100"
      },
      "message": "Bump coursier/cache-action from 8.0.1 to 8.1.0 (#432)\n\nBumps [coursier/cache-action](https://github.com/coursier/cache-action) from 8.0.1 to 8.1.0.\n- [Release notes](https://github.com/coursier/cache-action/releases)\n- [Commits](https://github.com/coursier/cache-action/compare/e47d7d35a0d3a2c7f649ca5c63dfc2bbfaa002e7...90c37294538be80a558fd665531fcdc2b467b475)\n\n---\nupdated-dependencies:\n- dependency-name: coursier/cache-action\n  dependency-version: 8.1.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "123e14d2ad9b45db5def77f87cf0d42d7acd2ec5",
      "tree": "5eec7034134397faae6b921ff315ca7764bb51dc",
      "parents": [
        "85ecf45b5a9661a1e9831dcf32fb0c3784459067"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Mar 23 20:13:41 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Mar 23 20:13:41 2026 +0100"
      },
      "message": "Bump coursier/setup-action from 2.0.3 to 3.0.0 (#433)\n\nBumps [coursier/setup-action](https://github.com/coursier/setup-action) from 2.0.3 to 3.0.0.\n- [Release notes](https://github.com/coursier/setup-action/releases)\n- [Commits](https://github.com/coursier/setup-action/compare/7acb5c9ea69bc1a1bb185ec45ebce2ac114f3628...fd1707a76b027efdfb66ca79318b4d29b72e5a02)\n\n---\nupdated-dependencies:\n- dependency-name: coursier/setup-action\n  dependency-version: 3.0.0\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "85ecf45b5a9661a1e9831dcf32fb0c3784459067",
      "tree": "809e50d5e7a5a461adda1ba421733f5b958776f4",
      "parents": [
        "445814f7cc18d0ccc3249da3e4a48c92baa2a899"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Mon Mar 23 08:59:32 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Mar 23 08:59:32 2026 +0100"
      },
      "message": "Update hibernate-core to 7.2.7.Final (#427)"
    },
    {
      "commit": "445814f7cc18d0ccc3249da3e4a48c92baa2a899",
      "tree": "84237300ef7a20fb20a07a06accc87643c771ef7",
      "parents": [
        "99c9d078093d79c74dff68a5063b3f2d34e60f35"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Sun Mar 22 19:44:04 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Mar 22 19:44:04 2026 +0100"
      },
      "message": "Update jackson-databind to 2.21.2 (#430)"
    },
    {
      "commit": "99c9d078093d79c74dff68a5063b3f2d34e60f35",
      "tree": "b9b5fa4d7ce16a3385aa8d8b1addcfb2dde20fad",
      "parents": [
        "dc6f9050faf64d8df60af007b52e11daa47a7134"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Sun Mar 22 15:45:29 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Mar 22 15:45:29 2026 +0100"
      },
      "message": "Update sbt, scripted-plugin to 1.12.6 (#428)"
    },
    {
      "commit": "dc6f9050faf64d8df60af007b52e11daa47a7134",
      "tree": "3a9afed0c953fbb8b9e3126cab110603e451a11f",
      "parents": [
        "042dbbe2546b20da2ef51f44071ef70b58f3a223"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Fri Mar 20 17:43:52 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Mar 20 17:43:52 2026 +0100"
      },
      "message": "Update testcontainers-cassandra, ... to 2.0.4 (#429)"
    },
    {
      "commit": "042dbbe2546b20da2ef51f44071ef70b58f3a223",
      "tree": "b0b3946fa2e5f45394d4d10f990478edc3c10dba",
      "parents": [
        "b88422a242cd40aea2a99e4594f7ec5e17b33a23"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Sat Mar 14 20:13:19 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Mar 14 20:13:19 2026 +0100"
      },
      "message": "Update mssql-jdbc to 13.4.0.jre11 (#426)"
    },
    {
      "commit": "b88422a242cd40aea2a99e4594f7ec5e17b33a23",
      "tree": "1e605010c29ab20c89dd51fb82924f7228dd659c",
      "parents": [
        "4399c8217e93c4822b926adca807352694ddb2aa"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Mar 09 20:21:34 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Mar 09 20:21:34 2026 +0100"
      },
      "message": "Bump sbt/setup-sbt from 1.1.18 to 1.1.19 (#425)\n\nBumps [sbt/setup-sbt](https://github.com/sbt/setup-sbt) from 1.1.18 to 1.1.19.\n- [Release notes](https://github.com/sbt/setup-sbt/releases)\n- [Commits](https://github.com/sbt/setup-sbt/compare/1cad58d595b729a71ca2254cdf5b43dd6f42d4bb...6bec67c98f542b9e17369bfca0ec822ac1363194)\n\n---\nupdated-dependencies:\n- dependency-name: sbt/setup-sbt\n  dependency-version: 1.1.19\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "4399c8217e93c4822b926adca807352694ddb2aa",
      "tree": "5551b5a4310da56b06ba5ee2c7ff00229a6f6594",
      "parents": [
        "15f61e934ba94033de2b5ebc2960ec5bbd368fa9"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Mon Mar 02 19:11:26 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Mar 02 19:11:26 2026 +0100"
      },
      "message": "Update hibernate-core to 7.2.6.Final (#423)\n\n"
    },
    {
      "commit": "15f61e934ba94033de2b5ebc2960ec5bbd368fa9",
      "tree": "8dc00610ffac995d59a1f40fe1b2a1afe6ba92bd",
      "parents": [
        "e5e2194b8718c83533c83fc5f0be694c0b1e6780"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Mon Mar 02 16:58:42 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Mar 02 16:58:42 2026 +0100"
      },
      "message": "Update sbt, scripted-plugin to 1.12.5 (#424)\n\n"
    },
    {
      "commit": "e5e2194b8718c83533c83fc5f0be694c0b1e6780",
      "tree": "f972e9834d454ca2485fae9e9c4ae35f1f0c3cce",
      "parents": [
        "fa432f5ca36ae1581051123e6fd01c907698c3b7"
      ],
      "author": {
        "name": "PJ Fanning",
        "email": "pjfanning@users.noreply.github.com",
        "time": "Thu Feb 26 21:54:30 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Feb 26 21:54:30 2026 +0100"
      },
      "message": "Delete scala-steward.yml (#422)\n\n"
    },
    {
      "commit": "fa432f5ca36ae1581051123e6fd01c907698c3b7",
      "tree": "d358ec1c1281da2e1ad41250c0a86586c0b38f75",
      "parents": [
        "df5221c2687804dc0e4fa69467d496175fc52ceb"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Tue Feb 24 20:23:03 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Feb 24 20:23:03 2026 +0100"
      },
      "message": "Update sbt, scripted-plugin to 1.12.4 (#421)\n\n"
    },
    {
      "commit": "df5221c2687804dc0e4fa69467d496175fc52ceb",
      "tree": "342ca1b18b91e731075c19a4654e4d128fdf1bf8",
      "parents": [
        "ba0d77ca5be55f964fd5b26ec9f9979a4a82e57b"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Tue Feb 24 20:07:22 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Feb 24 20:07:22 2026 +0100"
      },
      "message": "Update jackson-databind to 2.21.1 (#420)\n\n"
    },
    {
      "commit": "ba0d77ca5be55f964fd5b26ec9f9979a4a82e57b",
      "tree": "9a346b5a59e0a1da8ceddbecd44eaea2328cf755",
      "parents": [
        "d328e3a1c8d97a5d7d3b4c5ce11345a9b969c3d1"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Feb 23 20:09:15 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Feb 23 20:09:15 2026 +0100"
      },
      "message": "Bump coursier/cache-action from 8.0.0 to 8.0.1 (#419)\n\n* Bump coursier/cache-action from 8.0.0 to 8.0.1\n\nBumps [coursier/cache-action](https://github.com/coursier/cache-action) from 8.0.0 to 8.0.1.\n- [Release notes](https://github.com/coursier/cache-action/releases)\n- [Commits](https://github.com/coursier/cache-action/compare/c5ca79321d170b8a18c288d9cadc2a6037166d0f...e47d7d35a0d3a2c7f649ca5c63dfc2bbfaa002e7)\n\n---\nupdated-dependencies:\n- dependency-name: coursier/cache-action\n  dependency-version: 8.0.1\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\n\n* version number\n\n---------\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e\nCo-authored-by: PJ Fanning \u003cpjfanning@users.noreply.github.com\u003e"
    },
    {
      "commit": "d328e3a1c8d97a5d7d3b4c5ce11345a9b969c3d1",
      "tree": "c6e8dc7247289d5f838c4d341eb4a0e2a7a046f5",
      "parents": [
        "2b22180e0c7f8e5f62f3207bdb6a59a800c4da56"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Feb 23 19:57:44 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Feb 23 19:57:44 2026 +0100"
      },
      "message": "Bump coursier/setup-action from 2.0.2 to 2.0.3 (#418)\n\nBumps [coursier/setup-action](https://github.com/coursier/setup-action) from 2.0.2 to 2.0.3.\n- [Release notes](https://github.com/coursier/setup-action/releases)\n- [Commits](https://github.com/coursier/setup-action/compare/f7be3eb3dcef84a4e16fc8cd75c87beb2e5cbcc9...7acb5c9ea69bc1a1bb185ec45ebce2ac114f3628)\n\n---\nupdated-dependencies:\n- dependency-name: coursier/setup-action\n  dependency-version: 2.0.3\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "2b22180e0c7f8e5f62f3207bdb6a59a800c4da56",
      "tree": "db30152f96fa56ede498458b0e3fc46e16dd4a49",
      "parents": [
        "ee57d42e3b494d303209a890f48b7649d67fd7c4"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Feb 23 19:53:33 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Feb 23 19:53:33 2026 +0100"
      },
      "message": "Bump sbt/setup-sbt from 1.1.16 to 1.1.18 (#417)\n\nBumps [sbt/setup-sbt](https://github.com/sbt/setup-sbt) from 1.1.16 to 1.1.18.\n- [Release notes](https://github.com/sbt/setup-sbt/releases)\n- [Commits](https://github.com/sbt/setup-sbt/compare/ae54f7cfe46ec0d24ade661d77f007360ab48bda...1cad58d595b729a71ca2254cdf5b43dd6f42d4bb)\n\n---\nupdated-dependencies:\n- dependency-name: sbt/setup-sbt\n  dependency-version: 1.1.18\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "ee57d42e3b494d303209a890f48b7649d67fd7c4",
      "tree": "8deafb29cb244a68ceb698ba5d67e1a355a94aea",
      "parents": [
        "092bd790888f73e47bb0409f070c5ebd2f58b8bf"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Sun Feb 22 16:51:13 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Feb 22 16:51:13 2026 +0100"
      },
      "message": "Update hibernate-core to 7.2.5.Final (#416)\n\n"
    },
    {
      "commit": "092bd790888f73e47bb0409f070c5ebd2f58b8bf",
      "tree": "6009e754ad23b05f1b274e57644ade4cd011be84",
      "parents": [
        "197a024ee6d9d187c8dee2063a16d2a3cc8b3014"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Wed Feb 18 21:07:04 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Feb 18 21:07:04 2026 +0100"
      },
      "message": "Update sbt-mima-plugin to 1.1.5 (#415)\n\n"
    },
    {
      "commit": "197a024ee6d9d187c8dee2063a16d2a3cc8b3014",
      "tree": "3f8527fe1931d71b30140b1ffa97c13e4f76dae9",
      "parents": [
        "9e29cc9a66938f603589e6c2d17304d470b59fd8"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Mon Feb 16 17:08:26 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Feb 16 17:08:26 2026 +0100"
      },
      "message": "Update logback-classic to 1.5.32 (#413)\n\n"
    },
    {
      "commit": "9e29cc9a66938f603589e6c2d17304d470b59fd8",
      "tree": "d78964a532f9d5c9de71fb9459a8a95a41d5b449",
      "parents": [
        "175a905a6bbc61e5a021e4f6f901d2d5967476b3"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Mon Feb 16 17:08:00 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Feb 16 17:08:00 2026 +0100"
      },
      "message": "Update sbt, scripted-plugin to 1.12.3 (#414)\n\n"
    },
    {
      "commit": "175a905a6bbc61e5a021e4f6f901d2d5967476b3",
      "tree": "3c3d4d9954bf4161421727adf59bcedc3752a23f",
      "parents": [
        "5bb50e2bd3fcda14e4e863318869275367df9543"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Fri Feb 13 13:50:51 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Feb 13 13:50:51 2026 +0100"
      },
      "message": "Update scalafmt-core to 3.10.7 (#411)\n\n"
    },
    {
      "commit": "5bb50e2bd3fcda14e4e863318869275367df9543",
      "tree": "9025473183d39ee627de36b269713e7791ab830f",
      "parents": [
        "3b7d41b1e4efa382b5a385af9ec1963f905c896e"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Fri Feb 13 09:10:46 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Feb 13 09:10:46 2026 +0100"
      },
      "message": "Update postgresql to 42.7.10 (#410)\n\n"
    },
    {
      "commit": "3b7d41b1e4efa382b5a385af9ec1963f905c896e",
      "tree": "cf2360041d834dc44bfe1e54aff2695b8bce3407",
      "parents": [
        "a7f57515e07ac6a912f50eed0cf9643e697d47bd"
      ],
      "author": {
        "name": "Scala Steward",
        "email": "43047562+scala-steward@users.noreply.github.com",
        "time": "Wed Feb 11 23:36:18 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Feb 11 23:36:18 2026 +0100"
      },
      "message": "Update hibernate-core to 7.2.4.Final (#407)\n\n"
    },
    {
      "commit": "a7f57515e07ac6a912f50eed0cf9643e697d47bd",
      "tree": "5ca5f428722d1c71b62c747b385cc6cec1bb5a45",
      "parents": [
        "a6e8ec7c72806b86814649d6f5c8f670f387ff26"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Feb 11 23:29:12 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Feb 11 23:29:12 2026 +0100"
      },
      "message": "Bump coursier/cache-action from 7.0.0 to 8.0.0 (#408)\n\nBumps [coursier/cache-action](https://github.com/coursier/cache-action) from 7.0.0 to 8.0.0.\n- [Release notes](https://github.com/coursier/cache-action/releases)\n- [Commits](https://github.com/coursier/cache-action/compare/bebeeb0e6f48ebad66d3783946588ecf43114433...c5ca79321d170b8a18c288d9cadc2a6037166d0f)\n\n---\nupdated-dependencies:\n- dependency-name: coursier/cache-action\n  dependency-version: 8.0.0\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    }
  ],
  "next": "a6e8ec7c72806b86814649d6f5c8f670f387ff26"
}
