Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
".": "11.1.7"
".": "11.1.8"
}
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@

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.

## [11.1.8](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/compare/v11.1.7...v11.1.8) (2026-02-12)


### Bug Fixes

* 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.1.7](https://github.com/microsoftgraph/microsoft-graph-explorer-v4/compare/v11.1.6...v11.1.7) (2026-01-06)


Expand Down
6 changes: 3 additions & 3 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ extends:
versionSpec: "18.16.x"
displayName: "Install Node.js"
- script: |
npm install
npm install --no-audit
displayName: "npm install"
- script: |
npm run lint
Expand All @@ -117,7 +117,7 @@ extends:
versionSpec: "18.16.x"
displayName: "Install Node.js"
- script: |
npm install
npm install --no-audit
displayName: "npm install"
- script: |
npm run build
Expand Down Expand Up @@ -261,4 +261,4 @@ extends:
tag: 'v$(Build.BuildNumber)'
title: 'Graph Explorer - v$(Build.BuildNumber)'
assets: '$(Build.ArtifactStagingDirectory)/*.zip'
changeLogType: issueBased
changeLogType: issueBased
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "graph-explorer-v2",
"version": "11.1.7",
"version": "11.1.8",
"private": true,
"dependencies": {
"@augloop/types-core": "file:packages/types-core-2.16.189.tgz",
Expand Down
2 changes: 1 addition & 1 deletion sonar-project.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ sonar.projectKey=microsoftgraph_microsoft-graph-explorer-v4
sonar.organization=microsoftgraph2
sonar.projectName=microsoft-graph-explorer-v4
// x-release-please-start-version
sonar.projectVersion=11.1.7
sonar.projectVersion=11.1.8
// x-release-please-end
sonar.host.url=https://sonarcloud.io

Expand Down
2 changes: 1 addition & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ window.MonacoEnvironment = {
function getWorkerFor(worker: string): string {
// tslint:disable-next-line:max-line-length
const WORKER_PATH =
'https://graphstagingblobstorage.blob.core.windows.net/staging/vendor/bower_components/explorer-v2/build';
'https://res.public.onecdn.static.microsoft/s01-prod/vendor/bower_components/explorer-v2/build';

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