Skip to content

Tags: SteveBenz/VFSForGit

Tags

v1.0.21014.1

Toggle v1.0.21014.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request microsoft#1717: [HOTFIX] Update Git to remove ODB …

…string check

See microsoft/git#306.

v1.0.20351.3

Toggle v1.0.20351.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request microsoft#1711: hotfix upgrade with new certificate

[HOTFIX] Fix upgrader's expectation of a single certificate

v1.0.20344.1

Toggle v1.0.20344.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request microsoft#1707: Merge milestones/M180 into release…

…s/shipped

The only functional behavior change is from microsoft#1706 which includes the GCM Core update.

This also includes microsoft#1703 which deleted the macOS projects, but doesn't change the Windows executable.

v1.0.20296.6

Toggle v1.0.20296.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request microsoft#1701: [HOTFIX] Delete all macOS projects…

… and platform code

Some macOS projects were causing failures in the release process, so
let's finally get around to deleting them.

This is the hotfix PR, but it should help with launching the VFS for Git release process.

v1.0.20210.1

Toggle v1.0.20210.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request microsoft#1686: [Release] Milesone M174

Major Updates
-----------------

* Comes with Git for Windows 2.28.0
* Previous builds were not including fully-signed DLLs. This is now fixed.

Pull Requests
---------------

* microsoft#1672: ProductUpgrader: be extra careful about a copy loop
* microsoft#1674: Config: disable status.submoduleSummary
* microsoft#1675: PreCommandHook: don't lock pack-objects 
* microsoft#1676: Update Git to v2.27.0.vfs.1.0 
*  microsoft#1679: BuildGVFSForWindows.bat: use nuget on PATH
* microsoft#1683: GVFS.SignFiles.csproj: include more DLLs for signing
* microsoft#1685: minor path comparison fixup in ProductUpgrader
*  microsoft#1682: Update Git to v2.28.0

v1.0.20175.6

Toggle v1.0.20175.6's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request microsoft#1678: BuildGVFSForWindows.bat: use nuget…

… on PATH when possible

Our release build is failing because we cannot download nuget due to TLS
1.2 changes. But we already require nuget.exe in an earlier step of the
build.

Require nuget.exe to be on the PATH, and update Readme.me accordingly.

v1.0.20156.1

Toggle v1.0.20156.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request microsoft#1673: ProductUpgrader: be extra careful …

…about a copy loop

The `ProductUpgrader` makes a backup of the `C:\Program Files\GVFS` folder before running the install, as a mechanism for backing out a failed upgrade. However, it copies that data into `C:\Program Files\GVFS\ProgramData\GVFS.Upgrade\Tools`, which can create a copy loop! This affected an actual user.

I'm not sure why this affects that one user but not another. In addition to adding more defensive programming (adding the target of the copy to the list of exclusions), I also added some extra tracing so we can see how these strings differ on this machine.

See microsoft#1672 for the master PR.

v1.0.20112.1

Toggle v1.0.20112.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request microsoft#1660: Update Git to include v2.26.2

Hotfix

v1.0.19224.1

Toggle v1.0.19224.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request microsoft#1438: [Mac kext] Allow privileged system…

… service 'amfid' to hydrate

[releases/shipped] Allow privileged system service 'amfid' to hydrate

v1.0.19218.7

Toggle v1.0.19218.7's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Merge pull request microsoft#1422: Update Git, drop MIDX writes

This PR does two things:

1. Updates Git to include the slow commit-graph write fix from microsoft/git#168. Also see microsoft#1420 for the M153 hotfix.

2. Removes the multi-pack-index writes from the `PostFetchStep` and instead only writes the multi-pack-index during the `PackfileMaintenanceStep`. In order to get the most out of the step, we need to ensure we have a multi-pack-index before running the `expire` and `repack` steps. Also, we can only expire the packs from that day if they are contained in the multi-pack-index.

If we agree that we should send (2) as a hotfix to the M155 release (in addition to (1), which is necessary), then I'll create a hotfix PR to that branch.