diff --git a/.release-please-manifest.json b/.release-please-manifest.json index ead4828b9..3af02979c 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,3 +1,3 @@ { - ".": "11.1.7" + ".": "11.1.8" } \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index 154d9fc38..305301a1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 7ddb72bf8..0ecf4bd52 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -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 @@ -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 @@ -261,4 +261,4 @@ extends: tag: 'v$(Build.BuildNumber)' title: 'Graph Explorer - v$(Build.BuildNumber)' assets: '$(Build.ArtifactStagingDirectory)/*.zip' - changeLogType: issueBased \ No newline at end of file + changeLogType: issueBased diff --git a/package-lock.json b/package-lock.json index bf537cf7a..ce4ac7961 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "graph-explorer-v2", - "version": "11.1.7", + "version": "11.1.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "graph-explorer-v2", - "version": "11.1.7", + "version": "11.1.8", "dependencies": { "@augloop/types-core": "file:packages/types-core-2.16.189.tgz", "@axe-core/webdriverjs": "4.10.1", diff --git a/package.json b/package.json index e7fccf6bd..a4741145d 100644 --- a/package.json +++ b/package.json @@ -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", diff --git a/sonar-project.properties b/sonar-project.properties index 50fac97e5..7c2ae5e97 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -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 diff --git a/src/index.tsx b/src/index.tsx index 1778085cd..dae015156 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -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');`)}`;