Skip to content

Commit e90f6a2

Browse files
authored
Chore: Release 11.0.0 (#3760)
* fix: ensure initialize completes before other invocations (#3714) * Dependabot upgrades - March (#3702) * fix: update pipeline to include new service connection (#3733) * update connection value * remove playwright test * feat: fluent v9 upgrades feature branch (#3428) * Revert "feat: fluent v9 upgrades feature branch (#3428)" (#3757) This reverts commit 31f8fab. * refactor!: Fluent V9 Migration upgrades (#3758) * fix: update doc links (#3729) * chore(dev): release 11.0.0 (#3717) * fix merge * remove duplication in changelog
1 parent db4bfa5 commit e90f6a2

File tree

174 files changed

+7603
-8273
lines changed

Some content is hidden

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

174 files changed

+7603
-8273
lines changed

.release-please-manifest.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
{
2-
".": "10.5.4"
2+
".": "11.0.0"
33
}

.vscode/settings.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@
2323
"package.json": "package-lock.json, .npmrc"
2424
},
2525
"cSpell.words": [
26-
"fluentui"
26+
"fluentui",
27+
"noreferrer"
2728
],
2829
}

CHANGELOG.md

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22

33
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
44

5+
## [11.0.0](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/compare/v10.5.4...v11.0.0) (2025-04-02)
6+
7+
8+
### ⚠ BREAKING CHANGES
9+
10+
* Fluent V9 Migration upgrades ([#3758](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/issues/3758))
11+
12+
13+
### Bug Fixes
14+
15+
* ensure initialize completes before other invocations ([#3714](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/issues/3714)) ([1c9ef08](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/commit/1c9ef08b52f9841c99954ef71caafdbcfdcfebe6))
16+
* update doc links ([#3729](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/issues/3729)) ([3f0b96c](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/commit/3f0b96cdaf93f83f886702b035780387227eed7f))
17+
* update pipeline to include new service connection ([#3733](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/issues/3733)) ([36ccd02](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/commit/36ccd026de4eca86687a90d9a4479de4270a23e3))
18+
19+
20+
### Code Refactoring
21+
22+
* Fluent V9 Migration upgrades ([#3758](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/issues/3758)) ([39df321](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/commit/39df321104ec495e2c0b2b7bed6ad2d1cb3a334f))
23+
524
## [10.5.4](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/compare/v10.5.3...v10.5.4) (2025-03-05)
625

726

__mocks__/@azure/msal-browser

Lines changed: 24 additions & 23 deletions
Original file line numberDiff line numberDiff line change
@@ -1,29 +1,30 @@
11
export class PublicClientApplication {
2-
constructor(configuration: any) {
3-
// Mock constructor
4-
}
2+
constructor(configuration: any) {
3+
// Mock constructor
4+
}
55

6-
initialize() {
7-
// Mock initialize method
8-
}
6+
async initialize() {
7+
// Mock implementation of initialize
8+
return Promise.resolve();
9+
}
910

10-
acquireTokenSilent() {
11-
// Mock acquireTokenSilent method
12-
return Promise.resolve({ accessToken: 'mock-access-token' });
13-
}
11+
acquireTokenSilent() {
12+
// Mock acquireTokenSilent method
13+
return Promise.resolve({ accessToken: 'mock-access-token' });
14+
}
1415

15-
acquireTokenPopup() {
16-
// Mock acquireTokenPopup method
17-
return Promise.resolve({ accessToken: 'mock-access-token' });
18-
}
16+
acquireTokenPopup() {
17+
// Mock acquireTokenPopup method
18+
return Promise.resolve({ accessToken: 'mock-access-token' });
19+
}
1920

20-
loginPopup() {
21-
// Mock loginPopup method
22-
return Promise.resolve({ account: { username: 'mock-user' } });
23-
}
21+
loginPopup() {
22+
// Mock loginPopup method
23+
return Promise.resolve({ account: { username: 'mock-user' } });
24+
}
2425

25-
logout() {
26-
// Mock logout method
27-
return Promise.resolve();
28-
}
29-
}
26+
logout() {
27+
// Mock logout method
28+
return Promise.resolve();
29+
}
30+
}

azure-pipelines.yml

Lines changed: 3 additions & 47 deletions
Original file line numberDiff line numberDiff line change
@@ -109,50 +109,6 @@ extends:
109109
npm run build
110110
displayName: "Run build"
111111
- job: Two
112-
displayName: "Run playwright tests"
113-
condition: eq(variables['isDev'], 'true')
114-
steps:
115-
- task: NodeTool@0
116-
inputs:
117-
versionSpec: "18.16.x"
118-
displayName: "Install npm"
119-
- script: |
120-
npm install
121-
displayName: "npm install"
122-
- script: |
123-
npm install -D @playwright/test
124-
npx playwright install-deps
125-
displayName: "Install playwright dependancies"
126-
- script: |
127-
npx playwright install
128-
displayName: "Install playwright"
129-
- script: |
130-
npm run test-playwright-accessibility
131-
displayName: "Run accessibility tests"
132-
- script: |
133-
set CI=true
134-
npm run test-playwright
135-
env:
136-
REACT_APP_CLIENT_ID: $(REACT_APP_PLAYWRIGHT_TEST_CLIENT_ID)
137-
REACT_APP_INSTRUMENTATION_KEY: $(REACT_APP_STAGING_INSTRUMENTATION_KEY)
138-
REACT_APP_CONNECTION_STRING: $(REACT_APP_STAGING_CONNECTION_STRING)
139-
REACT_APP_FEEDBACK_CAMPAIGN_ID: $(REACT_APP_STAGING_FEEDBACK_CAMPAIGN_ID)
140-
REACT_APP_NPS_FEEDBACK_CAMPAIGN_ID: $(REACT_APP_NPS_FEEDBACK_CAMPAIGN_ID)
141-
REACT_APP_NOMINATION_PERIOD: $(REACT_APP_NOMINATION_PERIOD)
142-
REACT_APP_COOLDOWN_PERIOD: $(REACT_APP_COOLDOWN_PERIOD)
143-
REACT_APP_USAGE_TIME: $(REACT_APP_USAGE_TIME)
144-
PLAYWRIGHT_TESTS_BASE_URL: $(PLAYWRIGHT_TESTS_BASE_URL)
145-
PLAYWRIGHT_TESTS_USERNAME: $(PLAYWRIGHT_TESTS_USERNAME)
146-
PLAYWRIGHT_TESTS_PASSWORD: $(PLAYWRIGHT_TESTS_PASSWORD)
147-
displayName: "Run playwright tests"
148-
templateContext:
149-
outputs:
150-
- output: pipelineArtifact
151-
displayName: 'Publish test results'
152-
condition: always()
153-
targetPath: $(System.DefaultWorkingDirectory)/playwright-report
154-
artifactName: playwright-report
155-
- job: Three
156112
displayName: "Publish artifacts"
157113
dependsOn: One
158114
steps:
@@ -252,7 +208,7 @@ extends:
252208
parameters:
253209
directory: 'microsoft-graph-explorer-v4'
254210
repoName: ReleasePipelines
255-
dependsOn: ['Three']
211+
dependsOn: ['Two']
256212

257213
- stage: DeployProduction
258214
condition: and(contains(variables['build.sourceBranch'], 'refs/heads/master'), succeeded())
@@ -275,7 +231,7 @@ extends:
275231
displayName: 'Deploy to portal - staging'
276232
inputs:
277233
SourcePath: '$(Build.ArtifactStagingDirectory)/drop/*'
278-
azureSubscription: 'Federated GE-Portals Managed Identity Connection'
234+
azureSubscription: 'Federated Portals Managed Identity Connection'
279235
Destination: AzureBlob
280236
storage: graphstagingblobstorage
281237
ContainerName: staging
@@ -285,7 +241,7 @@ extends:
285241
displayName: 'Deploy to portal - production'
286242
inputs:
287243
SourcePath: '$(Build.ArtifactStagingDirectory)/drop/*'
288-
azureSubscription: 'Federated GE-Portals Managed Identity Connection'
244+
azureSubscription: 'Federated Portals Managed Identity Connection'
289245
Destination: AzureBlob
290246
storage: graphprodblobstorage
291247
ContainerName: prod

0 commit comments

Comments
 (0)