Skip to content

Commit 48b28d9

Browse files
authored
Merge pull request git-lfs#4124 from git-lfs/release-next
release: v2.11.0
2 parents 817ef2f + fc3e184 commit 48b28d9

File tree

5 files changed

+64
-4
lines changed

5 files changed

+64
-4
lines changed

CHANGELOG.md

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

3+
## 2.11.0 (8 May 2020)
4+
5+
This release introduces several new features, such as better support for unnamed
6+
local paths and URLs as remotes, support for `submodule.recurse`, exponential
7+
backoff on failure, and support for renegotiation. In addition, numerous bugs
8+
have been fixed and miscellaneous issues have been addressed.
9+
10+
We would like to extend a special thanks to the following open-source
11+
contributors:
12+
13+
* @bluekeyes for adding support for exponential backoff
14+
* @pluehne for adding support for `submodule.recurse`
15+
* @Electric26 for fixing the default behavior of a prompt
16+
* @nataliechen1 for fixing certain upload retry failures
17+
* @shalashik for fixing a panic during cherry-pick
18+
* @swisspol for updating our documentation to reflect supported `.lfsconfig`
19+
keys
20+
* @dan2468 for updating the copyright year
21+
22+
### Features
23+
24+
* Allow literal local paths as remotes #4119 (@bk2204)
25+
* pre-push: find named remote for URL if possible #4103 (@bk2204)
26+
* tq: add exponential backoff for retries #4097 (@bluekeyes)
27+
* migrate import: set text to unspecified for excluded fields #4068 (@bk2204)
28+
* Update list of distros for packagecloud.io #4080 (@bk2204)
29+
* lfshttp: allow renegotiation #4066 (@bk2204)
30+
* Support submodule.recurse = true #4063 (@pluehne)
31+
* add man page for the post-commit hook command #4052 (@chrisd8088)
32+
* Add an option to control warning about files larger than 4 GiB #4009 (@bk2204)
33+
34+
### Bugs
35+
36+
* commands/command_migrate.go: fix bug #4116 (@Electric26)
37+
* git: avoid "bad object" messages when force-pushing #4102 (@bk2204)
38+
* git: avoid trying to rewrite remote tags as remote branches #4096 (@bk2204)
39+
* make Go tests run consistently using local binary #4084 (@chrisd8088)
40+
* commands: don't honor lfs.fetch* for ls-files #4083 (@bk2204)
41+
* commands: print help output with --help #4059 (@bk2204)
42+
* fail dedup command with explanation when LFS extensions configured #4045 (@chrisd8088)
43+
* fix upload retry 'file already closed' issue' #4042 (@nataliechen1)
44+
* commands/command_filter_process: cherry-pick of several commits cause panic error #4017 (@shalashik)
45+
* Check error when creating local storage directory #4016 (@bk2204)
46+
* track: detect duplicate patterns with --filename #4000 (@bk2204)
47+
48+
### Misc
49+
50+
* Removed lfs.extension.* from list of supported keys for .lfsconfig #4044 (@swisspol)
51+
* Tidy modules #4035 (@bk2204)
52+
* README: explain how to verify releases #4022 (@bk2204)
53+
* docs: document git lfs migrate --yes #4023 (@bk2204)
54+
* Stop using cgo on amd64 Linux #4026 (@bk2204)
55+
* updated copyright year #3995 (@dan2468)
56+
357
## 2.10.0 (21 January 2020)
458

559
This release introduces several new features, such as support for local paths in

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.10.0"
16+
Version = "2.11.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.11.0) stable; urgency=low
2+
3+
* New upstream version
4+
5+
-- brian m. carlson <[email protected]> Fri, 08 May 2020 14:29:00 -0000
6+
17
git-lfs (2.10.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.10.0
2+
Version: 2.11.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": 10,
6+
"Minor": 11,
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.10.0"
16+
"ProductVersion": "2.11.0"
1717
},
1818
"IconPath": "script/windows-installer/git-lfs-logo.ico"
1919
}

0 commit comments

Comments
 (0)