{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":498785517,"defaultBranch":"main","name":"arrow-adbc","ownerLogin":"apache","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2022-06-01T15:08:49.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/47359?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1726794530.0","currentOid":""},"activityList":{"items":[{"before":"b69170f947c307eeabc421f0be06084dfdb473fd","after":"3409e69d7d9bac353dd7904de450587136deb2c6","ref":"refs/heads/asf-site","pushedAt":"2024-09-20T02:41:09.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 documentation","shortMessageHtmlLink":"publish documentation"}},{"before":"fa8ea103bec8696143f29a2c2a0f1d532db0a7d9","after":"46dc748423dd4a03b227e7cd20a13898ac231dd2","ref":"refs/heads/main","pushedAt":"2024-09-20T02:38:05.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":"refactor(c/driver/postgresql): Use copy writer in BindStream for parameter binding (#2157)\n\nThis PR refactors the `BindStream` to use the COPY writer instead of its\r\nown serialization logic. This logic is the same between insertion and\r\nbinding, although the API used to send it to the database is slightly\r\ndifferent. This is a helpful consolidation of logic and means that\r\nadding type support on the Arrow or Postgresql side (or fixing bugs in\r\nthe inference or serialization) is slightly easier. It also means we can\r\nbind parameters that are lists and is a workaround for inserting into a\r\ntable with a schema where Postgres knows how to cast the types (but ADBC\r\nmight not yet).\r\n\r\n``` r\r\nlibrary(adbcdrivermanager)\r\nlibrary(nanoarrow)\r\n\r\ncon <- adbc_database_init(\r\n adbcpostgresql::adbcpostgresql(),\r\n uri = \"postgresql://localhost:5432/postgres?user=postgres&password=password\"\r\n) |> \r\n adbc_connection_init()\r\n\r\n# Create an array with a uint32 column\r\ndf <- tibble::tibble(uint32_col = 1:5)\r\narray <- df |> \r\n nanoarrow::as_nanoarrow_array(\r\n schema = na_struct(list(uint32_col = na_uint32()))\r\n )\r\n\r\n# Create a table with an integer column\r\ncon |> execute_adbc(\"DROP TABLE IF EXISTS adbc_test\")\r\ncon |> execute_adbc(\"CREATE TABLE adbc_test (uint32_col int4)\")\r\n\r\n# This will fail (types not identical)\r\narray |> write_adbc(con, \"adbc_test\", mode = \"append\")\r\n#> Error in adbc_statement_execute_query(stmt): INVALID_ARGUMENT: [libpq] Failed to execute COPY statement: PGRES_FATAL_ERROR ERROR: incorrect binary data format\r\n#> CONTEXT: COPY adbc_test, line 1, column uint32_col\r\n\r\ncon |> \r\n execute_adbc(\"INSERT INTO adbc_test VALUES ($1)\", bind = array)\r\ncon |> \r\n read_adbc(\"SELECT * FROM adbc_test\") |> \r\n tibble::as_tibble()\r\n#> # A tibble: 5 × 1\r\n#> uint32_col\r\n#> \r\n#> 1 1\r\n#> 2 2\r\n#> 3 3\r\n#> 4 4\r\n#> 5 5\r\n```\r\n\r\nCreated on 2024-09-12 with [reprex\r\nv2.1.1](https://reprex.tidyverse.org)","shortMessageHtmlLink":"refactor(c/driver/postgresql): Use copy writer in BindStream for para…"}},{"before":"3b3d6f720cdc29bd9dc912af141e6732e63be213","after":"fa8ea103bec8696143f29a2c2a0f1d532db0a7d9","ref":"refs/heads/main","pushedAt":"2024-09-20T02:30:14.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"lidavidm","name":"David Li","path":"/lidavidm","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/327919?s=80&v=4"},"commit":{"message":"docs(python): assorted Python documentation fixes (#2175)","shortMessageHtmlLink":"docs(python): assorted Python documentation fixes (#2175)"}},{"before":"52be2b60119de5dc918da722caf9405bd754b344","after":"b69170f947c307eeabc421f0be06084dfdb473fd","ref":"refs/heads/asf-site","pushedAt":"2024-09-20T01:19:02.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 documentation","shortMessageHtmlLink":"publish documentation"}},{"before":"1f7c67bab04cfe83e63e6370cce431294c58d3fe","after":null,"ref":"refs/heads/dependabot/maven/java/com.google.protobuf-protobuf-java-4.28.1","pushedAt":"2024-09-20T01:08:50.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":null,"after":"a2ce8c47bbc83dd750ddda1aad7feaa8bc9ddc43","ref":"refs/heads/dependabot/maven/java/com.google.protobuf-protobuf-java-4.28.2","pushedAt":"2024-09-20T01:08:46.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":"chore(java): bump com.google.protobuf:protobuf-java in /java\n\nBumps [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf) from 3.25.5 to 4.28.2.\n- [Release notes](https://github.com/protocolbuffers/protobuf/releases)\n- [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl)\n- [Commits](https://github.com/protocolbuffers/protobuf/commits)\n\n---\nupdated-dependencies:\n- dependency-name: com.google.protobuf:protobuf-java\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"chore(java): bump com.google.protobuf:protobuf-java in /java"}},{"before":"e4b04cab15d6343cf654a08d414b61fbd799888e","after":null,"ref":"refs/heads/dependabot/maven/java/driver/flight-sql/com.google.protobuf-protobuf-java-3.25.5","pushedAt":"2024-09-20T01:07:49.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"lidavidm","name":"David Li","path":"/lidavidm","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/327919?s=80&v=4"}},{"before":"42e5063f29c9850a1b5155ce7000fc568a12fc69","after":"3b3d6f720cdc29bd9dc912af141e6732e63be213","ref":"refs/heads/main","pushedAt":"2024-09-20T01:07:45.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"lidavidm","name":"David Li","path":"/lidavidm","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/327919?s=80&v=4"},"commit":{"message":"chore(java): bump com.google.protobuf:protobuf-java from 3.22.3 to 3.25.5 in driver/flight-sql (#2170)\n\nBumps\r\n[com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf)\r\nfrom 3.22.3 to 3.25.5.\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(java): bump com.google.protobuf:protobuf-java from 3.22.3 to 3.…"}},{"before":"7899d135ac8b23a0963b1a2a850189f0e607fde2","after":"52be2b60119de5dc918da722caf9405bd754b344","ref":"refs/heads/asf-site","pushedAt":"2024-09-19T17:29: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 documentation","shortMessageHtmlLink":"publish documentation"}},{"before":"36fce3d6c276d0a19bae6ddcd186b84530da8d62","after":"42e5063f29c9850a1b5155ce7000fc568a12fc69","ref":"refs/heads/main","pushedAt":"2024-09-19T17:17:35.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"CurtHagenlocher","name":"Curt Hagenlocher","path":"/CurtHagenlocher","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/904803?s=80&v=4"},"commit":{"message":"feat(csharp/src/Drivers/Apache/Spark): Azure HDInsight Spark Documentation (#2164)\n\nAdded documentation on how to connect to Azure HDInsight Spark Cluster\r\nRemoved existing flags related to Azure HDInsight Spark\r\n\r\nCo-authored-by: Sudhir Emmadi ","shortMessageHtmlLink":"feat(csharp/src/Drivers/Apache/Spark): Azure HDInsight Spark Document…"}},{"before":null,"after":"e4b04cab15d6343cf654a08d414b61fbd799888e","ref":"refs/heads/dependabot/maven/java/driver/flight-sql/com.google.protobuf-protobuf-java-3.25.5","pushedAt":"2024-09-19T16:18:43.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":"chore(deps): bump com.google.protobuf:protobuf-java\n\nBumps [com.google.protobuf:protobuf-java](https://github.com/protocolbuffers/protobuf) from 3.22.3 to 3.25.5.\n- [Release notes](https://github.com/protocolbuffers/protobuf/releases)\n- [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl)\n- [Commits](https://github.com/protocolbuffers/protobuf/compare/v3.22.3...v3.25.5)\n\n---\nupdated-dependencies:\n- dependency-name: com.google.protobuf:protobuf-java\n dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"chore(deps): bump com.google.protobuf:protobuf-java"}},{"before":"d0166eb1db1970d3c5cac7c0037f0254842d55d0","after":"7899d135ac8b23a0963b1a2a850189f0e607fde2","ref":"refs/heads/asf-site","pushedAt":"2024-09-19T04:42:17.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 documentation","shortMessageHtmlLink":"publish documentation"}},{"before":"fbd72abc0ebc0d45006be8316dd88a29ce8c5fed","after":"36fce3d6c276d0a19bae6ddcd186b84530da8d62","ref":"refs/heads/main","pushedAt":"2024-09-19T04:30:46.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"lidavidm","name":"David Li","path":"/lidavidm","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/327919?s=80&v=4"},"commit":{"message":"chore(go/adbc): bump go version, other dependencies (#2150)\n\n1.21 is EOL so we have to use 1.22 now\r\n\r\n---------\r\n\r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(go/adbc): bump go version, other dependencies (#2150)"}},{"before":"9852f6fd3e02d5dc9698b767dd4401d96e65af9a","after":"d0166eb1db1970d3c5cac7c0037f0254842d55d0","ref":"refs/heads/asf-site","pushedAt":"2024-09-17T01:25:52.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 documentation","shortMessageHtmlLink":"publish documentation"}},{"before":"e5e93a30e1129f66fc5854019283ea5e708c3e2f","after":null,"ref":"refs/heads/dependabot/go_modules/go/adbc/golang.org/x/oauth2-0.23.0","pushedAt":"2024-09-17T01:15:25.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":"12f38e324a4e802f6f7077b07bd7cd55af012b65","after":null,"ref":"refs/heads/dependabot/go_modules/go/adbc/google.golang.org/api-0.197.0","pushedAt":"2024-09-17T01:14:24.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"lidavidm","name":"David Li","path":"/lidavidm","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/327919?s=80&v=4"}},{"before":"5a3ffd49aa214c146cffaaf4d17b6d02d7dc22e9","after":"fbd72abc0ebc0d45006be8316dd88a29ce8c5fed","ref":"refs/heads/main","pushedAt":"2024-09-17T01:14:20.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"lidavidm","name":"David Li","path":"/lidavidm","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/327919?s=80&v=4"},"commit":{"message":"chore(go/adbc): bump google.golang.org/api from 0.195.0 to 0.197.0 in /go/adbc (#2162)\n\nBumps\r\n[google.golang.org/api](https://github.com/googleapis/google-api-go-client)\r\nfrom 0.195.0 to 0.197.0.\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(go/adbc): bump google.golang.org/api from 0.195.0 to 0.197.0 in…"}},{"before":"2d1b149616ed2298daf21bebda5d8d2f4d5d1852","after":"9852f6fd3e02d5dc9698b767dd4401d96e65af9a","ref":"refs/heads/asf-site","pushedAt":"2024-09-17T00:49:45.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 documentation","shortMessageHtmlLink":"publish documentation"}},{"before":"2fe0ce0d3888713eacf709842e36bd3a63034b3f","after":"2d1b149616ed2298daf21bebda5d8d2f4d5d1852","ref":"refs/heads/asf-site","pushedAt":"2024-09-17T00:38:08.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 documentation","shortMessageHtmlLink":"publish documentation"}},{"before":"dd0188b2180acc51193c924b550668a8fbb994f9","after":null,"ref":"refs/heads/dependabot/maven/java/com.google.errorprone-error_prone_core-2.32.0","pushedAt":"2024-09-17T00:29:52.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"lidavidm","name":"David Li","path":"/lidavidm","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/327919?s=80&v=4"}},{"before":"289e1aa9948d1351aebf3a10badf058a5fde299e","after":"5a3ffd49aa214c146cffaaf4d17b6d02d7dc22e9","ref":"refs/heads/main","pushedAt":"2024-09-17T00:29:49.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"lidavidm","name":"David Li","path":"/lidavidm","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/327919?s=80&v=4"},"commit":{"message":"chore(java): bump com.google.errorprone:error_prone_core from 2.31.0 to 2.32.0 in /java (#2159)\n\nBumps\r\n[com.google.errorprone:error_prone_core](https://github.com/google/error-prone)\r\nfrom 2.31.0 to 2.32.0.\r\n\r\n---------\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\r\nCo-authored-by: David Li ","shortMessageHtmlLink":"chore(java): bump com.google.errorprone:error_prone_core from 2.31.0 …"}},{"before":"683c3926b3214678793096889a40a675a7a33b6d","after":"2fe0ce0d3888713eacf709842e36bd3a63034b3f","ref":"refs/heads/asf-site","pushedAt":"2024-09-17T00:27:08.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 documentation","shortMessageHtmlLink":"publish documentation"}},{"before":"b36ad5d9ce3a99a1107fd5b8367414c9a946cb46","after":"dd0188b2180acc51193c924b550668a8fbb994f9","ref":"refs/heads/dependabot/maven/java/com.google.errorprone-error_prone_core-2.32.0","pushedAt":"2024-09-17T00:19:37.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"lidavidm","name":"David Li","path":"/lidavidm","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/327919?s=80&v=4"},"commit":{"message":"tweak java versions","shortMessageHtmlLink":"tweak java versions"}},{"before":"5d03e91895c61897afeb872ac499efb793134f8a","after":"12f38e324a4e802f6f7077b07bd7cd55af012b65","ref":"refs/heads/dependabot/go_modules/go/adbc/google.golang.org/api-0.197.0","pushedAt":"2024-09-17T00:17:50.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":"chore(go/adbc): bump google.golang.org/api in /go/adbc\n\nBumps [google.golang.org/api](https://github.com/googleapis/google-api-go-client) from 0.195.0 to 0.197.0.\n- [Release notes](https://github.com/googleapis/google-api-go-client/releases)\n- [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md)\n- [Commits](https://github.com/googleapis/google-api-go-client/compare/v0.195.0...v0.197.0)\n\n---\nupdated-dependencies:\n- dependency-name: google.golang.org/api\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"chore(go/adbc): bump google.golang.org/api in /go/adbc"}},{"before":"d088822644333e0f034449025a9f0b6bd5b8be0e","after":null,"ref":"refs/heads/dependabot/maven/java/com.uber.nullaway-nullaway-0.11.3","pushedAt":"2024-09-17T00:17:22.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"lidavidm","name":"David Li","path":"/lidavidm","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/327919?s=80&v=4"}},{"before":"012c5bd4b777dfc5fe57fb7d51c7203653989665","after":"289e1aa9948d1351aebf3a10badf058a5fde299e","ref":"refs/heads/main","pushedAt":"2024-09-17T00:17:19.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"lidavidm","name":"David Li","path":"/lidavidm","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/327919?s=80&v=4"},"commit":{"message":"chore(java): bump com.uber.nullaway:nullaway from 0.11.2 to 0.11.3 in /java (#2158)\n\nBumps [com.uber.nullaway:nullaway](https://github.com/uber/NullAway)\r\nfrom 0.11.2 to 0.11.3.\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(java): bump com.uber.nullaway:nullaway from 0.11.2 to 0.11.3 in…"}},{"before":"86717c48ea969ea2d1655bb6ed4dc60f23111ecd","after":"5d03e91895c61897afeb872ac499efb793134f8a","ref":"refs/heads/dependabot/go_modules/go/adbc/google.golang.org/api-0.197.0","pushedAt":"2024-09-17T00:16:47.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":"chore(go/adbc): bump google.golang.org/api in /go/adbc\n\nBumps [google.golang.org/api](https://github.com/googleapis/google-api-go-client) from 0.195.0 to 0.197.0.\n- [Release notes](https://github.com/googleapis/google-api-go-client/releases)\n- [Changelog](https://github.com/googleapis/google-api-go-client/blob/main/CHANGES.md)\n- [Commits](https://github.com/googleapis/google-api-go-client/compare/v0.195.0...v0.197.0)\n\n---\nupdated-dependencies:\n- dependency-name: google.golang.org/api\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"chore(go/adbc): bump google.golang.org/api in /go/adbc"}},{"before":"1e762fb676fe19dbd973644ad3baba535051af65","after":null,"ref":"refs/heads/dependabot/go_modules/go/adbc/google.golang.org/grpc-1.66.2","pushedAt":"2024-09-17T00:15: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":"bc447b29fcb4b432dd365ca83f3736779ceace1d","after":"012c5bd4b777dfc5fe57fb7d51c7203653989665","ref":"refs/heads/main","pushedAt":"2024-09-17T00:15:24.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"lidavidm","name":"David Li","path":"/lidavidm","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/327919?s=80&v=4"},"commit":{"message":"chore(go/adbc): bump google.golang.org/grpc from 1.66.1 to 1.66.2 in /go/adbc (#2161)\n\nBumps [google.golang.org/grpc](https://github.com/grpc/grpc-go) from\r\n1.66.1 to 1.66.2.\r\n\r\nSigned-off-by: dependabot[bot] \r\nCo-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>","shortMessageHtmlLink":"chore(go/adbc): bump google.golang.org/grpc from 1.66.1 to 1.66.2 in …"}},{"before":"aa0b7d4001a2e30577a1b3eb9e064323e985ef11","after":null,"ref":"refs/heads/dependabot/go_modules/go/adbc/google.golang.org/api-0.196.0","pushedAt":"2024-09-16T20:58:54.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"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0yMFQwMjo0MTowOS4wMDAwMDBazwAAAAS7fupl","startCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0yMFQwMjo0MTowOS4wMDAwMDBazwAAAAS7fupl","endCursor":"Y3Vyc29yOnYyOpK7MjAyNC0wOS0xNlQyMDo1ODo1NC4wMDAwMDBazwAAAAS34FdS"}},"title":"Activity · apache/arrow-adbc"}