8000 Comparing v0.11.3...v0.11.4 · moby/buildkit · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
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: moby/buildkit
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.11.3
Choose a base ref
...
head repository: moby/buildkit
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.11.4
Choose a head ref
  • 20 commits
  • 38 files changed
  • 8 contributors

Commits on Feb 17, 2023

  1. go.mod: github.com/containerd/containerd v1.6.18

    Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
    AkihiroSuda committed Feb 17, 2023
    Configuration menu
    Copy the full SHA
    82acc90 View commit details
    Browse the repository at this point in the history
  2. Dockerfile: update containerd to v1.6.18, v1.5.18

    Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
    AkihiroSuda committed Feb 17, 2023
    Configuration menu
    Copy the full SHA
    d203c77 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2023

  1. ci: trigger workflows on push to release branches

    Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
    crazy-max committed Feb 22, 2023
    Configuration menu
    Copy the full SHA
    9ec2faa View commit details
    Browse the repository at this point in the history

Commits on Feb 23, 2023

  1. Merge pull request #3663 from crazy-max/v0.11_backport_ci-release-bra…

    …nches
    
    [0.11 backport] ci: trigger workflows on push to release branches
    crazy-max authored Feb 23, 2023
    Configuration menu
    Copy the full SHA
    9665de4 View commit details
    Browse the repository at this point in the history

Commits on Feb 24, 2023

  1. Ensures that the primary GID is also included in the additional GIDs

    Apply `ensureAdditionalGids()` from containerd/containerd@3eda46a
    
    (CVE-2023-25173, GHSA-hmfx-3pcx-653p)
    
    Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
    (cherry picked from commit a0ef27c)
    (cherry-pick was not clean)
    Signed-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>
    AkihiroSuda committed Feb 24, 2023
    Configuration menu
    Copy the full SHA
    df29c32 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #3645 from AkihiroSuda/containerd-v1.6.18

    [v0.11] update containerd (v1.6.18)
    crazy-max authored Feb 24, 2023
    Configuration menu
    Copy the full SHA
    4a037aa View commit details
    Browse the repository at this point in the history
  3. Merge pull request #3668 from AkihiroSuda/cherrypick-3651-v0.11

    [0.11 backport] Ensures that the primary GID is also included in the additional GIDs
    crazy-max authored Feb 24, 2023
    Configuration menu
    Copy the full SHA
    c327eb8 View commit details
    Browse the repository at this point in the history

Commits on Feb 28, 2023

  1. docs: deprecated features page

    Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
    crazy-max committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    c8d44cf View commit details
    Browse the repository at this point in the history
  2. buildinfo: mark as deprecated

    Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
    crazy-max committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    2c4adb1 View commit details
    Browse the repository at this point in the history
  3. hack: remove buildinfo-attrs

    Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
    crazy-max committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    9ac210f View commit details
    Browse the repository at this point in the history
  4. buildinfo: add BUILDKIT_BUILDINFO build arg

    Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
    crazy-max committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    837b4b2 View commit details
    Browse the repository at this point in the history
  5. fix a possible panic on cache

    ```
    newDesc.Annotations = nil
    for _, k := range addAnnotations {
      newDesc.Annotations[k] = desc.Annotations[k]
    }
    ```
    
    The codes may cause buildkitd panic: assignment to entry in nil map
    
    Signed-off-by: Yan Song <imeoer@linux.alibaba.com>
    (cherry picked from commit 39bd8c6)
    imeoer authored and tonistiigi committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    99aaa10 View commit details
    Browse the repository at this point in the history
  6. Fix buildkitd panic when frontend input is nil.

    Signed-off-by: Erik Sipsma <erik@sipsma.dev>
    (cherry picked from commit 2e6d0bf)
    Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
    sipsma authored and tonistiigi committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    17401b5 View commit details
    Browse the repository at this point in the history
  7. diffapply: do chown before xattrs

    Chown will result file capabilities getting reset, so it should be done
    before setting xattrs to ensure they are retained.
    
    Signed-off-by: Erik Sipsma <erik@sipsma.dev>
    (cherry picked from commit 0a36f1a)
    Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
    sipsma authored and tonistiigi committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    97b37f9 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #3673 from tonistiigi/v0.11.4-picks

    v0.11.4 cherry picks
    crazy-max authored Feb 28, 2023
    Configuration menu
    Copy the full SHA
    2590f95 View commit details
    Browse the repository at this point in the history
  9. Merge pull request #3614 from crazy-max/v0.11_deprecate-buildinfo

    [0.11] buildinfo: mark as deprecated
    crazy-max authored Feb 28, 2023
    Configuration menu
    Copy the full SHA
    0df0faa View commit details
    Browse the repository at this point in the history
  10. test/client: Close buildkit client

    This fixes hang in these tests which caused a timeout.
    
    Signed-off-by: Paweł Gronowski <pawel.gronowski@docker.com>
    (cherry picked from commit 3b0aa69)
    vvoland committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    e344f3a View commit details
    Browse the repository at this point in the history
  11. Merge pull request #3676 from vvoland/sbomsupplements-hang-011

    [v0.11 backport] test/client: Close buildkit client
    jedevc authored Feb 28, 2023
    Configuration menu
    Copy the full SHA
    218e934 View commit details
    Browse the repository at this point in the history
  12. provenance: ensure URLs are redacted before written

    HTTP and Git URLs may contain inlined credentials in some cases.
    
    Signed-off-by: Tonis Tiigi <tonistiigi@gmail.com>
    (cherry picked from commit 287d2c328dfe7303adf39911ef49153010534214)
    
    # Conflicts:
    #	frontend/dockerfile/dockerfile_buildinfo_test.go
    
    Signed-off-by: CrazyMax <crazy-max@users.noreply.github.com>
    tonistiigi authored and crazy-max committed Feb 28, 2023
    Configuration menu
    Copy the full SHA
    7d45f99 View commit details
    Browse the repository at this point in the history

Commits on Mar 6, 2023

  1. Merge pull request from GHSA-gc89-7gcr-jxqc

    [0.11] provenance: ensure URLs are redacted before written
    tonistiigi authored Mar 6, 2023
    Configuration menu
    Copy the full SHA
    3abd1ef View commit details
    Browse the repository at this point in the history
Loading
0