swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40

sort by:
Revision Author Date Message Commit Date
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
7df31ad [automated] Bump the Downloads stdlib from 64368fb to 0d798cf (#39459) Co-authored-by: Dilum Aluthge <dilum@aluthge.com> (cherry picked from commit b0b61d4753c6936645fa7108b9f7154081ed9bf5) 01 February 2021, 16:36:53 UTC
1c22486 render Regex and SubstitionString correctly for repr (#39422) Fixes #29580 (cherry picked from commit 26fd3c82408230995d8d493830b9137a013400bf) 01 February 2021, 16:25:47 UTC
44a392d Fix broadcast error when eltype is inconsistent with getindex (#39185) * Fix broadcast error when eltype is inconsistent with getindex In that case we can infer the return type as `Union{}`, which triggers a type assertion error. This used to work in Julia 1.5. * whitespace Co-authored-by: Simeon Schaub <simeondavidschaub99@gmail.com> * Update test/broadcast.jl Co-authored-by: Matt Bauman <mbauman@juliacomputing.com> Co-authored-by: Matt Bauman <mbauman@juliacomputing.com> Co-authored-by: Simeon Schaub <simeondavidschaub99@gmail.com> (cherry picked from commit 750f42aac2ad09b9ccd79408ee4e19941f668fa4) 01 February 2021, 16:25:47 UTC
42e1176 Merge pull request #39160 from JuliaLang/backports-release-1.6 Backports 1.6-rc1 01 February 2021, 16:18:49 UTC
0e90f6c remove bad method specialization from cache (#39429) This was inserting a method with signature [Int, Int], rather than Tuple{typeof(+), Int, Int}. Fix that and add a test for it so it doesn't happen again. (cherry picked from commit b9f8b8b864717bf766ef08da57642fc42a30fb30) 29 January 2021, 07:33:28 UTC
4aaeaf7 [automated] Bump the Downloads stdlib from 9d841d9 to 4e55241 (#39445) Co-authored-by: Dilum Aluthge <dilum@aluthge.com> (cherry picked from commit f0e8ee6281372c91c0cb08bae0435f5529a800a8) 29 January 2021, 07:30:06 UTC
8b7c133 fix #39379, use first∘LinearIndices instead of 1 (#39393) (cherry picked from commit 9de107a63a56f9ca922497991a7eb9dcd027dc06) 29 January 2021, 07:24:11 UTC
0348505 implement with fewer afoldl methods (#39414) With constant-propagation, inference (and Varargs runtime) is likely better able to handle this version now (and it removes the n^2 behavior definitions for semi-low argument counts). Now we also need to force Vararg specialization up to 16 arguments manually, so we do that explicitly (and slightly hack-y). Fixes regression in #39175 (cherry picked from commit 5cd1e3e1f2e6d79bdeeb2b1bfbdbe9081074bd23) 29 January 2021, 07:24:10 UTC
afa7544 bump Pkg version 29 January 2021, 07:22:55 UTC
84ee166 fix #39405, saving modules with renamed imports (#39408) (cherry picked from commit dd1fcf3b07f02a8c1adb370d9b084e05882d9830) 27 January 2021, 16:31:18 UTC
8a2dc27 replace PPC half patch (cherry picked from commit 8631089e5dc0d82b1247c9ef6bbc5073adca713e) 27 January 2021, 16:27:47 UTC
0fa7ab9 Fix `tmeet` for vararg `PartialStruct`s (cherry picked from commit 80ace52b03d9476f3d3e6ff6da42f04a8df1cf7b) 27 January 2021, 15:07:00 UTC
5d0a7dc show: consolidate wheres with {} in printing Always a bit more compact in this form, and somewhat easier to implement too (thus keeping this consistent with the corrected typealias printing). (cherry picked from commit ee816ef4f27c7e1eb531083fcb57933d1e5af1e5) 26 January 2021, 07:25:15 UTC
52fbe7f show: fix some bugs in typealias printing (cherry picked from commit b6df6c260f01ae23b5bdbff49b2693c6d6433510) 26 January 2021, 07:25:10 UTC
aeca6f1 show: fix duplicate typealias printing bug If you had 2 aliases that both matched, we might print ```S{T} where T (alias for S{T} where T)``` which is clearly unnecessary. (cherry picked from commit 48ad01d89508f878ce27d76800c77dba6ac501e4) 26 January 2021, 07:25:04 UTC
fa66cb3 Update src/aotcompile.cpp Co-authored-by: Julian Samaroo <jpsamaroo@jpsamaroo.me> (cherry picked from commit 0fe05cbd1046b040800a10c4b440ed0e67091da2) 26 January 2021, 07:23:52 UTC
d0b97ea Don't touch gvars when compiling for an external back-end. (cherry picked from commit df2a1c5fb307c0d2d4d9493c1831a38cf8a24843) 26 January 2021, 07:23:46 UTC
bfae07c Add basic docs for (Lazy)Artifacts stdlibs (#39073) (cherry picked from commit debf26e33ee249a3c9105a09644be6cb1d140977) 26 January 2021, 07:14:10 UTC
a5d3675 gf: invalidate when adding new methods (#39343) Error introduced by #36733 Fixes #38435 (cherry picked from commit cdaf7405349c3d5389c36da47e0b9386b74db11a) 26 January 2021, 07:14:09 UTC
e8e1765 inference: SCC handling missing for return_type_tfunc (#39375) This has actually been broken for a long time, so it only got noticed when it caused a regression. Fixes #39361 (cherry picked from commit fd8f97e98c93796a2913bb5e6be4c6637659b615) 26 January 2021, 07:14:09 UTC
back to top