- New
findall(pattern, string)
method wherepattern
is a string or regex ([#31834]).
Regex
can now be multiplied (*
) and exponentiated (^
), like strings ([#23422]).- Cmd interpolation (
`$(x::Cmd) a b c`
where) now propagatesx
's process flags (environment, flags, working directory, etc) ifx
is the first interpolant and errors otherwise ([#24353]).
- The BLAS submodule no longer exports
dot
, which conflicts with that in LinearAlgebra ([#31838]). diagm
andspdiagm
now accept optionalm,n
initial arguments to specify a size ([#31654]).
mean
now accepts both a function argument and adims
keyword ([#31576]).
foldr
andmapfoldr
now work on any iterator that supportsIterators.reverse
, not just arrays ([#31781]).