Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: JuliaLang/julia
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.4.1
Choose a base ref
...
head repository: JuliaLang/julia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6a6967a96854c0fb7b424705bbda512057871fd4
Choose a head ref
  • 16 commits
  • 30 files changed
  • 11 contributors

Commits on Apr 15, 2020

  1. Configuration menu
    Copy the full SHA
    ef4fe83 View commit details
    Browse the repository at this point in the history

Commits on May 10, 2020

  1. Fix MacOS Notarization (#35080)

    We need to individually sign each Mach-O file independently, otherwise
    notarization bails.  Note that you must sign the overall `.app` after
    each individual file is signed.
    
    I've also added more Entitlements.
    
    I've gone for a "gentle shotgun" approach, turning on everything that I think
    we could reasonably want.  I wait expectantly for someone to complain that
    they need Location access turned on for some package.  ;)
    
    (cherry picked from commit 418f111)
    staticfloat authored and KristofferC committed May 10, 2020
    Configuration menu
    Copy the full SHA
    889de01 View commit details
    Browse the repository at this point in the history
  2. precompile: avoid a potential crash when adding methods (#35378)

    fixes #29859
    
    (cherry picked from commit 8a55a27)
    vtjnash authored and KristofferC committed May 10, 2020
    Configuration menu
    Copy the full SHA
    d04036f View commit details
    Browse the repository at this point in the history
  3. add some checks for invalid expressions (#35363)

    add null check for module-default-defs, fix #34544
    
    fix #35367 as well
    
    change jl_eval_module_expr to check 3rd arg is block
    
    (cherry picked from commit 8057c60)
    ssikdar1 authored and KristofferC committed May 10, 2020
    Configuration menu
    Copy the full SHA
    fe43406 View commit details
    Browse the repository at this point in the history
  4. implement LibuvStream interface for BufferStream (#35545)

    It is noted as a non-OS stream, but has also been a subtype
    of LibuvStream since forever. #32309 did not add the `readerror`
    field.
    
    (cherry picked from commit de04210)
    vchuravy authored and KristofferC committed May 10, 2020
    Configuration menu
    Copy the full SHA
    3be9f10 View commit details
    Browse the repository at this point in the history
  5. Add a fast path for returning "" from repeat(str, 0) (#35579)

    Currently the case where `r == 0` falls through the same logic as every
    other non-negative value of `r` (aside from 1). This works for signed
    integers. However, this does not work for unsigned integers: in the loop
    where we unsafely fill in the output string, we're looping from 0 to `r
    - 1`, which for unsigned integers wraps around and causes us to request
    the address of the output string at a location that is well beyond what
    was allocated.
    
    Fixes #35578.
    
    (cherry picked from commit 1dcb42f)
    ararslan authored and KristofferC committed May 10, 2020
    Configuration menu
    Copy the full SHA
    75c7c60 View commit details
    Browse the repository at this point in the history
  6. exclude types with free variables from type_morespecific (#35555)

    (cherry picked from commit 0cedde6)
    JeffBezanson authored and KristofferC committed May 10, 2020
    Configuration menu
    Copy the full SHA
    9651235 View commit details
    Browse the repository at this point in the history
  7. fix buggy rand(RandomDevice(), Bool) (#35590)

    (cherry picked from commit 0bab06f)
    rfourquet authored and KristofferC committed May 10, 2020
    Configuration menu
    Copy the full SHA
    e76bf14 View commit details
    Browse the repository at this point in the history
  8. Fix dropped bytes when bulk reading from uv streams with oversized bu…

    …ffers (#35695)
    
    In readbytes!(s::UVStream, buf::AbstractVector{UInt8}, nb), we wrap `buf`
    in a PipeBuffer of maxsize nb and swap it in as the main buffer for the
    stream `s`. However, when we inform libuv of the size of the buffer,
    we instead use the size of the underlying array, which can be larger.
    In that case, we probably either drop bytes or override something that
    the user did not want overriden.
    
    (cherry picked from commit 3a84b51)
    Keno authored and KristofferC committed May 10, 2020
    Configuration menu
    Copy the full SHA
    0203e94 View commit details
    Browse the repository at this point in the history
  9. Fix and test PCRE error message getter. (#35728)

    (cherry picked from commit 9c2492e)
    maleadt authored and KristofferC committed May 10, 2020
    Configuration menu
    Copy the full SHA
    36d2600 View commit details
    Browse the repository at this point in the history
  10. Have matrix square root account for Rii=Rjj=0 to prevent NaN values (#…

    …35758)
    
    (cherry picked from commit 880c731)
    ssikdar1 authored and KristofferC committed May 10, 2020
    Configuration menu
    Copy the full SHA
    8b3a4a2 View commit details
    Browse the repository at this point in the history
  11. fix #35134, regression in printing nested quote Exprs (#35479)

    (cherry picked from commit e00db7b)
    JeffBezanson authored and KristofferC committed May 10, 2020
    Configuration menu
    Copy the full SHA
    c9b9b8c View commit details
    Browse the repository at this point in the history
  12. Configuration menu
    Copy the full SHA
    c0b1a0c View commit details
    Browse the repository at this point in the history

Commits on May 14, 2020

  1. Merge pull request #35825 from JuliaLang/backports-release-1.4

    Backports release 1.4.2
    KristofferC authored May 14, 2020
    Configuration menu
    Copy the full SHA
    f16c4b0 View commit details
    Browse the repository at this point in the history

Commits on May 15, 2020

  1. Configuration menu
    Copy the full SHA
    3c50b7f View commit details
    Browse the repository at this point in the history
  2. Set VERSION to 1.4.2

    (cherry picked from commit 0d0ead3)
    KristofferC committed May 15, 2020
    Configuration menu
    Copy the full SHA
    6a6967a View commit details
    Browse the repository at this point in the history
Loading