Skip to content
This repository was archived by the owner on Oct 5, 2023. It is now read-only.

Commit fd8b7c6

Browse files
authored
Merge pull request #352 from microsoftgraph/dev
Merges dev to master
2 parents 9f7e99b + 6bc1270 commit fd8b7c6

6 files changed

Lines changed: 464 additions & 396 deletions

File tree

SamplesDashboard/SamplesDashboard/ClientApp/package-lock.json

Lines changed: 439 additions & 381 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

SamplesDashboard/SamplesDashboard/ClientApp/package.json

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
"version": "0.2.0",
44
"private": true,
55
"dependencies": {
6-
"@babel/runtime": "7.14.0",
7-
"@fluentui/react": "8.14.11",
6+
"@babel/runtime": "7.14.6",
7+
"@fluentui/react": "8.23.10",
88
"@types/query-string": "6.3.0",
99
"bootstrap": "4.6.0",
1010
"connected-react-router": "6.9.1",
@@ -23,25 +23,25 @@
2323
"reactstrap": "7.0.2",
2424
"redux": "4.1.0",
2525
"redux-thunk": "2.3.0",
26-
"typescript": "4.2.4"
26+
"typescript": "4.3.5"
2727
},
2828
"devDependencies": {
29-
"@types/history": "4.7.8",
29+
"@types/history": "4.7.9",
3030
"@types/jest": "24.9.1",
3131
"@types/node": "10.12.18",
3232
"@types/react": "16.14.6",
3333
"@types/react-dom": "16.9.12",
34-
"@types/react-redux": "7.1.16",
35-
"@types/react-router": "5.1.4",
34+
"@types/react-redux": "7.1.18",
35+
"@types/react-router": "5.1.16",
3636
"@types/react-router-dom": "5.1.7",
3737
"@types/reactstrap": "8.4.1",
38-
"@typescript-eslint/parser": "4.24.0",
38+
"@typescript-eslint/parser": "4.28.2",
3939
"cross-env": "5.2.0",
40-
"eslint": "7.26.0",
41-
"eslint-plugin-flowtype": "5.7.2",
42-
"eslint-plugin-import": "2.23.2",
40+
"eslint": "7.30.0",
41+
"eslint-plugin-flowtype": "5.8.0",
42+
"eslint-plugin-import": "2.23.4",
4343
"eslint-plugin-jsx-a11y": "6.4.1",
44-
"eslint-plugin-react": "7.23.2"
44+
"eslint-plugin-react": "7.24.0"
4545
},
4646
"scripts": {
4747
"start": "react-scripts start",

SamplesDashboard/SamplesDashboard/ClientApp/src/views/repositories/Repositories.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -469,7 +469,7 @@ function renderItemColumn(item: IRepositoryItem, index: number | undefined, colu
469469

470470
case 'Security Alerts':
471471
if (vulnerabilityAlertsCount > 0) {
472-
return <a href={`${url}/network/alerts`} target='_blank' rel='noopener noreferrer'>
472+
return <a href={`${url}/security/dependabot`} target='_blank' rel='noopener noreferrer'>
473473
<FontIcon iconName='WarningSolid' className={classNames.yellow} />
474474
<span>{vulnerabilityAlertsCount} </span></a>;
475475
}

SamplesDashboard/SamplesDashboard/SamplesDashboard.csproj

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
</PropertyGroup>
1414

1515
<ItemGroup>
16-
<PackageReference Include="AngleSharp" Version="0.15.0" />
16+
<PackageReference Include="AngleSharp" Version="0.16.0" />
1717
<PackageReference Include="GitHubJwt" Version="0.0.4" />
1818
<PackageReference Include="GraphQL.Client" Version="2.0.0" />
1919
<PackageReference Include="IdentityServer4.EntityFramework.Storage" Version="3.0.0" />
@@ -31,11 +31,11 @@
3131
<PackageReference Include="Microsoft.Extensions.Configuration.UserSecrets" Version="5.0.0" />
3232
<PackageReference Include="Microsoft.Extensions.Http.Polly" Version="3.1.2" />
3333
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="3.0.0" />
34-
<PackageReference Include="Microsoft.Identity.Client" Version="4.31.0" />
34+
<PackageReference Include="Microsoft.Identity.Client" Version="4.33.0" />
3535
<PackageReference Include="Microsoft.IdentityModel.Clients.ActiveDirectory" Version="5.2.9" />
3636
<PackageReference Include="Microsoft.VisualStudio.Web.BrowserLink" Version="2.2.0" />
3737
<PackageReference Include="Microsoft.VisualStudio.Web.CodeGeneration.Design" Version="3.0.0" />
38-
<PackageReference Include="NuGet.Protocol" Version="5.9.1" />
38+
<PackageReference Include="NuGet.Protocol" Version="5.10.0" />
3939
<PackageReference Include="Octokit" Version="0.47.0" />
4040
<PackageReference Include="OfficeUIFabric" Version="2.6.3" />
4141
<PackageReference Include="Polly" Version="7.2.2" />

pipelines/release.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,11 @@ steps:
7272
!**/*TestAdapter.dll
7373
!**/obj/**
7474
diagnosticsEnabled: true
75+
env:
76+
AZURECLIENTID: $(AzureClientId)
77+
AZURECLIENTSECRET: $(AzureClientSecret)
78+
KEYIDENTIFIER: $(KeyIdentifier)
79+
TENANTID: $(TenantId)
7580

7681
- task: PublishTestResults@2
7782
displayName: "Publish Test Results"

pipelines/validatePR.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,11 @@ steps:
6666
command: test
6767
projects: '**/*Tests/*.csproj'
6868
arguments: '--configuration $(buildConfiguration) --logger trx'
69+
env:
70+
AZURECLIENTID: $(AzureClientId)
71+
AZURECLIENTSECRET: $(AzureClientSecret)
72+
KEYIDENTIFIER: $(KeyIdentifier)
73+
TENANTID: $(TenantId)
6974

7075
- task: PublishTestResults@2
7176
displayName: "Publish Test Results"

0 commit comments

Comments
 (0)