swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40

sort by:
Revision Author Date Message Commit Date
f9720dc release-1.6: set VERSION to 1.6.0 (#40162) 24 March 2021, 12:55:21 UTC
6cd974f Merge pull request #40150 from JuliaLang/backports-release-1.6 Backports for release 1.6.0 23 March 2021, 22:08:40 UTC
45b1b15 Markdown: prevent display() error with empty list item (#40122) (cherry picked from commit cc639ec7eadf3c8db1c6ae01ad0edbfdece1bc32) 23 March 2021, 17:05:29 UTC
60e70d8 Fix a couple of likely typos in deps/p7zip.mk and deps/pcre.mk. (#40003) (cherry picked from commit ec78ac75bbb23b3d6242110afc5745c17c0cac54) 23 March 2021, 16:11:30 UTC
2e9532b Prevent PCRE from needing a rebuild/reconf. This commit reorders a couple touches in deps/pcre.mkl. Those touches are intended to prevent patch application from triggering rebuild/reconf. The present ordering doesn't quite succeed in that objective; patch application triggers rebuild. On systems with compatible autotools, the rebuild succeeds and the build is nonetheless happy. On systems with incompatible versions of autotools, however, the build fails for need of a reconf. The reordering in this commit prevents the rebuild. Co-Authored-By: Rob Vermaas <rob.vermaas@gmail.com> (cherry picked from commit 068420b86564d0729ef8762302f9eec4a264f853) 23 March 2021, 16:11:30 UTC
8448050 Revert "add 'ᵀ postfix operator for transpose (#38062)" (#40075) This reverts commit 665279aedb18501938c934d46aa593a26a506b3e. (cherry picked from commit 7838e0973ba3183735cca6485a65ae9e708f0c1d) 23 March 2021, 16:11:30 UTC
981d573 document thread safety for RNGs (#40109) (cherry picked from commit 7d117dceb0f791e9ab9a7d5864e32809c3ce16c0) 23 March 2021, 16:11:30 UTC
9c452e7 add explanation about top-level compilation to timing macros [skip ci] (#39802) (cherry picked from commit dca0850ea7ca0c8734cd904d78e9f0832afaca58) 23 March 2021, 16:11:30 UTC
23267f0 release-1.6: set VERSION to 1.6-rc3 (#40060) 16 March 2021, 17:04:56 UTC
e4a979d Merge pull request #40029 from JuliaLang/backports-release-1.6 Backports release 1.6-RC3 16 March 2021, 13:47:50 UTC
845a52b fix #39862, error in inference when trying to apply a non-type (#40047) 16 March 2021, 10:53:12 UTC
046e2cf Allow startup despite `p7zip` not being found (#40045) Without this, a failure to find a usable `p7zip` will cause an error at startup. With this, we will at least attempt to invoke `p7zip` and fail at runtime, instead of failing at init time. 15 March 2021, 22:11:06 UTC
572836a Add NEWS.md entry for change noted in #39589 15 March 2021, 13:01:49 UTC
da99aa3 optimizer: be careful to always handle temporarily invalid ops These ops are not actually legal (they're semantically invalid), but we temporarily use them to carry information between passes which needs to then remove them correctly. Fixes #39508 (cherry picked from commit bd5105e0ee8a0267d3d3999aed632f7b2cdacd09) 15 March 2021, 08:05:44 UTC
ca85bb3 fix typo in symlink (#40026) (cherry picked from commit accce7fb39d343f90bc96ddf54e3d25a57d9c8fc) 14 March 2021, 21:14:35 UTC
f20b49a Restore StackOverflow error message for repeated frames (#39930) Fixes backtrace printing to display the number of times a frame is repeated, if there is a frame that's duplicated several times. ```julia julia> function foo() foo() end foo (generic function with 1 method) julia> foo() ERROR: StackOverflowError: Stacktrace: [1] foo() (repeats 79984 times) @ Main ./REPL[16]:1 ``` Fixes #37587. Co-authored-by: Nathan Daly <nhdaly@gmail.com> (cherry picked from commit 3276c11b7e6ebf0c3867022765c8b233c0cbefe5) 14 March 2021, 21:12:49 UTC
7a4413b fix #39895, crash from deserialized closure using the shared method table (#39916) (cherry picked from commit cc660252a0f1075b4e0c48813cb8d9d3aa054c3d) 14 March 2021, 21:12:48 UTC
e93da57 Faster dot product for sparse matrices and dense vectors (#39889) (cherry picked from commit bf0364b1874a13975d025dd04f458ec1a3aa2654) 14 March 2021, 21:12:47 UTC
8cef2f9 Canonicalize IR to disallow mutable GlobalRef in value position (#39893) Generally we assume parameters can be duplicated without seeing side-effects. That is not entirely true of mutable globals and multi-threading. Refs: #36450 Fixes: #39508 (cherry picked from commit c0f9666d0b94b213c7ff9e64a7b4e5268aa0e18b) 14 March 2021, 21:12:46 UTC
27fe288 llvm-alloc-opt: handle dead code better (#39801) In some cases (particularly after removing a phi node), we might end up in a circumstance where it appears statically that we would use a slot for both a ref and bits. Avoid generating malformed IR in this case. In the future, this situation could also possibly happen if we walked through phi nodes and attempted to merge the contents (with great care). (cherry picked from commit 9e783bb63a95cf8a8f1ba2b07dfe97afbde5188d) 14 March 2021, 21:12:45 UTC
4b6b9fe release-1.6: set VERSION to 1.6-rc2 (#39977) 11 March 2021, 07:05:26 UTC
26372fa Try to close race condition in FileWatching tests (#38407) (#39978) * Try to close race condition in FreeBSD tests We're seeing frequent test failures in the FileWatching test on FreeBSD. Here's my theory of what happens: - Both the timer callback and the poll callback execute on the same libuv loop - They each schedule their respective tasks - Whichever task gets scheduled first first determines the result However, in the test, we expect that, if the poll callback ran, (which we know because we know there was an event pending), then that result does actually get delivered to the toplevel task. This PR tries to close this hole by adding the following condition: If the task is no longer waiting on the file watcher (because libuv already scheduled it), then wait for the task to run to completion, independent of any timeout. I believe this should close the above race condition and hopefully fix the test. * Add another super-short timeout to try to trigger the same-tick issue (cherry picked from commit 9a8a675819892a6ec6ff58a6e3b6417673619719) Co-authored-by: Keno Fischer <keno@juliacomputing.com> 10 March 2021, 21:15:32 UTC
fe2311a Merge pull request #39614 from JuliaLang/backports-release-1.6 Backports for 1.6-RC2 10 March 2021, 14:37:05 UTC
f731fbb Try to fix unwind on i686 Turns out libunwind was basically ignoring value locations on the platform, so that needed to be enabled. Should hopefully fix linux32 CI. (cherry picked from commit da9e12e31d1f74d76612fa0cc845c2c126166801) 10 March 2021, 12:37:21 UTC
1e20630 fix #39948, stack overflow due to free typevar during `jl_type_intersection2` (cherry picked from commit bbf14f842868fff7d395e8f81d02124de11180d1) 09 March 2021, 07:19:47 UTC
d06bab0 fix #39698 by disabling the unnecessary Vararg var bounds error backports #39875 to 1.6 03 March 2021, 17:39:05 UTC
859577b update Pkg to latest release-1.6 02 March 2021, 07:58:28 UTC
fef4add [BugReporting] pass `ARGS` through properly (#39839) When calling `make_interactive_report()`, we really need to pass in `ARGS` as well, otherwise it always starts an interactive session. This commit, in combination with `--` allows the user to run an `rr` session while still passing arguments to the child `julia` process via: ``` julia --bug-report=rr -- --project test/runtests.jl ``` (cherry picked from commit 5e7aaa6c1933f5081acf12a33fd16f92d92e2c05) 02 March 2021, 07:20:23 UTC
bf093a1 cmdlineargs test: on 32-bit systems, impose a constant upper limit on the number of threads (#39854) (cherry picked from commit c79309bffa2842f7864d06fc2b135e79da1daec1) 02 March 2021, 07:20:23 UTC
cc14111 fix #39804, ABI handling of structs with String references (#39821) (cherry picked from commit 9ca31f72ff0ab0ba268e18010582dc2019614e89) 02 March 2021, 07:20:22 UTC
4161f4a Update Downloads.jl to fix download hanging, fixes #39789. (#39833) $ git log --pretty=oneline --abbrev=commit 2b4bed9..6bb8306 6bb83068bd796c4890baaeb39628ff79a4979374 Stop the grace timer iff adding first handle (fix #99) (#102) af6864d8872247faf2a402d6b2baca5cb74ab96e fix ssh_key_pass bug (fix #91) (#100) (cherry picked from commit fb500b03c5a929189e2e38034f9bffb2a4e566df) 02 March 2021, 07:20:22 UTC
97383c6 LinearAlgebra._generic_matmul! : Avoid division by zero for tile_size. (#39790) (cherry picked from commit eca3e86f412f474037cbb758490d574a7233d266) 02 March 2021, 07:20:21 UTC
ddf9440 equiv_typedef: don't reject equivalence just for gensyms (#39778) This fixes the following: ``` julia> struct Symmetric{T,S<:AbstractMatrix{<:T}} <: AbstractMatrix{T} data::S uplo::Char end julia> struct Symmetric{T,S<:AbstractMatrix{<:T}} <: AbstractMatrix{T} data::S uplo::Char end ERROR: invalid redefinition of constant Symmetric ``` `Core._equiv_typedef` returns false which ends up triggering the error. (cherry picked from commit 6968e47fa6fff0d12de310103961d70299b7c237) 02 March 2021, 07:20:21 UTC
cc4f236 make copy correctly handle 0-dimensional SubArray (#39809) * make copy correctly handle 0-dimensional SubArray The current definition of `copy` for `SubArray` [here](https://github.com/JuliaLang/julia/blob/master/base/subarray.jl#L70) has the following consequence: ``` julia> x = [1] 1-element Array{Int64,1}: 1 julia> y = @view x[1] 0-dimensional view(::Array{Int64,1}, 1) with eltype Int64: 1 julia> copy(y) 1 ``` which is inconsistent with the contract for `copy` that promises to produce an array when array is copied, e.g.: ``` julia> x = fill(1) 0-dimensional Array{Int64,0}: 1 julia> copy(x) 0-dimensional Array{Int64,0}: 1 ``` (cherry picked from commit a12d0ff63a187ca165f9eb50c00c0b127734ca6b) 02 March 2021, 07:20:21 UTC
f6a471c [libgit2] Fix zlib stream abandonment causing clone error on 32-bit systems (#39772) This backports libgit2 patch to fix zlib stream handling. (cherry picked from commit 503c63b2555a7b85cfc056de5ce614e326ec590d) 02 March 2021, 07:20:20 UTC
df057a1 when showing union aliases, keep TypeVars last (cherry picked from commit edd3c8790abb684cd1dd90a474cfa074059821fa) 22 February 2021, 06:59:37 UTC
dcc2a2d ensure to show the whole type, even if the proper subset matched an alias This code should only have been active for make_typealiases, but #38099 already fixed that better, so we can just remove this now. Fixes #39723 (cherry picked from commit b72966751e13f6e4c7571b33d3675d225d29d940) 22 February 2021, 06:59:30 UTC
8456a42 fix type uniquing (caching) in incremental deserializer (#39744) Fixes #39688 (cherry picked from commit 6d4e6979533d0de8c5b21683f9e9fc0bbf017990) 22 February 2021, 06:58:45 UTC
df40b35 Change Windows CRT func to be considered as libjulia func (#39636) This prefers crtdll over ntdll. This supports the specialization of `memcpy` ccall on Windows. (cherry picked from commit 5945f4d659cc02f887602eaa281b1f2dd0cee263) 22 February 2021, 06:58:44 UTC
171f7e6 codegen: guard phi node loads of invalid inputs (#39747) At runtime, it is prohibited to observe these values, but we need to make sure they are not reading through undefined pointers (and potentially trying to GC-root the memory there) Refs ChainRules in #39641 (cherry picked from commit fdd26337fde20b3470f8f3eeb9026b1b05394b36) 22 February 2021, 06:58:44 UTC
65dbb77 codegen: define return_roots in normalized form (#39745) LLVM will switch to this form, so it is preferable to start that way. Refs Matcha in #39641 (cherry picked from commit f879cd159da8cb6110028702b787e6e7f816ca12) 22 February 2021, 06:58:44 UTC
24ed37f Protect handle_message from Integer subtype invalidation (#39689) Resolves https://github.com/SciML/ArrayInterface.jl/issues/121. There is a cost, but hopefully there's no strong need to supply `maxlog` using whacky subtypes of Integer. (cherry picked from commit 67b9d4db2f699afacf9265d7906f97d9e8b26689) 22 February 2021, 06:58:43 UTC
73f1cd3 Fix typo in BitVector constructor (#39737) (cherry picked from commit f07b12b6dfd4037fea0fc8935a04c4bbb5e0c3b4) 22 February 2021, 06:58:43 UTC
ae95fcc avoid corrupting String on conversion of StringVector to String (#39726) fix #39717 (cherry picked from commit 0926ed8834827d0bb32c9b5ae013ab74c3e238b9) 22 February 2021, 06:58:43 UTC
fe155d8 UnitRange{Int} -> unitrange (#39668) (cherry picked from commit a28f7239d398fb52883275c2b9d6ed2a02f1e84a) 22 February 2021, 06:58:42 UTC
194e774 Add Half precision ppc patch and codesign LLVM binaries (#39712) (cherry picked from commit 7853ddda3481dac54fe9f1b77d47721476afa295) 17 February 2021, 22:11:08 UTC
de9832c Fix for infinite loop when passing 0d array to setindex of n-dim arrays (#39608) * Fix for infinite loop with 0d array * Consistency * More consistency * Test (cherry picked from commit 296acf20101a502bb4c242192b06666a4b78193a) 17 February 2021, 07:32:14 UTC
684587d avoid excessive renaming in subtype of intersection result (#39623) fixes #39505, fixes #39394 do fewer subtype checks in `jl_type_intersection2` (cherry picked from commit 093b2a6ea943f4c70fef4742453e73dd1aba255c) 17 February 2021, 07:28:23 UTC
7fb0434 Add compat notes for Julia 1.6 (#39671) (cherry picked from commit 715e6264e33a408a576966dc9ca2a75ddc4cc160) 17 February 2021, 07:28:23 UTC
502bb38 Use lower limit on number of threads in cmdlineargs test (#39667) 200 is still too high for some 32-bit systems. (cherry picked from commit 37aea067b702d6e8bc374209ac4a8423bc00b888) 17 February 2021, 07:28:22 UTC
999e12d Lock cfunction trampoline cache and freelist accesses. (#39621) Co-authored-by: Valentin Churavy <v.churavy@gmail.com> (cherry picked from commit 6468dcb04ea2947f43a11f556da9a5588de512a0) 17 February 2021, 07:28:22 UTC
295995a fix #39600: broadcast fusion broken for comparison (#39602) (cherry picked from commit fc47e951f945a22eb550bc91a95f52086c7a7fed) 17 February 2021, 07:28:21 UTC
d37a8d4 Update Downloads.jl: (#39615) $ git log --pretty=oneline --abbrev=commit 0d798cf..2b4bed9 2b4bed901185edcb59389515378eba2f26aaa577 Disable HTTP/2. (#96) 88a217c50bc165a10009c7b8c617e458a1e0ad0e Fix optoin typo (#92) (cherry picked from commit 2687bbbf14e90cbb2654ac6eb4deed223a04d18d) 17 February 2021, 07:28:20 UTC
7ce2441 special/exp.jl: fix broken jldoctest block (#39610) This was introduced in 0097bddf900c16a7c7591671a6a3a0e2bd8acb4d. (cherry picked from commit 99f98dd36b0acd1c53b200e2ab3cdbd5de6b9b2a) 17 February 2021, 07:28:20 UTC
8e316dc Fix misunwind during Profile test under rr (#39553) Libunwind improperly aliases RSP and CFA, which are separate concepts. Fix that. (cherry picked from commit bbf7f9733ab25d91d2d966d05454393c17e863e0) 17 February 2021, 07:28:19 UTC
4266e6d Fix a compiler warning (cherry picked from commit 89ec8515aa87f596451ea891b92cc6460d100ead) 17 February 2021, 07:28:19 UTC
5fcecb4 expand use of egal for testing type equality (#39604) fixes #39565 (cherry picked from commit e7921dae99f64e4dc75f651ffb2721ff6ade4804) 17 February 2021, 07:27:13 UTC
5f6094a fix bug in `let` when a global var is both shadowed and used in an RHS (#39570) (cherry picked from commit bc4e207dcd0dbc957b4a398488ec7495c47b42e8) 16 February 2021, 22:59:50 UTC
56a3fb7 fix some compiler warnings (#39142) - unused jl_iterate_func - cast type of realloc in jl_init_threading (cherry picked from commit 83bee67631bc3d532b6b0bc47b02753ad5865673) 16 February 2021, 22:05:11 UTC
20b967a remove Core._apply Builtin (#39115) We can emulate this deprecated function, until we delete it in v2. This in turn revealed some missing error checks, which we also add. Fixes #39113 (cherry picked from commit 59eb9f98ce9860cf25ec2a58ddab451d6b15c2c7) 16 February 2021, 22:04:36 UTC
2e322be optimize invokelatest call performance (#38835) Applications typically shouldn't use this function in performance sensitive places, as it hints that their design is flawed, but might as well make it faster anyways. and optimize invokelatest kwcall too, while we are at it (cherry picked from commit 2ff110ba199fbdc574ba4462035801b9eb9c08af) 16 February 2021, 22:03:06 UTC
c74bc14 inference: fix widenconst call for ReturnNode of PartialStruct Previously, we might accidentally leave behind content in the fields that should not be there. For example: ``` julia> code_typed(() -> (TypeVar(:x),), (), optimize=false) 1-element Vector{Any}: CodeInfo( @ REPL[1]:1 within `#3' 1 ─ %1 = Main.TypeVar(:x)::Core.Compiler.PartialTypeVar(x, true, true) │ %2 = Core.tuple(%1)::Core.PartialStruct(Tuple{TypeVar}, Any[Core.Compiler.PartialTypeVar(x, true, true)]) └── return %2 ) => Tuple{TypeVar} julia> ans[1][1].rettype Core.PartialStruct(Tuple{TypeVar}, Any[Core.Compiler.PartialTypeVar(x, true, true)]) ``` (cherry picked from commit 7c8114c85914ec748f1be91759567cabc190245f) 16 February 2021, 17:33:53 UTC
8a03167 inference: add missing reset for stmt_info This only would matter if we transition a call from T -> Union{}, which is unlikely to happen, and even less likely to be observed, but it is more correct this way. (cherry picked from commit e67a3fda55ecbf0a758fb9aa11e3e3ed9e3933dd) 16 February 2021, 17:33:13 UTC
4ad0ffd another fix for 'error during bootstrap' printing (cherry picked from commit 9e58d46a8b5454bd78285452f4060d214fdd4454) 16 February 2021, 17:32:50 UTC
27f3ae7 fix 'error during bootstrap' printing (#39515) (cherry picked from commit a07089e040ec1b918470859aa64f4e66ffb47be8) 16 February 2021, 17:32:50 UTC
0f7dbf7 improve ~many~ some type stabilities in `Core.Compiler.typeinf` (#39549) All of them are detected by JET.jl's self-profiling. The following code will print type-instabilities/type-errors for all code paths reachable from `typeinf(::NativeInterpreter, ::InferenceState)`. ```julia julia> using JET julia> report_call(Core.Compiler.typeinf, (Core.Compiler.NativeInterpreter, Core.Compiler.InferenceState); annotate_types = true) ``` The remaining error reports (e.g. `variable Core.Compiler.string is not defined`) are because of missing functionality on error paths. (cherry picked from part of commit 1bc7f43c946269886983f165a5598e0c16adc63b) 16 February 2021, 17:10:27 UTC
4558f47 Update Pkg for 1.6.0-rc2. Add p7zip_jll to precompile tests since Pkg depends on it now. 11 February 2021, 21:59:54 UTC
dcd618b [p7zip_jll] Set `LIBPATH` and `LIBPATH_list` at init-time (#39591) (cherry picked from commit 4a3537bab6cb81242e4bf049a9397343f786b3bd) 11 February 2021, 11:57:23 UTC
2920936 [loading] Search in Sys.STDLIB if name/uuid is known. (#39572) Locating a package with known uuid means the uuid was either found in a manifest in LOAD_PATH or a "package folder" in LOAD_PATH. However, looking up the package entrypoint fails for stdlibs that are not in the sysimage, even if they have been explicitly added to project/manifest by the user. This patch allows looking in Sys.STDLIB after stdlibs, fixes #39504. (cherry picked from commit 5d7e13f0dec118f86df2cf3d8999549cd47c32c2) 11 February 2021, 11:57:22 UTC
d330214 [file] Fix relative symlinks to directories on Windows (#39491) (cherry picked from commit 78c448f4d6be2599fa833c309ece2df9acd03033) 11 February 2021, 11:57:21 UTC
42b064c Do not print delimiters twice in show(::OffsetMatrix) for matrices with certain shifted axes (#39522) (cherry picked from commit 21557721f2868ef50922f143763d9ee0ae064610) 11 February 2021, 11:57:21 UTC
6ebd612 [build] Fix out-of-tree `stringreplace` invocations (#39567) Because we now store these strings in `libjulia-internal`, we need to call `stringreplace` on that library instead of `libjulia`. (cherry picked from commit 4c5d62b9d0e48feb939d3cd8991883dbd3dcdeac) 11 February 2021, 11:57:20 UTC
62400b5 use sparse multiplication for sparse arrays time BitMatrix and BitVector and wrappers (#39557) (cherry picked from commit e3753e1d7b5fcdea656ec07c08f1a45f20aa0358) 11 February 2021, 11:57:19 UTC
28e8adc Improve first/last docstrings (#39560) * improve first/last docstrings improve `first`/`last` docstrings to indicate that two new methods have been added since v1.6 (#34868) * Update abstractarray.jl remove the trailing whitespaces (cherry picked from commit bc2b854d688480bf28b41b1cd758410415e8ccd3) 11 February 2021, 11:57:18 UTC
cb19181 [cli/trampolines] Clean up definitions, fix win32 exporting issue (#39543) (cherry picked from commit 9cf5b23f799ff1a67554952f8a90757296b52210) 11 February 2021, 11:57:17 UTC
8ea14b0 Add missing imports to SuiteSparse tests (#39539) (cherry picked from commit 55baf8a5218cd59f97b011fcdd729e7929ad91cb) 11 February 2021, 11:57:16 UTC
d48bc9a fixed a bug in the build system (#38997) (cherry picked from commit 9fa97f9a031e81fb073f7defdfbdc96428b1c955) 11 February 2021, 11:57:14 UTC
a58bdd9 release-1.6: set VERSION to 1.6-rc1 (#39487) 06 February 2021, 15:49:09 UTC
1d840d7 Merge pull request #39548 from JuliaLang/backports-release-1.6 Another backport for 1.6-RC1 06 February 2021, 15:27:32 UTC
1dacf66 fix #39521, obvious_subtype issue with `Type{}` and diagonal (#39525) (cherry picked from commit 6159633f6f8125eaffa5bd7e9d7964323409c01f) 06 February 2021, 09:04:18 UTC
d8f8b84 Merge pull request #39530 from JuliaLang/backports-release-1.6 Backports for 1.6rc1 05 February 2021, 12:18:44 UTC
61a2d0e Fix formatting of compat notes (#39519) (cherry picked from commit 62f1be5bc1f5edf42b8ba97497c856fd6989db88) 05 February 2021, 08:52:13 UTC
be049fa Handle union of immutables in codegen of `GC.@preserve` (#39520) (cherry picked from commit fb0287f706128dbf7c8d5c2a8b124dbe5af58dbf) 05 February 2021, 07:28:38 UTC
74cf90d test: silence `@time` macro test Also move to a more appropriate file and fix `s/@time/@test` typo. (cherry picked from commit ccbdb9120a9371aab0e3d3b00896922a1b591879) 05 February 2021, 07:28:20 UTC
641db33 REPL,test: add dummy reader for output Refs #38996 (cherry picked from commit 3dcb49bdb47629d5a74cc69d8b2cb8888e06682a) 05 February 2021, 07:28:13 UTC
3b2762b [JLLs] Use `dirname(product_path)` to properly deal with Windows (#39511) These paths weren't getting set quite right on Windows, since it stores its libraries in `bin` (cherry picked from commit 20224a66866aaec17aa8c8c8a344fb83c4df71d0) 05 February 2021, 07:27:52 UTC
ab781d3 Fill out `LIBPATH_list` and `PATH_list` in fake JLLs (#39507) Yet another minor tweak to the JLLWrappers-conformance of these packages to make them look a little bit more like "normal" JLLs. (cherry picked from commit 658ee46cb7130a86693a55777b37dac14a940ad1) 05 February 2021, 07:27:42 UTC
440b609 Add compat note (#39503) (cherry picked from commit 0b7ce284589ce879fe90f0e87b9bf48e6a527902) 05 February 2021, 07:27:33 UTC
c7d50ba Bump openlibm to v0.7.4. (cherry picked from commit 8964b93bcf5ebffff0894f36d78187df4896ff59) 05 February 2021, 07:27:25 UTC
8ceeb68 Merge pull request #39495 from JuliaLang/backports-release-1.6 Two more backports for 1.6-RC1 03 February 2021, 12:54:25 UTC
81329da REPL,test: read output before adding more input Might help aarch64bot test deadlock on CI Refs #38996 (cherry picked from commit 9eccd33384b358d87be281ad7202b569467b5c9a) 03 February 2021, 08:41:50 UTC
edb5a5d REPL,test: add stdout monitor task Might help aarch64bot test deadlock on CI Refs #38996 (cherry picked from commit 2497ad1022dcbd16b00f22c4b7fe192480b147da) 03 February 2021, 08:41:49 UTC
62fe04c add checksum for LibGit2 v1.2.2 03 February 2021, 08:41:47 UTC
e02764c Merge pull request #39488 from JuliaLang/backports-release-1.6 One more backport for 1.6-RC1 02 February 2021, 14:43:22 UTC
28a6984 Fix linear indexing for 0D views of OffsetVectors (#39404) * Fix linear indexing for views of OffsetVectors * update comments Co-authored-by: Matt Bauman <mbauman@gmail.com> (cherry picked from commit f2a2637f351cc908f248a0cb7b12be1bde9ed86a) 02 February 2021, 11:18:43 UTC
7bc881c Merge pull request #39485 from JuliaLang/backports-release-1.6 Backports release 1.6-RC1 02 February 2021, 11:14:16 UTC
5a8509d fix #39426, at-which not working with `..` function (#39446) (cherry picked from commit 927c24f900130fb7d27a353cd22b4654c1d6336b) 02 February 2021, 07:24:05 UTC
207dcca bump LLVM to 11.0.1+1 (cherry picked from commit ef2fb44b83e2a62fdb371d1e01d23f64b200d394) 02 February 2021, 07:23:54 UTC
eaade43 Set -fno-gnu-unique for building LLVM (cherry picked from commit 50587b1666151aacf03395f39f5558bd1deba129) 02 February 2021, 07:23:48 UTC
5062627 Merge pull request #39480 from JuliaLang/backports-release-1.6 Backports for 1.6-RC1 02 February 2021, 07:22:19 UTC
back to top