https://github.com/JuliaLang/julia

sort by:
Revision Author Date Message Commit Date
56fd9a2 docs: Fix indentation on !!! warn section (#36254) Related to #35526. Thanks to @kimikage for the heads up. (cherry picked from commit 6e7bc68865ee7baf27c721b83bc456f287762d9e) 03 August 2020, 19:57:35 UTC
f0b8c76 Set VERSION to 1.5.1-pre (#36877) 02 August 2020, 04:55:07 UTC
96786e2 Set VERSION to 1.5.0 (#36876) 01 August 2020, 23:44:58 UTC
7f0ee12 set VERSION to 1.5-rc2 (#36659) 27 July 2020, 15:24:48 UTC
522a08a Merge pull request #36755 from JuliaLang/backports-release-1.5 more backports for 1.5-rc2 26 July 2020, 17:55:47 UTC
4455454 Consider terminal emacs in EDITOR_CALLBACKS before graphical (#36346) Since the regex r"\bemacs" matches the cmd `emacs -nw`, the regex r"\bemacs\b.*\s(-nw|--no-window-system)\b" should be considered in the EDITOR_CALLBACKS list before it. Without this change, when JULIA_EDITOR="emacs -nw", julia tries to open the editor with run(...; wait=false) which causes the error: emacs: standard input is not a tty or for emacsclient: emacsclient: could not get terminal name emacsclient: error executing alternate editor "" (cherry picked from commit 638510733757efd066b578582997af7cbf3b4fa9) 26 July 2020, 13:53:10 UTC
98df0d5 stacktraces doc: fix typos (#36658) (cherry picked from commit 8825dab925980b539810c076fa57b1912f82ad3b) 25 July 2020, 16:56:54 UTC
e0555db doc multi-threading: fix indentation (#36560) (cherry picked from commit 737d232a101e65367f2c9ab2df47e8bf4f38e5fd) 25 July 2020, 16:56:54 UTC
76c232b doc multi-threading: link to 2019's blog post (#36561) (cherry picked from commit 109dee7ace39e044ee54ca3455120fb8b9aefe98) 25 July 2020, 16:56:54 UTC
75de80b fix stackoverflow in circshift!(x, y, (1.0,)) (#36734) (cherry picked from commit 773ef663957e1c7408e162acfa57a00c31b1534f) 25 July 2020, 16:56:54 UTC
bb0800b run NEWS-update 25 July 2020, 16:56:54 UTC
d24e088 add missing license headers 25 July 2020, 16:56:49 UTC
7665916 list `at-ccall` in docs, fix docstring (#36781) (cherry picked from commit b7af3a1800a90bb85f70771be7026a6fe24ce58f) 24 July 2020, 18:16:01 UTC
9b37634 Clean up atomic access to sleep_check_state (#36785) Fixes #36699 (cherry picked from commit d81f044549b0582b216467df3f10fe10417d00eb) 24 July 2020, 18:15:50 UTC
eccf776 fix #36753: fix write(::SubArray) by restoring pointer support (#36757) Followup to #36739 (and currently built atop it), this restores the `pointer(::SubArray{<:Any,<:Any,<:Array,<:Tuple{Vararg{RangeIndex}}}, ::Tuple)` method that was removed in #36405. It does so, however, as a deprecated method, with the actual method being implemented on `(::SubArray{...}, ::CartesianIndex)`. The rationale here is because the `::Tuple` method was undocumented and only supported on that one _highly_ specific `SubArray` type. I am keeping this patch as minimal as possible for backporting; in the future I aim to support `Vararg{CartesianIndex, Integer}` locations to make this more `getindex`-y and move farther away from the conflation with memory offsets. (cherry picked from commit d9b7d7e6ee1c26161cd601ccf4893c6b1206cd6f) 23 July 2020, 00:43:07 UTC
81b53a7 Fix `pbpaste` error on MacOS buildbots (#36763) (cherry picked from commit 80cdfa121fb4ee8ce482eb1e7e834f070e1c2031) 22 July 2020, 21:02:58 UTC
b16a987 fix `elsize` and `write` for SubArrays of Arrays (#36739) (cherry picked from commit 19d0745356e90229d676bc505237bbfeed05d6eb) 22 July 2020, 21:02:38 UTC
eae3216 check lengths in covector-vector products (#36679) (cherry picked from commit de9c371e0f663132d526d6180e144a0fabd8c958) 22 July 2020, 21:02:22 UTC
e326256 Fix -(::SparseMatrixCSC{Bool}) (#36738) (cherry picked from commit bd318e6662447c9a338fe67e15795f8ccb1f62d6) 22 July 2020, 03:53:06 UTC
4a2830a Fix correctness issues in sizeof tfunc (#36727) The `Core.sizeof` function can take either a value or a type, which can be a bit confusing in the tfunc, because the tfunc operates on the types of the values passed to the builtin. In particular, we were incorrectly returning Const(16) (on 64bit) for sizeof_tfunc(UnionAll), because it was treating it the asme as `sizeof_tfunc(Const(UnionAll))`. Try to clean that up as well as fixing a similar confusion in the nothrow version of this function. Lastly, we had a similar fast path in codegen, which would try to inline the actual size for a constant datatype argument. For codegen, just rm that whole code path, since it should have no more information than inference and figuring it out in inference exposes strictly more optimization opportunities. Fixes #36710 (cherry picked from commit 004cb25d66199aa0a2b7a985ecb86e773118ef82) 22 July 2020, 03:53:00 UTC
2567aaf fix precedence of dotted `<:` and `>:` (#36725) (cherry picked from commit 47989fa0ca37e016082bd5e927361ae8960e00f3) 21 July 2020, 20:43:36 UTC
b0c6e2b Fix `sizeof` for non-Array subarrays (#36715) (cherry picked from commit d806fb924449d67d44135ed0914a7df401879897) 21 July 2020, 20:43:21 UTC
cfcffae Stop transpose(A) \ lu(B)' from overwriting A (#36657) * Stop transpose(A) \ lu(B)' from overwriting `A` This fixes the following bug I just found: ```julia julia> A = randn(5,5) 5×5 Array{Float64,2}: 0.485776 1.29655 0.0790172 0.66021 -1.49472 0.971676 -1.01382 0.630476 0.479027 -0.843428 -0.264609 0.392383 0.646729 0.510696 0.34913 -0.795944 -2.47709 -1.81052 -1.0947 -0.30381 -0.938873 2.16395 -1.33484 -0.745461 1.43709 julia> transpose(A) / lu(randn(5,5))' # should not change A 5×5 Adjoint{Float64,Array{Float64,2}}: 14.36 11.9797 -7.32563 1.87016 -16.2731 -18.4415 -13.7036 10.6455 -2.47396 19.9999 8.0401 8.31723 -5.16714 2.13261 -9.637 4.19849 3.9865 -1.98478 0.714778 -4.62445 -5.36059 -2.60991 0.917052 0.290281 4.62547 julia> A # but does! 5×5 Array{Float64,2}: 14.36 -18.4415 8.0401 4.19849 -5.36059 11.9797 -13.7036 8.31723 3.9865 -2.60991 -7.32563 10.6455 -5.16714 -1.98478 0.917052 1.87016 -2.47396 2.13261 0.714778 0.290281 -16.2731 19.9999 -9.637 -4.62445 4.62547 ``` Co-authored-by: Daniel Karrasch <daniel.karrasch@posteo.de> (cherry picked from commit 94398d1183b34fe37e63111165a850c75df94f5e) 21 July 2020, 20:42:59 UTC
8ac1a3a Move `instance` initialization into jl_uninitialized_datatype Otherwise it's illegal to hold onto this object without having set ->instance, which is just asking for crashes. Fixes #36649. (cherry picked from commit d778a3d4baa17a6a9063aba06ec84510dcc3412a) 21 July 2020, 20:42:34 UTC
73da74e Make `isempty(c::Channel)` a non-mutating operation (#36641) Previously, `isempty(c::Channel)` would fall back to `iterate(c) === nothing`, which actually consumed a value from the channel. Instead, let's just define it in terms of its internal datastructures. (cherry picked from commit 44815002b377ca503d9c1e8adb28abed976a5ed1) 21 July 2020, 20:41:01 UTC
01881af fix #36492, ensure output is limited even with basic REPLs (cherry picked from commit ac572972b8c569e7141323bbe409248d7dd559a0) 21 July 2020, 20:40:28 UTC
279800d fix for lu factorization regression (#36569) (#36652) (cherry picked from commit 3da74e7176ca0d7657c3c8a8df9ca7e7c357c7fe) 14 July 2020, 12:20:49 UTC
33582a9 Merge pull request #36577 from JuliaLang/backports-release-1.5 Backports release 1.5-RC2 14 July 2020, 12:20:20 UTC
59f8500 bump Pkg to latest 1.5 version 10 July 2020, 19:11:17 UTC
b543e4f fix #36527, skipped marking of some items in excstack (#36583) (cherry picked from commit 80a016751545b323e81ae18bb9ced70afd8902fa) 10 July 2020, 19:09:37 UTC
678d57d Fix #36531 - Error in abstract_iteration (#36532) The issue here is passing a `Vargarg` to `precise_container_type`, which doesn't really make sense. Instead, we need to have the caller unwrap the vararg, request the precise container type of the inner type and then re-wrap the answer in a vararg. (cherry picked from commit 63179af92cecbc575617648106e5b2f65f267c92) 10 July 2020, 19:06:49 UTC
5d4b603 Fix CPU feature specification on virtualized x64. (cherry picked from commit 6fd5b82b2fb704346871579be15dc4ab2459de79) 10 July 2020, 19:06:47 UTC
f8b0280 Fix off-by-one dayofquarter() in leap years (#36543) (cherry picked from commit e23635c619b5c47ccc60c79eaa586a685844721b) 08 July 2020, 12:56:36 UTC
35ac0b7 Fix and test LLVM IR for issue #36422 (#36435) (cherry picked from commit 7622bae03739b5bb82ac02428d95e2b93b4715ab) 08 July 2020, 12:52:11 UTC
2e922d1 fix broadcasted assignment for scalar cartesian indexing (#35926) * fix broadcast for scalar cartesian indexing When broadcasting left-hand side indexing is turned into a dotview. For scalar indexing this should be equivalent to a `getindex`, but up until this patch the `CartesianIndex` would not be treated as such. This fixes e.g. broadcasting like `a[CartesianIndex(1)] .= 1` for a nested array `a`. * Also extend to `AbstractCartesianIndex`es Co-authored-by: Matt Bauman <mbauman@gmail.com> (cherry picked from commit ff174120aad91e1a838b5cf99bd2b97c14aab2f5) 08 July 2020, 12:49:38 UTC
6b38b28 Replace assertion in `limit_type_size` with fall-back (#36516) While the condition (the new type has to be wider) of the assertion should hold, #36407 shows that this may still fail sometimes. Instead of throwing an error, it seems better to just widen more aggressively if needed to ensure that the condition is fulfilled. (cherry picked from commit 604f6589f0da8f6deee650d31e1771b0ff383ad5) 08 July 2020, 12:49:37 UTC
0b851a1 REPL prefix search: add ^x "pass through" key (#36173) (cherry picked from commit 0960c9a30813bc7fd6ae13db8f8d655fca6b8545) 08 July 2020, 12:49:36 UTC
b0b9fcf Fix exception stack lowering in finally handlers (#36480) When using `return` or `break` nested inside `finally` handlers, exception stack lowering failed to pop exceptions from the stack correctly: * For `return`, the exception stack was not popped at all. If done inside a loop this could eventually cause the runtime to run out of memory. * For `break`, the exception stack was popped too early, causing subtle inconsistency in intermediate finally handlers. Fix these issues by storing the current exception token stack with the current finally handler information and using it to pop the stack before jumping into the finally block. Fixes #34579 (cherry picked from commit 16ba0dd6ee1b9d3fb5e9408be60af8e4b80dda93) 08 July 2020, 12:49:35 UTC
b04654b Respect memory constraints during init. (#36479) (cherry picked from commit 0a4f357817d575f3dde717f3ab9e8df387ef616a) 08 July 2020, 12:49:34 UTC
7ad6877 Remove unnecessary restriction to `StridedVecOrMat` (#35929) * Remove unnecessary restriction to `StridedVecOrMat` The "Strided array interface" https://docs.julialang.org/en/v1/manual/interfaces/#man-interface-strided-arrays-1 means that this is useful beyond these types * Update adjtrans.jl * Add tests for adj/trans strides * Add tests, change strides(::Adjoint{<:Any,<:AbstractVector}) definition * stride(::AbstractrArray, k) for all k, add ConjPtr * Remove ConjPtr * Always throw an error if strides is not implemented * Update abstractarray.jl * Update blas.jl * Remove k < 1 special case * Also widen elsize to AbstractVecOrMat * Use strides for dim > ndims * Update stdlib/LinearAlgebra/test/blas.jl Co-authored-by: Matt Bauman <mbauman@gmail.com> (cherry picked from commit 6b2c7f147a0df14621819ad9637cc075ebc1b9df) 08 July 2020, 12:49:34 UTC
24f033c Set VERSION to 1.5.0-rc1 (#36445) 26 June 2020, 20:13:25 UTC
c13b5ec Merge pull request #36428 from JuliaLang/backports-release-1.5 WIP: Backports for 1.5-RC1 26 June 2020, 13:11:14 UTC
f5c972c Add passthrough for non-Markdown docs (#36091) (cherry picked from commit 063525f0d6b15caff9945879f10f0def22d9051a) 26 June 2020, 09:25:42 UTC
593033d Fix pointer to no longer assume contiguity (#36405) * Fix pointer to no longer assume contiguity (cherry picked from commit 59b8dde7c17f3403febe517b5716398197e088e5) 26 June 2020, 09:22:05 UTC
0ce98db Update Pkg for 1.5. 26 June 2020, 09:18:11 UTC
9b3bebe deleteat!(::BitVector, inds) : check bounds for the first passed index (cherry picked from commit ca4a895cb04ddf51150bffac4c6e2490aceb1d5b) 26 June 2020, 07:26:14 UTC
62f49b7 Check axes in Array(::AbstractArray) (fixes #36220) (#36397) (cherry picked from commit 52c55d7934f71c5b2d9f6e6fa98cb48817def57c) 25 June 2020, 13:30:20 UTC
db95704 Add Release Notes back to the html version in the same place (#36333) as before and to the PDF version as well. In the PDF version, they are at the back of the document as the last Part. (cherry picked from commit 5142abf4507525a7a02e7d984ce39802ee4fe134) 25 June 2020, 13:30:20 UTC
ec9b512 Remove NEWS.md from the PDF of the manual (#36312) * Partial fix for #35495 This removes the NEWS.md link at the bottom of the first page of the manual. Given that we link to it prominently on top of the page, I feel this is ok. This will remove Section II of the PDF manual, where the release notes take 15 pages (because ofthe way markdown gets converted to PDF). * Better layout for the generated PDF (cherry picked from commit 43fd66c8ac9010a193fbcf870ce731b99dd38b4f) 25 June 2020, 13:30:19 UTC
fc63709 Fix: rem2pi for negative values greater than 2pi (#36233) * Fix rem2pi for RoundToZero * add extra tests for rem2pi (cherry picked from commit 0c92375d40793cda95172e1c7b7441ca5a36842e) 25 June 2020, 13:30:18 UTC
3f4e3f6 Merge pull request #36098 from JuliaLang/backports-release-1.5 Backports for Julia 1.5-RC1 (or beta2) 22 June 2020, 05:47:03 UTC
3e5174f more precise inference of `splatnew` (#35976) This allows constant-folding NamedTuple constructors, in turn allowing constant prop through keyword arguments. (cherry picked from commit 7124472a3db233506fa580401e08bb2acad2ad5b) 18 June 2020, 19:02:06 UTC
d3bc87f Switch `httpbin` tests over to JuliaLang-hosted `httpbin` mock server (#36336) (cherry picked from commit 96fc2aa03b8f09619e737c17962990d97ec9cb62) 18 June 2020, 15:47:13 UTC
e2cfc6f deleteat! : check bounds for the first passed index (#36231) * deleteat! : check bounds for the first passed index All other indices are bound-checked. Currently, the behavior looks like: ```julia julia> deleteat!([1:1000;], [-100]) signal (11): Segmentation fault [...] julia> deleteat!(BigInt[0], [0]) free(): invalid next size (normal) signal (6): Aborted [...] julia> deleteat!(BigInt[0], [-100]) ERROR: UndefRefError: access to undefined reference [...] julia> deleteat!([0], [0]) Int64[] julia> deleteat!([0], [2]) 1-element Array{Int64,1}: 0 julia> deleteat!([0], [3]) ERROR: InexactError: check_top_bit(UInt64, -1) [...] ``` With this commit, all these expressions throw a `BoundsError`. * Update base/array.jl Co-authored-by: Simeon Schaub <simeondavidschaub99@gmail.com> Co-authored-by: Simeon Schaub <simeondavidschaub99@gmail.com> (cherry picked from commit 6cdfcf9b48c0c4d4cd4022539ec7e5083df9e8e3) 16 June 2020, 17:49:04 UTC
1cf4720 Remove `init` from `count!` docstring (#36305) (cherry picked from commit 33659c73c9c7d8d0636697a22377bbf8fd8368cf) 16 June 2020, 17:49:03 UTC
ee41310 Promote on Rational binary operations (#36279) (cherry picked from commit 6c760d2f478ed7713ad6e6fb1c24f458da802137) 16 June 2020, 17:49:02 UTC
8dec8f1 Fix Broadcasting of Bidiagonal (#35281) (cherry picked from commit 0e062e9a239bf1bb10135030afdc388ef25baf8d) 16 June 2020, 10:27:03 UTC
6c65ec8 fix #36272: Error with optional argument in anonymous function defined in macro (#36273) (cherry picked from commit 8d91b1123f4be3c03e587710fa8b0777762c5e07) 16 June 2020, 10:21:49 UTC
ea15599 Allow non-Function callables to be used in count(f, itr) (#36187) (cherry picked from commit a51015cd4e9f313fe1b72d75d306a6bcfdd7b0f4) 09 June 2020, 15:28:20 UTC
3854131 bump Statistics version 05 June 2020, 13:32:09 UTC
e4b83af bump Pkg version 05 June 2020, 13:31:21 UTC
bf34e0a Mark Tuples with Bottom among their parameters as cacheable (#36152) Fixes #36100. (cherry picked from commit 287215fc1816594d66624c0d79214eb986dd8cff) 05 June 2020, 06:44:34 UTC
cf26388 Rename AddrSpacePtr to LLVMPtr. (cherry picked from commit a6354d9898ea213dfec0085408eac7538c0708f3) 04 June 2020, 20:59:16 UTC
62ea26d Error when compiling invalid AddrSpacePtrs. (cherry picked from commit 968ccfc2409eeb7cdf1debf6e8061bfd2bb470f4) 04 June 2020, 20:57:54 UTC
2f8eb20 inference: ignore badly behaving generated functions (#36115) fix #36088 (cherry picked from commit 5d6a910260c6114565c1102cbc4a4ca34362189c) 04 June 2020, 20:56:16 UTC
60bab00 fix ImmutableDict(pairs...) constructor (#36143) It could only handle a couple of pairs, e.g. ImmutableDict(1=>1, 2=>2, 3=>3) would throw. The fix is implemented by adding the `ImmutableDict(t::ImmutableDict, pairs...)` constructor, which generalizes `ImmutableDict(t::ImmutableDict, pair)` (with some similarity to how `push!` accepts multiple items to be pushed). (cherry picked from commit 162cde194c2c303a69d3689f5992ff7df6358363) 04 June 2020, 20:51:10 UTC
5c236b4 Fix equality for one-element ranges (cherry picked from commit 73858763671d84d87c8007b6228ef67c0ff61d15) 04 June 2020, 20:51:09 UTC
fdd4547 Fix zero(::Type{<:TwicePrecision}) for dimensionful quantities (#36113) (cherry picked from commit 38238c8de3858c000aff3d3b5bf404afbeccad6c) 04 June 2020, 20:51:09 UTC
360f5cc fix #36104, assign global name during type definitions (#36121) also fixes #21816 (cherry picked from commit 095e92d4e9ad2b90d525fec99f5474cd8d017b80) 04 June 2020, 20:51:08 UTC
633046e Fix mkpath error handling (#36126) The error thrown by `mkdir` when the directory already exists was changed in #33422. (cherry picked from commit 912a8ed365f707e6104ce52c35a3dffa496a0868) 04 June 2020, 20:51:08 UTC
539eab5 fix #36108, printing invalid numeric juxtapositions (#36122) (cherry picked from commit 890f34cfdb9103cd5b64a3f009e9a0a2370c0e38) 04 June 2020, 20:51:07 UTC
88b689b fix #36116, diff(::AbstractRange) returns an Array (#36117) * fix #36116, diff(::AbstractRange) returns an Array (cherry picked from commit b49a0d5910635ff1297f9df5adf299804a908a4e) 04 June 2020, 20:51:07 UTC
3ccc916 rename pop!(vector, idx, [default]) to popat! (#36070) * rename pop!(vector, idx, [default]) to popat! * popat! : explain what `default` is (cherry picked from commit 016410192516c56392be3653b44f7c82960ef769) 04 June 2020, 20:51:05 UTC
99adb51 Revert "Use norm instead of abs in generic lu factorization (#34575)" (#36096) This reverts commit ecc0c434fae2438c05093b0fb1443b21c5463825. (cherry picked from commit be2c6430bd5ce1b80f8324fd23f3b4c6644ea7b3) 04 June 2020, 20:51:03 UTC
c7476af clarify `show` doc strings (#36076) fixes #36072 (cherry picked from commit 147d5b101cea8c845b81c80943a8089bd59f5e1a) 04 June 2020, 20:51:03 UTC
d01886d Fix a bug with break/continue/return in at-testset begin end (#36046) (cherry picked from commit 932a1ecbe92ebccf026d3bd4b5bc904390e28f9a) 04 June 2020, 20:51:02 UTC
5e85387 update NEWS entry for popat! 04 June 2020, 12:54:56 UTC
53f0393 LibGit2: add resolve_url to RemoteCallbacksStruct for LibGit2 0.99.0 (#35232) * LibGit2: amend GitError enum Since upstream commit https://github.com/libgit2/libgit2/commit/e9cef7c4b16b2cb572ac19fcd39217f7934cfa99 ("http: introduce GIT_ERROR_HTTP") an invalid content type yields a GIT_ERROR_HTTP instead of a GIT_ERROR_NET error. Update the enum to include this new error so that the unit test for LibGit2 doesn't fail with "invalid value for Enum Class: 34". * LibGit2: add resolve_url to RemoteCallbacksStruct for LibGit2 0.99.0 Upstream commit https://github.com/libgit2/libgit2/commit/59647e1ad095f80112918971b7bbe05adfaf8c3c ("remote: add callback to resolve URLs before connecting") introduced a new callback "resolve_url" in LibGit2 0.99.0. Even though it is not currently used in Julia, it needs to be accounted for to get the correct size for FetchOptionsStruct. An incorrectly aligned FetchOptionsStruct leads to error messages like "invalid version 0 on git_proxy_options" when trying to use the latest LibGit2 version. * LibGit2: update error message checking for LibGit2 0.99.0 Upstream commit https://github.com/libgit2/libgit2/commit/b9c5b15a7958ab4ecb83504a6d858efd18610297 ("http: use the new httpclient") changed the error message to include additional quotes. Relax the unit test to allow these if present. Co-authored-by: Milan Bouchet-Valat <nalimilan@club.fr> (cherry picked from commit 59a315cac72f048847b85e285ae19ef2dc9514c3) 01 June 2020, 10:06:27 UTC
91216bf Update armv7l `-d16` -> `+d32` feature change for LLVM 9+ (cherry picked from commit 7e60e1bf13cc94c21a7088eb528ba46463c5d033) 01 June 2020, 10:03:58 UTC
a7c4fd3 fix #36031: Printf bug for BigInt (#36033) * fix #36031 * Apply suggestions from code review Co-authored-by: Simon Byrne <simonbyrne@gmail.com> (cherry picked from commit 150311f89d9e4bdb683d4bba397c822fabab272a) 01 June 2020, 10:03:58 UTC
6443f6c Set version to 1.5.0-beta1 (#36044) 28 May 2020, 17:42:33 UTC
9f6bed6 Merge pull request #35846 from JuliaLang/backports-release-1.5 WIP: Backports for Julia 1.5-RC1 27 May 2020, 15:34:55 UTC
194ddda bump Statistics version (#35902) 26 May 2020, 05:54:52 UTC
1ca1162 Expose some additional LLVM APIs. (cherry picked from commit 664e9ba4d79b8a9404efccccf594e34e1e1f728c) 25 May 2020, 20:05:43 UTC
5a886e9 Implement reduce_empty(op, Union{}) (#35843) (cherry picked from commit f705e6026cb3913de7dbb3f7992bd96031428d84) 25 May 2020, 20:05:43 UTC
7979f93 Bump Zlib BB release to `v1.2.11+10` which enables `-O3` optimisation (#35979) * Bump Zlib BB release to `v1.2.11+10` which enables `-O3` optimisation * Configure Zlib with CMake (cherry picked from commit 11c942f2b2050ff8a6b4827d7c1a00e5539294eb) 25 May 2020, 20:05:42 UTC
f170780 fix #35937, serializing TaskFailedException in Distributed (#35943) (cherry picked from commit dd1e54d54dc4b6c342602c9169de268c5e37ac2a) 25 May 2020, 20:05:41 UTC
8cab0d2 fix some 1.5 compatibility issues (#35965) - restore some `copyto!` methods that Knet assumed existed - allow `findfirst` to work on InfiniteArrays again - allow constructing a LineNumberNode from a String (cherry picked from commit 853fe04e303621a7d11db980905ab26979b8b1fc) 25 May 2020, 20:05:40 UTC
af5d5a6 Fix codegen for sizeof for arrays with non-power-of-2 types (#35900) (cherry picked from commit a383d61028e3c0a490f18caddc6fccd292954fc8) 19 May 2020, 07:24:55 UTC
9a8fedd More robust installation of BugReporting package. (#35802) (cherry picked from commit 43d8a285d3f0a0a432692cbdb78f1be2ea871f81) 19 May 2020, 07:24:54 UTC
326d26a Left fold ImmutableDict(args::Pair...) (#35871) Currently, the behavior of `Dict(pairs...)` and `Base.ImmutableDict(pairs...)` are different: julia> Dict(:a => 1, :a => 2)[:a] 2 julia> Base.ImmutableDict(:a => 1, :a => 2)[:a] 1 This PR fixes the latter to return 2. (cherry picked from commit fe593469a057bce9f3a905141dbfca360edbdac5) 19 May 2020, 07:24:53 UTC
31fce92 bump Pkg version (#35874) (cherry picked from commit 8ef29e6656bc10b144ff93be415e290e251d7825) 19 May 2020, 07:24:53 UTC
28c6f5b Bump Statistics stdlib module (#35869) (cherry picked from commit 67a851cfd0e4ff7c71d03fa8894cec93b3d130c1) 19 May 2020, 07:24:52 UTC
3459d22 Correct evalpoly docstring (#35821) (cherry picked from commit 686052b28c71c50d7a6aa3f3aa34c1ccde4c8ba3) 19 May 2020, 07:24:52 UTC
a340bf1 Note that views no longer allocate in NEWS (#35851) * Note that views no longer allocate in NEWS Co-authored-by: Viral B. Shah <ViralBShah@users.noreply.github.com> 15 May 2020, 22:28:30 UTC
8babf99 fix #35793, assertion failure with union of singletons (#35812) (cherry picked from commit 8f512f3f6d5d69403be4b8179bd80ba64229e761) 12 May 2020, 06:02:53 UTC
c94e232 Add a note to sharedarrays documentation. (#35807) * Update distributed-computing.md * Update doc/src/manual/distributed-computing.md Co-authored-by: Matt Bauman <mbauman@juliacomputing.com> Co-authored-by: Matt Bauman <mbauman@juliacomputing.com> (cherry picked from commit 6a9ced31518d335b9185316f37b1ebd4a6eb9f8e) 12 May 2020, 06:02:52 UTC
4ca74fe Have matrix square root account for Rii=Rjj=0 to prevent NaN values (#35758) (cherry picked from commit 880c73199b5d304912b18b3e4f82f95b37c19e6f) 12 May 2020, 06:02:50 UTC
d6bdf50 Fix bad c-tor for WeakKeyDict. Fix #35782 (#35783) (cherry picked from commit ba91a9800174d7c7e6105a695476e673454e397e) 12 May 2020, 06:02:49 UTC
0c388fc RFC: treat small negative λ as 0 for sqrt(::Hermitian) (#35057) * treat small negative λ as 0 for sqrt(::Hermitian) and log(::Hermitian) * typo * added tests, docs; removed rtol argument for log * don't ask for rtol so close to eps(Float64) 07 May 2020, 20:12:11 UTC
back to top