Skip to content

Commit bc355b0

Browse files
authored
Merge pull request #2904 from microsoftgraph/dev
Merge to Main
2 parents 8129486 + a2e2a63 commit bc355b0

File tree

139 files changed

+280833
-260125
lines changed

Some content is hidden

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

139 files changed

+280833
-260125
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
uses: docker/build-push-action@v6.5.0
3737
with:
3838
push: true
39-
platforms: linux/amd64,linux/arm64/v8,linux/arm/v7
39+
platforms: linux/amd64
4040
tags: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest,${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{ steps.getversion.outputs.version }}
4141
build-args: |
4242
VERSION=${{ steps.getversion.outputs.version }}

Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ FROM mcr.microsoft.com/powershell
33
ARG VERSION=latest
44

55
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} }"
6+
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} }"
7+
RUN pwsh -c "if (!(Test-Path -Path \$PROFILE)) { New-Item -ItemType File -Path \$PROFILE -Force } echo 'Import-Module Microsoft.Graph.Authentication' >> \$PROFILE"
68

79
LABEL description="# Welcome to Microsoft Graph PowrShell \
810
To start learning about the module checkout the [getting started documentation](https://docs.microsoft.com/en-us/powershell/microsoftgraph/get-started)"

config/ModuleMetadata.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@
2727
"versions": {
2828
"authentication": {
2929
"prerelease": "",
30-
"version": "2.21.1"
30+
"version": "2.22.0"
3131
},
3232
"beta": {
3333
"prerelease": "",
34-
"version": "2.21.1"
34+
"version": "2.22.0"
3535
},
3636
"v1.0": {
3737
"prerelease": "",
38-
"version": "2.21.1"
38+
"version": "2.22.0"
3939
}
4040
}
4141
}

config/ModulesMapping.jsonc

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
{
22
"Applications": "^applicationTemplates\\.|^applications\\.|^servicePrincipals\\.|^onPremisesPublishingProfiles\\.|^users.appRoleAssignment$|^groups.appRoleAssignment$",
3-
"Bookings": "^solutions\\.|^bookingBusinesses\\.|^bookingCurrencies\\.",
3+
"Bookings": "^bookingBusinesses\\.|^bookingCurrencies\\.|^solutions.Actions$|^solutions.bookingBusiness$|^solutions.bookingCurrency$|^solutions.virtualEventsRoot$|^solutions.Functions$|^solutions.solutionsRoot$",
4+
"BusinessScenario": "^solutions.businessScenario$",
5+
"BackupRestore": "^solutions.backupRestoreRoot$",
46
"Calendar": "^places\\.|^users.calendar$|^users.calendarGroup$|^users.event$|^groups.calendar$|^groups.event$",
57
"ChangeNotifications": "^subscriptions\\.",
68
"CloudCommunications": "^users.onlineMeeting$|^users.presence$|^communications\\.",
@@ -25,6 +27,7 @@
2527
"Identity.Partner": "^tenantRelationships.delegatedAdminRelationship$|^tenantRelationships.delegatedAdminCustomer$",
2628
"Mail": "^users.inferenceClassification$|^users.mailFolder$|^users.message$",
2729
"ManagedTenants": "^tenantRelationships.managedTenant$",
30+
"NetworkAccess": "^networkAccess\\.",
2831
"Notes": "^users.onenote$|^groups.onenote$|^sites.onenote$",
2932
"People": "^users.person$|^users.profile$|^users.officeGraphInsights$|^users.userAnalytics$",
3033
"PersonalContacts": "^users.contactFolder$|^users.contact$",

0 commit comments

Comments
 (0)