Skip to content

Commit 6557f9f

Browse files
authored
Merge pull request git-lfs#1569 from github/release-next
release: v1.4.2
2 parents 5bba96f + c581839 commit 6557f9f

File tree

7 files changed

+50
-5
lines changed

7 files changed

+50
-5
lines changed

CHANGELOG.md

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

3+
## 1.4.2 (10 October, 2016)
4+
5+
v1.4.2 brings a number of bug fixes and usability improvements to LFS. This
6+
release also adds support for multiple retries within the transfer queue, making
7+
transfers much more reliable. To enable this feature, see the documentation for
8+
`lfs.transfer.maxretries` in `git-lfs-config(5)`.
9+
10+
We'd also like to extend a special thank-you to @sschuberth who undertook the
11+
process of making LFS's test run on Windows through AppVeyor. Now all pull
12+
requests run tests on macOS, Linux, and Windows.
13+
14+
### Features
15+
16+
* lfs: warn on usage of the legacy API #1564 (@ttaylorr)
17+
* use filepath.Clean() when comparing filenames to include/exclude patterns #1565 (@technoweenie)
18+
* lfs/transfer_queue: support multiple retries per object #1505, #1528, #1535, #1545 (@ttaylorr)
19+
* Automatically upgrade old filters instead of requiring —force #1497 (@sinbad)
20+
* Allow lfs.pushurl in .lfsconfig #1489 (@technoweenie)
21+
22+
### Bugs
23+
24+
* Use "sha256sum" on Windows #1566 (@sschuberth)
25+
* git: ignore non-root wildcards #1563 (@ttaylorr)
26+
* Teach status to recognize multiple files with identical contents #1550 (@ttaylorr)
27+
* Status initial commit #1540 (@sinbad)
28+
* Make path comparison robust against Windows short / long path issues #1523 (@sschuberth)
29+
* Allow fetch to run without a remote configured #1507 (@sschuberth)
30+
31+
### Misc
32+
33+
* travis: run tests on Go 1.7.1 #1568 (@ttaylorr)
34+
* Enable running tests on AppVeyor CI #1567 (@sschuberth)
35+
* Travis: Only install git if not installed yet #1557 (@sschuberth)
36+
* Windows test framework fixes #1522 (@sschuberth)
37+
* Simplify getting the absolute Git root directory #1518 (@sschuberth)
38+
* Add icons to the Windows installer #1504 (@sschuberth)
39+
* docs/man: reference git-lfs-pointer(1) in clean documentation #1503 (@ttaylorr)
40+
* Make AppVeyor CI for Windows work again #1506 (@sschuberth)
41+
* commands: try out RegisterCommand() #1495 (@technoweenie)
42+
343
## 1.4.1 (26 August, 2016)
444

545
### Features

ROADMAP.md

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ Git LFS. If you have an idea for a new feature, open an issue for discussion.
1212
| :soon: | Socks proxy support | [#1424](https://github.com/github/git-lfs/issues/1424) |
1313
| :no_entry_sign: | Not following 301 redirect | [#1129](https://github.com/github/git-lfs/issues/1129) |
1414
| | add all lfs.\* git config keys to git lfs env output | |
15-
| :ship: | Teach `git lfs update` how to update the clean/smudge filter values | [#1083](https://github.com/github/git-lfs/pull/1083) |
1615
| | credential output hidden while transferring files | [#387](https://github.com/github/git-lfs/pull/387) |
1716
| | Support multiple git alternates | |
1817
| | Investigate `git lfs checkout` hardlinking instead of copying files. | |

config/version.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88

99
var (
1010
GitCommit string
11-
Version = "1.4.1"
11+
Version = "1.4.2"
1212
VersionDesc string
1313
)
1414

debian/changelog

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
git-lfs (1.4.2) stable; urgency=low
2+
3+
* New upstream version
4+
5+
-- Stephen Gelman <[email protected]> Mon, 10 Oct 2016 14:29:00 +0000
6+
17
git-lfs (1.4.1) stable; urgency=low
28

39
* New upstream version

lfs/lfs.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import (
1717
)
1818

1919
const (
20-
Version = "1.4.1"
20+
Version = "1.4.2"
2121
)
2222

2323
var (

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: 1.4.1
2+
Version: 1.4.2
33
Release: 1%{?dist}
44
Summary: Git extension for versioning large files
55

script/windows-installer/inno-setup-git-lfs-installer.iss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!
33

44
#define MyAppName "Git LFS"
5-
#define MyAppVersion "1.4.1"
5+
#define MyAppVersion "1.4.2"
66
#define MyAppPublisher "GitHub, Inc"
77
#define MyAppURL "https://git-lfs.github.com/"
88
#define MyAppFilePrefix "git-lfs-windows"

0 commit comments

Comments
 (0)