gopkg.in/tools/godep.v46@v46.0.0-20160104045137-2daafc448812/Changelog.md (about)

     1  # v46 2015/01/03
     2  
     3  * Record "devel" when the release is a devel release of go (compiled from git).
     4  
     5  # v45 2015/12/28
     6  
     7  * Upcase windows drive letters before comparing. Fixes #383.
     8  
     9  # v44 2015/12/23
    10  
    11  * Clean package roots when attempting to find a vendor directory so we don't loop forever.
    12      * Fixes 382
    13    
    14  # v43 2015/12/22
    15  
    16  * Better error messages when parsing Godeps.json: Fixes #372
    17  
    18  # v42 2015/12/22
    19  
    20  * Fix a bunch of GO15VENDOREXPERIMENT issues
    21      * Find package directories better. Previously we used build.FindOnly which didn't work the way I expected it to (any dir would work w/o error).
    22      * Set the VendorExperiment bool based on go version as 1.6 defaults to on.
    23      * A bunch of extra debugging for use while sanity checking myself.
    24      * vendor flag for test structs.
    25      * Some tests for vendor/ stuff:
    26          * Basic Test
    27          * Transitive
    28          * Transitive, across GOPATHs + collapse vendor/ directories.
    29  * Should Fix #358
    30  
    31  # v41 2015/12/17
    32  
    33  * Don't rewrite packages outside of the project. This would happen if you specified
    34    an external package for vendoring when you ran `goodep save -r ./... github.com/some/other/package`
    35  
    36  # v40 2015/12/17
    37  
    38  * When downloading a dependency, create the base directory if needed.
    39  
    40  # v39 2015/12/16
    41  
    42  * Record only the major go version (ex. go1.5) instead of the complete string.
    43  
    44  # v38 2015/12/16
    45  
    46  * Replace `go get`, further fix up restore error handling/reporting.
    47      * Fixes #186
    48      * Don't bother restoring/downloading if already done.
    49  
    50  # v37 2015/12/15
    51  
    52  * Change up how download/restore works a little
    53      * Try to load the package after downloading/restoring. Previously
    54        that was done too early in the process.
    55      * make previous verbose output debug output
    56      * report a typed error instead of a string from listPackage so it can
    57        be asserted to provide a nicer error.
    58      * Catch go get errors that say there are no go files found. See code
    59        comment as to why.
    60      * do *all* downloading during download phase.
    61  
    62  # v36 2015/12/14
    63  
    64  * Fixes #358: Using wrong variable. Will add test after release.
    65  
    66  # v35 2015/12/11
    67  
    68  * Fixes #356: Major performance regressions in v34
    69      * Enable cpu profiling via flag on save.
    70      * Cache packages by dir
    71      * Don't do a full import pass on deps for packages in the GOROOT
    72      * create a bit less garbage at times
    73  * Generalize -v & -d flags
    74  
    75  # v34 2015/12/08
    76  
    77  * We now use build.Context to help locate packages only and do our own parsing (via go/ast).
    78  * Fixes reported issues caused by v33 (Removal of `go list`):
    79      * #345: Bug in godep restore
    80      * #346: Fix loading a dot package
    81      * #348: Godep save issue when importing lib/pq
    82      * #350: undefined: build.MultiplePackageError
    83      * #351: stow away helper files
    84      * #353: cannot find package "appengine"
    85  
    86  # v33 2015/12/07
    87  
    88  * Replace the use of `go list`. This is a large change although all existing tests pass.
    89  
    90  # v32 2015/12/02
    91  
    92  * Eval Symlinks in Contains() check.
    93  
    94  # v31 2015/12/02
    95  
    96  * In restore, mention which package had the problem -- @shurcool
    97  
    98  # v30 2015/11/25
    99  
   100  * Add `-t` flag to the `godep get` command.
   101  
   102  # v29 2015/11/17
   103  
   104  * Temp work around to fix issue with LICENSE files.
   105  
   106  # v28 2015/11/09
   107  
   108  * Make `version` an actual command.
   109  
   110  # v27 2015/11/06
   111  
   112  * run command once during restore -v
   113  
   114  # v26 2015/11/05
   115  
   116  * Better fix for the issue fixed in v25: All update paths are now path.Clean()'d
   117  
   118  # v25 2015/11/05
   119  
   120  * `godep update package/` == `godep update package`. Fixes #313
   121  
   122  # v24 2015/11/05
   123  
   124  * Honor -t during update. Fixes #312
   125  
   126  # v23 2015/11/05
   127  
   128  * Do not use --debug to find full revision name for mercurial repositories
   129  
   130  # v22 2016/11/14
   131  
   132  * s/GOVENDOREXPERIMENT/GO15VENDOREXPERIMENT :-(
   133  
   134  # v21 2016/11/13
   135  
   136  * Fix #310: Case insensitive fs issue
   137  
   138  # v20 2016/11/13
   139  
   140  * Attempt to include license files when vendoring. (@client9)
   141  
   142  # v19 2016/11/3
   143  
   144  * Fix conflict error message. Revisions were swapped. Also better selection of package that needs update.
   145  
   146  # v18 2016/10/16
   147  
   148  * Improve error message when trying to save a conflicting revision.
   149  
   150  # v17 2016/10/15
   151  
   152  * Fix for v16 bug. All vcs list commands now produce paths relative to the root of the vcs.
   153  
   154  # v16 2015/10/15
   155  
   156  * Determine repo root using vcs commands and use that instead of dep.dir
   157  
   158  # v15 2015/10/14
   159  
   160  * Update .travis.yml file to do releases to github
   161  
   162  # v14 2015/10/08
   163  
   164  * 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.
   165  
   166  # v13 2015/10/07
   167  
   168  * Do restores in 2 separate steps, first download all deps and then check out the recorded revisions.
   169  * Update Changelog date format
   170  
   171  # v12 2015/09/22
   172  
   173  * Extract errors into separate file.
   174  
   175  # v11 2015/08/22
   176  
   177  * Amend code to pass golint.
   178  
   179  # v10 2015/09/21
   180  
   181  * Analyse vendored package test dependencies.
   182  * Update documentation.
   183  
   184  # v9 2015/09/17
   185  
   186  * Don't save test dependencies by default.
   187  
   188  # v8 2015/09/17
   189  
   190  * Reorganize code.
   191  
   192  # v7 2015/09/09
   193  
   194  * Add verbose flag.
   195  * Skip untracked files.
   196  * Add VCS list command.
   197  
   198  # v6 2015/09/04
   199  
   200  *  Revert ignoring testdata directories and instead ignore it while
   201  processing Go files and copy the whole directory unmodified.
   202  
   203  # v5 2015/09/04
   204  
   205  * Fix vcs selection in restore command to work as go get does
   206  
   207  # v4 2015/09/03
   208  
   209  * Remove the deprecated copy option.
   210  
   211  # v3 2015/08/26
   212  
   213  * Ignore testdata directories
   214  
   215  # v2 2015/08/11
   216  
   217  * Include command line packages in the set to copy
   218  
   219  This is a simplification to how we define the behavior
   220  of the save command. Now it has two distinct package
   221  parameters, the "root set" and the "destination", and
   222  they have clearer roles. The packages listed on the
   223  command line form the root set; they and all their
   224  dependencies will be copied into the Godeps directory.
   225  Additionally, the destination (always ".") will form the
   226  initial list of "seen" import paths to exclude from
   227  copying.
   228  
   229  In the common case, the root set is equal to the
   230  destination, so the effective behavior doesn't change.
   231  This is primarily just a simpler definition. However, if
   232  the user specifies a package on the command line that
   233  lives outside of . then that package will be copied.
   234  
   235  As a side effect, there's a simplification to the way we
   236  add packages to the initial "seen" set. Formerly, to
   237  avoid copying dependencies unnecessarily, we would try
   238  to find the root of the VCS repo for each package in the
   239  root set, and mark the import path of the entire repo as
   240  seen. This meant for a repo at path C, if destination
   241  C/S imports C/T, we would not copy C/T into C/S/Godeps.
   242  Now we don't treat the repo root specially, and as
   243  mentioned above, the destination alone is considered
   244  seen.
   245  
   246  This also means we don't require listed packages to be
   247  in VCS unless they're outside of the destination.
   248  
   249  # v1 2015/07/20
   250  
   251  * godep version command
   252  
   253  Output the version as well as some godep runtime information that is
   254  useful for debugging user's issues.
   255  
   256  The version const would be bumped each time a PR is merged into master
   257  to ensure that we'll be able to tell which version someone got when they
   258  did a `go get github.com/tools/godep`.
   259  
   260  # Older changes
   261  
   262  Many and more, see `git log -p`