{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":511532067,"defaultBranch":"main","name":"arrow-nanoarrow","ownerLogin":"apache","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2022-07-07T13:08:51.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/47359?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1719406590.0","currentOid":""},"activityList":{"items":[{"before":"3f4295da82d1bc4fca16148ae034563946fe222d","after":"648d958efa21f83b302cc9d207d8e1e781114d28","ref":"refs/heads/asf-site","pushedAt":"2024-09-27T04:03:35.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"update documentation for tag main","shortMessageHtmlLink":"update documentation for tag main"}},{"before":"53c9f8f69743d633b831b735de1402cca38713ad","after":"97e7c61d95456f4753f58cc9e6742800b08b378a","ref":"refs/heads/main","pushedAt":"2024-09-27T04:01:08.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"paleolimbot","name":"Dewey Dunnington","path":"/paleolimbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10995762?s=80&v=4"},"commit":{"message":"fix: Properly ingest Binary View types without variadic buffers (#635)\n\ncloses https://github.com/apache/arrow-nanoarrow/issues/634","shortMessageHtmlLink":"fix: Properly ingest Binary View types without variadic buffers (#635)"}},{"before":"d88416ffba47e6ce0ea8e37b7b578919dd7b8938","after":"3f4295da82d1bc4fca16148ae034563946fe222d","ref":"refs/heads/asf-site","pushedAt":"2024-09-24T19:00:48.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"update documentation for tag main","shortMessageHtmlLink":"update documentation for tag main"}},{"before":"6f8badb649d8416778d81598867adc7263d735ad","after":"53c9f8f69743d633b831b735de1402cca38713ad","ref":"refs/heads/main","pushedAt":"2024-09-24T18:58:16.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"paleolimbot","name":"Dewey Dunnington","path":"/paleolimbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10995762?s=80&v=4"},"commit":{"message":"chore: Remove valgrind suppression for R bindings after updated jsonlite release (#580)\n\nThis suppression was annotated \"Can be removed when\r\nhttps://github.com/jeroen/jsonlite/pull/442 is released\". This PR can\r\nserve as a placeholder for that until it is released","shortMessageHtmlLink":"chore: Remove valgrind suppression for R bindings after updated jsonl…"}},{"before":"595c28b0d446512c97de98cc252434b3765a925a","after":"d88416ffba47e6ce0ea8e37b7b578919dd7b8938","ref":"refs/heads/asf-site","pushedAt":"2024-09-24T03:27:54.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"update documentation for tag main","shortMessageHtmlLink":"update documentation for tag main"}},{"before":"44e8eb9e333fadc029ce1f463005aff33fcd1218","after":"6f8badb649d8416778d81598867adc7263d735ad","ref":"refs/heads/main","pushedAt":"2024-09-24T03:25:25.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"paleolimbot","name":"Dewey Dunnington","path":"/paleolimbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10995762?s=80&v=4"},"commit":{"message":"feat: String/Binary View Support (#596)\n\ncloses https://github.com/apache/arrow-nanoarrow/issues/583","shortMessageHtmlLink":"feat: String/Binary View Support (#596)"}},{"before":"1a777432e4ac53a86f1e74db7246451ef8b9e42f","after":"595c28b0d446512c97de98cc252434b3765a925a","ref":"refs/heads/asf-site","pushedAt":"2024-09-23T02:26:12.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"update documentation for tag main","shortMessageHtmlLink":"update documentation for tag main"}},{"before":"503548b9f3ca5e62fceb1cc44088c1857578ddaa","after":"44e8eb9e333fadc029ce1f463005aff33fcd1218","ref":"refs/heads/main","pushedAt":"2024-09-23T02:23:42.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"paleolimbot","name":"Dewey Dunnington","path":"/paleolimbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10995762?s=80&v=4"},"commit":{"message":"feat(r): Allow opt-out of warning for unregistered extension types (#632)\n\nCloses #631.\r\n\r\n``` r\r\n# Using pak::pak(\"apache/arrow-nanoarrow/r#632\")\r\nlibrary(nanoarrow)\r\narray <- as_nanoarrow_array(data.frame(x = 1:5, y = letters[1:5]))\r\narray$children$z <- nanoarrow_extension_array(letters[1:5], \"some_extension\")\r\n\r\n# warns!\r\ntibble::as_tibble(array)\r\n#> Warning in warn_unregistered_extension_type(x): z: Converting unknown extension\r\n#> some_extension{string} as storage type\r\n#> Warning in warn_unregistered_extension_type(storage): z: Converting unknown\r\n#> extension some_extension{string} as storage type\r\n#> # A tibble: 5 × 3\r\n#> x y z \r\n#> \r\n#> 1 1 a a \r\n#> 2 2 b b \r\n#> 3 3 c c \r\n#> 4 4 d d \r\n#> 5 5 e e\r\n\r\n# doesn't!\r\noptions(nanoarrow.warn_unregistered_extension = FALSE)\r\ntibble::as_tibble(array)\r\n#> # A tibble: 5 × 3\r\n#> x y z \r\n#> \r\n#> 1 1 a a \r\n#> 2 2 b b \r\n#> 3 3 c c \r\n#> 4 4 d d \r\n#> 5 5 e e\r\n```\r\n\r\nCreated on 2024-09-20 with [reprex\r\nv2.1.1](https://reprex.tidyverse.org)","shortMessageHtmlLink":"feat(r): Allow opt-out of warning for unregistered extension types (#632"}},{"before":"6a7d12f807b47ca083d45a06791ee6589e4dd993","after":"1a777432e4ac53a86f1e74db7246451ef8b9e42f","ref":"refs/heads/asf-site","pushedAt":"2024-09-20T22:17:59.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"update documentation for tag main","shortMessageHtmlLink":"update documentation for tag main"}},{"before":"08d14b378c123807b399e455d33693375f3d5f87","after":"503548b9f3ca5e62fceb1cc44088c1857578ddaa","ref":"refs/heads/main","pushedAt":"2024-09-20T22:15:33.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"paleolimbot","name":"Dewey Dunnington","path":"/paleolimbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10995762?s=80&v=4"},"commit":{"message":"fix: python schema repr does not truncate output (#628)\n\nFixes #466.\r\n\r\n```\r\n>>> import nanoarrow as na\r\n>>> url = \"https://github.com/apache/arrow-experiments/raw/main/data/arrow-commits/arrow-commits.arrows\"\r\n>>> schema = na.ArrayStream.from_url(url).schema\r\n>>> schema\r\n non-nullable struct\r\n```","shortMessageHtmlLink":"fix: python schema repr does not truncate output (#628)"}},{"before":"a0319a9e2292c8ce62561b91d85c25429504f522","after":"6a7d12f807b47ca083d45a06791ee6589e4dd993","ref":"refs/heads/asf-site","pushedAt":"2024-09-20T21:25:49.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"update documentation for tag main","shortMessageHtmlLink":"update documentation for tag main"}},{"before":"57acfbe361d81c4b57ccef28c4f0a6e28195b75d","after":"08d14b378c123807b399e455d33693375f3d5f87","ref":"refs/heads/main","pushedAt":"2024-09-20T21:23:15.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"paleolimbot","name":"Dewey Dunnington","path":"/paleolimbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10995762?s=80&v=4"},"commit":{"message":"fix: Accommodate IPC messages without continuation bytes (#629)\n\nBefore arrow 0.15, encapsulated messages started with just the length\r\ninstead of with a continuation token","shortMessageHtmlLink":"fix: Accommodate IPC messages without continuation bytes (#629)"}},{"before":"61c6917d27e16b7ffdcff711ce8d7e6ddebf6a5d","after":"57acfbe361d81c4b57ccef28c4f0a6e28195b75d","ref":"refs/heads/main","pushedAt":"2024-09-20T21:22:49.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"paleolimbot","name":"Dewey Dunnington","path":"/paleolimbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10995762?s=80&v=4"},"commit":{"message":"fix: Ignore empty (but present) union validity bitmaps from before 1.0 (#630)\n\nFor metadata versions before V5, ignore the extra validity bitmap. If\r\nthe bitmap is non-empty, we raise an error (which is the same bail used\r\nin arrow-C++ and -java).","shortMessageHtmlLink":"fix: Ignore empty (but present) union validity bitmaps from before 1.0 ("}},{"before":"120a8e13aad792543a93b9c7241b4fc1ea08278f","after":"61c6917d27e16b7ffdcff711ce8d7e6ddebf6a5d","ref":"refs/heads/main","pushedAt":"2024-09-20T21:21:23.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"paleolimbot","name":"Dewey Dunnington","path":"/paleolimbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10995762?s=80&v=4"},"commit":{"message":"chore(python): Update Python packaging (#625)\n\nThis PR updates the Python packaging to build a single nanoarrow library\r\nthat is shared amongst the various extension modules and updates the\r\nversion of cibuildwheel such that we can release Python 3.13 wheels in\r\nour upcoming release. I'm not sure where the mechanism used to build a\r\n\"shared\" library is documented, nor am I sure that it is truly a\r\n\"shared\" library (may be static); however, it seems conceptually better\r\nthan the existing system of compiling the source files more than once\r\nfor each module that needed them.","shortMessageHtmlLink":"chore(python): Update Python packaging (#625)"}},{"before":"85287fe9d654717552576361108c356a71ea6362","after":"a0319a9e2292c8ce62561b91d85c25429504f522","ref":"refs/heads/asf-site","pushedAt":"2024-09-20T19:03:35.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"update documentation for tag main","shortMessageHtmlLink":"update documentation for tag main"}},{"before":"5d53738636cac9d6bf14aebf791a123814a00697","after":"120a8e13aad792543a93b9c7241b4fc1ea08278f","ref":"refs/heads/main","pushedAt":"2024-09-20T19:00:41.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"paleolimbot","name":"Dewey Dunnington","path":"/paleolimbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10995762?s=80&v=4"},"commit":{"message":"fix: Only validate relevant type_ids for array view slice (#627)\n\nSimilar to #626 but for union type_id arrays. This should fix the two\r\nremaining failures in the integration tests between the IPC\r\nimplementations in the Arrow repository and the nanoarrow IPC\r\nimplementation https://github.com/apache/arrow/pull/43715.","shortMessageHtmlLink":"fix: Only validate relevant type_ids for array view slice (#627)"}},{"before":"bb9d25c3f385b69e7f271731ba30b44287f88c90","after":"85287fe9d654717552576361108c356a71ea6362","ref":"refs/heads/asf-site","pushedAt":"2024-09-20T13:05:58.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"update documentation for tag main","shortMessageHtmlLink":"update documentation for tag main"}},{"before":"499d865c862606c69d8dca1a15fc0cf542696599","after":"5d53738636cac9d6bf14aebf791a123814a00697","ref":"refs/heads/main","pushedAt":"2024-09-20T13:03:00.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"bkietz","name":"Benjamin Kietzman","path":"/bkietz","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1299904?s=80&v=4"},"commit":{"message":"fix: Improve validation of offset buffers for sliced arrays (#626)\n\nThis PR updates validation of offset buffers in string/binary, large\r\nstring/binary, list, and large list types such that portions of the\r\nbuffers not strictly required by the slice referenced by `offset` and\r\n`length` are not accessed/validated. This came up in the IPC integration\r\ntests because C# exports full buffers rather than the portions of\r\nbuffers strictly required.\r\n\r\nThis highlights how our test suite would benefit from helpers to reduce\r\nrepetition (although I'd prefer to handle that at a later time if\r\npossible).\r\n\r\n---------\r\n\r\nCo-authored-by: Benjamin Kietzman ","shortMessageHtmlLink":"fix: Improve validation of offset buffers for sliced arrays (#626)"}},{"before":"279e1232fc48bb1cc979c4744d4dfac53d1fc4d9","after":"bb9d25c3f385b69e7f271731ba30b44287f88c90","ref":"refs/heads/asf-site","pushedAt":"2024-09-19T03:37:07.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"update documentation for tag main","shortMessageHtmlLink":"update documentation for tag main"}},{"before":"3488ff1cd96c8c8bbb65aa70f4a1e6e15a3c1197","after":"499d865c862606c69d8dca1a15fc0cf542696599","ref":"refs/heads/main","pushedAt":"2024-09-19T03:34:28.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"paleolimbot","name":"Dewey Dunnington","path":"/paleolimbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10995762?s=80&v=4"},"commit":{"message":"chore(python): Fix type stubs for updated module structure (#606)\n\nThis PR updates the type stubs for the Cython modules to reflect the\r\nupdated structure. I don't think this mechanism for generating stubs is\r\nthe best long-term strategy (requires remembering to do so!)...we could\r\nalso do something like omit the generated stubs from the source tree and\r\ngenerate them only before packaging; however, this would make them not\r\nuseful for local development (which is one of the primary short-term\r\nbenefits of including them).","shortMessageHtmlLink":"chore(python): Fix type stubs for updated module structure (#606)"}},{"before":"c6f2ccd795f07face1bf6e3979170255da8c251f","after":"279e1232fc48bb1cc979c4744d4dfac53d1fc4d9","ref":"refs/heads/asf-site","pushedAt":"2024-09-19T03:23:18.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"update documentation for tag main","shortMessageHtmlLink":"update documentation for tag main"}},{"before":"6118e24035e3aa00a278dff852734ff4d528a947","after":"3488ff1cd96c8c8bbb65aa70f4a1e6e15a3c1197","ref":"refs/heads/main","pushedAt":"2024-09-19T03:20:41.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"paleolimbot","name":"Dewey Dunnington","path":"/paleolimbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10995762?s=80&v=4"},"commit":{"message":"chore(docs): Ensure roadmap is up-to-date (#615)\n\nThe roadmap contained some (very) oudated ideas regarding ideas for\r\nfuture scope. This PR updates them with more recent text based on the\r\nexisting list of issues and implementation work that has happened over\r\nthe past few months.\r\n\r\n---------\r\n\r\nCo-authored-by: Benjamin Kietzman ","shortMessageHtmlLink":"chore(docs): Ensure roadmap is up-to-date (#615)"}},{"before":"76d98863ea3e85809608363efd151c88df07e74c","after":"c6f2ccd795f07face1bf6e3979170255da8c251f","ref":"refs/heads/asf-site","pushedAt":"2024-09-18T19:02:48.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"update documentation for tag main","shortMessageHtmlLink":"update documentation for tag main"}},{"before":"48168e0b42926f543f53f0fc536c8e7584319140","after":"6118e24035e3aa00a278dff852734ff4d528a947","ref":"refs/heads/main","pushedAt":"2024-09-18T19:00:08.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"paleolimbot","name":"Dewey Dunnington","path":"/paleolimbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10995762?s=80&v=4"},"commit":{"message":"feat(python): Implement array from buffer for non-CPU arrays (#550)\n\nRequires building with (e.g.) `export\r\nNANOARROW_PYTHON_CUDA=/usr/local/cuda` and a `cupy` install:\r\n\r\n```python\r\nimport nanoarrow as na\r\nfrom nanoarrow import device\r\nimport cupy as cp\r\n\r\n\r\ndevice.c_device_array(cp.array([1, 2, 3]))\r\n#> \r\n#> - device_type: CUDA <2>\r\n#> - device_id: 0\r\n#> - array: \r\n#> - length: 3\r\n#> - offset: 0\r\n#> - null_count: 0\r\n#> - buffers: (0, 133980798058496)\r\n#> - dictionary: NULL\r\n#> - children[0]:\r\n\r\n# Also roundtrips\r\ndarray = device.c_device_array(cp.array([1, 2, 3]))\r\ncp.from_dlpack(darray.array.view().buffer(1))\r\n#> array([1, 2, 3])\r\n```\r\n\r\n---------\r\n\r\nCo-authored-by: Dane Pitkin ","shortMessageHtmlLink":"feat(python): Implement array from buffer for non-CPU arrays (#550)"}},{"before":"b080a750c23fbce51f07c9dfb8e99ede65f1cab7","after":"76d98863ea3e85809608363efd151c88df07e74c","ref":"refs/heads/asf-site","pushedAt":"2024-09-18T17:04:18.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"update documentation for tag main","shortMessageHtmlLink":"update documentation for tag main"}},{"before":"1c4370029b512384236c768c4eadeb7ea7fabbf9","after":"48168e0b42926f543f53f0fc536c8e7584319140","ref":"refs/heads/main","pushedAt":"2024-09-18T17:01:38.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"paleolimbot","name":"Dewey Dunnington","path":"/paleolimbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10995762?s=80&v=4"},"commit":{"message":"fix: Ensure CMake linking against built/installed nanoarrow works for all components (#614)\n\nCloses #407.","shortMessageHtmlLink":"fix: Ensure CMake linking against built/installed nanoarrow works for…"}},{"before":"9f36ce975e82c301efad71c89a91318127d86ced","after":"b080a750c23fbce51f07c9dfb8e99ede65f1cab7","ref":"refs/heads/asf-site","pushedAt":"2024-09-17T21:48:39.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"update documentation for tag main","shortMessageHtmlLink":"update documentation for tag main"}},{"before":"2b9e6242ed0019ae97b969664623dc196aab4702","after":"1c4370029b512384236c768c4eadeb7ea7fabbf9","ref":"refs/heads/main","pushedAt":"2024-09-17T21:45:49.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"paleolimbot","name":"Dewey Dunnington","path":"/paleolimbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10995762?s=80&v=4"},"commit":{"message":"chore: Update valgrind suppressions after internal flatcc update (#613)\n\nAlso fixes a leak that was identified by the R bindings to the IPC\r\nwriter.\r\n\r\nCloses #579 (apparently the flatcc update was sufficient to eliminate\r\nthe suppression!)","shortMessageHtmlLink":"chore: Update valgrind suppressions after internal flatcc update (#613)"}},{"before":"81ba9f1860e6943dedb41166e79162a4c5b65c45","after":"9f36ce975e82c301efad71c89a91318127d86ced","ref":"refs/heads/asf-site","pushedAt":"2024-09-17T16:59:29.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"update documentation for tag main","shortMessageHtmlLink":"update documentation for tag main"}},{"before":"8f2bfd0aac9b16edf4de595f194394884b71ab4a","after":"2b9e6242ed0019ae97b969664623dc196aab4702","ref":"refs/heads/main","pushedAt":"2024-09-17T16:56:22.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"paleolimbot","name":"Dewey Dunnington","path":"/paleolimbot","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/10995762?s=80&v=4"},"commit":{"message":"chore(r): Add 0.5.0 NEWS items to R package (#612)\n\nCloses #607.","shortMessageHtmlLink":"chore(r): Add 0.5.0 NEWS items to R package (#612)"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"startCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0yN1QwNDowMzozNS4wMDAwMDBazwAAAATCLMPl","endCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0xN1QxNjo1NjoyMi4wMDAwMDBazwAAAAS4ySTN"}},"title":"Activity · apache/arrow-nanoarrow"}