From 0b1e4eff8ada1818d3d1590d11129d8c8382e86b Mon Sep 17 00:00:00 2001 From: Sacha Verweij Date: Mon, 22 May 2017 17:07:49 -0700 Subject: [PATCH] Add NEWS.md entry for dep of getindex(::Tuple, ::AbstractArray{_,N}) where N>1 (#19737). (#21988) (cherry picked from commit 3c5c27a15bf9eee8a98bc4527820dfd74c8697f5) --- NEWS.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/NEWS.md b/NEWS.md index 199573a00bc45..a4360dbf60946 100644 --- a/NEWS.md +++ b/NEWS.md @@ -508,6 +508,11 @@ Deprecated or removed * `broadcast_zpreserving` has been deprecated ([#19533], [#19720]). + * Methods allowing indexing of tuples by `AbstractArray`s with more than one dimension + have been deprecated. (Indexing a tuple by such a higher-dimensional `AbstractArray` + should yield a tuple with more than one dimension, but tuples are one-dimensional.) + ([#19737]). + * `@test_approx_eq a b` has been deprecated in favor of `@test a ≈ b` (or, equivalently, `@test ≈(a, b)` or `@test isapprox(a, b)`). `@test_approx_eq_eps` has been deprecated in favor of new `@test` syntax: @@ -643,6 +648,7 @@ Command-line option changes [#19721]: https://github.com/JuliaLang/julia/issues/19721 [#19722]: https://github.com/JuliaLang/julia/issues/19722 [#19724]: https://github.com/JuliaLang/julia/issues/19724 +[#19737]: https://github.com/JuliaLang/julia/issues/19737 [#19741]: https://github.com/JuliaLang/julia/issues/19741 [#19771]: https://github.com/JuliaLang/julia/issues/19771 [#19779]: https://github.com/JuliaLang/julia/issues/19779