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/moby
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: a72026acbbdf
Choose a base ref
...
head repository: moby/moby
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 6f6c3b921180da570f5186a754f90c45b55de5bf
Choose a head ref
  • 17 commits
  • 15 files changed
  • 4 contributors

Commits on Dec 24, 2024

  1. Remove use of pools in archive

    Signed-off-by: Derek McGowan <[email protected]>
    dmcgowan committed Dec 24, 2024
    Configuration menu
    Copy the full SHA
    a93a079 View commit details
    Browse the repository at this point in the history
  2. Fix chrootarchive test

    After the untar errors, the reader must complete in order to fill
    the buffer used by the subsequent check.
    
    Signed-off-by: Derek McGowan <[email protected]>
    dmcgowan committed Dec 24, 2024
    Configuration menu
    Copy the full SHA
    9189a6e View commit details
    Browse the repository at this point in the history
  3. Add pool for archive decompress stream

    Cleanup decompress logic and add a pool. The close logic should be
    custom defined for each compression type since they have different
    close interfaces.
    
    Signed-off-by: Derek McGowan <[email protected]>
    dmcgowan committed Dec 24, 2024
    Configuration menu
    Copy the full SHA
    4c251b6 View commit details
    Browse the repository at this point in the history

Commits on Dec 25, 2024

  1. Remove use of bufio in cli import tests

    The use of bufio for writing without flushing can lead to an incomplete
    writing of the tar and subsequent unexpected EOF when importing.
    
    Signed-off-by: Derek McGowan <[email protected]>
    dmcgowan committed Dec 25, 2024
    Configuration menu
    Copy the full SHA
    be4eac7 View commit details
    Browse the repository at this point in the history

Commits on Dec 28, 2024

  1. Merge pull request #49117 from dmcgowan/archive-remove-pools

    Remove use of `pkg/pools` in archive
    thaJeztah authored Dec 28, 2024
    Configuration menu
    Copy the full SHA
    f5af46d View commit details
    Browse the repository at this point in the history
  2. pkg/ioutils: remove OnEOFReader and move it internal

    This type was originally in pkg/transport, but got moved to pkg/ioutils
    in 276c640.
    
    This type is only used in a single location, and has no external consumers,
    so we can move it where it's used and un-export it.
    
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Dec 28, 2024
    Configuration menu
    Copy the full SHA
    6ab9212 View commit details
    Browse the repository at this point in the history
  3. remove pkg/broadcaster and make it internal to container/streams

    This package was only used internally in container/streams and had
    no external consumers.
    
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Dec 28, 2024
    Configuration menu
    Copy the full SHA
    44db31b View commit details
    Browse the repository at this point in the history

Commits on Dec 30, 2024

  1. daemon: parseSecurityOpt: rename var that shadowed function

    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Dec 30, 2024
    Configuration menu
    Copy the full SHA
    f321120 View commit details
    Browse the repository at this point in the history

Commits on Dec 31, 2024

  1. pkg/parsers: rename var that collided with builtin

    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Dec 31, 2024
    Configuration menu
    Copy the full SHA
    86a2df8 View commit details
    Browse the repository at this point in the history

Commits on Jan 1, 2025

  1. daemon: add missing "//go:build" directive

    relates to 56eb47c, which added
    the "slices" package.
    
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Jan 1, 2025
    Configuration menu
    Copy the full SHA
    c5575b5 View commit details
    Browse the repository at this point in the history
  2. daemon: adjust tests for changes in go1.24 JSON errors

    These tests failed because the error message changed in go1.24 through
    https://go.dev/cl/606956.
    
        === Failed
        === FAIL: daemon/config TestDaemonConfigurationFeatures/invalid_config_value (0.00s)
            config_linux_test.go:182: assertion failed: expected error "json: cannot unmarshal string into Go struct field Config.features of type bool", got "json: cannot unmarshal string into Go struct field Config.CommonConfig.features of type bool"
    
        === FAIL: daemon/config TestDaemonConfigurationFeatures (0.00s)
    
        === FAIL: daemon/config TestDaemonConfigurationHostGatewayIP/config_not_array (0.00s)
            config_linux_test.go:354: assertion failed: expected error "json: cannot unmarshal string into Go struct field Config.host-gateway-ips of type []netip.Addr", got "json: cannot unmarshal string into Go struct field Config.CommonConfig.DNSConfig.host-gateway-ips of type []netip.Addr"
    
    Relax the tests a bit to accept errors produced by either go1.24 or older.
    
    Signed-off-by: Sebastiaan van Stijn <[email protected]>
    thaJeztah committed Jan 1, 2025
    Configuration menu
    Copy the full SHA
    1c37a44 View commit details
    Browse the repository at this point in the history
  3. Merge pull request #49170 from thaJeztah/internalize_ioutils_OnEOFReader

    pkg/ioutils: remove OnEOFReader and move it internal
    AkihiroSuda authored Jan 1, 2025
    Configuration menu
    Copy the full SHA
    ae1a186 View commit details
    Browse the repository at this point in the history
  4. Merge pull request #49176 from thaJeztah/parseSecurityOpt_noshadow

    daemon: parseSecurityOpt: rename var that shadowed function
    AkihiroSuda authored Jan 1, 2025
    Configuration menu
    Copy the full SHA
    05a5bdf View commit details
    Browse the repository at this point in the history
  5. Merge pull request #49182 from thaJeztah/pkg_parsers_rename_var

    pkg/parsers: rename var that collided with builtin
    AkihiroSuda authored Jan 1, 2025
    Configuration menu
    Copy the full SHA
    1d3d51f View commit details
    Browse the repository at this point in the history
  6. Merge pull request #49186 from thaJeztah/daemon_add_missing_gobuild

    daemon: add missing "//go:build" directive
    thaJeztah authored Jan 1, 2025
    Configuration menu
    Copy the full SHA
    0e10cd6 View commit details
    Browse the repository at this point in the history
  7. Merge pull request #49188 from thaJeztah/go1.24_prep

    daemon: adjust tests for changes in go1.24 JSON errors
    thaJeztah authored Jan 1, 2025
    Configuration menu
    Copy the full SHA
    d01dd98 View commit details
    Browse the repository at this point in the history
  8. Merge pull request #49172 from thaJeztah/internalize_pkg_broadcaster

    remove pkg/broadcaster and make it internal to container/streams
    thaJeztah authored Jan 1, 2025
    Configuration menu
    Copy the full SHA
    6f6c3b9 View commit details
    Browse the repository at this point in the history
Loading