Skip to content

Merge to Main #2904

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 45 commits into from
Aug 13, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
45 commits
Select commit Hold shift + click to select a range
b2cca0a
Remove invalid paths that exceed Windows file name limit.
Aug 1, 2024
b494f39
Merge branch 'main' of https://github.com/microsoftgraph/msgraph-sdk-…
Aug 1, 2024
9c489b7
Updated regex
Aug 1, 2024
48d7266
Merge pull request #2883 from microsoftgraph/fix-filename-lengthlimit…
timayabi2020 Aug 1, 2024
0429704
fix: removes arm64v8 and armv7 platforms from docker since upstream i…
baywet Aug 1, 2024
3ead773
feat: automatically loads authentication module
baywet Aug 1, 2024
f6bca78
Merge pull request #2885 from microsoftgraph/bugfix/docker-platform
baywet Aug 1, 2024
f6c0f54
Adds beta version to docker
Aug 1, 2024
5334428
Updating examples
Aug 2, 2024
87c2bb0
Merge pull request #2888 from microsoftgraph/WeeklyExamplesUpdate/202…
timayabi2020 Aug 2, 2024
c14d515
Merge branch 'dev' into add-betaversion-to-docker
timayabi2020 Aug 2, 2024
964bef1
Merge pull request #2887 from microsoftgraph/add-betaversion-to-docker
timayabi2020 Aug 2, 2024
9b58e2a
Introduced BusinessScenario and BackupRestore modules with correct AP…
Aug 2, 2024
7dee5f7
Merge branch 'dev' into 2886-incorrect-module-mapping-for-powershell-…
timayabi2020 Aug 2, 2024
b357820
Merge pull request #2889 from microsoftgraph/2886-incorrect-module-ma…
timayabi2020 Aug 6, 2024
a73a372
Weekly OpenApiDocs Download.
Aug 6, 2024
1323dd9
Update New-MgBetaSecurityAuditLogQuery.md - fix example indent
mmascolino Aug 6, 2024
030c4ac
Add generated MgCommandMetadata.json. [run ci]
Aug 6, 2024
86618a1
Update Reset-MgUserAuthenticationMethodPassword.md
tajaber Aug 7, 2024
6f24927
Merge pull request #2892 from tajaber/patch-1
timayabi2020 Aug 7, 2024
b7fe3ea
Merge branch 'dev' into patch-1
timayabi2020 Aug 7, 2024
908a17b
Merge pull request #2890 from mmascolino/patch-1
timayabi2020 Aug 7, 2024
4fc6e96
Deleted errors file containing paths that were flagged because of mis…
Aug 8, 2024
39b23a3
Merge branch 'dev' into WeeklyApiRefresh/202408061208
timayabi2020 Aug 8, 2024
9a87748
Rolled back metadatacommand json file due to missing cmdlets
Aug 9, 2024
334b1e8
Weekly OpenApiDocs Download.
Aug 9, 2024
8dc85c7
Updating examples
Aug 9, 2024
61b0571
Added plain text responses to be written to console
Aug 9, 2024
83ceab1
Added network access Open Api tags to modules mapping file and genera…
Aug 9, 2024
a602aea
Add generated MgCommandMetadata.json. [run ci]
Aug 9, 2024
89b82dc
Rename parameter causing conflicts
Aug 9, 2024
0ca1464
Removed unnecessary errors file
Aug 9, 2024
a649477
Updated tests
Aug 9, 2024
c837677
Updated Find-MgGraphCommand test
Aug 9, 2024
694431c
Update src/Authentication/Authentication/Helpers/ContentHelper.cs
timayabi2020 Aug 9, 2024
a493370
Merge pull request #2895 from microsoftgraph/WeeklyExamplesUpdate/202…
timayabi2020 Aug 12, 2024
47e81da
Merge branch 'dev' into 2877-the-apis-under-global-secure-access-do-n…
timayabi2020 Aug 12, 2024
2ab29f0
Merge pull request #2897 from microsoftgraph/2877-the-apis-under-glob…
timayabi2020 Aug 12, 2024
4a6e775
Merge branch 'dev' into WeeklyApiRefresh/202408090139
timayabi2020 Aug 12, 2024
573d0da
Merge branch 'dev' into 2866-invoke-mggraphrequest-fails-to-return-a-…
timayabi2020 Aug 12, 2024
88cb77d
Merge pull request #2898 from microsoftgraph/WeeklyApiRefresh/2024080…
timayabi2020 Aug 12, 2024
e612ca6
Merge branch 'dev' into 2866-invoke-mggraphrequest-fails-to-return-a-…
timayabi2020 Aug 12, 2024
d53fd13
Merge pull request #2896 from microsoftgraph/2866-invoke-mggraphreque…
timayabi2020 Aug 12, 2024
c1d7756
Add generated MgCommandMetadata.json. [run ci]
Aug 12, 2024
a2e2a63
Merge pull request #2903 from microsoftgraph/WeeklyApiRefresh/2024081…
timayabi2020 Aug 13, 2024
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
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
uses: docker/[email protected]
with:
push: true
platforms: linux/amd64,linux/arm64/v8,linux/arm/v7
platforms: linux/amd64
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest,${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.getversion.outputs.version }}
build-args: |
VERSION=${{ steps.getversion.outputs.version }}
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ FROM mcr.microsoft.com/powershell
ARG VERSION=latest

