Skip to content

Commit 32fef9d

Browse files
authored
Create GCM 2.1.0 release (#1235)
**Changes:** - Support ports in URL-scoped config (#825) - Support URL-scoped enterprise default settings (#1149) - Add support for client TLS certificates (#1152) - Add TRACE2 support(#1131, #1151, #1156, #1162) - Better browser detection inside of WSL (#1148) - Handle expired OAuth refresh token for generic auth (#1196) - Target *-latest runner images in CI workflow (#1178) - Various bug fixes: - Ensure we create a WindowsProcessManager on Windows (#1146) - Ensure we start child processes created with ProcessManager (#1177) - Fix app path name of Windows dropping file extension (#1181) - Ensure we init IEnvironment before SessionManager (#1167) - git: consistently read from stdout before exit wait (#1136) - trace2: guard against null pipe client in dispose (#1135) - Make Avalonia UI the default Windows and move to in-process (#1207) - Add Git configuration options for trace & debug (#1228) - Transition from Nerdbank.GitVersioning to a version file (#1231) - Add support for using the current Windows user for WAM on DevBox (#1197) - Various documentation updates: - org-rename: update references to GitCredentialManager (#1141) - issue templates: remove core suffix (#1180) - readme: add link to project roadmap (#1204) - docs: add bitbucket app password requirements (#1213) - .net tool: clarify install instructions (#1126) - docs: call out different GCM install paths in WSL docs (#1168) - docs: add trace2 to config/env documentation (#1230)
2 parents 6dff24b + f58b3de commit 32fef9d

File tree

308 files changed

+6283
-3856
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

308 files changed

+6283
-3856
lines changed

.github/ISSUE_TEMPLATE/auth-issue.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ body:
1515
description: |
1616
What version of Git Credential Manager are you using?
1717
18-
Run `git credential-manager-core --version` from a terminal to see the current version.
18+
Run `git credential-manager --version` from a terminal to see the current version.
1919
2020
If you are on an older version of GCM please try updating before creating an issue as the problem you are experiencing may have already been fixed.
2121
placeholder: |
@@ -120,6 +120,6 @@ body:
120120
WSLENV=$WSLENV:GCM_TRACE:GIT_TRACE GCM_TRACE=1 GIT_TRACE=1 git fetch
121121
```
122122
123-
If you are using GCM version 2.0.567 onwards you can also run `git credential-manager-core diagnose` to collect useful diagnostic information that can be attached here.
123+
If you are using GCM version 2.0.567 onwards you can also run `git credential-manager diagnose` to collect useful diagnostic information that can be attached here.
124124
125125
:warning: **Please review and redact any private information before attaching logs and files!**

.github/workflows/codeql-analysis.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,7 @@ jobs:
2222
language: [ 'csharp' ]
2323

2424
steps:
25-
- name: Checkout repository
26-
uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
27-
with:
28-
fetch-depth: 0 # patch around Nerdbank.GitVersioning failure
25+
- uses: actions/checkout@v3
2926

3027
# Initializes the CodeQL tools for scanning.
3128
- name: Initialize CodeQL

.github/workflows/continuous-integration.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,10 @@ jobs:
1414
runs-on: ${{ matrix.os }}
1515
strategy:
1616
matrix:
17-
os: [ubuntu-18.04, ubuntu-20.04, windows-2019, macos-latest]
17+
os: [ubuntu-latest, windows-latest, macos-latest]
1818

1919
steps:
20-
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
21-
with:
22-
fetch-depth: 0 # Indicate full history so Nerdbank.GitVersioning works.
20+
- uses: actions/checkout@v3
2321

2422
- name: Setup .NET
2523
uses: actions/[email protected]

.github/workflows/lint-docs.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ jobs:
1818
name: Lint markdown files
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
21+
- uses: actions/checkout@v3
2222

23-
- uses: DavidAnson/markdownlint-cli2-action@5b7c9f74fec47e6b15667b2cc23c63dff11e449e
23+
- uses: DavidAnson/markdownlint-cli2-action@bb4bb94c73936643d73d345b48fead3e96f90a5e
2424
with:
2525
globs: |
2626
"**/*.md"
@@ -30,12 +30,12 @@ jobs:
3030
name: Check for broken links
3131
runs-on: ubuntu-latest
3232
steps:
33-
- uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8
33+
- uses: actions/checkout@v3
3434

3535
- name: Run link checker
3636
# For any troubleshooting, see:
3737
# https://github.com/lycheeverse/lychee/blob/master/docs/TROUBLESHOOTING.md
38-
uses: lycheeverse/lychee-action@4dcb8bee2a0a4531cba1a1f392c54e8375d6dd81
38+
uses: lycheeverse/lychee-action@97189f2c0a3c8b0cb0e704fd4e878af6e5e2b2c5
3939

4040
with:
4141
# user-agent: if a user agent is not specified, some websites (e.g.

.github/workflows/release-homebrew.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ jobs:
88
runs-on: ubuntu-latest
99
steps:
1010
- name: Update Homebrew tap
11-
uses: mjcheetham/update-homebrew@v1.2
11+
uses: mjcheetham/update-homebrew@v1.3
1212
with:
1313
token: ${{ secrets.HOMEBREW_TOKEN }}
1414
tap: microsoft/git

0 commit comments

Comments
 (0)