Skip to content

Commit 75d7cee

Browse files
authored
Merge pull request #1017 from microsoftgraph/dev
1.9.2 Release
2 parents f076430 + 2879b49 commit 75d7cee

File tree

158 files changed

+116249
-90715
lines changed

Some content is hidden

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

158 files changed

+116249
-90715
lines changed

.azure-pipelines/common-templates/checkout.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,14 @@ steps:
3232
git pull
3333
git status
3434
35+
- task: Bash@3
36+
displayName: "Update Git Submodules"
37+
inputs:
38+
targetType: inline
39+
script: |
40+
git pull --recurse-submodules
41+
git submodule update --init --recursive --remote
42+
3543
- task: securedevelopmentteam.vss-secure-development-tools.build-task-credscan.CredScan@2
3644
displayName: "Run CredScan"
3745
inputs:

.azure-pipelines/common-templates/download-openapi-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,7 @@ jobs:
9999
# Bump meta-module minor version
100100
Write-Host "Bumping Microsoft.Graph to $NewMetaModuleVersion."
101101
& "$(System.DefaultWorkingDirectory)\tools\SetMetaModuleVersion.ps1" -VersionNumber $NewMetaModuleVersion
102+
& "$(System.DefaultWorkingDirectory)\tools\SetServiceModuleVersion.ps1" -VersionNumber $NewMetaModuleVersion -SetAuthModule
102103
103104
# Calculate existing service module version
104105
"$(OpenAPIDocDiff.ModulesWithChanges)" -split " " | ForEach-Object {
@@ -107,7 +108,6 @@ jobs:
107108
$ModuleVersion = [System.Version]($Module.Version)
108109
$NewModuleVersion = "$($ModuleVersion.Major).$($ModuleVersion.Minor).$($ModuleVersion.Build + 1)"
109110
Write-Host "Bumping $_ to $NewModuleVersion."
110-
. "$(System.DefaultWorkingDirectory)\tools\SetServiceModuleVersion.ps1" -VersionNumber $NewModuleVersion -Modules $_
111111
} catch {
112112
if ($_.Exception.Message -like "No match*") {
113113
Write-Warning "$_. Version will be set to $NewMetaModuleVersion."

.azure-pipelines/common-templates/install-tools-template.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,9 +40,9 @@ steps:
4040
Write-Host (Get-Host).Version
4141
4242
- task: NodeTool@0
43-
displayName: 'Install NodeJs 14.11.0'
43+
displayName: 'Install NodeJs'
4444
inputs:
45-
versionSpec: '14.11.0'
45+
versionSpec: '14.18.2'
4646
checkLatest: true # Optional
4747

4848
- task: Npm@1
@@ -51,6 +51,12 @@ steps:
5151
command: 'custom'
5252
customCommand: 'install -g autorest@latest'
5353

54+
- task: Npm@1
55+
displayName: 'Install Rush'
56+
inputs:
57+
command: 'custom'
58+
customCommand: 'install -g @microsoft/rush'
59+
5460
- task: PowerShell@2
5561
displayName: 'Register PS Repository'
5662
inputs:

.gitmodules

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[submodule "autorest.powershell"]
2+
path = autorest.powershell
3+
url = https://github.com/Azure/autorest.powershell.git
4+
branch = msgraph

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ There is a set of samples in the `samples` folder to help in getting started wit
5252
5353
``` powershell
5454
# Using your own access token.
55-
Connect-MgGraph -Scopes "User.Read.All", "Group.ReadWrite.All" -AccessToken $AccessToken
55+
Connect-MgGraph -AccessToken $AccessToken
5656
```
5757
5858
- App-only access via Client Credential with a certificate.
-5.81 MB
Binary file not shown.
-5.72 MB
Binary file not shown.
-5.53 MB
Binary file not shown.

autorest.powershell

Submodule autorest.powershell added at 0132d23

config/ModuleMetadata.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,5 +22,5 @@
2222
],
2323
"releaseNotes": "See https://aka.ms/GraphPowerShell-Release.",
2424
"assemblyOriginatorKeyFile": "35MSSharedLib1024.snk",
25-
"version": "1.9.1"
25+
"version": "1.9.2"
2626
}

0 commit comments

Comments
 (0)