{"payload":{"feedbackUrl":"https://github.com/orgs/community/discussions/53140","repo":{"id":51905353,"defaultBranch":"main","name":"arrow","ownerLogin":"apache","currentUserCanPush":false,"isFork":false,"isEmpty":false,"createdAt":"2016-02-17T08:00:23.000Z","ownerAvatar":"https://avatars.githubusercontent.com/u/47359?v=4","public":true,"private":false,"isOrgOwned":true},"refInfo":{"name":"","listCacheKey":"v0:1715087243.0","currentOid":""},"activityList":{"items":[{"before":"51689a040cbe3dee8702cd899a33fa62e0616bf1","after":"53859262ea988f31ce33a469305251064b5a53b8","ref":"refs/heads/main","pushedAt":"2024-05-08T01:52:57.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"wgtmac","name":"Gang Wu","path":"/wgtmac","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/4684607?s=80&v=4"},"commit":{"message":"GH-41431: [C++][Parquet][Dataset] Fix repeated scan on encrypted dataset (#41550)\n\n### Rationale for this change\n\nWhen parquet dataset is reused to create multiple scanners, `FileMetaData` objects are cached to avoid parsing them again. However, these caused issues on encrypted files since internal file decryptors were no longer created by cached `FileMetaData` objects.\n\n### What changes are included in this PR?\n\nExpose file_decryptor from FileMetaData and set it properly.\n\n### Are these changes tested?\n\nYes, modify the test to reproduce the issue and assure fixed.\n\n### Are there any user-facing changes?\n\nNo.\n* GitHub Issue: #41431\n\nAuthored-by: Gang Wu \nSigned-off-by: Gang Wu ","shortMessageHtmlLink":"GH-41431: [C++][Parquet][Dataset] Fix repeated scan on encrypted data…"}},{"before":"9cf0ee722ba048f3f305b38e536fa726eff9c813","after":"51689a040cbe3dee8702cd899a33fa62e0616bf1","ref":"refs/heads/main","pushedAt":"2024-05-07T16:14:22.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"pitrou","name":"Antoine Pitrou","path":"/pitrou","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1721820?s=80&v=4"},"commit":{"message":"GH-41545: [C++][Parquet] Fix DeltaLengthByteArrayEncoder::EstimatedDataEncodedSize (#41546)\n\n\n\n### Rationale for this change\n\n`DeltaLengthByteArrayEncoder::EstimatedDataEncodedSize` would return an wrong estimate when `Put(const Array&)` was called.\n\n### What changes are included in this PR?\n\nRemove `encoded_size_` and uses `sink_.length()` as `encoded_size_`.\n\n### Are these changes tested?\n\nYes\n\n### Are there any user-facing changes?\n\nNo\n\n* GitHub Issue: #41545\n\nAuthored-by: mwish \nSigned-off-by: Antoine Pitrou ","shortMessageHtmlLink":"GH-41545: [C++][Parquet] Fix DeltaLengthByteArrayEncoder::EstimatedDa…"}},{"before":"03f8ae754ede16f118ccdba0abb593b1461024aa","after":"9cf0ee722ba048f3f305b38e536fa726eff9c813","ref":"refs/heads/main","pushedAt":"2024-05-07T15:56:03.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"pitrou","name":"Antoine Pitrou","path":"/pitrou","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1721820?s=80&v=4"},"commit":{"message":"GH-41562: [C++][Parquet] Decoding: Fix num_value handling in ByteStreamSplitDecoder (#41565)\n\n\n\n### Rationale for this change\n\nThis problem is raised from https://github.com/apache/arrow/pull/40094 . Original bug fixed here: https://github.com/apache/arrow/pull/34140 , but this is corrupt in https://github.com/apache/arrow/pull/40094 .\n\n### What changes are included in this PR?\n\nRefine checking\n\n### Are these changes tested?\n\n* [x] Will add\n\n### Are there any user-facing changes?\n\nBugfix\n\n* GitHub Issue: #41562\n\nAuthored-by: mwish \nSigned-off-by: Antoine Pitrou ","shortMessageHtmlLink":"GH-41562: [C++][Parquet] Decoding: Fix num_value handling in ByteStre…"}},{"before":"c79b6a593e21c10dc65e06a2717809ab83fd31db","after":"03f8ae754ede16f118ccdba0abb593b1461024aa","ref":"refs/heads/main","pushedAt":"2024-05-07T13:42:55.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"nealrichardson","name":"Neal Richardson","path":"/nealrichardson","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2975928?s=80&v=4"},"commit":{"message":"GH-41540: [R] Simplify arrow_eval() logic and bindings environments (#41537)\n\n### Rationale for this change\r\n\r\nNSE is hard enough. I wanted to see if I could remove some layers of\r\ncomplexity.\r\n\r\n### What changes are included in this PR?\r\n\r\n* There no longer are separate collections of `agg_funcs` and\r\n`nse_funcs`. Now that the aggregation functions return Expressions\r\n(https://github.com/apache/arrow/pull/41223), there's no reason to treat\r\nthem separately. All bindings return Expressions now.\r\n* Both are removed and functions are just stored in `.cache$functions`.\r\nThere was a note wondering why both `nse_funcs` and that needed to\r\nexist. They don't.\r\n* `arrow_mask()` no longer has an `aggregations` argument: agg functions\r\nare always present.\r\n* Because agg functions are always present, `filter` and `arrange` now\r\nhave to check for whether the expressions passed to them contain\r\naggregations--this is supported in regular dplyr but we have deferred\r\nsupporting it here for now (see\r\nhttps://github.com/apache/arrow/pull/41350). If we decide we want to\r\nsupport it later, these checks are the entry points where we'd drop in\r\nthe `left_join()` as in `mutate()`.\r\n* The logic of evaluating expresssions in `filter()` has been\r\nsimplified.\r\n* Assorted other cleanups: `register_binding()` has two fewer arguments,\r\nfor example, and the duplicate functions for referencing agg_funcs are\r\ngone.\r\n\r\nThere is one more refactor I intend to pursue, and that's to rework\r\nabandon_ship and how arrow_eval does error handling, but I ~may~ will\r\ndefer that to a followup.\r\n\r\n### Are these changes tested?\r\n\r\nYes, though I'll add some more for filter/aggregate in the followup\r\nsince I'm reworking things there.\r\n\r\n### Are there any user-facing changes?\r\n\r\nThere are a couple of edge cases where the error message will change\r\nsubtly. For example, if you supplied a comma-separated list of filter\r\nexpressions, and more than one of them did not evaluate, previously you\r\nwould be informed of all of the failures; now, we error on the first\r\none. I don't think this is concerning.\r\n* GitHub Issue: #41540","shortMessageHtmlLink":"GH-41540: [R] Simplify arrow_eval() logic and bindings environments (#…"}},{"before":null,"after":"120b067ed5c19394ced1ada746bcdf1820844e83","ref":"refs/heads/release-16.1.0-rc0","pushedAt":"2024-05-07T13:07:23.000Z","pushType":"branch_creation","commitsCount":0,"pusher":{"login":"raulcd","name":"Raúl Cumplido","path":"/raulcd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/639755?s=80&v=4"},"commit":{"message":"MINOR: [Release] Update versions for 16.1.0","shortMessageHtmlLink":"MINOR: [Release] Update versions for 16.1.0"}},{"before":"5c43efb6355ad765f7c5db61bef46470f8671c6a","after":"ac8af222dd2e5800e2c6cbf45a5bdbb2309deed4","ref":"refs/heads/maint-16.1.0","pushedAt":"2024-05-07T12:55:37.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"raulcd","name":"Raúl Cumplido","path":"/raulcd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/639755?s=80&v=4"},"commit":{"message":"GH-41566: [CI][Packaging] macOS wheel for Catalina fails to build on macOS arm64 (#41567)\n\n### Rationale for this change\n\nWheels for macOS catalina are failing\n\n### What changes are included in this PR?\n\nUse macos-13 instead of (latest) ARM\n\n### Are these changes tested?\n\nYes, via archery\n\n### Are there any user-facing changes?\n\nNo\n* GitHub Issue: #41566\n\nAuthored-by: Raúl Cumplido \nSigned-off-by: Raúl Cumplido ","shortMessageHtmlLink":"GH-41566: [CI][Packaging] macOS wheel for Catalina fails to build on …"}},{"before":"5c43efb6355ad765f7c5db61bef46470f8671c6a","after":"ac8af222dd2e5800e2c6cbf45a5bdbb2309deed4","ref":"refs/heads/maint-16.x.x","pushedAt":"2024-05-07T12:55:32.000Z","pushType":"push","commitsCount":1,"pusher":{"login":"raulcd","name":"Raúl Cumplido","path":"/raulcd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/639755?s=80&v=4"},"commit":{"message":"GH-41566: [CI][Packaging] macOS wheel for Catalina fails to build on macOS arm64 (#41567)\n\n### Rationale for this change\n\nWheels for macOS catalina are failing\n\n### What changes are included in this PR?\n\nUse macos-13 instead of (latest) ARM\n\n### Are these changes tested?\n\nYes, via archery\n\n### Are there any user-facing changes?\n\nNo\n* GitHub Issue: #41566\n\nAuthored-by: Raúl Cumplido \nSigned-off-by: Raúl Cumplido ","shortMessageHtmlLink":"GH-41566: [CI][Packaging] macOS wheel for Catalina fails to build on …"}},{"before":"b719408f4abd9921f35935fe0de771f3b856efd1","after":"c79b6a593e21c10dc65e06a2717809ab83fd31db","ref":"refs/heads/main","pushedAt":"2024-05-07T12:54:10.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"raulcd","name":"Raúl Cumplido","path":"/raulcd","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/639755?s=80&v=4"},"commit":{"message":"GH-41566: [CI][Packaging] macOS wheel for Catalina fails to build on macOS arm64 (#41567)\n\n### Rationale for this change\n\nWheels for macOS catalina are failing\n\n### What changes are included in this PR?\n\nUse macos-13 instead of (latest) ARM\n\n### Are these changes tested?\n\nYes, via archery\n\n### Are there any user-facing changes?\n\nNo\n* GitHub Issue: #41566\n\nAuthored-by: Raúl Cumplido \nSigned-off-by: Raúl Cumplido ","shortMessageHtmlLink":"GH-41566: [CI][Packaging] macOS wheel for Catalina fails to build on …"}},{"before":"52321377cc9fbcb8678577f10232aea984a235f5","after":"b719408f4abd9921f35935fe0de771f3b856efd1","ref":"refs/heads/main","pushedAt":"2024-05-07T09:44:48.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"jorisvandenbossche","name":"Joris Van den Bossche","path":"/jorisvandenbossche","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1020496?s=80&v=4"},"commit":{"message":"GH-40560: [Python] RunEndEncodedArray.from_arrays: bugfix for Array arguments (#40560) (#41093)\n\n### Rationale for this change\n\nThe documentation suggests that `RunEndEncodedArray.from_arrays` takes two `Array` parameters, as would be expected of a `from_arrays` method. However, if given an `Array` instance for the `run_ends` parameter, it errors because `Array.__getitem__` returns a pyarrow scalar instead of a native Python integer.\n\n### What changes are included in this PR?\n\n* Handle `Array` parameters for `run_ends` by unconditionally coercing the logical length to a pyarrow scalar, then to a Python native value.\n\n### Are these change tested?\n\nYes. Augmented the existing unit tests to test with `Array` as well as Python lists, and check that the data types of the `Array` instances correctly carry over to the data type of the `RunEndEncodedArray`.\n\n### Are there any user-facing changes?\n\nNot apart from the bugfix; this was the minimum necessary change to make `Array` parameters work. `RunEndEncodedArray.from_arrays` continues to support e.g. python lists as before.\n\n* GitHub Issue: #40560\n\nAuthored-by: Hemidark \nSigned-off-by: Joris Van den Bossche ","shortMessageHtmlLink":"GH-40560: [Python] RunEndEncodedArray.from_arrays: bugfix for Array a…"}},{"before":"3a54e68c69b028afe6d5fbb58eb0c4520dca1308","after":"52321377cc9fbcb8678577f10232aea984a235f5","ref":"refs/heads/main","pushedAt":"2024-05-07T09:13:44.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"pitrou","name":"Antoine Pitrou","path":"/pitrou","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/1721820?s=80&v=4"},"commit":{"message":"GH-40997: [C++] Get null_bit_id according to are_cols_in_encoding_order in NullUpdateColumnToRow_avx2 (#40998)\n\n\n\n### Rationale for this change\nRecently, we find that the compare internal's avx2 function NullUpdateColumnToRowImp_avx2 lost the are_cols_in_encoding_order check when get null_bit_id. It may cause grouper's compare result wrong(are_cols_in_encoding_order = true in grouper).\n\n### What changes are included in this PR?\nGet `null_bit_id` according to `are_cols_in_encoding_order` in NullUpdateColumnToRow_avx2.\n\n### Are there any user-facing changes?\nNo\n\nCo-authored-by laotan332 \nCo-authored-by ZhangHuiGui <2689496754@ qq.com>\n\n* GitHub Issue: #40997\n\nLead-authored-by: ZhangHuiGui \nCo-authored-by: ZhangHuiGui <2689496754@qq.com>\nSigned-off-by: Antoine Pitrou ","shortMessageHtmlLink":"GH-40997: [C++] Get null_bit_id according to are_cols_in_encoding_ord…"}},{"before":"d10ebf055a393c94a693097db1dca08ff86745bd","after":"3a54e68c69b028afe6d5fbb58eb0c4520dca1308","ref":"refs/heads/main","pushedAt":"2024-05-06T20:40:51.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"kou","name":"Sutou Kouhei","path":"/kou","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/27350?s=80&v=4"},"commit":{"message":"MINOR: [Dev] Add zanmato1984 and ZhangHuiGui in collaborators list (#41544)\n\n\n\n### Rationale for this change\n\nRecently zanmato1984 and ZhangHuiGui is active on arrow-compute and arrow-acero module, which lacks maintainer. The contributions can be seem below:\n* https://github.com/apache/arrow/commits?author=zanmato1984\n* https://github.com/apache/arrow/commits?author=ZhangHuiGui\n\nI promote them as collaborators\n\n### What changes are included in this PR?\n\nChanges `.asf.yaml`\n\n### Are these changes tested?\n\nNo\n\n### Are there any user-facing changes?\n\nNo\n\nAuthored-by: mwish \nSigned-off-by: Sutou Kouhei ","shortMessageHtmlLink":"MINOR: [Dev] Add zanmato1984 and ZhangHuiGui in collaborators list (#…"}},{"before":null,"after":"be80401af97427fb713065d0bfc128020c36921e","ref":"refs/heads/dependabot/maven/java/com.google.api.grpc-proto-google-common-protos-2.39.0","pushedAt":"2024-05-06T16:53:26.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":"MINOR: [Java] Bump com.google.api.grpc:proto-google-common-protos\n\nBumps [com.google.api.grpc:proto-google-common-protos](https://github.com/googleapis/sdk-platform-java) from 2.37.1 to 2.39.0.\n- [Release notes](https://github.com/googleapis/sdk-platform-java/releases)\n- [Changelog](https://github.com/googleapis/sdk-platform-java/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/googleapis/sdk-platform-java/commits/v2.39.0)\n\n---\nupdated-dependencies:\n- dependency-name: com.google.api.grpc:proto-google-common-protos\n dependency-type: direct:development\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"MINOR: [Java] Bump com.google.api.grpc:proto-google-common-protos"}},{"before":null,"after":"ee329d62a9ab70e07e0e08e47a9fcf95f61868b8","ref":"refs/heads/dependabot/go_modules/go/golang.org/x/sys-0.20.0","pushedAt":"2024-05-06T16:38:53.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":"MINOR: [Go] Bump golang.org/x/sys from 0.19.0 to 0.20.0 in /go\n\nBumps [golang.org/x/sys](https://github.com/golang/sys) from 0.19.0 to 0.20.0.\n- [Commits](https://github.com/golang/sys/compare/v0.19.0...v0.20.0)\n\n---\nupdated-dependencies:\n- dependency-name: golang.org/x/sys\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"MINOR: [Go] Bump golang.org/x/sys from 0.19.0 to 0.20.0 in /go"}},{"before":null,"after":"7010f00edfb761a700ac9f55a56a1e5580b94764","ref":"refs/heads/dependabot/go_modules/go/google.golang.org/protobuf-1.34.1","pushedAt":"2024-05-06T16:38:45.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":"MINOR: [Go] Bump google.golang.org/protobuf from 1.34.0 to 1.34.1 in /go\n\nBumps google.golang.org/protobuf from 1.34.0 to 1.34.1.\n\n---\nupdated-dependencies:\n- dependency-name: google.golang.org/protobuf\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"MINOR: [Go] Bump google.golang.org/protobuf from 1.34.0 to 1.34.1 in /go"}},{"before":"66740281446322b84c3ddfa62600c5e65b8e4f6e","after":null,"ref":"refs/heads/dependabot/go_modules/go/modernc.org/sqlite-1.29.8","pushedAt":"2024-05-06T16:38: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":null,"after":"280ec8f4e16dda22f7a159e262ef68ab2473793f","ref":"refs/heads/dependabot/go_modules/go/modernc.org/sqlite-1.29.9","pushedAt":"2024-05-06T16:38:18.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":"MINOR: [Go] Bump modernc.org/sqlite from 1.29.6 to 1.29.9 in /go\n\nBumps [modernc.org/sqlite](https://gitlab.com/cznic/sqlite) from 1.29.6 to 1.29.9.\n- [Commits](https://gitlab.com/cznic/sqlite/compare/v1.29.6...v1.29.9)\n\n---\nupdated-dependencies:\n- dependency-name: modernc.org/sqlite\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"MINOR: [Go] Bump modernc.org/sqlite from 1.29.6 to 1.29.9 in /go"}},{"before":"4cf44b4bc3ab053b03c937d3327d43c105790462","after":"d10ebf055a393c94a693097db1dca08ff86745bd","ref":"refs/heads/main","pushedAt":"2024-05-06T13:28:22.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"nealrichardson","name":"Neal Richardson","path":"/nealrichardson","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/2975928?s=80&v=4"},"commit":{"message":"MINOR: [R] fix no visible global function definition: left_join (#41542)\n\n### Rationale for this change\r\n\r\nFollowup to #41350, fixes a check NOTE that caused.\r\n\r\n### What changes are included in this PR?\r\n\r\n`dplyr::` in two places.\r\n\r\n### Are these changes tested?\r\n\r\nCheck will be clean.\r\n\r\n### Are there any user-facing changes?\r\n\r\n🙅","shortMessageHtmlLink":"MINOR: [R] fix no visible global function definition: left_join (#41542)"}},{"before":"2ba129f0a28e0ec93c7f383a64c54bef24e26f59","after":"4cf44b4bc3ab053b03c937d3327d43c105790462","ref":"refs/heads/main","pushedAt":"2024-05-06T03:39:34.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"assignUser","name":"Jacob Wujciak-Jens","path":"/assignUser","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/16141871?s=80&v=4"},"commit":{"message":"MINOR: add jbonofre in collaborators list (#41528)\n\n### Rationale for this change\n\nAdd `jbonofre` to the ASF collaborators list.\n\n### What changes are included in this PR?\n\nUpdate `.asf.yaml`.\n\n### Are these changes tested?\n\nNA\n\n### Are there any user-facing changes?\n\nNo\n\nAuthored-by: JB Onofré \nSigned-off-by: Jacob Wujciak-Jens ","shortMessageHtmlLink":"MINOR: add jbonofre in collaborators list (#41528)"}},{"before":"ea46ad29fb45d0bd7321f52082302e9dee0525dc","after":null,"ref":"refs/heads/dependabot/npm_and_yarn/js/swc/helpers-0.5.11","pushedAt":"2024-05-05T21:56:16.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":"7cd9c6fbd313c9afa0673d85415a84fd199951c9","after":"2ba129f0a28e0ec93c7f383a64c54bef24e26f59","ref":"refs/heads/main","pushedAt":"2024-05-05T21:56:08.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"kou","name":"Sutou Kouhei","path":"/kou","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/27350?s=80&v=4"},"commit":{"message":"MINOR: [JS] Bump @swc/helpers from 0.5.10 to 0.5.11 in /js (#41486)\n\nBumps [@ swc/helpers](https://github.com/swc-project/swc) from 0.5.10 to 0.5.11.\n
\nCommits\n\n
\n
\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=@ swc/helpers&package-manager=npm_and_yarn&previous-version=0.5.10&new-version=0.5.11)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@ dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@ dependabot rebase` will rebase this PR\n- `@ dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@ dependabot merge` will merge this PR after your CI passes on it\n- `@ dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@ dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@ dependabot reopen` will reopen this PR if it is closed\n- `@ dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@ dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@ dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@ dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@ dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n
\n\nAuthored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nSigned-off-by: Sutou Kouhei ","shortMessageHtmlLink":"MINOR: [JS] Bump @swc/helpers from 0.5.10 to 0.5.11 in /js (#41486)"}},{"before":"e7f5f810ac1235ee835a6ec62fb25d2f05e5d542","after":"7cd9c6fbd313c9afa0673d85415a84fd199951c9","ref":"refs/heads/main","pushedAt":"2024-05-03T23:17:48.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":"GH-41534: [Go] Fix mem leak importing 0 length C Array (#41535)\n\n\n\n### What changes are included in this PR?\nIf the `imp.alloc.bufCount` is 0, indicating we did not import any buffers from the provided C ArrowArray object, then we are free to not only call the release callback (which we already do) but also we need to free the temp ArrowArray we allocated to move the source to.\n\nThis was uncovered by https://github.com/apache/arrow-adbc/pull/1808\n* GitHub Issue: #41534\n\nAuthored-by: Matt Topol \nSigned-off-by: David Li ","shortMessageHtmlLink":"GH-41534: [Go] Fix mem leak importing 0 length C Array (#41535)"}},{"before":"493d456d8c6eff21659dc87a2dee32abd0be5ffd","after":"e7f5f810ac1235ee835a6ec62fb25d2f05e5d542","ref":"refs/heads/main","pushedAt":"2024-05-03T18:46:01.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"sgilmore10","name":"Sarah Gilmore","path":"/sgilmore10","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/74676073?s=80&v=4"},"commit":{"message":"GH-41531: [MATLAB][Packaging] Bump `matlab-actions/setup-matlab` and `matlab-actions/run-command` from `v1` to `v2` in the `crossbow` job (#41532)\n\n### Rationale for this change\n\nI noticed `dev/tasks/matlab/github.yml` is still using `matlab-actions/setup-matlab@ v1`, which is no longer supported. See this [log](https://github.com/ursacomputing/crossbow/actions/runs/8928507510/job/24524230971#step:4:11) file. We should use `matlab-actions/setup-matlab@ v2` instead. We should also use `matlab-actions/run-command@ v2` instead of `matlab-actions/run-command@ v1`.\n\n### What changes are included in this PR?\n\n1. Replaced `matlab-actions/setup-matlab@ v1` with `matlab-actions/setup-matlab@ v2` in `dev/tasks/matlab/github.yml`\n\n2. Replaced `matlab-actions/run-command@ v1` with `matlab-actions/run-command@ v2` in `dev/tasks/matlab/github.yml`\n\n### Are these changes tested?\n\nN/A (I will trigger a crossbow job to verify the packaging workflow works as expected still). \n\n### Are there any user-facing changes?\n\nNo.\n\n* GitHub Issue: #41531\n\nAuthored-by: Sarah Gilmore \nSigned-off-by: Sarah Gilmore ","shortMessageHtmlLink":"GH-41531: [MATLAB][Packaging] Bump matlab-actions/setup-matlab and …"}},{"before":"2b0647230536ffb2fd2d59af11acdb4674ed44c3","after":"493d456d8c6eff21659dc87a2dee32abd0be5ffd","ref":"refs/heads/main","pushedAt":"2024-05-03T18:43:51.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"sgilmore10","name":"Sarah Gilmore","path":"/sgilmore10","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/74676073?s=80&v=4"},"commit":{"message":"GH-41507: [MATLAB][CI] Pass `strict: true` to `matlab-actions/run-tests@v2` (#41530)\n\n### Rationale for this change\n\nThe MATLAB CI jobs should fail if any one of the unit tests issues a `warning`. Currently, the MATLAB CI jobs only fail if there is a verification failure. Passing the argument `strict: true` to `matlab-actions/run-tests@ v2` will ensure MATLAB jobs will fail if a test warning is issued.\n\nSee the [`matlab-actions/run-tests@ v2` documentation](https://github.com/matlab-actions/run-tests/?tab=readme-ov-file#run-matlab-tests) for more details.\n\n### What changes are included in this PR?\n\n1. Pass `strict: true` argument to `matlab-actions/setup-matlab@ v2`\n\n### Are these changes tested?\n\nN/A (relying on existing tests).\n\n### Are there any user-facing changes?\n\nNo.\n\n* GitHub Issue: #41507\n\nAuthored-by: Sarah Gilmore \nSigned-off-by: Sarah Gilmore ","shortMessageHtmlLink":"GH-41507: [MATLAB][CI] Pass strict: true to `matlab-actions/run-tes…"}},{"before":"37c4cb180d55a8410ff6032aae3d4b5a684c64dd","after":"66740281446322b84c3ddfa62600c5e65b8e4f6e","ref":"refs/heads/dependabot/go_modules/go/modernc.org/sqlite-1.29.8","pushedAt":"2024-05-03T16:37: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":"MINOR: [Go] Bump modernc.org/sqlite from 1.29.6 to 1.29.8 in /go\n\nBumps [modernc.org/sqlite](https://gitlab.com/cznic/sqlite) from 1.29.6 to 1.29.8.\n- [Commits](https://gitlab.com/cznic/sqlite/compare/v1.29.6...v1.29.8)\n\n---\nupdated-dependencies:\n- dependency-name: modernc.org/sqlite\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] ","shortMessageHtmlLink":"MINOR: [Go] Bump modernc.org/sqlite from 1.29.6 to 1.29.8 in /go"}},{"before":"95d38e279471815dc895ad8c46c46aaf88064eac","after":null,"ref":"refs/heads/dependabot/go_modules/go/google.golang.org/protobuf-1.34.0","pushedAt":"2024-05-03T16:36:29.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"zeroshade","name":"Matt Topol","path":"/zeroshade","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/555095?s=80&v=4"}},{"before":"56437409d1f99852a6b9486b1620c3ed12ff3e5c","after":"2b0647230536ffb2fd2d59af11acdb4674ed44c3","ref":"refs/heads/main","pushedAt":"2024-05-03T16:36:25.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"zeroshade","name":"Matt Topol","path":"/zeroshade","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/555095?s=80&v=4"},"commit":{"message":"MINOR: [Go] Bump google.golang.org/protobuf from 1.33.0 to 1.34.0 in /go (#41513)\n\nBumps google.golang.org/protobuf from 1.33.0 to 1.34.0.\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=google.golang.org/protobuf&package-manager=go_modules&previous-version=1.33.0&new-version=1.34.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@ dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@ dependabot rebase` will rebase this PR\n- `@ dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@ dependabot merge` will merge this PR after your CI passes on it\n- `@ dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@ dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@ dependabot reopen` will reopen this PR if it is closed\n- `@ dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@ dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@ dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@ dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@ dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n
\n\nAuthored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nSigned-off-by: Matt Topol ","shortMessageHtmlLink":"MINOR: [Go] Bump google.golang.org/protobuf from 1.33.0 to 1.34.0 in …"}},{"before":"154bdb86552f02a50b21c4019600aee35b95a3fa","after":null,"ref":"refs/heads/dependabot/go_modules/go/github.com/hamba/avro/v2-2.21.1","pushedAt":"2024-05-03T16:36:06.000Z","pushType":"branch_deletion","commitsCount":0,"pusher":{"login":"zeroshade","name":"Matt Topol","path":"/zeroshade","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/555095?s=80&v=4"}},{"before":"cc9e65fb80db2e2d706b1776c52a88bb1c983533","after":"56437409d1f99852a6b9486b1620c3ed12ff3e5c","ref":"refs/heads/main","pushedAt":"2024-05-03T16:36:02.000Z","pushType":"pr_merge","commitsCount":1,"pusher":{"login":"zeroshade","name":"Matt Topol","path":"/zeroshade","primaryAvatarUrl":"https://avatars.githubusercontent.com/u/555095?s=80&v=4"},"commit":{"message":"MINOR: [Go] Bump github.com/hamba/avro/v2 from 2.20.1 to 2.21.1 in /go (#41512)\n\nBumps [github.com/hamba/avro/v2](https://github.com/hamba/avro) from 2.20.1 to 2.21.1.\n
\nRelease notes\n

Sourced from github.com/hamba/avro/v2's releases.

\n
\n

v2.21.1

\n

What's Changed

\n\n

New Contributors

\n\n

Full Changelog: https://github.com/hamba/avro/compare/v2.21.0...v2.21.1

\n

v2.21.0

\n

What's Changed

\n\n

New Contributors

\n\n

Full Changelog: https://github.com/hamba/avro/compare/v2.20.1...v2.21.0

\n
\n
\n
\nCommits\n
    \n
  • 5dde47b fix: support 32bit builds (#390)
  • \n
  • ad836ba chore: bump golangci/golangci-lint-action from 4 to 5 in the all group (#388)
  • \n
  • e42dea1 fix: Union Decoder uses readInt (#387)
  • \n
  • 2461d45 fix: reader int/long setting head > tail (#385)
  • \n
  • 84f9b10 fix: readByte returns errors on unexpected EOF (#383)
  • \n
  • 141e857 fix: reader returns errors on unexpected EOF (#382)
  • \n
  • f138d7f fix: handle short read errors on arrays and maps (#379)
  • \n
  • b43fe48 feat: add max slice alloc size config (#376)
  • \n
  • 0b21284 Check for max allocation (#374)
  • \n
  • 7a2eb5f feat: support slices for nullable unions (#372)
  • \n
  • Additional commits viewable in compare view
  • \n
\n
\n
\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=github.com/hamba/avro/v2&package-manager=go_modules&previous-version=2.20.1&new-version=2.21.1)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@ dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@ dependabot rebase` will rebase this PR\n- `@ dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@ dependabot merge` will merge this PR after your CI passes on it\n- `@ dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@ dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@ dependabot reopen` will reopen this PR if it is closed\n- `@ dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@ dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@ dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@ dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@ dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n
\n\nAuthored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nSigned-off-by: Matt Topol ","shortMessageHtmlLink":"MINOR: [Go] Bump github.com/hamba/avro/v2 from 2.20.1 to 2.21.1 in /go ("}},{"before":"7838a1e6dc8aeeb6b2018ba02a0ba24ac9568f1f","after":null,"ref":"refs/heads/dependabot/nuget/csharp/Grpc.Tools-2.63.0","pushedAt":"2024-05-03T14:58:38.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":"c8bf9753d7423c3020ac66b97caf2099cda35110","after":"cc9e65fb80db2e2d706b1776c52a88bb1c983533","ref":"refs/heads/main","pushedAt":"2024-05-03T14:58:31.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":"MINOR: [C#] Bump Grpc.Tools from 2.62.0 to 2.63.0 in /csharp (#41523)\n\nBumps [Grpc.Tools](https://github.com/grpc/grpc) from 2.62.0 to 2.63.0.\n
\nCommits\n\n
\n
\n\n[![Dependabot compatibility score](https://dependabot-badges.githubapp.com/badges/compatibility_score?dependency-name=Grpc.Tools&package-manager=nuget&previous-version=2.62.0&new-version=2.63.0)](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)\n\nDependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@ dependabot rebase`.\n\n[//]: # (dependabot-automerge-start)\n[//]: # (dependabot-automerge-end)\n\n---\n\n
\nDependabot commands and options\n
\n\nYou can trigger Dependabot actions by commenting on this PR:\n- `@ dependabot rebase` will rebase this PR\n- `@ dependabot recreate` will recreate this PR, overwriting any edits that have been made to it\n- `@ dependabot merge` will merge this PR after your CI passes on it\n- `@ dependabot squash and merge` will squash and merge this PR after your CI passes on it\n- `@ dependabot cancel merge` will cancel a previously requested merge and block automerging\n- `@ dependabot reopen` will reopen this PR if it is closed\n- `@ dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually\n- `@ dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency\n- `@ dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)\n- `@ dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)\n- `@ dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)\n\n
\n\nAuthored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>\nSigned-off-by: Curt Hagenlocher ","shortMessageHtmlLink":"MINOR: [C#] Bump Grpc.Tools from 2.62.0 to 2.63.0 in /csharp (#41523)"}}],"hasNextPage":true,"hasPreviousPage":false,"activityType":"all","actor":null,"timePeriod":"all","sort":"DESC","perPage":30,"cursor":"djE6ks8AAAAERCYQrgA","startCursor":null,"endCursor":null}},"title":"Activity · apache/arrow"}