gopkg.in/tools/godep.v25@v25.0.0-20151106015334-218402f1be30/Changelog.md (about)

     1  # v25 2015/11/05
     2  
     3  * `godep update package/` == `godep update package`. Fixes #313
     4  
     5  # v24 2015/11/05
     6  
     7  * Honor -t during update. Fixes #312
     8  
     9  # v23 2015/11/05
    10  
    11  * Do not use --debug to find full revision name for mercurial repositories
    12  
    13  # v22 2016/11/14
    14  
    15  * s/GOVENDOREXPERIMENT/GO15VENDOREXPERIMENT :-(
    16  
    17  # v21 2016/11/13
    18  
    19  * Fix #310: Case insensitive fs issue
    20  
    21  # v20 2016/11/13
    22  
    23  * Attempt to include license files when vendoring. (@client9)
    24  
    25  # v19 2016/11/3
    26  
    27  * Fix conflict error message. Revisions were swapped. Also better selection of package that needs update.
    28  
    29  # v18 2016/10/16
    30  
    31  * Improve error message when trying to save a conflicting revision.
    32  
    33  # v17 2016/10/15
    34  
    35  * Fix for v16 bug. All vcs list commands now produce paths relative to the root of the vcs.
    36  
    37  # v16 2015/10/15
    38  
    39  * Determine repo root using vcs commands and use that instead of dep.dir
    40  
    41  # v15 2015/10/14
    42  
    43  * Update .travis.yml file to do releases to github
    44  
    45  # v14 2015/10/08
    46  
    47  * Don't print out a workspace path when GO15VENDOREXPERIMENT is active. The vendor/ directory is not a valid workspace, so can't be added to your $GOPATH.
    48  
    49  # v13 2015/10/07
    50  
    51  * Do restores in 2 separate steps, first download all deps and then check out the recorded revisions.
    52  * Update Changelog date format
    53  
    54  # v12 2015/09/22
    55  
    56  * Extract errors into separate file.
    57  
    58  # v11 2015/08/22
    59  
    60  * Amend code to pass golint.
    61  
    62  # v10 2015/09/21
    63  
    64  * Analyse vendored package test dependencies.
    65  * Update documentation.
    66  
    67  # v9 2015/09/17
    68  
    69  * Don't save test dependencies by default.
    70  
    71  # v8 2015/09/17
    72  
    73  * Reorganize code.
    74  
    75  # v7 2015/09/09
    76  
    77  * Add verbose flag.
    78  * Skip untracked files.
    79  * Add VCS list command.
    80  
    81  # v6 2015/09/04
    82  
    83  *  Revert ignoring testdata directories and instead ignore it while
    84  processing Go files and copy the whole directory unmodified.
    85  
    86  # v5 2015/09/04
    87  
    88  * Fix vcs selection in restore command to work as go get does
    89  
    90  # v4 2015/09/03
    91  
    92  * Remove the deprecated copy option.
    93  
    94  # v3 2015/08/26
    95  
    96  * Ignore testdata directories
    97  
    98  # v2 2015/08/11
    99  
   100  * Include command line packages in the set to copy
   101  
   102  This is a simplification to how we define the behavior
   103  of the save command. Now it has two distinct package
   104  parameters, the "root set" and the "destination", and
   105  they have clearer roles. The packages listed on the
   106  command line form the root set; they and all their
   107  dependencies will be copied into the Godeps directory.
   108  Additionally, the destination (always ".") will form the
   109  initial list of "seen" import paths to exclude from
   110  copying.
   111  
   112  In the common case, the root set is equal to the
   113  destination, so the effective behavior doesn't change.
   114  This is primarily just a simpler definition. However, if
   115  the user specifies a package on the command line that
   116  lives outside of . then that package will be copied.
   117  
   118  As a side effect, there's a simplification to the way we
   119  add packages to the initial "seen" set. Formerly, to
   120  avoid copying dependencies unnecessarily, we would try
   121  to find the root of the VCS repo for each package in the
   122  root set, and mark the import path of the entire repo as
   123  seen. This meant for a repo at path C, if destination
   124  C/S imports C/T, we would not copy C/T into C/S/Godeps.
   125  Now we don't treat the repo root specially, and as
   126  mentioned above, the destination alone is considered
   127  seen.
   128  
   129  This also means we don't require listed packages to be
   130  in VCS unless they're outside of the destination.
   131  
   132  # v1 2015/07/20
   133  
   134  * godep version command
   135  
   136  Output the version as well as some godep runtime information that is
   137  useful for debugging user's issues.
   138  
   139  The version const would be bumped each time a PR is merged into master
   140  to ensure that we'll be able to tell which version someone got when they
   141  did a `go get github.com/tools/godep`.
   142  
   143  # Older changes
   144  
   145  Many and more, see `git log -p`