Skip to content

Commit f83f4aa

Browse files
committed
Merge remote-tracking branch 'microsoft/master'
2 parents ddf8a29 + ba50898 commit f83f4aa

File tree

15,110 files changed

+317793
-42591
lines changed

Some content is hidden

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

15,110 files changed

+317793
-42591
lines changed

.github/policies/labelManagement.issueUpdated.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -239,6 +239,8 @@ configuration:
239239
label: Azure-Pipeline-Passed
240240
- removeLabel:
241241
label: Binary-Validation-Error
242+
- removeLabel:
243+
label: Blocked-InstallerType
242244
- removeLabel:
243245
label: Blocking-Issue
244246
- removeLabel:
@@ -423,6 +425,8 @@ configuration:
423425
label: Azure-Pipeline-Passed
424426
- removeLabel:
425427
label: Binary-Validation-Error
428+
- removeLabel:
429+
label: Blocked-InstallerType
426430
- removeLabel:
427431
label: Blocking-Issue
428432
- removeLabel:

.github/policies/moderatorTriggers.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -522,6 +522,8 @@ configuration:
522522
label: Area-Scope
523523
- removeLabel:
524524
label: Area-Validation-Pipeline
525+
- removeLabel:
526+
label: Blocked-InstallerType
525527
- removeLabel:
526528
label: Blocking-Issue
527529
- removeLabel:

DevOpsPipelineDefinitions/publish-pipeline.yaml

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,17 @@ extends:
4545

4646
steps:
4747

48+
# Allow scripts to access the system token.
49+
# Fetch all history
50+
# Don't fetch tags.
51+
- checkout: self
52+
clean: true
53+
persistCredentials: true
54+
fetchDepth: 0
55+
fetchTags: false
56+
57+
# Roll back agent to 2.76, see issue https://github.com/Azure/azure-cli/issues/32088#issuecomment-3283886207
58+
# NOTE: Remove the next 3 steps once issue is fixed.
4859
- powershell: |
4960
Start-Process msiexec -ArgumentList ' /x {37CCEB8D-306A-4DB4-B25B-7608A093D184} /qn' -NoNewWindow -Wait
5061
displayName: "Uninstall Azure CLI"
@@ -53,11 +64,12 @@ extends:
5364
Invoke-WebRequest -Uri "https://azurecliprod.blob.core.windows.net/msi/azure-cli-2.76.0-x64.msi" -OutFile "azure-cli-2.76.0.msi"
5465
Start-Process msiexec -ArgumentList '/i "azure-cli-2.76.0.msi" /quiet /norestart' -NoNewWindow -Wait
5566
displayName: "Install Azure CLI 2.76.0"
67+
workingDirectory: $(Agent.TempDirectory)
5668
5769
- script: |
5870
az version
5971
displayName: "Check Azure CLI version"
60-
72+
6173
# Downloads all the setup files and its dependencies.
6274
- task: AzureCLI@2
6375
displayName: 'Azure Setup'

DevOpsPipelineDefinitions/rebuild-pipeline.yaml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,10 +42,16 @@ extends:
4242
steps:
4343

4444
# Allow scripts to access the system token.
45+
# Don't fetch all history.
46+
# Don't fetch tags.
4547
- checkout: self
4648
persistCredentials: true
4749
clean: true
50+
fetchDepth: 1
51+
fetchTags: false
4852

53+
# Roll back agent to 2.76, see issue https://github.com/Azure/azure-cli/issues/32088#issuecomment-3283886207
54+
# NOTE: Remove the next 3 steps once issue is fixed.
4955
- powershell: |
5056
Start-Process msiexec -ArgumentList ' /x {37CCEB8D-306A-4DB4-B25B-7608A093D184} /qn' -NoNewWindow -Wait
5157
displayName: "Uninstall Azure CLI"
@@ -54,6 +60,7 @@ extends:
5460
Invoke-WebRequest -Uri "https://azurecliprod.blob.core.windows.net/msi/azure-cli-2.76.0-x64.msi" -OutFile "azure-cli-2.76.0.msi"
5561
Start-Process msiexec -ArgumentList '/i "azure-cli-2.76.0.msi" /quiet /norestart' -NoNewWindow -Wait
5662
displayName: "Install Azure CLI 2.76.0"
63+
workingDirectory: $(Agent.TempDirectory)
5764
5865
- script: |
5966
az version

DevOpsPipelineDefinitions/rebuild-rest-pipeline.yaml

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -38,19 +38,6 @@ extends:
3838
- checkout: none
3939
persistCredentials: true
4040

