Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 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
9fa2b47
Refresh OpenAPI docs.
peombwa Apr 29, 2021
246725b
Add ClientId Provided by User for Delegated Option (#615)
berviantoleo Apr 30, 2021
a454224
Weekly OpenApiDocs Download (#651)
github-actions[bot] May 6, 2021
9740732
Update authentication unit tests. (#657)
peombwa May 11, 2021
b7cbd98
Add CODEOWNERS to make PRs discoverable. (#656)
peombwa May 11, 2021
3c2b4a4
Weekly OpenApiDocs Download (#661)
github-actions[bot] May 12, 2021
ba707de
Weekly OpenApiDocs Download (#667)
github-actions[bot] May 19, 2021
e8143b6
IG: add parameter sets to construct assignment requests (#627)
markwahl-msft May 19, 2021
eee9318
identity governance: additional cmdlets for filtering entitlement mgm…
markwahl-msft May 19, 2021
2ec5950
identity governance: add parameters for Get-MgEntitlementManagement* …
markwahl-msft May 19, 2021
29516a5
supress invoke of my() for accesspackageassignmentresourcerole (#666)
markwahl-msft May 19, 2021
a3b2cb1
Remove Invalid Commands (#670)
peombwa May 22, 2021
6cbf2eb
Enable Support for PowerShell ISE by handling output via Cmdlet metho…
georgend May 24, 2021
0cc1f2f
Add WindowsUpdates module (#671)
peombwa May 25, 2021
5604f3d
Weekly OpenApiDocs Download (#678)
github-actions[bot] Jun 2, 2021
fd2758b
Bump SDK version. (#672)
peombwa Jun 2, 2021
54b0fd3
identity governance: add cmdlets for identity sources of connected or…
markwahl-msft Jun 2, 2021
aedaa5e
Exclude WindowsUpdates module.
peombwa Jun 2, 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
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @peombwa @ddyett @georgend
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
MESSAGE_TITLE: Weekly OpenApiDocs Download
MESSAGE_BODY: "This pull request was automatically created by the GitHub Action,\n\n Contains OpenApiDocs Updates from Graph Explorer API"
REVIEWERS: peombwa,ddyett,darrelmiller
ASSIGNEDTO: finsharp
REVIEWERS: peombwa,ddyett,darrelmiller,georgend
ASSIGNEDTO: peombwa
LABELS: generated
BASE: dev
HEAD: ${{steps.create_branch.outputs.branch}}
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.6.0"
}
2 changes: 1 addition & 1 deletion config/ModulesMapping.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,6 @@
"Users": "^users.user$|^users.directoryObject$|^users.licenseDetails$|^users.notification$|^users.outlookUser$|^users.profilePhoto$|^users.userSettings$|^users.extension$|^users.oAuth2PermissionGrant$|^users.todo$",
"Users.Actions": "^users.Actions$",
"Users.Functions": "^users.Functions$",

// "WindowsUpdates": "^admin.windows$|^admin.Actions$|^admin.Functions$",
// "WorkBooks": "^workbooks\\.",// Max limit.
}
Loading