Skip to content

Commit b78cd7a

Browse files
committed
initial changelog
1 parent 19105ed commit b78cd7a

5 files changed

Lines changed: 65 additions & 10 deletions

File tree

CHANGELOG.md

Lines changed: 49 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,54 @@
11
# Git LFS Changelog
22

3+
## v0.6.0 (10 September, 2015)
4+
5+
First release with full support for the Batch API, while still supporting
6+
servers with the Legacy API. Also introduces new fetch/checkout/push commands.
7+
8+
### Fetch
9+
10+
* Rename old `git lfs fetch` command to `git lfs pull`. #527 (@sinbad)
11+
* Add `git lfs checkout` #527 #543 #551 #566 (@sinbad)
12+
* Add `git lfs fetch` for _just_ downloading objects. #527 (@sinbad)
13+
* Support fetching multiple refs #542 (@sinbad)
14+
* Add `--all` option for download all objects from the server. #633 (@sinbad)
15+
* Add `--include` and `--exclude` flag for `git lfs fetch` #573 (@sinbad)
16+
* Fix error handling while `git update-index` is running. #570 (@rubyist)
17+
18+
### Push
19+
20+
* Support pushing multiple branches in the pre-push hook. #635 (@sinbad)
21+
* Fix pushing objects from a branch that's not HEAD. #608 (@sinbad)
22+
* Check server for objects before failing push because local is missing #581 (@sinbad)
23+
* Filter out commits from remote refs when pushing. #578 (@billygor)
24+
* Support pushing all objects to the server, regardless of the remote ref. #646 (@technoweenie)
25+
* Fix case where pre-push git hook exits with 0. #582 (@sinbad)
26+
27+
### API Clients
28+
29+
* Fix some race conditions in the Batch API client. #577 #637 (@sinbad, @rubyist)
30+
* Support retries in the Batch API client. #595 (@rubyist)
31+
* Fix hanging batch client in certain error conditions #594 (@rubyist)
32+
* Treat 401 responses as errors in the Legacy API client. #634 (@rubyist)
33+
* Fix bug in the Legacy API client when the object already exists on the server. #572 (@billygor)
34+
35+
### Credentials
36+
37+
* Fix how git credentials are checked in certain edge cases #611 (@technoweenie)
38+
* Send URI user to git credentials. #626 (@sinbad)
39+
* Support git credentials with useHttpPath enabled. #554 (@clareliguori)
40+
41+
### Experimental Features
42+
43+
* Experimental support for Git worktrees (in Git 2.5+) #546 (@sinbad)
44+
* Experimental extension support. #486 (@ryansimmen)
45+
46+
## v0.5.4 (30 July, 2015)
47+
48+
* Ensure `git lfs uninit` cleans your git config thoroughly. #530 (@technoweenie)
49+
* Fix issue with asking `git-credentials` for auth details after getting them
50+
from the SSH command. #534 (@technoweenie)
51+
352
## v0.5.3 (23 July, 2015)
453

554
* `git lfs fetch` bugs #429 (@rubyist)

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
git-lfs (0.6.0) stable; urgency=low
2+
3+
* New upstream version
4+
5+
-- Stephen Gelman <gelman@getbraintree.com> Thu, 10 Sep 2015 14:29:00 +0000
6+
17
git-lfs (0.5.3) stable; urgency=low
28

39
* New upstream version

docker/build_dockers.bsh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
#!/usr/bin/env bash
22

3-
# Usage:
3+
# Usage:
44
# ./build_dockers.bsh - Build all the compiling docker images
55
# ./build_dockers.bsh lfs_centos_5 lfs_centos_7 - Build only CentOS 5 & 7 image
66
#
77
# Special Environment Variables
8-
# DOCKER_LFS_BUILD_VERSION - tag or sha to build envirnment off of. Important
8+
# DOCKER_LFS_BUILD_VERSION - tag or sha to build envirnment off of. Important
99
# in CentOS
1010
set -eu
1111

@@ -14,7 +14,7 @@ CUR_DIR=$(dirname "${BASH_SOURCE[0]}")
1414
#If you are not in docker group and you have sudo, default value is sudo
1515
: ${SUDO=`if ( [ ! -w /var/run/docker.sock ] && id -nG | grep -qwv docker && [ "${DOCKER_HOST:+dh}" != "dh" ] ) && which sudo > /dev/null 2>&1; then echo sudo; fi`}
1616

17-
export DOCKER_LFS_BUILD_VERSION=${DOCKER_LFS_BUILD_VERSION:-v0.5.4}
17+
export DOCKER_LFS_BUILD_VERSION=${DOCKER_LFS_BUILD_VERSION:-v0.6.0}
1818

1919
if [[ $# == 0 ]]; then
2020
IMAGE_NAMES=($(ls -d ${CUR_DIR}/git-lfs_*.dockerfile))
@@ -25,7 +25,7 @@ fi
2525
#This will take a long time the first time
2626
for IMAGE_NAME in "${IMAGE_NAMES[@]}"; do
2727
NAME=$(basename ${IMAGE_NAME%.*})
28-
#If you do decide to use the same key for all, this makes it easier. Only
28+
#If you do decide to use the same key for all, this makes it easier. Only
2929
#creates keys for git-lfs_* images, none of the others should be signing.
3030
if [[ "${NAME}" == git-lfs_* ]] && [ ! -e ${CUR_DIR}/${NAME}.key ]; then
3131
touch ${CUR_DIR}/${NAME}.key

lfs/lfs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import (
1212
)
1313

1414
const (
15-
Version = "0.6.0-pre"
15+
Version = "0.6.0"
1616
tempDirPerms = 0755
1717
localMediaDirPerms = 0755
1818
localLogDirPerms = 0755

rpm/SPECS/git-lfs.spec

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
Name: git-lfs
2-
Version: 0.5.2
1+
Name: git-lfs
2+
Version: 0.6.0
33
Release: 1%{?dist}
44
Summary: Git extension for versioning large files
55

@@ -16,9 +16,9 @@ Requires: git
1616
#I think this is because go links with --build-id=none for linux
1717

1818
%description
19-
Git Large File Storage (LFS) replaces large files such as audio samples,
20-
videos, datasets, and graphics with text pointers inside Git, while
21-
storing the file contents on a remote server like GitHub.com or GitHub
19+
Git Large File Storage (LFS) replaces large files such as audio samples,
20+
videos, datasets, and graphics with text pointers inside Git, while
21+
storing the file contents on a remote server like GitHub.com or GitHub
2222
Enterprise.
2323

2424
%prep

0 commit comments

Comments
 (0)