{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":515951203,"defaultBranch":"main","name":"datafusion-python","ownerLogin":"apache","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2022-07-20T11:19:28.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/47359?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1726606771.0","currentOid":""},"activityList":{"items":[{"before":"f459cc5dbf43b182cedcd43dff46610539fb7927","after":"8ca32200c33694514ac3a7c0783ee537e646d4b7","ref":"refs/heads/asf-staging","pushedAt":"2024-09-17T21:02:27.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":"Publish built docs triggered by 6c8bf5f8aadaf5a3431da272ed6b3afa06efa8ec","shortMessageHtmlLink":"Publish built docs triggered by 6c8bf5f"}},{"before":"2c7e561832fff4e905d1d153c9c1a386f9466b97","after":null,"ref":"refs/heads/dependabot/cargo/main/prost-0.13.2","pushedAt":"2024-09-17T20:59:31.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"7a1b54220d8c064bf0ee27f4cb9f494ca1c0b62d","after":null,"ref":"refs/heads/dependabot/cargo/main/tokio-1.40.0","pushedAt":"2024-09-17T20:59:30.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"97508da5e1e1f1446661d393d6502e44bc328bb7","after":null,"ref":"refs/heads/dependabot/cargo/main/arrow-53.0.0","pushedAt":"2024-09-17T20:59:29.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"788cb254c60b3c8975723b0f97216386b2612f43","after":null,"ref":"refs/heads/dependabot/cargo/quinn-proto-0.11.8","pushedAt":"2024-09-17T20:59:28.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"be994717a1aa28b49e94abd0dfad400ceddd0f6f","after":null,"ref":"refs/heads/dependabot/cargo/main/async-trait-0.1.82","pushedAt":"2024-09-17T20:59:26.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"eecea33a3c7fe83f132c7f9bfb13d4ee3ec66f94","after":null,"ref":"refs/heads/dependabot/cargo/main/prost-types-0.13.2","pushedAt":"2024-09-17T20:59:23.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"52cdd5a658a07895bdb0437254d3a865275f9292","after":null,"ref":"refs/heads/dependabot/cargo/main/syn-2.0.77","pushedAt":"2024-09-17T20:59:22.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"}},{"before":"02d4453af1c18d7e31c21d60574456226b71793e","after":"6c8bf5f8aadaf5a3431da272ed6b3afa06efa8ec","ref":"refs/heads/main","pushedAt":"2024-09-17T20:58:12.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"timsaucer","name":"Tim Saucer","path":"/timsaucer","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24943992?s=80&v=4"},"commit":{"message":"Upgrade datafusion (#867)\n\n* update dependencies\r\n\r\n* update get_logical_plan signature\r\n\r\n* remove row_number() function\r\n\r\nrow_number was converted to a UDF in datafusion v42 https://github.com/apache/datafusion/pull/12030\r\nThis specific functionality needs to be added back in.\r\n\r\n* remove unneeded dependency\r\n\r\n* fix pyo3 warnings\r\n\r\nImplicit defaults for trailing optional arguments have been deprecated\r\nin pyo3 v0.22.0 https://github.com/PyO3/pyo3/pull/4078\r\n\r\n* update object_store dependency\r\n\r\n* change PyExpr -> PySortExpr\r\n\r\n* comment out key.extract::<&PyTuple>() condition statement\r\n\r\n* change more instances of PyExpr > PySortExpr\r\n\r\n* update function signatures to use _bound versions\r\n\r\n* remove clone\r\n\r\n* Working through some of the sort requirement changes\r\n\r\n* remove unused import\r\n\r\n* expr.display_name is deprecated, used format!() + schema_name() instead\r\n\r\n* expr.canonical_name() is deprecated, use format!() expr instead\r\n\r\n* remove comment\r\n\r\n* fix tuple extraction in dataframe.__getitem__()\r\n\r\n* remove unneeded import\r\n\r\n* Add docstring comments to SortExpr python class\r\n\r\n* change extract() to downcast()\r\n\r\nCo-authored-by: Michael J Ward \r\n\r\n* deprecate Expr::display_name\r\n\r\nRef: https://github.com/apache/datafusion/pull/11797\r\n\r\n* fix lint errors\r\n\r\n* update datafusion commit hash\r\n\r\n* fix type in cargo file for arrow features\r\n\r\n* upgrade to datafusion 42\r\n\r\n* cleanup\r\n\r\n---------\r\n\r\nCo-authored-by: Tim Saucer \r\nCo-authored-by: Michael J Ward \r\nCo-authored-by: Michael-J-Ward ","shortMessageHtmlLink":"Upgrade datafusion (#867)"}},{"before":"ffccb720228e9bbe358886f11c3bc3233233c15b","after":"c147e5e35019ecec951fddc23516a98639b14edf","ref":"refs/heads/asf-site","pushedAt":"2024-09-16T13:17:16.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":"Publish built docs triggered by 89b77abf14e8e2e7ee2a83ab23717cb7c1491a02","shortMessageHtmlLink":"Publish built docs triggered by 89b77ab"}},{"before":"ed40c35195edd127a3a8fb0acc4d185dab22ff3f","after":"f459cc5dbf43b182cedcd43dff46610539fb7927","ref":"refs/heads/asf-staging","pushedAt":"2024-09-11T17:32:22.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":"Publish built docs triggered by 02d4453af1c18d7e31c21d60574456226b71793e","shortMessageHtmlLink":"Publish built docs triggered by 02d4453"}},{"before":"89b77abf14e8e2e7ee2a83ab23717cb7c1491a02","after":"02d4453af1c18d7e31c21d60574456226b71793e","ref":"refs/heads/main","pushedAt":"2024-09-11T17:28:10.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"timsaucer","name":"Tim Saucer","path":"/timsaucer","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24943992?s=80&v=4"},"commit":{"message":"feat: expose between (#868)\n\ncloses #809","shortMessageHtmlLink":"feat: expose between (#868)"}},{"before":"68dd72a1743c752e16c2c1660c0f61509156868c","after":"ed40c35195edd127a3a8fb0acc4d185dab22ff3f","ref":"refs/heads/asf-staging","pushedAt":"2024-09-09T22:48:22.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":"Publish built docs triggered by 89b77abf14e8e2e7ee2a83ab23717cb7c1491a02","shortMessageHtmlLink":"Publish built docs triggered by 89b77ab"}},{"before":"3dc0dc2382bb1102d73550fe40783a175ee8461c","after":"97508da5e1e1f1446661d393d6502e44bc328bb7","ref":"refs/heads/dependabot/cargo/main/arrow-53.0.0","pushedAt":"2024-09-09T22:45:56.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump arrow from 52.2.0 to 53.0.0\n\nBumps [arrow](https://github.com/apache/arrow-rs) from 52.2.0 to 53.0.0.\n- [Changelog](https://github.com/apache/arrow-rs/blob/master/CHANGELOG-old.md)\n- [Commits](https://github.com/apache/arrow-rs/compare/52.2.0...53.0.0)\n\n---\nupdated-dependencies:\n- dependency-name: arrow\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump arrow from 52.2.0 to 53.0.0"}},{"before":"9ddb1c30efa226db9884f5c8cb59529b7d5e0558","after":"be994717a1aa28b49e94abd0dfad400ceddd0f6f","ref":"refs/heads/dependabot/cargo/main/async-trait-0.1.82","pushedAt":"2024-09-09T22:45:55.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump async-trait from 0.1.81 to 0.1.82\n\nBumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.81 to 0.1.82.\n- [Release notes](https://github.com/dtolnay/async-trait/releases)\n- [Commits](https://github.com/dtolnay/async-trait/compare/0.1.81...0.1.82)\n\n---\nupdated-dependencies:\n- dependency-name: async-trait\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump async-trait from 0.1.81 to 0.1.82"}},{"before":"3b2ccf3ed7245bfb9158358c4e971fc50ecf51a2","after":"52cdd5a658a07895bdb0437254d3a865275f9292","ref":"refs/heads/dependabot/cargo/main/syn-2.0.77","pushedAt":"2024-09-09T22:45:53.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump syn from 2.0.72 to 2.0.77\n\nBumps [syn](https://github.com/dtolnay/syn) from 2.0.72 to 2.0.77.\n- [Release notes](https://github.com/dtolnay/syn/releases)\n- [Commits](https://github.com/dtolnay/syn/compare/2.0.72...2.0.77)\n\n---\nupdated-dependencies:\n- dependency-name: syn\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump syn from 2.0.72 to 2.0.77"}},{"before":"fd8224e1d32282c1664575f32a2eb5d39ffaabba","after":"89b77abf14e8e2e7ee2a83ab23717cb7c1491a02","ref":"refs/heads/main","pushedAt":"2024-09-09T22:44:32.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"andygrove","name":"Andy Grove","path":"/andygrove","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/934084?s=80&v=4"},"commit":{"message":"prepare release of `datafusion-python` 41.0.0 (#866)\n\n* bump datafusion-python version\r\n\r\n* generate changelog\r\n\r\nI used the following command, then pasted the output into CHANGELOG.md.\r\n\r\n```console\r\n./dev/release/generate-changelog.py 40.1.0-rc1 HEAD 41.0.0\r\n```","shortMessageHtmlLink":"prepare release of datafusion-python 41.0.0 (#866)"}},{"before":"f0253060d3c19e6d774024f25fa37f70027e02f5","after":"68dd72a1743c752e16c2c1660c0f61509156868c","ref":"refs/heads/asf-staging","pushedAt":"2024-09-09T18:17:37.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":"Publish built docs triggered by fd8224e1d32282c1664575f32a2eb5d39ffaabba","shortMessageHtmlLink":"Publish built docs triggered by fd8224e"}},{"before":"4ea0032ff890fb5ab0838e42b8b66ffbd521f4df","after":"fd8224e1d32282c1664575f32a2eb5d39ffaabba","ref":"refs/heads/main","pushedAt":"2024-09-09T18:13:21.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"timsaucer","name":"Tim Saucer","path":"/timsaucer","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24943992?s=80&v=4"},"commit":{"message":"Update Aggregate functions to take builder parameters (#859)\n\n* Add NullTreatment enum wrapper and add filter option to approx_distinct\r\n\r\n* Small usability on aggregate\r\n\r\n* Adding documentation and additional unit test for approx_median\r\n\r\n* Update approx_percentil_cont with builder parameters it uses, which is filter but not distinct\r\n\r\n* Update approx_percentil_cont_with_weight with builder parameters it uses, which is filter but not distinct\r\n\r\n* Update array_agg to use aggregate options\r\n\r\n* Update builder options for avg aggregate function\r\n\r\n* move bit_and bit_or to use macro to generaty python fn\r\n\r\n* Update builder arguments for bitwise operators\r\n\r\n* Use macro for bool_and and bool_or\r\n\r\n* Update python wrapper for arguments appropriate to bool operators\r\n\r\n* Set corr to use macro for pyfunction\r\n\r\n* Update unit test to make it easier to debug\r\n\r\n* Update corr python wrapper to expose only builder parameters used\r\n\r\n* Update count and count_star to use macro for exposing\r\n\r\n* Update count and count_star with approprate aggregation options\r\n\r\n* Move covar_pop and covar_samp to use macro for aggregates\r\n\r\n* Updateing covar_pop and covar_samp with builder option\r\n\r\n* Use macro for last_value and move first_value to be near it\r\n\r\n* Update first_value and last_value with the builder parameters that are relevant\r\n\r\n* Remove grouping since it is not actually implemented upstream\r\n\r\n* Move median to use macro\r\n\r\n* Expose builder options for median\r\n\r\n* Expose nth value\r\n\r\n* Updating linear regression functions to use filter and macro\r\n\r\n* Update stddev and stddev_pop to use filter and macro\r\n\r\n* Expose string_agg\r\n\r\n* Add string_agg to python wrappers and add unit test\r\n\r\n* Switch sum to use macro in rust side and expose correct options in python wrapper\r\n\r\n* Use macro for exposing var_pop and var_samp\r\n\r\n* Add unit tests for filtering on var_pop and var_samp\r\n\r\n* Move approximation functions to use macro when possible\r\n\r\n* Update user documentation to explain in detail the options for aggregate functions\r\n\r\n* Update unit test to handle Python 3.10\r\n\r\n* Clean up commented code","shortMessageHtmlLink":"Update Aggregate functions to take builder parameters (#859)"}},{"before":null,"after":"3dc0dc2382bb1102d73550fe40783a175ee8461c","ref":"refs/heads/dependabot/cargo/main/arrow-53.0.0","pushedAt":"2024-09-07T19:52:01.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump arrow from 52.2.0 to 53.0.0\n\nBumps [arrow](https://github.com/apache/arrow-rs) from 52.2.0 to 53.0.0.\n- [Changelog](https://github.com/apache/arrow-rs/blob/master/CHANGELOG-old.md)\n- [Commits](https://github.com/apache/arrow-rs/compare/52.2.0...53.0.0)\n\n---\nupdated-dependencies:\n- dependency-name: arrow\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump arrow from 52.2.0 to 53.0.0"}},{"before":null,"after":"9ddb1c30efa226db9884f5c8cb59529b7d5e0558","ref":"refs/heads/dependabot/cargo/main/async-trait-0.1.82","pushedAt":"2024-09-07T19:51:47.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump async-trait from 0.1.81 to 0.1.82\n\nBumps [async-trait](https://github.com/dtolnay/async-trait) from 0.1.81 to 0.1.82.\n- [Release notes](https://github.com/dtolnay/async-trait/releases)\n- [Commits](https://github.com/dtolnay/async-trait/compare/0.1.81...0.1.82)\n\n---\nupdated-dependencies:\n- dependency-name: async-trait\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump async-trait from 0.1.81 to 0.1.82"}},{"before":"7f21143b356c7e9553be9fdc2c2c111b0752f9dd","after":"f0253060d3c19e6d774024f25fa37f70027e02f5","ref":"refs/heads/asf-staging","pushedAt":"2024-09-07T11:11:14.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":"Publish built docs triggered by 4ea0032ff890fb5ab0838e42b8b66ffbd521f4df","shortMessageHtmlLink":"Publish built docs triggered by 4ea0032"}},{"before":"6154ef983faeb01da98e9fcd6755b89fdef3d9ea","after":"4ea0032ff890fb5ab0838e42b8b66ffbd521f4df","ref":"refs/heads/main","pushedAt":"2024-09-07T11:07:27.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"timsaucer","name":"Tim Saucer","path":"/timsaucer","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24943992?s=80&v=4"},"commit":{"message":"add section to the contributor guide on separating python and rust code (#860)","shortMessageHtmlLink":"add section to the contributor guide on separating python and rust co…"}},{"before":"69c1648bc2784e7e2d26bc0801a2ae0d50a841ef","after":"7f21143b356c7e9553be9fdc2c2c111b0752f9dd","ref":"refs/heads/asf-staging","pushedAt":"2024-09-07T01:14: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":"Publish built docs triggered by 6154ef983faeb01da98e9fcd6755b89fdef3d9ea","shortMessageHtmlLink":"Publish built docs triggered by 6154ef9"}},{"before":"c77e85765312bc73d8c2704f468f5bedc200736a","after":"2c7e561832fff4e905d1d153c9c1a386f9466b97","ref":"refs/heads/dependabot/cargo/main/prost-0.13.2","pushedAt":"2024-09-07T01:11:40.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump prost from 0.12.6 to 0.13.2\n\nBumps [prost](https://github.com/tokio-rs/prost) from 0.12.6 to 0.13.2.\n- [Release notes](https://github.com/tokio-rs/prost/releases)\n- [Changelog](https://github.com/tokio-rs/prost/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/tokio-rs/prost/compare/v0.12.6...v0.13.2)\n\n---\nupdated-dependencies:\n- dependency-name: prost\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump prost from 0.12.6 to 0.13.2"}},{"before":"03a1b8da4ae9241524d8d1245f253758a3bcf6cf","after":"3b2ccf3ed7245bfb9158358c4e971fc50ecf51a2","ref":"refs/heads/dependabot/cargo/main/syn-2.0.77","pushedAt":"2024-09-07T01:11:30.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump syn from 2.0.72 to 2.0.77\n\nBumps [syn](https://github.com/dtolnay/syn) from 2.0.72 to 2.0.77.\n- [Release notes](https://github.com/dtolnay/syn/releases)\n- [Commits](https://github.com/dtolnay/syn/compare/2.0.72...2.0.77)\n\n---\nupdated-dependencies:\n- dependency-name: syn\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump syn from 2.0.72 to 2.0.77"}},{"before":"dd3949dd96657f74a17370f4b8aff1a3e2375f86","after":"eecea33a3c7fe83f132c7f9bfb13d4ee3ec66f94","ref":"refs/heads/dependabot/cargo/main/prost-types-0.13.2","pushedAt":"2024-09-07T01:11:29.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"dependabot[bot]","name":null,"path":"/apps/dependabot","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/29110?s=80&v=4"},"commit":{"message":"build(deps): bump prost-types from 0.12.6 to 0.13.2\n\nBumps [prost-types](https://github.com/tokio-rs/prost) from 0.12.6 to 0.13.2.\n- [Release notes](https://github.com/tokio-rs/prost/releases)\n- [Changelog](https://github.com/tokio-rs/prost/blob/master/CHANGELOG.md)\n- [Commits](https://github.com/tokio-rs/prost/compare/v0.12.6...v0.13.2)\n\n---\nupdated-dependencies:\n- dependency-name: prost-types\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"build(deps): bump prost-types from 0.12.6 to 0.13.2"}},{"before":"a0913c728f5f323c1eb4913e614c9d996083e274","after":"6154ef983faeb01da98e9fcd6755b89fdef3d9ea","ref":"refs/heads/main","pushedAt":"2024-09-07T01:10:10.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"timsaucer","name":"Tim Saucer","path":"/timsaucer","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/24943992?s=80&v=4"},"commit":{"message":"chore: Use datafusion re-exported dependencies (#856)\n\n* Use datafusion re-exported crates\r\n\r\n* update dependency export syntax","shortMessageHtmlLink":"chore: Use datafusion re-exported dependencies (#856)"}},{"before":"b85789523e60872829ef5dc92a701e2f4ebb4156","after":"69c1648bc2784e7e2d26bc0801a2ae0d50a841ef","ref":"refs/heads/asf-staging","pushedAt":"2024-09-06T15:33:52.000Z","pushType":"force_push","commitsCount":0,"pusher":{"login":"github-actions[bot]","name":null,"path":"/apps/github-actions","primaryAvatarUrl":"https://avatars.githubusercontent.com/in/15368?s=80&v=4"},"commit":{"message":"Publish built docs triggered by a0913c728f5f323c1eb4913e614c9d996083e274","shortMessageHtmlLink":"Publish built docs triggered by a0913c7"}},{"before":"82650357d74e1d9fc1dd2d76cab39e1d3dd6c408","after":"b85789523e60872829ef5dc92a701e2f4ebb4156","ref":"refs/heads/asf-staging","pushedAt":"2024-09-06T15:32: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":"Publish built docs triggered by 859acb4c582eb6ab0147843ace748a93c359264f","shortMessageHtmlLink":"Publish built docs triggered by 859acb4"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0xN1QyMTowMjoyNy4wMDAwMDBazwAAAAS4_LXU","startCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0xN1QyMTowMjoyNy4wMDAwMDBazwAAAAS4_LXU","endCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0wNlQxNTozMjo0OC4wMDAwMDBazwAAAASvE6sB"}},"title":"Activity · apache/datafusion-python"}