Skip to content

Commit a526ba6

Browse files
authored
Merge pull request git-lfs#3989 from git-lfs/release-next
release: v2.10.0
2 parents b9d8d44 + 7b8c6d0 commit a526ba6

File tree

5 files changed

+128
-4
lines changed

5 files changed

+128
-4
lines changed

CHANGELOG.md

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

3+
## 2.10.0 (21 January 2020)
4+
5+
This release introduces several new features, such as support for local paths in
6+
remotes, Kerberos support, and official binaries for S390x and little-endian
7+
64-bit PowerPC systems. In addition, numerous bugs have been fixed and
8+
miscellaneous issues have been addressed.
9+
10+
We would like to extend a special thanks to the following open-source
11+
contributors:
12+
13+
* @ganadist for fixing a bug in the output of `git lfs env`
14+
* @exceed-alae for fixing a possible nil pointer dereference
15+
* @slonopotamus for improvements to Windows support and code cleanups
16+
* @nataliechen1 for fixing a data race
17+
* @ssgelm for writing and updating the code to use a new cookie jar parser
18+
* @austintraver for improving the output of `git lfs status`
19+
* @nikola-sh for improving option parity with Git
20+
* @alrs for fixing several error checks in the testsuite
21+
* @pluehne for improving our support for uncommon references
22+
23+
### Features
24+
25+
* Optimize pushes for multiple refs #3978 (@bk2204)
26+
* Include ppc64le and s390x Linux builds in releases #3983 (@bk2204)
27+
* Kerberos (SPNEGO) support for HTTP #3941 (@bk2204)
28+
* Add support for local paths #3918 (@bk2204)
29+
* Allow specifying HTTP version to use #3887 (@bk2204)
30+
31+
### Bugs
32+
33+
* t-duplicate-oids: use correct awk indexing #3981 (@bk2204)
34+
* Improved proxy support #3972 (@bk2204)
35+
* install: don't print error if run outside repository #3969 (@bk2204)
36+
* debian: bump version of golang-go #3959 (@bk2204)
37+
* lfshttp: Set valid default value for lfs.concurrenttransfers #3949 (@ganadist)
38+
* Add nil-check on defer block of DoTransfer() #3936 (@exceed-alae)
39+
* Retry batch failures #3930 (@bk2204)
40+
* rpm: use old setup code on CentOS 7 #3938 (@bk2204)
41+
* Interpret relative hook paths as relative to working tree #3926 (@bk2204)
42+
* Handle missing cygpath gracefully #3910 (@bk2204)
43+
* Update index before showing status #3921 (@bk2204)
44+
* Honor lfs.url when deciding on transfer adapters #3905 (@bk2204)
45+
* Implement retry logic to fix LFS storage race conditions on Windows #3890 (@slonopotamus)
46+
* Avoid hang when using git hash-object --stdin --path #3902 (@bk2204)
47+
* synchronize access to netrcCredentialHelper.skip #3896 (@nataliechen1)
48+
49+
### Misc
50+
51+
* Improve license files #3973 (@bk2204)
52+
* Add CI link to CI badge in README #3960 (@slonopotamus)
53+
* Clarify output shown by `git lfs status` #3953 (@austintraver)
54+
* Revert "ci: force Windows Git version to 2.22.0" #3903 (@bk2204)
55+
* Better document pointer format constraints #3944 (@bk2204)
56+
* Don't abort with newer Git when in a bare repo #3940 (@bk2204)
57+
* Fix more Linux package issues #3932 (@bk2204)
58+
* docs: explain shell metacharacters better #3920 (@bk2204)
59+
* Reset the text attribute on export #3913 (@bk2204)
60+
* Support schannel ssl backend #3868 (@nikola-sh)
61+
* Allow migrate export to handle non-pointer files gracefully #3911 (@bk2204)
62+
* git/gitattr: fix dropped test errors #3904 (@alrs)
63+
* Accept all local references with git lfs push #3876 (@pluehne)
64+
* Drop pre-1.6 Go compatibility code #3897 (@slonopotamus)
65+
* tools/kv: Fix dropped test error #3882 (@alrs)
66+
* Use different parser for cookiejar files #3886 (@ssgelm)
67+
* Stop replacing files in LFS storage when downloading them concurrently on Windows #3880 (@slonopotamus)
68+
* Fix error strings to follow Go guidelines #3871 (@slonopotamus)
69+
* Miscellaneous release fixes #3866 (@bk2204)
70+
71+
## 2.9.2 (12 December 2019)
72+
73+
This release fixes a few regressions, such as a possible nil pointer
74+
dereference, a failure to retry batch requests, and a bug where repositories
75+
could fail to be detected on Windows.
76+
77+
We would like to extend a special thanks to the following open-source
78+
contributors:
79+
80+
* @exceed-alae for fixing a possible nil pointer dereference
81+
82+
### Bugs
83+
84+
* Add nil-check on defer block of DoTransfer() #3936 (@exceed-alae)
85+
* Retry batch failures #3930 (@bk2204)
86+
* rpm: use old setup code on CentOS 7 #3938 (@bk2204)
87+
* Handle missing cygpath gracefully #3910 (@bk2204)
88+
89+
### Misc
90+
91+
* Don't abort with newer Git when in a bare repo #3940 (@bk2204)
92+
* Fix more Linux package issues #3932 (@bk2204)
93+
94+
## 2.9.1 (25 November 2019)
95+
96+
This release fixes a few regressions, such as the ability to use HTTP/1.1 when
97+
required, addresses a race condition, and switches the cookie jar parser to
98+
something that's easier for distributions to package.
99+
100+
We would like to extend a special thanks to the following open-source
101+
contributors:
102+
103+
* @nataliechen1 for fixing a data race
104+
* @ssgelm for writing and updating the code to use a new cookie jar parser
105+
106+
### Features
107+
108+
* Allow specifying HTTP version to use #3887 (@bk2204)
109+
110+
### Bugs
111+
112+
* synchronize access to netrcCredentialHelper.skip #3896 (@nataliechen1)
113+
* Fix several causes of CI problems #3878 (@bk2204)
114+
* Miscellaneous release fixes #3866 (@bk2204)
115+
116+
### Misc
117+
118+
* Build artifacts during CI for easier testing #3892 (@bk2204)
119+
* Use different parser for cookiejar files #3886 (@ssgelm)
120+
3121
## 2.9.0 (17 October 2019)
4122

5123
This release adds support for DragonFly BSD, adds a new `git lfs dedup` command

config/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ var (
1313
)
1414

1515
const (
16-
Version = "2.9.0"
16+
Version = "2.10.0"
1717
)
1818

1919
func init() {

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
git-lfs (2.10.0) stable; urgency=low
2+
3+
* New upstream version
4+
5+
-- brian m. carlson <[email protected]> Tue, 21 Jan 2020 14:29:00 -0000
6+
17
git-lfs (2.9.0) stable; urgency=low
28

39
* New upstream version

rpm/SPECS/git-lfs.spec

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

versioninfo.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
{
44
"FileVersion": {
55
"Major": 2,
6-
"Minor": 9,
6+
"Minor": 10,
77
"Patch": 0,
88
"Build": 0
99
}
@@ -13,7 +13,7 @@
1313
"FileDescription": "Git LFS",
1414
"LegalCopyright": "GitHub, Inc. and Git LFS contributors",
1515
"ProductName": "Git Large File Storage (LFS)",
16-
"ProductVersion": "2.9.0"
16+
"ProductVersion": "2.10.0"
1717
},
1818
"IconPath": "script/windows-installer/git-lfs-logo.ico"
1919
}

0 commit comments

Comments
 (0)