Skip to content

Commit

Permalink
Merge pull request #1327 from microsoftgraph/dev
Browse files Browse the repository at this point in the history
Release 1.105.0
  • Loading branch information
Ndiritu authored Aug 22, 2023
2 parents fc2a354 + c180d59 commit d137bb4
Show file tree
Hide file tree
Showing 130 changed files with 4,183 additions and 1,699 deletions.
36 changes: 0 additions & 36 deletions .github/workflows/bump-kiota-sdk-version.yml

This file was deleted.

11 changes: 4 additions & 7 deletions .github/workflows/bump-sdk-version.yml
Original file line number Diff line number Diff line change
@@ -1,16 +1,14 @@
# Copyright (c) Microsoft Corporation. All rights reserved.
# Licensed under the MIT License.

# This action will bump the SDK version constant when a pull request against dev is created
# from a branch path spec like beta/pipelinebuild/* or v1.0/pipelinebuild/*.

name: "bump sdk version"


on:
pull_request:
push:
branches:
- dev
- "v1.0/pipelinebuild/*"
- "beta/pipelinebuild/*"
paths:
- 'src/Model/**'
- 'src/*/Model/**'
Expand All @@ -22,7 +20,6 @@ defaults:

jobs:
bump-sdk-version:
if: startsWith(github.head_ref, 'beta/pipelinebuild/') || startsWith(github.head_ref, 'v1.0/pipelinebuild/')
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -35,4 +32,4 @@ jobs:
run: php scripts/BumpStableSdkVersion.php

- name: Commit and push changes if any
run: if git commit -am "Bump SDK version"; then git push origin $GITHUB_HEAD_REF; fi
run: if git commit -am "Bump SDK version"; then git push origin $GITHUB_REF; fi
24 changes: 24 additions & 0 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: "create release"

on:
push:
tags:
'*'

defaults:
run:
shell: bash

jobs:
create-release:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v3
- name: Create Release
uses: ncipollo/release-action@v1
with:
generateReleaseNotes: true
prerelease: ${{ contains(github.ref_name, 'RC') }}
skipIfReleaseExists: true
6 changes: 2 additions & 4 deletions .github/workflows/pr-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,9 @@ name: "Validate Pull Request"

on:
push:
branches: [ main, dev, feat/kiota-preview ]
branches: [ main, dev ]
pull_request:
branches: [ main, dev, feat/kiota-preview ]
# Add assigned to defaults as a hack to easily trigger code-gen PRs to run validation
types: [assigned, opened, synchronize, reopened]
branches: [ main, dev ]

