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: docker/cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 155dc5e4e406
Choose a base ref
...
head repository: docker/cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: b6c552212837
Choose a head ref
  • 20 commits
  • 91 files changed
  • 7 contributors

Commits on Mar 26, 2024

  1. feat: standardize error for prompt

    Signed-off-by: Alano Terblanche <[email protected]>
    Benehiko committed Mar 26, 2024
    Configuration menu
    Copy the full SHA
    7c722c0 View commit details
    Browse the repository at this point in the history

Commits on Apr 2, 2024

  1. chore: remove backticks and resolve linting issues

    Signed-off-by: Alano Terblanche <[email protected]>
    Benehiko committed Apr 2, 2024
    Configuration menu
    Copy the full SHA
    910d5d0 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #4939 from Benehiko/prompt-termination

    feat: standardize error for prompt
    thaJeztah authored Apr 2, 2024
    Configuration menu
    Copy the full SHA
    9ca30bd View commit details
    Browse the repository at this point in the history

Commits on Apr 3, 2024

  1. command: include default otel error handler for the cli

    This adds a default otel error handler for the cli in the debug package.
    It uses logrus to log the error on the debug level and should work out
    of the box with the `--debug` flag and `DEBUG` environment variable.
    
    Signed-off-by: Jonathan A. Sternberg <[email protected]>
    jsternberg committed Apr 3, 2024
    Configuration menu
    Copy the full SHA
    8f45f14 View commit details
    Browse the repository at this point in the history

Commits on Apr 4, 2024

  1. otel: capture whether process was invoked from a terminal

    This commit adds a "terminal" attribute to `BaseMetricAttributes`
    that allows us to discern whether an invocation was from an interactive
    terminal or not.
    
    Signed-off-by: Laura Brehm <[email protected]>
    laurazard committed Apr 4, 2024
    Configuration menu
    Copy the full SHA
    ee1b283 View commit details
    Browse the repository at this point in the history
  2. Merge pull request #4975 from jsternberg/otel-error-handler

    command: include default otel error handler for the cli
    laurazard authored Apr 4, 2024
    Configuration menu
    Copy the full SHA
    204b324 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #4978 from laurazard/otel-add-tty

    otel: capture whether process was invoked from a terminal
    neersighted authored Apr 4, 2024
    Configuration menu
    Copy the full SHA
    10b9810 View commit details
    Browse the repository at this point in the history
  4. otel: capture exit code as int64

    Signed-off-by: Laura Brehm <[email protected]>
    laurazard committed Apr 4, 2024
    Configuration menu
    Copy the full SHA
    cefcba9 View commit details
    Browse the repository at this point in the history

Commits on Apr 5, 2024

  1. Merge pull request #4985 from laurazard/otel-exit-code-int

    otel: capture exit code as int64
    laurazard authored Apr 5, 2024
    Configuration menu
    Copy the full SHA
    b2fe82a View commit details
    Browse the repository at this point in the history
  2. update to go1.21.9

    go1.21.9 (released 2024-04-03) includes a security fix to the net/http
    package, as well as bug fixes to the linker, and the go/types and
    net/http packages. See the Go 1.21.9 milestone on our issue tracker for
    details.
    
    - https://github.com/golang/go/issues?q=milestone%3AGo1.21.9+label%3ACherryPickApproved
    - full diff: golang/go@go1.21.8...go1.21.9
    
    **- Description for the changelog**
    
    ```markdown changelog
    Update Go runtime to 1.21.9
    ```
    
    Signed-off-by: Paweł Gronowski <[email protected]>
    vvoland committed Apr 5, 2024
    Configuration menu
    Copy the full SHA
    0a5bd6c View commit details
    Browse the repository at this point in the history
  3. Merge pull request #4986 from vvoland/update-go

    update to go1.21.9
    laurazard authored Apr 5, 2024
    Configuration menu
    Copy the full SHA
    c23a404 View commit details
    Browse the repository at this point in the history

Commits on Apr 9, 2024

  1. vendor: golang.org/x/sys v0.18.0

    full diff: golang/sys@v0.16.0...v0.18.0
    
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    9a2133f View commit details
    Browse the repository at this point in the history
  2. vendor: golang.org/x/term v0.18.0

    no changes in vendored code
    
    full diff: golang/term@v0.15.0...v0.18.0
    
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    c7a50eb View commit details
    Browse the repository at this point in the history
  3. vendor: golang.org/x/net v0.22.0, golang.org/x/crypto v0.21.0

    full diffs changes relevant to vendored code:
    
    - golang/net@v0.19.0...v0.22.0
        - http2: remove suspicious uint32->v conversion in frame code
        - http2: send an error of FLOW_CONTROL_ERROR when exceed the maximum octets
    - golang/crypto@v0.17.0...v0.21.0
        - (no changes in vendored code)
    
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    4745b95 View commit details
    Browse the repository at this point in the history
  4. vendor: golang.org/x/net v0.23.0

    full diff: golang/net@v0.22.0...v0.23.0
    
    Includes a fix for CVE-2023-45288, which is also addressed in go1.22.2
    and go1.21.9;
    
    > http2: close connections when receiving too many headers
    >
    > Maintaining HPACK state requires that we parse and process
    > all HEADERS and CONTINUATION frames on a connection.
    > When a request's headers exceed MaxHeaderBytes, we don't
    > allocate memory to store the excess headers but we do
    > parse them. This permits an attacker to cause an HTTP/2
    > endpoint to read arbitrary amounts of data, all associated
    > with a request which is going to be rejected.
    >
    > Set a limit on the amount of excess header frames we
    > will process before closing a connection.
    >
    > Thanks to Bartek Nowotarski for reporting this issue.
    
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Apr 9, 2024
    Configuration menu
    Copy the full SHA
    5fcbbde View commit details
    Browse the repository at this point in the history
  5. Merge pull request #4998 from thaJeztah/bump_x_net

    vendor: golang.org/x/sys v0.18.0, golang.org/x/term v0.18.0, golang.org/x/crypto v0.21.0, golang.org/x/net v0.23.0
    thaJeztah authored Apr 9, 2024
    Configuration menu
    Copy the full SHA
    870ad7f View commit details
    Browse the repository at this point in the history

Commits on Apr 10, 2024

  1. vendor: github.com/containerd/containerd v1.7.15

    Signed-off-by: Laura Brehm <[email protected]>
    laurazard committed Apr 10, 2024
    Configuration menu
    Copy the full SHA
    8a3a7b9 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    c1053bf View commit details
    Browse the repository at this point in the history
  3. vendor: github.com/docker/docker v26.0.1-0.20240410103514-f9dfd139ec0…

    …d+incompatible (master)
    
    Signed-off-by: Laura Brehm <[email protected]>
    laurazard committed Apr 10, 2024
    Configuration menu
    Copy the full SHA
    5515b86 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #5003 from laurazard/vendor-moby-dirty-26.1

    vendor: github.com/docker/docker f9dfd139ec0d (master)
    thaJeztah authored Apr 10, 2024
    Configuration menu
    Copy the full SHA
    b6c5522 View commit details
    Browse the repository at this point in the history
Loading