The new lower compat bound for Julia is 1.10. This implies that support for the old LTS 1.6 has been dropped.
The old main API function
chunkshas been renamed toindex_chunks.A new function
chunkshas been introduced that returns an iterator that provides chunks of elements rather than chunks of indices of a given input collection. To avoid copies, it is based onview.For performance reasons, the
splitkeyword option now requires aSplitinstead of aSymbol. Concretely,:batchshould be replaced byConsecutive()and:scattershould be replaced byRoundRobin().The keyword argument
minchunksizehas been renamed tominsize.getchunkisn't public API anymore (and has, internally, been renamed togetchunkindices). If you really need a replacement, consider usingindex_chunks(...)[i]instead.The old legacy API that relied on positional rather than keyword arguments has been dropped.