Skip to content

Commit d1fd89a

Browse files
authored
Merge pull request #679 from microsoftgraph/dev
1.6.0 release
2 parents 3c4c2c5 + aedaa5e commit d1fd89a

191 files changed

Lines changed: 40773 additions & 10684 deletions

File tree

Some content is hidden

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

.azure-pipelines/generate-auth-module-template.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,14 @@ parameters:
2121
displayName: 'Build Number'
2222
type: string
2323
default: $[format('{0:yyMMddHH}', pipeline.startTime)]
24+
- name: AZURESUBSCRIPTION
25+
default: "Microsoft Graph Build Agents (Win+Lin)"
26+
displayName: Azure Subscription
27+
28+
- name: KEYVAULT
29+
default: "msgraph-build-keyvault"
30+
displayName: Build Key vault
31+
2432

2533
jobs:
2634
- job: MsGraphPSSDKAuthModuleGeneration
@@ -29,6 +37,26 @@ jobs:
2937
steps:
3038
- template: ./install-tools-template.yml
3139

40+
- task: AzureKeyVault@1
41+
inputs:
42+
azureSubscription: $(AZURESUBSCRIPTION)
43+
KeyVaultName: $(KEYVAULT)
44+
SecretsFilter: '*'
45+
RunAsPreJob: true
46+
47+
- task: PowerShell@2
48+
displayName: 'Install Test Certificate'
49+
inputs:
50+
targetType: 'inline'
51+
script: |
52+
$kvSecretBytes = [System.Convert]::FromBase64String('$(MsGraphPSSDKCertificate)')
53+
$certCollection = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2Collection
54+
$certCollection.Import($kvSecretBytes,$null,[System.Security.Cryptography.X509Certificates.X509KeyStorageFlags]::Exportable)
55+
$store = New-Object System.Security.Cryptography.X509Certificates.X509Store("My", "CurrentUser")
56+
$store.Open([System.Security.Cryptography.X509Certificates.OpenFlags]::ReadWrite)
57+
$store.AddRange($certCollection)
58+
$store.Close()
59+
3260
- task: PowerShell@2
3361
displayName: 'Generate and Build Auth Module'
3462
inputs:

.azure-pipelines/integrated-pipeline.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,8 @@ stages:
101101
AUTH_MODULE_PATH: $(AUTH_MODULE_PATH)
102102
EnableSigning: true
103103
BUILDNUMBER: $(BUILDNUMBER)
104+
KEYVAULT: $(KEYVAULT)
105+
AZURESUBSCRIPTION: $(AZURESUBSCRIPTION)
104106

105107
- stage: GenerateBetaModules
106108
displayName: 'Generate Beta Modules (Microsoft.Graph.*)'

.github/CODEOWNERS

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* @peombwa @ddyett @georgend

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ jobs:
4141
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4242
MESSAGE_TITLE: Weekly OpenApiDocs Download
4343
MESSAGE_BODY: "This pull request was automatically created by the GitHub Action,\n\n Contains OpenApiDocs Updates from Graph Explorer API"
44-
REVIEWERS: peombwa,ddyett,darrelmiller
45-
ASSIGNEDTO: finsharp
44+
REVIEWERS: peombwa,ddyett,darrelmiller,georgend
45+
ASSIGNEDTO: peombwa
4646
LABELS: generated
4747
BASE: dev
4848
HEAD: ${{steps.create_branch.outputs.branch}}

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.5.0"
25+
"version": "1.6.0"
2626
}

config/ModulesMapping.jsonc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,6 @@
3535
"Users": "^users.user$|^users.directoryObject$|^users.licenseDetails$|^users.notification$|^users.outlookUser$|^users.profilePhoto$|^users.userSettings$|^users.extension$|^users.oAuth2PermissionGrant$|^users.todo$",
3636
"Users.Actions": "^users.Actions$",
3737
"Users.Functions": "^users.Functions$",
38-
38+
// "WindowsUpdates": "^admin.windows$|^admin.Actions$|^admin.Functions$",
3939
// "WorkBooks": "^workbooks\\.",// Max limit.
4040
}

0 commit comments

Comments
 (0)