diff --git a/.pipelines/custom-templates/publish-template.yml b/.pipelines/custom-templates/publish-template.yml index ef7c336842..a276fdaccc 100644 --- a/.pipelines/custom-templates/publish-template.yml +++ b/.pipelines/custom-templates/publish-template.yml @@ -69,7 +69,6 @@ jobs: # Write NPM authToken - bash: echo $NPM_TOKEN > .npmrc displayName: Write npm authToken - workingDirectory: "${{ parameters.path }}/${{ parameters.libName }}" env: NPM_TOKEN: $(MSALJSNPMTOKEN) @@ -111,7 +110,7 @@ jobs: - task: DeleteFiles@1 displayName: Remove .npmrc file inputs: - Contents: ${{ parameters.path }}/${{ parameters.libName }}/.npmrc + Contents: /.npmrc # Install Release Scripts dependencies - task: Npm@1 diff --git a/.pipelines/post-release.yml b/.pipelines/post-release.yml deleted file mode 100644 index fc4c83563b..0000000000 --- a/.pipelines/post-release.yml +++ /dev/null @@ -1,93 +0,0 @@ -# Node.js - -# Build a general Node.js project with npm. -# Add steps that analyze code, save build artifacts, deploy, and more: -# https://docs.microsoft.com/azure/devops/pipelines/languages/javascript -pool: - vmImage: ubuntu-latest -stages: - - stage: update_packages - displayName: 'Update Packages' - jobs: - - job: update_and_push_to_github - steps: - - task: NodeTool@0 - displayName: Install Node - inputs: - versionSpec: '20.x' - checkLatest: true - - # Update each package-lock - - task: Npm@1 - displayName: 'Update package-lock' - condition: succeeded() - inputs: - command: 'install' - verbose: false - continueOnError: true - - # Get GitHub PAT - - task: AzureKeyVault@2 - condition: always() - continueOnError: true - inputs: - azureSubscription: 'MSIDLABKeyVault' - KeyVaultName: 'ADALTestInfo' - SecretsFilter: 'MSALJSGITHUB' - RunAsPreJob: true - - # Create Pull Request from post-release-month-year to dev - - task: Npm@1 - displayName: Install release scripts dependencies - condition: always() - inputs: - command: 'custom' - customCommand: 'ci' - workingDirectory: 'release-scripts/' - - # Get Release Date - - task: CmdLine@2 - displayName: 'Get Release Date' - condition: always() - inputs: - script: echo "##vso[task.setvariable variable=releaseDate]$(node getReleaseDate.js)" - workingDirectory: 'release-scripts/' - env: - TZ: "America/Los_Angeles" - - # Create branch name from release date - - task: CmdLine@2 - displayName: 'Get branch' - condition: always() - inputs: - script: echo "##vso[task.setvariable variable=branch]$(node getReleaseDate.js -branch)" - workingDirectory: 'release-scripts/' - env: - TZ: "America/Los_Angeles" - - # Commit the changes and push to GitHub - - task: CmdLine@2 - displayName: 'Commit and Push Changes' - condition: always() - inputs: - script: | - git config --global user.email "release@msaljs.com" - git config --global user.name "Release Pipeline" - git checkout -b post-release-$(branch) - git status - git add . - git commit -m "$(releaseDate) Post Release" - git remote add upstream https://${GITHUBTOKEN}@github.com/AzureAD/microsoft-authentication-library-for-js.git - git pull upstream post-release-$(branch) - git push upstream post-release-$(branch) - env: - GITHUBTOKEN: $(MSALJSGITHUB) - - # Create Pull Request through GitHub's REST API - - script: node pullRequest.js --titleDate=$(releaseDate) --branch=post-release-$(branch) - displayName: "Post Release Pull Request" - condition: succeeded() - workingDirectory: 'release-scripts/' - name: post_release_pull_request - env: - GITHUBTOKEN: $(MSALJSGITHUB) \ No newline at end of file diff --git a/change/@azure-msal-browser-f1272e21-50e9-46c5-a4a9-87281d50fcb5.json b/change/@azure-msal-browser-f1272e21-50e9-46c5-a4a9-87281d50fcb5.json deleted file mode 100644 index 55056bb010..0000000000 --- a/change/@azure-msal-browser-f1272e21-50e9-46c5-a4a9-87281d50fcb5.json +++ /dev/null @@ -1,7 +0,0 @@ -{ - "type": "prerelease", - "comment": "Expose \"CacheRecord\" as part of internals API #6291", - "packageName": "@azure/msal-browser", - "email": "kshabelko@microsoft.com", - "dependentChangeType": "patch" -} diff --git a/lib/msal-browser/CHANGELOG.json b/lib/msal-browser/CHANGELOG.json index 274b14428b..5c639eee17 100644 --- a/lib/msal-browser/CHANGELOG.json +++ b/lib/msal-browser/CHANGELOG.json @@ -87,7 +87,7 @@ "author": "kshabelko@microsoft.com", "package": "@azure/msal-browser", "commit": "2819735fe031ae36bea1d88f31f56089ac6ee21f", - "comment": "Expose \"CacheRecord\" as part of internals API #6291" + "comment": "Expose CacheRecord as part of internals API #6291" }, { "author": "thomas.norling@microsoft.com", @@ -117,7 +117,7 @@ "author": "kshabelko@microsoft.com", "package": "@azure/msal-browser", "commit": "4c99ad07b7ea40e1f2191173e58d80cec143c72d", - "comment": "Update \"PerformanceClient\" for better usability/extendibility #6270" + "comment": "Update PerformanceClient for better usability/extendibility #6270" }, { "author": "thomas.norling@microsoft.com", diff --git a/lib/msal-common/CHANGELOG.json b/lib/msal-common/CHANGELOG.json index dfcfc8ec2c..010f3a04f3 100644 --- a/lib/msal-common/CHANGELOG.json +++ b/lib/msal-common/CHANGELOG.json @@ -44,14 +44,14 @@ "package": "@azure/msal-common", "commit": "024f979a535b793d47189de65366c49080095e55", "comment": "Prioritize hardcoded metadata over network-sourced metadata #6231" - }, + } ], "minor": [ { "author": "kshabelko@microsoft.com", "package": "@azure/msal-common", "commit": "251b39a3c8b41be81c3b078902a9239e4bee0a7e", - "comment": "Catch errors thrown by \"decodeURIComponent\" #6226" + "comment": "Catch errors thrown by decodeURIComponent #6226" }, { "author": "thomas.norling@microsoft.com", @@ -69,7 +69,7 @@ "author": "kshabelko@microsoft.com", "package": "@azure/msal-common", "commit": "4c99ad07b7ea40e1f2191173e58d80cec143c72d", - "comment": "Update \"PerformanceClient\" for better usability/extendibility #6270" + "comment": "Update PerformanceClient for better usability/extendibility #6270" }, { "author": "thomas.norling@microsoft.com", diff --git a/lib/msal-node/CHANGELOG.json b/lib/msal-node/CHANGELOG.json index 186df8a92d..ef5ce4fb59 100644 --- a/lib/msal-node/CHANGELOG.json +++ b/lib/msal-node/CHANGELOG.json @@ -117,7 +117,7 @@ "author": "kshabelko@microsoft.com", "package": "@azure/msal-node", "commit": "4c99ad07b7ea40e1f2191173e58d80cec143c72d", - "comment": "Update \"PerformanceClient\" for better usability/extendibility #6270" + "comment": "Update PerformanceClient for better usability/extendibility #6270" }, { "author": "joshua.head@envoryat.com", @@ -1586,7 +1586,7 @@ "comments": { "prerelease": [ { - "comment": "Export all \"Request\" types in msal-node", + "comment": "Export all Request types in msal-node", "author": "sameera.gajjarapu@microsoft.com", "commit": "145602c7ced2c9f77a249f0abdca76f3358bd7db", "package": "@azure/msal-node"