gopkg.in/tools/godep.v61@v61.0.0-20160406162537-35ee059b4e6c/Changelog.md (about)

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