Skip to content
This repository has been archived by the owner on Jan 6, 2023. It is now read-only.

Clr 1.8.2 submit #1

Open
wants to merge 24 commits into
base: clr-1.8.1-submit
Choose a base branch
from

Commits on Aug 25, 2015

  1. vendor: update tar-split to v0.9.6

    Fixes rare edge case of handling GNU LongLink and LongName entries.
    Perf improvements. /dev/null writes were taking CPU time during docker
    push. Thanks @LK4D4
    Various cleanup too.
    
    Signed-off-by: Vincent Batts <[email protected]>
    vbatts authored and calavera committed Aug 25, 2015
    Configuration menu
    Copy the full SHA
    fc12b9d View commit details
    Browse the repository at this point in the history
  2. Fix ignore -q flag in docker ps when there is a default format.

    Docker ps default format should not take precedence over cli flags.
    This happens effectively for other flags except `-q`.
    We need to let the cli to set the format as table to print the
    expected output with `-q`.
    
    Signed-off-by: David Calavera <[email protected]>
    calavera committed Aug 25, 2015
    Configuration menu
    Copy the full SHA
    00a27b6 View commit details
    Browse the repository at this point in the history
  3. Vendoring in vishvananda/netlink

    Updating netlink package to 4b5dce31de6d42af5bb9811c6d265472199e0fec
    to fix certain wierd netlink issues seen.
    
    Signed-off-by: Jana Radhakrishnan <[email protected]>
    (cherry picked from commit 7948b75)
    
    Conflicts:
    	hack/vendor.sh
    mrjana authored and calavera committed Aug 25, 2015
    Configuration menu
    Copy the full SHA
    16d6460 View commit details
    Browse the repository at this point in the history
  4. Initialize LogConfig in daemon mode

    Signed-off-by: Marius Sturm <[email protected]>
    (cherry picked from commit e904cbe)
    
    Conflicts:
    	docker/daemon.go
    Marius Sturm authored and calavera committed Aug 25, 2015
    Configuration menu
    Copy the full SHA
    6ec8d40 View commit details
    Browse the repository at this point in the history
  5. a quick fix to moby#15626

    Signed-off-by: Shijiang Wei <[email protected]>
    mountkin authored and calavera committed Aug 25, 2015
    Configuration menu
    Copy the full SHA
    e078192 View commit details
    Browse the repository at this point in the history
  6. Fix bash completion for log driver options

    This option was incorrectly ported to the new `daemon` subcommand
    structure.
    
    Beside the obvious effect that completion of `docker daemon --log-opt`
    did not work, this also caused completion of `docker` and `docker xxx`
    to fail on macs with
    
    > bash: words: bad array subscript
    
    Signed-off-by: Harald Albers <[email protected]>
    (cherry picked from commit 18381fa)
    
    Conflicts:
    	contrib/completion/bash/docker
    albers authored and calavera committed Aug 25, 2015
    Configuration menu
    Copy the full SHA
    341ff01 View commit details
    Browse the repository at this point in the history
  7. Update volumes userguide

    Fixes moby#15644
    
    Signed-off-by: Tonis Tiigi <[email protected]>
    tonistiigi authored and calavera committed Aug 25, 2015
    Configuration menu
    Copy the full SHA
    ea56c5e View commit details
    Browse the repository at this point in the history
  8. Remove nil contexts

    Causes daemon panic because loggers can’t be found.
    
    Fixes moby#15724
    
    Signed-off-by: Tonis Tiigi <[email protected]>
    (cherry picked from commit 0c08913)
    tonistiigi authored and calavera committed Aug 25, 2015
    Configuration menu
    Copy the full SHA
    14d2083 View commit details
    Browse the repository at this point in the history

Commits on Aug 26, 2015

  1. Update vendoring

    Signed-off-by: Arnaud Porterie <[email protected]>
    Arnaud Porterie authored and calavera committed Aug 26, 2015
    Configuration menu
    Copy the full SHA
    c22b292 View commit details
    Browse the repository at this point in the history

