Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
fd409fb
Bump .NET Core version
peombwa Jan 11, 2021
dff7feb
Add client capability to MSAL.
peombwa Jan 12, 2021
4639104
Merge branch 'dev' into features/CAE
peombwa Jan 25, 2021
e562620
Merge branch 'dev' into features/CAE
peombwa Jan 27, 2021
87e07a5
Merge branch 'dev' into features/CAE
peombwa Feb 1, 2021
098abfd
Merge branch 'dev' into features/CAE
peombwa Mar 1, 2021
db185f0
Bump MS Graph core version.
peombwa Mar 1, 2021
7a2870f
Weekly OpenApiDocs Download
Mar 17, 2021
909d4fe
Merge pull request #586 from microsoftgraph/WeeklyOpenApiDocsDownload…
peombwa Mar 17, 2021
e8b87ca
Safe Dependency Resolution For Side-By-Side Loading With Other Module…
peombwa Mar 22, 2021
30997e3
Weekly OpenApiDocs Download
Mar 31, 2021
8548c99
Merge dev
peombwa Mar 31, 2021
42426c5
Merge pull request #603 from microsoftgraph/WeeklyOpenApiDocsDownload…
peombwa Mar 31, 2021
46c5a91
Merge branch 'dev' into features/CAE
peombwa Mar 31, 2021
e096ece
Merge pull request #517 from microsoftgraph/features/CAE
peombwa Mar 31, 2021
bb68e5b
Update agreementFile remove directive (#605)
peombwa Apr 1, 2021
5882ad1
Adds missing site permissions to sites module (#607)
peombwa Apr 7, 2021
d2807b0
Weekly OpenApiDocs Download (#616)
github-actions[bot] Apr 9, 2021
5b5b2fe
identity governance: reduce unneeded EM cmdlets (#577)
markwahl-msft Apr 12, 2021
8032bc2
Weekly OpenApiDocs Download (#619)
github-actions[bot] Apr 14, 2021
ff59962
1.5.0 Pre-Release (#617)
peombwa Apr 14, 2021
94b509e
Fix exception thrown when Debug is called for Service modules. (#601)
georgend Apr 16, 2021
e5935f7
Add admin module mapping (#621)
peombwa Apr 20, 2021
d491cb7
Weekly OpenApiDocs Download (#636)
github-actions[bot] Apr 22, 2021
c344adf
Apply rename directive for *ById actions. (#638)
peombwa Apr 23, 2021
e722f52
Interactive Authentication (#618)
georgend Apr 27, 2021
ee9cfb6
Add dependency type on-load. (#642)
peombwa Apr 28, 2021
9186712
Weekly OpenApiDocs Download (#645)
github-actions[bot] Apr 28, 2021
b539e8d
Bump SDK version to 1.5.1 (#647)
peombwa Apr 29, 2021
9b3c524
Merge branch 'master' into dev
peombwa Apr 29, 2021
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions .azure-pipelines/generate-auth-module-template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,14 @@ parameters:
displayName: 'Build Number'
type: string
default: $[format('{0:yyMMddHH}', pipeline.startTime)]
- name: AZURESUBSCRIPTION
default: "Microsoft Graph Build Agents (Win+Lin)"
displayName: Azure Subscription

- name: KEYVAULT
default: "msgraph-build-keyvault"
displayName: Build Key vault


jobs:
- job: MsGraphPSSDKAuthModuleGeneration
Expand All @@ -29,6 +37,26 @@ jobs:
steps:
- template: ./install-tools-template.yml

- task: AzureKeyVault@1
inputs:
azureSubscription: $(AZURESUBSCRIPTION)
KeyVaultName: $(KEYVAULT)
SecretsFilter: '*'
RunAsPreJob: true

- task: PowerShell@2
displayName: 'Install Test Certificate'
inputs:
targetType: 'inline'
script: |
$kvSecretBytes = [System.Convert]::FromBase64String('$(MsGraphPSSDKCertificate)')
$certCollection = New-Object System.Security.Cryptography.X509Certificates.X509Certificate2Collection
$certCollection.Import($kvSecretBytes,$null,[System.Security.Cryptography.X509Certificates.X509KeyStorageFlags]::Exportable)
$store = New-Object System.Security.Cryptography.X509Certificates.X509Store("My", "CurrentUser")
$store.Open([System.Security.Cryptography.X509Certificates.OpenFlags]::ReadWrite)
$store.AddRange($certCollection)
$store.Close()

- task: PowerShell@2
displayName: 'Generate and Build Auth Module'
inputs:
Expand Down
2 changes: 2 additions & 0 deletions .azure-pipelines/integrated-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ stages:
AUTH_MODULE_PATH: $(AUTH_MODULE_PATH)
EnableSigning: true
BUILDNUMBER: $(BUILDNUMBER)
KEYVAULT: $(KEYVAULT)
AZURESUBSCRIPTION: $(AZURESUBSCRIPTION)

- stage: GenerateBetaModules
displayName: 'Generate Beta Modules (Microsoft.Graph.*)'
Expand Down
2 changes: 1 addition & 1 deletion config/ModuleMetadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
],
"releaseNotes": "See https://aka.ms/GraphPowerShell-Release.",
"assemblyOriginatorKeyFile": "35MSSharedLib1024.snk",
"version": "1.5.0"
"version": "1.5.1"
}
1 change: 1 addition & 0 deletions config/ModulesMapping.jsonc
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"Admin": "^admin\\.",
"Applications": "^applicationTemplates\\.|^applications\\.|^servicePrincipals\\.|^onPremisesPublishingProfiles\\.|^users.appRoleAssignment$|^groups.appRoleAssignment$",
"Bookings": "^bookingBusinesses\\.|^bookingCurrencies\\.",
"Calendar": "^places\\.|^users.calendar$|^users.calendarGroup$|^users.event$|^groups.calendar$|^groups.event$",
Expand Down
Loading