@@ -170,6 +170,9 @@ This section lists changes that do not have deprecation warnings.
170
170
171
171
* ` finalizer(function, object) ` now returns ` object ` rather than ` nothing ` ([ #24679 ] ).
172
172
173
+ * The constructor of ` SubString ` now checks if the requsted view range
174
+ is defined by valid indices in the parent ` AbstractString ` ([ #22511 ] ).
175
+
173
176
* Macro calls with ` for ` expressions are now parsed as generators inside
174
177
function argument lists ([ #18650 ] ). Examples:
175
178
@@ -335,6 +338,11 @@ Library improvements
335
338
336
339
* ` Irrational ` is now a subtype of ` AbstractIrrational ` ([ #24245 ] ).
337
340
341
+ * Introduced the ` empty ` function, the functional pair to ` empty! ` which returns a new,
342
+ empty container ([ #24390 ] ).
343
+
344
+ * Jump to first/last history entries in the REPL via "Alt-<" and "Alt->" ([ #22829 ] ).
345
+
338
346
* The function ` chop ` now accepts two arguments ` head ` and ` tail ` allowing to specify
339
347
number of characters to remove from the head and tail of the string ([ #24126 ] ).
340
348
@@ -484,6 +492,11 @@ Deprecated or removed
484
492
Instead, reshape the array or add trailing indices so the dimensionality and number of indices
485
493
match ([ #14770 ] , [ #23628 ] ).
486
494
495
+ * ` indices(a) ` and ` indices(a,d) ` have been deprecated in favor of ` axes(a) ` and
496
+ ` axes(a, d) ` ([ #25057 ] ).
497
+
498
+ * ` EnvHash ` has been renamed to ` EnvDict ` ([ #24167 ] ).
499
+
487
500
* Uninitialized ` Array ` constructors of the form
488
501
` Array[{T,N}](shape...) ` have been deprecated in favor of equivalents
489
502
accepting ` uninitialized ` (an alias for ` Uninitialized() ` ) as their first argument,
@@ -909,6 +922,7 @@ Command-line option changes
909
922
[ #22350 ] : https://github.com/JuliaLang/julia/issues/22350
910
923
[ #22390 ] : https://github.com/JuliaLang/julia/issues/22390
911
924
[ #22496 ] : https://github.com/JuliaLang/julia/issues/22496
925
+ [ #22511 ] : https://github.com/JuliaLang/julia/issues/22511
912
926
[ #22523 ] : https://github.com/JuliaLang/julia/issues/22523
913
927
[ #22532 ] : https://github.com/JuliaLang/julia/issues/22532
914
928
[ #22572 ] : https://github.com/JuliaLang/julia/issues/22572
@@ -933,6 +947,7 @@ Command-line option changes
933
947
[ #22801 ] : https://github.com/JuliaLang/julia/issues/22801
934
948
[ #22814 ] : https://github.com/JuliaLang/julia/issues/22814
935
949
[ #22825 ] : https://github.com/JuliaLang/julia/issues/22825
950
+ [ #22829 ] : https://github.com/JuliaLang/julia/issues/22829
936
951
[ #22847 ] : https://github.com/JuliaLang/julia/issues/22847
937
952
[ #22868 ] : https://github.com/JuliaLang/julia/issues/22868
938
953
[ #22880 ] : https://github.com/JuliaLang/julia/issues/22880
@@ -989,6 +1004,7 @@ Command-line option changes
989
1004
[ #24047 ] : https://github.com/JuliaLang/julia/issues/24047
990
1005
[ #24126 ] : https://github.com/JuliaLang/julia/issues/24126
991
1006
[ #24153 ] : https://github.com/JuliaLang/julia/issues/24153
1007
+ [ #24167 ] : https://github.com/JuliaLang/julia/issues/24167
992
1008
[ #24187 ] : https://github.com/JuliaLang/julia/issues/24187
993
1009
[ #24221 ] : https://github.com/JuliaLang/julia/issues/24221
994
1010
[ #24240 ] : https://github.com/JuliaLang/julia/issues/24240
@@ -1000,6 +1016,7 @@ Command-line option changes
1000
1016
[ #24320 ] : https://github.com/JuliaLang/julia/issues/24320
1001
1017
[ #24356 ] : https://github.com/JuliaLang/julia/issues/24356
1002
1018
[ #24362 ] : https://github.com/JuliaLang/julia/issues/24362
1019
+ [ #24390 ] : https://github.com/JuliaLang/julia/issues/24390
1003
1020
[ #24396 ] : https://github.com/JuliaLang/julia/issues/24396
1004
1021
[ #24413 ] : https://github.com/JuliaLang/julia/issues/24413
1005
1022
[ #24414 ] : https://github.com/JuliaLang/julia/issues/24414
@@ -1033,4 +1050,5 @@ Command-line option changes
1033
1050
[ #25037 ] : https://github.com/JuliaLang/julia/issues/25037
1034
1051
[ #25046 ] : https://github.com/JuliaLang/julia/issues/25046
1035
1052
[ #25056 ] : https://github.com/JuliaLang/julia/issues/25056
1053
+ [ #25057 ] : https://github.com/JuliaLang/julia/issues/25057
1036
1054
[ #25088 ] : https://github.com/JuliaLang/julia/issues/25088
0 commit comments