Skip to content

Commit

Permalink
Merge pull request #4124 from git-lfs/release-next
Browse files Browse the repository at this point in the history
release: v2.11.0
  • Loading branch information
bk2204 committed May 8, 2020
2 parents 817ef2f + fc3e184 commit 48b28d9
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 4 deletions.
54 changes: 54 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,59 @@
# Git LFS Changelog

## 2.11.0 (8 May 2020)

This release introduces several new features, such as better support for unnamed
local paths and URLs as remotes, support for `submodule.recurse`, exponential
backoff on failure, and support for renegotiation. In addition, numerous bugs
have been fixed and miscellaneous issues have been addressed.

We would like to extend a special thanks to the following open-source
contributors:

* @bluekeyes for adding support for exponential backoff
* @pluehne for adding support for `submodule.recurse`
* @Electric26 for fixing the default behavior of a prompt
* @nataliechen1 for fixing certain upload retry failures
* @shalashik for fixing a panic during cherry-pick
* @swisspol for updating our documentation to reflect supported `.lfsconfig`
keys
* @dan2468 for updating the copyright year

### Features

* Allow literal local paths as remotes #4119 (@bk2204)
* pre-push: find named remote for URL if possible #4103 (@bk2204)
* tq: add exponential backoff for retries #4097 (@bluekeyes)
* migrate import: set text to unspecified for excluded fields #4068 (@bk2204)
* Update list of distros for packagecloud.io #4080 (@bk2204)
* lfshttp: allow renegotiation #4066 (@bk2204)
* Support submodule.recurse = true #4063 (@pluehne)
* add man page for the post-commit hook command #4052 (@chrisd8088)
* Add an option to control warning about files larger than 4 GiB #4009 (@bk2204)

### Bugs

* commands/command_migrate.go: fix bug #4116 (@Electric26)
* git: avoid "bad object" messages when force-pushing #4102 (@bk2204)
* git: avoid trying to rewrite remote tags as remote branches #4096 (@bk2204)
* make Go tests run consistently using local binary #4084 (@chrisd8088)
* commands: don't honor lfs.fetch* for ls-files #4083 (@bk2204)
* commands: print help output with --help #4059 (@bk2204)
* fail dedup command with explanation when LFS extensions configured #4045 (@chrisd8088)
* fix upload retry 'file already closed' issue' #4042 (@nataliechen1)
* commands/command_filter_process: cherry-pick of several commits cause panic error #4017 (@shalashik)
* Check error when creating local storage directory #4016 (@bk2204)
* track: detect duplicate patterns with --filename #4000 (@bk2204)

### Misc

* Removed lfs.extension.* from list of supported keys for .lfsconfig #4044 (@swisspol)
* Tidy modules #4035 (@bk2204)
* README: explain how to verify releases #4022 (@bk2204)
* docs: document git lfs migrate --yes #4023 (@bk2204)
* Stop using cgo on amd64 Linux #4026 (@bk2204)
* updated copyright year #3995 (@dan2468)

## 2.10.0 (21 January 2020)

This release introduces several new features, such as support for local paths in
Expand Down
2 changes: 1 addition & 1 deletion config/version.go
Expand Up @@ -13,7 +13,7 @@ var (
)

const (
Version = "2.10.0"
Version = "2.11.0"
)

func init() {
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
@@ -1,3 +1,9 @@
git-lfs (2.11.0) stable; urgency=low

* New upstream version

-- brian m. carlson <bk2204@github.com> Fri, 08 May 2020 14:29:00 -0000

git-lfs (2.10.0) stable; urgency=low

* New upstream version
Expand Down
2 changes: 1 addition & 1 deletion rpm/SPECS/git-lfs.spec
@@ -1,5 +1,5 @@
Name: git-lfs
Version: 2.10.0
Version: 2.11.0
Release: 1%{?dist}
Summary: Git extension for versioning large files

Expand Down
4 changes: 2 additions & 2 deletions versioninfo.json
Expand Up @@ -3,7 +3,7 @@
{
"FileVersion": {
"Major": 2,
"Minor": 10,
"Minor": 11,
"Patch": 0,
"Build": 0
}
Expand All @@ -13,7 +13,7 @@
"FileDescription": "Git LFS",
"LegalCopyright": "GitHub, Inc. and Git LFS contributors",
"ProductName": "Git Large File Storage (LFS)",
"ProductVersion": "2.10.0"
"ProductVersion": "2.11.0"
},
"IconPath": "script/windows-installer/git-lfs-logo.ico"
}

0 comments on commit 48b28d9

Please sign in to comment.