-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: tnorling <[email protected]>
- Loading branch information
Showing
42 changed files
with
469 additions
and
323 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,53 @@ | ||
trigger: none # Disable push triggers | ||
|
||
pr: | ||
- dev | ||
- dev | ||
|
||
jobs: | ||
- job: Build_1P | ||
displayName: 'Build with 1P library' | ||
pool: | ||
vmImage: 'ubuntu-latest' | ||
steps: | ||
- task: NodeTool@0 | ||
displayName: 'Install Node.js' | ||
inputs: | ||
versionSpec: '16.x' | ||
- checkout: git://IDDP/msal-javascript-1p | ||
- script: | | ||
npm run submodule:init | ||
displayName: Initialize submodule | ||
- script: | | ||
cd ./microsoft-authentication-library-for-js | ||
git checkout $(System.PullRequest.SourceBranch) | ||
git pull | ||
displayName: 'Pull latest changes from 3P feature branch' | ||
- task: npmAuthenticate@0 | ||
displayName: 'Authenticate to npm package registry' | ||
inputs: | ||
workingFile: ./.npmrc | ||
|
||
- task: npmAuthenticate@0 | ||
displayName: 'Authenticate to npm package registry' | ||
inputs: | ||
workingFile: ./1ds.npmrc | ||
|
||
- task: Npm@1 | ||
inputs: | ||
command: 'ci' | ||
displayName: 'Install Dependencies' | ||
|
||
- task: Npm@1 | ||
inputs: | ||
command: 'custom' | ||
customCommand: 'run build' | ||
displayName: 'Build Msal-Browser-1p' | ||
|
||
- task: Npm@1 | ||
inputs: | ||
command: 'custom' | ||
customCommand: 'run test --workspace=msal-browser-1p' | ||
displayName: 'Test Msal-Browser-1P' | ||
- job: Build_1P | ||
displayName: "Build with 1P library" | ||
pool: | ||
vmImage: "ubuntu-latest" | ||
steps: | ||
- task: NodeTool@0 | ||
displayName: "Install Node.js" | ||
inputs: | ||
versionSpec: "16.x" | ||
|
||
- checkout: git://IDDP/msal-javascript-1p | ||
- script: | | ||
npm run submodule:init | ||
displayName: Initialize submodule | ||
- script: | | ||
cd ./microsoft-authentication-library-for-js | ||
git checkout $(System.PullRequest.SourceBranch) | ||
git pull | ||
displayName: "Pull latest changes from 3P feature branch" | ||
- task: npmAuthenticate@0 | ||
displayName: "Authenticate to npm package registry" | ||
inputs: | ||
workingFile: ./.npmrc | ||
|
||
- task: npmAuthenticate@0 | ||
displayName: "Authenticate to npm package registry" | ||
inputs: | ||
workingFile: ./1ds.npmrc | ||
|
||
- task: Npm@1 | ||
inputs: | ||
command: "install" | ||
displayName: "Install Dependencies" | ||
|
||
- task: Npm@1 | ||
inputs: | ||
command: "custom" | ||
customCommand: "run build" | ||
displayName: "Build Msal-Browser-1p" | ||
|
||
- task: Npm@1 | ||
inputs: | ||
command: "custom" | ||
customCommand: "run test --workspace=msal-browser-1p" | ||
displayName: "Test Msal-Browser-1P" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,56 +1,56 @@ | ||
trigger: none # Disable push triggers | ||
|
||
pr: | ||
- dev | ||
- dev | ||
|
||
pool: | ||
vmImage: ubuntu-latest | ||
vmImage: ubuntu-latest | ||
|
||
steps: | ||
- task: NodeTool@0 | ||
displayName: 'Install Node.js' | ||
inputs: | ||
versionSpec: '18.x' | ||
|
||
- checkout: git://IDDP/msal-javascript-1p | ||
- script: | | ||
npm run submodule:init | ||
displayName: Initialize submodule | ||
|
||
- script: | | ||
cd ./microsoft-authentication-library-for-js | ||
git checkout $(System.PullRequest.SourceBranch) | ||
git pull | ||
displayName: 'Pull latest changes from 3P feature branch' | ||
|
||
- task: npmAuthenticate@0 | ||
displayName: 'Authenticate to npm package registry' | ||
inputs: | ||
workingFile: ./.npmrc | ||
|
||
- task: npmAuthenticate@0 | ||
displayName: 'Authenticate to npm package registry' | ||
inputs: | ||
workingFile: ./1ds.npmrc | ||
|
||
- script: | | ||
npm ci --workspace=samples/PerformanceTelemetrySample | ||
displayName: 'Install dependencies' | ||
|
||
- task: Npm@1 | ||
inputs: | ||
workingDir: 'samples/PerformanceTelemetrySample' | ||
command: 'custom' | ||
customCommand: 'run build:package' | ||
displayName: 'Build sample' | ||
|
||
- task: Npm@1 | ||
inputs: | ||
workingDir: 'samples/PerformanceTelemetrySample' | ||
command: 'custom' | ||
customCommand: 'run test' | ||
env: | ||
AZURE_CLIENT_SECRET: $(AZURE_CLIENT_SECRET) | ||
AZURE_TENANT_ID: $(AZURE_TENANT_ID) | ||
AZURE_CLIENT_ID: $(AZURE_CLIENT_ID) | ||
displayName: 'Run e2e tests' | ||
- task: NodeTool@0 | ||
displayName: "Install Node.js" | ||
inputs: | ||
versionSpec: "18.x" | ||
|
||
- checkout: git://IDDP/msal-javascript-1p | ||
- script: | | ||
npm run submodule:init | ||
displayName: Initialize submodule | ||
- script: | | ||
cd ./microsoft-authentication-library-for-js | ||
git checkout $(System.PullRequest.SourceBranch) | ||
git pull | ||
displayName: "Pull latest changes from 3P feature branch" | ||
- task: npmAuthenticate@0 | ||
displayName: "Authenticate to npm package registry" | ||
inputs: | ||
workingFile: ./.npmrc | ||
|
||
- task: npmAuthenticate@0 | ||
displayName: "Authenticate to npm package registry" | ||
inputs: | ||
workingFile: ./1ds.npmrc | ||
|
||
- script: | | ||
npm install --workspace=samples/PerformanceTelemetrySample | ||
displayName: "Install dependencies" | ||
- task: Npm@1 | ||
inputs: | ||
workingDir: "samples/PerformanceTelemetrySample" | ||
command: "custom" | ||
customCommand: "run build:package" | ||
displayName: "Build sample" | ||
|
||
- task: Npm@1 | ||
inputs: | ||
workingDir: "samples/PerformanceTelemetrySample" | ||
command: "custom" | ||
customCommand: "run test" | ||
env: | ||
AZURE_CLIENT_SECRET: $(AZURE_CLIENT_SECRET) | ||
AZURE_TENANT_ID: $(AZURE_TENANT_ID) | ||
AZURE_CLIENT_ID: $(AZURE_CLIENT_ID) | ||
displayName: "Run e2e tests" |
7 changes: 0 additions & 7 deletions
7
change/@azure-msal-browser-30b7bab2-c13f-46ec-bc23-99211431d098.json
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
change/@azure-msal-browser-91b9f9a9-61f8-4966-b520-8556ffe9a5e0.json
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
change/@azure-msal-browser-db1a2b10-8002-4f2a-9b54-81d7632afa03.json
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
change/@azure-msal-browser-df07c979-2cd0-4c10-bacf-bd89de87433c.json
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
change/@azure-msal-browser-e672d970-f88c-4dfa-b355-16836b75598b.json
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
change/@azure-msal-common-36947fe1-a24c-4fe7-976d-3be088e98af2.json
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
change/@azure-msal-common-70d0aa55-97ea-4486-bcca-a7e3ff2c2bc9.json
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
change/@azure-msal-common-ae2c1758-b86f-47eb-acfc-a5f85946997f.json
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
change/@azure-msal-common-b38740aa-6b13-44e0-ade3-e2a48f051efb.json
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
change/@azure-msal-common-d245eb0b-38fb-4f30-a5f6-aaafa5295fba.json
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
change/@azure-msal-common-f9f2070a-1800-44e0-8089-5c5786d51c90.json
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
change/@azure-msal-node-136746fb-c3b6-48d2-bf66-981d47a365c3.json
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
change/@azure-msal-node-4b69c21b-f2e9-4feb-9dab-fd5ba6fcfb53.json
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
change/@azure-msal-node-54978b56-aca4-4e1c-bc18-a79298d7231a.json
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
change/@azure-msal-node-extensions-be2bc48f-eda0-4092-8349-ef6f659fcf8d.json
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,27 @@ | ||
{ | ||
"name": "@azure/msal-node-extensions", | ||
"entries": [ | ||
{ | ||
"date": "Tue, 07 Nov 2023 00:01:50 GMT", | ||
"version": "1.0.7", | ||
"tag": "@azure/msal-node-extensions_v1.0.7", | ||
"comments": { | ||
"patch": [ | ||
{ | ||
"author": "[email protected]", | ||
"package": "@azure/msal-node-extensions", | ||
"commit": "25472ea4b5fb2ecef8eada945fa7c9f7eb0f2557", | ||
"comment": "fix: Environment.getUserRootDirectory() only ever executes Windows code path" | ||
}, | ||
{ | ||
"author": "beachball", | ||
"package": "@azure/msal-node-extensions", | ||
"comment": "Bump @azure/msal-common to v14.4.0", | ||
"commit": "not available" | ||
} | ||
] | ||
} | ||
}, | ||
{ | ||
"date": "Mon, 30 Oct 2023 21:38:25 GMT", | ||
"version": "1.0.6", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,18 @@ | ||
# Change Log - @azure/msal-node-extensions | ||
|
||
This log was last generated on Mon, 30 Oct 2023 21:38:25 GMT and should not be manually modified. | ||
This log was last generated on Tue, 07 Nov 2023 00:01:50 GMT and should not be manually modified. | ||
|
||
<!-- Start content --> | ||
|
||
## 1.0.7 | ||
|
||
Tue, 07 Nov 2023 00:01:50 GMT | ||
|
||
### Patches | ||
|
||
- fix: Environment.getUserRootDirectory() only ever executes Windows code path ([email protected]) | ||
- Bump @azure/msal-common to v14.4.0 | ||
|
||
## 1.0.6 | ||
|
||
Mon, 30 Oct 2023 21:38:25 GMT | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
/* eslint-disable header/header */ | ||
export const name = "@azure/msal-node-extensions"; | ||
export const version = "1.0.6"; | ||
export const version = "1.0.7"; |
Oops, something went wrong.