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.6.4
Choose a base ref
...
head repository: JuliaLang/julia
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v1.6.5
Choose a head ref
  • 18 commits
  • 18 files changed
  • 12 contributors

Commits on Nov 19, 2021

  1. Stop stripping git, github, and CI config files from source distribut…

    …ions.
    
    (cherry picked from commit 780ebea)
    Sacha0 authored and KristofferC committed Nov 19, 2021
    Configuration menu
    Copy the full SHA
    2cef645 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    eeb1472 View commit details
    Browse the repository at this point in the history

Commits on Nov 26, 2021

  1. IRShow: use IOContext for PhiNodes/:invoke printing (#43226)

    In order to allow `Argument`s to be printed nicely.
    
    > before
    ```julia
    julia> code_typed((Float64,)) do x
               sin(x)
           end
    1-element Vector{Any}:
     CodeInfo(
    1 ─ %1 = invoke Main.sin(_2::Float64)::Float64
    └──      return %1
    ) => Float64
    
    julia> code_typed((Bool,Any,Any)) do c, x, y
               z = c ? x : y
               z
           end
    1-element Vector{Any}:
     CodeInfo(
    1 ─      goto #3 if not c
    2 ─      goto #4
    3 ─      nothing::Nothing
    4 ┄ %4 = φ (#2 => _3, #3 => _4)::Any
    └──      return %4
    ) => Any
    ```
    
    > after
    ```julia
    julia> code_typed((Float64,)) do x
               sin(x)
           end
    1-element Vector{Any}:
     CodeInfo(
    1 ─ %1 = invoke Main.sin(x::Float64)::Float64
    └──      return %1
    ) => Float64
    
    julia> code_typed((Bool,Any,Any)) do c, x, y
               z = c ? x : y
               z
           end
    1-element Vector{Any}:
     CodeInfo(
    1 ─      goto #3 if not c
    2 ─      goto #4
    3 ─      nothing::Nothing
    4 ┄ %4 = φ (#2 => x, #3 => y)::Any
    └──      return %4
    ) => Any
    ```
    aviatesk committed Nov 26, 2021
    Configuration menu
    Copy the full SHA
    1466f80 View commit details
    Browse the repository at this point in the history

Commits on Dec 2, 2021

  1. Make stale_cachefile compatible with Nix mtime (#43090)

    The added condition improves compatiblity with Nix mtime.
    
    (cherry picked from commit f5e0f9d)
    Sacha0 authored and KristofferC committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    2ecd98d View commit details
    Browse the repository at this point in the history
  2. Base.GIT_VERSION_INFO: record the Buildkite commit that was used to…

    … build Julia (#43073)
    
    (cherry picked from commit a21cc80)
    DilumAluthge authored and KristofferC committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    a749c00 View commit details
    Browse the repository at this point in the history
  3. Fix shell syntax in version_git.sh and remove warning. (#43196)

    (cherry picked from commit 99f6558)
    fredrikekre authored and KristofferC committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    58cfe81 View commit details
    Browse the repository at this point in the history
  4. Fix links to external stdlib repos in docs, fixes #43199. (#43225)

    (cherry picked from commit 3103102)
    fredrikekre authored and KristofferC committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    f58832c View commit details
    Browse the repository at this point in the history
  5. Test: Fix indenting on verbose no-failure report (#43251)

    (cherry picked from commit 6bea8e3)
    IanButterworth authored and KristofferC committed Dec 2, 2021
    Configuration menu
    Copy the full SHA
    cfc5d15 View commit details
    Browse the repository at this point in the history

Commits on Dec 5, 2021

  1. [OpenBLAS_jll] Update to v0.3.10+10 (#43331)

    This version has been rebuilt to have 32 threads by default, instead of 512 as
    it accidentally happened before.  The large number of threads caused problems on
    some platforms, including `StackOverflowError`s.
    giordano authored Dec 5, 2021
    Configuration menu
    Copy the full SHA
    6867362 View commit details
    Browse the repository at this point in the history

Commits on Dec 7, 2021

  1. Update Documenter to 0.27.10. (#43264)

    (cherry picked from commit 4486567)
    fredrikekre authored and KristofferC committed Dec 7, 2021
    Configuration menu
    Copy the full SHA
    fa73c2e View commit details
    Browse the repository at this point in the history
  2. libuv: bump version (#43219)

    Includes several fixes: JuliaLang/libuv@c6869fb...3a63bf7
    
    (cherry picked from commit 2b1ece9)
    vtjnash authored and KristofferC committed Dec 7, 2021
    Configuration menu
    Copy the full SHA
    d8d1239 View commit details
    Browse the repository at this point in the history
  3. Fix world age issue with custom streams for Distributed workers (#42481)

    If connect(::CustomClusterManager, ...) returns a custom transport
    stream, use of that stream by the task in start_gc_msgs_task() may fail
    due to the task executing in an old world age. Add an invokelatest() to
    prevent this problem.
    
    (cherry picked from commit a05bcb2)
    c42f authored and KristofferC committed Dec 7, 2021
    Configuration menu
    Copy the full SHA
    417050b View commit details
    Browse the repository at this point in the history
  4. Timer: handle timeout correctly (#42854)

    I am not sure why we ever used round+1 instead of ceil+1, as this is
    simply strictly more correct.
    
    (cherry picked from commit d6f59fa)
    vtjnash authored and KristofferC committed Dec 7, 2021
    Configuration menu
    Copy the full SHA
    bd84016 View commit details
    Browse the repository at this point in the history
  5. fix #25678: return matters for generated functions (#40778)

    Just explicitely check for `CodeInfo` objects and use an explicit
    `return` in this case inside the `@generated` macro.
    
    Co-authored-by: Jeff Bezanson <jeff.bezanson@gmail.com>
    (cherry picked from commit 92c84bf)
    2 people authored and KristofferC committed Dec 7, 2021
    Configuration menu
    Copy the full SHA
    a895768 View commit details
    Browse the repository at this point in the history

Commits on Dec 11, 2021

  1. Merge pull request #43152 from JuliaLang/backports-release-1.6

    release-1.6: Backports for 1.6.5
    KristofferC authored Dec 11, 2021
    Configuration menu
    Copy the full SHA
    5d28959 View commit details
    Browse the repository at this point in the history
  2. Unbreak source distribution tarball construction. (#43096)

    Co-authored-by: Jameson Nash <vtjnash@gmail.com>
    Sacha0 and vtjnash committed Dec 11, 2021
    Configuration menu
    Copy the full SHA
    a37f20f View commit details
    Browse the repository at this point in the history
  3. Merge pull request #43399 from JuliaLang/sv-fix-source-dist

    [release-1.6] Backport "Unbreak source distribution tarball construction" for 1.6.5
    Sacha0 authored Dec 11, 2021
    Configuration menu
    Copy the full SHA
    78ba17b View commit details
    Browse the repository at this point in the history

Commits on Dec 19, 2021

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