File tree 1 file changed +7
-0
lines changed
1 file changed +7
-0
lines changed Original file line number Diff line number Diff line change @@ -108,6 +108,12 @@ Compiler/Runtime improvements
108
108
Breaking changes
109
109
----------------
110
110
111
+ * The assignment operations ` .+= ` , ` .*= ` and so on now generate calls
112
+ to ` broadcast! ` on the left-hand side (or call to ` view(a, ...) ` on the left-hand side
113
+ if the latter is a ` a[...] ` expression. This means that they will fail
114
+ if the left-hand side is immutable (or does not support ` view ` ), and will
115
+ otherwise change the left-hand side in-place ([ #17510 ] , [ #17546 ] ).
116
+
111
117
* Method ambiguities no longer generate warnings when files are
112
118
loaded, nor do they dispatch to an arbitrarily-chosen method;
113
119
instead, a call that cannot be resolved to a single method results
@@ -369,3 +375,4 @@ Deprecated or removed
369
375
[ #17402 ] : https://github.com/JuliaLang/julia/issues/17402
370
376
[ #17404 ] : https://github.com/JuliaLang/julia/issues/17404
371
377
[ #17510 ] : https://github.com/JuliaLang/julia/issues/17510
378
+ [ #17546 ] : https://github.com/JuliaLang/julia/issues/17546
You can’t perform that action at this time.
0 commit comments