)]}'
{
  "log": [
    {
      "commit": "4af262d177eaf5053ca9d00efd46f79e20490244",
      "tree": "5c575718304daf14774d430c2bd2b4484f0c67f6",
      "parents": [
        "c1c3338fd31c6c88f3371404745cbe0ae637275b"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Sat Aug 22 20:44:47 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 22 20:44:47 2026 +0200"
      },
      "message": "Remove DRPC per-function request queues once they are empty (#8985)"
    },
    {
      "commit": "c1c3338fd31c6c88f3371404745cbe0ae637275b",
      "tree": "790e405fdf45c4cffef873be3d17df3f4a2b4021",
      "parents": [
        "b7865e47abadb315556a694dcdbb7a8568bae3ee"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Sat Aug 22 19:41:23 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 22 19:41:23 2026 +0200"
      },
      "message": "Generate tuple tree ids from a key stream instead of a recoverable linear congruential generator (#8989)"
    },
    {
      "commit": "b7865e47abadb315556a694dcdbb7a8568bae3ee",
      "tree": "764ecfadd09e3d43fb27ed714a1f3ee628be3f50",
      "parents": [
        "d77982d712c30099f81388d2c70668d571027ab4"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Sat Aug 22 19:29:55 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 22 19:29:55 2026 +0200"
      },
      "message": "Apply the configured log user and group lists to daemon log requests (#8973)"
    },
    {
      "commit": "d77982d712c30099f81388d2c70668d571027ab4",
      "tree": "786b96ac65dd2e5844025ba0dedc3cdc0460ae8f",
      "parents": [
        "ce21f7990363bad83861f2e0775533d101c3c061"
      ],
      "author": {
        "name": "github-actions[bot]",
        "email": "41898282+github-actions[bot]@users.noreply.github.com",
        "time": "Sat Aug 22 19:25:05 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 22 19:25:05 2026 +0200"
      },
      "message": "Regenerate license files after dependency changes (#8996)\n\nSigned-off-by: GitHub \u003cnoreply@github.com\u003e\nCo-authored-by: rzo1 \u003crzo1@users.noreply.github.com\u003e"
    },
    {
      "commit": "ce21f7990363bad83861f2e0775533d101c3c061",
      "tree": "3efbcad59df2611e5738e8a28a20d0142a274cd4",
      "parents": [
        "1d68ef649fd332dafbaebb3ade7ac06bcc1d0ccb"
      ],
      "author": {
        "name": "Valerio Baldazzi",
        "email": "118385498+ZBaldi@users.noreply.github.com",
        "time": "Sat Aug 22 19:24:32 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 22 19:24:32 2026 +0200"
      },
      "message": "BugFix Utils.java (#8972)\n\n* BugFix Utils.java\n\n- fixed bug in findOne overloaded method\n\n* added unit tests"
    },
    {
      "commit": "1d68ef649fd332dafbaebb3ade7ac06bcc1d0ccb",
      "tree": "95932e08d00bfe6b11a6acba3a6b94cde1bed2bc",
      "parents": [
        "ed585b884f4ea218fd002b7ee386acf03b32e5fa"
      ],
      "author": {
        "name": "Gianluca Graziadei",
        "email": "48211703+GGraziadei@users.noreply.github.com",
        "time": "Sat Aug 22 19:17:33 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 22 19:17:33 2026 +0200"
      },
      "message": "Add storm-iceberg module: an Apache Iceberg sink bolt (#8950)\n\n* Add storm-iceberg Trident sink\n\nNew external module writing Trident batches to Apache Iceberg tables\ndirectly from a topology, with exactly-once semantics.\n\nEach batch is committed in a single Iceberg transaction that atomically\nappends the data files and records the transaction id in the table\nproperty storm.trident.\u003ctopologyName\u003e.\u003cpartitionIndex\u003e.last-committed-txid,\nso replayed batches are detected and skipped even across worker crashes\nand commits whose outcome was unknown to the writer.\n\nIncludes:\n- IcebergOptions: catalog properties passed verbatim to Iceberg\u0027s\n  CatalogUtil.buildIcebergCatalog, so any catalog works with its\n  standard keys; file format, target file size and table auto-creation.\n- RecordMapper with a field-name based default doing the standard\n  primitive conversions; required columns without a value fail loudly.\n- Partitioned tables through Iceberg\u0027s fanout writer, one open data file\n  per partition.\n- Per-batch table refresh, so schema and partition spec evolution is\n  picked up without restarting the workers.\n- Metrics-v2 instrumentation: records written, data files and bytes\n  committed, commit latency, commit failures, skipped replays.\n- A shutdown hook releasing the catalog client, since Trident\u0027s State\n  has no lifecycle callback.\n- Documentation and two runnable example topologies, unpartitioned and\n  partitioned.\n\n* Fix small files problems in apache iceberg ingestion. Estimate bytes ingested per commit.\n\n* Fix examples iceberg (shuffling and max batches pending)\n\n* Add BoundedTupleSpout\n\n* Move to IcebergBolt implementation\n\n* Add dependency management in root pom for a single point of check\n\nThe Iceberg version was pinned in the module\u0027s own properties, where a\nproject-wide dependency bump would not see it. It now lives in the root\npom alongside hadoop.version, with the artifacts managed in\ndependencyManagement; storm-iceberg declares them without versions.\n\nThis does not widen the dependency\u0027s reach. dependencyManagement fixes\nversions without adding dependencies, so modules that do not declare\nIceberg still resolve none of it: storm-client and storm-server both\nshow zero Iceberg artifacts. The direction also prevents it, since\nstorm-iceberg depends on storm-client (provided) and nothing in core\ndepends on storm-iceberg.\n\nNeither binary distribution bundles it either: like every other\nexternal/* connector, storm-iceberg ships only its README in both the\nfull and the lite assembly, so Iceberg reaches only topologies that ask\nfor it.\n\nThe catalog implementations (iceberg-aws, -gcp, -hive, -nessie, ...) are\ndeliberately absent from the managed set: they are supplied by the\ntopology rather than pulled in transitively.\n\n* Add a split writer/committer sink to storm-iceberg\n\nIcebergBolt writes and commits in the same task, so a sink at parallelism N\ncommitting every T seconds produces N/T snapshots per second, each a metadata\nrewrite plus a compare-and-swap on the catalog. Past a certain parallelism the\nonly way to keep that load down is to commit less often, which is to say to\naccept more latency.\n\nIcebergWriterBolt and IcebergCommitterBolt break that coupling. Writers seal\nbatches on the same thresholds IcebergBolt uses, but instead of committing they\nemit one descriptor tuple carrying the batch\u0027s data files, anchored to every\ntuple of the batch, and then ack those tuples. Anchoring preserves the\nguarantee: acking an input after emitting an anchored child does not close the\nspout tuple\u0027s ack tree, so the source advances only once the descriptor is\nacked by the committer. A single committer accumulates descriptors and appends\nthem in one Iceberg commit, so snapshot rate is set by the group-commit cadence\nrather than by writer parallelism.\n\nMeasured on a 6-way sink at a 10 s cadence: 115 snapshots with IcebergBolt\nagainst 20 with the split sink, for the same 360k rows, the same 115 data\nfiles and the same visibility latency (p50 5,454 ms against 5,506 ms).\n\nSupporting changes:\n\n- DataFileCodec is extracted from CommitWal, since the descriptor tuples and\n  the WAL now share one data-file serialisation.\n- The commit WAL is keyed by component and task index rather than task id, so\n  a writer and a committer in the same topology cannot collide and a recovered\n  task finds its own entries.\n- IcebergOptions gains group-commit thresholds (interval and max data files)\n  and a per-component tick interval, so writer and committer can be paced\n  independently.\n- Seal metrics and pending-commit gauges, so a stalled committer is visible.\n- Pending state stays visible for the duration of a commit, and write errors\n  fail fast rather than being deferred to the seal.\n- A split-sink example topology, with both shapes documented.\n\n* Harden storm-iceberg failure paths and simplify commit recovery"
    },
    {
      "commit": "ed585b884f4ea218fd002b7ee386acf03b32e5fa",
      "tree": "84888be0c024be327808b7245861a00aab1573b7",
      "parents": [
        "059ebea9c482aad91d0c1dc13623a1a0438c72d7"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Wed Aug 19 08:35:10 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Sat Aug 22 19:09:41 2026 +0200"
      },
      "message": "Set the CORS filter credentials parameter explicitly instead of a header name that the filter ignores\n"
    },
    {
      "commit": "059ebea9c482aad91d0c1dc13623a1a0438c72d7",
      "tree": "6703038606c783efee43dccc905d926a34b7ad99",
      "parents": [
        "ee97546fb2957982f93933ad236d9b248488a8e4"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Sat Aug 22 19:05:57 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Sat Aug 22 19:08:15 2026 +0200"
      },
      "message": "Document that an unset scheduler strategy whitelist no longer allows every strategy class\n"
    },
    {
      "commit": "ee97546fb2957982f93933ad236d9b248488a8e4",
      "tree": "9ae2c8541b3850592eaee86031f1535dcfdb0a4a",
      "parents": [
        "f6b7be390bf59dc8751a64ee10cc76b3e139ca2f"
      ],
      "author": {
        "name": "Gianluca Graziadei",
        "email": "graziadei.gianluca@gmail.com",
        "time": "Sat Aug 22 13:47:38 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Sat Aug 22 19:03:10 2026 +0200"
      },
      "message": "Decode netty server frames only after the handshake completes\n"
    },
    {
      "commit": "f6b7be390bf59dc8751a64ee10cc76b3e139ca2f",
      "tree": "a4726bb10eb952621561a4945025917f2b0f8117",
      "parents": [
        "27ae976bf962ee8608e3e66e3821e3a52951b79d"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Fri Aug 21 14:25:34 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Sat Aug 22 19:01:04 2026 +0200"
      },
      "message": "Restrict topology scheduler strategies to the shipped strategies when no allowlist is configured\n"
    },
    {
      "commit": "27ae976bf962ee8608e3e66e3821e3a52951b79d",
      "tree": "e489d17658348a3fa8038d8cdcf05b080b005e93",
      "parents": [
        "ea78c5bead8c0d85300cae7f955dd9f20301c3e6"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Fri Aug 21 14:21:44 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Sat Aug 22 18:59:09 2026 +0200"
      },
      "message": "Pass only the required Kafka consumer properties to the spout lag monitor\n"
    },
    {
      "commit": "ea78c5bead8c0d85300cae7f955dd9f20301c3e6",
      "tree": "7c6db19a2e407dce063d5b1318aeae95db9a2c75",
      "parents": [
        "40509245225ae86640ff4a9fda9737ff8d9a1778"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Wed Aug 19 08:36:13 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Sat Aug 22 18:57:40 2026 +0200"
      },
      "message": "Add to instead of replace Jetty\u0027s default TLS exclusions on HTTPS connectors\n"
    },
    {
      "commit": "40509245225ae86640ff4a9fda9737ff8d9a1778",
      "tree": "798e4ba5c7b3911b5b005dc2dcb3974c87314361",
      "parents": [
        "6d36a14d9e871405dee3d1d0ac2db96af97dfb00"
      ],
      "author": {
        "name": "Gianluca Graziadei",
        "email": "graziadei.gianluca@gmail.com",
        "time": "Fri Aug 21 19:42:09 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Sat Aug 22 18:51:42 2026 +0200"
      },
      "message": "Return a normalized copy of the topology conf from Nimbus\n"
    },
    {
      "commit": "6d36a14d9e871405dee3d1d0ac2db96af97dfb00",
      "tree": "ed021031a49831eb2728687485f240aaf317c9b0",
      "parents": [
        "c78ab74621f8dc9e88e706fca66b051be8e0132f"
      ],
      "author": {
        "name": "Gianluca Graziadei",
        "email": "graziadei.gianluca@gmail.com",
        "time": "Fri Aug 21 19:17:48 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Sat Aug 22 18:51:24 2026 +0200"
      },
      "message": "Require Kryo class registration in the state serializer\n\nRegistration is keyed off topology.fall.back.on.java.serialization,\nmatching the tuple path in DefaultKryoFactory. Registers the types Storm\npersists without the component declaring them (byte[], CheckPointState),\nafter the configured registrations so their ids are unaffected.\n\nClears the class resolver\u0027s name caches on reset: Kryo skips that when\nregistration is required, which would desynchronise a second read of\nstate written by an earlier release.\n"
    },
    {
      "commit": "c78ab74621f8dc9e88e706fca66b051be8e0132f",
      "tree": "0f385fba950192a865205bb69418e00b401de524",
      "parents": [
        "54d2c64b7d07f9b642d61d375fca55e1631c8729"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Wed Aug 19 13:07:42 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Sat Aug 22 18:49:03 2026 +0200"
      },
      "message": "Give each uploaded dependency artifact its own blob key instead of reusing a pre-existing blob\n"
    },
    {
      "commit": "54d2c64b7d07f9b642d61d375fca55e1631c8729",
      "tree": "728683f47ed556dc926af16e5e7969172f6aa8b5",
      "parents": [
        "22bd22a6a9c89c23eee8b71a553a1dfcf04929f5"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Fri Aug 21 14:26:54 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Sat Aug 22 18:19:21 2026 +0200"
      },
      "message": "Verify the peer identity of the Netty TLS server the worker client connects to\n"
    },
    {
      "commit": "22bd22a6a9c89c23eee8b71a553a1dfcf04929f5",
      "tree": "d29b4a703d2c457cde4d437506e7364b156594d7",
      "parents": [
        "2d972caa3a4b7534683f0978410aa8f851c1682b"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Wed Aug 19 13:27:11 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Sat Aug 22 18:18:41 2026 +0200"
      },
      "message": "Reject submitted jar locations that are not inside the Nimbus inbox\n"
    },
    {
      "commit": "2d972caa3a4b7534683f0978410aa8f851c1682b",
      "tree": "8251c8c60adbe5ed06131b9b2ae136ea7046b936",
      "parents": [
        "76a59d2a43465424b6e34f269bd188fb4279896b"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Wed Aug 19 08:35:08 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Sat Aug 22 18:17:51 2026 +0200"
      },
      "message": "Stop echoing the request Origin with allow-credentials in logviewer JSON responses\n"
    },
    {
      "commit": "76a59d2a43465424b6e34f269bd188fb4279896b",
      "tree": "045cf7126f8ff8f64ba869ee089c32ced6240315",
      "parents": [
        "ce56aef0251345495d351ab60f1a9d653fb0d5a7"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "rzo1@apache.org",
        "time": "Wed Aug 19 13:20:30 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Sat Aug 22 18:17:17 2026 +0200"
      },
      "message": "Reject blobstore map local names that resolve outside the topology and worker directories\n"
    },
    {
      "commit": "ce56aef0251345495d351ab60f1a9d653fb0d5a7",
      "tree": "7b84ff92a5bcd0344dde54a3bae929106f41e955",
      "parents": [
        "364dd79134b1cfc093d6c8ee8913181cdeb0f736"
      ],
      "author": {
        "name": "Gianluca Graziadei",
        "email": "graziadei.gianluca@gmail.com",
        "time": "Sat Aug 22 12:39:51 2026 +0200"
      },
      "committer": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Sat Aug 22 18:16:46 2026 +0200"
      },
      "message": "Update logging behavior\n"
    },
    {
      "commit": "364dd79134b1cfc093d6c8ee8913181cdeb0f736",
      "tree": "0ba904170b3f73a58b74766cfdaa38d7b17c32b8",
      "parents": [
        "cb8d29b0bdf4b480a35facc67d40f8e605acced2"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Sat Aug 22 18:15:45 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 22 18:15:45 2026 +0200"
      },
      "message": "Reject image tags that are neither mapped nor valid image hashes before building the manifest path (#8983)"
    },
    {
      "commit": "cb8d29b0bdf4b480a35facc67d40f8e605acced2",
      "tree": "1203525a1f75717caf4aae41b216f8001d9f24c7",
      "parents": [
        "c14bfaf217b2160f9688ba48b65f777be619ff08"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Sat Aug 22 18:13:58 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 22 18:13:58 2026 +0200"
      },
      "message": "Change the worker log file permission only for download requests that are served (#8978)"
    },
    {
      "commit": "c14bfaf217b2160f9688ba48b65f777be619ff08",
      "tree": "b744ca50542d6d25b9ceee467d82762286ac705a",
      "parents": [
        "40d14c0041a33da2e203f95805d1b72f2a4676ed"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Sat Aug 22 18:12:29 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 22 18:12:29 2026 +0200"
      },
      "message": "Add ui.enable.jsonp to control JSONP callback wrapping in UI and Logviewer API responses (#8977)"
    },
    {
      "commit": "40d14c0041a33da2e203f95805d1b72f2a4676ed",
      "tree": "cfe790f8e56de26e5c53de34f8bc24c5958bbb3d",
      "parents": [
        "29f9ffb38c7cea0734a50920597ed95a490fdf9c"
      ],
      "author": {
        "name": "Richard Zowalla",
        "email": "13417392+rzo1@users.noreply.github.com",
        "time": "Sat Aug 22 18:11:45 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 22 18:11:45 2026 +0200"
      },
      "message": "Return only the log files the requesting user may access from the log file listing (#8974)"
    },
    {
      "commit": "29f9ffb38c7cea0734a50920597ed95a490fdf9c",
      "tree": "46502bff5830cc19e260c67f7186b5e0769cf06f",
      "parents": [
        "d6d15d0845c631d97edd9251d083ff61d31373be"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Aug 20 11:06:20 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Aug 20 12:06:20 2026 +0200"
      },
      "message": "Clarify worker/supervisor heartbeat docs and deprecate unused nimbus.supervisor.timeout.secs (#8984)\n\n* Clarify worker/supervisor heartbeat docs and deprecate unused nimbus.supervisor.timeout.secs\n\nDocumentation still described the pre-2.0 model in which workers/tasks\nheartbeat directly into ZooKeeper. Since 2.0 (STORM-2693), worker liveness\nheartbeats are written to local disk and relayed to Nimbus over Thrift, held\nin an in-memory heartbeat cache; supervisor liveness is an ephemeral ZooKeeper\nnode detected via session expiry.\n\nDocs:\n- Daemon-Fault-Tolerance.md: describe the actual worker heartbeat relay path\n  and the ephemeral-znode supervisor liveness mechanism.\n- Lifecycle-of-a-topology.md: note (inline in the 0.7.1 walkthrough) that the\n  ZK-directory heartbeat model was replaced in 2.0.\n- Cluster-State-Serialization.md: clarify worker heartbeats are not persisted\n  in ZooKeeper by default (only under Pacemaker/legacy configuration).\n\nConfig:\n- Because supervisor crash detection relies on ephemeral znodes, no Nimbus-side\n  supervisor timeout check exists, so nimbus.supervisor.timeout.secs is never\n  read. Mark the DaemonConfig constant @Deprecated, remove the misleading\n  defaults.yaml entry, and drop two inert references in NimbusClojurePortTest.\n\nCo-Authored-By: Claude Opus 4.8 \u003cnoreply@anthropic.com\u003e\n\n* Use forRemoval/since on deprecated NIMBUS_SUPERVISOR_TIMEOUT_SECS\n\nMatch Storm\u0027s existing deprecation convention (e.g. Config.java) by marking\nthe unused constant @Deprecated(forRemoval \u003d true, since \u003d \"3.0.1\") and stating\nin the javadoc that it is scheduled for removal. 3.0.1 is the current\ndevelopment version (root pom is 3.0.1-SNAPSHOT).\n\nCo-Authored-By: Claude Opus 4.8 \u003cnoreply@anthropic.com\u003e\n\n* Target 3.1.0 milestone for NIMBUS_SUPERVISOR_TIMEOUT_SECS removal\n\nSet since \u003d \"3.1.0\" (the milestone this deprecation targets) on the\n@Deprecated(forRemoval \u003d true) annotation.\n\nCo-Authored-By: Claude Opus 4.8 \u003cnoreply@anthropic.com\u003e\n\n* Keep deprecated nimbus.supervisor.timeout.secs default with a comment\n\nAn earlier commit removed the defaults.yaml entry. Since the deprecation\ntargets removal in a future release (not now), keep the shipped default in\nplace during the deprecation window and add a comment explaining it is unused\n(supervisor liveness is tracked via ephemeral ZooKeeper nodes). The entry\nitself is unchanged from master; only the explanatory comment is added.\n\nCo-Authored-By: Claude Opus 4.8 \u003cnoreply@anthropic.com\u003e\n\n---------\n\nCo-authored-by: Claude Opus 4.8 \u003cnoreply@anthropic.com\u003e"
    },
    {
      "commit": "d6d15d0845c631d97edd9251d083ff61d31373be",
      "tree": "b8a84f84bebe0f9f1c5ad31676cc53924ead9455",
      "parents": [
        "093f9d0776aba32c0db257916963aaf9384ac58b"
      ],
      "author": {
        "name": "sergio",
        "email": "37807516+sercuzz8@users.noreply.github.com",
        "time": "Tue Aug 11 07:40:22 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Aug 11 07:40:22 2026 +0200"
      },
      "message": "Reinstate ordering of arguments in `bin/storm.py` (#8971)\n\n* [Fix] Reinstate ordering of arguments\n\n* Use counter-based filter, fall back to old functioning"
    },
    {
      "commit": "093f9d0776aba32c0db257916963aaf9384ac58b",
      "tree": "0759be7dacb2da331c4f562fadfeec0f1f3fc2aa",
      "parents": [
        "9e8dedf7e1c8ec568b96d693319770d12045b4f7",
        "9256517a56ac7c21382111e26744c040dd2dc516"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Tue Aug 04 23:46:14 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Aug 04 23:46:14 2026 +0100"
      },
      "message": "Merge pull request #8970 from apache/dependabot/npm_and_yarn/storm-webapp/fast-uri-3.1.5\n\nbuild(deps-dev): bump fast-uri from 3.1.4 to 3.1.5 in /storm-webapp"
    },
    {
      "commit": "9256517a56ac7c21382111e26744c040dd2dc516",
      "tree": "0759be7dacb2da331c4f562fadfeec0f1f3fc2aa",
      "parents": [
        "9e8dedf7e1c8ec568b96d693319770d12045b4f7"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Aug 04 22:21:44 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Aug 04 22:21:44 2026 +0000"
      },
      "message": "build(deps-dev): bump fast-uri from 3.1.4 to 3.1.5 in /storm-webapp\n\nBumps [fast-uri](https://github.com/fastify/fast-uri) from 3.1.4 to 3.1.5.\n- [Release notes](https://github.com/fastify/fast-uri/releases)\n- [Commits](https://github.com/fastify/fast-uri/compare/v3.1.4...v3.1.5)\n\n---\nupdated-dependencies:\n- dependency-name: fast-uri\n  dependency-version: 3.1.5\n  dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "9e8dedf7e1c8ec568b96d693319770d12045b4f7",
      "tree": "81473d2387cf643a7793fc80698b5f5c1cbc776e",
      "parents": [
        "9e4db6a65abb9a32b4a1f1f935568a9aff8e0ada",
        "4a48cb33994fbc3b01114fbae1a87598f324c986"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Tue Aug 04 23:20:25 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Aug 04 23:20:25 2026 +0100"
      },
      "message": "Merge pull request #8964 from apache/dependabot/npm_and_yarn/storm-webapp/datatables.net-bs5-3.0.0\n\nbuild(deps): bump datatables.net-bs5 from 2.3.8 to 3.0.0 in /storm-webapp"
    },
    {
      "commit": "4a48cb33994fbc3b01114fbae1a87598f324c986",
      "tree": "81473d2387cf643a7793fc80698b5f5c1cbc776e",
      "parents": [
        "e33aed1a37cdc848d792ab1139d2bf184f80ee72"
      ],
      "author": {
        "name": "Rui Abreu",
        "email": "rui.abreu@gmail.com",
        "time": "Tue Aug 04 22:44:23 2026 +0100"
      },
      "committer": {
        "name": "Rui Abreu",
        "email": "rui.abreu@gmail.com",
        "time": "Tue Aug 04 22:44:23 2026 +0100"
      },
      "message": "fix(ui): use tableId in DataTables 3.0 state callbacks\n\nDataTables 3.0.0 renamed the settings property sTableId to tableId,\nso the state save/load callbacks in topology.html and component.html\nwere reading .concat on undefined and crashing table rendering.\n"
    },
    {
      "commit": "e33aed1a37cdc848d792ab1139d2bf184f80ee72",
      "tree": "8fb44d3faf5c5242eaa3bbf7d27a2e736d0d6b7a",
      "parents": [
        "9e4db6a65abb9a32b4a1f1f935568a9aff8e0ada"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Aug 03 07:20:47 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Aug 03 07:20:47 2026 +0000"
      },
      "message": "build(deps): bump datatables.net-bs5 in /storm-webapp\n\nBumps [datatables.net-bs5](https://github.com/DataTables/DataTablesSrc) from 2.3.8 to 3.0.0.\n- [Release notes](https://github.com/DataTables/DataTablesSrc/releases)\n- [Commits](https://github.com/DataTables/DataTablesSrc/compare/2.3.8...3.0.0)\n\n---\nupdated-dependencies:\n- dependency-name: datatables.net-bs5\n  dependency-version: 3.0.0\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "9e4db6a65abb9a32b4a1f1f935568a9aff8e0ada",
      "tree": "579712cf2cc2458ac0d907ed6fe673f163b70ba0",
      "parents": [
        "efd76d11e0907f0a1e0e115c457f69e7e904ea66",
        "4f2ed06c7caef6d9f6f0cef2983c85114b46c3f9"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Mon Aug 03 08:19:22 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Aug 03 08:19:22 2026 +0100"
      },
      "message": "Merge pull request #8961 from apache/dependabot/npm_and_yarn/storm-webapp/webpack-cli-7.2.2\n\nbuild(deps-dev): bump webpack-cli from 7.2.1 to 7.2.2 in /storm-webapp"
    },
    {
      "commit": "efd76d11e0907f0a1e0e115c457f69e7e904ea66",
      "tree": "d8b35f70bec367e32a469072e191ec51ab22143d",
      "parents": [
        "bb5fc2ba7c2a89dfbe79e5c466ca00e3ab59d764",
        "099670705f46e783eccabe016819677c2c561146"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Mon Aug 03 08:18:36 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Aug 03 08:18:36 2026 +0100"
      },
      "message": "Merge pull request #8963 from apache/dependabot/npm_and_yarn/storm-webapp/datatables.net-3.0.0\n\nbuild(deps): bump datatables.net from 2.3.8 to 3.0.0 in /storm-webapp"
    },
    {
      "commit": "bb5fc2ba7c2a89dfbe79e5c466ca00e3ab59d764",
      "tree": "a326c92e915e5d6e21d6932835275ffec8f5fc70",
      "parents": [
        "2f440fd56189c71d4abfa161cbe6bc948945ce5b",
        "a4c7f9bf12de3f10e166410a8aae38958b931e39"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Mon Aug 03 08:18:04 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Aug 03 08:18:04 2026 +0100"
      },
      "message": "Merge pull request #8966 from apache/update-license-files\n\n[Automated] Update license files after dependency changes"
    },
    {
      "commit": "2f440fd56189c71d4abfa161cbe6bc948945ce5b",
      "tree": "f99bb4d2d253c387f12476c95d0caccc73d19959",
      "parents": [
        "73aa01fc7fa29666b57a0910816285aa258c5ca4",
        "5c9dba5d84df5f9866480d46984c8b797b69ec56"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Mon Aug 03 08:17:46 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Aug 03 08:17:46 2026 +0100"
      },
      "message": "Merge pull request #8959 from apache/dependabot/maven/examples/commons-codec-commons-codec-1.22.1\n\nbuild(deps): bump commons-codec:commons-codec from 1.22.0 to 1.22.1 in /examples"
    },
    {
      "commit": "73aa01fc7fa29666b57a0910816285aa258c5ca4",
      "tree": "f99bb4d2d253c387f12476c95d0caccc73d19959",
      "parents": [
        "8d6f7828c80daa09a2a728acc3ba578a76934db2",
        "d6b57c8b4f061e66aa7427ce581ac1d9c99d0aba"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Mon Aug 03 08:16:21 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Aug 03 08:16:21 2026 +0100"
      },
      "message": "Merge pull request #8967 from apache/dependabot/github_actions/actions/setup-java-5.7.0\n\nbuild(deps): bump actions/setup-java from 5.6.0 to 5.7.0"
    },
    {
      "commit": "d6b57c8b4f061e66aa7427ce581ac1d9c99d0aba",
      "tree": "f99bb4d2d253c387f12476c95d0caccc73d19959",
      "parents": [
        "8d6f7828c80daa09a2a728acc3ba578a76934db2"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Mon Aug 03 04:33:14 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Aug 03 04:33:14 2026 +0000"
      },
      "message": "build(deps): bump actions/setup-java from 5.6.0 to 5.7.0\n\nBumps [actions/setup-java](https://github.com/actions/setup-java) from 5.6.0 to 5.7.0.\n- [Release notes](https://github.com/actions/setup-java/releases)\n- [Commits](https://github.com/actions/setup-java/compare/03ad4de0992f5dab5e18fcb136590ce7c4a0ac95...b6effb05e454b25005698d916606bdc6ffcbf961)\n\n---\nupdated-dependencies:\n- dependency-name: actions/setup-java\n  dependency-version: 5.7.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "a4c7f9bf12de3f10e166410a8aae38958b931e39",
      "tree": "bd2ca8ab73751427038d697971da0f942b757e55",
      "parents": [
        "8d6f7828c80daa09a2a728acc3ba578a76934db2"
      ],
      "author": {
        "name": "reiabreu",
        "email": "reiabreu@users.noreply.github.com",
        "time": "Sat Aug 01 06:13:19 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 06:13:19 2026 +0000"
      },
      "message": "Regenerate license files after dependency changes\n\nSigned-off-by: GitHub \u003cnoreply@github.com\u003e\n"
    },
    {
      "commit": "8d6f7828c80daa09a2a728acc3ba578a76934db2",
      "tree": "7aba877881fe38c18cd83623d25d191d6495c446",
      "parents": [
        "81b02b813f5d11fac3e699e9562f658d6f9adc60",
        "adf06cfe0ee084a1f0c49b494d8163cf880f5d2e"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Sat Aug 01 07:09:59 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 07:09:59 2026 +0100"
      },
      "message": "Merge pull request #8960 from apache/dependabot/maven/examples/com.github.luben-zstd-jni-1.5.7-12\n\nbuild(deps): bump com.github.luben:zstd-jni from 1.5.7-11 to 1.5.7-12 in /examples"
    },
    {
      "commit": "81b02b813f5d11fac3e699e9562f658d6f9adc60",
      "tree": "7aba877881fe38c18cd83623d25d191d6495c446",
      "parents": [
        "a04ef840a93f80deda46bbfdb2f87d62ce20dd43",
        "105c34369a0987f682f3e2e4f80edd77509fb617"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Sat Aug 01 07:08:40 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 07:08:40 2026 +0100"
      },
      "message": "Merge pull request #8958 from apache/dependabot/maven/examples/com.puppycrawl.tools-checkstyle-13.9.0\n\nbuild(deps): bump com.puppycrawl.tools:checkstyle from 13.8.0 to 13.9.0 in /examples"
    },
    {
      "commit": "4f2ed06c7caef6d9f6f0cef2983c85114b46c3f9",
      "tree": "3842925e17d5e82984a76def0c7ddff82f614385",
      "parents": [
        "a04ef840a93f80deda46bbfdb2f87d62ce20dd43"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sat Aug 01 06:07:48 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 06:07:48 2026 +0000"
      },
      "message": "build(deps-dev): bump webpack-cli from 7.2.1 to 7.2.2 in /storm-webapp\n\nBumps [webpack-cli](https://github.com/webpack/webpack-cli) from 7.2.1 to 7.2.2.\n- [Release notes](https://github.com/webpack/webpack-cli/releases)\n- [Changelog](https://github.com/webpack/webpack-cli/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/webpack/webpack-cli/compare/webpack-cli@7.2.1...webpack-cli@7.2.2)\n\n---\nupdated-dependencies:\n- dependency-name: webpack-cli\n  dependency-version: 7.2.2\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "a04ef840a93f80deda46bbfdb2f87d62ce20dd43",
      "tree": "a00213d0912ea97ecd734bde48bf7d73f94fb182",
      "parents": [
        "b9145578eb417e6b5300d5f25d1f4014d832be51",
        "088ef72be148dc120bfb554a1d5eb91ee17690d9"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Sat Aug 01 07:07:30 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 07:07:30 2026 +0100"
      },
      "message": "Merge pull request #8957 from apache/dependabot/maven/com.github.luben-zstd-jni-1.5.7-12\n\nbuild(deps): bump com.github.luben:zstd-jni from 1.5.7-11 to 1.5.7-12"
    },
    {
      "commit": "b9145578eb417e6b5300d5f25d1f4014d832be51",
      "tree": "fe92b4832c86992e369d0675a49a9044f33293f2",
      "parents": [
        "303e23d1279ce804dbbdb5cf6487653eabced89b",
        "c2099baaf0a04c6211e978416fdf4ddaf8611b97"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Sat Aug 01 07:06:53 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 07:06:53 2026 +0100"
      },
      "message": "Merge pull request #8956 from apache/dependabot/maven/examples/activemq.version-6.3.0\n\nbuild(deps): bump activemq.version from 6.2.7 to 6.3.0 in /examples"
    },
    {
      "commit": "303e23d1279ce804dbbdb5cf6487653eabced89b",
      "tree": "fe92b4832c86992e369d0675a49a9044f33293f2",
      "parents": [
        "27077958976f575d239c272014c0fcdf430ddd6b",
        "8c2d32c58787003b9d694a3ac7daa8887692bc51"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Sat Aug 01 07:06:07 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 07:06:07 2026 +0100"
      },
      "message": "Merge pull request #8955 from apache/dependabot/maven/activemq.version-6.3.0\n\nbuild(deps): bump activemq.version from 6.2.7 to 6.3.0"
    },
    {
      "commit": "27077958976f575d239c272014c0fcdf430ddd6b",
      "tree": "27efd55d9218bca1b5a276e46151579d485beb15",
      "parents": [
        "2dda898c158174abfc065119d865cfefd305cf7e",
        "839f1461a175731a66672dc9245cd5ec6909963f"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Sat Aug 01 07:05:31 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 07:05:31 2026 +0100"
      },
      "message": "Merge pull request #8962 from apache/dependabot/npm_and_yarn/storm-webapp/webpack-5.109.2\n\nbuild(deps-dev): bump webpack from 5.108.4 to 5.109.2 in /storm-webapp"
    },
    {
      "commit": "2dda898c158174abfc065119d865cfefd305cf7e",
      "tree": "e6e796dc1a8861da5bd7676ed77bf38d283dca9a",
      "parents": [
        "f8ed92e9b50243754c1672b5a16a56e4ce5cb7f7",
        "da34288ac0e3612aa6c320381acafeaa2827f85d"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Sat Aug 01 07:04:41 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 07:04:41 2026 +0100"
      },
      "message": "Merge pull request #8954 from apache/dependabot/maven/com.github.eirslett-frontend-maven-plugin-2.0.2\n\nbuild(deps-dev): bump com.github.eirslett:frontend-maven-plugin from 2.0.1 to 2.0.2"
    },
    {
      "commit": "099670705f46e783eccabe016819677c2c561146",
      "tree": "2137f785131f95cd0445362101738faa952d6ce7",
      "parents": [
        "f8ed92e9b50243754c1672b5a16a56e4ce5cb7f7"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sat Aug 01 06:03:54 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 06:03:54 2026 +0000"
      },
      "message": "build(deps): bump datatables.net from 2.3.8 to 3.0.0 in /storm-webapp\n\nBumps [datatables.net](https://github.com/DataTables/DataTablesSrc) from 2.3.8 to 3.0.0.\n- [Release notes](https://github.com/DataTables/DataTablesSrc/releases)\n- [Commits](https://github.com/DataTables/DataTablesSrc/compare/2.3.8...3.0.0)\n\n---\nupdated-dependencies:\n- dependency-name: datatables.net\n  dependency-version: 3.0.0\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "f8ed92e9b50243754c1672b5a16a56e4ce5cb7f7",
      "tree": "8acbd2357b7c40e973adcd24e704acc725c3dd32",
      "parents": [
        "e94b406c6a79345c2b44e78a930a9c2ddb44adc8",
        "ac3df52772399122bfdd090b09ab17a779438af5"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Sat Aug 01 07:02:30 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 07:02:30 2026 +0100"
      },
      "message": "Merge pull request #8953 from apache/dependabot/maven/commons-codec-commons-codec-1.22.1\n\nbuild(deps): bump commons-codec:commons-codec from 1.22.0 to 1.22.1"
    },
    {
      "commit": "e94b406c6a79345c2b44e78a930a9c2ddb44adc8",
      "tree": "522a3443ede8472939f7c75f3d8ef6afc2af81f5",
      "parents": [
        "e87db51cb046dec31a377ae549a216b049209b1a",
        "4750a03d81c0ac063b46ff4bbc12f3de77685f50"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Sat Aug 01 07:01:41 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 07:01:41 2026 +0100"
      },
      "message": "Merge pull request #8965 from apache/dependabot/npm_and_yarn/storm-webapp/datatables.net-dt-3.0.0\n\nbuild(deps): bump datatables.net-dt from 2.3.8 to 3.0.0 in /storm-webapp"
    },
    {
      "commit": "4750a03d81c0ac063b46ff4bbc12f3de77685f50",
      "tree": "522a3443ede8472939f7c75f3d8ef6afc2af81f5",
      "parents": [
        "e87db51cb046dec31a377ae549a216b049209b1a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sat Aug 01 04:08:08 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 04:08:08 2026 +0000"
      },
      "message": "build(deps): bump datatables.net-dt from 2.3.8 to 3.0.0 in /storm-webapp\n\nBumps [datatables.net-dt](https://github.com/DataTables/DataTablesSrc) from 2.3.8 to 3.0.0.\n- [Release notes](https://github.com/DataTables/DataTablesSrc/releases)\n- [Commits](https://github.com/DataTables/DataTablesSrc/compare/2.3.8...3.0.0)\n\n---\nupdated-dependencies:\n- dependency-name: datatables.net-dt\n  dependency-version: 3.0.0\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "839f1461a175731a66672dc9245cd5ec6909963f",
      "tree": "b7625cc9c81ec1b4409cd524e1e6508e7133229e",
      "parents": [
        "e87db51cb046dec31a377ae549a216b049209b1a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sat Aug 01 04:07:51 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 04:07:51 2026 +0000"
      },
      "message": "build(deps-dev): bump webpack from 5.108.4 to 5.109.2 in /storm-webapp\n\nBumps [webpack](https://github.com/webpack/webpack) from 5.108.4 to 5.109.2.\n- [Release notes](https://github.com/webpack/webpack/releases)\n- [Changelog](https://github.com/webpack/webpack/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/webpack/webpack/compare/v5.108.4...v5.109.2)\n\n---\nupdated-dependencies:\n- dependency-name: webpack\n  dependency-version: 5.109.2\n  dependency-type: direct:development\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "adf06cfe0ee084a1f0c49b494d8163cf880f5d2e",
      "tree": "543558e466f75d44331e965089feb72e02fc457f",
      "parents": [
        "e87db51cb046dec31a377ae549a216b049209b1a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sat Aug 01 04:06:27 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 04:06:27 2026 +0000"
      },
      "message": "build(deps): bump com.github.luben:zstd-jni in /examples\n\nBumps [com.github.luben:zstd-jni](https://github.com/luben/zstd-jni) from 1.5.7-11 to 1.5.7-12.\n- [Commits](https://github.com/luben/zstd-jni/commits)\n\n---\nupdated-dependencies:\n- dependency-name: com.github.luben:zstd-jni\n  dependency-version: 1.5.7-12\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "5c9dba5d84df5f9866480d46984c8b797b69ec56",
      "tree": "7e1b0989382522b84de36bcfa4b1b9cc64a33e1a",
      "parents": [
        "e87db51cb046dec31a377ae549a216b049209b1a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sat Aug 01 04:06:10 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 04:06:10 2026 +0000"
      },
      "message": "build(deps): bump commons-codec:commons-codec in /examples\n\nBumps [commons-codec:commons-codec](https://github.com/apache/commons-codec) from 1.22.0 to 1.22.1.\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.22.0...rel/commons-codec-1.22.1)\n\n---\nupdated-dependencies:\n- dependency-name: commons-codec:commons-codec\n  dependency-version: 1.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"
    },
    {
      "commit": "105c34369a0987f682f3e2e4f80edd77509fb617",
      "tree": "dbf9cc3793f3e8f859847cd52698dacf7202f0d2",
      "parents": [
        "e87db51cb046dec31a377ae549a216b049209b1a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sat Aug 01 04:05:11 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 04:05:11 2026 +0000"
      },
      "message": "build(deps): bump com.puppycrawl.tools:checkstyle in /examples\n\nBumps [com.puppycrawl.tools:checkstyle](https://github.com/checkstyle/checkstyle) from 13.8.0 to 13.9.0.\n- [Release notes](https://github.com/checkstyle/checkstyle/releases)\n- [Commits](https://github.com/checkstyle/checkstyle/compare/checkstyle-13.8.0...checkstyle-13.9.0)\n\n---\nupdated-dependencies:\n- dependency-name: com.puppycrawl.tools:checkstyle\n  dependency-version: 13.9.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "088ef72be148dc120bfb554a1d5eb91ee17690d9",
      "tree": "543558e466f75d44331e965089feb72e02fc457f",
      "parents": [
        "e87db51cb046dec31a377ae549a216b049209b1a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sat Aug 01 04:05:08 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 04:05:08 2026 +0000"
      },
      "message": "build(deps): bump com.github.luben:zstd-jni from 1.5.7-11 to 1.5.7-12\n\nBumps [com.github.luben:zstd-jni](https://github.com/luben/zstd-jni) from 1.5.7-11 to 1.5.7-12.\n- [Commits](https://github.com/luben/zstd-jni/commits)\n\n---\nupdated-dependencies:\n- dependency-name: com.github.luben:zstd-jni\n  dependency-version: 1.5.7-12\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "c2099baaf0a04c6211e978416fdf4ddaf8611b97",
      "tree": "f59c608f8963751d5dc0ed0eb952d897971f7f48",
      "parents": [
        "e87db51cb046dec31a377ae549a216b049209b1a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sat Aug 01 04:04:54 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 04:04:54 2026 +0000"
      },
      "message": "build(deps): bump activemq.version from 6.2.7 to 6.3.0 in /examples\n\nBumps `activemq.version` from 6.2.7 to 6.3.0.\n\nUpdates `org.apache.activemq:activemq-client` from 6.2.7 to 6.3.0\n- [Release notes](https://github.com/apache/activemq/releases)\n- [Commits](https://github.com/apache/activemq/compare/activemq-6.2.7...activemq-6.3.0)\n\nUpdates `org.apache.activemq:activemq-all` from 6.2.7 to 6.3.0\n- [Release notes](https://github.com/apache/activemq/releases)\n- [Commits](https://github.com/apache/activemq/compare/activemq-6.2.7...activemq-6.3.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.activemq:activemq-client\n  dependency-version: 6.3.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: org.apache.activemq:activemq-all\n  dependency-version: 6.3.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "8c2d32c58787003b9d694a3ac7daa8887692bc51",
      "tree": "f59c608f8963751d5dc0ed0eb952d897971f7f48",
      "parents": [
        "e87db51cb046dec31a377ae549a216b049209b1a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sat Aug 01 04:03:33 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 04:03:33 2026 +0000"
      },
      "message": "build(deps): bump activemq.version from 6.2.7 to 6.3.0\n\nBumps `activemq.version` from 6.2.7 to 6.3.0.\n\nUpdates `org.apache.activemq:activemq-client` from 6.2.7 to 6.3.0\n- [Release notes](https://github.com/apache/activemq/releases)\n- [Commits](https://github.com/apache/activemq/compare/activemq-6.2.7...activemq-6.3.0)\n\nUpdates `org.apache.activemq:activemq-all` from 6.2.7 to 6.3.0\n- [Release notes](https://github.com/apache/activemq/releases)\n- [Commits](https://github.com/apache/activemq/compare/activemq-6.2.7...activemq-6.3.0)\n\n---\nupdated-dependencies:\n- dependency-name: org.apache.activemq:activemq-client\n  dependency-version: 6.3.0\n  dependency-type: direct:production\n  update-type: version-update:semver-minor\n- dependency-name: org.apache.activemq:activemq-all\n  dependency-version: 6.3.0\n  dependency-type: direct:development\n  update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "da34288ac0e3612aa6c320381acafeaa2827f85d",
      "tree": "f703db1286309483ef13c552d5ea261b4defe07a",
      "parents": [
        "e87db51cb046dec31a377ae549a216b049209b1a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sat Aug 01 04:03:20 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 04:03:20 2026 +0000"
      },
      "message": "build(deps-dev): bump com.github.eirslett:frontend-maven-plugin\n\nBumps [com.github.eirslett:frontend-maven-plugin](https://github.com/eirslett/frontend-maven-plugin) from 2.0.1 to 2.0.2.\n- [Changelog](https://github.com/eirslett/frontend-maven-plugin/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/eirslett/frontend-maven-plugin/commits/frontend-plugins-2.0.2)\n\n---\nupdated-dependencies:\n- dependency-name: com.github.eirslett:frontend-maven-plugin\n  dependency-version: 2.0.2\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "ac3df52772399122bfdd090b09ab17a779438af5",
      "tree": "7e1b0989382522b84de36bcfa4b1b9cc64a33e1a",
      "parents": [
        "e87db51cb046dec31a377ae549a216b049209b1a"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Sat Aug 01 04:02:48 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Aug 01 04:02:48 2026 +0000"
      },
      "message": "build(deps): bump commons-codec:commons-codec from 1.22.0 to 1.22.1\n\nBumps [commons-codec:commons-codec](https://github.com/apache/commons-codec) from 1.22.0 to 1.22.1.\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.22.0...rel/commons-codec-1.22.1)\n\n---\nupdated-dependencies:\n- dependency-name: commons-codec:commons-codec\n  dependency-version: 1.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"
    },
    {
      "commit": "e87db51cb046dec31a377ae549a216b049209b1a",
      "tree": "08cee5badd66f500440e95257bfa1b7def0d80e5",
      "parents": [
        "db4a47110b9485ad7494fc3bc01ea36f150eb7ee"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Fri Jul 31 19:56:38 2026 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Jul 31 19:56:38 2026 +0200"
      },
      "message": "build(deps): bump postcss from 8.5.10 to 8.5.24 in /storm-webapp (#8952)\n\nBumps [postcss](https://github.com/postcss/postcss) from 8.5.10 to 8.5.24.\n- [Release notes](https://github.com/postcss/postcss/releases)\n- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/postcss/postcss/compare/8.5.10...8.5.24)\n\n---\nupdated-dependencies:\n- dependency-name: postcss\n  dependency-version: 8.5.24\n  dependency-type: indirect\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": "db4a47110b9485ad7494fc3bc01ea36f150eb7ee",
      "tree": "ed09a3788f9d7fe7af3fda627c9204600f402ac8",
      "parents": [
        "8df49081e9bd03c7fcea94c7d1898603fee1f006",
        "cdb59e22df94ab4afeef5fd20a6082fa9a327e39"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Tue Jul 28 11:00:16 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jul 28 11:00:16 2026 +0100"
      },
      "message": "Merge pull request #8951 from apache/dependabot/npm_and_yarn/storm-webapp/js-yaml-5.2.2\n\nbuild(deps): bump js-yaml from 5.2.1 to 5.2.2 in /storm-webapp"
    },
    {
      "commit": "cdb59e22df94ab4afeef5fd20a6082fa9a327e39",
      "tree": "ed09a3788f9d7fe7af3fda627c9204600f402ac8",
      "parents": [
        "8df49081e9bd03c7fcea94c7d1898603fee1f006"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Tue Jul 28 08:49:01 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jul 28 08:49:01 2026 +0000"
      },
      "message": "build(deps): bump js-yaml from 5.2.1 to 5.2.2 in /storm-webapp\n\nBumps [js-yaml](https://github.com/nodeca/js-yaml) from 5.2.1 to 5.2.2.\n- [Changelog](https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/nodeca/js-yaml/compare/5.2.1...5.2.2)\n\n---\nupdated-dependencies:\n- dependency-name: js-yaml\n  dependency-version: 5.2.2\n  dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "8df49081e9bd03c7fcea94c7d1898603fee1f006",
      "tree": "b42b397831d5db084c832a802483ec93c4c61f4b",
      "parents": [
        "9b48d731685709409c21b26e6a2a773f9bfdac5b"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Sat Jul 25 16:54:36 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Jul 25 17:54:36 2026 +0200"
      },
      "message": "docs: add missing 3.0.0 feature documentation (#8949)"
    },
    {
      "commit": "9b48d731685709409c21b26e6a2a773f9bfdac5b",
      "tree": "add2b80e26927568d9ade39f74324b34d610c48c",
      "parents": [
        "cca249f18129999f0959753d71d10f1bda14e890",
        "0da740be5dd2e38a676b419023928534e3814c5e"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Sat Jul 25 14:29:58 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Jul 25 14:29:58 2026 +0100"
      },
      "message": "Merge pull request #8948 from apache/update-license-files\n\n[Automated] Update license files after dependency changes"
    },
    {
      "commit": "0da740be5dd2e38a676b419023928534e3814c5e",
      "tree": "add2b80e26927568d9ade39f74324b34d610c48c",
      "parents": [
        "cca249f18129999f0959753d71d10f1bda14e890"
      ],
      "author": {
        "name": "reiabreu",
        "email": "reiabreu@users.noreply.github.com",
        "time": "Thu Jul 23 11:46:24 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 11:46:24 2026 +0000"
      },
      "message": "Regenerate license files after dependency changes\n\nSigned-off-by: GitHub \u003cnoreply@github.com\u003e\n"
    },
    {
      "commit": "cca249f18129999f0959753d71d10f1bda14e890",
      "tree": "8e95f3a42a78c0b7dca5c256985990817332ffa7",
      "parents": [
        "36debd0f165be395f5f3886615d9d06656c07569",
        "4a35be294ba42ee9ea670f146abd76a15f51625b"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 12:42:07 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 12:42:07 2026 +0100"
      },
      "message": "Merge pull request #8947 from apache/update-license-files\n\n[Automated] Update license files after dependency changes"
    },
    {
      "commit": "36debd0f165be395f5f3886615d9d06656c07569",
      "tree": "c652633b84d4b3fc19305f90785c1868198dbb29",
      "parents": [
        "297e7715b86ef8fc9f9122c3caa77dfe49292dab",
        "9c061dd9d061c6ab16a7fe66c03caf3802524f36"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 12:41:50 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 12:41:50 2026 +0100"
      },
      "message": "Merge pull request #8933 from apache/dependabot/maven/io.netty-netty-bom-4.2.16.Final\n\nbuild(deps): bump io.netty:netty-bom from 4.2.15.Final to 4.2.16.Final"
    },
    {
      "commit": "297e7715b86ef8fc9f9122c3caa77dfe49292dab",
      "tree": "c652633b84d4b3fc19305f90785c1868198dbb29",
      "parents": [
        "5960fd25299a637297cc36b668d7d9f0e28603e8",
        "bc2b506239471305e7ad2289c5eed8d8d7a15302"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 12:41:42 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 12:41:42 2026 +0100"
      },
      "message": "Merge pull request #8927 from apache/dependabot/maven/examples/io.netty-netty-bom-4.2.16.Final\n\nbuild(deps): bump io.netty:netty-bom from 4.2.15.Final to 4.2.16.Final in /examples"
    },
    {
      "commit": "5960fd25299a637297cc36b668d7d9f0e28603e8",
      "tree": "62f0e2b23c85fb57046797c11154e5b71400d93a",
      "parents": [
        "9dd21dc508b6c098665dbe6d15177d3c2bfa7726",
        "d2b5b08bc3286c0c15919dca9b6a8357564b42a9"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 12:41:31 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 12:41:31 2026 +0100"
      },
      "message": "Merge pull request #8923 from apache/dependabot/npm_and_yarn/storm-webapp/webpack-5.108.4\n\nbuild(deps-dev): bump webpack from 5.108.3 to 5.108.4 in /storm-webapp"
    },
    {
      "commit": "4a35be294ba42ee9ea670f146abd76a15f51625b",
      "tree": "3f5ce3b65fefee1ca504c7618859aebe5732dc6d",
      "parents": [
        "9dd21dc508b6c098665dbe6d15177d3c2bfa7726"
      ],
      "author": {
        "name": "reiabreu",
        "email": "reiabreu@users.noreply.github.com",
        "time": "Thu Jul 23 10:50:27 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 10:50:27 2026 +0000"
      },
      "message": "Regenerate license files after dependency changes\n\nSigned-off-by: GitHub \u003cnoreply@github.com\u003e\n"
    },
    {
      "commit": "9dd21dc508b6c098665dbe6d15177d3c2bfa7726",
      "tree": "e718d0955a76d42a2c8ffee3f1ae848f9a17a569",
      "parents": [
        "cc13581472c25ce8885ca30b5a253d36c3ff8b24",
        "a4ecf2560a9f4d02a58586f2267b0051a2afcdca"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 11:47:05 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 11:47:05 2026 +0100"
      },
      "message": "Merge pull request #8932 from apache/dependabot/maven/examples/byte-buddy.version-1.18.11\n\nbuild(deps): bump byte-buddy.version from 1.18.10 to 1.18.11 in /examples"
    },
    {
      "commit": "cc13581472c25ce8885ca30b5a253d36c3ff8b24",
      "tree": "e718d0955a76d42a2c8ffee3f1ae848f9a17a569",
      "parents": [
        "bc1dd66b4ba01f80033b8dff76586dc4dcf01684",
        "f4b806cb47ae706b6f2bbc2ffa8c7fa9bad61102"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 11:46:45 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 11:46:45 2026 +0100"
      },
      "message": "Merge pull request #8930 from apache/dependabot/maven/com.fasterxml.jackson.core-jackson-databind-2.22.1\n\nbuild(deps): bump com.fasterxml.jackson.core:jackson-databind from 2.22.0 to 2.22.1"
    },
    {
      "commit": "9c061dd9d061c6ab16a7fe66c03caf3802524f36",
      "tree": "3d8c8158ea0d352a29b5cf93bfc46000d8d54dcc",
      "parents": [
        "f1176ff52a1a0bf7268e4a2c0e0585a48b79eb51"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jul 23 10:46:32 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 10:46:32 2026 +0000"
      },
      "message": "build(deps): bump io.netty:netty-bom from 4.2.15.Final to 4.2.16.Final\n\nBumps [io.netty:netty-bom](https://github.com/netty/netty) from 4.2.15.Final to 4.2.16.Final.\n- [Release notes](https://github.com/netty/netty/releases)\n- [Commits](https://github.com/netty/netty/compare/netty-4.2.15.Final...netty-4.2.16.Final)\n\n---\nupdated-dependencies:\n- dependency-name: io.netty:netty-bom\n  dependency-version: 4.2.16.Final\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "bc1dd66b4ba01f80033b8dff76586dc4dcf01684",
      "tree": "81a9ad34a361ad34858f5488b1410da7eb27a876",
      "parents": [
        "f1176ff52a1a0bf7268e4a2c0e0585a48b79eb51",
        "1f436ead0d5c73e33c94787e67081ec73ad5e780"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 11:46:27 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 11:46:27 2026 +0100"
      },
      "message": "Merge pull request #8929 from apache/dependabot/maven/examples/org.apache.logging.log4j-log4j-bom-2.26.1\n\nbuild(deps): bump org.apache.logging.log4j:log4j-bom from 2.26.0 to 2.26.1 in /examples"
    },
    {
      "commit": "bc2b506239471305e7ad2289c5eed8d8d7a15302",
      "tree": "3d8c8158ea0d352a29b5cf93bfc46000d8d54dcc",
      "parents": [
        "f1176ff52a1a0bf7268e4a2c0e0585a48b79eb51"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jul 23 10:46:14 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 10:46:14 2026 +0000"
      },
      "message": "build(deps): bump io.netty:netty-bom in /examples\n\nBumps [io.netty:netty-bom](https://github.com/netty/netty) from 4.2.15.Final to 4.2.16.Final.\n- [Release notes](https://github.com/netty/netty/releases)\n- [Commits](https://github.com/netty/netty/compare/netty-4.2.15.Final...netty-4.2.16.Final)\n\n---\nupdated-dependencies:\n- dependency-name: io.netty:netty-bom\n  dependency-version: 4.2.16.Final\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "f1176ff52a1a0bf7268e4a2c0e0585a48b79eb51",
      "tree": "81a9ad34a361ad34858f5488b1410da7eb27a876",
      "parents": [
        "0b3a761bb2e67c6800b3f6661f2a0f7799eef751",
        "9b2c141dffa7b005badc4dc4deb095d6eb3ec5a1"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 11:45:15 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 11:45:15 2026 +0100"
      },
      "message": "Merge pull request #8926 from apache/dependabot/maven/jakarta.ws.rs-jakarta.ws.rs-api-4.0.0\n\nbuild(deps): bump jakarta.ws.rs:jakarta.ws.rs-api from 3.1.0 to 4.0.0"
    },
    {
      "commit": "0b3a761bb2e67c6800b3f6661f2a0f7799eef751",
      "tree": "6bac53814e1ba1e979c020461a9d38429d4040c5",
      "parents": [
        "067f3f821e83d03e132a4061997a8502c495b045",
        "a4ce345ec079ed67bf0c8c2f028f1a4a4282ac83"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 11:44:56 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 11:44:56 2026 +0100"
      },
      "message": "Merge pull request #8934 from apache/dependabot/maven/netty-tcnative.version-2.0.81.Final\n\nbuild(deps): bump netty-tcnative.version from 2.0.80.Final to 2.0.81.Final"
    },
    {
      "commit": "067f3f821e83d03e132a4061997a8502c495b045",
      "tree": "e7cf0ba325f27b642275101402e6b306c5a39fbd",
      "parents": [
        "8b063cb1c86bbde21a82f3f0b042a3c9385f8d61",
        "981607a466247ae3a32f2662abcd5eb4d07d34ae"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 11:44:44 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 11:44:44 2026 +0100"
      },
      "message": "Merge pull request #8935 from apache/dependabot/maven/examples/com.fasterxml.jackson-jackson-bom-2.22.1\n\nbuild(deps): bump com.fasterxml.jackson:jackson-bom from 2.21.3 to 2.22.1 in /examples"
    },
    {
      "commit": "8b063cb1c86bbde21a82f3f0b042a3c9385f8d61",
      "tree": "e7cf0ba325f27b642275101402e6b306c5a39fbd",
      "parents": [
        "5622ee2502eccb1f9895035698e9b70c4bc083e5",
        "9edb31b9daf3b5a7bcdeb9131b7c76c2ab621f9c"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 11:44:24 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 11:44:24 2026 +0100"
      },
      "message": "Merge pull request #8937 from apache/dependabot/maven/redis.clients-jedis-7.5.3\n\nbuild(deps): bump redis.clients:jedis from 7.5.2 to 7.5.3"
    },
    {
      "commit": "d2b5b08bc3286c0c15919dca9b6a8357564b42a9",
      "tree": "5defaa1a19bd040cb6045b3a140b7171a1678052",
      "parents": [
        "5622ee2502eccb1f9895035698e9b70c4bc083e5"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jul 23 10:43:52 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 10:43:52 2026 +0000"
      },
      "message": "build(deps-dev): bump webpack from 5.108.3 to 5.108.4 in /storm-webapp\n\nBumps [webpack](https://github.com/webpack/webpack) from 5.108.3 to 5.108.4.\n- [Release notes](https://github.com/webpack/webpack/releases)\n- [Changelog](https://github.com/webpack/webpack/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/webpack/webpack/compare/v5.108.3...v5.108.4)\n\n---\nupdated-dependencies:\n- dependency-name: webpack\n  dependency-version: 5.108.4\n  dependency-type: direct:development\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "5622ee2502eccb1f9895035698e9b70c4bc083e5",
      "tree": "a78d4da35dbaf7821bdc8426e8ab34353ae41cd3",
      "parents": [
        "436f21ba86f5cb79b0ad8f940216b137e091fe60",
        "585400acc7deb654a6e766a301d9d7839bd134aa"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 11:43:11 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 11:43:11 2026 +0100"
      },
      "message": "Merge pull request #8938 from apache/dependabot/maven/org.junit-junit-bom-6.1.2\n\nbuild(deps): bump org.junit:junit-bom from 6.1.1 to 6.1.2"
    },
    {
      "commit": "436f21ba86f5cb79b0ad8f940216b137e091fe60",
      "tree": "a78d4da35dbaf7821bdc8426e8ab34353ae41cd3",
      "parents": [
        "0dd786dcf7a2e6226fc939e4e38a3d3cc83624b1",
        "c2f49a0ae5c36778072eefe2bfea31f0fe93e425"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 11:40:47 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 11:40:47 2026 +0100"
      },
      "message": "Merge pull request #8918 from apache/dependabot/maven/examples/org.junit-junit-bom-6.1.2\n\nbuild(deps): bump org.junit:junit-bom from 6.1.1 to 6.1.2 in /examples"
    },
    {
      "commit": "0dd786dcf7a2e6226fc939e4e38a3d3cc83624b1",
      "tree": "afa12b7f8e6f51cd7a4a0ff0fd18896747bab1e6",
      "parents": [
        "fe65138bd3e02c07d49eddcd95626f1528a8e690",
        "bbbb4e675fdedf3be7373f0c8078f21487dc7243"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 11:40:18 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 11:40:18 2026 +0100"
      },
      "message": "Merge pull request #8936 from apache/dependabot/maven/byte-buddy.version-1.18.11\n\nbuild(deps): bump byte-buddy.version from 1.18.10 to 1.18.11"
    },
    {
      "commit": "fe65138bd3e02c07d49eddcd95626f1528a8e690",
      "tree": "e593397e2776b992e14ab30e8d17741f20e24351",
      "parents": [
        "d55faa4528bc7b969f3f46b7232849766ac2270d",
        "4df7ae843a077bd0f10beafd4592a8ae4001a430"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 11:39:29 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 11:39:29 2026 +0100"
      },
      "message": "Merge pull request #8922 from apache/dependabot/maven/examples/jetty.version-12.1.11\n\nbuild(deps): bump jetty.version from 12.1.10 to 12.1.11 in /examples"
    },
    {
      "commit": "d55faa4528bc7b969f3f46b7232849766ac2270d",
      "tree": "e593397e2776b992e14ab30e8d17741f20e24351",
      "parents": [
        "2353c735fb1ee5617e880adae8b8cbb255f20549",
        "a552e7e3042cf735952937962d5ab855987a83c5"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 11:39:11 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 11:39:11 2026 +0100"
      },
      "message": "Merge pull request #8921 from apache/dependabot/npm_and_yarn/storm-webapp/cypress-15.19.0\n\nbuild(deps-dev): bump cypress from 15.18.0 to 15.19.0 in /storm-webapp"
    },
    {
      "commit": "2353c735fb1ee5617e880adae8b8cbb255f20549",
      "tree": "91dd913bd52baaddc3d0265dc9ce23c589115068",
      "parents": [
        "13afc3f989ab67c146d7316422f6193a4cecbbe1",
        "ed224bf66dc8cc8a726c4c725ed97ec13b58ddca"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 11:38:49 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 11:38:49 2026 +0100"
      },
      "message": "Merge pull request #8920 from apache/dependabot/maven/jetty.version-12.1.11\n\nbuild(deps): bump jetty.version from 12.1.10 to 12.1.11"
    },
    {
      "commit": "13afc3f989ab67c146d7316422f6193a4cecbbe1",
      "tree": "c18f1ca71cf64b6ee3c4a808abdc70c4451f0934",
      "parents": [
        "68351a90c5810fa27bffc17becbd138ad7c57239",
        "1d64a942dc8116fdc8c91aa630aa8c81a0b64e4f"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 11:38:35 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 11:38:35 2026 +0100"
      },
      "message": "Merge pull request #8919 from apache/dependabot/npm_and_yarn/storm-webapp/webpack-cli-7.2.1\n\nbuild(deps-dev): bump webpack-cli from 7.1.0 to 7.2.1 in /storm-webapp"
    },
    {
      "commit": "9b2c141dffa7b005badc4dc4deb095d6eb3ec5a1",
      "tree": "4b018f0fb8fb9cf29c850c4345dc1f2aae6f5cdf",
      "parents": [
        "68351a90c5810fa27bffc17becbd138ad7c57239"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jul 23 10:12:18 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 10:12:18 2026 +0000"
      },
      "message": "build(deps): bump jakarta.ws.rs:jakarta.ws.rs-api from 3.1.0 to 4.0.0\n\nBumps jakarta.ws.rs:jakarta.ws.rs-api from 3.1.0 to 4.0.0.\n\n---\nupdated-dependencies:\n- dependency-name: jakarta.ws.rs:jakarta.ws.rs-api\n  dependency-version: 4.0.0\n  dependency-type: direct:production\n  update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "68351a90c5810fa27bffc17becbd138ad7c57239",
      "tree": "862208160050b3151f87b264c1d68b02301435f6",
      "parents": [
        "b98ae95227cda0063eef446766cef15454759328",
        "c0bbae419eac3b308effbfb3c56fc524d19113a4"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 11:08:52 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 11:08:52 2026 +0100"
      },
      "message": "Merge pull request #8925 from apache/dependabot/maven/examples/org.apache.xbean-xbean-spring-4.31\n\nbuild(deps): bump org.apache.xbean:xbean-spring from 4.30 to 4.31 in /examples"
    },
    {
      "commit": "b98ae95227cda0063eef446766cef15454759328",
      "tree": "862208160050b3151f87b264c1d68b02301435f6",
      "parents": [
        "725af22750cb0ffd6366ee202d9689fce8892f63",
        "71b54c43d661ddd6a3d3d5817bc61091e7d8e334"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 11:08:25 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 11:08:25 2026 +0100"
      },
      "message": "Merge pull request #8924 from apache/dependabot/maven/examples/com.puppycrawl.tools-checkstyle-13.8.0\n\nbuild(deps): bump com.puppycrawl.tools:checkstyle from 13.7.0 to 13.8.0 in /examples"
    },
    {
      "commit": "725af22750cb0ffd6366ee202d9689fce8892f63",
      "tree": "6fb1fd13ecac8b3701e73321d4f7ca3a5fb30c0e",
      "parents": [
        "6c162dea362411e627738491c9be083b7e0d9ce5",
        "158475c4603e393ddaaedaed95d071ce7fdbaba9"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 11:08:06 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 11:08:06 2026 +0100"
      },
      "message": "Merge pull request #8928 from apache/dependabot/maven/jakarta-activation-version-2.0.1\n\nbuild(deps): bump jakarta-activation-version from 1.2.1 to 2.0.1"
    },
    {
      "commit": "585400acc7deb654a6e766a301d9d7839bd134aa",
      "tree": "63fede99ff794cb18552d3798c077c6636c9d6f3",
      "parents": [
        "6c162dea362411e627738491c9be083b7e0d9ce5"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jul 23 09:32:09 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 09:32:09 2026 +0000"
      },
      "message": "build(deps): bump org.junit:junit-bom from 6.1.1 to 6.1.2\n\nBumps [org.junit:junit-bom](https://github.com/junit-team/junit-framework) from 6.1.1 to 6.1.2.\n- [Release notes](https://github.com/junit-team/junit-framework/releases)\n- [Commits](https://github.com/junit-team/junit-framework/compare/r6.1.1...r6.1.2)\n\n---\nupdated-dependencies:\n- dependency-name: org.junit:junit-bom\n  dependency-version: 6.1.2\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "c2f49a0ae5c36778072eefe2bfea31f0fe93e425",
      "tree": "63fede99ff794cb18552d3798c077c6636c9d6f3",
      "parents": [
        "6c162dea362411e627738491c9be083b7e0d9ce5"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jul 23 09:31:46 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 09:31:46 2026 +0000"
      },
      "message": "build(deps): bump org.junit:junit-bom from 6.1.1 to 6.1.2 in /examples\n\nBumps [org.junit:junit-bom](https://github.com/junit-team/junit-framework) from 6.1.1 to 6.1.2.\n- [Release notes](https://github.com/junit-team/junit-framework/releases)\n- [Commits](https://github.com/junit-team/junit-framework/compare/r6.1.1...r6.1.2)\n\n---\nupdated-dependencies:\n- dependency-name: org.junit:junit-bom\n  dependency-version: 6.1.2\n  dependency-type: direct:production\n  update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] \u003csupport@github.com\u003e"
    },
    {
      "commit": "f4b806cb47ae706b6f2bbc2ffa8c7fa9bad61102",
      "tree": "1c37176ba9c8bf70922fd0996954c4ba67d8a1fd",
      "parents": [
        "6c162dea362411e627738491c9be083b7e0d9ce5"
      ],
      "author": {
        "name": "dependabot[bot]",
        "email": "49699333+dependabot[bot]@users.noreply.github.com",
        "time": "Thu Jul 23 09:30:53 2026 +0000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 09:30:53 2026 +0000"
      },
      "message": "build(deps): bump com.fasterxml.jackson.core:jackson-databind\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"
    },
    {
      "commit": "6c162dea362411e627738491c9be083b7e0d9ce5",
      "tree": "0d6075831e2347251a1d658c31deb7ec5fea19eb",
      "parents": [
        "775ffc38ef4269eb272e026c2ba892870a8f4d47",
        "b02f96445625e7f6a6cf02a261f2d7f36ef4c91f"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 10:15:53 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 10:15:53 2026 +0100"
      },
      "message": "Merge pull request #8939 from apache/dependabot/maven/org.apache.thrift-libthrift-0.24.0\n\nbuild(deps): bump org.apache.thrift:libthrift from 0.23.0 to 0.24.0"
    },
    {
      "commit": "775ffc38ef4269eb272e026c2ba892870a8f4d47",
      "tree": "684b9f332bbc93a2c9cda1058dd750af46045ad2",
      "parents": [
        "fa3a89788606a845f6cdfb7df48fa8c1e4308bfa",
        "edf52f7f959f1156eb3433ee055d4ec48e61a46e"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 10:15:12 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 10:15:12 2026 +0100"
      },
      "message": "Merge pull request #8917 from apache/dependabot/maven/examples/bouncycastle.version-1.85\n\nbuild(deps): bump bouncycastle.version from 1.84 to 1.85 in /examples"
    },
    {
      "commit": "fa3a89788606a845f6cdfb7df48fa8c1e4308bfa",
      "tree": "684b9f332bbc93a2c9cda1058dd750af46045ad2",
      "parents": [
        "a06ab620f88d7013ca3e15a9a784834453ae8f6f",
        "861a0e2a7c1e70fab6a9e99483c65d84ae5a24a5"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 10:14:53 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 10:14:53 2026 +0100"
      },
      "message": "Merge pull request #8940 from apache/dependabot/maven/bouncycastle.version-1.85\n\nbuild(deps): bump bouncycastle.version from 1.84 to 1.85"
    },
    {
      "commit": "a06ab620f88d7013ca3e15a9a784834453ae8f6f",
      "tree": "d4ffc7c2cf26bd360caf13b995a38286a4078359",
      "parents": [
        "9cd3bc565b852534e13e8c4aba1d22fed8a608bd",
        "93d28019a48c4beadf90047c6e52c869107904b3"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 10:12:37 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 10:12:37 2026 +0100"
      },
      "message": "Merge pull request #8941 from apache/dependabot/maven/com.fasterxml.jackson-jackson-bom-2.22.1\n\nbuild(deps): bump com.fasterxml.jackson:jackson-bom from 2.21.3 to 2.22.1"
    },
    {
      "commit": "9cd3bc565b852534e13e8c4aba1d22fed8a608bd",
      "tree": "c1abb4c22978b4d9f538b212d097fcd1ba73b2d7",
      "parents": [
        "fbbe698bb7355f51e62aa39c2f192c0fe0ec99d8",
        "90f12c2bb48ef835543520a6950ff69e973876e2"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 10:12:18 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 10:12:18 2026 +0100"
      },
      "message": "Merge pull request #8942 from apache/dependabot/maven/org.apache.logging.log4j-log4j-bom-2.26.1\n\nbuild(deps): bump org.apache.logging.log4j:log4j-bom from 2.26.0 to 2.26.1"
    },
    {
      "commit": "fbbe698bb7355f51e62aa39c2f192c0fe0ec99d8",
      "tree": "8b4971f1c7ae45ada8be51e420ce13f3b8a48919",
      "parents": [
        "c905f115fd8aea867ad0e0cdaf810695e402aceb",
        "44ba14661522f93c76f1ce330cf475bb982f7026"
      ],
      "author": {
        "name": "reiabreu",
        "email": "rui.abreu@gmail.com",
        "time": "Thu Jul 23 10:11:12 2026 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 23 10:11:12 2026 +0100"
      },
      "message": "Merge pull request #8943 from apache/dependabot/maven/org.apache.xbean-xbean-spring-4.31\n\nbuild(deps): bump org.apache.xbean:xbean-spring from 4.30 to 4.31"
    }
  ],
  "next": "c905f115fd8aea867ad0e0cdaf810695e402aceb"
}
