github.com/daniel-garcia/glide@v0.0.0-20160218012856-2eab91fab790/CHANGELOG.md (about)

     1  # Release 0.9.0 (2016-02-17)
     2  
     3  - Fixed #262: Using correct query string merging for go-get queries (thanks gdm85).
     4  - Fixed #251: Fixed warning message (thanks james-lawrence).
     5  - Adding support for IBM JazzHub.
     6  - Fixes #250: When unable to retrieve or set version on a dependency now erroring
     7    and exiting with non-0 exit code.
     8  - Issue #218: Added `glide rm` command.
     9  - Fixed #215: Under some error conditions the package resolver could get into
    10    an infinite loop.
    11  - Issue #234: Adding more options to the glide.yaml file including license,
    12    owners, homepage, etc. See the docs for more detail.
    13  - Issue #237: Added Read The Docs support and initial docs. http://glide.readthedocs.org
    14  - Issue #248: Uses go env to get value of GO15VENDOREXPERIMENT due to 1.6 enabling
    15    by default.
    16  - Issue #240: Glide only scans used imports rather than all paths in the tree.
    17    The previous behavior is available via a flag.
    18  - Fixed #235: Glide on windows writing incorrect slashes to files.
    19  - Fixed #227: Fixed ensure when multiple gopaths.
    20  - Refactored Glide
    21    - Many features broken out into packages. All but `action/` can be
    22      used as libraries.
    23    - Cookoo is not used anymore
    24    - The `action/` package replaces `cmd/`
    25  
    26  # Release 0.8.3 (2015-12-30)
    27  
    28  - Issue #198: Instead of stopping `glide install` for a hash failures providing
    29    a warning. Failed hash check is currently too aggressive.
    30  - Fixed #199: `glide up` on Windows unable to detect dependencies when GOPATH
    31    and GOROOT on a different drive or when GOROOT ends in a path separator.
    32  - Fixed #194: `glide up` stalling on Windows due to POSIX path separators and
    33    path list separators being used.
    34  - Fixed #185 and #187: Inaccurate hash being generated for lock file with nested
    35    version ranges.
    36  - Fixed #182 and #183: Caching on go-import lookups mishandled some prefixes.
    37  - Fixed issue in deduping and sub-package names.
    38  - Fixed #189: nested dependencies that do not contain VCS information were not
    39    being updated properly when --updated-vendored was being used.
    40  - Fixed #186: glide up PACKAGE was failing to generate a proper glide.lock file.
    41  
    42  # Release 0.8.2 (2015-12-21)
    43  
    44  - Fixed #169: cookoo git url has auth info. Makes glide unbuildable for
    45    environments not setup for GitHub.
    46  - Fixed #180: the hash in the glide.lock file was not being properly calculated.
    47  - Fixed #174: glide get was causing an error when the flag --updated-vendored
    48    was being used.
    49  - Fixed #175: glide get when the GOPATH isn't setup properly could end up in
    50    an infinite loop.
    51  
    52  # Release 0.8.1 (2015-12-15)
    53  
    54  - Fixed #163: Was detecting std lib packages when the GOROOT was different at
    55    runtime than compile time.
    56  - Fixed #165: glide update panics with --no-recursive option.
    57  - Added back zip build option to build scripts. This is useful for some
    58    environments.
    59  
    60  # Release 0.8.0 (2015-12-10)
    61  
    62  - Issues #156 and #85: Added lockfile support (glide.lock). This file records
    63    commit id pinned versions of the entire dependency tree. The `glide install`
    64    command installs the pinned dependencies from the `glide.lock` file while
    65    `glide update` updates the tree and lockfile. Most people should use `glide
    66    install` unless they want to intentionally updated the pinned dependencies.
    67    `glide install` is able to use concurrency to more quickly install update.
    68  - Issues #33 and #159: Glide notifies if a dependency checkout has uncomitted
    69    changes.
    70  - Issue #146: Glide scans projects not managed by a dependency manager, fetches
    71    their dependencies, and pins them in the glide.lock file.
    72  - Issue #99: Glide `get` pins dependencies by default and allows a version to
    73    be passed in. For example, `glide get github.com/Masterminds/convert#^1.0.0`
    74    will fetch `github.com/Masterminds/convert` with a version of `^1.0.0`.
    75  - Issue #155: Copying packages from the `GOPATH` is now opt-in.
    76  
    77  # Release 0.7.2 (2015-11-16)
    78  
    79  - Fixed #139: glide.yaml file imports being reordered when file written.
    80  - Fixed #140: packages in glide.yaml were no longer being deduped.
    81  
    82  # Release 0.7.1 (2015-11-10)
    83  
    84  - Fixed #136: Fixed infinite recursion in list and tree commands.
    85  - Fixed issue where glide guess listed a null parent.
    86  - Fixed #135: Hard failure when home directory not found for cache.
    87  - Fixed #137: Some messages not ending in "\n".
    88  - Fixed #132 and #133: Build from source directions incorrect (thanks hyPiRion).
    89  
    90  # Release 0.7.0 (2015-11-02)
    91  
    92  - Fixed #110: Distribution as .tag.gz instead of .zip.
    93  - Issue #126: Added --no-color option to remove color for systems that do not
    94    work well with color codes (thanks albrow).
    95  - Added caching functionality (some opt-in).
    96  - Added global debug flag.
    97  - Moved yaml parsing and writing to gopkg.in/yaml.v2 and separated
    98    config handling into separate package.
    99  - Better godep import handling.
   100  - Fixed #98: Godep command name fix (thanks jonboulle).
   101  - #52 and #114: Add semantic version (SemVer) support.
   102  - #108: Flatten the dependency tree by default.
   103  - Fixed #107: Allow `glide get` to retrieve insecure packages with `--insecure`
   104    flag.
   105  - #105: Import commands accept a filename with the `-f` flag.
   106  - Fixed #97: Fixed misspellings (thanks jonboulle).
   107  - #96: Allow multiple packages in `glide get`.
   108  - #92: Added support to `glide update` to only update a specific package.
   109  - #91: `glide list` now displays if a pkg is in vendor, GOPATH, or missing.
   110  - Issue #89: More robust GOPATH handling (thanks gcmt).
   111  - Fixed #65: Hg commands were not checking out the codebase on the first update.
   112  - Fixed #95: Added more detail for errors previously reporting "Oops! exit
   113    status 128".
   114  - Fixed #86 and #71: Imported package names including a sub-package were checked
   115    out to the wrong location. They are not checked out to the right place and
   116    multiple instances of the top level repo are merged with error checking.
   117  
   118  # Release 0.6.1 (2015-09-21)
   119  
   120  - Fixed #82: C was not recognized as an internal package.
   121  - Fixed #84: novendor (nv) command returned directories with no Go code.
   122  
   123  # Release 0.6.0 (2015-09-16)
   124  
   125  - #53: Add support for gb-vendor manifest files.
   126  - Added `glide tree` command to inspect the code and see the imported packages.
   127  - Added `glide list` to see an alphabetized list of imported projects.
   128  - Added flatten feature to flatten the vendor tree (thanks interlock).
   129  - Fixed #74: Glide guess using the wrong GOROOT locations in some environments
   130    (thanks janeczku).
   131  - Fixed #76: Glide tree doesn't exclude core libraries with the GOROOT is
   132    incorrect (thanks janeczku).
   133  - Fixed #81: rebuild command did not look in vendor/ directory
   134  - Fixed #77: update failed when a commit id was set for the ref
   135  
   136  # Release 0.5.1 (2015-08-31)
   137  
   138  - Fixed #58: Guess command not working.
   139  - Fixed #56: Unable to use glide get on golang.org/x/[name]/[subpackage]
   140  - Fixed #61: The wrong version of a dependency can be pinned when packages are
   141    vendored (no VCS repo associated with them).
   142  - Fixed #67: Unable to work go-get redirects.
   143  - Fixed #66: 'glide up' now has an --update-vendored (-u) flag to update
   144    vendored directories.
   145  - Fixed #68: Handling the base where the GOPATH has multiple separated directories.
   146  
   147  # Release 0.5.0 (2015-08-19)
   148  
   149  **Glide .5 is a major update breaking some backwards compatability with
   150  previous releases.**
   151  
   152  - Migrated to using the vendor/ directory and the go tools for vendor
   153    package management. To leverage this you'll need to set the
   154    environment variable GO15VENDOREXPERIMENT=1 and use Go 1.5.
   155  - `glide up` is now recursive and walks installed packages if there is
   156    no vendor directory. Use the --no-recursive flag to skip this.
   157  - Removed GOPATH management. This was needed for vendor package
   158    management that's not built into the go toolchain.
   159  - Switched to github.com/Masterminds/vcs for VCS integration.
   160  - When updating packages are now deleted if the --delete flag is set.
   161    This feature is now opt-in.
   162  - Fixed #32: Detects VCS type and endpoint changes along with a --force flag
   163    to replace the checkout if desired.
   164  
   165  # Release 0.4.1 (2015-07-13)
   166  
   167  - Issue #48: When GOPATH not _vendor directory not deleting unused packages.
   168  
   169  # Release 0.4.0 (2015-07-07)
   170  
   171  - Issue #34: Delete unused packages on update unless flag set.
   172  - Added 'glide create PACKAGE'
   173  - Added 'glide exec COMMAND'
   174  - Added 'glide get PACKAGE'
   175  - Added 'glide pin FILENAME'
   176  - Added 'glide guess FILENAME'
   177  - Updated help text
   178  
   179  # Release 0.3.0 (2015-06-17)
   180  
   181  - Issue #46: If VCS type is set use that rather than go get.
   182  - Issue #45: Added git fastpath if configured ref or tag matches current
   183    one. (via roblillack)
   184  - Issue #30: Added support for changed VCS type to a git repo. (thanks roblillack)
   185  - Issue #42: Fixed update for new dependencies where repo not configured.
   186    (thanks roblillack)
   187  - Issue #25: Added GOOS and GOARCH support.
   188  - Issue #35: Updated documentation on what update from existing repos means
   189  - Issue #37: Added support to import from GPM and Godep
   190  - Issue #36: Added example for shell (bash/zsh) prompt to show the current
   191    GOPATH. (thanks eAndrius)
   192  - Issue #31: The local Go bin should be higher precedence in the
   193    system's PATH (via jarod).
   194  - Issue #28: Use HTTPS instead of HTTP for git and hg. (Thanks chendo)
   195  - Issue #26: 'glide gopath' is smarter. It now looks for glide.yaml.
   196  - Issue #24: Trim whitespace off of package names. (Thanks roblillack)
   197  
   198  # Release 0.2.0 (2014-10-03)
   199  
   200  - Issue #15, #18: `glide guess` can guess dependencies for an existing
   201    repo. (HUGE thanks to dz0ny)
   202  - Issue #14: Glide fails now when YAML is invalid.
   203  - Issue #13: cli.go added to Makefile (via roblillack)
   204  - Issue #12: InitGlide takes YAML file now
   205  - Issue #9: Fixed handling of $SHELL (Thanks roblillack)
   206  - Issue #10: Symbolic link uses a relative path now (Thanks roblillack)
   207  - Issue #5: Build step is deferred when 'go get' is used to fetch
   208    packages. (Thanks gsalgado)
   209  - Issue #11: Add GOBIN to glide environment (via dz0ny)
   210  - Typos fixed (#17 by lamielle, #16 by roblillack)
   211  - Moved the CLI handling to cli.go (github.com/codegangsta/cli)