Skip to content

Commit 32b84fd

Browse files
authored
Chore: Release 11.1.8
1 parent cd9f4f2 commit 32b84fd

File tree

7 files changed

+16
-9
lines changed

7 files changed

+16
-9
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-
".": "11.1.7"
2+
".": "11.1.8"
33
}

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
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.1.8](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/compare/v11.1.7...v11.1.8) (2026-02-12)
6+
7+
8+
### Bug Fixes
9+
10+
* update cdn endpoint ([#4012](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/issues/4012)) ([4aaf62c](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/commit/4aaf62cc5f1ba8a7eb7a5c4cf08be430ce9a7982))
11+
512
## [11.1.7](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/compare/v11.1.6...v11.1.7) (2026-01-06)
613

714

azure-pipelines.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ extends:
9191
versionSpec: "18.16.x"
9292
displayName: "Install Node.js"
9393
- script: |
94-
npm install
94+
npm install --no-audit
9595
displayName: "npm install"
9696
- script: |
9797
npm run lint
@@ -117,7 +117,7 @@ extends:
117117
versionSpec: "18.16.x"
118118
displayName: "Install Node.js"
119119
- script: |
120-
npm install
120+
npm install --no-audit
121121
displayName: "npm install"
122122
- script: |
123123
npm run build
@@ -261,4 +261,4 @@ extends:
261261
tag: 'v$(Build.BuildNumber)'
262262
title: 'Graph Explorer - v$(Build.BuildNumber)'
263263
assets: '$(Build.ArtifactStagingDirectory)/*.zip'
264-
changeLogType: issueBased
264+
changeLogType: issueBased

package-lock.json

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

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "graph-explorer-v2",
3-
"version": "11.1.7",
3+
"version": "11.1.8",
44
"private": true,
55
"dependencies": {
66
"@augloop/types-core": "file:packages/types-core-2.16.189.tgz",

sonar-project.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ sonar.projectKey=microsoftgraph_microsoft-graph-explorer-v4
22
sonar.organization=microsoftgraph2
33
sonar.projectName=microsoft-graph-explorer-v4
44
// x-release-please-start-version
5-
sonar.projectVersion=11.1.7
5+
sonar.projectVersion=11.1.8
66
// x-release-please-end
77
sonar.host.url=https://sonarcloud.io
88

src/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ window.MonacoEnvironment = {
203203
function getWorkerFor(worker: string): string {
204204
// tslint:disable-next-line:max-line-length
205205
const WORKER_PATH =
206-
'https://graphstagingblobstorage.blob.core.windows.net/staging/vendor/bower_components/explorer-v2/build';
206+
'https://res.public.onecdn.static.microsoft/s01-prod/vendor/bower_components/explorer-v2/build';
207207

208208
return `data:text/javascript;charset=utf-8,${encodeURIComponent(`
209209
importScripts('${WORKER_PATH}/${worker}.worker.js');`)}`;

0 commit comments

Comments
 (0)