swh:1:snp:a72e953ecd624a7df6e6196bbdd05851996c5e40

sort by:
Revision Author Date Message Commit Date
6aaedec Set VERSION to 1.6.1 (#40507) 23 April 2021, 05:59:49 UTC
7cbb02d Merge pull request #40209 from JuliaLang/backports-release-1.6 Backports for release 1.6.1 17 April 2021, 11:59:12 UTC
23e5f6f prevent conj! into uninitialized memory (#40481) (cherry picked from commit aa7d8797223422a31573b0593ce7267b6c0ea63a) 15 April 2021, 08:00:29 UTC
5d046b5 Normalize (simplify) `UnionAll`s when used as type parameter (#36211) (cherry picked from commit fedefe913a265581d6ba4444b8bcd6dbf77e333b) 14 April 2021, 19:51:12 UTC
bd307ef [automated] Bump the Tar stdlib from ac4d442 to 86825ec (#40421) Co-authored-by: Dilum Aluthge <dilum@aluthge.com> (cherry picked from commit 2f0156a6c79566bf265397641effa17a202f7ab4) 14 April 2021, 09:23:04 UTC
01d77e2 bump Pkg to 1.6.1 14 April 2021, 09:21:01 UTC
43c621f fix #32843, codegen attempting `typeof(NULL)` for some union tags also fixes part of #40065 (cherry picked from commit 00cf7b0542c4b6f6e5e4d5b6d8ce81a75693fedd) 11 April 2021, 20:02:37 UTC
f2bc4d3 searchsorted ranges: simplify code, fix bug with Unsigned needle This avoids computing `length` unnecessarily, which often requires a division, and is therefore often expensive. (cherry picked from commit 40d4f4a0d71b3129282e58b9a2f9b7f930ad13d3) 11 April 2021, 20:01:45 UTC
7ee87dd argmin ranges bug: you cannot pass an unsorted array to searchsorted (cherry picked from commit 454fc51714c9ba2a5122268fb9405e6f6f4bfc11) 11 April 2021, 20:01:38 UTC
f2392e7 fix a typo in TOML error message (#40428) * fix a typo in TOML error message (cherry picked from commit e260f2bccada3ef162c1f322bd80581a3d95fb64) 11 April 2021, 19:59:42 UTC
639325e Fix temp install of BugReporting.jl (#40403) Fixes #40398 (cherry picked from commit f021c67fe9aba889f015b66c6d5bf6394762c60d) 11 April 2021, 19:59:41 UTC
fefe955 fix #40337, no error info from serialized TaskFailedException (#40395) (cherry picked from commit cc1e70a6e7d53e64c3769b60de196dd332a06584) 11 April 2021, 19:59:41 UTC
60d493a [build] Add `symlink_system_library` calls for CSL (#40217) * [build] Add `symlink_system_library` calls for CSL We differentiate between a `USE_BINARYBUILDER_CSL=0` configuration (where we copy the CSL libraries into the Julia build tree) versus a `USE_SYSTEM_CSL=1` configuration (where we symlink them in a manner similar to other system libararies) * Expand `JL_PRIVATE_LIBS-1` for versioned library names as well Without this, we fail to install things like `libgcc_s.so.1` when installed into the private libdir by `symlink_system_libraries`. (cherry picked from commit 336cdf80f38b89b42e2fb72e1057f6fced1493d0) 11 April 2021, 19:59:40 UTC
230703e fix #40249, reshaping SharedArray on another process (#40286) (cherry picked from commit 79e198b29f620114e86950cf9f24c48b049d9c67) 11 April 2021, 19:59:39 UTC
81e452d Backport 1.6 of PR #40328. (#40377) 06 April 2021, 22:01:45 UTC
73bdd12 Fix reduce(vcat,...) type inference (#40277) (#40294) (cherry picked from commit 03abc458ea73bfa14713a6362fc60b097e7be337) 04 April 2021, 10:17:22 UTC
162499a Fix 32-bit (cherry picked from commit 5332d7d4e40ca2189e4ab597bf937f272f471bda) 04 April 2021, 10:17:22 UTC
da9786d Fix #40318 by using UInt to convert instead of Int on Ptr (cherry picked from commit 0d9163b561a5f809b895b9cd8893d1a010197284) 04 April 2021, 10:17:22 UTC
b97d605 fix #40258: nested string interpolation (#40261) * fix #40258: nested string interpolation fixes #40258 * fix interpolation with varargs * add additional test case * add additional test cases Co-authored-by: Nathan Daly <NHDaly@gmail.com> * keep previous behavior, don't try to be too smart Co-authored-by: Nathan Daly <NHDaly@gmail.com> Co-authored-by: Jeff Bezanson <jeff.bezanson@gmail.com> (cherry picked from commit 637f52b8eb836bda45bdb282ff3dd3d347bef439) 04 April 2021, 10:17:22 UTC
dc387d5 Update PCRE2 to 10.36 (#39310) (cherry picked from commit c889de7eb80d42f745652da84b99c127a581d0ff) 04 April 2021, 10:17:22 UTC
9e996e7 fix macro hygiene for `@nospecialize(::T)` (#40293) (cherry picked from commit 73aa7e4df5775dce521615a0da5c09e1735a3cd2) 04 April 2021, 10:17:22 UTC
d080d85 exempt begin and underscore from macro hygiene (#40280) (cherry picked from commit a52b43d04e7e5044d78858d7e8a374b1f181f138) 04 April 2021, 10:17:22 UTC
62e7cf4 Fix relpath when path and startpath are in the same drive (#40323) * Fix relpath when path and startpath are in the same drive When startpath == ".", assume the startpath is in the same drive. This subsequently required tweaking the existing logic to then canonicalize the drive casing in instances where the drive casing differs. (cherry picked from commit 89fff18d590db9be84598e0045003b903d48d2df) 04 April 2021, 10:17:22 UTC
bef3e1a Fix rounding cases for fixed-width printing in ryu routines Fixes #40303. When printing values to fixed widths through the `Ryu.writefixed` or `Ryu.writeexp` routines, we have a "cleanup" section after a value has been printed to see if it needs to be rounded given the input precision and width. The core issue was the terminating condition: it previously only checked if we were at the start of a buffer or had encountered the `'-'` character. Via Printf formatting, however, it also allows specifying the `'+'` and `' '` characters to preceed a formatted number. Hence, in the OP, the `'1'` character was getting "rounded" up to the `','` character. The fix here is correctly checking if the `plus` or `space` options were passed to the routine and if so, include those in our rounding termination check. The original issue only reported the "plus" case for the `f` format specifier, but the same bug affects the `e` format specifier and the "space" option. (cherry picked from commit fcf6779b1ec119b7a3686d08dfba7ba0acfd3f93) 04 April 2021, 10:17:22 UTC
5250207 replace broken replaceuserpath function with existing contractuser one (#40274) Fixes #39674 (cherry picked from commit d07b5a134632d26bdbadde1b0352d2de8aae2906) 04 April 2021, 10:17:22 UTC
295e41e add a missing propagate_inbounds to a getindex method (#40281) * add a missing propagate_inbounds (cherry picked from commit 80002db74c88fae5803688e930cd77ce0567c355) 04 April 2021, 10:17:22 UTC
53748f8 Add aliasscope expr to interpreter (#40275) (cherry picked from commit 8868d3fb15eed14de477c9d77b24e40e05219c07) 04 April 2021, 10:17:22 UTC
cffcbec make some constructors bold in stacktraces (#40264) (cherry picked from commit 42766ace9af350fd51cd33d0890fe6bb66a1638b) 04 April 2021, 10:17:22 UTC
8a4b9e2 fix markdown list rendering (#40203) (cherry picked from commit 0f828a2acc497f0c26965956a57cfa9ea69cdd09) 04 April 2021, 10:17:22 UTC
fb4a489 Fix issue where approved credentials were not sent to git credential helpers (#40161) Due to the bug in the `GitCredential` constructor we were never writing credential data to the credential helper effectively making our use of git credential helpers read-only. (cherry picked from commit ac50ac6058caa97c047c1751ca9cbbe0c1ceea2a) 04 April 2021, 10:17:22 UTC
270c982 Fix a small bug in the TOML parser and add an example of printing to a file (#40208) fix the TOML parser to parse 0e-3 and add an example of writing to a file (cherry picked from commit 2ec75d65ce13651f42f59456568aefe30901b9c6) 04 April 2021, 10:17:22 UTC
9c7e701 Remove eltype assumption from ldiv!(LowerTriangular(SparseMatrixCSC{Tv,Ti), ...) (#40174) (cherry picked from commit beeb6d776678000c32cd3992d0bc4a65fe1aa5e3) 04 April 2021, 10:17:22 UTC
04afed6 Add new LLVM patches for Aarch64 issues (#39891) Fixes #39818 Fixes #39820 Fixes #39823 (cherry picked from commit 0988fcfb2b79416139343b3ca48e01b5a7be8120) 04 April 2021, 10:17:22 UTC
5452394 README: git checkout 1.6.0 in the instructions. (cherry picked from commit c6d5c406974268c6f402ce036da4c0d70b849fd0) 04 April 2021, 10:17:22 UTC
0d5821d Fix armv7l trampoline (#40176) We copy-pasted the wrong macro here, should have used `CNAMEADDR()` not `CNAME()`. This causes segfaults on armv7l processors by trying to read from an incorrect address when loading the trampoline target address value. (cherry picked from commit 1897e08ff54eb8c91b806e20bbfecbe7b2d4f9f7) 04 April 2021, 10:17:22 UTC
78f9e7d Have different Windows uninstall keys for different Julia versions (#40163) * Have different Windows uninstall keys for different Julia versions Should fix #40004. Have the uninstall key to be "{#AppNameLong}_is1" where AppNameLong contains the Julia version to prevent Windows from overwriting the uninstall information for different Julia versions. Inno Setup documentation about the AppId https://jrsoftware.org/ishelp/topic_setup_appid.htm copied here for convenience ``` [Setup]: AppId Default value: AppName Description: The value of AppId is stored inside uninstall log files (unins???.dat), and is checked by subsequent installations to determine whether it may append to a particular existing uninstall log. Setup will only append to an uninstall log if the AppId of the existing uninstall log is the same as the current installation's AppId. For a practical example, say you have two installations -- one entitled My Program and the other entitled My Program 1.1 Update. To get My Program 1.1 Update to append to My Program's uninstall log, you would have to set AppId to the same value in both installations. AppId also determines the actual name of the Uninstall registry key, to which Inno Setup tacks on "_is1" at the end. (Therefore, if AppId is "MyProgram", the key will be named "MyProgram_is1".) Pre-1.3 versions of Inno Setup based the key name on the value of AppVerName. AppId is a not used for display anywhere, so feel free to make it as cryptic as you desire. The value may include constants. If you use a {code:..} constant to allow your user to customize AppId, you do not need to return the real value until just before the installation starts: if necessary you may return an empty or generic value at earlier times. If not empty, this value will only be used to attempt to restore previous install settings (like the settings stored by [Setup] section directive UsePreviousAppDir). If empty, it isn't used for anything. The length of AppId with all constants evaluated should never exceed 127 characters. Example: AppId=MyProgram ``` * Use DirName as AppId Co-authored-by: Mustafa M <mus-m@outlook.com> * remove unneeded code Co-authored-by: Mustafa M <mus-m@outlook.com> (cherry picked from commit e2f5f26aec6e0a3e239d3382aa7007c3caf85f5e) 04 April 2021, 10:17:22 UTC
63ab04c Fix #38491: fix an abspath() edge case on Windows (#38981) * Fix #38491: fix an abspath() edge case on Windows * Update base/path.jl Co-authored-by: Jameson Nash <vtjnash@gmail.com> * Update base/path.jl * Update test/path.jl Co-authored-by: Jameson Nash <vtjnash@gmail.com> Co-authored-by: Mustafa M <mus-m@outlook.com> Co-authored-by: Jameson Nash <vtjnash@gmail.com> (cherry picked from commit f023677ce8b22a266b520b5b660114ccfce655e3) 04 April 2021, 10:17:22 UTC
47c13ff fix #40050, handling fields that are pointers due to subtype circularity (#40095) (cherry picked from commit e3dffb9da5e2af961ccebf3d82de138bbda46d4d) 04 April 2021, 10:17:22 UTC
cf8b463 Fixed a spelling error. (#39372) (cherry picked from commit cc4690a6a746cac3961a59ac8026f57d6d52351c) 04 April 2021, 10:17:22 UTC
9283b6c Reinstate support for merging modules with non-const globals. (cherry picked from commit d0ab30b78a2c551f033e3eefc1ada6169b985297) 01 April 2021, 07:14:26 UTC
f25d988 Set VERSION to 1.6.1 prerelease (#40175) 25 March 2021, 03:13:38 UTC
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
back to top