)]}'
{
  "log": [
    {
      "commit": "4df2e430f460a26fd8446c00002fa895eb3096b2",
      "tree": "9c20254e5ff09fe85077560fce3b2745648752b7",
      "parents": [
        "41e74320e7f8fb0832d0f1185871a38fab988936"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Fri Sep 11 17:38:33 2026 +0200"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Fri Sep 11 22:17:54 2026 +0200"
      },
      "message": "Simplify _extends in release-drafter.yml\n\nCo-Authored-By: Claude Opus 5 (1M context) \u003cnoreply@anthropic.com\u003e\n"
    },
    {
      "commit": "41e74320e7f8fb0832d0f1185871a38fab988936",
      "tree": "a1d21473bc7e69ec2421f1d1b4f4a80e6f4acefa",
      "parents": [
        "b9d26d124a222262e30c6c6bf7e6e8bbb64c73a0"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Thu Sep 10 13:02:46 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Thu Sep 10 18:51:33 2026 +0200"
      },
      "message": "Implement getOutputPath() and deprecate getOutputName()\n\nMaven Reporting API 4.0.0 keeps getOutputName() abstract, so it cannot simply\nbe renamed: it stays, deprecated, delegating to the new method. Do not collapse\nthe pair until the API drops getOutputName().\n"
    },
    {
      "commit": "b9d26d124a222262e30c6c6bf7e6e8bbb64c73a0",
      "tree": "417b5f5097f2bfb92877dc8d0c0860315207b3fa",
      "parents": [
        "7ea2aa9c55f8c6d56a56b1c13d4309f44e77f1f6"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Aug 10 02:22:41 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Aug 10 03:09:23 2026 +0200"
      },
      "message": "Convert the FAQ from FML to Markdown\n\ndoxia-converter cannot target FML usefully - the questions come out as\nlink-reference syntax rather than headings, the [top] back-links become\nlinks to a nonexistent \u0027top\u0027 page, and the contents links lose their #\nanchors. The page is written out by hand instead.\n\nExplicit \u003ca id\u003e anchors keep the existing deep links working. All ten\nstill resolve. Where an id was not a valid XML name, Doxia rewrote it at\nrender time via DoxiaUtils.encodeId; the anchors written here reproduce\nthat rendered form, not the raw attribute.\n\nThree questions carry no explicit anchor, because for those the id Doxia\nalready derives from the heading text is byte-identical to the anchor the\nFML page served. Emitting one as well would put the same id on the page\ntwice - invalid HTML, and Doxia warns \"Anchor name ... used more than\nonce\". The heading supplies those three on its own.\n\nVerified by building the site before and after and comparing the set of\nanchors the generated faq.html actually serves: every anchor present\nbefore is still present after, no id appears twice, the \u003chead\u003e is\nbyte-identical, and every link target on the page is unchanged.\n\nsite.xml needs no edit: src/site/fml/faq.fml and\nsrc/site/markdown/faq.md both render to faq.html.\n\nFML generates a [top] back-link after each answer; those are dropped\nrather than hand-written, which is the only rendering loss.\n\nGenerated-by: Claude Opus 5 (1M context)\n"
    },
    {
      "commit": "7ea2aa9c55f8c6d56a56b1c13d4309f44e77f1f6",
      "tree": "7c34ba19a9c06d0aaa2e87a2ca204c289de61db4",
      "parents": [
        "75de61641444d9b0e0d708941f49d13be1e7c953"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Aug 10 02:20:35 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Aug 10 03:09:23 2026 +0200"
      },
      "message": "Rename the FAQ ahead of converting it\n\nGit records a rename plus a rewrite in one commit as a delete and an\nadd, which stops \u0027git log --follow\u0027. Splitting the rename out keeps the\nhistory. Please merge or rebase rather than squash.\n\nGenerated-by: Claude Opus 5 (1M context)\n"
    },
    {
      "commit": "75de61641444d9b0e0d708941f49d13be1e7c953",
      "tree": "7c2dbf19b58adbb1a48ea87ef0478fa47696d940",
      "parents": [
        "dc647619b53714fc451e1ca513e44b36bd0364e6"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Aug 08 15:37:55 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Aug 08 16:06:49 2026 +0200"
      },
      "message": "Replace the maven-compat test dependency with what it was providing\n\nThe plugin does not import anything from maven-compat, but removing it\nalone breaks the build: maven-reporting-api was reaching the compile\nclasspath through it, and the plugin\u0027s report class extends\nAbstractMavenReport, which lives there. Dependency analysis catches this\nwhere the tests do not.\n\nSo maven-reporting-api is now declared directly, which is what it should\nhave been all along given the code imports from it, and maven-compat\ngoes.\n\nTests: 23, 0 failures, unchanged. `mvn verify` clean, including the\ndependency analysis that a plain `mvn test` does not reach.\n"
    },
    {
      "commit": "dc647619b53714fc451e1ca513e44b36bd0364e6",
      "tree": "9c43c88dc01583c62b41d58e699b433988bd86a7",
      "parents": [
        "992c95ced4349e7a7e0687e667d4b25f870917f7"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri Aug 07 11:41:09 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri Aug 07 16:19:15 2026 +0200"
      },
      "message": "Restore the document metadata dropped when the pages were ported\n\nAn APT document opens with a header block giving its title, authors and date, and\ndoxia-converter turns that into YAML front matter. The port removed the front\nmatter along with the converter\u0027s per-line licence comments, so the generated\npages lost their author and date meta tags, and took their title from the first\nheading rather than from the document title.\n\nThe front matter has to come first in the file: the Markdown parser only looks for\nit when the source begins with \"---\". A licence header ahead of it would hide it,\nand RAT is happy either way.\n"
    },
    {
      "commit": "992c95ced4349e7a7e0687e667d4b25f870917f7",
      "tree": "5fa91cd9128dcc4e43c2893b996cd7fedbe8e151",
      "parents": [
        "43a18a9cac3f693e7a4dfde8514e165c3f8dbe54"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Thu Aug 06 13:53:06 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Thu Aug 06 19:19:36 2026 +0200"
      },
      "message": "Port the site documentation from APT to Markdown\n\n10 page(s) converted with doxia-converter and then cleaned up by hand:\n\n- \u003c\u003c\u003ccode\u003e\u003e\u003e becomes backticks, \u003c\u003cbold\u003e\u003e becomes **bold**, {{{url}text}}\n  becomes [text](url)\n- the ASF license header becomes a single block HTML comment\n- a page whose only Velocity reference was ${project.name} is now a plain\n  .md with the title spelled out\n- a page that keeps a reference stays a .vm. Velocity reads ## as a line\n  comment and would silently swallow every ATX heading below level one, so\n  subsections use setext underlines and anything deeper is wrapped in\n  #[[ ... ]]#\n- a reference APT rendered literally is escaped with ${esc.d}, which always\n  yields a literal dollar; a backslash only works when the reference itself\n  resolves\n\nVerified by building the site before and after and comparing every generated\npage: the visible text and the link targets are unchanged apart from\n\u003cb\u003e/\u003ci\u003e becoming \u003cstrong\u003e/\u003cem\u003e and quotes and ellipses in prose picking up\nthe Markdown module\u0027s typographic substitution.\n"
    },
    {
      "commit": "43a18a9cac3f693e7a4dfde8514e165c3f8dbe54",
      "tree": "c8a5c46fa76b00d188b19225aef1ef9a642db10e",
      "parents": [
        "4270ef47f4791091498f03438c8f781f35428cef"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Thu Aug 06 13:53:06 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Thu Aug 06 19:19:36 2026 +0200"
      },
      "message": "Rename the site documents ahead of converting them\n\nA pure rename, so that git records it and `git log --follow` and `git blame` still\nreach the history of each page after the conversion that follows. The content is\nstill APT at this point and the site does not build between the two commits.\n"
    },
    {
      "commit": "4270ef47f4791091498f03438c8f781f35428cef",
      "tree": "a6882faeaee6c070c85bb1acdad7046370d31744",
      "parents": [
        "cee66e1e61ff518dcec970c5cc31f466838135db"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Aug 03 13:34:11 2026 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Aug 03 22:08:09 2026 +0200"
      },
      "message": "Bump doxiaVersion from 1.11.1 to 2.1.0\n\nDoxia 2.x no longer ships the legacy org.codehaus.doxia.sink.Sink that\nmaven-reporting-api 3.x still references, so maven-reporting-impl has to\nmove to 4.0.0 along with it. The Doxia artifacts that come in through\nmaven-reporting-impl are pinned to doxiaVersion as well, otherwise\ndoxia-site-model 2.0.0 is mixed with doxia-site-renderer 2.1.0.\n\nAbstractMavenReport 4.x reads its own protected project field directly,\nso the shadowing copy in ChangeLogReport is removed.\n\nRunning a report as a standalone goal now renders a full site page,\nwhich needs a repository session to resolve the site skin: the unit\ntests set one up and point siteDirectory at an empty directory, so that\nthe default site descriptor - which does declare a skin, unlike our own\nsrc/site/site.xml - is used.\n\nCo-Authored-By: Claude Opus 5 (1M context) \u003cnoreply@anthropic.com\u003e\n"
    },
    {
      "commit": "cee66e1e61ff518dcec970c5cc31f466838135db",
      "tree": "404d50c8c128f053ed21c41eb04fdc00c011450f",
      "parents": [
        "4f14ebfbd56227b7c03da38ca4df45eac94dcf62"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jul 14 02:52:32 2026 +0000"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Tue Jul 21 18:15:25 2026 +0200"
      },
      "message": "Bump apache/maven-gh-actions-shared/.github/workflows/release-drafter.yml\n\nBumps [apache/maven-gh-actions-shared/.github/workflows/release-drafter.yml](https://github.com/apache/maven-gh-actions-shared) from 4 to 5.\n- [Commits](https://github.com/apache/maven-gh-actions-shared/compare/v4...v5)\n\n---\nupdated-dependencies:\n- dependency-name: apache/maven-gh-actions-shared/.github/workflows/release-drafter.yml\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"
    },
    {
      "commit": "4f14ebfbd56227b7c03da38ca4df45eac94dcf62",
      "tree": "2fead3165b2b8ded58c159393d84e90702fcd4e5",
      "parents": [
        "fcfef92b76d8b875945cc20cbb95514c3d197040"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Tue Jul 21 18:07:00 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jul 21 18:07:00 2026 +0200"
      },
      "message": "Migration to JUnit 5 avoids using AbstractMojoTestCase (#229)"
    },
    {
      "commit": "fcfef92b76d8b875945cc20cbb95514c3d197040",
      "tree": "c5cdb496646374e612bd278ff3bc142a323f264c",
      "parents": [
        "0ca5348b6f25bd3d1626c84e19eb580cf85816a1"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jul 15 06:43:55 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jul 15 06:43:55 2026 +0200"
      },
      "message": "Bump apache/maven-gh-actions-shared/.github/workflows/stale.yml (#235)\n\nBumps [apache/maven-gh-actions-shared/.github/workflows/stale.yml](https://github.com/apache/maven-gh-actions-shared) from 4 to 5.\n- [Commits](https://github.com/apache/maven-gh-actions-shared/compare/v4...v5)\n\n---\nupdated-dependencies:\n- dependency-name: apache/maven-gh-actions-shared/.github/workflows/stale.yml\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": "0ca5348b6f25bd3d1626c84e19eb580cf85816a1",
      "tree": "94f036f75e0f0614cd982f3de47ecd590a6e9e60",
      "parents": [
        "ed181b8f09b2fe9bcb529a5dbcfcd8d6732e6551"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jul 15 06:43:31 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jul 15 06:43:31 2026 +0200"
      },
      "message": "Bump apache/maven-gh-actions-shared/.github/workflows/pr-automation.yml (#236)\n\nBumps [apache/maven-gh-actions-shared/.github/workflows/pr-automation.yml](https://github.com/apache/maven-gh-actions-shared) from 4 to 5.\n- [Commits](https://github.com/apache/maven-gh-actions-shared/compare/v4...v5)\n\n---\nupdated-dependencies:\n- dependency-name: apache/maven-gh-actions-shared/.github/workflows/pr-automation.yml\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": "ed181b8f09b2fe9bcb529a5dbcfcd8d6732e6551",
      "tree": "c1519b1f3d3c9616c7e18481734fb9328c42b9ff",
      "parents": [
        "265d2a482b3911ae5a48e9952dce2c260e5d2fae"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jul 14 02:52:34 2026 +0000"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Tue Jul 14 11:27:21 2026 +0200"
      },
      "message": "Bump apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml\n\nBumps [apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml](https://github.com/apache/maven-gh-actions-shared) from 4 to 5.\n- [Commits](https://github.com/apache/maven-gh-actions-shared/compare/v4...v5)\n\n---\nupdated-dependencies:\n- dependency-name: apache/maven-gh-actions-shared/.github/workflows/maven-verify.yml\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"
    },
    {
      "commit": "265d2a482b3911ae5a48e9952dce2c260e5d2fae",
      "tree": "822691955903bea07542299f4b78b0d2ddbccad4",
      "parents": [
        "c0517411595331a3f7ed696bf19e74553498585d"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 29 17:12:20 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 29 17:12:20 2026 +0200"
      },
      "message": "Bump org.apache.maven.plugins:maven-plugins from 48 to 49 (#232)\n\nBumps [org.apache.maven.plugins:maven-plugins](https://github.com/apache/maven-parent) from 48 to 49.\n- [Release notes](https://github.com/apache/maven-parent/releases)\n- [Commits](https://github.com/apache/maven-parent/commits)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugins:maven-plugins\n  dependency-version: \u002749\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": "c0517411595331a3f7ed696bf19e74553498585d",
      "tree": "38eff017ddc0b3d47b1bd0c255a21443c0705197",
      "parents": [
        "0d1a9ccf93063cfc3294befea45d23febebac736"
      ],
      "author": {
        "name": "Konrad Windszus",
        "email": "konrad@windszus.net",
        "time": "Thu May 21 15:19:33 2026 +0200"
      },
      "committer": {
        "name": "Konrad Windszus",
        "email": "konrad@windszus.net",
        "time": "Thu May 21 16:16:52 2026 +0200"
      },
      "message": "doc: Update default issue tracker URL in ChangeLogReport\n\nIt is no longer Codehaus but ASF JIRA since quite a while"
    },
    {
      "commit": "0d1a9ccf93063cfc3294befea45d23febebac736",
      "tree": "af8a7b1e5daa0087738a3711810db2ab4af028ac",
      "parents": [
        "e1a0c21c8e4b6aab819e2c277994a217ae697646"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Tue May 19 20:54:53 2026 +0200"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Tue May 19 20:54:53 2026 +0200"
      },
      "message": "[maven-release-plugin] prepare for next development iteration\n"
    },
    {
      "commit": "e1a0c21c8e4b6aab819e2c277994a217ae697646",
      "tree": "4aea54a9c231e0481578623ce7765d15e62e79ba",
      "parents": [
        "908a7e8b149c2bee0674b32e346d92357b0f4e93"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Tue May 19 20:54:44 2026 +0200"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Tue May 19 20:54:44 2026 +0200"
      },
      "message": "[maven-release-plugin] prepare release maven-changelog-plugin-3.0.0-M2\n"
    },
    {
      "commit": "908a7e8b149c2bee0674b32e346d92357b0f4e93",
      "tree": "f8a50dd1fa3ef0212315f13b41681f8fabf943fa",
      "parents": [
        "b658d71422f9229164e058d2d8751f8e33328a35"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon May 18 03:43:20 2026 +0000"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Mon May 18 17:57:56 2026 +0200"
      },
      "message": "Bump mavenVersion from 3.9.15 to 3.9.16\n\nBumps `mavenVersion` from 3.9.15 to 3.9.16.\n\nUpdates `org.apache.maven:maven-plugin-api` from 3.9.15 to 3.9.16\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.15...maven-3.9.16)\n\nUpdates `org.apache.maven:maven-model` from 3.9.15 to 3.9.16\n\nUpdates `org.apache.maven:maven-core` from 3.9.15 to 3.9.16\n\nUpdates `org.apache.maven:maven-compat` from 3.9.15 to 3.9.16\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.15...maven-3.9.16)\n\nUpdates `org.apache.maven:maven-settings` from 3.9.15 to 3.9.16\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven:maven-plugin-api\n  dependency-version: 3.9.16\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-model\n  dependency-version: 3.9.16\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-core\n  dependency-version: 3.9.16\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-compat\n  dependency-version: 3.9.16\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-settings\n  dependency-version: 3.9.16\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "b658d71422f9229164e058d2d8751f8e33328a35",
      "tree": "7dc9ada4a9a32cd187453e2808ad9be1741c632a",
      "parents": [
        "76bef6e4def020d4a71d99bd7afb8522b432d55e"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Sun May 17 20:33:32 2026 +0200"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Sun May 17 23:57:16 2026 +0200"
      },
      "message": "Cleanups used dependencies\n"
    },
    {
      "commit": "76bef6e4def020d4a71d99bd7afb8522b432d55e",
      "tree": "fec9c6359c808c154f756e095bcd89c9791dd975",
      "parents": [
        "347e88d42d4bbcc228b7f8bed34e84284f63000b"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Sat May 16 22:21:42 2026 +0200"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Sun May 17 11:01:55 2026 +0200"
      },
      "message": "Update download site\n"
    },
    {
      "commit": "347e88d42d4bbcc228b7f8bed34e84284f63000b",
      "tree": "fe87c0e3187925e8c11602b793f63478293bdfba",
      "parents": [
        "438c2fe045816a8f02cb2a0cdf8e75da5212ee7b"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Sat May 16 13:36:47 2026 +0200"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Sat May 16 13:47:57 2026 +0200"
      },
      "message": "Update site descriptor to 2.0\n"
    },
    {
      "commit": "438c2fe045816a8f02cb2a0cdf8e75da5212ee7b",
      "tree": "943e2681dab09c541da9c844495b7cf159d2a280",
      "parents": [
        "90911a1e4e6b260e0f20c62f5490776bd7a48616"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Mon May 11 22:31:30 2026 +0200"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Tue May 12 19:13:57 2026 +0200"
      },
      "message": "Migration tests to JUnit 5\n\n- first step\n"
    },
    {
      "commit": "90911a1e4e6b260e0f20c62f5490776bd7a48616",
      "tree": "e1bf015a376ee3e396c5c8db308b36137aa7ebd0",
      "parents": [
        "059622c5eaf2330afb853d5b35d34cada4698da8"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Mon May 11 22:34:23 2026 +0200"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Tue May 12 09:34:14 2026 +0200"
      },
      "message": "Enable build with Maven 4\n"
    },
    {
      "commit": "059622c5eaf2330afb853d5b35d34cada4698da8",
      "tree": "0fc33ebc350a3739629ef40af9b48cd44277b2de",
      "parents": [
        "aff01c5a9698a03d44815a8e9a3431801c6b7bf1"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Mon May 11 22:22:33 2026 +0200"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Tue May 12 08:39:17 2026 +0200"
      },
      "message": "Cleanups with new parent 48\n"
    },
    {
      "commit": "aff01c5a9698a03d44815a8e9a3431801c6b7bf1",
      "tree": "b9be3db137ff04676750db9f06fb8195c6c90aa2",
      "parents": [
        "09b2cd1dba9cda76cde29c97754386e7affcec11"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon May 11 21:01:42 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 11 21:01:42 2026 +0200"
      },
      "message": "Bump org.apache.maven.plugins:maven-plugins from 47 to 48 (#220)\n\nBumps [org.apache.maven.plugins:maven-plugins](https://github.com/apache/maven-parent) from 47 to 48.\n- [Release notes](https://github.com/apache/maven-parent/releases)\n- [Commits](https://github.com/apache/maven-parent/commits)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugins:maven-plugins\n  dependency-version: \u002748\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": "09b2cd1dba9cda76cde29c97754386e7affcec11",
      "tree": "066bc8480ea08f7ab6249778100ab499e1d2f5c6",
      "parents": [
        "5b3b89a437f45286555130072c1e1bfa64ec9b3b"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Apr 20 14:02:32 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Apr 20 14:02:32 2026 +0200"
      },
      "message": "Bump mavenVersion from 3.9.14 to 3.9.15 (#219)\n\nBumps `mavenVersion` from 3.9.14 to 3.9.15.\n\nUpdates `org.apache.maven:maven-plugin-api` from 3.9.14 to 3.9.15\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.14...maven-3.9.15)\n\nUpdates `org.apache.maven:maven-model` from 3.9.14 to 3.9.15\n\nUpdates `org.apache.maven:maven-artifact` from 3.9.14 to 3.9.15\n\nUpdates `org.apache.maven:maven-core` from 3.9.14 to 3.9.15\n\nUpdates `org.apache.maven:maven-compat` from 3.9.14 to 3.9.15\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.14...maven-3.9.15)\n\nUpdates `org.apache.maven:maven-settings` from 3.9.14 to 3.9.15\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven:maven-plugin-api\n  dependency-version: 3.9.15\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-model\n  dependency-version: 3.9.15\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-artifact\n  dependency-version: 3.9.15\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-core\n  dependency-version: 3.9.15\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-compat\n  dependency-version: 3.9.15\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-settings\n  dependency-version: 3.9.15\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": "5b3b89a437f45286555130072c1e1bfa64ec9b3b",
      "tree": "b9dc748cd14e95eeeb25d9d031b2e54fcfca729e",
      "parents": [
        "f9a59f88d4e7371fd9c1b16ecec5a470d2736959"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Sun Mar 29 13:45:20 2026 +0200"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Sun Mar 29 13:45:20 2026 +0200"
      },
      "message": "Try absolute path in _extends release-drafter configuration\n"
    },
    {
      "commit": "f9a59f88d4e7371fd9c1b16ecec5a470d2736959",
      "tree": "fb76433d52e43a72ec22776478f3c745da3cc3bc",
      "parents": [
        "90b63e66f7e20a61925e47d5df6b75b8d3069d3d"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Sun Mar 29 13:43:13 2026 +0200"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Sun Mar 29 13:43:13 2026 +0200"
      },
      "message": "Try only filename in _extends release-drafter configuration\n"
    },
    {
      "commit": "90b63e66f7e20a61925e47d5df6b75b8d3069d3d",
      "tree": "c31fcf56898d26832987135da2fff713c0f15ff5",
      "parents": [
        "72a833021b12e2eeb3019d52a1591529548830e3"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Sat Mar 28 22:30:02 2026 +0100"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Sat Mar 28 22:30:02 2026 +0100"
      },
      "message": "Use full path for _extends in release-drafter configuration\n"
    },
    {
      "commit": "72a833021b12e2eeb3019d52a1591529548830e3",
      "tree": "556e24a15f69a654527d79fc49a27e6a0b039548",
      "parents": [
        "628d079793fb84e834f36aa690815e6e0207f49f"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Thu Mar 26 22:22:15 2026 +0100"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Sat Mar 28 21:58:24 2026 +0100"
      },
      "message": "Add tag template and manual execution for release-drafter\n"
    },
    {
      "commit": "628d079793fb84e834f36aa690815e6e0207f49f",
      "tree": "dd4d27ac7568580fff7f4be3e34b73428b82e1a9",
      "parents": [
        "63243e1e03e249a8ea76fae3e705c4dda021e460"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Mar 13 02:53:27 2026 +0000"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Sat Mar 14 17:25:00 2026 +0100"
      },
      "message": "Bump mavenVersion from 3.9.12 to 3.9.14\n\nBumps `mavenVersion` from 3.9.12 to 3.9.14.\n\nUpdates `org.apache.maven:maven-plugin-api` from 3.9.12 to 3.9.14\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.12...maven-3.9.14)\n\nUpdates `org.apache.maven:maven-model` from 3.9.12 to 3.9.14\n\nUpdates `org.apache.maven:maven-artifact` from 3.9.12 to 3.9.14\n\nUpdates `org.apache.maven:maven-core` from 3.9.12 to 3.9.14\n\nUpdates `org.apache.maven:maven-compat` from 3.9.12 to 3.9.14\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.12...maven-3.9.14)\n\nUpdates `org.apache.maven:maven-settings` from 3.9.12 to 3.9.14\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven:maven-plugin-api\n  dependency-version: 3.9.14\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-model\n  dependency-version: 3.9.14\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-artifact\n  dependency-version: 3.9.14\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-core\n  dependency-version: 3.9.14\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-compat\n  dependency-version: 3.9.14\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-settings\n  dependency-version: 3.9.14\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "63243e1e03e249a8ea76fae3e705c4dda021e460",
      "tree": "492bc1bbaa256b1d2bbef9a2f2eccf1f92e931c2",
      "parents": [
        "0f009903ed381ec6fc206b1c769da9ba1ec7217b"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Feb 16 07:22:55 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Feb 16 07:22:55 2026 +0100"
      },
      "message": "Bump org.apache.maven.plugin-testing:maven-plugin-testing-harness (#215)\n\nBumps org.apache.maven.plugin-testing:maven-plugin-testing-harness from 3.5.0 to 3.5.1.\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugin-testing:maven-plugin-testing-harness\n  dependency-version: 3.5.1\n  dependency-type: direct:development\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": "0f009903ed381ec6fc206b1c769da9ba1ec7217b",
      "tree": "0b8b68c61f94611dfd3cd6d65c9ad1b8be6d4f61",
      "parents": [
        "d034a8568a21a4b95a5e132c1e47bfe3ecade150"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jan 19 07:36:44 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jan 19 07:36:44 2026 +0100"
      },
      "message": "Bump org.codehaus.mojo:l10n-maven-plugin from 1.1.0 to 1.2.0 (#214)\n\nBumps [org.codehaus.mojo:l10n-maven-plugin](https://github.com/mojohaus/l10n-maven-plugin) from 1.1.0 to 1.2.0.\n- [Release notes](https://github.com/mojohaus/l10n-maven-plugin/releases)\n- [Commits](https://github.com/mojohaus/l10n-maven-plugin/compare/1.1.0...l10n-maven-plugin-1.2.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.mojo:l10n-maven-plugin\n  dependency-version: 1.2.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": "d034a8568a21a4b95a5e132c1e47bfe3ecade150",
      "tree": "74dd47040b095a05daf7af939b8f4eddfc01f073",
      "parents": [
        "d8e534c0b3c2a1657c7c54eb81ea4cea2c27b6b2"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jan 14 05:42:33 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jan 14 05:42:33 2026 +0100"
      },
      "message": "Bump org.apache.maven.plugins:maven-plugins from 46 to 47 (#213)\n\nBumps [org.apache.maven.plugins:maven-plugins](https://github.com/apache/maven-parent) from 46 to 47.\n- [Release notes](https://github.com/apache/maven-parent/releases)\n- [Commits](https://github.com/apache/maven-parent/commits)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugins:maven-plugins\n  dependency-version: \u002747\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": "d8e534c0b3c2a1657c7c54eb81ea4cea2c27b6b2",
      "tree": "bbcd376e64026e0ea68b45f2335fedf96a04509d",
      "parents": [
        "3461070ac03919f430705cac54bf6de1b6e1fa17"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jan 12 06:06:23 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jan 12 06:06:23 2026 +0100"
      },
      "message": "Bump org.apache.maven.plugin-testing:maven-plugin-testing-harness (#212)\n\nBumps org.apache.maven.plugin-testing:maven-plugin-testing-harness from 3.4.0 to 3.5.0.\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugin-testing:maven-plugin-testing-harness\n  dependency-version: 3.5.0\n  dependency-type: direct:development\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": "3461070ac03919f430705cac54bf6de1b6e1fa17",
      "tree": "228d8cdd35fbb0335b3b44e8e97500fb3b898a0d",
      "parents": [
        "18e813f4f47317f851f5fce25d7456d571f854bb"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jan 07 06:34:30 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jan 07 06:34:30 2026 +0100"
      },
      "message": "Bump org.apache.maven.plugins:maven-plugins from 45 to 46 (#211)\n\nBumps [org.apache.maven.plugins:maven-plugins](https://github.com/apache/maven-parent) from 45 to 46.\n- [Release notes](https://github.com/apache/maven-parent/releases)\n- [Commits](https://github.com/apache/maven-parent/commits)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugins:maven-plugins\n  dependency-version: \u002746\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": "18e813f4f47317f851f5fce25d7456d571f854bb",
      "tree": "a71e0bfc9038874823c5b97784cb9ec239a3913a",
      "parents": [
        "6b68d46acca1342474b221c94b3c92467a764f68"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Dec 25 18:24:07 2025 +0000"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Thu Dec 25 22:01:03 2025 +0100"
      },
      "message": "Bump org.apache.maven.plugin-testing:maven-plugin-testing-harness\n\nBumps org.apache.maven.plugin-testing:maven-plugin-testing-harness from 3.3.0 to 3.4.0.\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugin-testing:maven-plugin-testing-harness\n  dependency-version: 3.4.0\n  dependency-type: direct:development\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "6b68d46acca1342474b221c94b3c92467a764f68",
      "tree": "061b33106ccc8e98c200c944569c7ca569e6afbb",
      "parents": [
        "27ecd74b560ed19ecf697fdb2bf9de5d43560c0f"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Dec 25 18:23:22 2025 +0000"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Thu Dec 25 21:45:58 2025 +0100"
      },
      "message": "Bump mavenVersion from 3.9.11 to 3.9.12\n\nBumps `mavenVersion` from 3.9.11 to 3.9.12.\n\nUpdates `org.apache.maven:maven-plugin-api` from 3.9.11 to 3.9.12\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.11...maven-3.9.12)\n\nUpdates `org.apache.maven:maven-model` from 3.9.11 to 3.9.12\n\nUpdates `org.apache.maven:maven-artifact` from 3.9.11 to 3.9.12\n\nUpdates `org.apache.maven:maven-core` from 3.9.11 to 3.9.12\n\nUpdates `org.apache.maven:maven-compat` from 3.9.11 to 3.9.12\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.11...maven-3.9.12)\n\nUpdates `org.apache.maven:maven-settings` from 3.9.11 to 3.9.12\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven:maven-plugin-api\n  dependency-version: 3.9.12\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-model\n  dependency-version: 3.9.12\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-artifact\n  dependency-version: 3.9.12\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-core\n  dependency-version: 3.9.12\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-compat\n  dependency-version: 3.9.12\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-settings\n  dependency-version: 3.9.12\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "27ecd74b560ed19ecf697fdb2bf9de5d43560c0f",
      "tree": "81fe61133b1d2af427127052ab04c506de59c147",
      "parents": [
        "afa298c7a8c12d08dec1b487f02de4cce5242651"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Thu Dec 25 15:23:27 2025 +0100"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Thu Dec 25 19:09:13 2025 +0100"
      },
      "message": "Upgrade maven-scm to 2.2.1\n"
    },
    {
      "commit": "afa298c7a8c12d08dec1b487f02de4cce5242651",
      "tree": "19fa756d3b4a410d045b0c02b081db2c88ba6d0a",
      "parents": [
        "eee1fd4a20614be0fe7f035626c0c71028bc4365"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sat Nov 15 23:17:45 2025 +0100"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Thu Dec 25 19:09:13 2025 +0100"
      },
      "message": "Bump m-invoker-p to 3.9.1 for Java 25\n"
    },
    {
      "commit": "eee1fd4a20614be0fe7f035626c0c71028bc4365",
      "tree": "4a69bfa331ddf8e920cdadbcfa973ea81f37d653",
      "parents": [
        "3521f86e697d9d06e4a825d7723c5bc7bacbe75e"
      ],
      "author": {
        "name": "Sandra Parsick",
        "email": "sparsick@users.noreply.github.com",
        "time": "Thu Aug 14 07:39:16 2025 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Aug 14 07:39:16 2025 +0200"
      },
      "message": "feat: enable prevent branch protection rules (#199)\n\nalso:\n- refactor deprecated config\n\nSigned-off-by: Sandra Parsick \u003csandra@parsick.dev\u003e"
    },
    {
      "commit": "3521f86e697d9d06e4a825d7723c5bc7bacbe75e",
      "tree": "288ba714968a32fb8662b86cacdd793193c76750",
      "parents": [
        "fd3dcf157c383654526e7df79606cf7646293bcd"
      ],
      "author": {
        "name": "Noah Tayebwa",
        "email": "ndacyayinoah@gmail.com",
        "time": "Thu Jul 31 13:40:24 2025 +0300"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 31 20:40:24 2025 +1000"
      },
      "message": "Add Apache 2.0 LICENSE file (#198)\n\n"
    },
    {
      "commit": "fd3dcf157c383654526e7df79606cf7646293bcd",
      "tree": "893e12354c88f7ffc76456d17dfc961c13817b7f",
      "parents": [
        "c22f2f59d51b3800568e7ba1c94e28caf485a277"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jun 18 02:46:50 2025 +0000"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Wed Jul 16 20:39:39 2025 +0200"
      },
      "message": "Bump org.apache.maven.plugins:maven-plugins from 44 to 45\n\nBumps [org.apache.maven.plugins:maven-plugins](https://github.com/apache/maven-parent) from 44 to 45.\n- [Release notes](https://github.com/apache/maven-parent/releases)\n- [Commits](https://github.com/apache/maven-parent/commits)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugins:maven-plugins\n  dependency-version: \u002745\u0027\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "c22f2f59d51b3800568e7ba1c94e28caf485a277",
      "tree": "98eb237615b10fdbbd0aad2363345a4b96a699f9",
      "parents": [
        "180a66e563674e15b32d51cdd1a4224b1b0a0743"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jul 16 11:36:47 2025 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jul 16 11:36:47 2025 +0200"
      },
      "message": "Bump mavenVersion from 3.9.10 to 3.9.11 (#197)\n\nBumps `mavenVersion` from 3.9.10 to 3.9.11.\n\nUpdates `org.apache.maven:maven-plugin-api` from 3.9.10 to 3.9.11\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.10...maven-3.9.11)\n\nUpdates `org.apache.maven:maven-model` from 3.9.10 to 3.9.11\n\nUpdates `org.apache.maven:maven-artifact` from 3.9.10 to 3.9.11\n\nUpdates `org.apache.maven:maven-core` from 3.9.10 to 3.9.11\n\nUpdates `org.apache.maven:maven-compat` from 3.9.10 to 3.9.11\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.10...maven-3.9.11)\n\nUpdates `org.apache.maven:maven-settings` from 3.9.10 to 3.9.11\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven:maven-plugin-api\n  dependency-version: 3.9.11\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-model\n  dependency-version: 3.9.11\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-artifact\n  dependency-version: 3.9.11\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-core\n  dependency-version: 3.9.11\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-compat\n  dependency-version: 3.9.11\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-settings\n  dependency-version: 3.9.11\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": "180a66e563674e15b32d51cdd1a4224b1b0a0743",
      "tree": "c97336799886c19a0deeccffbee57dfa4309c16c",
      "parents": [
        "e60deb6cb04e5c84c106beb9fb53b9dccbe4904b"
      ],
      "author": {
        "name": "Sandra Parsick",
        "email": "sparsick@users.noreply.github.com",
        "time": "Fri Jun 13 12:02:46 2025 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Jun 13 12:02:46 2025 +0200"
      },
      "message": "Post issue migration steps (#195)\n\n* Post issue migration steps\n"
    },
    {
      "commit": "e60deb6cb04e5c84c106beb9fb53b9dccbe4904b",
      "tree": "8169e7cb13a3de92a8bcb92fdaba08d390bf55c5",
      "parents": [
        "5c2be0db0db0ed1b539be6f75c1ba95f7b74139d"
      ],
      "author": {
        "name": "Sandra Parsick",
        "email": "sparsick@users.noreply.github.com",
        "time": "Fri Jun 13 11:18:10 2025 +0200"
      },
      "committer": {
        "name": "Sandra Parsick",
        "email": "sparsick@users.noreply.github.com",
        "time": "Fri Jun 13 11:21:12 2025 +0200"
      },
      "message": "Remove old Jira  link\n\nmigration clean up step"
    },
    {
      "commit": "5c2be0db0db0ed1b539be6f75c1ba95f7b74139d",
      "tree": "e09316e145912a940443ca0fe4182ae7014ebd95",
      "parents": [
        "a82703f54c26ede18f032cd82dab82c18a924965"
      ],
      "author": {
        "name": "Sandra Parsick",
        "email": "sparsick@users.noreply.github.com",
        "time": "Fri Jun 13 09:07:20 2025 +0200"
      },
      "committer": {
        "name": "Sandra Parsick",
        "email": "sparsick@users.noreply.github.com",
        "time": "Fri Jun 13 09:11:34 2025 +0200"
      },
      "message": "Temp disable notification"
    },
    {
      "commit": "a82703f54c26ede18f032cd82dab82c18a924965",
      "tree": "0367a43215d85daf29e0e516ed2170ee3e493fff",
      "parents": [
        "29fd19af0761482695c3c782b8b02688d1d8775b"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Jun 06 22:07:48 2025 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Jun 06 22:07:48 2025 +0200"
      },
      "message": "Bump mavenVersion from 3.9.9 to 3.9.10 (#41)\n\nBumps `mavenVersion` from 3.9.9 to 3.9.10.\n\nUpdates `org.apache.maven:maven-plugin-api` from 3.9.9 to 3.9.10\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.9...maven-3.9.10)\n\nUpdates `org.apache.maven:maven-model` from 3.9.9 to 3.9.10\n\nUpdates `org.apache.maven:maven-artifact` from 3.9.9 to 3.9.10\n\nUpdates `org.apache.maven:maven-core` from 3.9.9 to 3.9.10\n\nUpdates `org.apache.maven:maven-compat` from 3.9.9 to 3.9.10\n- [Release notes](https://github.com/apache/maven/releases)\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.9...maven-3.9.10)\n\nUpdates `org.apache.maven:maven-settings` from 3.9.9 to 3.9.10\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven:maven-plugin-api\n  dependency-version: 3.9.10\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-model\n  dependency-version: 3.9.10\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-artifact\n  dependency-version: 3.9.10\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-core\n  dependency-version: 3.9.10\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-compat\n  dependency-version: 3.9.10\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven:maven-settings\n  dependency-version: 3.9.10\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": "29fd19af0761482695c3c782b8b02688d1d8775b",
      "tree": "e520040a80576438acc8bc1d5f246b4241064b48",
      "parents": [
        "b735d77016660714433c13686649f535d77712df"
      ],
      "author": {
        "name": "Matthias Bünger",
        "email": "Bukama@users.noreply.github.com",
        "time": "Tue Apr 15 13:57:46 2025 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Apr 15 13:57:46 2025 +0200"
      },
      "message": "Update to parent 44 (#40)\n\n"
    },
    {
      "commit": "b735d77016660714433c13686649f535d77712df",
      "tree": "01952803a876719bb4476d9802d8e1bf9d19e4c7",
      "parents": [
        "f217815380bdfaa81649dd48a0c99e56081fca6a"
      ],
      "author": {
        "name": "Matthias Bünger",
        "email": "Bukama@users.noreply.github.com",
        "time": "Sat Apr 12 13:51:25 2025 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Apr 12 13:51:25 2025 +0200"
      },
      "message": "Enable GitHub Issues\n\n"
    },
    {
      "commit": "f217815380bdfaa81649dd48a0c99e56081fca6a",
      "tree": "df7f4e4832290bed7737db1661c021827da6997f",
      "parents": [
        "bbdeb54fc7d8b5cf505122b14feffb31c0242710"
      ],
      "author": {
        "name": "Matthias Bünger",
        "email": "Bukama@users.noreply.github.com",
        "time": "Sat Feb 15 19:26:00 2025 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Feb 15 19:26:00 2025 +0100"
      },
      "message": "[MNGSITE-529] Rename \"Goals\" to \"Plugin Documentation\"\n\n"
    },
    {
      "commit": "bbdeb54fc7d8b5cf505122b14feffb31c0242710",
      "tree": "b4529d7fc12e8999efb6a8a8058310633c882447",
      "parents": [
        "882498550a0b933419176587beb51dd63565e656"
      ],
      "author": {
        "name": "Elliotte Rusty Harold",
        "email": "elharo@users.noreply.github.com",
        "time": "Fri Jan 24 19:31:02 2025 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Jan 24 19:31:02 2025 +0000"
      },
      "message": "Move decoration model to test scope (#36)\n\n"
    },
    {
      "commit": "882498550a0b933419176587beb51dd63565e656",
      "tree": "2de4c1d96fe6241665c385f120c871565205ed49",
      "parents": [
        "ed7209fc706267db55368072095ced800e29fb2f"
      ],
      "author": {
        "name": "Elliotte Rusty Harold",
        "email": "elharo@users.noreply.github.com",
        "time": "Sun Jan 05 12:49:52 2025 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Jan 05 12:49:52 2025 +0000"
      },
      "message": "Every test runs with a new test object (#34)\n\n"
    },
    {
      "commit": "ed7209fc706267db55368072095ced800e29fb2f",
      "tree": "fc202538fdb759f38da5e34b1c1da8cd3745ed79",
      "parents": [
        "b2fdcfccbdc107f0f93c1caf7e7dd05a964b7c2e"
      ],
      "author": {
        "name": "Elliotte Rusty Harold",
        "email": "elharo@users.noreply.github.com",
        "time": "Tue Dec 31 12:12:56 2024 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Dec 31 12:12:56 2024 +0000"
      },
      "message": "Remove undeclared hamcrest dependency (#35)\n\n"
    },
    {
      "commit": "b2fdcfccbdc107f0f93c1caf7e7dd05a964b7c2e",
      "tree": "ee57d21321aa76548d9a615d28faf38b8d49e118",
      "parents": [
        "b2fc2a8399a39e725f619c60ced844683801377c"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Mon Dec 30 16:52:19 2024 +0100"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Mon Dec 30 16:52:19 2024 +0100"
      },
      "message": "[maven-release-plugin] prepare for next development iteration\n"
    },
    {
      "commit": "b2fc2a8399a39e725f619c60ced844683801377c",
      "tree": "44c325972f526d820a5695c135a03c6e57300fbe",
      "parents": [
        "068a293f67bfe08eb9a8066726e2d9cf53b45c53"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Mon Dec 30 16:52:11 2024 +0100"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Mon Dec 30 16:52:11 2024 +0100"
      },
      "message": "[maven-release-plugin] prepare release maven-changelog-plugin-3.0.0-M1\n"
    },
    {
      "commit": "068a293f67bfe08eb9a8066726e2d9cf53b45c53",
      "tree": "e0f40c3476df24b508e4a5ab7d4e80ac21f8c2ff",
      "parents": [
        "9e058638c6563ae2ada52041a6b9f1a17323dc8c"
      ],
      "author": {
        "name": "Juul Hobert",
        "email": "juul.hobert@gmail.com",
        "time": "Mon Dec 30 11:57:40 2024 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Dec 30 11:57:40 2024 +0100"
      },
      "message": "[MCHANGELOG-119] - Add option to disable displaying file and file revision information on report (#21)\n\n"
    },
    {
      "commit": "9e058638c6563ae2ada52041a6b9f1a17323dc8c",
      "tree": "cc2e8b0a8b0a0e62f82536299c26e35616eef579",
      "parents": [
        "1dc01e6df0c8a029dbddced43ffd1e6293eae931"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Mon Dec 23 23:51:00 2024 +0100"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Mon Dec 30 10:53:44 2024 +0100"
      },
      "message": "[MCHANGELOG-138] Bump Maven SCM from 1.13.0 to 2.1.0\n"
    },
    {
      "commit": "1dc01e6df0c8a029dbddced43ffd1e6293eae931",
      "tree": "d3d6afff636a58d625b59b8f65be265a2f1252fa",
      "parents": [
        "7c79290997f2830576675d076b24467d7c000152"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Mon Dec 23 21:06:30 2024 +0100"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Thu Dec 26 16:58:20 2024 +0100"
      },
      "message": "[MCHANGELOG-157] Fix build report with m-site-p 3.20+\n\nOnly minimal change\n"
    },
    {
      "commit": "7c79290997f2830576675d076b24467d7c000152",
      "tree": "e1892816ba41776cc7d8d34898fd3b675b086199",
      "parents": [
        "55b0a3d47abbb758066a27a9ad579e244de7608c"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Dec 23 20:26:55 2024 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Dec 23 20:26:55 2024 +0100"
      },
      "message": "[MCHANGELOG-154] Bump org.apache.maven.plugins:maven-plugins from 42 to 43 (#23)\n\n* Bump org.apache.maven.plugins:maven-plugins from 42 to 43\r\n\r\nBumps [org.apache.maven.plugins:maven-plugins](https://github.com/apache/maven-parent) from 42 to 43.\r\n- [Release notes](https://github.com/apache/maven-parent/releases)\r\n- [Commits](https://github.com/apache/maven-parent/commits)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: org.apache.maven.plugins:maven-plugins\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-major\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\n\r\n* Cleanup pom with new parent\r\n\r\n---------\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e\r\nCo-authored-by: Slawomir Jaranowski \u003cs.jaranowski@gmail.com\u003e"
    },
    {
      "commit": "55b0a3d47abbb758066a27a9ad579e244de7608c",
      "tree": "06438381e0996b8775ec99b313315b031f834af4",
      "parents": [
        "85853cc75d50c381468f43586de7ddea570e1499"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Mon Dec 23 20:06:22 2024 +0100"
      },
      "committer": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Mon Dec 23 20:07:12 2024 +0100"
      },
      "message": "Drop comment from ASF jira integration\n"
    },
    {
      "commit": "85853cc75d50c381468f43586de7ddea570e1499",
      "tree": "8918fb2f40cda66f82cb9784fe14eff7d5e8b143",
      "parents": [
        "3c7cbfb731dc39d88ff73d64c8e7bda11e741b68"
      ],
      "author": {
        "name": "Elliotte Rusty Harold",
        "email": "elharo@users.noreply.github.com",
        "time": "Tue Dec 17 16:53:46 2024 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Dec 17 16:53:46 2024 +0000"
      },
      "message": "Remove dependency on commons-lang *2* (#31)\n\n* Switch to commons lang3"
    },
    {
      "commit": "3c7cbfb731dc39d88ff73d64c8e7bda11e741b68",
      "tree": "a812519f1b5374df314c5c353be01caeb900eb59",
      "parents": [
        "c12e62218c46235b353bd7976d05318f0c1f0b0b"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Nov 01 02:16:48 2024 +0000"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri Nov 01 23:18:08 2024 +0200"
      },
      "message": "Bump org.codehaus.mojo:l10n-maven-plugin from 1.0-alpha-2 to 1.1.0\n\nBumps [org.codehaus.mojo:l10n-maven-plugin](https://github.com/mojohaus/l10n-maven-plugin) from 1.0-alpha-2 to 1.1.0.\n- [Release notes](https://github.com/mojohaus/l10n-maven-plugin/releases)\n- [Commits](https://github.com/mojohaus/l10n-maven-plugin/commits/1.1.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.mojo:l10n-maven-plugin\n  dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "c12e62218c46235b353bd7976d05318f0c1f0b0b",
      "tree": "ad6f346df42a96940405dbb15b30b3755719a1d1",
      "parents": [
        "4ac59f652c8a893111c5ee2f0764799691ce97f5"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jul 29 02:53:36 2024 +0000"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sun Sep 08 21:48:20 2024 +0200"
      },
      "message": "Bump org.codehaus.plexus:plexus-utils from 3.3.1 to 3.5.1\n\nBumps [org.codehaus.plexus:plexus-utils](https://github.com/codehaus-plexus/plexus-utils) from 3.3.1 to 3.5.1.\n- [Release notes](https://github.com/codehaus-plexus/plexus-utils/releases)\n- [Commits](https://github.com/codehaus-plexus/plexus-utils/compare/plexus-utils-3.3.1...plexus-utils-3.5.1)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.plexus:plexus-utils\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "4ac59f652c8a893111c5ee2f0764799691ce97f5",
      "tree": "9379c25d15c9c9314bb6d1872aec103d34cd0432",
      "parents": [
        "6058b3bd66805bc3b9d8070cc8a403de7a766968"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sat Aug 31 19:24:34 2024 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 31 19:24:34 2024 +0200"
      },
      "message": "[MCHANGELOG-151] Bump mavenVersion from 3.9.6 to 3.9.9 (#25)\n\nBumps `mavenVersion` from 3.9.6 to 3.9.9.\r\n\r\nUpdates `org.apache.maven:maven-plugin-api` from 3.9.6 to 3.9.9\r\n- [Release notes](https://github.com/apache/maven/releases)\r\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.6...maven-3.9.9)\r\n\r\nUpdates `org.apache.maven:maven-model` from 3.9.6 to 3.9.9\r\n- [Release notes](https://github.com/apache/maven/releases)\r\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.6...maven-3.9.9)\r\n\r\nUpdates `org.apache.maven:maven-artifact` from 3.9.6 to 3.9.9\r\n- [Release notes](https://github.com/apache/maven/releases)\r\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.6...maven-3.9.9)\r\n\r\nUpdates `org.apache.maven:maven-core` from 3.9.6 to 3.9.9\r\n- [Release notes](https://github.com/apache/maven/releases)\r\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.6...maven-3.9.9)\r\n\r\nUpdates `org.apache.maven:maven-compat` from 3.9.6 to 3.9.9\r\n- [Release notes](https://github.com/apache/maven/releases)\r\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.6...maven-3.9.9)\r\n\r\nUpdates `org.apache.maven:maven-settings` from 3.9.6 to 3.9.9\r\n- [Release notes](https://github.com/apache/maven/releases)\r\n- [Commits](https://github.com/apache/maven/compare/maven-3.9.6...maven-3.9.9)\r\n\r\n---\r\nupdated-dependencies:\r\n- dependency-name: org.apache.maven:maven-plugin-api\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-patch\r\n- dependency-name: org.apache.maven:maven-model\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-patch\r\n- dependency-name: org.apache.maven:maven-artifact\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-patch\r\n- dependency-name: org.apache.maven:maven-core\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-patch\r\n- dependency-name: org.apache.maven:maven-compat\r\n  dependency-type: direct:development\r\n  update-type: version-update:semver-patch\r\n- dependency-name: org.apache.maven:maven-settings\r\n  dependency-type: direct:production\r\n  update-type: version-update:semver-patch\r\n...\r\n\r\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\r\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "6058b3bd66805bc3b9d8070cc8a403de7a766968",
      "tree": "274eda4b64d31835e813e74cc423676efc3f6cd4",
      "parents": [
        "db0ef30f31cb5f872bfb3bc5d2c21e494ffadc4c"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon May 06 02:37:35 2024 +0000"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Tue May 14 23:04:50 2024 +0200"
      },
      "message": "Bump org.apache.maven.reporting:maven-reporting-api from 3.1.0 to 3.1.1\n\nBumps [org.apache.maven.reporting:maven-reporting-api](https://github.com/apache/maven-reporting-api) from 3.1.0 to 3.1.1.\n- [Commits](https://github.com/apache/maven-reporting-api/compare/maven-reporting-api-3.1.0...maven-reporting-api-3.1.1)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.reporting:maven-reporting-api\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "db0ef30f31cb5f872bfb3bc5d2c21e494ffadc4c",
      "tree": "86aa423d9cad9052efd5eef1d97057e3bde3bd6c",
      "parents": [
        "b513e3461b9e59a2c900c78a45ed80391b75929e"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 18:33:27 2024 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 18:35:32 2024 +0200"
      },
      "message": "[MCHANGELOG-128] remove unused parameter commentFormat\n\nCo-authored-by: Lutz Horn \u003ccode@lhorn.de\u003e\nCloses: #2\n"
    },
    {
      "commit": "b513e3461b9e59a2c900c78a45ed80391b75929e",
      "tree": "2c391fa1344105f8dbc9a94776fc583128451d6a",
      "parents": [
        "c495d27c6191ec6eb03e54d3e02610c8a56715a2"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 18:17:37 2024 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 18:25:46 2024 +0200"
      },
      "message": "[MCHANGELOG-151] Cleanups\n"
    },
    {
      "commit": "c495d27c6191ec6eb03e54d3e02610c8a56715a2",
      "tree": "b3041b0404c4dd38084ef5d4e17fdc7753dd0064",
      "parents": [
        "3ae8bdde63a0bc966f8af0b7849299ad490de154"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 18:02:37 2024 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 18:25:46 2024 +0200"
      },
      "message": "[MCHANGELOG-151] Stay with older Doxia\n"
    },
    {
      "commit": "3ae8bdde63a0bc966f8af0b7849299ad490de154",
      "tree": "138744d4cda57a35f3416faaadf28c0db214ccc9",
      "parents": [
        "21633fa3fc8414770a6c75896a2b78cfa7b1de49"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 17:49:39 2024 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 18:25:46 2024 +0200"
      },
      "message": "[MCHANGELOG-151] move from plugin.changelog to plugins.changelog\n\nCo-authored-by: Vidar Breivik \u003cvbreivik@gmail.com\u003e\n"
    },
    {
      "commit": "21633fa3fc8414770a6c75896a2b78cfa7b1de49",
      "tree": "392e43fb14a72a467a753d2bd271c3e25682936e",
      "parents": [
        "da76f0769935fc3b58b60a0022efbe02970fcf37"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 17:30:15 2024 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 18:25:46 2024 +0200"
      },
      "message": "[MCHANGELOG-151] Code cleanup and update remaining dependencies\n"
    },
    {
      "commit": "da76f0769935fc3b58b60a0022efbe02970fcf37",
      "tree": "f4811cd605768cb528dafab5b91d228d54d3dc8e",
      "parents": [
        "21e916d4057ce5663d016afee980d0b4e6824f0d"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 17:15:31 2024 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 18:25:46 2024 +0200"
      },
      "message": "[MCHANGELOG-151] Require Maven 3.6.3+\n"
    },
    {
      "commit": "21e916d4057ce5663d016afee980d0b4e6824f0d",
      "tree": "7320f3fd28e7ecbbca3d3adb1296f8eabe2b8b65",
      "parents": [
        "4ac5f06710bb22ecb19b1768ce8d10a463d7d6df"
      ],
      "author": {
        "name": "Tamas Cservenak",
        "email": "tamas@cservenak.net",
        "time": "Sun Apr 17 13:47:06 2022 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 17:28:43 2024 +0200"
      },
      "message": "[MCHANGELOG-151] Update for maven-3.2.5\n"
    },
    {
      "commit": "4ac5f06710bb22ecb19b1768ce8d10a463d7d6df",
      "tree": "b98876c558d6c8414f887a11bbeeac0522be5bc8",
      "parents": [
        "b69cb2c23cf42fda69b836ec3c45dbbc77b73082"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 16:58:08 2024 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 17:05:46 2024 +0200"
      },
      "message": "[MCHANGELOG-154] Cleanup after update\n"
    },
    {
      "commit": "b69cb2c23cf42fda69b836ec3c45dbbc77b73082",
      "tree": "56c9e364ea1349709731b9e09dd03a360812fc42",
      "parents": [
        "981d043b08a8bb92914cfaa3ff608ecbd008af3e"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 16:47:15 2024 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 17:05:46 2024 +0200"
      },
      "message": "[MCHANGELOG-154] Apply Spotless plugin\n"
    },
    {
      "commit": "981d043b08a8bb92914cfaa3ff608ecbd008af3e",
      "tree": "d9cc5224d1e8cccd26dd0cec0d676162c8677a04",
      "parents": [
        "9c0145a60af2bf9f9836564ffe0975ca0426ec2d"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 16:43:32 2024 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 17:05:46 2024 +0200"
      },
      "message": "[MCHANGELOG-154] Update parent pom to 42\n"
    },
    {
      "commit": "9c0145a60af2bf9f9836564ffe0975ca0426ec2d",
      "tree": "300c6039c6980c5a406f45691b7e824dcc2f89f1",
      "parents": [
        "58fa244e23afacf93afb992e057dbae6f5387ef2"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 16:04:40 2024 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 16:40:25 2024 +0200"
      },
      "message": "[MCHANGELOG-155] Require Java 8\n"
    },
    {
      "commit": "58fa244e23afacf93afb992e057dbae6f5387ef2",
      "tree": "2f902830f5ee7dced599825b337244f2789bc28f",
      "parents": [
        "0be1ad34e19e8b2b3d38986b865fbef82d6f8251"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 16:01:28 2024 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Fri May 03 16:01:28 2024 +0200"
      },
      "message": "Add Dependabot\n"
    },
    {
      "commit": "0be1ad34e19e8b2b3d38986b865fbef82d6f8251",
      "tree": "88682ffed57faf8dbee29a691bc9ce4c05c14945",
      "parents": [
        "ebb8b5b686753f5219411ae190f5aefae1809ab2"
      ],
      "author": {
        "name": "Tim te Beek",
        "email": "timtebeek@gmail.com",
        "time": "Sat Aug 19 21:48:43 2023 +0000"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Sun Aug 20 11:22:58 2023 +0200"
      },
      "message": "[MNG-6847] Use diamond operator\n\nUse this link to re-run the recipe: https://app.moderne.io/recipes/org.openrewrite.staticanalysis.UseDiamondOperator?organizationId\u003dQXBhY2hlIE1hdmVu\n\nCo-authored-by: Moderne \u003cteam@moderne.io\u003e"
    },
    {
      "commit": "ebb8b5b686753f5219411ae190f5aefae1809ab2",
      "tree": "c99e8d2609da4cc66ed84971bea6e2d4aeeb676a",
      "parents": [
        "c054135175030751b4d71d9262835042d031f6e8"
      ],
      "author": {
        "name": "Tim te Beek",
        "email": "timtebeek@gmail.com",
        "time": "Mon May 22 13:32:10 2023 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 22 11:32:10 2023 +0000"
      },
      "message": "[MNG-6829] Replace StringUtils#isEmpty(String) and #isNotEmpty(String) (#4)\n\n* [MNG-6829] Replace any StringUtils#isEmpty(String) and #isNotEmpty(String)\r\n\r\nUse this link to re-run the recipe: https://public.moderne.io/recipes/org.openrewrite.java.migrate.apache.commons.lang.IsNotEmptyToJdk?organizationId\u003dQXBhY2hlIE1hdmVu\r\n\r\nCo-authored-by: Moderne \u003cteam@moderne.io\u003e\r\n\r\n* Fix Checkstyle issues\r\n\r\n---------\r\n\r\nCo-authored-by: Moderne \u003cteam@moderne.io\u003e"
    },
    {
      "commit": "c054135175030751b4d71d9262835042d031f6e8",
      "tree": "92962e37e8c1e0631b97be75540c90694dc69f3f",
      "parents": [
        "c4ff9af8a99fb8148a2825dd7b196573d147bc93"
      ],
      "author": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Mon Apr 24 11:56:27 2023 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Apr 24 11:56:27 2023 +0200"
      },
      "message": "Auto-link MCHANGELOG Jira"
    },
    {
      "commit": "c4ff9af8a99fb8148a2825dd7b196573d147bc93",
      "tree": "c135fa7a79e24b5aea1a9284ca6e31f5dd92fd16",
      "parents": [
        "9afa37dad2fe0e3ccf9d7c8c105ecfb5a43eadb7"
      ],
      "author": {
        "name": "Slawomir Jaranowski",
        "email": "s.jaranowski@gmail.com",
        "time": "Sun Jan 09 00:15:06 2022 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Jan 09 00:15:06 2022 +0100"
      },
      "message": "Add Shared GitHub Actions"
    },
    {
      "commit": "9afa37dad2fe0e3ccf9d7c8c105ecfb5a43eadb7",
      "tree": "95109ff134aaceb83196e7e0541b7c9fed152264",
      "parents": [
        "cfc27f5dc75fc829544f2a0e9faf30299724c313"
      ],
      "author": {
        "name": "rfscholte",
        "email": "rfscholte@apache.org",
        "time": "Thu Oct 14 18:37:14 2021 +0200"
      },
      "committer": {
        "name": "rfscholte",
        "email": "rfscholte@apache.org",
        "time": "Thu Oct 14 18:37:14 2021 +0200"
      },
      "message": "Fix JavaDoc\n"
    },
    {
      "commit": "cfc27f5dc75fc829544f2a0e9faf30299724c313",
      "tree": "fc00e1737004659eb8ffef8d32356cc84508c8e7",
      "parents": [
        "8f871c438eb0ed467b1fa8380df9d90389aa43b2"
      ],
      "author": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Sun Jul 25 12:41:34 2021 +0200"
      },
      "committer": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Sun Jul 25 12:41:34 2021 +0200"
      },
      "message": "update CI url\n"
    },
    {
      "commit": "8f871c438eb0ed467b1fa8380df9d90389aa43b2",
      "tree": "5b7c2595f402446745c294c11a75a342b6970ae0",
      "parents": [
        "2bbc78144b83761bbf95e92f4ed3352c85a4b018"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Tue Oct 13 20:57:59 2020 +0200"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Tue Oct 13 20:57:59 2020 +0200"
      },
      "message": "Bump junit from 4.13 to 4.13.1\n\n"
    },
    {
      "commit": "2bbc78144b83761bbf95e92f4ed3352c85a4b018",
      "tree": "295942f54ff9762709ba8acae1b7202adf361db5",
      "parents": [
        "394f40d45d6872816042adb600f3eff4cd616c13"
      ],
      "author": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Sat Aug 29 11:47:52 2020 +0200"
      },
      "committer": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Sat Aug 29 11:47:52 2020 +0200"
      },
      "message": "update ASF CI url\n"
    },
    {
      "commit": "394f40d45d6872816042adb600f3eff4cd616c13",
      "tree": "86fb3eeb49c969b8ada5bc07020ca6a285633d64",
      "parents": [
        "89026fb95cb6f29eee8eaf881e305b7ea26d3772"
      ],
      "author": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Fri Aug 28 10:29:37 2020 +0200"
      },
      "committer": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Fri Aug 28 10:29:37 2020 +0200"
      },
      "message": "update ASF CI url\n"
    },
    {
      "commit": "89026fb95cb6f29eee8eaf881e305b7ea26d3772",
      "tree": "e794355c0ff5224e1bc741160699733e9f7d33e5",
      "parents": [
        "5ed7773f1001986f258dbff54444f736895f5cb0"
      ],
      "author": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Mon Apr 13 22:22:53 2020 +0200"
      },
      "committer": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Mon Apr 13 22:22:53 2020 +0200"
      },
      "message": "README improvement\n"
    },
    {
      "commit": "5ed7773f1001986f258dbff54444f736895f5cb0",
      "tree": "c8a9c0275defb1b79ad69bc32bc2c4b4033d584e",
      "parents": [
        "d428155fac4be128270444204b6d1a7f8113c914"
      ],
      "author": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Mon Apr 13 10:25:02 2020 +0200"
      },
      "committer": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Mon Apr 13 10:25:02 2020 +0200"
      },
      "message": "added README\n"
    },
    {
      "commit": "d428155fac4be128270444204b6d1a7f8113c914",
      "tree": "13479b3b9f9d1a08aeaa097b6998bb737172f8f1",
      "parents": [
        "6a6bd4b2fe825a137bb396a9407504857518af91"
      ],
      "author": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Sun Apr 12 15:15:54 2020 +0200"
      },
      "committer": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Sun Apr 12 15:15:54 2020 +0200"
      },
      "message": "fixed broken links (MPIR 3)\n"
    },
    {
      "commit": "6a6bd4b2fe825a137bb396a9407504857518af91",
      "tree": "9fd9ce769c13a180b9f460004b416103ad969c39",
      "parents": [
        "8ed4c683cb0aa5438dad538741c9a9a0fc98b93c"
      ],
      "author": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Tue Apr 07 23:35:34 2020 +0200"
      },
      "committer": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Tue Apr 07 23:35:34 2020 +0200"
      },
      "message": "[MCHANGELOG-153] make build Reproducible\n"
    },
    {
      "commit": "8ed4c683cb0aa5438dad538741c9a9a0fc98b93c",
      "tree": "243045a9ef3e2f48a471118c4f96fbdc6693a10c",
      "parents": [
        "8cdbbf3ede0591e1fb096d2b6ef0bf8778d043c3"
      ],
      "author": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Feb 17 22:51:05 2020 +0100"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Feb 17 23:00:56 2020 +0100"
      },
      "message": "Use profile to include javax.xml.bind:jaxb-api for Java 9+\n\n- back to testing with newer java versions"
    },
    {
      "commit": "8cdbbf3ede0591e1fb096d2b6ef0bf8778d043c3",
      "tree": "7bdcf7021ec66d8629839047fae1a4909ba18fc4",
      "parents": [
        "20a78c04b264aba4537561e8c6e44645cd31568d"
      ],
      "author": {
        "name": "dependabot-preview[bot]",
        "email": "27856297+dependabot-preview[bot]@users.noreply.github.com",
        "time": "Thu Feb 13 01:06:05 2020 +0000"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Feb 17 21:31:44 2020 +0100"
      },
      "message": "[MCHANGELOG-150] Bump junit from 3.8.2 to 4.13\n\nBumps [junit](https://github.com/junit-team/junit4) from 3.8.2 to 4.13.\n- [Release notes](https://github.com/junit-team/junit4/releases)\n- [Changelog](https://github.com/junit-team/junit4/blob/master/doc/ReleaseNotes4.13.md)\n- [Commits](https://github.com/junit-team/junit4/compare/r3.8.2...r4.13)\n\nSigned-off-by: dependabot-preview[bot] \u003csupport@dependabot.com\u003e"
    },
    {
      "commit": "20a78c04b264aba4537561e8c6e44645cd31568d",
      "tree": "bf249e90ead35f5bb2abf5a483bdc65f1576e7f6",
      "parents": [
        "1d7c09360958cf688392b97885db8890178052f4"
      ],
      "author": {
        "name": "dependabot-preview[bot]",
        "email": "27856297+dependabot-preview[bot]@users.noreply.github.com",
        "time": "Thu Feb 13 05:06:59 2020 +0000"
      },
      "committer": {
        "name": "Sylwester Lachiewicz",
        "email": "slachiewicz@apache.org",
        "time": "Mon Feb 17 21:19:50 2020 +0100"
      },
      "message": "[MCHANGELOG-149] Bump maven-plugins from 33 to 34\n\nBumps [maven-plugins](https://github.com/apache/maven-parent) from 33 to 34.\n- [Release notes](https://github.com/apache/maven-parent/releases)\n- [Commits](https://github.com/apache/maven-parent/commits)\n\nSigned-off-by: dependabot-preview[bot] \u003csupport@dependabot.com\u003e"
    },
    {
      "commit": "1d7c09360958cf688392b97885db8890178052f4",
      "tree": "8217d1d1b6ca88e8ceb95dd61c6888185d60c4f3",
      "parents": [
        "7e710fcaa9fa0c85f7a633087b095b4155e6681e"
      ],
      "author": {
        "name": "rfscholte",
        "email": "rfscholte@apache.org",
        "time": "Sat Mar 16 14:04:23 2019 +0100"
      },
      "committer": {
        "name": "rfscholte",
        "email": "rfscholte@apache.org",
        "time": "Sat Mar 16 14:04:23 2019 +0100"
      },
      "message": "Lock JDK versions: Java 6 compatible project doesn\u0027t compile with JDK 12\n"
    },
    {
      "commit": "7e710fcaa9fa0c85f7a633087b095b4155e6681e",
      "tree": "73be235debad145b15b2e62e71729f5d4ea59539",
      "parents": [
        "e311bdf0297a1677c014e999da0b2ba61577eec0"
      ],
      "author": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Sun Sep 16 18:59:59 2018 +0200"
      },
      "committer": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Sun Sep 16 18:59:59 2018 +0200"
      },
      "message": "upgraded parent POM from 32 to 33\n"
    },
    {
      "commit": "e311bdf0297a1677c014e999da0b2ba61577eec0",
      "tree": "f405f5e64831062490d5a999ad59e6eea27d19f3",
      "parents": [
        "68da9602d817956dde810a4f1533d9c5a1869f4d"
      ],
      "author": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Wed Aug 29 14:53:27 2018 +0200"
      },
      "committer": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Sat Sep 01 22:46:08 2018 +0200"
      },
      "message": "[MPOM-205] use sha512 checksums instead of sha1\n"
    },
    {
      "commit": "68da9602d817956dde810a4f1533d9c5a1869f4d",
      "tree": "fbb6785a7cfa9cb408841e26b9817e47106ad15d",
      "parents": [
        "243ecd4e71c8f922f689f75b4c861f2114393dfd"
      ],
      "author": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Wed Aug 29 14:42:27 2018 +0200"
      },
      "committer": {
        "name": "Hervé Boutemy",
        "email": "hboutemy@apache.org",
        "time": "Sat Sep 01 22:46:08 2018 +0200"
      },
      "message": "[MNGSITE-341] use https for sigs, hashes and KEYS\n"
    },
    {
      "commit": "243ecd4e71c8f922f689f75b4c861f2114393dfd",
      "tree": "311a1ef5577579bebe8be41b3c33d4bb94aa89a1",
      "parents": [
        "dc16a827df2ad8c2fd93f4452c6c6157a8ba08c2"
      ],
      "author": {
        "name": "rfscholte",
        "email": "rfscholte@apache.org",
        "time": "Sat Sep 01 19:25:54 2018 +0200"
      },
      "committer": {
        "name": "rfscholte",
        "email": "rfscholte@apache.org",
        "time": "Sat Sep 01 19:25:54 2018 +0200"
      },
      "message": "switch to asfMavenTlpPlgnBuild\nupdate parent to 32\nIT with-svnjava-maven-2.x should only be executed with Maven2\n"
    }
  ],
  "next": "dc16a827df2ad8c2fd93f4452c6c6157a8ba08c2"
}
