)]}'
{
  "log": [
    {
      "commit": "f8f992e7855ba53c42c60fb8375a6f3d896bd11f",
      "tree": "55b9a78195183e2e05465a0e4c59377f88d369c9",
      "parents": [
        "455be270d978484157269980c1236e0748b5b5af"
      ],
      "author": {
        "name": "Sebastian Rühl",
        "email": "sruehl@apache.org",
        "time": "Fri Jul 10 15:27:50 2026 +0200"
      },
      "committer": {
        "name": "Sebastian Rühl",
        "email": "sruehl@apache.org",
        "time": "Fri Jul 10 15:27:50 2026 +0200"
      },
      "message": "fix: Fixed an issue making IntelliJ not pick up the change to maven 4\n"
    },
    {
      "commit": "455be270d978484157269980c1236e0748b5b5af",
      "tree": "3914c31f820b11fc31b70fe5f80505df2c3a3231",
      "parents": [
        "8c040f4db3ef8b047ce95c0ba5a0592c31b656b8"
      ],
      "author": {
        "name": "Sebastian Rühl",
        "email": "sruehl@apache.org",
        "time": "Fri Jul 10 09:40:14 2026 +0200"
      },
      "committer": {
        "name": "Sebastian Rühl",
        "email": "sruehl@apache.org",
        "time": "Fri Jul 10 09:40:14 2026 +0200"
      },
      "message": "fix(build): repair nifi NAR builds under Maven 4 and Go SDK version\n\nTwo CI failures introduced by the maven 4 migration commit:\n\n1. nifi NARs (all platforms): \u0027mvnup --infer\u0027 dropped the explicit\n   groupId/version from the NAR modules\u0027 dependency on their sibling\n   processors module. The reactor handles that via 4.1.0 model\n   inference, but nifi-nar-maven-plugin\u0027s extension documentation step\n   rebuilds the NAR POM through the ProjectBuilder in repository mode,\n   where inference does not apply. The model build failed (debug-level\n   only), extension-manifest.xml was never generated, and install then\n   failed on the missing attached artifact. Restore explicit\n   coordinates, matching the migration\u0027s policy of keeping explicit\n   versions for anything resolved through the repository system.\n\n2. Go workflow: go.version 1.26 yields a non-existent SDK archive name\n   (Go release archives are versioned 1.26.0). The path-filtered Go\n   workflow had not run in months and only woke up because the\n   migration touched plc4go/pom.xml. Align with plc4x (8ee591fe56) and\n   use 1.26.0.\n\nThe Windows \u0027assembly descriptor contains a *nix-specific\nroot-relative-reference\u0027 ERROR lines are pre-existing non-fatal\nkafka-connect-plugin log noise, also present in green Maven 3 runs.\n"
    },
    {
      "commit": "8c040f4db3ef8b047ce95c0ba5a0592c31b656b8",
      "tree": "12b71b5c65c9da9de8e75be9f5fdd0909d813146",
      "parents": [
        "7d32acc39f1043b9df1d153c2be57b3512c9cc95"
      ],
      "author": {
        "name": "Sebastian Rühl",
        "email": "sruehl@apache.org",
        "time": "Fri Jul 10 08:41:55 2026 +0200"
      },
      "committer": {
        "name": "Sebastian Rühl",
        "email": "sruehl@apache.org",
        "time": "Fri Jul 10 08:41:55 2026 +0200"
      },
      "message": "chore(build): maven 4 migration\n\nMirror the migration done in the main plc4x repo (75847e32c6):\n\nhttps://maven.apache.org/guides/mini/guide-migration-to-mvn4.html\n\n- Maven-Wrapper: distribution 3.9.11 -\u003e 4.0.0-rc-5, wrapper scripts 3.3.4\n- All POMs upgraded to the 4.1.0 model via \u0027mvnup apply --all\u0027:\n  namespace 4.0.0 -\u003e 4.1.0, modelVersion dropped (inferred),\n  modules -\u003e subprojects, subproject lists dropped where they exactly\n  match the direct child directories (automatic subproject discovery)\n- Explicit parent versions restored in all reactor POMs (as in plc4x:\n  inference breaks plugins that resolve in-reactor artifact descriptors\n  through the repository system)\n- Root POM gets an explicit empty \u003csubprojects/\u003e element: the language\n  modules are only contributed by the with-c/with-go/with-java profiles,\n  and without the element Maven 4 auto-discovery would unconditionally\n  pull in all subdirectories\n- JaCoCo integration-test execution moved to the Maven 4 phase name\n  before:integration-test\n- README: document the Maven 4.0.0-rc-5+ build requirement\n\nVerified: \u0027./mvnw -B -Pwith-java install\u0027 builds green on 4.0.0-rc-5,\nprofile-less builds still only build the root project, and the\nplc4j-s7event example stays excluded from the reactor.\n"
    },
    {
      "commit": "7d32acc39f1043b9df1d153c2be57b3512c9cc95",
      "tree": "37b1aa280f64902177fcb0442ca9457760a88b67",
      "parents": [
        "f62bc616e1f78a797e900d384ab159f5f0797a7d"
      ],
      "author": {
        "name": "Sebastian Rühl",
        "email": "sruehl@apache.org",
        "time": "Fri Jul 10 08:32:40 2026 +0200"
      },
      "committer": {
        "name": "Sebastian Rühl",
        "email": "sruehl@apache.org",
        "time": "Fri Jul 10 08:32:40 2026 +0200"
      },
      "message": "fix(plc4j): adapt to new CachedPlcConnectionManager builder API\n\nThe connection-cache re-implementation in plc4x core (1b961389c8) changed\nthe CachedPlcConnectionManager builder contract:\n\n- build() now requires an explicit PlcConnectionManager set via\n  withConnectionManager() (previously defaulted to DefaultPlcDriverManager)\n- the getBuilder(PlcConnectionManager) overload was removed\n- withMaxLeaseTime/withMaxWaitTime now take (long, TimeUnit) instead of\n  Duration\n\nAdapt all call sites accordingly, preserving the previous default\nsemantics by passing new DefaultPlcDriverManager() explicitly:\n\n- apache-calcite: construct ScraperImpl with an explicit connection\n  manager instead of the config convenience constructor (which still\n  builds a manager-less cache internally); promote plc4j-connection-cache\n  from test to compile scope\n- apache-kafka: source and sink tasks; pass the existing connection\n  manager to TriggeredScraperImpl instead of the internally-created one\n- apache-nifi (nifi-1 and nifi-2): BasePlc4xProcessor builder call and\n  TimeUnit-based timeouts\n- plc4x-server, opcua-server, hello-opm example\n\nAlso remove a duplicate mockito-core declaration in the nifi-1\nprocessors pom (hard error under Maven 4).\n\nFixes the failing Java Platform compatibility CI workflow.\n"
    },
    {
      "commit": "f62bc616e1f78a797e900d384ab159f5f0797a7d",
      "tree": "96f3ead34075238c7ce5778c3dde906fea798a31",
      "parents": [
        "fc6a23e46a804584edcff28743227bc346ce1b57"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Jul 10 08:10:31 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Jul 10 08:10:31 2026 +0200"
      },
      "message": "chore(deps-dev): bump ch.qos.logback:logback-classic (#746)\n\nBumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from 1.5.37 to 1.5.38.\n- [Release notes](https://github.com/qos-ch/logback/releases)\n- [Commits](https://github.com/qos-ch/logback/compare/v_1.5.37...v_1.5.38)\n\n---\nupdated-dependencies:\n- dependency-name: ch.qos.logback:logback-classic\n  dependency-version: 1.5.38\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": "fc6a23e46a804584edcff28743227bc346ce1b57",
      "tree": "88985ab2bf7dc08c08afdebe275dcac1013d1ccd",
      "parents": [
        "75aba2af25a4813e7d2922b27f32e49558eae20e"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Jul 10 08:10:19 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Jul 10 08:10:19 2026 +0200"
      },
      "message": "chore(deps): bump io.nats:jnats from 2.25.3 to 2.26.0 (#747)\n\nBumps [io.nats:jnats](https://github.com/nats-io/nats.java) from 2.25.3 to 2.26.0.\n- [Release notes](https://github.com/nats-io/nats.java/releases)\n- [Changelog](https://github.com/nats-io/nats.java/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/nats-io/nats.java/compare/2.25.3...2.26.0)\n\n---\nupdated-dependencies:\n- dependency-name: io.nats:jnats\n  dependency-version: 2.26.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": "75aba2af25a4813e7d2922b27f32e49558eae20e",
      "tree": "4e0e5f76073b48a8c38ea992b0cadeefc78b8169",
      "parents": [
        "7762416362fe0a860d0ec5cca1f1b9e21ca452bc"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Jul 10 08:10:05 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Jul 10 08:10:05 2026 +0200"
      },
      "message": "chore(deps): bump ch.qos.logback:logback-core from 1.5.37 to 1.5.38 (#748)\n\nBumps [ch.qos.logback:logback-core](https://github.com/qos-ch/logback) from 1.5.37 to 1.5.38.\n- [Release notes](https://github.com/qos-ch/logback/releases)\n- [Commits](https://github.com/qos-ch/logback/compare/v_1.5.37...v_1.5.38)\n\n---\nupdated-dependencies:\n- dependency-name: ch.qos.logback:logback-core\n  dependency-version: 1.5.38\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": "7762416362fe0a860d0ec5cca1f1b9e21ca452bc",
      "tree": "3c209a3dbe0066c2a602d8fb9437a8bb19125773",
      "parents": [
        "1b89d53d6deb9d4d673168e5fe1ef852a77aef70"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jul 08 08:31:17 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jul 08 08:31:17 2026 +0200"
      },
      "message": "chore(deps): bump com.fasterxml.jackson.core:jackson-databind (#743)\n\nBumps [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson) from 2.22.0 to 2.22.1.\n- [Commits](https://github.com/FasterXML/jackson/commits)\n\n---\nupdated-dependencies:\n- dependency-name: com.fasterxml.jackson.core:jackson-databind\n  dependency-version: 2.22.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": "1b89d53d6deb9d4d673168e5fe1ef852a77aef70",
      "tree": "1947b108d5e4952b47e5e73a536d5effd00934de",
      "parents": [
        "2aa9663086f12e1c53ed03f35385e243e9e922a1"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jul 08 08:31:07 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jul 08 08:31:07 2026 +0200"
      },
      "message": "chore(deps-dev): bump com.fasterxml.jackson.dataformat:jackson-dataformat-yaml (#744)\n\nBumps [com.fasterxml.jackson.dataformat:jackson-dataformat-yaml](https://github.com/FasterXML/jackson-dataformats-text) from 2.22.0 to 2.22.1.\n- [Commits](https://github.com/FasterXML/jackson-dataformats-text/compare/jackson-dataformats-text-2.22.0...jackson-dataformats-text-2.22.1)\n\n---\nupdated-dependencies:\n- dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-yaml\n  dependency-version: 2.22.1\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "2aa9663086f12e1c53ed03f35385e243e9e922a1",
      "tree": "2e1164abd02053ffadfe83551280246f18db8d33",
      "parents": [
        "9bbf55873f760c65e1bb90a65d49016ab77ad2c2"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jul 08 08:30:53 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jul 08 08:30:53 2026 +0200"
      },
      "message": "chore(deps): bump org.eclipse.jetty:jetty-util from 12.1.10 to 12.1.11 (#745)\n\nBumps org.eclipse.jetty:jetty-util from 12.1.10 to 12.1.11.\n\n---\nupdated-dependencies:\n- dependency-name: org.eclipse.jetty:jetty-util\n  dependency-version: 12.1.11\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "9bbf55873f760c65e1bb90a65d49016ab77ad2c2",
      "tree": "2e2c022e8916e2cb607278b155a884bfa1291cf9",
      "parents": [
        "c985cfe392d3777270016462503a929c0cb6ef8a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Jul 03 17:06:17 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Jul 03 17:06:17 2026 +0200"
      },
      "message": "chore(deps): bump net.bytebuddy:byte-buddy from 1.18.10 to 1.18.11 (#740)\n\nBumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.18.10 to 1.18.11.\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.10...byte-buddy-1.18.11)\n\n---\nupdated-dependencies:\n- dependency-name: net.bytebuddy:byte-buddy\n  dependency-version: 1.18.11\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "c985cfe392d3777270016462503a929c0cb6ef8a",
      "tree": "358dd7ed54c6f4a60258e22a59b67f1c44c43f59",
      "parents": [
        "04dac9074efbd8ce33ae4c77ae0a12a30227de0a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Jul 03 17:06:05 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Jul 03 17:06:05 2026 +0200"
      },
      "message": "chore(deps): bump com.hivemq:hivemq-mqtt-client from 1.3.15 to 1.3.16 (#741)\n\nBumps [com.hivemq:hivemq-mqtt-client](https://github.com/hivemq/hivemq-mqtt-client) from 1.3.15 to 1.3.16.\n- [Release notes](https://github.com/hivemq/hivemq-mqtt-client/releases)\n- [Changelog](https://github.com/hivemq/hivemq-mqtt-client/blob/master/RELEASE.md)\n- [Commits](https://github.com/hivemq/hivemq-mqtt-client/compare/v1.3.15...v1.3.16)\n\n---\nupdated-dependencies:\n- dependency-name: com.hivemq:hivemq-mqtt-client\n  dependency-version: 1.3.16\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": "04dac9074efbd8ce33ae4c77ae0a12a30227de0a",
      "tree": "87ee0a1ed6305c2a0540785155bb7e56df7a011f",
      "parents": [
        "5b9240dea72da92336c38234dd1aaa4f0092db82"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jul 02 06:38:37 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 02 06:38:37 2026 +0200"
      },
      "message": "chore(deps): bump org.checkerframework:checker-qual from 4.2.0 to 4.2.1 (#739)\n\nBumps [org.checkerframework:checker-qual](https://github.com/typetools/checker-framework) from 4.2.0 to 4.2.1.\n- [Release notes](https://github.com/typetools/checker-framework/releases)\n- [Changelog](https://github.com/typetools/checker-framework/blob/master/docs/CHANGELOG.md)\n- [Commits](https://github.com/typetools/checker-framework/compare/checker-framework-4.2.0...checker-framework-4.2.1)\n\n---\nupdated-dependencies:\n- dependency-name: org.checkerframework:checker-qual\n  dependency-version: 4.2.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": "5b9240dea72da92336c38234dd1aaa4f0092db82",
      "tree": "353d6245020de4dc1962ba09c453cf93e1cead07",
      "parents": [
        "060d847c361e65ecc1d81fa0104a8685fe51dda1"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jul 01 08:50:25 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jul 01 08:50:25 2026 +0200"
      },
      "message": "chore(deps): bump com.gradle:develocity-maven-extension (#738)\n\nBumps com.gradle:develocity-maven-extension from 2.4.2 to 2.5.0.\n\n---\nupdated-dependencies:\n- dependency-name: com.gradle:develocity-maven-extension\n  dependency-version: 2.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": "060d847c361e65ecc1d81fa0104a8685fe51dda1",
      "tree": "ab32c12203637cc01f067e1c1468608dfcd4aedd",
      "parents": [
        "7ac7d689ed34d359e48f9f95ca71d180b56d3a5a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 30 14:43:45 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jun 30 14:43:45 2026 +0200"
      },
      "message": "chore(deps): bump org.junit:junit-bom from 6.1.0 to 6.1.1 (#736)\n\nBumps [org.junit:junit-bom](https://github.com/junit-team/junit-framework) from 6.1.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/r6.1.0...r6.1.1)\n\n---\nupdated-dependencies:\n- dependency-name: org.junit:junit-bom\n  dependency-version: 6.1.1\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "7ac7d689ed34d359e48f9f95ca71d180b56d3a5a",
      "tree": "9497b015549b718a64194a01261b04bc180f9b34",
      "parents": [
        "c80177bf842b5c3935bd72f25bf5a5e974874a4f"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 30 14:43:32 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jun 30 14:43:32 2026 +0200"
      },
      "message": "chore(deps): bump com.gradle:common-custom-user-data-maven-extension (#735)\n\nBumps [com.gradle:common-custom-user-data-maven-extension](https://github.com/gradle/common-custom-user-data-maven-extension) from 2.2.0 to 2.3.0.\n- [Release notes](https://github.com/gradle/common-custom-user-data-maven-extension/releases)\n- [Commits](https://github.com/gradle/common-custom-user-data-maven-extension/compare/v2.2.0...v2.3.0)\n\n---\nupdated-dependencies:\n- dependency-name: com.gradle:common-custom-user-data-maven-extension\n  dependency-version: 2.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\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "c80177bf842b5c3935bd72f25bf5a5e974874a4f",
      "tree": "20b93da8c1b4cca73614f359a6ab272f57492f66",
      "parents": [
        "e20e6331b6e80999eb3f08b462ade1655e452534"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 29 06:52:49 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 29 06:52:49 2026 +0200"
      },
      "message": "chore(deps): bump org.apache:apache from 38 to 39 (#730)\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": "e20e6331b6e80999eb3f08b462ade1655e452534",
      "tree": "b6832e1f4569c3db2bedb16b92b3642af96533c2",
      "parents": [
        "34968849fc9a12e2e93a7cda5a450a514f9361ff"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 29 06:52:35 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 29 06:52:35 2026 +0200"
      },
      "message": "chore(deps-dev): bump ch.qos.logback:logback-classic (#731)\n\nBumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from 1.5.35 to 1.5.37.\n- [Release notes](https://github.com/qos-ch/logback/releases)\n- [Commits](https://github.com/qos-ch/logback/compare/v_1.5.35...v_1.5.37)\n\n---\nupdated-dependencies:\n- dependency-name: ch.qos.logback:logback-classic\n  dependency-version: 1.5.37\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": "34968849fc9a12e2e93a7cda5a450a514f9361ff",
      "tree": "88bd1de9be255366373d83815c28494400f86f2c",
      "parents": [
        "66ff0301750c7a4d3fdfcff01458eaea40671c9c"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 29 06:52:19 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 29 06:52:19 2026 +0200"
      },
      "message": "chore(deps-dev): bump org.junit.jupiter:junit-jupiter-engine (#732)\n\nBumps [org.junit.jupiter:junit-jupiter-engine](https://github.com/junit-team/junit-framework) from 6.1.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/r6.1.0...r6.1.1)\n\n---\nupdated-dependencies:\n- dependency-name: org.junit.jupiter:junit-jupiter-engine\n  dependency-version: 6.1.1\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "66ff0301750c7a4d3fdfcff01458eaea40671c9c",
      "tree": "cfea98c13febc94424167c1675ede330b9040ba7",
      "parents": [
        "196a762aca9fb47a9046457fb634b13f747dc460"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 29 06:52:08 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 29 06:52:08 2026 +0200"
      },
      "message": "chore(deps): bump org.junit.jupiter:junit-jupiter-api (#733)\n\nBumps [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit-framework) from 6.1.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/r6.1.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-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": "196a762aca9fb47a9046457fb634b13f747dc460",
      "tree": "b582d90670c69a3b4c23f33bfa8edf3aeedd3a22",
      "parents": [
        "ffa6424e0d2058f8f79d37dd9969bce4c5b59b46"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 29 06:51:52 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 29 06:51:52 2026 +0200"
      },
      "message": "chore(deps): bump ch.qos.logback:logback-core from 1.5.35 to 1.5.37 (#734)+\n\nBumps [ch.qos.logback:logback-core](https://github.com/qos-ch/logback) from 1.5.35 to 1.5.37.\n- [Release notes](https://github.com/qos-ch/logback/releases)\n- [Commits](https://github.com/qos-ch/logback/compare/v_1.5.35...v_1.5.37)\n\n---\nupdated-dependencies:\n- dependency-name: ch.qos.logback:logback-core\n  dependency-version: 1.5.37\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": "ffa6424e0d2058f8f79d37dd9969bce4c5b59b46",
      "tree": "87978a730276dd65833e9aa17bf5de3ded609b3b",
      "parents": [
        "8725a8e20976859a74ae4226dbe505ba8bab1abf"
      ],
      "author": {
        "name": "Christofer Dutz",
        "email": "christofer.dutz@c-ware.de",
        "time": "Wed Jun 24 16:01:23 2026 +0200"
      },
      "committer": {
        "name": "Christofer Dutz",
        "email": "christofer.dutz@c-ware.de",
        "time": "Wed Jun 24 16:01:23 2026 +0200"
      },
      "message": "fix: Exclude the bouncycastle signatures from the shaded jar to avoid errors when loading the jar.\n"
    },
    {
      "commit": "8725a8e20976859a74ae4226dbe505ba8bab1abf",
      "tree": "b34368f8c367bafa60e99bf000ee3042d6c9d001",
      "parents": [
        "772a6db3b33c5912404b456c94eae8eb297767cb"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jun 24 13:08:02 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 24 13:08:02 2026 +0200"
      },
      "message": "chore(deps): bump actions/cache from 5 to 6 (#722)\n\nBumps [actions/cache](https://github.com/actions/cache) from 5 to 6.\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/v5...v6)\n\n---\nupdated-dependencies:\n- dependency-name: actions/cache\n  dependency-version: \u00276\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": "772a6db3b33c5912404b456c94eae8eb297767cb",
      "tree": "eecb811dfb7d58c034618373526d1d2272a953c6",
      "parents": [
        "539bdf4935af8c0885ff50996c794de90dab2717"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jun 24 13:07:51 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 24 13:07:51 2026 +0200"
      },
      "message": "chore(deps): bump kafka.version from 4.3.0 to 4.3.1 (#723)\n\nBumps `kafka.version` from 4.3.0 to 4.3.1.\n\nUpdates `org.apache.kafka:kafka-clients` from 4.3.0 to 4.3.1\n\nUpdates `org.apache.kafka:connect-api` from 4.3.0 to 4.3.1\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.kafka:kafka-clients\n  dependency-version: 4.3.1\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.apache.kafka:connect-api\n  dependency-version: 4.3.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": "539bdf4935af8c0885ff50996c794de90dab2717",
      "tree": "ea87053388e75b79e2b1d3cb736f3bad20c970bf",
      "parents": [
        "3957d58463510d7cf30fdf389c07d48d4c135cb6"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jun 24 13:07:40 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 24 13:07:40 2026 +0200"
      },
      "message": "chore(deps-dev): bump ch.qos.logback:logback-classic (#724)\n\nBumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from 1.5.34 to 1.5.35.\n- [Release notes](https://github.com/qos-ch/logback/releases)\n- [Commits](https://github.com/qos-ch/logback/compare/v_1.5.34...v_1.5.35)\n\n---\nupdated-dependencies:\n- dependency-name: ch.qos.logback:logback-classic\n  dependency-version: 1.5.35\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": "3957d58463510d7cf30fdf389c07d48d4c135cb6",
      "tree": "f3e30d8bd5fc06c343a399b8d5147ac61f67d47a",
      "parents": [
        "95103b00fb22394d6caf151b33e7bdac2be11bce"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jun 24 13:07:30 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 24 13:07:30 2026 +0200"
      },
      "message": "chore(deps): bump ch.qos.logback:logback-core from 1.5.34 to 1.5.35 (#725)\n\nBumps [ch.qos.logback:logback-core](https://github.com/qos-ch/logback) from 1.5.34 to 1.5.35.\n- [Release notes](https://github.com/qos-ch/logback/releases)\n- [Commits](https://github.com/qos-ch/logback/compare/v_1.5.34...v_1.5.35)\n\n---\nupdated-dependencies:\n- dependency-name: ch.qos.logback:logback-core\n  dependency-version: 1.5.35\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": "95103b00fb22394d6caf151b33e7bdac2be11bce",
      "tree": "857c4e662f2c79e19767ecca86ac6d78269e4b24",
      "parents": [
        "afc56ed6b0c457110a32d98251f44bebb6731264"
      ],
      "author": {
        "name": "Christofer Dutz",
        "email": "christofer.dutz@c-ware.de",
        "time": "Tue Jun 23 23:24:28 2026 +0200"
      },
      "committer": {
        "name": "Christofer Dutz",
        "email": "christofer.dutz@c-ware.de",
        "time": "Tue Jun 23 23:24:28 2026 +0200"
      },
      "message": "doc: Added a README.md and website page for using the plc4x-server.\n"
    },
    {
      "commit": "afc56ed6b0c457110a32d98251f44bebb6731264",
      "tree": "ddf519c1338b6afe4ecdc8bed12da79e87534313",
      "parents": [
        "0859a6c8384681f15b9011406d914fe213a47fa1"
      ],
      "author": {
        "name": "Christofer Dutz",
        "email": "christofer.dutz@c-ware.de",
        "time": "Tue Jun 23 19:14:09 2026 +0200"
      },
      "committer": {
        "name": "Christofer Dutz",
        "email": "christofer.dutz@c-ware.de",
        "time": "Tue Jun 23 19:14:09 2026 +0200"
      },
      "message": "feat: Updated the plc4x server and driver to operate via TLS and to support authentication.\n"
    },
    {
      "commit": "0859a6c8384681f15b9011406d914fe213a47fa1",
      "tree": "a2e92db7d411cfacd883a89319f51f584a45be05",
      "parents": [
        "2514ed7a6719679bb5ebf885298a352d00c671b1"
      ],
      "author": {
        "name": "Christofer Dutz",
        "email": "christofer.dutz@c-ware.de",
        "time": "Tue Jun 23 19:12:46 2026 +0200"
      },
      "committer": {
        "name": "Christofer Dutz",
        "email": "christofer.dutz@c-ware.de",
        "time": "Tue Jun 23 19:12:46 2026 +0200"
      },
      "message": "chore: Made the integration modules build again.\n"
    },
    {
      "commit": "2514ed7a6719679bb5ebf885298a352d00c671b1",
      "tree": "778a3c69d48453b996ea298c49cfc41d246b496d",
      "parents": [
        "96719d6d64b8b3ba1b823e9babc3585e84e91215"
      ],
      "author": {
        "name": "Christofer Dutz",
        "email": "christofer.dutz@c-ware.de",
        "time": "Tue Jun 23 19:12:14 2026 +0200"
      },
      "committer": {
        "name": "Christofer Dutz",
        "email": "christofer.dutz@c-ware.de",
        "time": "Tue Jun 23 19:12:14 2026 +0200"
      },
      "message": "chore: Disabled the s7event module as it\u0027s completely out of sync with the refactored driver.\n"
    },
    {
      "commit": "96719d6d64b8b3ba1b823e9babc3585e84e91215",
      "tree": "b92e076730628fbf53827d091cd4cc1f7af9d3c2",
      "parents": [
        "5199bcc2897d22d1dd733fc525c6a21133feda5c"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 22 09:03:46 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 22 09:03:46 2026 +0200"
      },
      "message": "chore(deps-dev): bump org.cyclonedx:cyclonedx-maven-plugin (#716)\n\nBumps [org.cyclonedx:cyclonedx-maven-plugin](https://github.com/CycloneDX/cyclonedx-maven-plugin) from 2.9.1 to 2.9.2.\n- [Release notes](https://github.com/CycloneDX/cyclonedx-maven-plugin/releases)\n- [Commits](https://github.com/CycloneDX/cyclonedx-maven-plugin/compare/cyclonedx-maven-plugin-2.9.1...cyclonedx-maven-plugin-2.9.2)\n\n---\nupdated-dependencies:\n- dependency-name: org.cyclonedx:cyclonedx-maven-plugin\n  dependency-version: 2.9.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": "5199bcc2897d22d1dd733fc525c6a21133feda5c",
      "tree": "faf57595e6f553256f71af58fba83893012f7994",
      "parents": [
        "2f9e23a7d553d3412b16c0c4c6a525827f1c9dc3"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 22 09:03:14 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 22 09:03:14 2026 +0200"
      },
      "message": "chore(deps): bump com.gradle:develocity-maven-extension (#717)\n\nBumps com.gradle:develocity-maven-extension from 2.4.1 to 2.4.2.\n\n---\nupdated-dependencies:\n- dependency-name: com.gradle:develocity-maven-extension\n  dependency-version: 2.4.2\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "2f9e23a7d553d3412b16c0c4c6a525827f1c9dc3",
      "tree": "26329f559837ebb17c9b58ee960745ba07736079",
      "parents": [
        "67e790bed5d87b1aada6e24d6185a59834a9e638"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Jun 19 09:18:21 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Jun 19 09:18:21 2026 +0200"
      },
      "message": "chore(deps): bump actions/checkout from 6 to 7 (#715)\n\nBumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.\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/v6...v7)\n\n---\nupdated-dependencies:\n- dependency-name: actions/checkout\n  dependency-version: \u00277\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": "67e790bed5d87b1aada6e24d6185a59834a9e638",
      "tree": "1d82a128cde9f209d9c2f066bc7e1e76f824a9d0",
      "parents": [
        "fda7987ec151bc551a4cadfe91ba844c22f38962"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Jun 12 08:50:36 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Jun 12 08:50:36 2026 +0200"
      },
      "message": "chore(deps): bump com.google.protobuf:protobuf-java (#713)\n\nBumps [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf) from 4.35.0 to 4.35.1.\n- [Release notes](https://github.com/protocolbuffers/protobuf/releases)\n- [Commits](https://github.com/protocolbuffers/protobuf/commits)\n\n---\nupdated-dependencies:\n- dependency-name: com.google.protobuf:protobuf-java\n  dependency-version: 4.35.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": "fda7987ec151bc551a4cadfe91ba844c22f38962",
      "tree": "981ab0dce852db3024a1f5b2fc8a1c344586443b",
      "parents": [
        "9a9cadd1ef720385cd1c4221ef99d1fe450fc00a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jun 11 08:41:47 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jun 11 08:41:47 2026 +0200"
      },
      "message": "chore(deps): bump com.hivemq:hivemq-mqtt-client from 1.3.14 to 1.3.15 (#710)\n\nBumps [com.hivemq:hivemq-mqtt-client](https://github.com/hivemq/hivemq-mqtt-client) from 1.3.14 to 1.3.15.\n- [Release notes](https://github.com/hivemq/hivemq-mqtt-client/releases)\n- [Changelog](https://github.com/hivemq/hivemq-mqtt-client/blob/master/RELEASE.md)\n- [Commits](https://github.com/hivemq/hivemq-mqtt-client/compare/v1.3.14...v1.3.15)\n\n---\nupdated-dependencies:\n- dependency-name: com.hivemq:hivemq-mqtt-client\n  dependency-version: 1.3.15\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "9a9cadd1ef720385cd1c4221ef99d1fe450fc00a",
      "tree": "7b2beac4e23565c8631bff96ac554d0f77c6f1a9",
      "parents": [
        "71b20b2bde803f6f99556587de2d5cc9708d104d"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jun 11 08:41:36 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jun 11 08:41:36 2026 +0200"
      },
      "message": "chore(deps): bump com.google.errorprone:error_prone_annotations (#711)\n\nBumps [com.google.errorprone:error_prone_annotations](https://github.com/google/error-prone) from 2.49.0 to 2.50.0.\n- [Release notes](https://github.com/google/error-prone/releases)\n- [Commits](https://github.com/google/error-prone/compare/v2.49.0...v2.50.0)\n\n---\nupdated-dependencies:\n- dependency-name: com.google.errorprone:error_prone_annotations\n  dependency-version: 2.50.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": "71b20b2bde803f6f99556587de2d5cc9708d104d",
      "tree": "bbd2d3b702edd004def23e65e19bd1e96ef48e4c",
      "parents": [
        "cd93980bce320f50eb4ec22c01fc26fc32e073c8"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jun 10 09:49:46 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 10 09:49:46 2026 +0200"
      },
      "message": "chore(deps): bump net.bytebuddy:byte-buddy from 1.18.8 to 1.18.10 (#709)\n\nBumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.18.8 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.8...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\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "cd93980bce320f50eb4ec22c01fc26fc32e073c8",
      "tree": "82c2dc5200183fec7d3ca1cac30fffee19c9b2c9",
      "parents": [
        "8b1329e76543ccbe0aa381d6086070ba47a95c44"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jun 10 09:49:36 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 10 09:49:36 2026 +0200"
      },
      "message": "chore(deps): bump io.vavr:vavr from 1.0.0 to 1.0.1 (#707)\n\nBumps [io.vavr:vavr](https://github.com/vavr-io/vavr) from 1.0.0 to 1.0.1.\n- [Release notes](https://github.com/vavr-io/vavr/releases)\n- [Commits](https://github.com/vavr-io/vavr/compare/v1.0.0...v1.0.1)\n\n---\nupdated-dependencies:\n- dependency-name: io.vavr:vavr\n  dependency-version: 1.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": "8b1329e76543ccbe0aa381d6086070ba47a95c44",
      "tree": "bbefb7e8ca7dfc0b5cba34de869f6afbec6b3405",
      "parents": [
        "49c7bc7000fd2bc2321db4c132f69273fa88361d"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jun 10 09:49:24 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 10 09:49:24 2026 +0200"
      },
      "message": "chore(deps): bump io.netty:netty-common (#708)\n\nBumps [io.netty:netty-common](https://github.com/netty/netty) from 4.2.14.Final to 4.2.15.Final.\n- [Release notes](https://github.com/netty/netty/releases)\n- [Commits](https://github.com/netty/netty/compare/netty-4.2.14.Final...netty-4.2.15.Final)\n\n---\nupdated-dependencies:\n- dependency-name: io.netty:netty-common\n  dependency-version: 4.2.15.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": "49c7bc7000fd2bc2321db4c132f69273fa88361d",
      "tree": "8e8e36f7cfc0662676027fb2eecd744d776c59a6",
      "parents": [
        "f6b9fc84d2d67191e380a828c095bd5ba6edc162"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed Jun 10 09:49:12 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 10 09:49:12 2026 +0200"
      },
      "message": "chore(deps): bump org.eclipse.jetty:jetty-util from 12.1.9 to 12.1.10 (#706)\n\nBumps org.eclipse.jetty:jetty-util from 12.1.9 to 12.1.10.\n\n---\nupdated-dependencies:\n- dependency-name: org.eclipse.jetty:jetty-util\n  dependency-version: 12.1.10\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "f6b9fc84d2d67191e380a828c095bd5ba6edc162",
      "tree": "7fdabab09f70a78eeba4eee5c0be110a62292cd7",
      "parents": [
        "8aeb45c1918c8cd9a4f9f7d08f93458363262bf0"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 09 07:04:36 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jun 09 07:04:36 2026 +0200"
      },
      "message": "chore(deps): bump ch.qos.logback:logback-classic from 1.5.29 to 1.5.34 (#702)\n\nBumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from 1.5.29 to 1.5.34.\n- [Release notes](https://github.com/qos-ch/logback/releases)\n- [Commits](https://github.com/qos-ch/logback/compare/v_1.5.29...v_1.5.34)\n\n---\nupdated-dependencies:\n- dependency-name: ch.qos.logback:logback-classic\n  dependency-version: 1.5.34\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": "8aeb45c1918c8cd9a4f9f7d08f93458363262bf0",
      "tree": "f8186fc343fc70dfd9fcaa656c34560b2b309024",
      "parents": [
        "751ee7d76f90c47bef2641e5b78b75352ec58940"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 09 07:04:25 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jun 09 07:04:25 2026 +0200"
      },
      "message": "chore(deps): bump ch.qos.logback:logback-core from 1.5.32 to 1.5.34 (#703)\n\nBumps [ch.qos.logback:logback-core](https://github.com/qos-ch/logback) from 1.5.32 to 1.5.34.\n- [Release notes](https://github.com/qos-ch/logback/releases)\n- [Commits](https://github.com/qos-ch/logback/compare/v_1.5.32...v_1.5.34)\n\n---\nupdated-dependencies:\n- dependency-name: ch.qos.logback:logback-core\n  dependency-version: 1.5.34\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": "751ee7d76f90c47bef2641e5b78b75352ec58940",
      "tree": "5e2f14c3d1a50b4a758082303a9e3c2d6183919e",
      "parents": [
        "0f476778fdbb06c4c418e610e722a6bb8aab9010"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 09 07:04:13 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jun 09 07:04:13 2026 +0200"
      },
      "message": "chore(deps-dev): bump com.fasterxml.jackson.dataformat:jackson-dataformat-yaml (#704)\n\nBumps [com.fasterxml.jackson.dataformat:jackson-dataformat-yaml](https://github.com/FasterXML/jackson-dataformats-text) from 2.21.3 to 2.22.0.\n- [Commits](https://github.com/FasterXML/jackson-dataformats-text/compare/jackson-dataformats-text-2.21.3...jackson-dataformats-text-2.22.0)\n\n---\nupdated-dependencies:\n- dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-yaml\n  dependency-version: 2.22.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": "0f476778fdbb06c4c418e610e722a6bb8aab9010",
      "tree": "1be6e079bff80519e4fc13b41af93b7c25a9064c",
      "parents": [
        "deb2b1e5239682ffbf0bd5883396cef7dfbffb13"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jun 09 07:04:02 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jun 09 07:04:02 2026 +0200"
      },
      "message": "chore(deps-dev): bump org.jacoco:jacoco-maven-plugin (#705)\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: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": "deb2b1e5239682ffbf0bd5883396cef7dfbffb13",
      "tree": "4b92d00d577c6d528e7d481f7fc069f86d30e0c9",
      "parents": [
        "d1aec053758531c6ae0a5824e3f225489281968b"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 08 07:56:07 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 08 07:56:07 2026 +0200"
      },
      "message": "chore(deps): bump kotlin.version from 2.3.21 to 2.4.0 (#695)\n\nBumps `kotlin.version` from 2.3.21 to 2.4.0.\n\nUpdates `org.jetbrains.kotlin:kotlin-stdlib` from 2.3.21 to 2.4.0\n- [Release notes](https://github.com/JetBrains/kotlin/releases)\n- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)\n- [Commits](https://github.com/JetBrains/kotlin/compare/v2.3.21...v2.4.0)\n\nUpdates `org.jetbrains.kotlin:kotlin-maven-plugin` from 2.3.21 to 2.4.0\n\n---\nupdated-dependencies:\n- dependency-name: org.jetbrains.kotlin:kotlin-stdlib\n  dependency-version: 2.4.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: org.jetbrains.kotlin:kotlin-maven-plugin\n  dependency-version: 2.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": "d1aec053758531c6ae0a5824e3f225489281968b",
      "tree": "735b78560ac8860d79fcf411d06ef960e2dc9b53",
      "parents": [
        "d7bca34f2c1d57246813592a7e39622f7a9c16ad"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 08 07:55:49 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 08 07:55:49 2026 +0200"
      },
      "message": "chore(deps): bump joda-time:joda-time from 2.14.0 to 2.14.2 (#696)\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: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": "d7bca34f2c1d57246813592a7e39622f7a9c16ad",
      "tree": "27fdbfcb2e0b885069fe61b7c39d1c969d2d768a",
      "parents": [
        "1226cd7e838460af99462d3f067f8b78556adb5d"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 08 07:55:19 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 08 07:55:19 2026 +0200"
      },
      "message": "chore(deps): bump org.checkerframework:checker-qual from 4.1.0 to 4.2.0 (#697)\n\nBumps [org.checkerframework:checker-qual](https://github.com/typetools/checker-framework) from 4.1.0 to 4.2.0.\n- [Release notes](https://github.com/typetools/checker-framework/releases)\n- [Changelog](https://github.com/typetools/checker-framework/blob/master/docs/CHANGELOG.md)\n- [Commits](https://github.com/typetools/checker-framework/compare/checker-framework-4.1.0...checker-framework-4.2.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.checkerframework:checker-qual\n  dependency-version: 4.2.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "1226cd7e838460af99462d3f067f8b78556adb5d",
      "tree": "4b1e1305c4a91a8b7bfbddd51df66cfe137abf5b",
      "parents": [
        "0ea17102444ebc488ed62b7215d43dac1ea12b80"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 08 07:55:08 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 08 07:55:08 2026 +0200"
      },
      "message": "chore(deps): bump calcite-core.version from 1.41.0 to 1.42.0 (#698)\n\nBumps `calcite-core.version` from 1.41.0 to 1.42.0.\n\nUpdates `org.apache.calcite:calcite-core` from 1.41.0 to 1.42.0\n- [Commits](https://github.com/apache/calcite/compare/calcite-1.41.0...calcite-1.42.0)\n\nUpdates `org.apache.calcite:calcite-linq4j` from 1.41.0 to 1.42.0\n- [Commits](https://github.com/apache/calcite/compare/calcite-1.41.0...calcite-1.42.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.calcite:calcite-core\n  dependency-version: 1.42.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: org.apache.calcite:calcite-linq4j\n  dependency-version: 1.42.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": "0ea17102444ebc488ed62b7215d43dac1ea12b80",
      "tree": "bd7b494908508a6a270a386153b2ddc7309ebe9e",
      "parents": [
        "23cb9f7107a5a28f451c7f81dbeffe86617a5f83"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 08 07:49:02 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 08 07:49:02 2026 +0200"
      },
      "message": "chore(deps): bump github.com/gopacket/gopacket in /plc4go (#701)\n\nBumps [github.com/gopacket/gopacket](https://github.com/gopacket/gopacket) from 1.6.0 to 1.6.1.\n- [Release notes](https://github.com/gopacket/gopacket/releases)\n- [Commits](https://github.com/gopacket/gopacket/compare/v1.6.0...v1.6.1)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/gopacket/gopacket\n  dependency-version: 1.6.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": "23cb9f7107a5a28f451c7f81dbeffe86617a5f83",
      "tree": "e9a2da6082627530028706076f9475c4b32a96dc",
      "parents": [
        "4218e9567ee22124a6832ca65490d7acd66fd592"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 01 08:08:11 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 01 08:08:11 2026 +0200"
      },
      "message": "chore(deps): bump org.checkerframework:checker-qual from 3.53.1 to 4.1.0 (#691)\n\nBumps [org.checkerframework:checker-qual](https://github.com/typetools/checker-framework) from 3.53.1 to 4.1.0.\n- [Release notes](https://github.com/typetools/checker-framework/releases)\n- [Changelog](https://github.com/typetools/checker-framework/blob/master/docs/CHANGELOG.md)\n- [Commits](https://github.com/typetools/checker-framework/compare/checker-framework-3.53.1...checker-framework-4.1.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.checkerframework:checker-qual\n  dependency-version: 4.1.0\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "4218e9567ee22124a6832ca65490d7acd66fd592",
      "tree": "2f9b48f4853dc5db5f3e3440fb518a5e8791f08e",
      "parents": [
        "9c38cd0c4fc680be0224359536cf01cca3d1285c"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 01 08:08:01 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 01 08:08:01 2026 +0200"
      },
      "message": "chore(deps): bump org.junit.jupiter:junit-jupiter-api (#692)\n\nBumps [org.junit.jupiter:junit-jupiter-api](https://github.com/junit-team/junit-framework) from 6.0.2 to 6.1.0.\n- [Release notes](https://github.com/junit-team/junit-framework/releases)\n- [Commits](https://github.com/junit-team/junit-framework/compare/r6.0.2...r6.1.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.junit.jupiter:junit-jupiter-api\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": "9c38cd0c4fc680be0224359536cf01cca3d1285c",
      "tree": "75e0224f3bcc198c51a7b8640c96e1865d35d290",
      "parents": [
        "73030d9214f6b600d56758e9252741bab10d5b5d"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 01 08:07:50 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 01 08:07:50 2026 +0200"
      },
      "message": "chore(deps): bump com.fasterxml.jackson.core:jackson-databind (#693)\n\nBumps [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson) from 2.21.3 to 2.22.0.\n- [Commits](https://github.com/FasterXML/jackson/commits)\n\n---\nupdated-dependencies:\n- dependency-name: com.fasterxml.jackson.core:jackson-databind\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\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "73030d9214f6b600d56758e9252741bab10d5b5d",
      "tree": "a39c8a7d1a12474fac04daed70ecacc1624ad45c",
      "parents": [
        "92d6078ea04b57616d5f56d716ba0011ced00d49"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Jun 01 08:07:39 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 01 08:07:39 2026 +0200"
      },
      "message": "chore(deps): bump com.fasterxml.jackson.core:jackson-annotations (#694)\n\nBumps [com.fasterxml.jackson.core:jackson-annotations](https://github.com/FasterXML/jackson) from 2.21 to 2.22.\n- [Commits](https://github.com/FasterXML/jackson/commits)\n\n---\nupdated-dependencies:\n- dependency-name: com.fasterxml.jackson.core:jackson-annotations\n  dependency-version: \u00272.22\u0027\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": "92d6078ea04b57616d5f56d716ba0011ced00d49",
      "tree": "98e43a67c4bcb152847e23909bee1c145e9f7e54",
      "parents": [
        "0573a2d3c4d206fa169affd478482d14aa210441"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri May 29 16:13:27 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 29 16:13:27 2026 +0200"
      },
      "message": "chore(deps): bump com.google.protobuf:protobuf-java (#687)\n\nBumps [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf) from 4.33.5 to 4.35.0.\n- [Release notes](https://github.com/protocolbuffers/protobuf/releases)\n- [Commits](https://github.com/protocolbuffers/protobuf/commits)\n\n---\nupdated-dependencies:\n- dependency-name: com.google.protobuf:protobuf-java\n  dependency-version: 4.35.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": "0573a2d3c4d206fa169affd478482d14aa210441",
      "tree": "21979d416ed7fad6cb54c6bb21d6dc122ba1e269",
      "parents": [
        "57d6c482597a87484f74dfa8680d00e53ad359af"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri May 29 16:13:15 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 29 16:13:15 2026 +0200"
      },
      "message": "chore(deps): bump org.apache:apache from 37 to 38 (#688)\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\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "57d6c482597a87484f74dfa8680d00e53ad359af",
      "tree": "4dae8a31b746a1785b026a5582fddd61cef8a535",
      "parents": [
        "9cd7cb04884b142796f7fe88268922a1ecd38154"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri May 29 16:13:05 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 29 16:13:05 2026 +0200"
      },
      "message": "chore(deps): bump net.bytebuddy:byte-buddy from 1.18.4 to 1.18.8 (#689)\n\nBumps [net.bytebuddy:byte-buddy](https://github.com/raphw/byte-buddy) from 1.18.4 to 1.18.8.\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.4...byte-buddy-1.18.8)\n\n---\nupdated-dependencies:\n- dependency-name: net.bytebuddy:byte-buddy\n  dependency-version: 1.18.8\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": "9cd7cb04884b142796f7fe88268922a1ecd38154",
      "tree": "bb1d90229aef70e1c1c4e63cfe647915e88c0d00",
      "parents": [
        "cca1582d94bd68cd881c1ca8e1871bb28f498b9f"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri May 29 16:12:53 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 29 16:12:53 2026 +0200"
      },
      "message": "chore(deps): bump org.apache.commons:commons-configuration2 (#690)\n\nBumps org.apache.commons:commons-configuration2 from 2.13.0 to 2.15.1.\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.commons:commons-configuration2\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": "cca1582d94bd68cd881c1ca8e1871bb28f498b9f",
      "tree": "5ffa4a58022503cfd0541483ba10ac92512cbcab",
      "parents": [
        "9e514a9964df7831daea24fbb5a7908de1c219c2"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu May 28 08:43:42 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 28 08:43:42 2026 +0200"
      },
      "message": "chore(deps): bump io.netty:netty-common from 4.2.8.Final to 4.2.14.Final (#683)\n\nBumps [io.netty:netty-common](https://github.com/netty/netty) from 4.2.8.Final to 4.2.14.Final.\n- [Release notes](https://github.com/netty/netty/releases)\n- [Commits](https://github.com/netty/netty/compare/netty-4.2.8.Final...netty-4.2.14.Final)\n\n---\nupdated-dependencies:\n- dependency-name: io.netty:netty-common\n  dependency-version: 4.2.14.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": "9e514a9964df7831daea24fbb5a7908de1c219c2",
      "tree": "a1229a03b4b356de8e69962d1923f8ea0d970357",
      "parents": [
        "50d7ffc12890ff1da0f44a6f97f075d9a9fbe728"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu May 28 08:43:32 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 28 08:43:32 2026 +0200"
      },
      "message": "chore(deps): bump com.gradle:develocity-maven-extension (#684)\n\nBumps com.gradle:develocity-maven-extension from 2.3.3 to 2.4.1.\n\n---\nupdated-dependencies:\n- dependency-name: com.gradle:develocity-maven-extension\n  dependency-version: 2.4.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": "50d7ffc12890ff1da0f44a6f97f075d9a9fbe728",
      "tree": "9188d7d1f1c0093073ccf9be25dfbea120206e8e",
      "parents": [
        "b60c40e39fbe49de2eb5997a71f6992e0501ccb6"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu May 28 08:43:21 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 28 08:43:21 2026 +0200"
      },
      "message": "chore(deps): bump com.google.errorprone:error_prone_annotations (#685)\n\nBumps [com.google.errorprone:error_prone_annotations](https://github.com/google/error-prone) from 2.47.0 to 2.49.0.\n- [Release notes](https://github.com/google/error-prone/releases)\n- [Commits](https://github.com/google/error-prone/compare/v2.47.0...v2.49.0)\n\n---\nupdated-dependencies:\n- dependency-name: com.google.errorprone:error_prone_annotations\n  dependency-version: 2.49.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": "b60c40e39fbe49de2eb5997a71f6992e0501ccb6",
      "tree": "35f8dde14236f02ffcca9f1d985c7ee35f0535ad",
      "parents": [
        "518e1d79cf87eb58ae32bbf539854fba818425cc"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu May 28 08:43:11 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 28 08:43:11 2026 +0200"
      },
      "message": "chore(deps): bump com.hivemq:hivemq-mqtt-client from 1.3.12 to 1.3.14 (#686)\n\nBumps [com.hivemq:hivemq-mqtt-client](https://github.com/hivemq/hivemq-mqtt-client) from 1.3.12 to 1.3.14.\n- [Release notes](https://github.com/hivemq/hivemq-mqtt-client/releases)\n- [Changelog](https://github.com/hivemq/hivemq-mqtt-client/blob/master/RELEASE.md)\n- [Commits](https://github.com/hivemq/hivemq-mqtt-client/compare/v1.3.12...v1.3.14)\n\n---\nupdated-dependencies:\n- dependency-name: com.hivemq:hivemq-mqtt-client\n  dependency-version: 1.3.14\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": "518e1d79cf87eb58ae32bbf539854fba818425cc",
      "tree": "4054e8d2beea9ec11d2533e9d69f99add3554752",
      "parents": [
        "4720a5b11dd95b4f72af6c04f6522fb6a4c958a0"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed May 27 09:43:19 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 27 09:43:19 2026 +0200"
      },
      "message": "chore(deps): bump org.bouncycastle:bcmail-jdk18on from 1.83 to 1.84 (#681)\n\nBumps [org.bouncycastle:bcmail-jdk18on](https://github.com/bcgit/bc-java) from 1.83 to 1.84.\n- [Changelog](https://github.com/bcgit/bc-java/blob/main/docs/releasenotes.html)\n- [Commits](https://github.com/bcgit/bc-java/commits)\n\n---\nupdated-dependencies:\n- dependency-name: org.bouncycastle:bcmail-jdk18on\n  dependency-version: \u00271.84\u0027\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": "4720a5b11dd95b4f72af6c04f6522fb6a4c958a0",
      "tree": "c2db2c73d62dd4875c7d750748137c6ec87d41c3",
      "parents": [
        "2771c9133bb4a8a49c42bf9396500cc47ee28fd7"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed May 27 09:43:08 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 27 09:43:08 2026 +0200"
      },
      "message": "chore(deps): bump kafka.version from 4.2.0 to 4.3.0 (#680)\n\nBumps `kafka.version` from 4.2.0 to 4.3.0.\n\nUpdates `org.apache.kafka:kafka-clients` from 4.2.0 to 4.3.0\n\nUpdates `org.apache.kafka:connect-api` from 4.2.0 to 4.3.0\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.kafka:kafka-clients\n  dependency-version: 4.3.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: org.apache.kafka:connect-api\n  dependency-version: 4.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\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "2771c9133bb4a8a49c42bf9396500cc47ee28fd7",
      "tree": "b3bf1193c5dad6432ddb2976a5c6f325ddaa7fba",
      "parents": [
        "1e14a815b9e6ecee5a6385e7de134c928e7851cf"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed May 27 09:42:57 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 27 09:42:57 2026 +0200"
      },
      "message": "chore(deps): bump com.fasterxml.jackson.core:jackson-databind (#679)\n\nBumps [com.fasterxml.jackson.core:jackson-databind](https://github.com/FasterXML/jackson) from 2.21.0 to 2.21.3.\n- [Commits](https://github.com/FasterXML/jackson/commits)\n\n---\nupdated-dependencies:\n- dependency-name: com.fasterxml.jackson.core:jackson-databind\n  dependency-version: 2.21.3\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "1e14a815b9e6ecee5a6385e7de134c928e7851cf",
      "tree": "e48eeee119ea4e9a48d412942988ff43de593241",
      "parents": [
        "2127ee482f0dc5d6d729e32d666ab73fe27d9863"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed May 27 09:42:46 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 27 09:42:46 2026 +0200"
      },
      "message": "chore(deps): bump org.junit:junit-bom from 6.0.3 to 6.1.0 (#678)\n\nBumps [org.junit:junit-bom](https://github.com/junit-team/junit-framework) from 6.0.3 to 6.1.0.\n- [Release notes](https://github.com/junit-team/junit-framework/releases)\n- [Commits](https://github.com/junit-team/junit-framework/compare/r6.0.3...r6.1.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.junit:junit-bom\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": "2127ee482f0dc5d6d729e32d666ab73fe27d9863",
      "tree": "b598635ee96d18f02f63050d7bfd0f1039a2f1d0",
      "parents": [
        "f41ad36e0777e0be42704376f2f716e62f61a810"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue May 26 09:51:05 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue May 26 09:51:05 2026 +0200"
      },
      "message": "chore(deps): bump github.com/gdamore/tcell/v2 in /plc4go (#673)\n\nBumps [github.com/gdamore/tcell/v2](https://github.com/gdamore/tcell) from 2.13.9 to 2.13.10.\n- [Release notes](https://github.com/gdamore/tcell/releases)\n- [Changelog](https://github.com/gdamore/tcell/blob/main/CHANGESv3.md)\n- [Commits](https://github.com/gdamore/tcell/compare/v2.13.9...v2.13.10)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/gdamore/tcell/v2\n  dependency-version: 2.13.10\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "f41ad36e0777e0be42704376f2f716e62f61a810",
      "tree": "1daf93d2a8f3467b86242f1c699a00b6f80c6c07",
      "parents": [
        "fae3cc0da1daae034c7039efe2e8681664131895"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue May 26 09:50:42 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue May 26 09:50:42 2026 +0200"
      },
      "message": "chore(deps): bump commons-io:commons-io from 2.21.0 to 2.22.0 (#674)\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\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "fae3cc0da1daae034c7039efe2e8681664131895",
      "tree": "0fa822881f7171bcf7c0e0bc21481854dc278ad6",
      "parents": [
        "5909f53042bf794c7924d842301767773eff4b7a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue May 26 09:50:29 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue May 26 09:50:29 2026 +0200"
      },
      "message": "chore(deps): bump org.bouncycastle:bcpkix-jdk18on from 1.83 to 1.84 (#675)\n\nBumps [org.bouncycastle:bcpkix-jdk18on](https://github.com/bcgit/bc-java) from 1.83 to 1.84.\n- [Changelog](https://github.com/bcgit/bc-java/blob/main/docs/releasenotes.html)\n- [Commits](https://github.com/bcgit/bc-java/commits)\n\n---\nupdated-dependencies:\n- dependency-name: org.bouncycastle:bcpkix-jdk18on\n  dependency-version: \u00271.84\u0027\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": "5909f53042bf794c7924d842301767773eff4b7a",
      "tree": "4618010f9a4a042d25b93b16c6b6bc68aac530cc",
      "parents": [
        "cb6eae7f5492d3715a2ef7675c6e02ef09f6bc72"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue May 26 09:50:16 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue May 26 09:50:16 2026 +0200"
      },
      "message": "chore(deps): bump io.nats:jnats from 2.25.1 to 2.25.3 (#676)\n\nBumps [io.nats:jnats](https://github.com/nats-io/nats.java) from 2.25.1 to 2.25.3.\n- [Release notes](https://github.com/nats-io/nats.java/releases)\n- [Changelog](https://github.com/nats-io/nats.java/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/nats-io/nats.java/compare/2.25.1...2.25.3)\n\n---\nupdated-dependencies:\n- dependency-name: io.nats:jnats\n  dependency-version: 2.25.3\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "cb6eae7f5492d3715a2ef7675c6e02ef09f6bc72",
      "tree": "36f16d7e41566b03fc1dd758a0acbf0591182940",
      "parents": [
        "dd2c0ca4ec2b5cf387a5d0336308d94165c137ea"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue May 26 09:50:05 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue May 26 09:50:05 2026 +0200"
      },
      "message": "chore(deps): bump commons-codec:commons-codec from 1.21.0 to 1.22.0 (#677)\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\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "dd2c0ca4ec2b5cf387a5d0336308d94165c137ea",
      "tree": "03ee4c7f18c326607d5b317acf8ee891b8f08bb2",
      "parents": [
        "2c4a8c2512edf5c50ad7c1fb0683309fe6c03ef0"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri May 22 09:54:17 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 22 09:54:17 2026 +0200"
      },
      "message": "chore(deps): bump com.gradle:common-custom-user-data-maven-extension (#669)\n\nBumps [com.gradle:common-custom-user-data-maven-extension](https://github.com/gradle/common-custom-user-data-maven-extension) from 2.1.0 to 2.2.0.\n- [Release notes](https://github.com/gradle/common-custom-user-data-maven-extension/releases)\n- [Commits](https://github.com/gradle/common-custom-user-data-maven-extension/compare/v2.1.0...v2.2.0)\n\n---\nupdated-dependencies:\n- dependency-name: com.gradle:common-custom-user-data-maven-extension\n  dependency-version: 2.2.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "2c4a8c2512edf5c50ad7c1fb0683309fe6c03ef0",
      "tree": "86f4eb6c7cae8a27e8c424ce2343cfd86f5d5219",
      "parents": [
        "35ebb6a8b2d3115f5c5d881d1514a41f13213112"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri May 22 09:54:06 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 22 09:54:06 2026 +0200"
      },
      "message": "chore(deps): bump github.com/gopacket/gopacket in /plc4go (#667)\n\nBumps [github.com/gopacket/gopacket](https://github.com/gopacket/gopacket) from 1.5.0 to 1.6.0.\n- [Release notes](https://github.com/gopacket/gopacket/releases)\n- [Commits](https://github.com/gopacket/gopacket/compare/v1.5.0...v1.6.0)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/gopacket/gopacket\n  dependency-version: 1.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\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "35ebb6a8b2d3115f5c5d881d1514a41f13213112",
      "tree": "50447b1fdaf5242ce75643a18375479acf353c2e",
      "parents": [
        "0e8e2dfae66fe2960b177d2627493a66536e186b"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri May 22 09:47:47 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 22 09:47:47 2026 +0200"
      },
      "message": "chore(deps): bump ch.qos.logback:logback-core from 1.5.28 to 1.5.32 (#668)\n\nBumps [ch.qos.logback:logback-core](https://github.com/qos-ch/logback) from 1.5.28 to 1.5.32.\n- [Release notes](https://github.com/qos-ch/logback/releases)\n- [Commits](https://github.com/qos-ch/logback/compare/v_1.5.28...v_1.5.32)\n\n---\nupdated-dependencies:\n- dependency-name: ch.qos.logback:logback-core\n  dependency-version: 1.5.32\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": "0e8e2dfae66fe2960b177d2627493a66536e186b",
      "tree": "1702c1437f314d02b86d79c3e1a6d2d6d3c54e81",
      "parents": [
        "208270e96edae26946b8a0a731533e30d760d393"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri May 22 09:47:34 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 22 09:47:34 2026 +0200"
      },
      "message": "chore(deps): bump com.microsoft.azure.sdk.iot:iot-device-client (#671)\n\nBumps [com.microsoft.azure.sdk.iot:iot-device-client](https://github.com/Azure/azure-iot-sdk-java) from 2.5.0 to 2.5.1.\n- [Release notes](https://github.com/Azure/azure-iot-sdk-java/releases)\n- [Commits](https://github.com/Azure/azure-iot-sdk-java/commits)\n\n---\nupdated-dependencies:\n- dependency-name: com.microsoft.azure.sdk.iot:iot-device-client\n  dependency-version: 2.5.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": "208270e96edae26946b8a0a731533e30d760d393",
      "tree": "99cbf21444b19a09cc15e55709631853b3bd0a28",
      "parents": [
        "c57cec946f401df23d0d71c78e6920d29650aa80"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri May 22 09:47:02 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 22 09:47:02 2026 +0200"
      },
      "message": "chore(deps): bump org.eclipse.jetty:jetty-util from 12.1.6 to 12.1.9 (#672)\n\nBumps org.eclipse.jetty:jetty-util from 12.1.6 to 12.1.9.\n\n---\nupdated-dependencies:\n- dependency-name: org.eclipse.jetty:jetty-util\n  dependency-version: 12.1.9\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": "c57cec946f401df23d0d71c78e6920d29650aa80",
      "tree": "bcdae797ceb5e790cbc2d902f9a5d5ba593058f8",
      "parents": [
        "1a44e03b1cc3a6ddf2594670af8fc2af9a1135d4"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu May 21 09:55:50 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 21 09:55:50 2026 +0200"
      },
      "message": "chore(deps-dev): bump com.fasterxml.jackson.dataformat:jackson-dataformat-yaml (#662)\n\nBumps [com.fasterxml.jackson.dataformat:jackson-dataformat-yaml](https://github.com/FasterXML/jackson-dataformats-text) from 2.21.0 to 2.21.3.\n- [Commits](https://github.com/FasterXML/jackson-dataformats-text/compare/jackson-dataformats-text-2.21.0...jackson-dataformats-text-2.21.3)\n\n---\nupdated-dependencies:\n- dependency-name: com.fasterxml.jackson.dataformat:jackson-dataformat-yaml\n  dependency-version: 2.21.3\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": "1a44e03b1cc3a6ddf2594670af8fc2af9a1135d4",
      "tree": "09e491a4b2bb7c0538ece1d55e1d2e95fcdfd34e",
      "parents": [
        "bcac4f22b6c4aa2a590b01bd462f525160e4195f"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu May 21 09:55:37 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 21 09:55:37 2026 +0200"
      },
      "message": "chore(deps): bump com.influxdb:influxdb-client-java from 7.5.0 to 8.0.0 (#663)\n\nBumps [com.influxdb:influxdb-client-java](https://github.com/influxdata/influxdb-client-java) from 7.5.0 to 8.0.0.\n- [Release notes](https://github.com/influxdata/influxdb-client-java/releases)\n- [Changelog](https://github.com/influxdata/influxdb-client-java/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/influxdata/influxdb-client-java/compare/v7.5.0...v8.0.0)\n\n---\nupdated-dependencies:\n- dependency-name: com.influxdb:influxdb-client-java\n  dependency-version: 8.0.0\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "bcac4f22b6c4aa2a590b01bd462f525160e4195f",
      "tree": "f391abf45998787238190d7e3aba27e4d0bdd6df",
      "parents": [
        "ece3e78010a1b410f738f3718c4256123524bbba"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu May 21 09:55:24 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 21 09:55:24 2026 +0200"
      },
      "message": "chore(deps): bump org.bouncycastle:bcprov-jdk18on from 1.83 to 1.84 (#664)\n\nBumps [org.bouncycastle:bcprov-jdk18on](https://github.com/bcgit/bc-java) from 1.83 to 1.84.\n- [Changelog](https://github.com/bcgit/bc-java/blob/main/docs/releasenotes.html)\n- [Commits](https://github.com/bcgit/bc-java/commits)\n\n---\nupdated-dependencies:\n- dependency-name: org.bouncycastle:bcprov-jdk18on\n  dependency-version: \u00271.84\u0027\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": "ece3e78010a1b410f738f3718c4256123524bbba",
      "tree": "2a470fd8cbbd1f5afae56dd61a170b64690610e1",
      "parents": [
        "bc609937c7098739cd6c9f8f94e4e4693b637584"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu May 21 09:55:07 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 21 09:55:07 2026 +0200"
      },
      "message": "chore(deps-dev): bump org.junit.jupiter:junit-jupiter-engine (#665)\n\nBumps [org.junit.jupiter:junit-jupiter-engine](https://github.com/junit-team/junit-framework) from 6.0.2 to 6.1.0.\n- [Release notes](https://github.com/junit-team/junit-framework/releases)\n- [Commits](https://github.com/junit-team/junit-framework/compare/r6.0.2...r6.1.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.junit.jupiter:junit-jupiter-engine\n  dependency-version: 6.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\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "bc609937c7098739cd6c9f8f94e4e4693b637584",
      "tree": "3a9746dcfb2f8108c4777b8f823562b9c5baf423",
      "parents": [
        "3e8ea50f1f10df6b668a8c4051505e58db62926b"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu May 21 09:54:58 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 21 09:54:58 2026 +0200"
      },
      "message": "chore(deps): bump slf4j.version from 2.0.17 to 2.0.18 (#666)\n\nBumps `slf4j.version` 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:log4j-over-slf4j` 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:production\n  update-type: version-update:semver-patch\n- dependency-name: org.slf4j:log4j-over-slf4j\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\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "3e8ea50f1f10df6b668a8c4051505e58db62926b",
      "tree": "fa284a0a2ea5d66badb60632ce47eab58d235988",
      "parents": [
        "4c5b24f8da5d6b5df06b1badcd9a771c4a062a98"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed May 20 09:59:43 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 20 09:59:43 2026 +0200"
      },
      "message": "chore(deps): bump org.mockito:mockito-core from 5.21.0 to 5.23.0 (#657)\n\nBumps [org.mockito:mockito-core](https://github.com/mockito/mockito) from 5.21.0 to 5.23.0.\n- [Release notes](https://github.com/mockito/mockito/releases)\n- [Commits](https://github.com/mockito/mockito/compare/v5.21.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: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": "4c5b24f8da5d6b5df06b1badcd9a771c4a062a98",
      "tree": "51aaadf017643841ae9aaa46c415da6d8e42847c",
      "parents": [
        "c23a8b8043f4d4d445f01d8dfc0f69955ef33b6f"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed May 20 09:59:31 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 20 09:59:31 2026 +0200"
      },
      "message": "chore(deps): bump kotlin.version from 2.3.10 to 2.3.21 (#658)\n\nBumps `kotlin.version` from 2.3.10 to 2.3.21.\n\nUpdates `org.jetbrains.kotlin:kotlin-stdlib` from 2.3.10 to 2.3.21\n- [Release notes](https://github.com/JetBrains/kotlin/releases)\n- [Changelog](https://github.com/JetBrains/kotlin/blob/master/ChangeLog.md)\n- [Commits](https://github.com/JetBrains/kotlin/compare/v2.3.10...v2.3.21)\n\nUpdates `org.jetbrains.kotlin:kotlin-maven-plugin` from 2.3.10 to 2.3.21\n\n---\nupdated-dependencies:\n- dependency-name: org.jetbrains.kotlin:kotlin-stdlib\n  dependency-version: 2.3.21\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n- dependency-name: org.jetbrains.kotlin:kotlin-maven-plugin\n  dependency-version: 2.3.21\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": "c23a8b8043f4d4d445f01d8dfc0f69955ef33b6f",
      "tree": "e324922479c6e5cad8bb24d0c9767076cb02ceb7",
      "parents": [
        "35ae8385223631b60fd4edb907b6006514cc1ac5"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed May 20 09:59:17 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 20 09:59:17 2026 +0200"
      },
      "message": "chore(deps): bump kafka.version from 4.1.1 to 4.2.0 (#659)\n\nBumps `kafka.version` from 4.1.1 to 4.2.0.\n\nUpdates `org.apache.kafka:kafka-clients` from 4.1.1 to 4.2.0\n\nUpdates `org.apache.kafka:connect-api` from 4.1.1 to 4.2.0\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.kafka:kafka-clients\n  dependency-version: 4.2.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: org.apache.kafka:connect-api\n  dependency-version: 4.2.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "35ae8385223631b60fd4edb907b6006514cc1ac5",
      "tree": "593803bcbafc3af82fc9a81cd8cafa9f361a6474",
      "parents": [
        "561978949a6dc44fe9cf8ecd04c2a0d59903a1a1"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed May 20 09:59:06 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 20 09:59:06 2026 +0200"
      },
      "message": "chore(deps): bump org.apache.nifi:nifi-nar-maven-plugin (#660)\n\nBumps org.apache.nifi:nifi-nar-maven-plugin from 2.2.0 to 2.3.0.\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.nifi:nifi-nar-maven-plugin\n  dependency-version: 2.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\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "561978949a6dc44fe9cf8ecd04c2a0d59903a1a1",
      "tree": "777a8d7095b75153406176b555e8a351f1afdea5",
      "parents": [
        "ba302f67ab8bea2096a9b340facb8bf7e6876172"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed May 20 09:58:45 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 20 09:58:45 2026 +0200"
      },
      "message": "chore(deps): bump org.apache.rat:apache-rat-plugin from 0.17 to 0.18 (#661)\n\nBumps org.apache.rat:apache-rat-plugin from 0.17 to 0.18.\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.rat:apache-rat-plugin\n  dependency-version: \u00270.18\u0027\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": "ba302f67ab8bea2096a9b340facb8bf7e6876172",
      "tree": "91ab52077cf4a31726856955263c836707d96250",
      "parents": [
        "03ac37021425ddb4ba74bc0aa93f737ad7bd51c7"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue May 19 17:35:04 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue May 19 17:35:04 2026 +0200"
      },
      "message": "chore(deps): bump org.junit:junit-bom from 6.0.2 to 6.0.3 (#652)\n\nBumps [org.junit:junit-bom](https://github.com/junit-team/junit-framework) from 6.0.2 to 6.0.3.\n- [Release notes](https://github.com/junit-team/junit-framework/releases)\n- [Commits](https://github.com/junit-team/junit-framework/compare/r6.0.2...r6.0.3)\n\n---\nupdated-dependencies:\n- dependency-name: org.junit:junit-bom\n  dependency-version: 6.0.3\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "03ac37021425ddb4ba74bc0aa93f737ad7bd51c7",
      "tree": "678c3436192d7e8b6dce40d0bc0e01910b997802",
      "parents": [
        "18d7c47014e529885d51118a4822035f5df3cc4b"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue May 19 17:34:47 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue May 19 17:34:47 2026 +0200"
      },
      "message": "chore(deps): bump com.google.code.gson:gson from 2.13.2 to 2.14.0 (#653)\n\nBumps [com.google.code.gson:gson](https://github.com/google/gson) from 2.13.2 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-parent-2.13.2...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\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "18d7c47014e529885d51118a4822035f5df3cc4b",
      "tree": "f53b82b89270583c4efa9095a01cda23f5de919b",
      "parents": [
        "5be6bef003573a1e17880bccd5b6d2cb6b09c48f"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon May 18 10:40:24 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 18 10:40:24 2026 +0200"
      },
      "message": "chore(deps): bump ch.qos.logback:logback-classic from 1.5.28 to 1.5.29 (#631)\n\nBumps [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from 1.5.28 to 1.5.29.\n- [Release notes](https://github.com/qos-ch/logback/releases)\n- [Commits](https://github.com/qos-ch/logback/compare/v_1.5.28...v_1.5.29)\n\n---\nupdated-dependencies:\n- dependency-name: ch.qos.logback:logback-classic\n  dependency-version: 1.5.29\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": "5be6bef003573a1e17880bccd5b6d2cb6b09c48f",
      "tree": "38251a1745048e71bf1484f00b3b692db8937165",
      "parents": [
        "13c6746b940358e4764db65215c79ebaac9a6217"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon May 18 10:40:14 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 18 10:40:14 2026 +0200"
      },
      "message": "chore(deps): bump actions/github-script from 8.0.0 to 9.0.0 (#640)\n\nBumps [actions/github-script](https://github.com/actions/github-script) from 8.0.0 to 9.0.0.\n- [Release notes](https://github.com/actions/github-script/releases)\n- [Commits](https://github.com/actions/github-script/compare/v8.0.0...v9.0.0)\n\n---\nupdated-dependencies:\n- dependency-name: actions/github-script\n  dependency-version: 9.0.0\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "13c6746b940358e4764db65215c79ebaac9a6217",
      "tree": "4e5e832b7b2b22cc516ebcd4f4b7eb23f0160d1d",
      "parents": [
        "bc9ec083ad6e1f64673d0e5eddb4443139dc9c71"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon May 18 10:40:02 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 18 10:40:02 2026 +0200"
      },
      "message": "chore(deps): bump io.vavr:vavr from 0.11.0 to 1.0.0 (#632)\n\nBumps [io.vavr:vavr](https://github.com/vavr-io/vavr) from 0.11.0 to 1.0.0.\n- [Release notes](https://github.com/vavr-io/vavr/releases)\n- [Commits](https://github.com/vavr-io/vavr/compare/v0.11.0...v1.0.0)\n\n---\nupdated-dependencies:\n- dependency-name: io.vavr:vavr\n  dependency-version: 1.0.0\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "bc9ec083ad6e1f64673d0e5eddb4443139dc9c71",
      "tree": "d65aea073ade2b22d609a7560728f58e4428443d",
      "parents": [
        "3bab33cf7d8ea97e614639137d53c79a59c3dd1f"
      ],
      "author": {
        "name": "The Apache Software Foundation",
        "email": "root-asf-gitbox-commits@apache.org",
        "time": "Mon May 18 03:39:21 2026 -0500"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 18 10:39:21 2026 +0200"
      },
      "message": "chore: Set up default protection ruleset for default and release branches (#651)"
    },
    {
      "commit": "3bab33cf7d8ea97e614639137d53c79a59c3dd1f",
      "tree": "56c565b0afb3f2c9ebe9811486342a9fd693efe5",
      "parents": [
        "86de2942ba69c622d748cd59cb626285112dd00d"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Wed May 13 09:14:42 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 13 09:14:42 2026 +0200"
      },
      "message": "chore(deps): bump BobAnkh/auto-generate-changelog from 1.3.1 to 1.3.2 (#650)\n\nBumps [BobAnkh/auto-generate-changelog](https://github.com/bobankh/auto-generate-changelog) from 1.3.1 to 1.3.2.\n- [Release notes](https://github.com/bobankh/auto-generate-changelog/releases)\n- [Changelog](https://github.com/BobAnkh/auto-generate-changelog/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/bobankh/auto-generate-changelog/compare/v1.3.1...v1.3.2)\n\n---\nupdated-dependencies:\n- dependency-name: BobAnkh/auto-generate-changelog\n  dependency-version: 1.3.2\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "86de2942ba69c622d748cd59cb626285112dd00d",
      "tree": "cffa55d71a1dad696a74fd82a0af06b41de71d06",
      "parents": [
        "db361b5078bcd430fbadf0dc953d740e73786b99"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon May 11 09:10:22 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 11 09:10:22 2026 +0200"
      },
      "message": "chore(deps): bump actions/dependency-review-action from 4 to 5 (#648)\n\nBumps [actions/dependency-review-action](https://github.com/actions/dependency-review-action) from 4 to 5.\n- [Release notes](https://github.com/actions/dependency-review-action/releases)\n- [Commits](https://github.com/actions/dependency-review-action/compare/v4...v5)\n\n---\nupdated-dependencies:\n- dependency-name: actions/dependency-review-action\n  dependency-version: \u00275\u0027\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e\nCo-authored-by: dependabot[bot] \u003c49699333+dependabot[bot]@users.noreply.github.com\u003e"
    },
    {
      "commit": "db361b5078bcd430fbadf0dc953d740e73786b99",
      "tree": "8cfed947d1cad946473aacc5582d7a7d556c584b",
      "parents": [
        "ec409e2b0dd4b30de0becbd214966ec5f403eb5a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Apr 21 08:24:26 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Apr 21 08:24:26 2026 +0200"
      },
      "message": "chore(deps): bump github.com/gdamore/tcell/v2 in /plc4go (#644)\n\nBumps [github.com/gdamore/tcell/v2](https://github.com/gdamore/tcell) from 2.13.8 to 2.13.9.\n- [Release notes](https://github.com/gdamore/tcell/releases)\n- [Changelog](https://github.com/gdamore/tcell/blob/main/CHANGESv3.md)\n- [Commits](https://github.com/gdamore/tcell/compare/v2.13.8...v2.13.9)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/gdamore/tcell/v2\n  dependency-version: 2.13.9\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": "ec409e2b0dd4b30de0becbd214966ec5f403eb5a",
      "tree": "1c00e74fab49bc81967539d3ccabee8d53e43a6b",
      "parents": [
        "32a60d1c0924038edc7f551224f3eae6db54cbda"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Apr 21 08:24:15 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Apr 21 08:24:15 2026 +0200"
      },
      "message": "chore(deps): bump github.com/rs/zerolog from 1.35.0 to 1.35.1 in /plc4go (#645)\n\nBumps [github.com/rs/zerolog](https://github.com/rs/zerolog) from 1.35.0 to 1.35.1.\n- [Commits](https://github.com/rs/zerolog/compare/v1.35.0...v1.35.1)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/rs/zerolog\n  dependency-version: 1.35.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": "32a60d1c0924038edc7f551224f3eae6db54cbda",
      "tree": "cec025a001d27ba56b90fc468cbbff0567d74e7e",
      "parents": [
        "a5cc82c7feba48aa5ab57683b30b7f974a2598cb"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Apr 07 12:41:34 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Apr 07 12:41:34 2026 +0200"
      },
      "message": "chore(deps): bump github.com/rs/zerolog from 1.34.0 to 1.35.0 in /plc4go (#639)\n\nBumps [github.com/rs/zerolog](https://github.com/rs/zerolog) from 1.34.0 to 1.35.0.\n- [Commits](https://github.com/rs/zerolog/compare/v1.34.0...v1.35.0)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/rs/zerolog\n  dependency-version: 1.35.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": "a5cc82c7feba48aa5ab57683b30b7f974a2598cb",
      "tree": "0c5dbc510a7176c6e20614c50d81f68a3d7d3f6e",
      "parents": [
        "8cf62e46e121d31339d7ea0bc69ba59485b5e708"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Mar 23 08:32:12 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Mar 23 08:32:12 2026 +0100"
      },
      "message": "chore(deps): bump dorny/test-reporter from 2 to 3 (#637)\n\nBumps [dorny/test-reporter](https://github.com/dorny/test-reporter) from 2 to 3.\n- [Release notes](https://github.com/dorny/test-reporter/releases)\n- [Changelog](https://github.com/dorny/test-reporter/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/dorny/test-reporter/compare/v2...v3)\n\n---\nupdated-dependencies:\n- dependency-name: dorny/test-reporter\n  dependency-version: \u00273\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": "8cf62e46e121d31339d7ea0bc69ba59485b5e708",
      "tree": "45b1724c17f25ff8a15c221cdd9c6f771db4f1a4",
      "parents": [
        "39d90313125cc47db5d2049509a080a1437ea992"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Mar 23 08:32:00 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Mar 23 08:32:00 2026 +0100"
      },
      "message": "chore(deps): bump github.com/fatih/color in /plc4go (#638)\n\nBumps [github.com/fatih/color](https://github.com/fatih/color) from 1.18.0 to 1.19.0.\n- [Release notes](https://github.com/fatih/color/releases)\n- [Commits](https://github.com/fatih/color/compare/v1.18.0...v1.19.0)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/fatih/color\n  dependency-version: 1.19.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": "39d90313125cc47db5d2049509a080a1437ea992",
      "tree": "d9e1c735e24f6558d16a37bb1d7e5d27326f387f",
      "parents": [
        "5f9bb1524774960fd33b2a08b86dfe70a8ebb155"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Mar 16 14:31:48 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Mar 16 14:31:48 2026 +0100"
      },
      "message": "chore(deps): bump release-drafter/release-drafter from 6 to 7 (#635)\n\nBumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 6 to 7.\n- [Release notes](https://github.com/release-drafter/release-drafter/releases)\n- [Commits](https://github.com/release-drafter/release-drafter/compare/v6...v7)\n\n---\nupdated-dependencies:\n- dependency-name: release-drafter/release-drafter\n  dependency-version: \u00277\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": "5f9bb1524774960fd33b2a08b86dfe70a8ebb155",
      "tree": "bb1fa036d2aaf3196d6ec17f75c7ec601226f5fc",
      "parents": [
        "9735410ad92827c4290aebdc7ec267f22c4d6635"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Feb 27 14:00:41 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Feb 27 14:00:41 2026 +0100"
      },
      "message": "chore(deps): bump actions/upload-artifact from 6 to 7 (#634)\n\nBumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 6 to 7.\n- [Release notes](https://github.com/actions/upload-artifact/releases)\n- [Commits](https://github.com/actions/upload-artifact/compare/v6...v7)\n\n---\nupdated-dependencies:\n- dependency-name: actions/upload-artifact\n  dependency-version: \u00277\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"
    }
  ],
  "next": "9735410ad92827c4290aebdc7ec267f22c4d6635"
}
