)]}'
{
  "log": [
    {
      "commit": "a97600b0c3e2b8e92476eb7631a4e9c82c64a6bd",
      "tree": "6240cdb3c8e310fa9b49ca5e3db38f442ffa37fe",
      "parents": [
        "61585a363a4986f1895ba842b258462da027378c"
      ],
      "author": {
        "name": "Mark Struberg",
        "email": "struberg@apache.org",
        "time": "Sun Jul 26 00:41:57 2026 +0200"
      },
      "committer": {
        "name": "Mark Struberg",
        "email": "struberg@apache.org",
        "time": "Sun Jul 26 00:41:57 2026 +0200"
      },
      "message": "we don\u0027t want jars checked in ever!\n"
    },
    {
      "commit": "61585a363a4986f1895ba842b258462da027378c",
      "tree": "c3f6ce7a5a36ff73f60d4707eedcbbae094bea68",
      "parents": [
        "025ea74a9930ac9fa8830efba88200456220ba16"
      ],
      "author": {
        "name": "Mark Struberg",
        "email": "struberg@apache.org",
        "time": "Sun Jul 26 00:39:23 2026 +0200"
      },
      "committer": {
        "name": "Mark Struberg",
        "email": "struberg@apache.org",
        "time": "Sun Jul 26 00:39:23 2026 +0200"
      },
      "message": "failover integration test needs to wait for servers to take action\n\notherwise on fast systems it will do the action before the server finished it\u0027s task.\nWith the sleeps it now succeeds consistently\n"
    },
    {
      "commit": "025ea74a9930ac9fa8830efba88200456220ba16",
      "tree": "71aea1688465bc3af30cd01bfcfcdbe62bf51d91",
      "parents": [
        "a3e8806a9da8dc47023c9d96701cee5c3d0e019a"
      ],
      "author": {
        "name": "Mark Struberg",
        "email": "struberg@apache.org",
        "time": "Sat Jul 25 22:22:17 2026 +0200"
      },
      "committer": {
        "name": "Mark Struberg",
        "email": "struberg@apache.org",
        "time": "Sat Jul 25 22:22:17 2026 +0200"
      },
      "message": "remove file which never should have been included\n\nwe don\u0027t want jars in our repository!\n"
    },
    {
      "commit": "a3e8806a9da8dc47023c9d96701cee5c3d0e019a",
      "tree": "61929ba02148a8a2133a172e8660400899f470c7",
      "parents": [
        "5a3c5cc5e3c1ba13df42a149cb6c2267bbb114bf"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jul 20 23:04:56 2026 +0000"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Tue Jul 21 14:43:55 2026 +0200"
      },
      "message": "Bump actions/checkout from 7.0.0 to 7.0.1\n\nBumps [actions/checkout](https://github.com/actions/checkout) from 7.0.0 to 7.0.1.\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/9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0...3d3c42e5aac5ba805825da76410c181273ba90b1)\n\n---\nupdated-dependencies:\n- dependency-name: actions/checkout\n  dependency-version: 7.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"
    },
    {
      "commit": "5a3c5cc5e3c1ba13df42a149cb6c2267bbb114bf",
      "tree": "5ce6d510130e0dcd075b4c999ccf2517fddc5313",
      "parents": [
        "848902f88c5fe72e8194d43f7e5691edb3c0156e"
      ],
      "author": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Tue Jul 21 10:27:14 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Tue Jul 21 10:32:25 2026 +0200"
      },
      "message": "TOMEE-4657 - use the modular EclipseLink JPA artifact instead of the uber-jar\n\nPlume shipped org.eclipse.persistence:eclipselink, a monolithic artifact that\nbundles MOXy alongside the JPA runtime and registers a\njakarta.xml.bind.JAXBContextFactory service. MOXy therefore won the\nServiceLoader lookup over the JAXB RI that Plume also ships, and MOXy cannot\nunmarshal through the SAX UnmarshallerHandler chain Apache BVal uses while\nparsing validation.xml and constraint-mapping descriptors. Every Bean\nValidation XML configuration path on a stock Plume server failed with a\nDOMException (NAMESPACE_ERR).\n\nPlume needs a JPA provider, not a JAXB one, so depend on the modular\norg.eclipse.persistence.jpa artifact. It brings the JPA runtime plus\npersistence.core and jpa.jpql, keeps the\njakarta.persistence.spi.PersistenceProvider service, and leaves MOXy, SDO,\nJPA-RS and the Oracle platforms out of the distribution. jaxb-runtime is now\nthe only JAXBContextFactory provider in Plume, so no system property pin is\nneeded.\n\nVerified on a clean build of the Plume distribution:\n- Jakarta Persistence TCK 3.2.1: 2134 tests, 0 failures, 0 errors, plus the\n  signature test, unchanged from the previous baseline.\n- Jakarta Validation TCK 3.1.1: 1049 tests, 0 failures, signature test 0\n  failures, with no jakarta.xml.bind.JAXBContextFactory pin configured.\n\nNote that the change only shows up in a clean build: the plume work dir keeps\npreviously staged jars, so an incremental build can still package the old\nuber-jar.\n\nboms/tomee-plume/pom.xml is regenerated by GenerateBoms during the build.\n"
    },
    {
      "commit": "848902f88c5fe72e8194d43f7e5691edb3c0156e",
      "tree": "24a3e69f3c63246b14bf50361215a4d1ddec85a3",
      "parents": [
        "db404fcf241d9d94e9fe812409ab436fd1381d2a"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Mon Jul 20 20:34:18 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Mon Jul 20 20:34:18 2026 +0200"
      },
      "message": "TOMEE-4640 - Pin data-standalone TCK Arquillian to 1.9.1.Final\n\nThe Jakarta Data TCK 1.0.1 StandaloneExtension calls\nArquillianExtension.handleTestExecutionException(ExtensionContext, Throwable),\nwhich was removed in arquillian-junit5 1.10.0.Final. The dependabot bump from\n1.9.1.Final to 1.10.1.Final (a0346ac309) made every EntityTests method error\nwith a NoSuchMethodError before any query ran; it went unnoticed because no CI\njob activates the tck-data profile. With 1.9.1.Final restored, EntityTests\npasses 73/73 against TomEE Plume (EclipseLink).\n"
    },
    {
      "commit": "db404fcf241d9d94e9fe812409ab436fd1381d2a",
      "tree": "953f419e90ce8083088f714bb92ad7d32f0bc57e",
      "parents": [
        "08b8c5390505619077db277e688fcc2313d89e96"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jul 16 23:04:58 2026 +0000"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Fri Jul 17 12:57:13 2026 +0200"
      },
      "message": "bump actions/setup-java from 5.5.0 to 5.6.0\n\nBumps [actions/setup-java](https://github.com/actions/setup-java) from 5.5.0 to 5.6.0.\n- [Release notes](https://github.com/actions/setup-java/releases)\n- [Commits](https://github.com/actions/setup-java/compare/0f481fcb613427c0f801b606911222b5b6f3083a...03ad4de0992f5dab5e18fcb136590ce7c4a0ac95)\n\n---\nupdated-dependencies:\n- dependency-name: actions/setup-java\n  dependency-version: 5.6.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "08b8c5390505619077db277e688fcc2313d89e96",
      "tree": "eac7cbe85c39f43a6a285e48778d9cae3da70300",
      "parents": [
        "58136d6dfd00850017eab2cc7647abd397a4ff38"
      ],
      "author": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Mon Jul 13 20:52:00 2026 +0200"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Mon Jul 13 20:52:00 2026 +0200"
      },
      "message": "enable UriInfo40ClientIT again\n"
    },
    {
      "commit": "58136d6dfd00850017eab2cc7647abd397a4ff38",
      "tree": "20064139d15d45014333b78bd93b7ec6202bf6cb",
      "parents": [
        "e0794f6495745bcd0235ded47b18d696dc3aeb00"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jul 13 19:41:30 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jul 13 19:41:30 2026 +0200"
      },
      "message": "Bump org.apache.activemq:activemq-broker (#2822)\n\nBumps [org.apache.activemq:activemq-broker](https://github.com/apache/activemq) from 6.2.5 to 6.2.6.\n- [Release notes](https://github.com/apache/activemq/releases)\n- [Commits](https://github.com/apache/activemq/compare/activemq-6.2.5...activemq-6.2.6)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.activemq:activemq-broker\n  dependency-version: 6.2.6\n  dependency-type: direct:development\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": "e0794f6495745bcd0235ded47b18d696dc3aeb00",
      "tree": "87325125c035dd2cf6686e6a357dbf07d3998570",
      "parents": [
        "5debbfe579431b5414a84b5897dd0d7af06d1785"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jul 13 19:41:13 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jul 13 19:41:13 2026 +0200"
      },
      "message": "Bump org.apache.activemq:activemq-broker (#2823)\n\nBumps [org.apache.activemq:activemq-broker](https://github.com/apache/activemq) from 6.2.5 to 6.2.6.\n- [Release notes](https://github.com/apache/activemq/releases)\n- [Commits](https://github.com/apache/activemq/compare/activemq-6.2.5...activemq-6.2.6)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.activemq:activemq-broker\n  dependency-version: 6.2.6\n  dependency-type: direct:production\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": "5debbfe579431b5414a84b5897dd0d7af06d1785",
      "tree": "8299476ae16bd46fb0edc721e8d49e3fda99173f",
      "parents": [
        "bf39193976a7b15ada78812a7eefcf6019e12083"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jul 13 19:40:59 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jul 13 19:40:59 2026 +0200"
      },
      "message": "Bump actions/setup-java from 5.4.0 to 5.5.0 (#2821)\n\nBumps [actions/setup-java](https://github.com/actions/setup-java) from 5.4.0 to 5.5.0.\n- [Release notes](https://github.com/actions/setup-java/releases)\n- [Commits](https://github.com/actions/setup-java/compare/1bcf9fb12cf4aa7d266a90ae39939e61372fe520...0f481fcb613427c0f801b606911222b5b6f3083a)\n\n---\nupdated-dependencies:\n- dependency-name: actions/setup-java\n  dependency-version: 5.5.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": "bf39193976a7b15ada78812a7eefcf6019e12083",
      "tree": "8b3329332cfe6b2107716e27adf8302f8b7faf1a",
      "parents": [
        "4ec9382492c736ea6de29393178298fed5f614c1"
      ],
      "author": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Sat Jul 11 22:22:40 2026 +0200"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Sat Jul 11 22:22:40 2026 +0200"
      },
      "message": "TOMEE-4634 remove tomee-webaccess\n"
    },
    {
      "commit": "4ec9382492c736ea6de29393178298fed5f614c1",
      "tree": "4a08042f8a2b5b064fd78b7b95d7df5098934e11",
      "parents": [
        "8e9a53ca5c8fa11adc398a119692bd57a5b3afc9"
      ],
      "author": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Sat Jul 11 21:26:40 2026 +0200"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Sat Jul 11 21:26:40 2026 +0200"
      },
      "message": "microprofile health don\u0027t evaluate health checks twice\n"
    },
    {
      "commit": "8e9a53ca5c8fa11adc398a119692bd57a5b3afc9",
      "tree": "ca7b4f3ab2502289b5c1a3df505c5a7acf3a0fb9",
      "parents": [
        "a92a8a283bd7ce8f9ecb28008afb03f521c5db89"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Tue Jul 07 14:31:55 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Tue Jul 07 14:31:55 2026 +0200"
      },
      "message": "TOMEE-4633 - XBean 4.31\n"
    },
    {
      "commit": "a92a8a283bd7ce8f9ecb28008afb03f521c5db89",
      "tree": "32ae02e4495920d91f9fd1768dfc717ff96f5f0f",
      "parents": [
        "7d85143c25574e369095e59e6e2d6a36e2b19547"
      ],
      "author": {
        "name": "Mark Struberg",
        "email": "struberg@apache.org",
        "time": "Mon Jul 06 00:24:40 2026 +0200"
      },
      "committer": {
        "name": "Mark Struberg",
        "email": "struberg@apache.org",
        "time": "Mon Jul 06 00:24:40 2026 +0200"
      },
      "message": "fix broken dependency setup for joda\n\nCaused by bloody dependabot which messes up our build each time :(\n"
    },
    {
      "commit": "7d85143c25574e369095e59e6e2d6a36e2b19547",
      "tree": "c23556cc2fe187f74a87ff9a4d94e74357ba04e9",
      "parents": [
        "8c1801caef4d77c1f5cd8236fa39a763d23c44f1"
      ],
      "author": {
        "name": "Mark Struberg",
        "email": "struberg@apache.org",
        "time": "Mon Jul 06 00:22:49 2026 +0200"
      },
      "committer": {
        "name": "Mark Struberg",
        "email": "struberg@apache.org",
        "time": "Mon Jul 06 00:22:49 2026 +0200"
      },
      "message": "fix missing httpclient dependency for unit tests\n"
    },
    {
      "commit": "8c1801caef4d77c1f5cd8236fa39a763d23c44f1",
      "tree": "83945f4efb27c94273f949a7e5e265461d6cae9b",
      "parents": [
        "d8dd2bfffe33ff4283c984cdb6e4d8cc1ad04002"
      ],
      "author": {
        "name": "Mark Struberg",
        "email": "struberg@apache.org",
        "time": "Sun Jul 05 23:59:42 2026 +0200"
      },
      "committer": {
        "name": "Mark Struberg",
        "email": "struberg@apache.org",
        "time": "Sun Jul 05 23:59:42 2026 +0200"
      },
      "message": "Fix broken test\n\njava.lang.ClassNotFoundException: org.apache.http.conn.SchemePortResolver\n"
    },
    {
      "commit": "d8dd2bfffe33ff4283c984cdb6e4d8cc1ad04002",
      "tree": "d07662187c04c8b70f1946fae51bddfd6a3c14ea",
      "parents": [
        "135d4d06d2e33e8ade56a73c21ec3e96d4e4f1f2"
      ],
      "author": {
        "name": "Mark Struberg",
        "email": "struberg@apache.org",
        "time": "Sun Jul 05 21:42:31 2026 +0200"
      },
      "committer": {
        "name": "Mark Struberg",
        "email": "struberg@apache.org",
        "time": "Sun Jul 05 21:42:31 2026 +0200"
      },
      "message": "fix further tomee-maven-plugin tests\n\nThose tests refer to dependencie versions which are not available after a fresh\nnotebook setup.\n"
    },
    {
      "commit": "135d4d06d2e33e8ade56a73c21ec3e96d4e4f1f2",
      "tree": "f53b0612a4a9882ca38ed177c6b578c70230ad53",
      "parents": [
        "23e55fea9feb25f44a9e264566318c3b49f84afc"
      ],
      "author": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Sun Jul 05 21:06:37 2026 +0200"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Sun Jul 05 21:06:37 2026 +0200"
      },
      "message": "improve ClasspathCustomizationTest\n"
    },
    {
      "commit": "23e55fea9feb25f44a9e264566318c3b49f84afc",
      "tree": "b82f330651193dd92e2581a82354573306abda40",
      "parents": [
        "84cf2418c5228b25132d78a3687c037b027372f2"
      ],
      "author": {
        "name": "Mark Struberg",
        "email": "struberg@apache.org",
        "time": "Sun Jul 05 17:23:30 2026 +0200"
      },
      "committer": {
        "name": "Mark Struberg",
        "email": "struberg@apache.org",
        "time": "Sun Jul 05 17:23:30 2026 +0200"
      },
      "message": "fix FailOverRouterErrorHandlerTest and others\n\nRoutedDataSource has multiple constructors with a \u0027router\u0027 named parameter.\nThat leads to randomly picking up one of those 2 ct.\nOne of them works, the other won\u0027t - means we have stochastic test errors\n"
    },
    {
      "commit": "84cf2418c5228b25132d78a3687c037b027372f2",
      "tree": "632ad4ae9ad3c23f022d124ec3acad1d150e13a0",
      "parents": [
        "45a565d44e90c51ff1879435fa7bdbf304178bb1"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Thu Jul 02 11:53:08 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 02 11:53:08 2026 +0200"
      },
      "message": "TOMEE-4631 - arquillian-tomee-remote: re-register container on every Manager bootstrap (#2816)\n\nRemoteTomEEExtension guarded container registration behind a JVM-static\nAtomicBoolean latch. Arquillian instantiates the extension and calls\nregister() once per Manager bootstrap, so the latch let only the first\nManager in a JVM fork register its DeployableContainer. Any second\nManager in the same fork (e.g. maven-failsafe-plugin\u0027s\nrerunFailingTestsCount) got an empty ContainerRegistry and failed every\ndeployment with \"DeploymentScenario contains a target (_DEFAULT_) not\nmatching any defined Container in the registry\".\n\nDrop the static latch (and the static lock that only guarded it) and\nregister unconditionally, matching EmbeddedTomEEExtension. The existing\ntry/catch(IllegalArgumentException) remains as the guard against a\ngenuine double-registration within a single builder.\n\nAdds RemoteTomEEExtensionReRegistrationTest covering re-registration\nacross two Manager bootstraps in the same JVM."
    },
    {
      "commit": "45a565d44e90c51ff1879435fa7bdbf304178bb1",
      "tree": "00456829c57ded6744152aad06dad7890f34146f",
      "parents": [
        "4a12914a60014953111cc22f932a7cf462c22556"
      ],
      "author": {
        "name": "github-actions[bot]",
        "email": "41898282+github-actions[bot]@users.noreply.github.com",
        "time": "Thu Jul 02 11:33:08 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 02 11:33:08 2026 +0200"
      },
      "message": "Minor: Regenerated BOMs for 4a12914a60014953111cc22f932a7cf462c22556 (#2819)\n\nSigned-off-by: GitHub \u003cnoreply@github.com\u003e\nCo-authored-by: jungm \u003cjungm@users.noreply.github.com\u003e"
    },
    {
      "commit": "4a12914a60014953111cc22f932a7cf462c22556",
      "tree": "df5547d5e4d6c1e3f6e1cd6d1a0dfa8a75a1982b",
      "parents": [
        "1b891ff1c2213a5cd480a1d9b21fdaa08107fa2c"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jul 02 07:32:52 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 02 07:32:52 2026 +0200"
      },
      "message": "TOMEE-4632 build(deps): bump org.eclipse.persistence:eclipselink (#2818)\n\nBumps org.eclipse.persistence:eclipselink from 5.0.0 to 5.0.1.\n\n---\nupdated-dependencies:\n- dependency-name: org.eclipse.persistence:eclipselink\n  dependency-version: 5.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\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "1b891ff1c2213a5cd480a1d9b21fdaa08107fa2c",
      "tree": "41d626d3e895277934d563f30490349323e18b2d",
      "parents": [
        "c34a063b92ae37040af618d6755da7e2d4f6d5c8"
      ],
      "author": {
        "name": "github-actions[bot]",
        "email": "41898282+github-actions[bot]@users.noreply.github.com",
        "time": "Mon Jun 29 11:49:46 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 29 11:49:46 2026 +0200"
      },
      "message": "Minor: Regenerated BOMs for c34a063b92ae37040af618d6755da7e2d4f6d5c8 (#2815)\n\nSigned-off-by: GitHub \u003cnoreply@github.com\u003e\nCo-authored-by: rzo1 \u003crzo1@users.noreply.github.com\u003e"
    },
    {
      "commit": "c34a063b92ae37040af618d6755da7e2d4f6d5c8",
      "tree": "570f0d93edc77231dcf9e9368d9d56bf2a831738",
      "parents": [
        "d059a3ef619a6340d65f6f1f41ca1c0828a26330"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 29 11:39:38 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 29 11:39:38 2026 +0200"
      },
      "message": "Bump version.hibernate.orm from 7.4.2.Final to 7.4.3.Final (#2810)\n\nBumps `version.hibernate.orm` from 7.4.2.Final to 7.4.3.Final.\n\nUpdates `org.hibernate.orm:hibernate-core` from 7.4.2.Final to 7.4.3.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/7.4.3/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/7.4.2...7.4.3)\n\nUpdates `org.hibernate.orm:hibernate-processor` from 7.4.2.Final to 7.4.3.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/7.4.3/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/7.4.2...7.4.3)\n\nUpdates `org.hibernate.orm:hibernate-jcache` from 7.4.2.Final to 7.4.3.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/7.4.3/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/7.4.2...7.4.3)\n\n---\nupdated-dependencies:\n- dependency-name: org.hibernate.orm:hibernate-core\n  dependency-version: 7.4.3.Final\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate.orm:hibernate-processor\n  dependency-version: 7.4.3.Final\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate.orm:hibernate-jcache\n  dependency-version: 7.4.3.Final\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": "d059a3ef619a6340d65f6f1f41ca1c0828a26330",
      "tree": "903682f7073ce1e535f43792f1fef47bc0014ef8",
      "parents": [
        "4649f2ed9f8b5266c6db17084c3d78d158c9f8e5"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 29 11:38:47 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 29 11:38:47 2026 +0200"
      },
      "message": "TOMEE-4630 - Bump version.activemq from 6.2.6 to 6.2.7 (#2808)\n\nBumps `version.activemq` from 6.2.6 to 6.2.7.\n\nUpdates `org.apache.activemq:activemq-jdbc-store` from 6.2.6 to 6.2.7\n- [Release notes](https://github.com/apache/activemq/releases)\n- [Commits](https://github.com/apache/activemq/compare/activemq-6.2.6...activemq-6.2.7)\n\nUpdates `org.apache.activemq:activemq-ra` from 6.2.6 to 6.2.7\n- [Release notes](https://github.com/apache/activemq/releases)\n- [Commits](https://github.com/apache/activemq/compare/activemq-6.2.6...activemq-6.2.7)\n\nUpdates `org.apache.activemq:activemq-client` from 6.2.6 to 6.2.7\n- [Release notes](https://github.com/apache/activemq/releases)\n- [Commits](https://github.com/apache/activemq/compare/activemq-6.2.6...activemq-6.2.7)\n\nUpdates `org.apache.activemq:activemq-broker` from 6.2.6 to 6.2.7\n- [Release notes](https://github.com/apache/activemq/releases)\n- [Commits](https://github.com/apache/activemq/compare/activemq-6.2.6...activemq-6.2.7)\n\nUpdates `org.apache.activemq:activemq-openwire-legacy` from 6.2.6 to 6.2.7\n- [Release notes](https://github.com/apache/activemq/releases)\n- [Commits](https://github.com/apache/activemq/compare/activemq-6.2.6...activemq-6.2.7)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.activemq:activemq-jdbc-store\n  dependency-version: 6.2.7\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.activemq:activemq-ra\n  dependency-version: 6.2.7\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.activemq:activemq-client\n  dependency-version: 6.2.7\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.activemq:activemq-broker\n  dependency-version: 6.2.7\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.activemq:activemq-openwire-legacy\n  dependency-version: 6.2.7\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": "4649f2ed9f8b5266c6db17084c3d78d158c9f8e5",
      "tree": "b9f999977462c2fe02b095ffb63fa9a9d9f0ed2b",
      "parents": [
        "9ed1ae33920cf1aa27b0991f80e5438d8fb73cd3"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 29 11:37:36 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 29 11:37:36 2026 +0200"
      },
      "message": "Bump org.apache:apache from 38 to 39 (#2812)\n\nBumps [org.apache:apache](https://github.com/apache/maven-apache-parent) from 38 to 39.\n- [Release notes](https://github.com/apache/maven-apache-parent/releases)\n- [Commits](https://github.com/apache/maven-apache-parent/commits)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache:apache\n  dependency-version: \u002739\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": "9ed1ae33920cf1aa27b0991f80e5438d8fb73cd3",
      "tree": "c576c5dbe34315d8342135debc776410a9f355ed",
      "parents": [
        "2e962436935024884bc4c4fc4e715712df871d20"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 29 11:37:27 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 29 11:37:27 2026 +0200"
      },
      "message": "Bump junit.jupiter.version from 5.12.0 to 6.1.1 (#2811)\n\nBumps `junit.jupiter.version` from 5.12.0 to 6.1.1.\n\nUpdates `org.junit.jupiter:junit-jupiter-api` from 5.12.0 to 6.1.1\n- [Release notes](https://github.com/junit-team/junit-framework/releases)\n- [Commits](https://github.com/junit-team/junit-framework/compare/r5.12.0...r6.1.1)\n\nUpdates `org.junit.jupiter:junit-jupiter-engine` from 5.12.0 to 6.1.1\n- [Release notes](https://github.com/junit-team/junit-framework/releases)\n- [Commits](https://github.com/junit-team/junit-framework/compare/r5.12.0...r6.1.1)\n\nUpdates `org.junit.vintage:junit-vintage-engine` from 5.12.0 to 6.1.1\n- [Release notes](https://github.com/junit-team/junit-framework/releases)\n- [Commits](https://github.com/junit-team/junit-framework/compare/r5.12.0...r6.1.1)\n\nUpdates `org.junit.jupiter:junit-jupiter` from 5.12.0 to 6.1.1\n- [Release notes](https://github.com/junit-team/junit-framework/releases)\n- [Commits](https://github.com/junit-team/junit-framework/compare/r5.12.0...r6.1.1)\n\nUpdates `org.junit:junit-bom` from 5.12.0 to 6.1.1\n- [Release notes](https://github.com/junit-team/junit-framework/releases)\n- [Commits](https://github.com/junit-team/junit-framework/compare/r5.12.0...r6.1.1)\n\n---\nupdated-dependencies:\n- dependency-name: org.junit.jupiter:junit-jupiter-api\n  dependency-version: 6.1.1\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n- dependency-name: org.junit.jupiter:junit-jupiter-engine\n  dependency-version: 6.1.1\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n- dependency-name: org.junit.vintage:junit-vintage-engine\n  dependency-version: 6.1.1\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n- dependency-name: org.junit.jupiter:junit-jupiter\n  dependency-version: 6.1.1\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n- dependency-name: org.junit:junit-bom\n  dependency-version: 6.1.1\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": "2e962436935024884bc4c4fc4e715712df871d20",
      "tree": "c7bbf23a476c8d8a1abe10ce56fde1f9e480ccaa",
      "parents": [
        "82291820637ac87bc2f55411a98a819c7a170a7e"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sun Jun 28 19:30:04 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Jun 28 19:30:04 2026 +0200"
      },
      "message": "Bump actions/cache from 6.0.0 to 6.1.0 (#2803)\n\nBumps [actions/cache](https://github.com/actions/cache) from 6.0.0 to 6.1.0.\n- [Release notes](https://github.com/actions/cache/releases)\n- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)\n- [Commits](https://github.com/actions/cache/compare/2c8a9bd7457de244a408f35966fab2fb45fda9c8...55cc8345863c7cc4c66a329aec7e433d2d1c52a9)\n\n---\nupdated-dependencies:\n- dependency-name: actions/cache\n  dependency-version: 6.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": "82291820637ac87bc2f55411a98a819c7a170a7e",
      "tree": "066dbe2babfbc58d42d27fe3be6ab3f517749865",
      "parents": [
        "67001f47ba4dc556f17e51413f8f3acfbd97f123"
      ],
      "author": {
        "name": "github-actions[bot]",
        "email": "41898282+github-actions[bot]@users.noreply.github.com",
        "time": "Fri Jun 26 14:52:51 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Jun 26 14:52:51 2026 +0200"
      },
      "message": "Minor: Regenerated BOMs for 67001f47ba4dc556f17e51413f8f3acfbd97f123 (#2801)\n\nSigned-off-by: GitHub \u003cnoreply@github.com\u003e\nCo-authored-by: rzo1 \u003crzo1@users.noreply.github.com\u003e"
    },
    {
      "commit": "67001f47ba4dc556f17e51413f8f3acfbd97f123",
      "tree": "16cf14825bda8c08925e50d901bf9de96641150d",
      "parents": [
        "974aec5da8856ae845025dbde87250ec1a403fcd"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Jun 26 14:44:41 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Jun 26 14:44:41 2026 +0200"
      },
      "message": "Bump actions/setup-java from 5.3.0 to 5.4.0 (#2798)\n\nBumps [actions/setup-java](https://github.com/actions/setup-java) from 5.3.0 to 5.4.0.\n- [Release notes](https://github.com/actions/setup-java/releases)\n- [Commits](https://github.com/actions/setup-java/compare/ad2b38190b15e4d6bdf0c97fb4fca8412226d287...1bcf9fb12cf4aa7d266a90ae39939e61372fe520)\n\n---\nupdated-dependencies:\n- dependency-name: actions/setup-java\n  dependency-version: 5.4.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": "974aec5da8856ae845025dbde87250ec1a403fcd",
      "tree": "6da7c92d4107637d686f682ded74226c05c89eb6",
      "parents": [
        "099744d8cbb57853e6d596eb9c3229f6cfd3a52d"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Fri Jun 26 14:43:35 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Jun 26 14:43:35 2026 +0200"
      },
      "message": "TOMEE-4589 - Trim whitespace in numeric/enum descriptor values (#2795)\n\nsession-timeout (and the other xsd:integer / numeric / temporal / enum\ndescriptor values) use a whitespace\u003d\"collapse\" facet, so a value such as\n\n  \u003csession-timeout\u003e\n      30\n  \u003c/session-timeout\u003e\n\nis valid and must parse. The SXC-generated accessors fed the raw element\ntext straight into Integer.valueOf()/etc. for wrapper, temporal, decimal,\nenum and boolean types, which failed with NumberFormatException (or parsed\nthe wrong value).\n\nBump SXC to 0.10 (which collapses whitespace in the generator) and\nregenerate the affected accessors, applying only the resulting .trim()\nadditions so the change stays limited to the fix. Adds a regression test."
    },
    {
      "commit": "099744d8cbb57853e6d596eb9c3229f6cfd3a52d",
      "tree": "033390a61bd2024303cc266d6248eeb7c18550e2",
      "parents": [
        "d61d5157385143a7542bf6681f9edf6ca247dcec"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jun 25 10:55:19 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jun 25 10:55:19 2026 +0200"
      },
      "message": "Bump io.opentelemetry:opentelemetry-api (#2793)\n\nBumps [io.opentelemetry:opentelemetry-api](https://github.com/open-telemetry/opentelemetry-java) from 1.55.0 to 1.62.0.\n- [Release notes](https://github.com/open-telemetry/opentelemetry-java/releases)\n- [Changelog](https://github.com/open-telemetry/opentelemetry-java/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/open-telemetry/opentelemetry-java/compare/v1.55.0...v1.62.0)\n\n---\nupdated-dependencies:\n- dependency-name: io.opentelemetry:opentelemetry-api\n  dependency-version: 1.62.0\n  dependency-type: direct:production\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": "d61d5157385143a7542bf6681f9edf6ca247dcec",
      "tree": "2fc4927e2186ae327b95e111aac917ccf45c4160",
      "parents": [
        "2bd478c8bc0781d76c3a74757956b5dc67893e23"
      ],
      "author": {
        "name": "github-actions[bot]",
        "email": "41898282+github-actions[bot]@users.noreply.github.com",
        "time": "Thu Jun 25 10:45:43 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jun 25 10:45:43 2026 +0200"
      },
      "message": "Minor: Regenerated BOMs for 2bd478c8bc0781d76c3a74757956b5dc67893e23 (#2791)\n\nSigned-off-by: GitHub \u003cnoreply@github.com\u003e\nCo-authored-by: rzo1 \u003crzo1@users.noreply.github.com\u003e"
    },
    {
      "commit": "2bd478c8bc0781d76c3a74757956b5dc67893e23",
      "tree": "5acf6b9da37a7d4d1a8651f09152c812019ef56a",
      "parents": [
        "7f418352bc21a055cd094135b6b03f277ba20c90"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Thu Jun 25 08:57:23 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Thu Jun 25 08:57:23 2026 +0200"
      },
      "message": "TOMEE-4623 - Jackson 2.22.0\n"
    },
    {
      "commit": "7f418352bc21a055cd094135b6b03f277ba20c90",
      "tree": "e83fe7c72d07afb2ce85e6126fde0ff6ae8a6e75",
      "parents": [
        "518e92bd8ea551c66fef2acb4d04a4abed50229e"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jun 25 08:52:48 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jun 25 08:52:48 2026 +0200"
      },
      "message": "TOMEE-4629 - Bump com.sun.xml.messaging.saaj:saaj-impl from 3.0.5 to 3.0.6 (#2788)\n\nBumps com.sun.xml.messaging.saaj:saaj-impl from 3.0.5 to 3.0.6.\n\n---\nupdated-dependencies:\n- dependency-name: com.sun.xml.messaging.saaj:saaj-impl\n  dependency-version: 3.0.6\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": "518e92bd8ea551c66fef2acb4d04a4abed50229e",
      "tree": "ffebe0428ed9c3780ba655fa047f9bb6d3477aea",
      "parents": [
        "2792f4a97bd4ded543992ce02d5b1c0746b8e931"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jun 25 08:52:01 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jun 25 08:52:01 2026 +0200"
      },
      "message": " TOMEE-4628  - Bump version.microprofile.impl.opentelemetry from 2.14.0 to 2.15.1 (#2771)\n\nBumps `version.microprofile.impl.opentelemetry` from 2.14.0 to 2.15.1.\n\nUpdates `io.smallrye.opentelemetry:smallrye-opentelemetry-api` from 2.14.0 to 2.15.1\n- [Release notes](https://github.com/smallrye/smallrye-opentelemetry/releases)\n- [Commits](https://github.com/smallrye/smallrye-opentelemetry/compare/2.14.0...2.15.1)\n\nUpdates `io.smallrye.opentelemetry:smallrye-opentelemetry-cdi` from 2.14.0 to 2.15.1\n\nUpdates `io.smallrye.opentelemetry:smallrye-opentelemetry-rest` from 2.14.0 to 2.15.1\n\nUpdates `io.smallrye.opentelemetry:smallrye-opentelemetry-config` from 2.14.0 to 2.15.1\n\nUpdates `io.smallrye.opentelemetry:smallrye-opentelemetry-propagation` from 2.14.0 to 2.15.1\n\n---\nupdated-dependencies:\n- dependency-name: io.smallrye.opentelemetry:smallrye-opentelemetry-api\n  dependency-version: 2.15.1\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: io.smallrye.opentelemetry:smallrye-opentelemetry-cdi\n  dependency-version: 2.15.1\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: io.smallrye.opentelemetry:smallrye-opentelemetry-rest\n  dependency-version: 2.15.1\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: io.smallrye.opentelemetry:smallrye-opentelemetry-config\n  dependency-version: 2.15.1\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: io.smallrye.opentelemetry:smallrye-opentelemetry-propagation\n  dependency-version: 2.15.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"
    },
    {
      "commit": "2792f4a97bd4ded543992ce02d5b1c0746b8e931",
      "tree": "a229c2bc34af2f9d3158545bbbb8f67cee340844",
      "parents": [
        "b4867f607cb53cfc9e993a9cc671eaa7e72ae44d"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jun 25 08:51:13 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jun 25 08:51:13 2026 +0200"
      },
      "message": "TOMEE-4627 - Bump commons-logging:commons-logging from 1.3.6 to 1.4.0 (#2766)\n\nBumps [commons-logging:commons-logging](https://github.com/apache/commons-logging) from 1.3.6 to 1.4.0.\n- [Changelog](https://github.com/apache/commons-logging/blob/master/RELEASE-NOTES.txt)\n- [Commits](https://github.com/apache/commons-logging/compare/rel/commons-logging-1.3.6...rel/commons-logging-1.4.0)\n\n---\nupdated-dependencies:\n- dependency-name: commons-logging:commons-logging\n  dependency-version: 1.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\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "b4867f607cb53cfc9e993a9cc671eaa7e72ae44d",
      "tree": "7d5dcfe2e18905145401e8023a9947bfea092d74",
      "parents": [
        "26e0bd1046f1c2dc1407185fc1ceb04201cf6486"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jun 25 08:49:48 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jun 25 08:49:48 2026 +0200"
      },
      "message": "TOMEE-4625 - Bump version.cxf from 4.2.1 to 4.2.2 (#2774)\n\nBumps `version.cxf` from 4.2.1 to 4.2.2.\n\nUpdates `org.apache.cxf:cxf-core` from 4.2.1 to 4.2.2\n\nUpdates `org.apache.cxf:cxf-rt-transports-http` from 4.2.1 to 4.2.2\n\nUpdates `org.apache.cxf:cxf-rt-rs-client` from 4.2.1 to 4.2.2\n\nUpdates `org.apache.cxf:cxf-rt-frontend-jaxrs` from 4.2.1 to 4.2.2\n\nUpdates `org.apache.cxf:cxf-rt-frontend-jaxws` from 4.2.1 to 4.2.2\n\nUpdates `org.apache.cxf:cxf-rt-ws-security` from 4.2.1 to 4.2.2\n\nUpdates `org.apache.cxf:cxf-rt-rs-sse` from 4.2.1 to 4.2.2\n\nUpdates `org.apache.cxf:cxf-rt-management` from 4.2.1 to 4.2.2\n\nUpdates `org.apache.cxf:cxf-rt-rs-service-description` from 4.2.1 to 4.2.2\n\nUpdates `org.apache.cxf:cxf-rt-rs-extension-providers` from 4.2.1 to 4.2.2\n\nUpdates `org.apache.cxf:cxf-rt-rs-mp-client` from 4.2.1 to 4.2.2\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.cxf:cxf-core\n  dependency-version: 4.2.2\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.cxf:cxf-rt-transports-http\n  dependency-version: 4.2.2\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.cxf:cxf-rt-rs-client\n  dependency-version: 4.2.2\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.cxf:cxf-rt-frontend-jaxrs\n  dependency-version: 4.2.2\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.cxf:cxf-rt-frontend-jaxws\n  dependency-version: 4.2.2\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.cxf:cxf-rt-ws-security\n  dependency-version: 4.2.2\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.cxf:cxf-rt-rs-sse\n  dependency-version: 4.2.2\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.cxf:cxf-rt-management\n  dependency-version: 4.2.2\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.cxf:cxf-rt-rs-service-description\n  dependency-version: 4.2.2\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.cxf:cxf-rt-rs-extension-providers\n  dependency-version: 4.2.2\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.cxf:cxf-rt-rs-mp-client\n  dependency-version: 4.2.2\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": "26e0bd1046f1c2dc1407185fc1ceb04201cf6486",
      "tree": "63ddc6c9cc075df4dada3fcf04dfce54e0f9f0b1",
      "parents": [
        "907044540134264b6ecdb42b7fa9919451d1faeb"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jun 25 08:49:16 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jun 25 08:49:16 2026 +0200"
      },
      "message": "TOMEE-4624 - Bump tomcat.version from 11.0.22 to 11.0.23 (#2769)\n\nBumps `tomcat.version` from 11.0.22 to 11.0.23.\n\nUpdates `org.apache.tomcat:tomcat-catalina` from 11.0.22 to 11.0.23\n\nUpdates `org.apache.tomcat:tomcat-juli` from 11.0.22 to 11.0.23\n\nUpdates `org.apache.tomcat:tomcat-jasper` from 11.0.22 to 11.0.23\n\nUpdates `org.apache.tomcat:tomcat-jasper-el` from 11.0.22 to 11.0.23\n\nUpdates `org.apache.tomcat:tomcat` from 11.0.22 to 11.0.23\n\nUpdates `org.apache.tomcat:tomcat-coyote` from 11.0.22 to 11.0.23\n\nUpdates `org.apache.tomcat:tomcat-websocket` from 11.0.22 to 11.0.23\n\nUpdates `org.apache.tomcat:tomcat-jdbc` from 11.0.22 to 11.0.23\n\nUpdates `org.apache.tomcat:tomcat-dbcp` from 11.0.22 to 11.0.23\n\nUpdates `org.apache.tomcat:tomcat-catalina-ha` from 11.0.22 to 11.0.23\n\nUpdates `org.apache.tomcat:tomcat-servlet-api` from 11.0.22 to 11.0.23\n\nUpdates `org.apache.tomcat:tomcat-websocket-api` from 11.0.22 to 11.0.23\n\nUpdates `org.apache.tomcat:tomcat-websocket-client-api` from 11.0.22 to 11.0.23\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.tomcat:tomcat-catalina\n  dependency-version: 11.0.23\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.tomcat:tomcat-juli\n  dependency-version: 11.0.23\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.tomcat:tomcat-jasper\n  dependency-version: 11.0.23\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.tomcat:tomcat-jasper-el\n  dependency-version: 11.0.23\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.tomcat:tomcat\n  dependency-version: 11.0.23\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.tomcat:tomcat-coyote\n  dependency-version: 11.0.23\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.tomcat:tomcat-websocket\n  dependency-version: 11.0.23\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.tomcat:tomcat-jdbc\n  dependency-version: 11.0.23\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.tomcat:tomcat-dbcp\n  dependency-version: 11.0.23\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.tomcat:tomcat-catalina-ha\n  dependency-version: 11.0.23\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.tomcat:tomcat-servlet-api\n  dependency-version: 11.0.23\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.tomcat:tomcat-websocket-api\n  dependency-version: 11.0.23\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.tomcat:tomcat-websocket-client-api\n  dependency-version: 11.0.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": "907044540134264b6ecdb42b7fa9919451d1faeb",
      "tree": "a799557e7d7919e8c6ea88cf0b94a6df33725327",
      "parents": [
        "638759ea6309b53559f564518d637ba39af6eab3"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jun 25 06:09:22 2026 +0000"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Thu Jun 25 08:12:55 2026 +0200"
      },
      "message": "Bump org.hibernate.validator:hibernate-validator\n\nBumps [org.hibernate.validator:hibernate-validator](https://github.com/hibernate/hibernate-validator) from 9.1.0.Final to 9.1.1.Final.\n- [Release notes](https://github.com/hibernate/hibernate-validator/releases)\n- [Changelog](https://github.com/hibernate/hibernate-validator/blob/9.1.1.Final/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-validator/compare/9.1.0.Final...9.1.1.Final)\n\n---\nupdated-dependencies:\n- dependency-name: org.hibernate.validator:hibernate-validator\n  dependency-version: 9.1.1.Final\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "638759ea6309b53559f564518d637ba39af6eab3",
      "tree": "d0c9956e95f573d4c78b43a56900de2b5f50e87e",
      "parents": [
        "238066996be4b2a54056a1e0d1e231b6c8998d71"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jun 25 06:10:33 2026 +0000"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Thu Jun 25 08:11:45 2026 +0200"
      },
      "message": "Bump org.jacoco:jacoco-maven-plugin from 0.8.14 to 0.8.15\n\nBumps [org.jacoco:jacoco-maven-plugin](https://github.com/jacoco/jacoco) from 0.8.14 to 0.8.15.\n- [Release notes](https://github.com/jacoco/jacoco/releases)\n- [Commits](https://github.com/jacoco/jacoco/compare/v0.8.14...v0.8.15)\n\n---\nupdated-dependencies:\n- dependency-name: org.jacoco:jacoco-maven-plugin\n  dependency-version: 0.8.15\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "238066996be4b2a54056a1e0d1e231b6c8998d71",
      "tree": "3c367910187036a9fea54b017f4a4633ea486141",
      "parents": [
        "51e0d036d213ffd5b07e6da9c6573571b47aea07"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jun 25 06:05:42 2026 +0000"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Thu Jun 25 08:07:29 2026 +0200"
      },
      "message": "Bump org.codehaus.plexus:plexus-archiver from 4.11.0 to 4.12.0\n\nBumps [org.codehaus.plexus:plexus-archiver](https://github.com/codehaus-plexus/plexus-archiver) from 4.11.0 to 4.12.0.\n- [Release notes](https://github.com/codehaus-plexus/plexus-archiver/releases)\n- [Changelog](https://github.com/codehaus-plexus/plexus-archiver/blob/master/ReleaseNotes.md)\n- [Commits](https://github.com/codehaus-plexus/plexus-archiver/compare/plexus-archiver-4.11.0...plexus-archiver-4.12.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.plexus:plexus-archiver\n  dependency-version: 4.12.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "51e0d036d213ffd5b07e6da9c6573571b47aea07",
      "tree": "6471de5e8360b23e0104a44f58fd196c79175f3c",
      "parents": [
        "e33720d84613807d466cc9eaead23aae23d2d45c"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jun 25 06:06:22 2026 +0000"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Thu Jun 25 08:07:19 2026 +0200"
      },
      "message": "Bump org.codehaus.jettison:jettison from 1.5.5 to 1.5.6\n\nBumps [org.codehaus.jettison:jettison](https://github.com/jettison-json/jettison) from 1.5.5 to 1.5.6.\n- [Release notes](https://github.com/jettison-json/jettison/releases)\n- [Commits](https://github.com/jettison-json/jettison/compare/jettison-1.5.5...jettison-1.5.6)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.jettison:jettison\n  dependency-version: 1.5.6\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "e33720d84613807d466cc9eaead23aae23d2d45c",
      "tree": "638ccfb8eebc58c3242ce2ae1db80eee209dec07",
      "parents": [
        "cb8b4214c37ffead8a0ca95f4deda68db2bd6765"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jun 25 05:59:53 2026 +0000"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Thu Jun 25 08:04:32 2026 +0200"
      },
      "message": "Bump org.apache.httpcomponents.core5:httpcore5 from 5.4.2 to 5.4.3\n\nBumps [org.apache.httpcomponents.core5:httpcore5](https://github.com/apache/httpcomponents-core) from 5.4.2 to 5.4.3.\n- [Changelog](https://github.com/apache/httpcomponents-core/blob/rel/v5.4.3/RELEASE_NOTES.txt)\n- [Commits](https://github.com/apache/httpcomponents-core/compare/rel/v5.4.2...rel/v5.4.3)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.httpcomponents.core5:httpcore5\n  dependency-version: 5.4.3\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "cb8b4214c37ffead8a0ca95f4deda68db2bd6765",
      "tree": "8e7c21905f67b18fb4aeea8634a1fa992dc6b5b3",
      "parents": [
        "dd3dfe2d51795a5c8aba8daef78fd5ce5628c9bf"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jun 25 06:03:26 2026 +0000"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Thu Jun 25 08:04:22 2026 +0200"
      },
      "message": "Bump version.spring-boot from 4.0.6 to 4.1.0\n\nBumps `version.spring-boot` from 4.0.6 to 4.1.0.\n\nUpdates `org.springframework.boot:spring-boot-starter-web` from 4.0.6 to 4.1.0\n- [Release notes](https://github.com/spring-projects/spring-boot/releases)\n- [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.6...v4.1.0)\n\nUpdates `org.springframework.boot:spring-boot-starter-tomcat` from 4.0.6 to 4.1.0\n- [Release notes](https://github.com/spring-projects/spring-boot/releases)\n- [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.6...v4.1.0)\n\nUpdates `org.springframework.boot:spring-boot-starter-test` from 4.0.6 to 4.1.0\n- [Release notes](https://github.com/spring-projects/spring-boot/releases)\n- [Commits](https://github.com/spring-projects/spring-boot/compare/v4.0.6...v4.1.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.springframework.boot:spring-boot-starter-web\n  dependency-version: 4.1.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: org.springframework.boot:spring-boot-starter-tomcat\n  dependency-version: 4.1.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: org.springframework.boot:spring-boot-starter-test\n  dependency-version: 4.1.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": "dd3dfe2d51795a5c8aba8daef78fd5ce5628c9bf",
      "tree": "b60726b90b2716cd9e132acec0f02992b342c2a2",
      "parents": [
        "276d57ba956d76d2a7a68d6f48c4f971d394fca9"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 23 23:03:31 2026 +0000"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Thu Jun 25 08:04:04 2026 +0200"
      },
      "message": "Bump actions/cache from 5.0.5 to 6.0.0\n\nBumps [actions/cache](https://github.com/actions/cache) from 5.0.5 to 6.0.0.\n- [Release notes](https://github.com/actions/cache/releases)\n- [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md)\n- [Commits](https://github.com/actions/cache/compare/27d5ce7f107fe9357f9df03efb73ab90386fccae...2c8a9bd7457de244a408f35966fab2fb45fda9c8)\n\n---\nupdated-dependencies:\n- dependency-name: actions/cache\n  dependency-version: 6.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"
    },
    {
      "commit": "276d57ba956d76d2a7a68d6f48c4f971d394fca9",
      "tree": "ea9a5c2eb0160885c5c65198901879b72394445e",
      "parents": [
        "16a8cf32b5ab72229b4f45a38238edc6ce55fccc"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jun 25 05:55:55 2026 +0000"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Thu Jun 25 08:03:37 2026 +0200"
      },
      "message": "Bump version.hibernate.orm from 7.4.0.Final to 7.4.2.Final\n\nBumps `version.hibernate.orm` from 7.4.0.Final to 7.4.2.Final.\n\nUpdates `org.hibernate.orm:hibernate-core` from 7.4.0.Final to 7.4.2.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/7.4.2/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/7.4.0...7.4.2)\n\nUpdates `org.hibernate.orm:hibernate-processor` from 7.4.0.Final to 7.4.2.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/7.4.2/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/7.4.0...7.4.2)\n\nUpdates `org.hibernate.orm:hibernate-jcache` from 7.4.0.Final to 7.4.2.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/7.4.2/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/7.4.0...7.4.2)\n\n---\nupdated-dependencies:\n- dependency-name: org.hibernate.orm:hibernate-core\n  dependency-version: 7.4.2.Final\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate.orm:hibernate-processor\n  dependency-version: 7.4.2.Final\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n- dependency-name: org.hibernate.orm:hibernate-jcache\n  dependency-version: 7.4.2.Final\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "16a8cf32b5ab72229b4f45a38238edc6ce55fccc",
      "tree": "324409b6d81546ba159d743e509c6cbf6bc26d3a",
      "parents": [
        "cdb44659affb2f06d9c98d95c6e762607863b786"
      ],
      "author": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Tue Jun 23 10:09:02 2026 +0200"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Tue Jun 23 10:09:02 2026 +0200"
      },
      "message": "TOMEE-4620 - fix access_token typo\n"
    },
    {
      "commit": "cdb44659affb2f06d9c98d95c6e762607863b786",
      "tree": "7ea017c0306f93b97f11ff0209fd36de7f1ba5f3",
      "parents": [
        "8ce08fb39cd3a3cd434d8ea693590c12b9c5d768"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jun 18 23:03:53 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Sun Jun 21 12:53:16 2026 +0200"
      },
      "message": "Bump actions/checkout from 6.0.3 to 7.0.0\n\nBumps [actions/checkout](https://github.com/actions/checkout) from 6.0.3 to 7.0.0.\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/df4cb1c069e1874edd31b4311f1884172cec0e10...9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0)\n\n---\nupdated-dependencies:\n- dependency-name: actions/checkout\n  dependency-version: 7.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"
    },
    {
      "commit": "8ce08fb39cd3a3cd434d8ea693590c12b9c5d768",
      "tree": "53c257dc98e83bf44a98fb214c5cf2456b8a16d5",
      "parents": [
        "3406104bedc152d1fba751a6f1fe7ed8784c4ef0"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 16 23:04:10 2026 +0000"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Thu Jun 18 09:37:04 2026 +0200"
      },
      "message": "Bump actions/setup-java from 5.2.0 to 5.3.0\n\nBumps [actions/setup-java](https://github.com/actions/setup-java) from 5.2.0 to 5.3.0.\n- [Release notes](https://github.com/actions/setup-java/releases)\n- [Commits](https://github.com/actions/setup-java/compare/be666c2fcd27ec809703dec50e508c2fdc7f6654...ad2b38190b15e4d6bdf0c97fb4fca8412226d287)\n\n---\nupdated-dependencies:\n- dependency-name: actions/setup-java\n  dependency-version: 5.3.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "3406104bedc152d1fba751a6f1fe7ed8784c4ef0",
      "tree": "cb5b354a052387904dda080d6524c8eed1390785",
      "parents": [
        "777b6159b02ace507c340cfd8317396ff3652398"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Thu Jun 11 11:12:41 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Tue Jun 16 11:32:56 2026 +0200"
      },
      "message": "[maven-release-plugin] prepare for next development iteration\n"
    },
    {
      "commit": "777b6159b02ace507c340cfd8317396ff3652398",
      "tree": "eba1b59f35545713549c3d6ba54002751ea5975e",
      "parents": [
        "43fbc356fd85b4ebcbfaffec30de1c83a059bac4"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Thu Jun 11 11:12:41 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Tue Jun 16 11:32:56 2026 +0200"
      },
      "message": "[maven-release-plugin] prepare release tomee-project-11.0.0-M1\n"
    },
    {
      "commit": "43fbc356fd85b4ebcbfaffec30de1c83a059bac4",
      "tree": "e98b1d133f80ceeb69b05afc2e576c56a791973a",
      "parents": [
        "912e1cfc28d1f9a743c32d320c07aaa4b849deec"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Thu Jun 11 11:08:01 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Tue Jun 16 11:32:56 2026 +0200"
      },
      "message": "Another example pointing to a wrong EE API artifact\n"
    },
    {
      "commit": "912e1cfc28d1f9a743c32d320c07aaa4b849deec",
      "tree": "15b94c420a9f51be650bc457598ed1ce7aa7cbf2",
      "parents": [
        "f0847b3360b77b6885d5c1344ebd029d61259ffb"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Thu Jun 11 11:07:22 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Tue Jun 16 11:32:56 2026 +0200"
      },
      "message": "Another example pointing to a wrong EE API artifact\n"
    },
    {
      "commit": "f0847b3360b77b6885d5c1344ebd029d61259ffb",
      "tree": "96d1075a0531cc30c5d922a8e772ae7bf669d315",
      "parents": [
        "9f57d36cdfaab8b462d2bbab43b033433db998a4"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Thu Jun 11 11:02:12 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Tue Jun 16 11:32:56 2026 +0200"
      },
      "message": "Bump hardcoded jakartaee-api to 11.0.0-M1 in examples\n\nThe earlier examples bump only updated poms referencing the version via\na property; 127 example pom blocks hardcode the jakartaee-api version\ninline and were still at 11.0.0-SNAPSHOT, breaking release:prepare.\n"
    },
    {
      "commit": "9f57d36cdfaab8b462d2bbab43b033433db998a4",
      "tree": "3bd547ff3d5ee0c18f106556601e49f71613f7cd",
      "parents": [
        "45a5a0ff2689803bf60fa1c2abe639df065d8d5f"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Thu Jun 11 10:57:39 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Tue Jun 16 11:32:56 2026 +0200"
      },
      "message": "Bump jakartaee-api to 11.0.0-M1 in examples\n"
    },
    {
      "commit": "45a5a0ff2689803bf60fa1c2abe639df065d8d5f",
      "tree": "a3447275b276e4f305d58a990fd0f0a0eda5382f",
      "parents": [
        "f95ffd012828e04aa9de8064a8d6f3251209841e"
      ],
      "author": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Thu Jun 11 12:43:03 2026 +0200"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Thu Jun 11 12:43:20 2026 +0200"
      },
      "message": "copyright 2026\n"
    },
    {
      "commit": "f95ffd012828e04aa9de8064a8d6f3251209841e",
      "tree": "71d7c5fc004a7775f8a5588e29d0915ca4aaaee4",
      "parents": [
        "983489538e05301a2839cfc4b8368c2393ffd21f"
      ],
      "author": {
        "name": "jungm",
        "email": "jungm@users.noreply.github.com",
        "time": "Mon Jun 08 11:54:20 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Mon Jun 08 13:57:14 2026 +0200"
      },
      "message": "Minor: Regenerated BOMs for 983489538e05301a2839cfc4b8368c2393ffd21f\n\nSigned-off-by: GitHub \u003cnoreply@github.com\u003e\n"
    },
    {
      "commit": "983489538e05301a2839cfc4b8368c2393ffd21f",
      "tree": "271d96587d20f0ef3e62d63ad1702812fe4be521",
      "parents": [
        "fb75619d625a77e859b097fccc7faee8629bb66c"
      ],
      "author": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Mon Jun 08 13:07:58 2026 +0200"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Mon Jun 08 13:07:58 2026 +0200"
      },
      "message": "jakartaee-api 11.0.0-M1 released\n"
    },
    {
      "commit": "fb75619d625a77e859b097fccc7faee8629bb66c",
      "tree": "0d9b5c147446fc766d19698aacf446522f5e829d",
      "parents": [
        "2f7000616c929ed73a55354aa478ad3a513091a9"
      ],
      "author": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Fri Jun 05 20:54:53 2026 +0200"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Fri Jun 05 20:54:53 2026 +0200"
      },
      "message": "fix BasicSlf4jWebappTest after dependency updates\n"
    },
    {
      "commit": "2f7000616c929ed73a55354aa478ad3a513091a9",
      "tree": "5ec2418e4859e2b5e7dfadf34ae5a48ba2746ae9",
      "parents": [
        "58d247d292c86c9af4174c00381cdb953117745e"
      ],
      "author": {
        "name": "github-actions[bot]",
        "email": "41898282+github-actions[bot]@users.noreply.github.com",
        "time": "Fri Jun 05 13:08:07 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Jun 05 13:08:07 2026 +0200"
      },
      "message": "Minor: Regenerated BOMs for 9d27b18e152e335fdc2d486fd67574aa925cddad (#2710)\n\nSigned-off-by: GitHub \u003cnoreply@github.com\u003e\nCo-authored-by: jungm \u003cjungm@users.noreply.github.com\u003e"
    },
    {
      "commit": "58d247d292c86c9af4174c00381cdb953117745e",
      "tree": "41849f8f60447c79b1087f8f1c860efdb2b52c10",
      "parents": [
        "f475de258fa3c498d6ca01669bb598b9d5d9cd1c"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Jun 05 07:44:30 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Fri Jun 05 10:01:12 2026 +0200"
      },
      "message": "Bump org.codehaus.gmavenplus:gmavenplus-plugin from 4.3.1 to 5.0.0\n\nBumps [org.codehaus.gmavenplus:gmavenplus-plugin](https://github.com/groovy/GMavenPlus) from 4.3.1 to 5.0.0.\n- [Release notes](https://github.com/groovy/GMavenPlus/releases)\n- [Commits](https://github.com/groovy/GMavenPlus/compare/4.3.1...5.0.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.gmavenplus:gmavenplus-plugin\n  dependency-version: 5.0.0\n  dependency-type: direct:development\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "f475de258fa3c498d6ca01669bb598b9d5d9cd1c",
      "tree": "3763c3e14e69973098d3fd254ac109922f32c7b0",
      "parents": [
        "59b457d0fd80f74e2f0ee531bf7bf257149f8012"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Jun 05 07:44:35 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Fri Jun 05 10:00:21 2026 +0200"
      },
      "message": "Bump org.projectlombok:lombok from 1.18.42 to 1.18.46\n\nBumps [org.projectlombok:lombok](https://github.com/projectlombok/lombok) from 1.18.42 to 1.18.46.\n- [Changelog](https://github.com/projectlombok/lombok/blob/master/doc/changelog.markdown)\n- [Commits](https://github.com/projectlombok/lombok/compare/v1.18.42...v1.18.46)\n\n---\nupdated-dependencies:\n- dependency-name: org.projectlombok:lombok\n  dependency-version: 1.18.46\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "59b457d0fd80f74e2f0ee531bf7bf257149f8012",
      "tree": "5accd044708550a2a0a1f234da8ed5fd67a9910f",
      "parents": [
        "9d27b18e152e335fdc2d486fd67574aa925cddad"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Jun 05 07:45:44 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Fri Jun 05 10:00:01 2026 +0200"
      },
      "message": "Bump surefire.version from 3.5.5 to 3.5.6\n\nBumps `surefire.version` from 3.5.5 to 3.5.6.\n\nUpdates `org.apache.maven.plugins:maven-surefire-plugin` from 3.5.5 to 3.5.6\n- [Release notes](https://github.com/apache/maven-surefire/releases)\n- [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.5.5...surefire-3.5.6)\n\nUpdates `org.apache.maven.plugins:maven-surefire-report-plugin` from 3.5.5 to 3.5.6\n- [Release notes](https://github.com/apache/maven-surefire/releases)\n- [Commits](https://github.com/apache/maven-surefire/compare/surefire-3.5.5...surefire-3.5.6)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugins:maven-surefire-plugin\n  dependency-version: 3.5.6\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.maven.plugins:maven-surefire-report-plugin\n  dependency-version: 3.5.6\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "9d27b18e152e335fdc2d486fd67574aa925cddad",
      "tree": "c34dfa6f3ef750e697bfafa1f75ef30afdbaf996",
      "parents": [
        "cce5ef222e84c6eb89b2b20effe1d06ba6cba70d"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Jun 05 07:46:18 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Fri Jun 05 09:59:47 2026 +0200"
      },
      "message": "Bump net.bytebuddy:byte-buddy from 1.18.9 to 1.18.10\n\nBumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.18.9 to 1.18.10.\n- [Release notes](https://github.com/raphw/byte-buddy/releases)\n- [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md)\n- [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.18.9...byte-buddy-1.18.10)\n\n---\nupdated-dependencies:\n- dependency-name: net.bytebuddy:byte-buddy\n  dependency-version: 1.18.10\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "cce5ef222e84c6eb89b2b20effe1d06ba6cba70d",
      "tree": "3734047735c1e021de9beadfa8d84e5e916d389b",
      "parents": [
        "4444369bfcbd82782bf3eb59be92ae7ea1f86f07"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Jun 05 07:47:34 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Fri Jun 05 09:58:43 2026 +0200"
      },
      "message": "Bump org.apache.maven.plugins:maven-dependency-plugin\n\nBumps [org.apache.maven.plugins:maven-dependency-plugin](https://github.com/apache/maven-dependency-plugin) from 3.10.0 to 3.11.0.\n- [Release notes](https://github.com/apache/maven-dependency-plugin/releases)\n- [Commits](https://github.com/apache/maven-dependency-plugin/compare/maven-dependency-plugin-3.10.0...maven-dependency-plugin-3.11.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugins:maven-dependency-plugin\n  dependency-version: 3.11.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "4444369bfcbd82782bf3eb59be92ae7ea1f86f07",
      "tree": "9484bd96ef046526e0569fe417f79ed064b1e12c",
      "parents": [
        "191773a55c269275bfd708382397e1850ddd3743"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Jun 05 07:48:35 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Fri Jun 05 09:58:13 2026 +0200"
      },
      "message": "Bump org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-bom\n\nBumps [org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-bom](https://github.com/shrinkwrap/resolver) from 3.3.5 to 3.3.7.\n- [Release notes](https://github.com/shrinkwrap/resolver/releases)\n- [Commits](https://github.com/shrinkwrap/resolver/compare/3.3.5...3.3.7)\n\n---\nupdated-dependencies:\n- dependency-name: org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-bom\n  dependency-version: 3.3.7\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "191773a55c269275bfd708382397e1850ddd3743",
      "tree": "79703fb4e51a6a192dba16daaed38f038dd2324f",
      "parents": [
        "0ad8c5b8738842bb1589c476482789f5c1c5a228"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Jun 05 07:49:15 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Fri Jun 05 09:57:53 2026 +0200"
      },
      "message": "Bump org.slf4j:slf4j-simple from 2.0.17 to 2.0.18\n\nBumps org.slf4j:slf4j-simple from 2.0.17 to 2.0.18.\n\n---\nupdated-dependencies:\n- dependency-name: org.slf4j:slf4j-simple\n  dependency-version: 2.0.18\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "0ad8c5b8738842bb1589c476482789f5c1c5a228",
      "tree": "a8ac813cdc12e31be80744155feb110d0a2229b0",
      "parents": [
        "cd11ca4c915828ea88818ad765bbf8eca4d956ea"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Jun 05 07:53:24 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Fri Jun 05 09:57:24 2026 +0200"
      },
      "message": "Bump com.nimbusds:nimbus-jose-jwt from 10.9 to 10.9.1\n\nBumps [com.nimbusds:nimbus-jose-jwt](https://bitbucket.org/connect2id/nimbus-jose-jwt) from 10.9 to 10.9.1.\n- [Changelog](https://bitbucket.org/connect2id/nimbus-jose-jwt/src/master/CHANGELOG.txt)\n- [Commits](https://bitbucket.org/connect2id/nimbus-jose-jwt/branches/compare/10.9.1..10.9)\n\n---\nupdated-dependencies:\n- dependency-name: com.nimbusds:nimbus-jose-jwt\n  dependency-version: 10.9.1\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "cd11ca4c915828ea88818ad765bbf8eca4d956ea",
      "tree": "97158306e627ee5e3a262056b36d2b787720add0",
      "parents": [
        "9ac974aa75b7bc2d353c9922d0b3b2032296e0bb"
      ],
      "author": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Fri Jun 05 09:46:31 2026 +0200"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Fri Jun 05 09:46:31 2026 +0200"
      },
      "message": "reduce dependabot noise for asm updates\n"
    },
    {
      "commit": "9ac974aa75b7bc2d353c9922d0b3b2032296e0bb",
      "tree": "49cc39e834b93b1123fa073a274ee9b381e6ad1f",
      "parents": [
        "7bc544a9c65b3e28889f0ce2efda841504830914"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 02 14:26:16 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Fri Jun 05 09:41:33 2026 +0200"
      },
      "message": "Bump org.ow2.asm:asm-util from 9.9.1 to 9.10.1\n\nBumps org.ow2.asm:asm-util from 9.9.1 to 9.10.1.\n\n---\nupdated-dependencies:\n- dependency-name: org.ow2.asm:asm-util\n  dependency-version: 9.10.1\n  dependency-type: direct:development\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "7bc544a9c65b3e28889f0ce2efda841504830914",
      "tree": "65fba1d93bdaea5f37d9d1fa67b602d6e332f9de",
      "parents": [
        "7fc3fa58ed27b21e7c988b61acc86fe5a3e41fd5"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 02 14:26:51 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Fri Jun 05 09:40:44 2026 +0200"
      },
      "message": "Bump joda-time:joda-time from 2.14.0 to 2.14.2\n\nBumps [joda-time:joda-time](https://github.com/JodaOrg/joda-time) from 2.14.0 to 2.14.2.\n- [Release notes](https://github.com/JodaOrg/joda-time/releases)\n- [Changelog](https://github.com/JodaOrg/joda-time/blob/main/RELEASE-NOTES.txt)\n- [Commits](https://github.com/JodaOrg/joda-time/compare/v2.14.0...v2.14.2)\n\n---\nupdated-dependencies:\n- dependency-name: joda-time:joda-time\n  dependency-version: 2.14.2\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "7fc3fa58ed27b21e7c988b61acc86fe5a3e41fd5",
      "tree": "a95bfc76b09c00b3861703b677b0f1c903151115",
      "parents": [
        "b2bc764be3a6d6c1596f7d380c6a67e5558d79d9"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 02 14:27:47 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Fri Jun 05 09:40:16 2026 +0200"
      },
      "message": "Bump org.apache.sshd:sshd-core from 2.17.1 to 2.18.0\n\nBumps [org.apache.sshd:sshd-core](https://github.com/apache/mina-sshd) from 2.17.1 to 2.18.0.\n- [Release notes](https://github.com/apache/mina-sshd/releases)\n- [Changelog](https://github.com/apache/mina-sshd/blob/master/CHANGES.md)\n- [Commits](https://github.com/apache/mina-sshd/compare/sshd-2.17.1...sshd-2.18.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.sshd:sshd-core\n  dependency-version: 2.18.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "b2bc764be3a6d6c1596f7d380c6a67e5558d79d9",
      "tree": "c056c3828560622f851e44556f92ef572fe93425",
      "parents": [
        "3b737ccf6e7e14b0a72c45a9b12d0b63a99bbb01"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 02 14:28:02 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Fri Jun 05 09:40:07 2026 +0200"
      },
      "message": "Bump org.codehaus.jettison:jettison from 1.3.4 to 1.5.5\n\nBumps [org.codehaus.jettison:jettison](https://github.com/jettison-json/jettison) from 1.3.4 to 1.5.5.\n- [Release notes](https://github.com/jettison-json/jettison/releases)\n- [Commits](https://github.com/jettison-json/jettison/compare/jettison-1.3.4...jettison-1.5.5)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.jettison:jettison\n  dependency-version: 1.5.5\n  dependency-type: direct:development\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "3b737ccf6e7e14b0a72c45a9b12d0b63a99bbb01",
      "tree": "3c994f756e3bf2509cbe6d831ea96f48b338c8f4",
      "parents": [
        "d42abb3e0d916226d2930108f97fe7319dd4db6e"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 02 14:28:53 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Fri Jun 05 09:39:22 2026 +0200"
      },
      "message": "Bump org.codehaus.mojo:exec-maven-plugin from 3.5.0 to 3.6.3\n\nBumps [org.codehaus.mojo:exec-maven-plugin](https://github.com/mojohaus/exec-maven-plugin) from 3.5.0 to 3.6.3.\n- [Release notes](https://github.com/mojohaus/exec-maven-plugin/releases)\n- [Commits](https://github.com/mojohaus/exec-maven-plugin/compare/3.5.0...3.6.3)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.mojo:exec-maven-plugin\n  dependency-version: 3.6.3\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "d42abb3e0d916226d2930108f97fe7319dd4db6e",
      "tree": "f7199b62c497b4e1e9d77fa28d96e4e2db782f55",
      "parents": [
        "e5f88b9826df40befa1ad2662df9f3dfaacea9a7"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 02 14:29:06 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Fri Jun 05 09:37:51 2026 +0200"
      },
      "message": "Bump org.jboss.logging:jboss-logging from 3.6.2.Final to 3.6.3.Final\n\nBumps [org.jboss.logging:jboss-logging](https://github.com/jboss-logging/jboss-logging) from 3.6.2.Final to 3.6.3.Final.\n- [Release notes](https://github.com/jboss-logging/jboss-logging/releases)\n- [Commits](https://github.com/jboss-logging/jboss-logging/compare/v3.6.2.Final...v3.6.3.Final)\n\n---\nupdated-dependencies:\n- dependency-name: org.jboss.logging:jboss-logging\n  dependency-version: 3.6.3.Final\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "e5f88b9826df40befa1ad2662df9f3dfaacea9a7",
      "tree": "cf9724d6f1424915b0a318f7979b2b277b56bc71",
      "parents": [
        "a40aeebcde5ac4d328663de22d9201d572fab251"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 02 14:29:21 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Fri Jun 05 09:36:44 2026 +0200"
      },
      "message": "Bump org.ow2.asm:asm from 9.9.1 to 9.10.1\n\nBumps org.ow2.asm:asm from 9.9.1 to 9.10.1.\n\n---\nupdated-dependencies:\n- dependency-name: org.ow2.asm:asm\n  dependency-version: 9.10.1\n  dependency-type: direct:development\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "a40aeebcde5ac4d328663de22d9201d572fab251",
      "tree": "36764bbbc0c99b13fb51bbe2badfb05b826dc7b5",
      "parents": [
        "a7999b17e4a4bb03c9379d0e10737f6a2b3f3a9a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 02 14:29:46 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Fri Jun 05 09:35:58 2026 +0200"
      },
      "message": "Bump commons-io:commons-io from 2.21.0 to 2.22.0\n\nBumps commons-io:commons-io from 2.21.0 to 2.22.0.\n\n---\nupdated-dependencies:\n- dependency-name: commons-io:commons-io\n  dependency-version: 2.22.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "a7999b17e4a4bb03c9379d0e10737f6a2b3f3a9a",
      "tree": "f481f474db18dae529fa2695510f4d3ec95ab1b0",
      "parents": [
        "758d6cdc8e0e6912033463cdfc5dc123fc6b1b13"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jun 03 17:39:15 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Fri Jun 05 09:33:49 2026 +0200"
      },
      "message": "Bump actions/checkout from 6.0.2 to 6.0.3\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"
    },
    {
      "commit": "758d6cdc8e0e6912033463cdfc5dc123fc6b1b13",
      "tree": "5a64f2e357cf3ab39828ae40d95f95b7468f4fa3",
      "parents": [
        "fc211398e0ebcb75ea801d2a8050a982a13b311c"
      ],
      "author": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Wed Jun 03 10:40:45 2026 +0200"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Wed Jun 03 10:40:45 2026 +0200"
      },
      "message": "update SECURITY.md with feedback from ASF Security team\n"
    },
    {
      "commit": "fc211398e0ebcb75ea801d2a8050a982a13b311c",
      "tree": "1022855b5a1df97acace79d9a5a8f5a8943fa911",
      "parents": [
        "ced85289b447cad9ade4f3cf3b7ea2efb84c38d0"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 02 13:11:35 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Tue Jun 02 16:16:31 2026 +0200"
      },
      "message": "Bump com.sun.xml.messaging.saaj:saaj-impl from 3.0.4 to 3.0.5\n\nBumps com.sun.xml.messaging.saaj:saaj-impl from 3.0.4 to 3.0.5.\n\n---\nupdated-dependencies:\n- dependency-name: com.sun.xml.messaging.saaj:saaj-impl\n  dependency-version: 3.0.5\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "ced85289b447cad9ade4f3cf3b7ea2efb84c38d0",
      "tree": "8c231e9c1898d61ef0c9beb6e356ecbd9599fa9f",
      "parents": [
        "2ed43a48cb88286df567ab6d6b34bc34ef426f80"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 02 13:15:13 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Tue Jun 02 15:51:12 2026 +0200"
      },
      "message": "Bump org.apache:apache from 37 to 38\n\nBumps [org.apache:apache](https://github.com/apache/maven-apache-parent) from 37 to 38.\n- [Release notes](https://github.com/apache/maven-apache-parent/releases)\n- [Commits](https://github.com/apache/maven-apache-parent/commits)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache:apache\n  dependency-version: \u002738\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": "2ed43a48cb88286df567ab6d6b34bc34ef426f80",
      "tree": "b87b010a42661e0465082f70c914cf4622fc8a80",
      "parents": [
        "c38de8b21a0930101037813ad48ac16e73aeb244"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 02 13:15:08 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Tue Jun 02 15:50:48 2026 +0200"
      },
      "message": "Bump version.activemq from 6.2.5 to 6.2.6\n\nBumps `version.activemq` from 6.2.5 to 6.2.6.\n\nUpdates `org.apache.activemq:activemq-jdbc-store` from 6.2.5 to 6.2.6\n- [Release notes](https://github.com/apache/activemq/releases)\n- [Commits](https://github.com/apache/activemq/compare/activemq-6.2.5...activemq-6.2.6)\n\nUpdates `org.apache.activemq:activemq-ra` from 6.2.5 to 6.2.6\n- [Release notes](https://github.com/apache/activemq/releases)\n- [Commits](https://github.com/apache/activemq/compare/activemq-6.2.5...activemq-6.2.6)\n\nUpdates `org.apache.activemq:activemq-client` from 6.2.5 to 6.2.6\n- [Release notes](https://github.com/apache/activemq/releases)\n- [Commits](https://github.com/apache/activemq/compare/activemq-6.2.5...activemq-6.2.6)\n\nUpdates `org.apache.activemq:activemq-broker` from 6.2.5 to 6.2.6\n- [Release notes](https://github.com/apache/activemq/releases)\n- [Commits](https://github.com/apache/activemq/compare/activemq-6.2.5...activemq-6.2.6)\n\nUpdates `org.apache.activemq:activemq-openwire-legacy` from 6.2.5 to 6.2.6\n- [Release notes](https://github.com/apache/activemq/releases)\n- [Commits](https://github.com/apache/activemq/compare/activemq-6.2.5...activemq-6.2.6)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.activemq:activemq-jdbc-store\n  dependency-version: 6.2.6\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.activemq:activemq-ra\n  dependency-version: 6.2.6\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.activemq:activemq-client\n  dependency-version: 6.2.6\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.activemq:activemq-broker\n  dependency-version: 6.2.6\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.activemq:activemq-openwire-legacy\n  dependency-version: 6.2.6\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "c38de8b21a0930101037813ad48ac16e73aeb244",
      "tree": "3ee8c23a77ee587f00cd7f4b8a065f043a0e0530",
      "parents": [
        "cadc55d58cf384217551b3de90f40f4cf20bf614"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 02 13:14:09 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Tue Jun 02 15:50:33 2026 +0200"
      },
      "message": "Bump com.google.code.gson:gson from 2.2.4 to 2.14.0\n\nBumps [com.google.code.gson:gson](https://github.com/google/gson) from 2.2.4 to 2.14.0.\n- [Release notes](https://github.com/google/gson/releases)\n- [Changelog](https://github.com/google/gson/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/google/gson/compare/gson-2.2.4...gson-parent-2.14.0)\n\n---\nupdated-dependencies:\n- dependency-name: com.google.code.gson:gson\n  dependency-version: 2.14.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "cadc55d58cf384217551b3de90f40f4cf20bf614",
      "tree": "ddf14a25c3b6399e5090086ea15f1632819dd51f",
      "parents": [
        "62f516ecf98ef5f595102717ee14b48853334c07"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 02 13:13:53 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Tue Jun 02 15:48:18 2026 +0200"
      },
      "message": "Bump net.bytebuddy:byte-buddy from 1.18.8 to 1.18.9\n\nBumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.18.8 to 1.18.9.\n- [Release notes](https://github.com/raphw/byte-buddy/releases)\n- [Changelog](https://github.com/raphw/byte-buddy/blob/master/release-notes.md)\n- [Commits](https://github.com/raphw/byte-buddy/compare/byte-buddy-1.18.8...byte-buddy-1.18.9)\n\n---\nupdated-dependencies:\n- dependency-name: net.bytebuddy:byte-buddy\n  dependency-version: 1.18.9\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "62f516ecf98ef5f595102717ee14b48853334c07",
      "tree": "dda14367b315f358bd85da4c1d7daa91dd5273b8",
      "parents": [
        "9bb65a8bbf41581fc8a65e9a156df6318e9b83c4"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 02 13:13:26 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Tue Jun 02 15:45:51 2026 +0200"
      },
      "message": "Bump version.hibernate.orm from 7.3.0.Final to 7.4.0.Final\n\nBumps `version.hibernate.orm` from 7.3.0.Final to 7.4.0.Final.\n\nUpdates `org.hibernate.orm:hibernate-core` from 7.3.0.Final to 7.4.0.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/7.4.0/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/7.3.0...7.4.0)\n\nUpdates `org.hibernate.orm:hibernate-processor` from 7.3.0.Final to 7.4.0.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/7.4.0/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/7.3.0...7.4.0)\n\nUpdates `org.hibernate.orm:hibernate-jcache` from 7.3.0.Final to 7.4.0.Final\n- [Release notes](https://github.com/hibernate/hibernate-orm/releases)\n- [Changelog](https://github.com/hibernate/hibernate-orm/blob/7.4.0/changelog.txt)\n- [Commits](https://github.com/hibernate/hibernate-orm/compare/7.3.0...7.4.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.hibernate.orm:hibernate-core\n  dependency-version: 7.4.0.Final\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: org.hibernate.orm:hibernate-processor\n  dependency-version: 7.4.0.Final\n  dependency-type: direct:development\n  update-type: version-update:semver-minor\n- dependency-name: org.hibernate.orm:hibernate-jcache\n  dependency-version: 7.4.0.Final\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "9bb65a8bbf41581fc8a65e9a156df6318e9b83c4",
      "tree": "81b9da383c7afbc02c23155c9d738830edb4b948",
      "parents": [
        "894ee79741f010c6e4da4b027612c3847595155e"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 02 13:12:06 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Tue Jun 02 15:45:33 2026 +0200"
      },
      "message": "Bump version.johnzon from 2.0.2 to 2.1.0\n\nBumps `version.johnzon` from 2.0.2 to 2.1.0.\n\nUpdates `org.apache.johnzon:johnzon-core` from 2.0.2 to 2.1.0\n\nUpdates `org.apache.johnzon:johnzon-mapper` from 2.0.2 to 2.1.0\n\nUpdates `org.apache.johnzon:johnzon-jaxrs` from 2.0.2 to 2.1.0\n\nUpdates `org.apache.johnzon:johnzon-jsonb` from 2.0.2 to 2.1.0\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.johnzon:johnzon-core\n  dependency-version: 2.1.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: org.apache.johnzon:johnzon-mapper\n  dependency-version: 2.1.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: org.apache.johnzon:johnzon-jaxrs\n  dependency-version: 2.1.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: org.apache.johnzon:johnzon-jsonb\n  dependency-version: 2.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"
    },
    {
      "commit": "894ee79741f010c6e4da4b027612c3847595155e",
      "tree": "26f733bd96493ffc7ef8da0538b4e06f21c1a707",
      "parents": [
        "fc182ec6cf8684b670f3ed3a7060f3d23d3648de"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 02 13:11:14 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Tue Jun 02 15:44:41 2026 +0200"
      },
      "message": "Bump org.apache.maven.plugins:maven-invoker-plugin from 3.8.0 to 3.10.1\n\nBumps [org.apache.maven.plugins:maven-invoker-plugin](https://github.com/apache/maven-invoker-plugin) from 3.8.0 to 3.10.1.\n- [Release notes](https://github.com/apache/maven-invoker-plugin/releases)\n- [Commits](https://github.com/apache/maven-invoker-plugin/compare/maven-invoker-plugin-3.8.0...maven-invoker-plugin-3.10.1)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.maven.plugins:maven-invoker-plugin\n  dependency-version: 3.10.1\n  dependency-type: direct:development\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "fc182ec6cf8684b670f3ed3a7060f3d23d3648de",
      "tree": "b37b345ceea5d2e916a25b75940bde8b244ca62c",
      "parents": [
        "884b960c3c222ca46e7cf5c1e1f96719c07509bb"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 02 06:47:55 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Tue Jun 02 14:52:47 2026 +0200"
      },
      "message": "Bump org.mockito:mockito-core from 5.22.0 to 5.23.0\n\nBumps [org.mockito:mockito-core](https://github.com/mockito/mockito) from 5.22.0 to 5.23.0.\n- [Release notes](https://github.com/mockito/mockito/releases)\n- [Commits](https://github.com/mockito/mockito/compare/v5.22.0...v5.23.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.mockito:mockito-core\n  dependency-version: 5.23.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": "884b960c3c222ca46e7cf5c1e1f96719c07509bb",
      "tree": "3e762cc068cd600554e626cb52f093eb988d0053",
      "parents": [
        "70fae736d1ff7cce816aed8bc7cb50c2d2617a07"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 02 06:46:36 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Tue Jun 02 14:50:44 2026 +0200"
      },
      "message": "Bump version.microprofile.impl.opentelemetry from 2.12.0 to 2.14.0\n\nBumps `version.microprofile.impl.opentelemetry` from 2.12.0 to 2.14.0.\n\nUpdates `io.smallrye.opentelemetry:smallrye-opentelemetry-api` from 2.12.0 to 2.14.0\n- [Release notes](https://github.com/smallrye/smallrye-opentelemetry/releases)\n- [Commits](https://github.com/smallrye/smallrye-opentelemetry/compare/2.12.0...2.14.0)\n\nUpdates `io.smallrye.opentelemetry:smallrye-opentelemetry-cdi` from 2.12.0 to 2.14.0\n\nUpdates `io.smallrye.opentelemetry:smallrye-opentelemetry-rest` from 2.12.0 to 2.14.0\n\nUpdates `io.smallrye.opentelemetry:smallrye-opentelemetry-config` from 2.12.0 to 2.14.0\n\nUpdates `io.smallrye.opentelemetry:smallrye-opentelemetry-propagation` from 2.12.0 to 2.14.0\n\n---\nupdated-dependencies:\n- dependency-name: io.smallrye.opentelemetry:smallrye-opentelemetry-api\n  dependency-version: 2.14.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: io.smallrye.opentelemetry:smallrye-opentelemetry-cdi\n  dependency-version: 2.14.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: io.smallrye.opentelemetry:smallrye-opentelemetry-rest\n  dependency-version: 2.14.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: io.smallrye.opentelemetry:smallrye-opentelemetry-config\n  dependency-version: 2.14.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: io.smallrye.opentelemetry:smallrye-opentelemetry-propagation\n  dependency-version: 2.14.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "70fae736d1ff7cce816aed8bc7cb50c2d2617a07",
      "tree": "698675e0115c65e99ba4036eb9b44969e32b6b96",
      "parents": [
        "02946bb97130e36ed0f12a30f9a3d147c82bfbef"
      ],
      "author": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Tue Jun 02 14:48:02 2026 +0200"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Tue Jun 02 14:48:02 2026 +0200"
      },
      "message": "Mojarra 4.1.9\n"
    },
    {
      "commit": "02946bb97130e36ed0f12a30f9a3d147c82bfbef",
      "tree": "604d85c7795cbe4eda993e4b17b82f8b6352b4af",
      "parents": [
        "25011b5ec8423bc1109abfe84b9161e19f729eac"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 02 06:45:26 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Tue Jun 02 14:28:31 2026 +0200"
      },
      "message": "Bump info.cukes:cucumber-core from 1.2.5 to 1.2.6\n\nBumps info.cukes:cucumber-core from 1.2.5 to 1.2.6.\n\n---\nupdated-dependencies:\n- dependency-name: info.cukes:cucumber-core\n  dependency-version: 1.2.6\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "25011b5ec8423bc1109abfe84b9161e19f729eac",
      "tree": "a1660ab62286f566c597dbf5a02129eb2d2388a2",
      "parents": [
        "6e34fdb57aa4e8ab507f3c0bdd67ae72f76c2896"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 02 06:44:57 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Tue Jun 02 14:19:36 2026 +0200"
      },
      "message": "Bump org.codehaus.plexus:plexus-classworlds from 2.9.0 to 2.12.0\n\nBumps [org.codehaus.plexus:plexus-classworlds](https://github.com/codehaus-plexus/plexus-classworlds) from 2.9.0 to 2.12.0.\n- [Release notes](https://github.com/codehaus-plexus/plexus-classworlds/releases)\n- [Commits](https://github.com/codehaus-plexus/plexus-classworlds/compare/plexus-classworlds-2.9.0...plexus-classworlds-2.12.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.codehaus.plexus:plexus-classworlds\n  dependency-version: 2.12.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "6e34fdb57aa4e8ab507f3c0bdd67ae72f76c2896",
      "tree": "241b785b7d8cf0c1b4825a35706804f48df7d3d0",
      "parents": [
        "6c06712eb86835821b48d5d58bfc065d10e61ad5"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 02 06:43:33 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Tue Jun 02 14:17:41 2026 +0200"
      },
      "message": "Bump version.shrinkwrap.resolver.bom from 3.3.5 to 3.3.7\n\nBumps `version.shrinkwrap.resolver.bom` from 3.3.5 to 3.3.7.\n\nUpdates `org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven` from 3.3.5 to 3.3.7\n- [Release notes](https://github.com/shrinkwrap/resolver/releases)\n- [Commits](https://github.com/shrinkwrap/resolver/compare/3.3.5...3.3.7)\n\nUpdates `org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-bom` from 3.3.5 to 3.3.7\n- [Release notes](https://github.com/shrinkwrap/resolver/releases)\n- [Commits](https://github.com/shrinkwrap/resolver/compare/3.3.5...3.3.7)\n\n---\nupdated-dependencies:\n- dependency-name: org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-impl-maven\n  dependency-version: 3.3.7\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-bom\n  dependency-version: 3.3.7\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "6c06712eb86835821b48d5d58bfc065d10e61ad5",
      "tree": "9d1a52dc0d98b4d1c731ce1afcb4b2ea614c1914",
      "parents": [
        "954b87062feb15333088face550160e1f22bb7ef"
      ],
      "author": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Sun May 17 16:49:31 2026 +0200"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "jungm@apache.org",
        "time": "Tue Jun 02 12:06:21 2026 +0200"
      },
      "message": "initial AGENTS.md/SECURITY.md\n"
    },
    {
      "commit": "954b87062feb15333088face550160e1f22bb7ef",
      "tree": "0b85ce7210ce5ad4af578d6b8173aa9e2e151596",
      "parents": [
        "985ae9648e4f6934d926da0dfad5d8fb9dd81e7f"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 01 08:22:33 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Tue Jun 02 08:27:08 2026 +0200"
      },
      "message": "Bump org.ehcache:ehcache from 3.11.1 to 3.12.0\n\nBumps [org.ehcache:ehcache](https://github.com/ehcache/ehcache3) from 3.11.1 to 3.12.0.\n- [Release notes](https://github.com/ehcache/ehcache3/releases)\n- [Commits](https://github.com/ehcache/ehcache3/compare/v3.11.1...v3.12.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.ehcache:ehcache\n  dependency-version: 3.12.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "985ae9648e4f6934d926da0dfad5d8fb9dd81e7f",
      "tree": "bfb75cfceafa56a193cfbec28b7e03e16a94754b",
      "parents": [
        "5c5a311d930460404d46b7cf85854ea7a6a03609"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 01 08:25:37 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Tue Jun 02 08:26:59 2026 +0200"
      },
      "message": "Bump commons-codec:commons-codec from 1.21.0 to 1.22.0\n\nBumps [commons-codec:commons-codec](https://github.com/apache/commons-codec) from 1.21.0 to 1.22.0.\n- [Changelog](https://github.com/apache/commons-codec/blob/master/RELEASE-NOTES.txt)\n- [Commits](https://github.com/apache/commons-codec/compare/rel/commons-codec-1.21.0...rel/commons-codec-1.22.0)\n\n---\nupdated-dependencies:\n- dependency-name: commons-codec:commons-codec\n  dependency-version: 1.22.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "5c5a311d930460404d46b7cf85854ea7a6a03609",
      "tree": "98d64b64d093fa9079c6b816343fb6496610a400",
      "parents": [
        "c00985ded5e2f581eec990581dee9325459ea527"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 01 08:26:53 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Tue Jun 02 08:17:11 2026 +0200"
      },
      "message": "Bump version.myfaces from 4.1.2 to 4.1.3\n\nBumps `version.myfaces` from 4.1.2 to 4.1.3.\n\nUpdates `org.apache.myfaces.core:myfaces-api` from 4.1.2 to 4.1.3\n\nUpdates `org.apache.myfaces.core:myfaces-impl` from 4.1.2 to 4.1.3\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.myfaces.core:myfaces-api\n  dependency-version: 4.1.3\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.myfaces.core:myfaces-impl\n  dependency-version: 4.1.3\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "c00985ded5e2f581eec990581dee9325459ea527",
      "tree": "d74b66c6572522afaf5c153f0383393590573fb8",
      "parents": [
        "bc636ff03925b99746c65a9b508148fcd63d885e"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 01 08:26:08 2026 +0000"
      },
      "committer": {
        "name": "Markus Jung",
        "email": "mail@markus-jung.dev",
        "time": "Tue Jun 02 08:17:01 2026 +0200"
      },
      "message": "Bump version.slf4j from 2.0.17 to 2.0.18\n\nBumps `version.slf4j` from 2.0.17 to 2.0.18.\n\nUpdates `org.slf4j:slf4j-api` from 2.0.17 to 2.0.18\n\nUpdates `org.slf4j:slf4j-jdk14` from 2.0.17 to 2.0.18\n\n---\nupdated-dependencies:\n- dependency-name: org.slf4j:slf4j-api\n  dependency-version: 2.0.18\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n- dependency-name: org.slf4j:slf4j-jdk14\n  dependency-version: 2.0.18\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    }
  ],
  "next": "bc636ff03925b99746c65a9b508148fcd63d885e"
}