41-
- powershell: |
42-
Start-Process msiexec -ArgumentList ' /x {37CCEB8D-306A-4DB4-B25B-7608A093D184} /qn' -NoNewWindow -Wait
43-
displayName: "Uninstall Azure CLI"
44-
45-
- powershell: |
46-
Invoke-WebRequest -Uri "https://azurecliprod.blob.core.windows.net/msi/azure-cli-2.76.0-x64.msi" -OutFile "azure-cli-2.76.0.msi"
47-
Start-Process msiexec -ArgumentList '/i "azure-cli-2.76.0.msi" /quiet /norestart' -NoNewWindow -Wait
48-
displayName: "Install Azure CLI 2.76.0"
49-
50-
- script: |
51-
az version
52-
displayName: "Check Azure CLI version"
53-
5441
# Downloads all the setup files and its dependencies.
5542
- task: AzureCLI@1
5643
displayName: 'Azure Setup'

DevOpsPipelineDefinitions/validation-pipeline.yaml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,17 @@ extends:
4545
timeoutInMinutes: 0
4646

4747
steps:
48+
# Allow scripts to access the system token.
49+
# Fetch all history.
50+
# Don't fetch tags.
4851
- checkout: self
49-
persistCredentials:
50-
52+
persistCredentials: true
53+
clean: true
54+
fetchDepth: 0
55+
fetchTags: false
56+
57+
# Roll back agent to 2.76, see issue https://github.com/Azure/azure-cli/issues/32088#issuecomment-3283886207
58+
# NOTE: Remove the next 3 steps once issue is fixed.
5159
- powershell: |
5260
Start-Process msiexec -ArgumentList ' /x {37CCEB8D-306A-4DB4-B25B-7608A093D184} /qn' -NoNewWindow -Wait
5361
displayName: "Uninstall Azure CLI"
@@ -56,6 +64,7 @@ extends:
5664
Invoke-WebRequest -Uri "https://azurecliprod.blob.core.windows.net/msi/azure-cli-2.76.0-x64.msi" -OutFile "azure-cli-2.76.0.msi"
5765
Start-Process msiexec -ArgumentList '/i "azure-cli-2.76.0.msi" /quiet /norestart' -NoNewWindow -Wait
5866
displayName: "Install Azure CLI 2.76.0"
67+
workingDirectory: $(Agent.TempDirectory)
5968
6069
- script: |
6170
az version

doc/manifest/schema/1.10.0/locale.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ ManifestVersion: 1.10.0 # The manifest syntax version
212212
</details>
213213

214214
<details>
215-
<summary><b>Agreements/b> - List of package agreements</summary>
215+
<summary><b>Agreements</b> - List of package agreements</summary>
216216

217217
**Optional Field**
218218

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Created using wingetcreate 1.10.0.0
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.installer.1.12.0.schema.json
3+
4+
PackageIdentifier: Microsoft.FluentFonts
5+
PackageVersion: 1.0.0.0
6+
Installers:
7+
- Architecture: neutral
8+
InstallerType: zip
9+
InstallerUrl: https://download.microsoft.com/download/1/6/9/1698b73e-f6c5-44ad-b2cf-88d21d610897/Microsoft Fluent Fonts for non-Windows OS.zip
10+
InstallerSha256: 74E400E6A74F272608DDB16B98296F7D0B93F8423D2F0A64A850B3E1DD140DD7
11+
NestedInstallerType: font
12+
NestedInstallerFiles:
13+
- RelativeFilePath: Fluent_Calibri-Bold.ttf
14+
- RelativeFilePath: Fluent_Calibri-BoldItalic.ttf
15+
- RelativeFilePath: Fluent_Calibri-Italic.ttf
16+
- RelativeFilePath: Fluent_Calibri.ttf
17+
- RelativeFilePath: Fluent_SitkaSmall-Bold.ttf
18+
- RelativeFilePath: Fluent_SitkaSmall-BoldItalic.ttf
19+
- RelativeFilePath: Fluent_SitkaSmall-Italic.ttf
20+
- RelativeFilePath: Fluent_SitkaSmall.ttf
21+
ManifestType: installer
22+
ManifestVersion: 1.12.0
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Created using wingetcreate 1.10.0.0
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.defaultLocale.1.12.0.schema.json
3+
4+
PackageIdentifier: Microsoft.FluentFonts
5+
PackageVersion: 1.0.0.0
6+
PackageLocale: en-US
7+
Publisher: Microsoft Corporation
8+
PackageName: Microsoft Fluent Calibri and Sitka
9+
License: MIT License
10+
ShortDescription: Variants of Microsoft Calibri and Sitka fonts intended to help with visual crowding.
11+
ManifestType: defaultLocale
12+
ManifestVersion: 1.12.0
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Created using wingetcreate 1.10.0.0
2+
# yaml-language-server: $schema=https://aka.ms/winget-manifest.version.1.12.0.schema.json
3+
4+
PackageIdentifier: Microsoft.FluentFonts
5+
PackageVersion: 1.0.0.0
6+
DefaultLocale: en-US
7+
ManifestType: version
8+
ManifestVersion: 1.12.0

0 commit comments

Comments
 (0)