)]}'
{
  "log": [
    {
      "commit": "a0c187c4e476134328d321d3279c2fe687a96389",
      "tree": "fdd53ad7add3cee8b637439a3339a180d27f2b8f",
      "parents": [
        "55181187208b147ca0efa20beb7c808a3168c1cc"
      ],
      "author": {
        "name": "Andrew Lamb",
        "email": "andrew@nerdnetworks.org",
        "time": "Thu Jul 08 11:58:24 2021 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jul 08 17:58:24 2021 +0200"
      },
      "message": "Update .asf.yaml (#2)\n\n"
    },
    {
      "commit": "55181187208b147ca0efa20beb7c808a3168c1cc",
      "tree": "4bdd3e79284fad7057ac2cd1138670525100fdc0",
      "parents": [
        "f2f75a2dd8570d64143ffc23edd15ed5740d6993"
      ],
      "author": {
        "name": "Jorge C. Leitao",
        "email": "jorgecarleitao@gmail.com",
        "time": "Sat Jun 19 05:40:27 2021 +0000"
      },
      "committer": {
        "name": "Jorge C. Leitao",
        "email": "jorgecarleitao@gmail.com",
        "time": "Sat Jun 19 05:40:27 2021 +0000"
      },
      "message": "Removed all.\n\nThis will allow to start a project from scratch without losing\nthe contributions\u0027 stats and others.\n"
    },
    {
      "commit": "f2f75a2dd8570d64143ffc23edd15ed5740d6993",
      "tree": "08e3ad70018444911b9b95b6774458a1a7209d69",
      "parents": [
        "c64ad280ffe6ad339b849b17491911ca35dfe427"
      ],
      "author": {
        "name": "Jorge C. Leitao",
        "email": "jorgecarleitao@gmail.com",
        "time": "Sat Jun 19 05:35:54 2021 +0000"
      },
      "committer": {
        "name": "Jorge C. Leitao",
        "email": "jorgecarleitao@gmail.com",
        "time": "Sat Jun 19 05:35:54 2021 +0000"
      },
      "message": "Removed tooling related to arrow crate.\n"
    },
    {
      "commit": "c64ad280ffe6ad339b849b17491911ca35dfe427",
      "tree": "53a310d322868bbdb685c526046ff5c13b3c4132",
      "parents": [
        "9f56afb2d2347310184706f7d5e46af583557bea"
      ],
      "author": {
        "name": "Jorge C. Leitao",
        "email": "jorgecarleitao@gmail.com",
        "time": "Sat Jun 19 05:22:12 2021 +0000"
      },
      "committer": {
        "name": "Jorge C. Leitao",
        "email": "jorgecarleitao@gmail.com",
        "time": "Sat Jun 19 05:22:12 2021 +0000"
      },
      "message": "Kept parquet\n"
    },
    {
      "commit": "9f56afb2d2347310184706f7d5e46af583557bea",
      "tree": "f86c5a008b5fcb08111bb56d80863ff869c3ab43",
      "parents": [
        "ca3240a8c920225d344e64647453173ffb0a77f2"
      ],
      "author": {
        "name": "Gary Pennington",
        "email": "31890086+garyanaplan@users.noreply.github.com",
        "time": "Wed Jun 16 17:37:02 2021 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 16 12:37:02 2021 -0400"
      },
      "message": "parquet: improve BOOLEAN writing logic and report error on encoding fail (#443)\n\n* improve BOOLEAN writing logic and report error on encoding fail\r\n\r\nWhen writing BOOLEAN data, writing more than 2048 rows of data will\r\noverflow the hard-coded 256 buffer set for the bit-writer in the\r\nPlainEncoder. Once this occurs, further attempts to write to the encoder\r\nfail, becuase capacity is exceeded, but the errors are silently ignored.\r\n\r\nThis fix improves the error detection and reporting at the point of\r\nencoding and modifies the logic for bit_writing (BOOLEANS). The\r\nbit_writer is initially allocated 256 bytes (as at present), then each\r\ntime the capacity is exceeded the capacity is incremented by another\r\n256 bytes.\r\n\r\nThis certainly resolves the current problem, but it\u0027s not exactly a\r\ngreat fix because the capacity of the bit_writer could now grow\r\nsubstantially.\r\n\r\nOther data types seem to have a more sophisticated mechanism for writing\r\ndata which doesn\u0027t involve growing or having a fixed size buffer. It\r\nwould be desirable to make the BOOLEAN type use this same mechanism if\r\npossible, but that level of change is more intrusive and probably\r\nrequires greater knowledge of the implementation than I possess.\r\n\r\nresolves: #349\r\n\r\n* only manipulate the bit_writer for BOOLEAN data\r\n\r\nTacky, but I can\u0027t think of better way to do this without\r\nspecialization.\r\n\r\n* better isolation of changes\r\n\r\nRemove the byte tracking from the PlainEncoder and use the existing\r\nbytes_written() method in BitWriter.\r\n\r\nThis is neater.\r\n\r\n* add test for boolean writer\r\n\r\nThe test ensures that we can write \u003e 2048 rows to a parquet file and\r\nthat when we read the data back, it finishes without hanging (defined as\r\ntaking \u003c 5 seconds).\r\n\r\nIf we don\u0027t want that extra complexity, we could remove the\r\nthread/channel stuff and just try to read the file and let the test\r\nrunner terminate hanging tests.\r\n\r\n* fix capacity calculation error in bool encoding\r\n\r\nThe values.len() reports the number of values to be encoded and so must\r\nbe divided by 8 (bits in a bytes) to determine the effect on the byte\r\ncapacity of the bit_writer."
    },
    {
      "commit": "ca3240a8c920225d344e64647453173ffb0a77f2",
      "tree": "c39832646a81d813c5a83c8797ec9e7ba01bf4d0",
      "parents": [
        "d41ca5fe20ba90df168c5659627d34f298494ec2"
      ],
      "author": {
        "name": "Krisztián Szűcs",
        "email": "szucs.krisztian@gmail.com",
        "time": "Wed Jun 16 06:39:19 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 16 06:39:19 2021 +0200"
      },
      "message": "Unvendor Archery (#459)\n\n"
    },
    {
      "commit": "d41ca5fe20ba90df168c5659627d34f298494ec2",
      "tree": "06d1aee63b69df66d942c51f71473b5d3761fbcb",
      "parents": [
        "e21f576e5a01577f63f7d19a0e921417eb14b8db"
      ],
      "author": {
        "name": "Navin",
        "email": "navin@novemberkilo.com",
        "time": "Mon Jun 14 23:40:39 2021 +1000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Jun 14 09:40:39 2021 -0400"
      },
      "message": "Doctests for DecimalArray. (#414)\n\n* Doctests for DecimalArray.\r\n\r\n* fixup! Doctests for DecimalArray.\r\n\r\n* fixup! fixup! Doctests for DecimalArray."
    },
    {
      "commit": "e21f576e5a01577f63f7d19a0e921417eb14b8db",
      "tree": "73745f7fa46f0318536561dc59021ca1b397fc62",
      "parents": [
        "c93463ae3421dede44b07107d991f661a8c645c9"
      ],
      "author": {
        "name": "Jiayu Liu",
        "email": "Jimexist@users.noreply.github.com",
        "time": "Sun Jun 13 18:30:51 2021 +0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Jun 13 06:30:51 2021 -0400"
      },
      "message": "use iterator for partition kernel implementation (#438)\n\n"
    },
    {
      "commit": "c93463ae3421dede44b07107d991f661a8c645c9",
      "tree": "99f99d64141d191ab99f16939c32013e1ffaede8",
      "parents": [
        "e5cda312b697c3d610637b28c58b6f1b104b41cc"
      ],
      "author": {
        "name": "Andrew Lamb",
        "email": "andrew@nerdnetworks.org",
        "time": "Sun Jun 13 06:24:14 2021 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Jun 13 06:24:14 2021 -0400"
      },
      "message": "Update docs + email template (#450)\n\n"
    },
    {
      "commit": "e5cda312b697c3d610637b28c58b6f1b104b41cc",
      "tree": "8961b7e0fda949f5ba0cd62d4082db20099eba03",
      "parents": [
        "fb451125c4ed49a425de10afb6f42af0d9723a19"
      ],
      "author": {
        "name": "Laurent Mazare",
        "email": "laurent.mazare@gmail.com",
        "time": "Sun Jun 13 08:22:38 2021 +0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Jun 13 02:22:38 2021 +0200"
      },
      "message": "Implement the Iterator trait for the json Reader. (#451)\n\n* Implement the Iterator trait for the json Reader.\r\n\r\n* Use transpose."
    },
    {
      "commit": "fb451125c4ed49a425de10afb6f42af0d9723a19",
      "tree": "250c0ca34f7c020e39cee90abcc48bc143ce6064",
      "parents": [
        "efe86cdf329ec4bfad3b72bd23ee6558340fa297"
      ],
      "author": {
        "name": "Ádám Lippai",
        "email": "adam@rigo.sk",
        "time": "Sun Jun 13 02:20:08 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Jun 13 02:20:08 2021 +0200"
      },
      "message": "Add Decimal to CsvWriter and improve debug display (#406)\n\n* Add Decimal to CsvWriter and improve debug display\r\n\r\n* Measure CSV writer instead of file and data creation\r\n\r\n* Re-use decimal formatting"
    },
    {
      "commit": "efe86cdf329ec4bfad3b72bd23ee6558340fa297",
      "tree": "a42d7f452dc4eecab5588cca6258a67e1a7b0aad",
      "parents": [
        "dc5507a996e197ba4856aaf00783e62be7bb4222"
      ],
      "author": {
        "name": "Jiayu Liu",
        "email": "Jimexist@users.noreply.github.com",
        "time": "Sun Jun 13 08:00:35 2021 +0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun Jun 13 02:00:35 2021 +0200"
      },
      "message": "remove unnecessary wraps in sortk (#445)\n\n"
    },
    {
      "commit": "dc5507a996e197ba4856aaf00783e62be7bb4222",
      "tree": "7bfeba559e46bbd3d84df6b9968d608ed81b2060",
      "parents": [
        "f62415321bc74c739e380199281d55f846438f0a"
      ],
      "author": {
        "name": "Jiayu Liu",
        "email": "Jimexist@users.noreply.github.com",
        "time": "Sat Jun 12 20:59:35 2021 +0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Jun 12 14:59:35 2021 +0200"
      },
      "message": "remove clippy unnecessary wraps (#449)\n\n"
    },
    {
      "commit": "f62415321bc74c739e380199281d55f846438f0a",
      "tree": "caf9f8facbb2bba7eb6a8ec11364288c6796823e",
      "parents": [
        "71e9d783daa32d0c30d4181161305b360e81b69f"
      ],
      "author": {
        "name": "Jörn Horstmann",
        "email": "git@jhorstmann.net",
        "time": "Sat Jun 12 14:46:27 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Jun 12 08:46:27 2021 -0400"
      },
      "message": "Remove DictionaryArray::keys_array method and replace usages by the keys method (#419)\n\n"
    },
    {
      "commit": "71e9d783daa32d0c30d4181161305b360e81b69f",
      "tree": "77cbb20597d2094ba13db721206b73a253fc2ec2",
      "parents": [
        "0c0077697e55eb154dbfcf3127a3f39e63be2df8"
      ],
      "author": {
        "name": "Yordan Pavlov",
        "email": "64363766+yordan-pavlov@users.noreply.github.com",
        "time": "Thu Jun 10 23:10:53 2021 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jun 10 18:10:53 2021 -0400"
      },
      "message": "Implement faster arrow array reader (#384)\n\n* implement ArrowArrayReader\r\n\r\n* change StringArrayConverter to use push_unchecked for offsets\r\n\r\n* add ASF license header to new files\r\n\r\n* fix clippy issues\r\n\r\n* cleanup arrow_array_reader benches\r\n\r\n* cleanup arrow_array_reader\r\n\r\n* change util module to limit public exports from test_common sub-module\r\n\r\n* fix rustfmt issues"
    },
    {
      "commit": "0c0077697e55eb154dbfcf3127a3f39e63be2df8",
      "tree": "a4671dac9eafa09dfdade4e857450426e935d54b",
      "parents": [
        "5f7d1112b4029de4f4657bcaff98edd43183ec5d"
      ],
      "author": {
        "name": "Jiayu Liu",
        "email": "Jimexist@users.noreply.github.com",
        "time": "Thu Jun 10 02:16:42 2021 +0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 09 14:16:42 2021 -0400"
      },
      "message": "refactor lexico sort (#424)\n\n"
    },
    {
      "commit": "5f7d1112b4029de4f4657bcaff98edd43183ec5d",
      "tree": "0c26432b6602455f56a2a74532b239785d4ba843",
      "parents": [
        "e1102e722a23aa2d85342efee8a10fdaaf6675e0"
      ],
      "author": {
        "name": "Andrew Lamb",
        "email": "andrew@nerdnetworks.org",
        "time": "Wed Jun 09 14:12:17 2021 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 09 14:12:17 2021 -0400"
      },
      "message": "Update release readme.md (#436)\n\nDon\u0027t start search on page 2, make link nicer looking"
    },
    {
      "commit": "e1102e722a23aa2d85342efee8a10fdaaf6675e0",
      "tree": "e939962ec10df56e0f80fee62650011996903d88",
      "parents": [
        "0f55b828883b3b3afda43ae404b130d374e6f1a1"
      ],
      "author": {
        "name": "Andrew Lamb",
        "email": "andrew@nerdnetworks.org",
        "time": "Wed Jun 09 14:11:38 2021 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 09 14:11:38 2021 -0400"
      },
      "message": "Reenable MIRI check (#421)\n\n"
    },
    {
      "commit": "0f55b828883b3b3afda43ae404b130d374e6f1a1",
      "tree": "52fb0c51c4a8c5198061887f5c4f9eedc6d521ff",
      "parents": [
        "0cbf85a01f15ab8fc8db654fcdc8fc9b85fc76fb"
      ],
      "author": {
        "name": "Jiayu Liu",
        "email": "Jimexist@users.noreply.github.com",
        "time": "Wed Jun 09 05:54:46 2021 +0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jun 08 17:54:46 2021 -0400"
      },
      "message": "window::shift to work for all array types (#388)\n\n* add more doc test for window::shift\r\n\r\n* use Ok(make_array(array.data_ref().clone()))\r\n\r\n* shift array for not only primitive cases\r\n\r\n* include more test cases\r\n\r\n* add back copied\r\n\r\n* fix renaming"
    },
    {
      "commit": "0cbf85a01f15ab8fc8db654fcdc8fc9b85fc76fb",
      "tree": "ff3e3e3165a1c16dd896d1303394bffb31295c5c",
      "parents": [
        "a37dd4ff402d27499530ada8fd48892719f88f6d"
      ],
      "author": {
        "name": "Ritchie Vink",
        "email": "ritchie46@gmail.com",
        "time": "Tue Jun 08 23:16:18 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jun 08 17:16:18 2021 -0400"
      },
      "message": "make sure that only concat preallocates buffers (#382)\n\n* MutableArrayData::with_capacities\r\n\r\n* better pattern matching\r\n\r\n* add binary capacities\r\n\r\n* add list child data\r\n\r\n* add struct capacities\r\n\r\n* add panic for dictionary type\r\n\r\n* change dictionary capacity enum variant"
    },
    {
      "commit": "a37dd4ff402d27499530ada8fd48892719f88f6d",
      "tree": "e3fa43219a11c7e7640ab0d133732801d7f78991",
      "parents": [
        "b4406426db6cd66762f653a48ceb9b7968e3a2ca"
      ],
      "author": {
        "name": "Jiayu Liu",
        "email": "Jimexist@users.noreply.github.com",
        "time": "Wed Jun 09 05:09:44 2021 +0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jun 08 17:09:44 2021 -0400"
      },
      "message": "refactor lexico sort (#423)\n\n"
    },
    {
      "commit": "b4406426db6cd66762f653a48ceb9b7968e3a2ca",
      "tree": "0bfa5c30d6f9657079f0ed54f01a82663352a759",
      "parents": [
        "015ee75ed4de7755770de473342729ea1a2d1996"
      ],
      "author": {
        "name": "Michael Edwards",
        "email": "medwards@walledcity.ca",
        "time": "Tue Jun 08 22:55:17 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jun 08 16:55:17 2021 -0400"
      },
      "message": "Sort by float lists (#420)\n\n"
    },
    {
      "commit": "015ee75ed4de7755770de473342729ea1a2d1996",
      "tree": "637e7b9aee6335b381dc8e385f51814fd7ef0114",
      "parents": [
        "5adfd3d339b426fc1267088c2295822f71a65450"
      ],
      "author": {
        "name": "Jörn Horstmann",
        "email": "git@jhorstmann.net",
        "time": "Tue Jun 08 22:51:01 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jun 08 16:51:01 2021 -0400"
      },
      "message": "Fix bug with null buffer offset in boolean not kernel (#418)\n\n"
    },
    {
      "commit": "5adfd3d339b426fc1267088c2295822f71a65450",
      "tree": "4aee60122071933d7b6c1b74009512a489cddf3f",
      "parents": [
        "e8d9ef5b6024c0b42bc4a857b4a531f242987228"
      ],
      "author": {
        "name": "Raphael Taylor-Davies",
        "email": "1781103+tustvold@users.noreply.github.com",
        "time": "Tue Jun 08 18:27:30 2021 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jun 08 19:27:30 2021 +0200"
      },
      "message": "Derive Eq and PartialEq for SortOptions (#425)\n\n"
    },
    {
      "commit": "e8d9ef5b6024c0b42bc4a857b4a531f242987228",
      "tree": "092df067b308de0dc65d4415c70732048b2011c6",
      "parents": [
        "18c804a8f80ada6577d16a6f0fab4b2e262e314d"
      ],
      "author": {
        "name": "Jörn Horstmann",
        "email": "git@jhorstmann.net",
        "time": "Tue Jun 08 17:34:39 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jun 08 11:34:39 2021 -0400"
      },
      "message": "Fix out of bounds read in bit chunk iterator (#416)\n\n* Fix out of bounds read in bit chunk iterator\r\n\r\n* Add comment why reading one additional byte is enough"
    },
    {
      "commit": "18c804a8f80ada6577d16a6f0fab4b2e262e314d",
      "tree": "789d7713f9b7b8f42f4c5fb75b5ba19997f7f53b",
      "parents": [
        "ddc8a36a1e29181d08be91518253ca86f5a6cb71"
      ],
      "author": {
        "name": "Boaz",
        "email": "berman.boaz@gmail.com",
        "time": "Tue Jun 08 10:13:39 2021 +0300"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Jun 08 09:13:39 2021 +0200"
      },
      "message": "Add set_bit to BooleanBufferBuilder to allow mutating bit in index (#383)\n\n* Add set_bit to BooleanBufferBuilder to allow mutating bits in the builder\n\n* Fix tests\n\n* Update builder.rs\n\n* Update builder.rs\n\n* Fix clippy failures\n\nCo-authored-by: Boaz Berman \u003cboaz@codota.com\u003e"
    },
    {
      "commit": "ddc8a36a1e29181d08be91518253ca86f5a6cb71",
      "tree": "9d322a413d5404a5b065b42919c8abe87546e909",
      "parents": [
        "2ddc7174af170e923c77d02ad9bd58027bd260e1"
      ],
      "author": {
        "name": "Andrew Lamb",
        "email": "andrew@nerdnetworks.org",
        "time": "Sat Jun 05 09:14:20 2021 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Jun 05 09:14:20 2021 -0400"
      },
      "message": "Add labels to cherry pick scripts + writeup (#409)\n\n* Add labels when cherry picking with script\r\n\r\n* fixup\r\n\r\n* document tags\r\n\r\n* add note\r\n\r\n* prettier"
    },
    {
      "commit": "2ddc7174af170e923c77d02ad9bd58027bd260e1",
      "tree": "ddb96816389e0bdff39670ce31e0c5b028a5283e",
      "parents": [
        "db6371400ec4dae83e49859a13c8173f8501b1e4"
      ],
      "author": {
        "name": "Jiayu Liu",
        "email": "Jimexist@users.noreply.github.com",
        "time": "Sat Jun 05 13:01:58 2021 +0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Jun 05 07:01:58 2021 +0200"
      },
      "message": "use prettiery to auto format md files (#398)\n\n"
    },
    {
      "commit": "db6371400ec4dae83e49859a13c8173f8501b1e4",
      "tree": "ce1bb2e59ef7f2c97eb713194be486e307dd75a4",
      "parents": [
        "0a165748c924b3752cc00ff86e56917427985872"
      ],
      "author": {
        "name": "Ádám Lippai",
        "email": "adam@rigo.sk",
        "time": "Sat Jun 05 06:54:32 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat Jun 05 06:54:32 2021 +0200"
      },
      "message": "MINOR: update install instruction (#400)\n\nWe have frequent releases and honoring semver, removed minor and patch version pinning"
    },
    {
      "commit": "0a165748c924b3752cc00ff86e56917427985872",
      "tree": "575aceb8dca3f8d64d6a7c134d7af99920c75a90",
      "parents": [
        "45acc62c1c07b1eb55512a0d42628542211996d3"
      ],
      "author": {
        "name": "Gang Liao",
        "email": "gangliao@umd.edu",
        "time": "Fri Jun 04 08:17:07 2021 -0700"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Jun 04 11:17:07 2021 -0400"
      },
      "message": "Add (simd) modulus op (#317)\n\n* Add (simd) modulus op\r\n\r\n* fix typo\r\n\r\n* fix feature \u003d \"simd\"\r\n\r\n* revert ModulusByZero"
    },
    {
      "commit": "45acc62c1c07b1eb55512a0d42628542211996d3",
      "tree": "4ae8cb4853d4dab047a2c1429f967ae204eacae1",
      "parents": [
        "239558b6243f4070d9f5096c82f019a34012e93c"
      ],
      "author": {
        "name": "Jiayu Liu",
        "email": "Jimexist@users.noreply.github.com",
        "time": "Fri Jun 04 05:54:00 2021 +0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jun 03 17:54:00 2021 -0400"
      },
      "message": "add more tests for window::shift and handle boundary cases (#386)\n\n* add more doc test for window::shift\r\n\r\n* handle i64::MIN first\r\n\r\n* use Ok(make_array(array.data_ref().clone()))"
    },
    {
      "commit": "239558b6243f4070d9f5096c82f019a34012e93c",
      "tree": "2bff1120d1c4bd99b0f83f092549c68f1559a1c1",
      "parents": [
        "7ec3158b09d24a63730f7aa63d147fd78e2102a5"
      ],
      "author": {
        "name": "Andrew Lamb",
        "email": "andrew@nerdnetworks.org",
        "time": "Thu Jun 03 17:50:43 2021 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Jun 03 17:50:43 2021 -0400"
      },
      "message": "Automatic cherry-pick script (#339)\n\n* Automatic cherry-pick script\r\n\r\n* switch from alamb to apache\r\n\r\n* autopep8\r\n\r\n* flake8\r\n\r\n* add rat\r\n\r\n* tweaks\r\n\r\n* Add some docs to the README"
    },
    {
      "commit": "7ec3158b09d24a63730f7aa63d147fd78e2102a5",
      "tree": "339a4a1238bf1e49a352e77f5968cce5bb19a25b",
      "parents": [
        "f41cb17066146552701bb7eb67bc13b2ef9ff1b6"
      ],
      "author": {
        "name": "Wakahisa",
        "email": "nevilledips@gmail.com",
        "time": "Wed Jun 02 21:31:50 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Jun 02 15:31:50 2021 -0400"
      },
      "message": "Respect max rowgroup size in Arrow writer (#381)\n\n* Respect max rowgroup size in Arrow writer\r\n\r\n* simplify while loop\r\n\r\n* address review feedback"
    },
    {
      "commit": "f41cb17066146552701bb7eb67bc13b2ef9ff1b6",
      "tree": "69305b1089024aaaf6f548928463da4870d527d5",
      "parents": [
        "4ff2e56dc1d3ef4ab89e1a6e75014d77246f6b11"
      ],
      "author": {
        "name": "Andrew Lamb",
        "email": "andrew@nerdnetworks.org",
        "time": "Sun May 30 02:25:18 2021 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun May 30 08:25:18 2021 +0200"
      },
      "message": "Fix typo in release script, update release location (#380)\n\n* Fix typo in release script\r\n\r\n* release to `arrow-rs-{version}` directory"
    },
    {
      "commit": "4ff2e56dc1d3ef4ab89e1a6e75014d77246f6b11",
      "tree": "1e01f5a9c3f3933257987ba89066319319fcb660",
      "parents": [
        "d9017ee9693727f039336a782c17b0533063b46d"
      ],
      "author": {
        "name": "Ádám Lippai",
        "email": "adam@rigo.sk",
        "time": "Sat May 29 13:02:21 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat May 29 07:02:21 2021 -0400"
      },
      "message": "Add doctest for ArrayBuilder (#367)\n\n"
    },
    {
      "commit": "d9017ee9693727f039336a782c17b0533063b46d",
      "tree": "424c488c33f4f1625aae7e057945fd57147d6dfc",
      "parents": [
        "e801d4b91bb8a5340b8e01849c579d84e360674c"
      ],
      "author": {
        "name": "Navin",
        "email": "navin@cogent.co",
        "time": "Sat May 29 20:54:13 2021 +1000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat May 29 06:54:13 2021 -0400"
      },
      "message": "Doctests for FixedSizeBinaryArray (#378)\n\n* Doctests for BooleanArray.\r\n\r\n* Update arrow/src/array/array_boolean.rs\r\n\r\nCo-authored-by: Andrew Lamb \u003candrew@nerdnetworks.org\u003e\r\n\r\n* Doctests for FixedSizeBinaryArray.\r\n\r\n* Fix formatting.\r\n\r\nCo-authored-by: Andrew Lamb \u003candrew@nerdnetworks.org\u003e"
    },
    {
      "commit": "e801d4b91bb8a5340b8e01849c579d84e360674c",
      "tree": "1c6199af19ee3c69a6ec05253831ad6547153287",
      "parents": [
        "60eb36e52d42b62a556cd5f8ceba739e9a65992b"
      ],
      "author": {
        "name": "Ritchie Vink",
        "email": "ritchie46@gmail.com",
        "time": "Sat May 29 12:45:55 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat May 29 06:45:55 2021 -0400"
      },
      "message": "Reduce memory usage of concat (large)utf8 (#348)\n\n* reduce memory needed for concat\r\n\r\n* reuse code for str allocation buffer"
    },
    {
      "commit": "60eb36e52d42b62a556cd5f8ceba739e9a65992b",
      "tree": "e09c4274efbfb0d6e91fb5bae2751eaca18df6e2",
      "parents": [
        "10100bb9b0b8e4dd8a75c427ea5f660de8af5d75"
      ],
      "author": {
        "name": "Daniël Heres",
        "email": "danielheres@gmail.com",
        "time": "Sat May 29 09:42:49 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat May 29 09:42:49 2021 +0200"
      },
      "message": "Simplify window using null array (#370)\n\nCo-authored-by: Daniel Heres \u003cdanielheres@MBP-van-Olaf.home\u003e"
    },
    {
      "commit": "10100bb9b0b8e4dd8a75c427ea5f660de8af5d75",
      "tree": "70ebf4894a42aa1bac2a4cbf3064f20c7e46a764",
      "parents": [
        "f26ffb3091ae355d246edc4a6fcc2c8e5b9bc570"
      ],
      "author": {
        "name": "Dominik Moritz",
        "email": "domoritz@gmail.com",
        "time": "Thu May 27 14:34:15 2021 -0700"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 27 17:34:15 2021 -0400"
      },
      "message": "Fix version in readme (#365)\n\nCloses #364"
    },
    {
      "commit": "f26ffb3091ae355d246edc4a6fcc2c8e5b9bc570",
      "tree": "8ca3a35a8fb658a30b792f49189d62464022212e",
      "parents": [
        "7753f416a620b4ea5b6242366f68acbbcf35bc06"
      ],
      "author": {
        "name": "Dominik Moritz",
        "email": "domoritz@gmail.com",
        "time": "Wed May 26 13:23:30 2021 -0700"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 26 22:23:30 2021 +0200"
      },
      "message": "Remove superfluous space (#363)\n\n"
    },
    {
      "commit": "7753f416a620b4ea5b6242366f68acbbcf35bc06",
      "tree": "b8244f333f8a207b131d3eefdb3f8d5a22d2680b",
      "parents": [
        "4a27a3b3c797e801d919ac30cd432f27f9a3d28c"
      ],
      "author": {
        "name": "Raphael Taylor-Davies",
        "email": "1781103+tustvold@users.noreply.github.com",
        "time": "Wed May 26 21:22:50 2021 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 26 22:22:50 2021 +0200"
      },
      "message": "Only register Flight.proto with cargo if it exists (#351)\n\n"
    },
    {
      "commit": "4a27a3b3c797e801d919ac30cd432f27f9a3d28c",
      "tree": "4cafe179f7f1cf54265a669da5612fd82c2b27ff",
      "parents": [
        "e85dc984edf2dbd48c7437ca3bed724d2b3ce386"
      ],
      "author": {
        "name": "Dominik Moritz",
        "email": "domoritz@gmail.com",
        "time": "Wed May 26 13:20:04 2021 -0700"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 26 22:20:04 2021 +0200"
      },
      "message": "Add crate badges (#362)\n\n* Add crate badges\r\n\r\n* Format markdown"
    },
    {
      "commit": "e85dc984edf2dbd48c7437ca3bed724d2b3ce386",
      "tree": "c59bbb21c8f20031bb7b526e81e1d0c9a3242446",
      "parents": [
        "b802895f3138a3ec5aac52009ab2157a885a9b03"
      ],
      "author": {
        "name": "Ritchie Vink",
        "email": "ritchie46@gmail.com",
        "time": "Wed May 26 22:07:19 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 26 16:07:19 2021 -0400"
      },
      "message": "Fix filter UB and add fast path (#341)\n\n* fix ub in filter record_batch\r\n\r\n* filter fast path\r\n\r\n* add all false fast path\r\n\r\n* use new_empty_array\r\n\r\n* rename filter kernel argument\r\n\r\nrename argument: \u0027filter\u0027 to \u0027predicate\u0027\r\nto reduce name collissions."
    },
    {
      "commit": "b802895f3138a3ec5aac52009ab2157a885a9b03",
      "tree": "772c4f12e3f3a6797c9333a2f96319a04db943a1",
      "parents": [
        "74d5957d8bb9584fa13ada06fab80aa47df47cd6"
      ],
      "author": {
        "name": "Marco Neumann",
        "email": "marco@crepererum.net",
        "time": "Wed May 26 22:00:25 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 26 22:00:25 2021 +0200"
      },
      "message": "allow `SliceableCursor` to be constructed from an `Arc` directly (#369)\n\nThis is backwards-compatible since we change the argument from `Vec\u003cu8\u003e`\r\nto `impl Into\u003cArc\u003cVec\u003cu8\u003e\u003e\u003e` and the following implementations exists in\r\nstd:\r\n\r\n- `impl\u003cT, U\u003e Into\u003cU\u003e for T where U: From\u003cT\u003e` (reverse direction)\r\n- `impl\u003cT\u003e From\u003cT\u003e for Arc\u003cT\u003e` (create `Arc` from any type)\r\n\r\nFurthermore `Arc\u003cVec\u003cu8\u003e\u003e` can be passed directly now because the following\r\nimplementations exists:\r\n\r\n- `impl\u003cT\u003e From\u003cT\u003e for T` (identity)\r\n\r\nCloses #368."
    },
    {
      "commit": "74d5957d8bb9584fa13ada06fab80aa47df47cd6",
      "tree": "6f3d6ef6ecf011dbfa55c665a77e6eaf5b064ce5",
      "parents": [
        "94a82cd5512a9cf9bc341100b862f2ff7f3ab159"
      ],
      "author": {
        "name": "Andrew Lamb",
        "email": "andrew@nerdnetworks.org",
        "time": "Wed May 26 15:59:32 2021 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 26 21:59:32 2021 +0200"
      },
      "message": "Disable MIRI check until it runs cleanly on CI (#360)\n\n"
    },
    {
      "commit": "94a82cd5512a9cf9bc341100b862f2ff7f3ab159",
      "tree": "882ae8812835bd2740588ada46f1645e5ba1f08b",
      "parents": [
        "1d72b262ac0173b79450ef6d7afb9adef7376112"
      ],
      "author": {
        "name": "Marco Neumann",
        "email": "marco@crepererum.net",
        "time": "Wed May 26 00:03:01 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue May 25 15:03:01 2021 -0700"
      },
      "message": "ensure null-counts are written for all-null columns (#307)\n\nFixes #306."
    },
    {
      "commit": "1d72b262ac0173b79450ef6d7afb9adef7376112",
      "tree": "ec9674aa79b2430ef9fbfd4603059fc50df678ca",
      "parents": [
        "488f82663d507baef6eb75e7bbbb9708ced3f9a2"
      ],
      "author": {
        "name": "kazuhiko kikuchi",
        "email": "kazuk.dll@kazuk.jp",
        "time": "Wed May 26 06:44:03 2021 +0900"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue May 25 17:44:03 2021 -0400"
      },
      "message": "allow to read non-standard CSV (#326)\n\n* refactor Reader::from_reader\r\n\r\nsplit into build_csv_reader, from_csv_reader\r\nadd escape, quote, terminator arg to build_csv_reader\r\n\r\n* add escape,quote,terminator field to ReaderBuilder\r\n\r\nschema inference support for non-standard CSV\r\n\r\n  add fn infer_file_schema_with_csv_options\r\n  add fn infer_reader_schema_with_csv_options\r\n\r\nReaderBuilder support for non-standard CSV\r\n\r\nadd escape, quote, terminator field\r\nadd fn with_escape, with_quote, with_terminator\r\nchange ReaderBuilder::build for non-standard CSV\r\n\r\n* minimize API change\r\n\r\n* add tests\r\n\r\nadd #[test] fn test_non_std_quote\r\nadd #[test] fn test_non_std_escape\r\nadd #[test] fn test_non_std_terminator\r\n\r\n* apply cargo fmt"
    },
    {
      "commit": "488f82663d507baef6eb75e7bbbb9708ced3f9a2",
      "tree": "d69fc8eb7cfa0921ad585fd745933210dd96ec5e",
      "parents": [
        "5295e253c46f217a7b75dd8d7f3d751cfc34a460"
      ],
      "author": {
        "name": "Navin",
        "email": "navin@novemberkilo.com",
        "time": "Tue May 25 07:43:01 2021 +1000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 24 17:43:01 2021 -0400"
      },
      "message": "Doctests for BooleanArray. (#338)\n\n* Doctests for BooleanArray.\r\n\r\n* Update arrow/src/array/array_boolean.rs\r\n\r\nCo-authored-by: Andrew Lamb \u003candrew@nerdnetworks.org\u003e\r\n\r\nCo-authored-by: Andrew Lamb \u003candrew@nerdnetworks.org\u003e"
    },
    {
      "commit": "5295e253c46f217a7b75dd8d7f3d751cfc34a460",
      "tree": "a178e0656eb81bd74ea9b30ed0a79401f5d21cdd",
      "parents": [
        "5ac771a6831c243e4fd8560b9cb5e13f8a81af34"
      ],
      "author": {
        "name": "Andrew Lamb",
        "email": "andrew@nerdnetworks.org",
        "time": "Mon May 24 14:02:34 2021 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 24 14:02:34 2021 -0400"
      },
      "message": "Document and automate new release process (#299)\n\n* Add Release README and Scripts to create and release tarballs\r\n\r\n* Suggestions from Andy Grove"
    },
    {
      "commit": "5ac771a6831c243e4fd8560b9cb5e13f8a81af34",
      "tree": "ef63cbdee26d3fa248f8800d9b15c1c9a354b9aa",
      "parents": [
        "4c17ac8e27a899c8a1d205657e1861c3b5eec3e5"
      ],
      "author": {
        "name": "Ritchie Vink",
        "email": "ritchie46@gmail.com",
        "time": "Mon May 24 14:44:27 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 24 08:44:27 2021 -0400"
      },
      "message": "respect offset in utf8 and list casts (#335)\n\n"
    },
    {
      "commit": "4c17ac8e27a899c8a1d205657e1861c3b5eec3e5",
      "tree": "767d5c61a4068ce79955b798193819b2edc5fcad",
      "parents": [
        "b2de5446cc1e45a0559fb39039d0545df1ac0d26"
      ],
      "author": {
        "name": "Ritchie Vink",
        "email": "ritchie46@gmail.com",
        "time": "Mon May 24 14:43:07 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 24 08:43:07 2021 -0400"
      },
      "message": "feature gate ipc reader/writer (#336)\n\n"
    },
    {
      "commit": "b2de5446cc1e45a0559fb39039d0545df1ac0d26",
      "tree": "7c5fe253ee99c7de9d1354be897f6bfb0a045450",
      "parents": [
        "91ef8e9bc6b8e4e0f40c0456e01251251b063362"
      ],
      "author": {
        "name": "Kornelijus Survila",
        "email": "kornholijo@gmail.com",
        "time": "Sun May 23 19:00:42 2021 -0600"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun May 23 18:00:42 2021 -0700"
      },
      "message": "parquet: Speed up `BitReader`/`DeltaBitPackDecoder` (#325)\n\n* parquet: Avoid temporary `BufferPtr`s in `BitReader`\r\n\r\nFrom a quick test, this speeds up reading delta-packed int columns by\r\nover 30%.\r\n\r\n* parquet: Avoid some allocations in `DeltaBitPackDecoder`\r\n\r\nFrom a quick test, it seems to decode around 10% faster overall."
    },
    {
      "commit": "91ef8e9bc6b8e4e0f40c0456e01251251b063362",
      "tree": "43533d5af02cc8d70c376d0571c9da4c7c1d8113",
      "parents": [
        "b88ef807555e5c8e8335afc86d76cbd1796406eb"
      ],
      "author": {
        "name": "Roee Shlomo",
        "email": "roee88@gmail.com",
        "time": "Sun May 23 14:11:22 2021 +0300"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun May 23 07:11:22 2021 -0400"
      },
      "message": "Enable wasm32 as a target architecture for the SIMD feature  (#324)\n\n* Add wasm32 as target_arch for simd\r\n\r\nSigned-off-by: roee88 \u003croee88@gmail.com\u003e\r\n\r\n* Allow wasm32 as a target arch for SIMD\r\n\r\nSigned-off-by: roee88 \u003croee88@gmail.com\u003e"
    },
    {
      "commit": "b88ef807555e5c8e8335afc86d76cbd1796406eb",
      "tree": "a36c0246f7d8a7518bdf716d41a5f9082df29590",
      "parents": [
        "f316798749f902e11a27b349781053d2dd55be80"
      ],
      "author": {
        "name": "Raphael Taylor-Davies",
        "email": "1781103+tustvold@users.noreply.github.com",
        "time": "Sun May 23 10:48:03 2021 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun May 23 05:48:03 2021 -0400"
      },
      "message": "fix comparison of dictionaries with different values arrays (#332) (#333)\n\n"
    },
    {
      "commit": "f316798749f902e11a27b349781053d2dd55be80",
      "tree": "bd4c5580b5ff25e82a52703435f7a44892764e74",
      "parents": [
        "a25cafb5e1e5cbd371433b0ff251386279c0aa6c"
      ],
      "author": {
        "name": "Roee Shlomo",
        "email": "roee88@gmail.com",
        "time": "Sun May 23 12:46:33 2021 +0300"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun May 23 05:46:33 2021 -0400"
      },
      "message": "Fix undefined behavior in FFI (#323)\n\n- Fix UB due to aliasing\r\n- Enable MIRI in CI for most tests in arrow crate\r\n\r\nSigned-off-by: roee88 \u003croee88@gmail.com\u003e"
    },
    {
      "commit": "a25cafb5e1e5cbd371433b0ff251386279c0aa6c",
      "tree": "a0e087c9de46d4a13fd7c636d93edd568b2339f7",
      "parents": [
        "71c21595a0856e4f87838c8c3bb5f2b04fb88024"
      ],
      "author": {
        "name": "Wes McKinney",
        "email": "wesm@users.noreply.github.com",
        "time": "Sat May 22 06:06:25 2021 -0500"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat May 22 07:06:25 2021 -0400"
      },
      "message": "Add ported Rust release verification script (#331)\n\n* Add ported Rust release verification script\r\n\r\n* Minor simplifications. (#1)\r\n\r\nCo-authored-by: Jorge Leitao \u003cjorgecarleitao@gmail.com\u003e"
    },
    {
      "commit": "71c21595a0856e4f87838c8c3bb5f2b04fb88024",
      "tree": "46a4a115e022401126a6a5ea8c8723a92d054bd1",
      "parents": [
        "dde86b96206b94dde48f2fd0a39103120a18c4ff"
      ],
      "author": {
        "name": "Raphael Taylor-Davies",
        "email": "1781103+tustvold@users.noreply.github.com",
        "time": "Fri May 21 19:30:23 2021 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 21 14:30:23 2021 -0400"
      },
      "message": "return reference from DictionaryArray::values() (#313) (#314)\n\nSigned-off-by: Raphael Taylor-Davies \u003cr.taylordavies@googlemail.com\u003e"
    },
    {
      "commit": "dde86b96206b94dde48f2fd0a39103120a18c4ff",
      "tree": "3a4e1e262f5c1d65b136c64db6d94996d420de7e",
      "parents": [
        "f042191578cbc2329957015fa0b8d2f01d51ddbd"
      ],
      "author": {
        "name": "Ritchie Vink",
        "email": "ritchie46@gmail.com",
        "time": "Fri May 21 20:30:07 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 21 14:30:07 2021 -0400"
      },
      "message": "feature gate csv functionality (#312)\n\n* feature gate csv functionality\r\n\r\n* mock read_csv example\r\n\r\n* clippy\r\n\r\n* mock read_csv_infer_schema example\r\n\r\n* add tests of --no-default-features to CI"
    },
    {
      "commit": "f042191578cbc2329957015fa0b8d2f01d51ddbd",
      "tree": "57d5869a4dbba40c9b54c9747161c661b9456fe2",
      "parents": [
        "e18b356b1310d5b178f7b6290993b920d3fe7edd"
      ],
      "author": {
        "name": "Ritchie Vink",
        "email": "ritchie46@gmail.com",
        "time": "Fri May 21 14:31:17 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 21 14:31:17 2021 +0200"
      },
      "message": "fix invalid null handling in filter (#296)\n\n* fix invalid null handling in filter\r\n\r\n* take offset into account\r\n\r\n* remove incorrect UB warning"
    },
    {
      "commit": "e18b356b1310d5b178f7b6290993b920d3fe7edd",
      "tree": "3d517eeacd55d279d19f995702bc7e4a176dca13",
      "parents": [
        "087cf17edcabce032a473a80fcd1d952904b4b13"
      ],
      "author": {
        "name": "Navin",
        "email": "navin@novemberkilo.com",
        "time": "Fri May 21 01:40:05 2021 +1000"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 20 17:40:05 2021 +0200"
      },
      "message": "Doctests for StringArray and LargeStringArray. (#330)\n\n"
    },
    {
      "commit": "087cf17edcabce032a473a80fcd1d952904b4b13",
      "tree": "353d7ec602eb6e943cfcff8f3672540988686469",
      "parents": [
        "7f37a7f2a119dd83c497766265707a64d9b82307"
      ],
      "author": {
        "name": "Ritchie Vink",
        "email": "ritchie46@gmail.com",
        "time": "Thu May 20 17:30:03 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 20 17:30:03 2021 +0200"
      },
      "message": "inline PrimitiveArray::value (#329)\n\n"
    },
    {
      "commit": "7f37a7f2a119dd83c497766265707a64d9b82307",
      "tree": "65b7b23c93a9059520a4fe764008ef123b3c0be9",
      "parents": [
        "c863a2c44bffa5c092a49e07910d5e9225483193"
      ],
      "author": {
        "name": "Ritchie Vink",
        "email": "ritchie46@gmail.com",
        "time": "Wed May 19 15:37:57 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 19 09:37:57 2021 -0400"
      },
      "message": "Mutablebuffer::shrink_to_fit (#318)\n\n* Mutablebuffer::shrink_to_fit\r\n\r\n* add shrink_to_fit explicit test"
    },
    {
      "commit": "c863a2c44bffa5c092a49e07910d5e9225483193",
      "tree": "97748875e0af4791f66defef67e7218a868c34cb",
      "parents": [
        "de44c8cd136c212628671a288ddf64a5c88a92a4"
      ],
      "author": {
        "name": "Roee Shlomo",
        "email": "roee88@gmail.com",
        "time": "Mon May 17 14:08:24 2021 +0300"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 17 07:08:24 2021 -0400"
      },
      "message": "Fix FFI and add support for Struct type (#287)\n\n* fix: support nested types in FFI\r\n\r\nPorted from https://github.com/jorgecarleitao/arrow2\r\n\r\nFix #20\r\nFix #251\r\n\r\nSigned-off-by: roee88 \u003croee88@gmail.com\u003e\r\n\r\n* Removed Clone from FFI_ArrowArray\r\n\r\nSigned-off-by: roee88 \u003croee88@gmail.com\u003e\r\n\r\n* Add nesting to FFI struct test\r\n\r\nSigned-off-by: roee88 \u003croee88@gmail.com\u003e"
    },
    {
      "commit": "de44c8cd136c212628671a288ddf64a5c88a92a4",
      "tree": "0c584440891d92e424e9064f5ee72dcef922192e",
      "parents": [
        "e7d5efe58d1f94e0309149495dfa433b6778c259"
      ],
      "author": {
        "name": "Jorge Leitao",
        "email": "jorgecarleitao@gmail.com",
        "time": "Mon May 17 13:07:27 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 17 07:07:27 2021 -0400"
      },
      "message": "Added changelog generator script and configuration. (#289)\n\n"
    },
    {
      "commit": "e7d5efe58d1f94e0309149495dfa433b6778c259",
      "tree": "42ece6702351945b1b023fdd665de8bc21050a4f",
      "parents": [
        "a959c85f8e567e7f117445f78a7c524e57edfaf4"
      ],
      "author": {
        "name": "Max Meldrum",
        "email": "max@meldrum.se",
        "time": "Mon May 17 12:45:11 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 17 06:45:11 2021 -0400"
      },
      "message": "Add Send to the ArrayBuilder trait (#291)\n\n"
    },
    {
      "commit": "a959c85f8e567e7f117445f78a7c524e57edfaf4",
      "tree": "41abc818a86d0539146256f84658c240f4a1282f",
      "parents": [
        "1fc48daab0d915fcd26c919d2fc47a7b057bd13e"
      ],
      "author": {
        "name": "Daniël Heres",
        "email": "danielheres@gmail.com",
        "time": "Mon May 17 08:09:38 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 17 08:09:38 2021 +0200"
      },
      "message": "Version upgrades (#304)\n\n"
    },
    {
      "commit": "1fc48daab0d915fcd26c919d2fc47a7b057bd13e",
      "tree": "5c177c662a7b8d946545343e715fdce97822acf8",
      "parents": [
        "3665296b4e985a840ad21815b839e5fa3fc462d5"
      ],
      "author": {
        "name": "Andrew Lamb",
        "email": "andrew@nerdnetworks.org",
        "time": "Sun May 16 07:36:39 2021 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sun May 16 07:36:39 2021 -0400"
      },
      "message": "Remove old release scripts (#293)\n\n* Remove old release scripts\r\n\r\n* Add rat files back in"
    },
    {
      "commit": "3665296b4e985a840ad21815b839e5fa3fc462d5",
      "tree": "b2ef91528193939e1e97824e33611a986a5b692f",
      "parents": [
        "4449ee96fe3fd4a0b275da8dd25ce2792699bc98"
      ],
      "author": {
        "name": "Wakahisa",
        "email": "nevilledips@gmail.com",
        "time": "Sat May 15 09:21:39 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat May 15 09:21:39 2021 +0200"
      },
      "message": "manually bump development version (#288)\n\n"
    },
    {
      "commit": "4449ee96fe3fd4a0b275da8dd25ce2792699bc98",
      "tree": "a3ea4e24451bcc32f9b3da75ac4f12e6a25a58d9",
      "parents": [
        "ce8e67c28ad1431cda36b38434e53871c2dd520a"
      ],
      "author": {
        "name": "Manish Gill",
        "email": "gill.manish90@gmail.com",
        "time": "Fri May 14 20:42:47 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 14 14:42:47 2021 -0400"
      },
      "message": "Added Decimal support to pretty-print display utility (#230) (#273)\n\n* Added Decimal support to pretty-print display utility (#230)\r\n\r\n* Applied cargo fmt to fix linting errors\r\n\r\n* Added proper printing for decimals based on scale, moved tests to pretty.rs\r\n\r\n* Applied cargo fmt on pretty test\r\n\r\nCo-authored-by: Manish Gill \u003cmanish.gill@tomtom.com\u003e"
    },
    {
      "commit": "ce8e67c28ad1431cda36b38434e53871c2dd520a",
      "tree": "1a43d00ca96b0428250edf82bfb3e3a492117a75",
      "parents": [
        "8226219fe7104f6c8a2740806f96f02c960d991c"
      ],
      "author": {
        "name": "Michael Edwards",
        "email": "medwards@walledcity.ca",
        "time": "Thu May 13 13:28:46 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 13 13:28:46 2021 +0200"
      },
      "message": "Fix subtraction underflow when sorting string arrays with many nulls (#285)\n\n"
    },
    {
      "commit": "8226219fe7104f6c8a2740806f96f02c960d991c",
      "tree": "9eff6b7c40088a266d1331775af700e2afeeebc7",
      "parents": [
        "510f02f449193bea9df3f423d18ce7a9e4112bdf"
      ],
      "author": {
        "name": "Wakahisa",
        "email": "nevilledips@gmail.com",
        "time": "Tue May 11 07:42:41 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue May 11 07:42:41 2021 +0200"
      },
      "message": "Fix null struct and list roundtrip (#270)\n\n* fix null struct and list inconsistencies in writer\r\n\r\n* fix list reader null and empty slot calculation\r\n\r\n* remove stray TODOs"
    },
    {
      "commit": "510f02f449193bea9df3f423d18ce7a9e4112bdf",
      "tree": "d3ad7f4af25ea82b3e1d765e7b46c85dc9a3fa57",
      "parents": [
        "aba044f8294498f2100532b08d433f848d9d2a29"
      ],
      "author": {
        "name": "Daniël Heres",
        "email": "danielheres@gmail.com",
        "time": "Tue May 11 07:35:05 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue May 11 07:35:05 2021 +0200"
      },
      "message": "Speed up bound checking in `take` (#281)\n\n* WIP improve take performance\r\n\r\n* WIP\r\n\r\n* Bound checking speed\r\n\r\n* Simplify\r\n\r\n* fmt\r\n\r\n* Improve formatting"
    },
    {
      "commit": "aba044f8294498f2100532b08d433f848d9d2a29",
      "tree": "c46c4e347e444917f7033ac104a0de6cbde3bc83",
      "parents": [
        "2f5f58a2087be67eeeeb0109f0c8843c216a4fd1"
      ],
      "author": {
        "name": "Wakahisa",
        "email": "nevilledips@gmail.com",
        "time": "Tue May 11 00:26:36 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 10 18:26:36 2021 -0400"
      },
      "message": "Update PR template by commenting out instructions (#278)\n\nSome contributors don\u0027t remove the guidelines when creating PRs, so it might be more convenient if we hide them behind comments.\r\nThe comments are still visible when editing, but are not displayed when the markdown is rendered"
    },
    {
      "commit": "2f5f58a2087be67eeeeb0109f0c8843c216a4fd1",
      "tree": "e8d387660ee251d3d750491614c2606602982a9a",
      "parents": [
        "8bd769bc118f617580cfaa7b1e654159c0fb696b"
      ],
      "author": {
        "name": "Marco Neumann",
        "email": "marco@crepererum.net",
        "time": "Mon May 10 18:44:58 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 10 18:44:58 2021 +0200"
      },
      "message": "support full u32 and u64 roundtrip through parquet (#258)\n\n* re-export arity kernels in `arrow::compute`\r\n\r\nSeems logical since all other kernels are re-exported as well under this\r\nflat hierarchy.\r\n\r\n* return file from `parquet::arrow::arrow_writer::tests::[one_column]_roundtrip`\r\n\r\n* support full arrow u64 through parquet\r\n\r\n- updates arrow to parquet type mapping to use reinterpret/overflow cast\r\n  for u64\u003c-\u003ei64 similar to what the C++ stack does\r\n- changes statistics calculation to account for the fact that u64 should\r\n  be compared unsigned (as per spec)\r\n\r\nFixes #254.\r\n\r\n* avoid copying array when reading u64 from parquet\r\n\r\n* support full arrow u32 through parquet\r\n\r\nThis is idential to the solution we now have for u64."
    },
    {
      "commit": "8bd769bc118f617580cfaa7b1e654159c0fb696b",
      "tree": "062231a333a78a781e08f5627a30cd2e28357a2d",
      "parents": [
        "a870b24bd4eb76d3e0e5c718c9956a7dcdee52fd"
      ],
      "author": {
        "name": "Wakahisa",
        "email": "nevilledips@gmail.com",
        "time": "Fri May 07 20:46:24 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 07 14:46:24 2021 -0400"
      },
      "message": "1.52 clippy fixes (#267)\n\n"
    },
    {
      "commit": "a870b24bd4eb76d3e0e5c718c9956a7dcdee52fd",
      "tree": "851b960b6ea004614941f6a1a4e61e0d29cd562d",
      "parents": [
        "64ea8dae64b05a1a4ffcde739b02411219653dc2"
      ],
      "author": {
        "name": "Dominik Moritz",
        "email": "domoritz@gmail.com",
        "time": "Thu May 06 22:36:56 2021 -0700"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 07 07:36:56 2021 +0200"
      },
      "message": "Fix typo in csv/reader.rs (#265)\n\n"
    },
    {
      "commit": "64ea8dae64b05a1a4ffcde739b02411219653dc2",
      "tree": "c1e9fe67b45cbf1f89a0b0b15f1db72fdba1d9e9",
      "parents": [
        "b76e8c9fa3c6373dd839d2547a5c010f4a31ecae"
      ],
      "author": {
        "name": "hulunbier",
        "email": "hulunbier@gmail.com",
        "time": "Fri May 07 13:32:32 2021 +0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri May 07 07:32:32 2021 +0200"
      },
      "message": "Fix empty Schema::metadata deserialization error (#260)\n\n* Fix empty Schema::metadata deserialization error\r\n\r\nHope this fixes issue #241\r\n\r\n* Rename UT name to `test_ser_de_metadata`\r\n\r\nCo-authored-by: hulunbier \u003chulunbier\u003e"
    },
    {
      "commit": "b76e8c9fa3c6373dd839d2547a5c010f4a31ecae",
      "tree": "e0941fd9600a2882f6976488ff7857a5e47da534",
      "parents": [
        "508f25c10032857da34ea88cc8166f0741616a32"
      ],
      "author": {
        "name": "Jiayu Liu",
        "email": "Jimexist@users.noreply.github.com",
        "time": "Thu May 06 15:43:09 2021 +0800"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu May 06 09:43:09 2021 +0200"
      },
      "message": "update datafusion and ballista links (#259)\n\n"
    },
    {
      "commit": "508f25c10032857da34ea88cc8166f0741616a32",
      "tree": "9884095e097e2da0ce5f289f8e42a3ff3ed7a9c4",
      "parents": [
        "04779e0b57efa2f88c75abc080cd5feb70737484"
      ],
      "author": {
        "name": "Jorge Leitao",
        "email": "jorgecarleitao@gmail.com",
        "time": "Wed May 05 06:47:26 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 05 06:47:26 2021 +0200"
      },
      "message": "Added env to run rust in integration. (#253)\n\n"
    },
    {
      "commit": "04779e0b57efa2f88c75abc080cd5feb70737484",
      "tree": "a4e89ead713d3e68fd52c308d19a8147e0b2f61e",
      "parents": [
        "6a6554361d5ac2304b17723e00910ccea34a710a"
      ],
      "author": {
        "name": "Marco Neumann",
        "email": "marco@crepererum.net",
        "time": "Wed May 05 06:46:24 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed May 05 06:46:24 2021 +0200"
      },
      "message": "fix NaN handling in parquet statistics (#256)\n\nCloses #255."
    },
    {
      "commit": "6a6554361d5ac2304b17723e00910ccea34a710a",
      "tree": "cd1946a4a096d29f7da94adae3d536664f962d5a",
      "parents": [
        "8f030db53d9eda901c82db9daf94339fc447d0db"
      ],
      "author": {
        "name": "Wakahisa",
        "email": "nevilledips@gmail.com",
        "time": "Tue May 04 06:43:57 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue May 04 06:43:57 2021 +0200"
      },
      "message": "fix parquet max_definition for non-null structs (#246)\n\n* fix parquet max_definition for non-null structs\r\n\r\n* clippy: needless reference\r\n\r\n* Update parquet/src/arrow/levels.rs\r\n\r\nCo-authored-by: Andrew Lamb \u003candrew@nerdnetworks.org\u003e\r\n\r\nCo-authored-by: Andrew Lamb \u003candrew@nerdnetworks.org\u003e"
    },
    {
      "commit": "8f030db53d9eda901c82db9daf94339fc447d0db",
      "tree": "650cea42a7b327058be7da1d0f825cfad196cbe6",
      "parents": [
        "a040c15fb6eb7353426b0cccaf56c64832121498"
      ],
      "author": {
        "name": "Jorge Leitao",
        "email": "jorgecarleitao@gmail.com",
        "time": "Mon May 03 16:42:45 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 03 10:42:45 2021 -0400"
      },
      "message": "Made integration tests always run. (#248)\n\n"
    },
    {
      "commit": "a040c15fb6eb7353426b0cccaf56c64832121498",
      "tree": "113109960ebc2dd8593f9ea36a7739d97a99da22",
      "parents": [
        "4dfbca6e5791be400d2fd3ae863655445327650e"
      ],
      "author": {
        "name": "Andrew Lamb",
        "email": "andrew@nerdnetworks.org",
        "time": "Mon May 03 10:41:30 2021 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon May 03 10:41:30 2021 -0400"
      },
      "message": "Improve docs for NullArray, new_null_array and new_empty_array (#240)\n\n* Update docs in null_array.rs so they are discoverable\r\n\r\n* Add doc examples for new_null_array and new_empty_array"
    },
    {
      "commit": "4dfbca6e5791be400d2fd3ae863655445327650e",
      "tree": "1172094f3127b7038ba561db00726bce1bd14350",
      "parents": [
        "486524733639d3c9e60e44bb07a65c628958b7b6"
      ],
      "author": {
        "name": "Michael Edwards",
        "email": "medwards@walledcity.ca",
        "time": "Sat May 01 12:19:22 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Sat May 01 06:19:22 2021 -0400"
      },
      "message": "sort_primitive result is capped to the min of limit or values.len (#236)\n\n* sort_primitive result is capped to the min of limit or values.len\r\n\r\nfixes #235\r\n\r\n* Fixed length calculation of nulls to include\r\n\r\n* Add more sort_primitive tests for sorts /w limit"
    },
    {
      "commit": "486524733639d3c9e60e44bb07a65c628958b7b6",
      "tree": "fd28a0ae086591448fc90921e7e49876ebbc9dae",
      "parents": [
        "d008f31b107c1030a1f5144c164e8ca8bf543576"
      ],
      "author": {
        "name": "Jorge Leitao",
        "email": "jorgecarleitao@gmail.com",
        "time": "Fri Apr 30 13:26:41 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Apr 30 13:26:41 2021 +0200"
      },
      "message": "Disabled rebase needed until demonstrate working. (#243)\n\n"
    },
    {
      "commit": "d008f31b107c1030a1f5144c164e8ca8bf543576",
      "tree": "c830ecf0e38636e7d61b4f7f9e19fb5394abae32",
      "parents": [
        "2121150a0d5536865f4acdf8ee440b900d236e06"
      ],
      "author": {
        "name": "Ritchie Vink",
        "email": "ritchie46@gmail.com",
        "time": "Thu Apr 29 19:42:08 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Apr 29 13:42:08 2021 -0400"
      },
      "message": "pin flatbuffers to 0.8.4 (#239)\n\n* pin flatbuffer to 0.8.4\r\n\r\n* \u003d0.8.2"
    },
    {
      "commit": "2121150a0d5536865f4acdf8ee440b900d236e06",
      "tree": "a7e1c6a5e853d948953642d4ad2b417cd764130f",
      "parents": [
        "ed00e4d4a160cd5182bfafb81fee2240ec005014"
      ],
      "author": {
        "name": "Wakahisa",
        "email": "nevilledips@gmail.com",
        "time": "Thu Apr 29 18:26:40 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Apr 29 12:26:40 2021 -0400"
      },
      "message": "[Parquet] Read list field correctly (#234)\n\n"
    },
    {
      "commit": "ed00e4d4a160cd5182bfafb81fee2240ec005014",
      "tree": "8bb79111cb7a427bf22e97a483fbaaaa3450c3c9",
      "parents": [
        "111d5d67c76500b14aece28b3cbf145c4400f7fb"
      ],
      "author": {
        "name": "Andrew Lamb",
        "email": "andrew@nerdnetworks.org",
        "time": "Tue Apr 27 08:48:46 2021 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Apr 27 08:48:46 2021 -0400"
      },
      "message": "Fix code examples for RecordBatch::try_from_iter (#231)\n\n"
    },
    {
      "commit": "111d5d67c76500b14aece28b3cbf145c4400f7fb",
      "tree": "f91ac25a96dc565b4ad76dd225157fba826e5f66",
      "parents": [
        "51513c165b8f39760960f2eeac9262f0b6e8c9f1"
      ],
      "author": {
        "name": "Raphael Taylor-Davies",
        "email": "1781103+tustvold@users.noreply.github.com",
        "time": "Tue Apr 27 12:25:18 2021 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Apr 27 13:25:18 2021 +0200"
      },
      "message": "Support string dictionaries in csv reader (#228) (#229)\n\n"
    },
    {
      "commit": "51513c165b8f39760960f2eeac9262f0b6e8c9f1",
      "tree": "b080b36e7660c7a18c8709ce7ee1cd110f99eb3d",
      "parents": [
        "20f6c7e26d14d6df461d17c95d9a254c71bb0c72"
      ],
      "author": {
        "name": "Andrew Lamb",
        "email": "andrew@nerdnetworks.org",
        "time": "Tue Apr 27 06:44:22 2021 -0400"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Tue Apr 27 06:44:22 2021 -0400"
      },
      "message": "ARROW-12411: [Rust] Create RecordBatches from Iterators (#7)\n\n"
    },
    {
      "commit": "20f6c7e26d14d6df461d17c95d9a254c71bb0c72",
      "tree": "15a6d2fb45f45b7031f527c404eeb3488694763d",
      "parents": [
        "2214263a6a0df2b2fc1c8a2540d7a9f022bbc110"
      ],
      "author": {
        "name": "Ritchie Vink",
        "email": "ritchie46@gmail.com",
        "time": "Mon Apr 26 23:49:52 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Apr 26 17:49:52 2021 -0400"
      },
      "message": "support LargeUtf8 in sort kernel (#26)\n\n"
    },
    {
      "commit": "2214263a6a0df2b2fc1c8a2540d7a9f022bbc110",
      "tree": "d63055ee9095abc17d0656c44866f27999508912",
      "parents": [
        "463f88f5553a51a0498658bdc5a0ba13a2e24eda"
      ],
      "author": {
        "name": "Jorge Leitao",
        "email": "jorgecarleitao@gmail.com",
        "time": "Mon Apr 26 23:48:56 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Mon Apr 26 17:48:56 2021 -0400"
      },
      "message": "Removed unused files (#22)\n\n* Removed unused files.\r\n\r\n* Removed un-used files."
    },
    {
      "commit": "463f88f5553a51a0498658bdc5a0ba13a2e24eda",
      "tree": "b32321aca2fd5985b9587d6e7018e584a422a211",
      "parents": [
        "861b5723cff4bed0a03dda6102fe02d7c09618a5"
      ],
      "author": {
        "name": "Daniël Heres",
        "email": "danielheres@gmail.com",
        "time": "Fri Apr 23 09:59:34 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Fri Apr 23 09:59:34 2021 +0200"
      },
      "message": "Support auto-vectorization for min/max using multiversion (#9)\n\n"
    },
    {
      "commit": "861b5723cff4bed0a03dda6102fe02d7c09618a5",
      "tree": "c1abf11298fade7b1a31716a17f786ad226b8a9b",
      "parents": [
        "a0d5e11d2938312ae5856be8cba8f9ae798cab03"
      ],
      "author": {
        "name": "Andy Grove",
        "email": "andygrove@users.noreply.github.com",
        "time": "Thu Apr 22 10:08:23 2021 -0600"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Apr 22 18:08:23 2021 +0200"
      },
      "message": "Add GitHub templates (#17)\n\n"
    },
    {
      "commit": "a0d5e11d2938312ae5856be8cba8f9ae798cab03",
      "tree": "bd7a4bc4fbaea4330c8049fddabaef4f4933d591",
      "parents": [
        "c3fe3bab9905739fdda75301dab07a18c91731bd"
      ],
      "author": {
        "name": "Jorge Leitao",
        "email": "jorgecarleitao@gmail.com",
        "time": "Thu Apr 22 15:57:26 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Apr 22 15:57:26 2021 +0200"
      },
      "message": "Added rebase-needed bot (#13)\n\n"
    },
    {
      "commit": "c3fe3bab9905739fdda75301dab07a18c91731bd",
      "tree": "fb5f238bfe1340288823af182aa154b0920ba161",
      "parents": [
        "90d4f1d33e6644554c4db4592b8fa45f7c209356"
      ],
      "author": {
        "name": "Raphael Taylor-Davies",
        "email": "1781103+tustvold@users.noreply.github.com",
        "time": "Thu Apr 22 14:09:59 2021 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Apr 22 15:09:59 2021 +0200"
      },
      "message": "Buffer::from_slice_ref set correct capacity (#18)\n\nFixed ARROW-12504"
    },
    {
      "commit": "90d4f1d33e6644554c4db4592b8fa45f7c209356",
      "tree": "373e7a80b1a4c0d1fc08be3c35b48f1a5cc89211",
      "parents": [
        "a5732e80508c60cb65cc049c57f8bca5d38fc1c4"
      ],
      "author": {
        "name": "Raphael Taylor-Davies",
        "email": "1781103+tustvold@users.noreply.github.com",
        "time": "Thu Apr 22 13:49:14 2021 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Apr 22 08:49:14 2021 -0400"
      },
      "message": "ARROW-12493: Add support for writing dictionary arrays to CSV and JSON (#16)\n\n"
    },
    {
      "commit": "a5732e80508c60cb65cc049c57f8bca5d38fc1c4",
      "tree": "6a40b5fb63598ccf6e986c9e80ab569380e3a776",
      "parents": [
        "74d3567277c79dea74ec1c10411fd3727bd512bc"
      ],
      "author": {
        "name": "Raphael Taylor-Davies",
        "email": "1781103+tustvold@users.noreply.github.com",
        "time": "Thu Apr 22 13:44:34 2021 +0100"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Thu Apr 22 08:44:34 2021 -0400"
      },
      "message": "ARROW-12426: [Rust] Fix concatentation of arrow dictionaries (#15)\n\n"
    },
    {
      "commit": "74d3567277c79dea74ec1c10411fd3727bd512bc",
      "tree": "dd505bfbe29ed904ecf36ca051c3e3cd54a60c45",
      "parents": [
        "8c1063c7b5e0c308ff5bcc4ba0283a2f0d67eeec"
      ],
      "author": {
        "name": "Jorge Leitao",
        "email": "jorgecarleitao@gmail.com",
        "time": "Thu Apr 22 00:08:43 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Apr 21 18:08:43 2021 -0400"
      },
      "message": "Added Integration tests against arrow (#10)\n\n* fix indent\r\n\r\n* Made CI run on any change. (#5)\r\n\r\n* Removed bot comment about title and JIRA. (#4)\r\n\r\n* Allow creating issues. (#6)\r\n\r\n* Trying running integration tests.\r\n\r\nCo-authored-by: Andy Grove \u003candygrove73@gmail.com\u003e\r\nCo-authored-by: Andy Grove \u003candygrove@users.noreply.github.com\u003e"
    },
    {
      "commit": "8c1063c7b5e0c308ff5bcc4ba0283a2f0d67eeec",
      "tree": "d265f057c260c8ce97c49ac840b758a54c737de7",
      "parents": [
        "3d7cefb41db55e7b3d0735a12b4cd2945a16f965"
      ],
      "author": {
        "name": "Daniël Heres",
        "email": "danielheres@gmail.com",
        "time": "Wed Apr 21 20:19:58 2021 +0200"
      },
      "committer": {
        "name": "GitHub",
        "email": "noreply@github.com",
        "time": "Wed Apr 21 20:19:58 2021 +0200"
      },
      "message": "Update URLs (#14)\n\n"
    }
  ],
  "next": "3d7cefb41db55e7b3d0735a12b4cd2945a16f965"
}