Commits on Aug 28, 2015

  1. Fix pull on client disconnect

    Fixes moby#15589
    
    Signed-off-by: Tonis Tiigi <[email protected]>
    tonistiigi authored and calavera committed Aug 28, 2015
    Configuration menu
    Copy the full SHA
    cc8320c View commit details
    Browse the repository at this point in the history
  2. Add docker ps --format to bash completion

    Signed-off-by: Harald Albers <[email protected]>
    albers authored and calavera committed Aug 28, 2015
    Configuration menu
    Copy the full SHA
    0c71d09 View commit details
    Browse the repository at this point in the history
  3. Remove -h flag from completion and daemon reference

    All docker subcommands support `-h` as an alias for `--help`
    unless they have `-h` aliased to something else like `docker run`,
    which uses `-h` for `--hostname`.
    
    `-h` is not included in the help messages of the commands, though.
    
    It ist visible in
    * reference: only in `docker daemon` reference,
      see output of `grep -Rse --help=false docs`
    * man pages: only in `docker` man page
      see output of `grep -RF '**-h**' man`
    
    For consistency reasons, this commit removes `-h` as an alias for
    `--help` from the reference page, man page and the bash completion.
    
    Signed-off-by: Harald Albers <[email protected]>
    albers authored and calavera committed Aug 28, 2015
    Configuration menu
    Copy the full SHA
    789197f View commit details
    Browse the repository at this point in the history
  4. Add missing storage drivers to bash completion

    Signed-off-by: Harald Albers <[email protected]>
    albers authored and calavera committed Aug 28, 2015
    Configuration menu
    Copy the full SHA
    3f411db View commit details
    Browse the repository at this point in the history
  5. Add storage options to bash completion

    Signed-off-by: Harald Albers <[email protected]>
    (cherry picked from commit e4d8a8e)
    
    Conflicts:
    	contrib/completion/bash/docker
    albers authored and calavera committed Aug 28, 2015
    Configuration menu
    Copy the full SHA
    eeecd1c View commit details
    Browse the repository at this point in the history
  6. Add options for the json-file logging driver to bash completion

    Signed-off-by: Harald Albers <[email protected]>
    (cherry picked from commit 5c1ad6f)
    albers authored and calavera committed Aug 28, 2015
    Configuration menu
    Copy the full SHA
    ffe7e48 View commit details
    Browse the repository at this point in the history
  7. Update bash completion for docker run

    Also fixed sort order of options using `sort -d`
    
    Signed-off-by: Harald Albers <[email protected]>
    (cherry picked from commit 644c158)
    albers authored and calavera committed Aug 28, 2015
    Configuration menu
    Copy the full SHA
    947087f View commit details
    Browse the repository at this point in the history

Commits on Aug 31, 2015

  1. Fix sanitize URL bug on layer upload

    Update the distribution version to include sanitize URL fix
    
    Fixes moby#15875
    
    Signed-off-by: Derek McGowan <[email protected]> (github: dmcgowan)
    dmcgowan authored and calavera committed Aug 31, 2015
    Configuration menu
    Copy the full SHA
    6f7bbc3 View commit details
    Browse the repository at this point in the history

Commits on Sep 1, 2015

  1. Fix goroutine leak on pull

    Close the pipeWriter even if there was no error.
    
    Signed-off-by: Tonis Tiigi <[email protected]>
    tonistiigi authored and calavera committed Sep 1, 2015
    Configuration menu
    Copy the full SHA
    d7f8b4d View commit details
    Browse the repository at this point in the history

Commits on Sep 2, 2015

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

Commits on Sep 3, 2015

  1. use apt-ftparchive and reprepro to enable apt-pinning;

    Signed-off-by: Jessica Frazelle <[email protected]>
    (cherry picked from commit 12a71c8)
    jessfraz authored and calavera committed Sep 3, 2015
    Configuration menu
    Copy the full SHA
    3e8da36 View commit details
    Browse the repository at this point in the history

Commits on Sep 10, 2015

  1. Swap "ubuntu-debootstrap" for just "ubuntu"

    See docker-library/official-images#982 (comment).
    
    Signed-off-by: Andrew "Tianon" Page <[email protected]>
    tianon authored and calavera committed Sep 10, 2015
    Configuration menu
    Copy the full SHA
    57e9c4f View commit details
    Browse the repository at this point in the history
  2. Bump to version 1.8.2.

    Signed-off-by: David Calavera <[email protected]>
    calavera committed Sep 10, 2015
    Configuration menu
    Copy the full SHA
    0a8c2e3 View commit details
    Browse the repository at this point in the history

Commits on Sep 24, 2015

  1. Merge tag 'v1.8.2' into clr-1.8.2-submit

    v1.8.2
    
    Conflicts:
    	VERSION
    jodh-intel committed Sep 24, 2015
    Configuration menu
    Copy the full SHA
    0e06735 View commit details
    Browse the repository at this point in the history
  2. Update VERSION file.

    Signed-off-by: James Hunt <[email protected]>
    jodh-intel committed Sep 24, 2015
    Configuration menu
    Copy the full SHA
    dbf5a82 View commit details
    Browse the repository at this point in the history