Are you updating from Julia 0.5 to 1.0? If so, it might make sense to go in steps via 0.6 and 0.7 as those will give you deprecation warnings and tell you how to upgrade your code; or at least when you hit raod-blocks. In Julia 0.6 this gave:
julia> trues(2) & trues(2)
WARNING: A::AbstractArray & B::AbstractArray is deprecated, use A .& B instead.
It sounds like a pain but I think it will be easier overall. Each set of deprecations is pretty easy by itself, 0.6 => 0.7/1.0 is the hardest since it has the most deprecations.