diff --git a/eng/pipelines/dataplane-pr.yml b/eng/pipelines/dataplane-pr.yml index 958f59797882..a8df2bf92d8d 100644 --- a/eng/pipelines/dataplane-pr.yml +++ b/eng/pipelines/dataplane-pr.yml @@ -64,6 +64,8 @@ jobs: customCommand: run build -- --head-reference=origin/$(System.PullRequest.SourceBranch) --base-reference=origin/$(System.PullRequest.TargetBranch) --logging-level=trace - job: Check_everything displayName: Check .only, .skip and version bump + pool: + vmImage: Ubuntu 20.04 steps: - task: NodeTool@0 inputs: diff --git a/sdk/graphrbac/graph/package.json b/sdk/graphrbac/graph/package.json index 49daf0969bb7..f5a877ed549c 100644 --- a/sdk/graphrbac/graph/package.json +++ b/sdk/graphrbac/graph/package.json @@ -2,7 +2,7 @@ "name": "@azure/graph", "author": "Microsoft Corporation", "description": "GraphRbacManagementClient Library with typescript type definitions for node.js and browser.", - "version": "5.0.2", + "version": "5.0.3", "dependencies": { "@azure/ms-rest-azure-js": "^2.0.0", "@azure/ms-rest-js": "^2.0.3", diff --git a/sdk/graphrbac/graph/src/graphRbacManagementClientContext.ts b/sdk/graphrbac/graph/src/graphRbacManagementClientContext.ts index e760fb06782d..c4ffda5830ca 100644 --- a/sdk/graphrbac/graph/src/graphRbacManagementClientContext.ts +++ b/sdk/graphrbac/graph/src/graphRbacManagementClientContext.ts @@ -13,7 +13,7 @@ import * as msRest from "@azure/ms-rest-js"; import * as msRestAzure from "@azure/ms-rest-azure-js"; const packageName = "@azure/graph"; -const packageVersion = "5.0.2"; +const packageVersion = "5.0.3"; export class GraphRbacManagementClientContext extends msRestAzure.AzureServiceClient { credentials: msRest.ServiceClientCredentials; @@ -37,7 +37,7 @@ export class GraphRbacManagementClientContext extends msRestAzure.AzureServiceCl if (!options) { options = {}; } - if(!options.userAgent) { + if (!options.userAgent) { const defaultUserAgent = msRestAzure.getDefaultUserAgentValue(); options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`; } @@ -59,10 +59,10 @@ export class GraphRbacManagementClientContext extends msRestAzure.AzureServiceCl this.credentials = credentials; this.tenantID = tenantID; - if(options.acceptLanguage !== null && options.acceptLanguage !== undefined) { + if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) { this.acceptLanguage = options.acceptLanguage; } - if(options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) { + if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) { this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout; } }