RUN pwsh -c "if ('${VERSION}' -eq 'latest') { Install-Module Microsoft.Graph -Scope CurrentUser -AllowClobber -Force} else { Install-Module Microsoft.Graph -Scope CurrentUser -AllowClobber -Force -RequiredVersion ${VERSION} }"
RUN pwsh -c "if ('${VERSION}' -eq 'latest') { Install-Module Microsoft.Graph.Beta -Scope CurrentUser -AllowClobber -Force} else { Install-Module Microsoft.Graph.Beta -Scope CurrentUser -AllowClobber -Force -RequiredVersion ${VERSION} }"
RUN pwsh -c "if (!(Test-Path -Path \$PROFILE)) { New-Item -ItemType File -Path \$PROFILE -Force } echo 'Import-Module Microsoft.Graph.Authentication' >> \$PROFILE"

LABEL description="# Welcome to Microsoft Graph PowrShell \
To start learning about the module checkout the [getting started documentation](https://docs.microsoft.com/en-us/powershell/microsoftgraph/get-started)"
6 changes: 3 additions & 3 deletions config/ModuleMetadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,15 +27,15 @@
"versions": {
"authentication": {
"prerelease": "",
"version": "2.21.1"
"version": "2.22.0"
},
"beta": {
"prerelease": "",
"version": "2.21.1"
"version": "2.22.0"
},
"v1.0": {
"prerelease": "",
"version": "2.21.1"
"version": "2.22.0"
}
}
}
5 changes: 4 additions & 1 deletion config/ModulesMapping.jsonc
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
{
"Applications": "^applicationTemplates\\.|^applications\\.|^servicePrincipals\\.|^onPremisesPublishingProfiles\\.|^users.appRoleAssignment$|^groups.appRoleAssignment$",
"Bookings": "^solutions\\.|^bookingBusinesses\\.|^bookingCurrencies\\.",
"Bookings": "^bookingBusinesses\\.|^bookingCurrencies\\.|^solutions.Actions$|^solutions.bookingBusiness$|^solutions.bookingCurrency$|^solutions.virtualEventsRoot$|^solutions.Functions$|^solutions.solutionsRoot$",
"BusinessScenario": "^solutions.businessScenario$",
"BackupRestore": "^solutions.backupRestoreRoot$",
"Calendar": "^places\\.|^users.calendar$|^users.calendarGroup$|^users.event$|^groups.calendar$|^groups.event$",
"ChangeNotifications": "^subscriptions\\.",
"CloudCommunications": "^users.onlineMeeting$|^users.presence$|^communications\\.",
Expand All @@ -25,6 +27,7 @@
"Identity.Partner": "^tenantRelationships.delegatedAdminRelationship$|^tenantRelationships.delegatedAdminCustomer$",
"Mail": "^users.inferenceClassification$|^users.mailFolder$|^users.message$",
"ManagedTenants": "^tenantRelationships.managedTenant$",
"NetworkAccess": "^networkAccess\\.",
"Notes": "^users.onenote$|^groups.onenote$|^sites.onenote$",
"People": "^users.person$|^users.profile$|^users.officeGraphInsights$|^users.userAnalytics$",
"PersonalContacts": "^users.contactFolder$|^users.contact$",
Expand Down
Loading