defaults:
run:
Expand Down
57 changes: 0 additions & 57 deletions .github/workflows/update-docs.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ You can install the PHP SDK with Composer, either run `composer require microsof
```
{
"require": {
"microsoft/microsoft-graph": "^1.104.0"
"microsoft/microsoft-graph": "^1.105.0"
}
}
```
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -320,6 +320,7 @@ public function setTenantId($val)

/**
* Gets the tenantLicenseType
* The license type associated with the tenant; for example, AADFree, AADPremium1, AADPremium2.
*
* @return string|null The tenantLicenseType
*/
Expand All @@ -334,6 +335,7 @@ public function getTenantLicenseType()

/**
* Sets the tenantLicenseType
* The license type associated with the tenant; for example, AADFree, AADPremium1, AADPremium2.
*
* @param string $val The tenantLicenseType
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -259,7 +259,6 @@ public function setUnknownDeviceCount($val)

/**
* Gets the advancedThreatProtectionOnboardingDeviceSettingStates
* Not yet documented
*
* @return array|null The advancedThreatProtectionOnboardingDeviceSettingStates
*/
Expand All @@ -274,7 +273,6 @@ public function getAdvancedThreatProtectionOnboardingDeviceSettingStates()

/**
* Sets the advancedThreatProtectionOnboardingDeviceSettingStates
* Not yet documented
*
* @param AdvancedThreatProtectionOnboardingDeviceSettingState[] $val The advancedThreatProtectionOnboardingDeviceSettingStates
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ public function setMicrosoftTunnelSiteId($val)

/**
* Gets the proxyExclusionList
* List of hosts to exclude using the proxy on connections for. These hosts can use wildcards such as *.example.com.
* List of hosts to exclude using the proxy on connections for. These hosts can use wildcards such as .example.com.
*
* @return array|null The proxyExclusionList
*/
Expand All @@ -221,7 +221,7 @@ public function getProxyExclusionList()

/**
* Sets the proxyExclusionList
* List of hosts to exclude using the proxy on connections for. These hosts can use wildcards such as *.example.com.
* List of hosts to exclude using the proxy on connections for. These hosts can use wildcards such as .example.com.
*
* @param string[] $val The proxyExclusionList
*
Expand Down
4 changes: 2 additions & 2 deletions src/Beta/Microsoft/Graph/Model/AndroidLobApp.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public function setPackageId($val)

/**
* Gets the targetedPlatforms
* The platforms to which the application can be targeted. If not specified, will defauilt to Android Device Administrator.
* The platforms to which the application can be targeted. If not specified, will defauilt to Android Device Administrator. Possible values are: androidDeviceAdministrator, androidOpenSourceProject, unknownFutureValue.
*
* @return AndroidTargetedPlatforms|null The targetedPlatforms
*/
Expand All @@ -165,7 +165,7 @@ public function getTargetedPlatforms()

/**
* Sets the targetedPlatforms
* The platforms to which the application can be targeted. If not specified, will defauilt to Android Device Administrator.
* The platforms to which the application can be targeted. If not specified, will defauilt to Android Device Administrator. Possible values are: androidDeviceAdministrator, androidOpenSourceProject, unknownFutureValue.
*
* @param AndroidTargetedPlatforms $val The targetedPlatforms
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -297,7 +297,7 @@ public function setMicrosoftTunnelSiteId($val)

/**
* Gets the proxyExclusionList
* List of hosts to exclude using the proxy on connections for. These hosts can use wildcards such as *.example.com.
* List of hosts to exclude using the proxy on connections for. These hosts can use wildcards such as .example.com.
*
* @return array|null The proxyExclusionList
*/
Expand All @@ -312,7 +312,7 @@ public function getProxyExclusionList()

/**
* Sets the proxyExclusionList
* List of hosts to exclude using the proxy on connections for. These hosts can use wildcards such as *.example.com.
* List of hosts to exclude using the proxy on connections for. These hosts can use wildcards such as .example.com.
*
* @param string[] $val The proxyExclusionList
*
Expand Down
4 changes: 2 additions & 2 deletions src/Beta/Microsoft/Graph/Model/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -1319,7 +1319,7 @@ public function setHomeRealmDiscoveryPolicies($val)

/**
* Gets the owners
* Directory objects that are owners of the application. Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1).
* Directory objects that are owners of the application. Read-only. Nullable. Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1), and $select nested in $expand.
*
* @return array|null The owners
*/
Expand All @@ -1334,7 +1334,7 @@ public function getOwners()

/**
* Sets the owners
* Directory objects that are owners of the application. Read-only. Nullable. Supports $expand and $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1).
* Directory objects that are owners of the application. Read-only. Nullable. Supports $expand, $filter (/$count eq 0, /$count ne 0, /$count eq 1, /$count ne 1), and $select nested in $expand.
*
* @param DirectoryObject[] $val The owners
*
Expand Down
6 changes: 4 additions & 2 deletions src/Beta/Microsoft/Graph/Model/AuthenticationBehaviors.php
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ class AuthenticationBehaviors extends Entity
{
/**
* Gets the removeUnverifiedEmailClaim
* Removes the email claim from tokens sent to an application when the email address's domain cannot be verified.
* Removes the email claim from tokens sent to an application when the email address's domain can't be verified.
*
* @return bool|null The removeUnverifiedEmailClaim
*/
Expand All @@ -40,7 +40,7 @@ public function getRemoveUnverifiedEmailClaim()

/**
* Sets the removeUnverifiedEmailClaim
* Removes the email claim from tokens sent to an application when the email address's domain cannot be verified.
* Removes the email claim from tokens sent to an application when the email address's domain can't be verified.
*
* @param bool $val The value of the removeUnverifiedEmailClaim
*
Expand All @@ -53,6 +53,7 @@ public function setRemoveUnverifiedEmailClaim($val)
}
/**
* Gets the requireClientServicePrincipal
* Requires multitenant applications to have a service principal in the resource tenant as part of authorization checks before they're granted access tokens. This property is only modifiable for multi-tenant resource applications that rely on access from clients without a service principal and had this behavior as set to false by Microsoft. Tenant administrators should respond to security advisories sent through Azure Health Service events and the Microsoft 365 message center.
*
* @return bool|null The requireClientServicePrincipal
*/
Expand All @@ -67,6 +68,7 @@ public function getRequireClientServicePrincipal()

/**
* Sets the requireClientServicePrincipal
* Requires multitenant applications to have a service principal in the resource tenant as part of authorization checks before they're granted access tokens. This property is only modifiable for multi-tenant resource applications that rely on access from clients without a service principal and had this behavior as set to false by Microsoft. Tenant administrators should respond to security advisories sent through Azure Health Service events and the Microsoft 365 message center.
*
* @param bool $val The value of the requireClientServicePrincipal
*
Expand Down
Loading

0 comments on commit d137bb4

Please sign in to comment.