From 1a68225875eb81d221aa8e20e30662558e4925e1 Mon Sep 17 00:00:00 2001 From: Bharat Middha <5100938+bmiddha@users.noreply.github.com> Date: Tue, 8 Sep 2026 17:30:47 -0700 Subject: [PATCH 1/9] Fix split package publishing flows Restore the old publishing cohort semantics in the split bump pipelines, filter package artifacts through the approved feed proxy, and allow recovery publishing from a specific bump run. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .../azure-pipelines/esrp-publish-rush.yaml | 5 + .../esrp-publish-rushstack.yaml | 5 + .../templates/bump-versions-stages.yaml | 22 ++ .../templates/esrp-publish-stages.yaml | 28 +- .../azure-pipelines/templates/pack.yaml | 39 ++- common/config/rush/.npmrc | 1 + common/scripts/publish-cohort.js | 253 ++++++++++++++++++ 7 files changed, 335 insertions(+), 18 deletions(-) create mode 100644 common/scripts/publish-cohort.js diff --git a/common/config/azure-pipelines/esrp-publish-rush.yaml b/common/config/azure-pipelines/esrp-publish-rush.yaml index a54830bb92..576b1a4f79 100644 --- a/common/config/azure-pipelines/esrp-publish-rush.yaml +++ b/common/config/azure-pipelines/esrp-publish-rush.yaml @@ -30,6 +30,10 @@ parameters: displayName: 'Commit SHA Override (for testing)' type: string default: $(Build.SourceVersion) + - name: BumpPipelineRunIdOverride + displayName: 'Bump pipeline run ID override (for recovery)' + type: number + default: 0 variables: - name: FORCE_COLOR @@ -68,3 +72,4 @@ extends: NpmTag: ${{ parameters.NpmTag }} DryRun: ${{ parameters.DryRun }} CommitShaOverride: ${{ parameters.CommitShaOverride }} + BumpPipelineRunIdOverride: ${{ parameters.BumpPipelineRunIdOverride }} diff --git a/common/config/azure-pipelines/esrp-publish-rushstack.yaml b/common/config/azure-pipelines/esrp-publish-rushstack.yaml index b420f39a52..7c8adcf125 100644 --- a/common/config/azure-pipelines/esrp-publish-rushstack.yaml +++ b/common/config/azure-pipelines/esrp-publish-rushstack.yaml @@ -30,6 +30,10 @@ parameters: displayName: 'Commit SHA Override (for testing)' type: string default: $(Build.SourceVersion) + - name: BumpPipelineRunIdOverride + displayName: 'Bump pipeline run ID override (for recovery)' + type: number + default: 0 variables: - name: FORCE_COLOR @@ -68,3 +72,4 @@ extends: NpmTag: ${{ parameters.NpmTag }} DryRun: ${{ parameters.DryRun }} CommitShaOverride: ${{ parameters.CommitShaOverride }} + BumpPipelineRunIdOverride: ${{ parameters.BumpPipelineRunIdOverride }} diff --git a/common/config/azure-pipelines/templates/bump-versions-stages.yaml b/common/config/azure-pipelines/templates/bump-versions-stages.yaml index cabc237130..00b77748f0 100644 --- a/common/config/azure-pipelines/templates/bump-versions-stages.yaml +++ b/common/config/azure-pipelines/templates/bump-versions-stages.yaml @@ -71,10 +71,25 @@ stages: - template: /common/config/azure-pipelines/templates/build.yaml@self + # "noRush" is a pipeline cohort, not a Rush version policy. The old publishing flow + # achieved the separation by processing non-Rush changes before the Rush lockstep bump. + # Preserve that behavior while the two cohorts run in independent pipelines. + - script: > + node common/scripts/publish-cohort.js partition-changes + --cohort ${{ parameters.VersionPolicyName }} + --backup-path $(Agent.TempDirectory)/excluded-publish-changes + displayName: 'Select ${{ parameters.VersionPolicyName }} change files' + - template: /common/config/azure-pipelines/templates/bump-versions.yaml@self parameters: VersionPolicyName: ${{ parameters.VersionPolicyName }} + - script: > + node common/scripts/publish-cohort.js restore-changes + --backup-path $(Agent.TempDirectory)/excluded-publish-changes + displayName: 'Restore other publishing cohort change files' + condition: succeededOrFailed() + - bash: | git add -u -- common/changes git add -- '**/CHANGELOG.*' '**/package.json' @@ -117,6 +132,13 @@ stages: parameters: VersionPolicyName: ${{ parameters.VersionPolicyName }} + - bash: | + if [ "$(HasChanges)" = "true" ] && [ "$(HasPackages)" != "true" ]; then + echo "##[error]Version bump produced no unpublished package tarballs." + exit 1 + fi + displayName: 'Verify package artifact' + - template: /common/config/azure-pipelines/templates/post-publish.yaml@self - template: /common/config/azure-pipelines/templates/push-and-create-github-pr.yaml@self diff --git a/common/config/azure-pipelines/templates/esrp-publish-stages.yaml b/common/config/azure-pipelines/templates/esrp-publish-stages.yaml index 54f9e85b24..e92803fc3a 100644 --- a/common/config/azure-pipelines/templates/esrp-publish-stages.yaml +++ b/common/config/azure-pipelines/templates/esrp-publish-stages.yaml @@ -24,6 +24,10 @@ parameters: type: boolean - name: CommitShaOverride type: string + # Allows a packaging run to be replayed when a previous release artifact was incomplete. + - name: BumpPipelineRunIdOverride + type: number + default: 0 stages: - stage: Prepare${{ parameters.StageNameSuffix }} @@ -60,13 +64,23 @@ stages: displayName: 'Initialize artifact staging directories' condition: always() - - template: /common/config/azure-pipelines/templates/find-bump-pipeline-run.yaml@self - parameters: - PipelineId: ${{ parameters.BumpPipelineId }} - CommitSha: ${{ coalesce(parameters.CommitShaOverride, '$(Build.SourceVersion)') }} - TeamProject: ${{ parameters.BumpPipelineProject }} - Name: FindBumpRun - WorkingDirectory: $(Build.SourcesDirectory) + - ${{ if gt(parameters.BumpPipelineRunIdOverride, 0) }}: + - bash: | + echo "Using bump pipeline run override ${{ parameters.BumpPipelineRunIdOverride }}" + echo "##vso[task.setvariable variable=IsVersionBumpMerge;isOutput=true]true" + echo "##vso[task.setvariable variable=BumpPipelineDefinitionId;isOutput=true]${{ parameters.BumpPipelineId }}" + echo "##vso[task.setvariable variable=BumpPipelineRunId;isOutput=true]${{ parameters.BumpPipelineRunIdOverride }}" + name: FindBumpRun + displayName: 'Use Bump Pipeline Run Override' + + - ${{ else }}: + - template: /common/config/azure-pipelines/templates/find-bump-pipeline-run.yaml@self + parameters: + PipelineId: ${{ parameters.BumpPipelineId }} + CommitSha: ${{ coalesce(parameters.CommitShaOverride, '$(Build.SourceVersion)') }} + TeamProject: ${{ parameters.BumpPipelineProject }} + Name: FindBumpRun + WorkingDirectory: $(Build.SourcesDirectory) - task: DownloadPipelineArtifact@2 condition: eq(variables['FindBumpRun.IsVersionBumpMerge'], 'true') diff --git a/common/config/azure-pipelines/templates/pack.yaml b/common/config/azure-pipelines/templates/pack.yaml index c5d46fdfe2..bc1bd130de 100644 --- a/common/config/azure-pipelines/templates/pack.yaml +++ b/common/config/azure-pipelines/templates/pack.yaml @@ -1,5 +1,4 @@ parameters: - # Only the packages belonging to this version policy are packed. - name: VersionPolicyName type: string @@ -9,13 +8,31 @@ steps: Arguments: '--help' DisplayName: 'Install Rush' - - template: /common/config/azure-pipelines/templates/install-run-rush.yaml@self - parameters: - Arguments: > - publish - --publish - --pack - --include-all - --version-policy ${{ parameters.VersionPolicyName }} - --release-folder $(Build.ArtifactStagingDirectory)/packages - DisplayName: 'Rush Pack (Policy: ${{ parameters.VersionPolicyName }})' + - ${{ if eq(parameters.VersionPolicyName, 'noRush') }}: + - template: /common/config/azure-pipelines/templates/install-run-rush.yaml@self + parameters: + Arguments: > + publish + --publish + --pack + --include-all + --release-folder $(Build.ArtifactStagingDirectory)/packages + DisplayName: 'Rush Pack (Policy: ${{ parameters.VersionPolicyName }})' + + - ${{ else }}: + - template: /common/config/azure-pipelines/templates/install-run-rush.yaml@self + parameters: + Arguments: > + publish + --publish + --pack + --include-all + --version-policy ${{ parameters.VersionPolicyName }} + --release-folder $(Build.ArtifactStagingDirectory)/packages + DisplayName: 'Rush Pack (Policy: ${{ parameters.VersionPolicyName }})' + + - script: > + node common/scripts/publish-cohort.js filter-packages + --cohort ${{ parameters.VersionPolicyName }} + --packages-path $(Build.ArtifactStagingDirectory)/packages + displayName: 'Filter unpublished ${{ parameters.VersionPolicyName }} packages' diff --git a/common/config/rush/.npmrc b/common/config/rush/.npmrc index 100721e01a..355848d7cc 100644 --- a/common/config/rush/.npmrc +++ b/common/config/rush/.npmrc @@ -1 +1,2 @@ omit-lockfile-registry-resolved=true +registry=https://packagefeedproxy.microsoft.io/npm/ diff --git a/common/scripts/publish-cohort.js b/common/scripts/publish-cohort.js new file mode 100644 index 0000000000..371c71a0e4 --- /dev/null +++ b/common/scripts/publish-cohort.js @@ -0,0 +1,253 @@ +#!/usr/bin/env node + +const childProcess = require('node:child_process'); +const fs = require('node:fs'); +const path = require('node:path'); + +const PUBLISH_REGISTRY_URL = 'https://packagefeedproxy.microsoft.io/npm/'; + +function parseArguments() { + const [command, ...args] = process.argv.slice(2); + const options = new Map(); + + for (let index = 0; index < args.length; index += 2) { + const name = args[index]; + const value = args[index + 1]; + if (!name?.startsWith('--') || value === undefined) { + throw new Error(`Invalid argument: ${name || ''}`); + } + options.set(name.slice(2), value); + } + + return { command, options }; +} + +function getRequiredOption(options, name) { + const value = options.get(name); + if (!value) { + throw new Error(`Missing required option: --${name}`); + } + return value; +} + +function loadProjects(repoPath) { + const result = childProcess.spawnSync( + process.execPath, + [path.join(repoPath, 'common/scripts/install-run-rush.js'), 'list', '--json'], + { + cwd: repoPath, + encoding: 'utf8', + env: process.env + } + ); + + if (result.status !== 0) { + process.stderr.write(result.stdout); + process.stderr.write(result.stderr); + throw new Error('Unable to read the Rush project list.'); + } + + const jsonStart = result.stdout.indexOf('{'); + if (jsonStart < 0) { + throw new Error('Rush list did not produce JSON output.'); + } + + const projectList = JSON.parse(result.stdout.slice(jsonStart)); + return new Map(projectList.projects.map((project) => [project.name, project])); +} + +function isProjectInCohort(project, cohort) { + if (cohort === 'rush') { + return project.versionPolicyName === 'rush'; + } + if (cohort === 'noRush') { + return !project.versionPolicyName; + } + throw new Error(`Unsupported publishing cohort: ${cohort}`); +} + +function getFilesRecursively(folderPath, extension) { + if (!fs.existsSync(folderPath)) { + return []; + } + + const result = []; + for (const entry of fs.readdirSync(folderPath, { withFileTypes: true })) { + const entryPath = path.join(folderPath, entry.name); + if (entry.isDirectory()) { + result.push(...getFilesRecursively(entryPath, extension)); + } else if (!extension || entry.name.endsWith(extension)) { + result.push(entryPath); + } + } + return result; +} + +function writeJson(filePath, value) { + fs.mkdirSync(path.dirname(filePath), { recursive: true }); + fs.writeFileSync(filePath, `${JSON.stringify(value, undefined, 2)}\n`); +} + +function partitionChanges(repoPath, backupPath, cohort) { + const projects = loadProjects(repoPath); + const changesPath = path.join(repoPath, 'common/changes'); + + fs.rmSync(backupPath, { recursive: true, force: true }); + + for (const changeFilePath of getFilesRecursively(changesPath, '.json')) { + const changeFileText = fs.readFileSync(changeFilePath, 'utf8'); + const changeFile = JSON.parse(changeFileText); + const includedChanges = []; + const excludedChanges = []; + + for (const change of changeFile.changes) { + const project = projects.get(change.packageName); + if (!project) { + throw new Error(`${changeFilePath} references unknown project ${change.packageName}.`); + } + + (isProjectInCohort(project, cohort) ? includedChanges : excludedChanges).push(change); + } + + const relativePath = path.relative(changesPath, changeFilePath); + if (excludedChanges.length > 0) { + const backupFilePath = path.join(backupPath, relativePath); + if (includedChanges.length === 0) { + fs.mkdirSync(path.dirname(backupFilePath), { recursive: true }); + fs.writeFileSync(backupFilePath, changeFileText); + } else { + writeJson(backupFilePath, { ...changeFile, changes: excludedChanges }); + } + } + + if (includedChanges.length > 0) { + writeJson(changeFilePath, { ...changeFile, changes: includedChanges }); + } else { + fs.rmSync(changeFilePath); + } + } +} + +function restoreChanges(repoPath, backupPath) { + const changesPath = path.join(repoPath, 'common/changes'); + + for (const backupFilePath of getFilesRecursively(backupPath, '.json')) { + const relativePath = path.relative(backupPath, backupFilePath); + const changeFilePath = path.join(changesPath, relativePath); + const backupChangeFile = JSON.parse(fs.readFileSync(backupFilePath, 'utf8')); + + if (fs.existsSync(changeFilePath)) { + const currentChangeFile = JSON.parse(fs.readFileSync(changeFilePath, 'utf8')); + writeJson(changeFilePath, { + ...backupChangeFile, + changes: [...currentChangeFile.changes, ...backupChangeFile.changes] + }); + } else { + writeJson(changeFilePath, backupChangeFile); + } + } +} + +function readPackageJsonFromTarball(tarballPath) { + const result = childProcess.spawnSync('tar', ['-xOf', tarballPath, 'package/package.json'], { + encoding: 'utf8' + }); + if (result.status !== 0) { + process.stderr.write(result.stderr); + throw new Error(`Unable to read package.json from ${tarballPath}.`); + } + return JSON.parse(result.stdout); +} + +function packageIsPublished(packageName, version, repoPath, registryUrl) { + const result = childProcess.spawnSync( + 'npm', + ['view', `${packageName}@${version}`, 'version', '--json', '--registry', registryUrl], + { + cwd: repoPath, + encoding: 'utf8', + env: process.env + } + ); + + if (result.status === 0) { + return true; + } + if (result.stderr.includes('E404')) { + return false; + } + + process.stderr.write(result.stdout); + process.stderr.write(result.stderr); + throw new Error(`Unable to determine whether ${packageName}@${version} is published.`); +} + +function filterPackages(repoPath, packagesPath, cohort) { + const projects = loadProjects(repoPath); + const npmrcPublish = fs.readFileSync(path.join(repoPath, 'common/config/rush/.npmrc-publish'), 'utf8'); + const registryMatch = npmrcPublish.match(/^registry=(.+)$/m); + if (!registryMatch) { + throw new Error('Unable to determine the publish registry from .npmrc-publish.'); + } + const registryUrl = registryMatch[1].trim(); + if (registryUrl !== PUBLISH_REGISTRY_URL) { + throw new Error( + `Publishing must use the feed proxy registry ${PUBLISH_REGISTRY_URL}; found ${registryUrl}.` + ); + } + let retainedPackageCount = 0; + + for (const tarballPath of getFilesRecursively(packagesPath, '.tgz')) { + const packageJson = readPackageJsonFromTarball(tarballPath); + const project = projects.get(packageJson.name); + if (!project) { + throw new Error(`${tarballPath} contains unknown project ${packageJson.name}.`); + } + + const retainPackage = + isProjectInCohort(project, cohort) && + project.shouldPublish && + !packageIsPublished(packageJson.name, packageJson.version, repoPath, registryUrl); + + if (retainPackage) { + retainedPackageCount++; + console.log(`Retaining ${packageJson.name}@${packageJson.version}`); + } else { + fs.rmSync(tarballPath); + } + } + + console.log(`Retained ${retainedPackageCount} unpublished ${cohort} package(s).`); + console.log( + `##vso[task.setvariable variable=HasPackages]${retainedPackageCount > 0 ? 'true' : 'false'}` + ); +} + +function main() { + const { command, options } = parseArguments(); + const repoPath = path.resolve(options.get('repo-path') || process.cwd()); + + switch (command) { + case 'partition-changes': + partitionChanges( + repoPath, + path.resolve(getRequiredOption(options, 'backup-path')), + getRequiredOption(options, 'cohort') + ); + break; + case 'restore-changes': + restoreChanges(repoPath, path.resolve(getRequiredOption(options, 'backup-path'))); + break; + case 'filter-packages': + filterPackages( + repoPath, + path.resolve(getRequiredOption(options, 'packages-path')), + getRequiredOption(options, 'cohort') + ); + break; + default: + throw new Error(`Unsupported command: ${command || ''}`); + } +} + +main(); From 34379a225d0184c160a8b842951f0271335becbc Mon Sep 17 00:00:00 2001 From: Bharat Middha <5100938+bmiddha@users.noreply.github.com> Date: Tue, 8 Sep 2026 17:30:47 -0700 Subject: [PATCH 2/9] Read publish registry from npmrc Use common/config/rush/.npmrc-publish as the single source of truth for package existence checks. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- common/scripts/publish-cohort.js | 7 ------- 1 file changed, 7 deletions(-) diff --git a/common/scripts/publish-cohort.js b/common/scripts/publish-cohort.js index 371c71a0e4..9b1fb298ca 100644 --- a/common/scripts/publish-cohort.js +++ b/common/scripts/publish-cohort.js @@ -4,8 +4,6 @@ const childProcess = require('node:child_process'); const fs = require('node:fs'); const path = require('node:path'); -const PUBLISH_REGISTRY_URL = 'https://packagefeedproxy.microsoft.io/npm/'; - function parseArguments() { const [command, ...args] = process.argv.slice(2); const options = new Map(); @@ -190,11 +188,6 @@ function filterPackages(repoPath, packagesPath, cohort) { throw new Error('Unable to determine the publish registry from .npmrc-publish.'); } const registryUrl = registryMatch[1].trim(); - if (registryUrl !== PUBLISH_REGISTRY_URL) { - throw new Error( - `Publishing must use the feed proxy registry ${PUBLISH_REGISTRY_URL}; found ${registryUrl}.` - ); - } let retainedPackageCount = 0; for (const tarballPath of getFilesRecursively(packagesPath, '.tgz')) { From 22dbe3e542bba0f43a76242b6a01266795c70efc Mon Sep 17 00:00:00 2001 From: Bharat Middha <5100938+bmiddha@users.noreply.github.com> Date: Tue, 8 Sep 2026 17:40:27 -0700 Subject: [PATCH 3/9] Preserve non-Rush-first release ordering Run the individual package bump before the Rush lockstep bump in the Rush release flow, package both cohorts together, and keep the scheduled non-Rush-only flow isolated. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .../azure-pipelines/npm-publish-rush.yaml | 18 +++---- .../config/azure-pipelines/npm-publish.yaml | 1 + .../templates/bump-versions-stages.yaml | 53 ++++++++++++------- .../azure-pipelines/templates/pack.yaml | 8 +-- common/scripts/publish-cohort.js | 3 ++ 5 files changed, 50 insertions(+), 33 deletions(-) diff --git a/common/config/azure-pipelines/npm-publish-rush.yaml b/common/config/azure-pipelines/npm-publish-rush.yaml index 942b256ac7..ab0731f483 100644 --- a/common/config/azure-pipelines/npm-publish-rush.yaml +++ b/common/config/azure-pipelines/npm-publish-rush.yaml @@ -1,19 +1,11 @@ # Pipeline: Bump Versions (Rush) -- AzDO definition 12 in the GitHubProjects project -# Trigger: Automatically when changes merge to main that include change files or pipeline YAML. -# Purpose: Bump versions for the "rush" version policy, build, pack, create/update GitHub PR. +# Trigger: Manually when a Rush release is required. +# Purpose: Bump non-Rush versions first, then the "rush" version policy, build, pack, and create/update +# a GitHub PR. # The packed tarballs are published by the "esrp-publish-rush.yaml" pipeline once the # resulting version bump PR is merged. -trigger: - batch: true - branches: - include: - - main - paths: - include: - - 'common/changes/*' - - 'common/config/rush/version-policies.json' - - 'common/config/azure-pipelines/**' +trigger: none pr: none @@ -51,6 +43,8 @@ extends: - template: /common/config/azure-pipelines/templates/bump-versions-stages.yaml@self parameters: VersionPolicyName: rush + BumpNonRushFirst: true + PackageCohort: all StageName: BumpRushVersions StageDisplayName: 'Bump Rush Versions and Create PR' CheckoutRepository: rushstackGitHubApp diff --git a/common/config/azure-pipelines/npm-publish.yaml b/common/config/azure-pipelines/npm-publish.yaml index 7d59c64c23..b314cf7c00 100644 --- a/common/config/azure-pipelines/npm-publish.yaml +++ b/common/config/azure-pipelines/npm-publish.yaml @@ -51,6 +51,7 @@ extends: - template: /common/config/azure-pipelines/templates/bump-versions-stages.yaml@self parameters: VersionPolicyName: noRush + PackageCohort: noRush StageName: BumpRushstackVersions StageDisplayName: 'Bump Rushstack Versions and Create PR' CheckoutRepository: rushstackGitHubApp diff --git a/common/config/azure-pipelines/templates/bump-versions-stages.yaml b/common/config/azure-pipelines/templates/bump-versions-stages.yaml index 00b77748f0..ddc389cb85 100644 --- a/common/config/azure-pipelines/templates/bump-versions-stages.yaml +++ b/common/config/azure-pipelines/templates/bump-versions-stages.yaml @@ -8,6 +8,11 @@ parameters: - name: VersionPolicyName type: string + - name: BumpNonRushFirst + type: boolean + default: false + - name: PackageCohort + type: string - name: StageName type: string - name: StageDisplayName @@ -71,24 +76,35 @@ stages: - template: /common/config/azure-pipelines/templates/build.yaml@self - # "noRush" is a pipeline cohort, not a Rush version policy. The old publishing flow - # achieved the separation by processing non-Rush changes before the Rush lockstep bump. - # Preserve that behavior while the two cohorts run in independent pipelines. - - script: > - node common/scripts/publish-cohort.js partition-changes - --cohort ${{ parameters.VersionPolicyName }} - --backup-path $(Agent.TempDirectory)/excluded-publish-changes - displayName: 'Select ${{ parameters.VersionPolicyName }} change files' - - - template: /common/config/azure-pipelines/templates/bump-versions.yaml@self - parameters: - VersionPolicyName: ${{ parameters.VersionPolicyName }} - - - script: > - node common/scripts/publish-cohort.js restore-changes - --backup-path $(Agent.TempDirectory)/excluded-publish-changes - displayName: 'Restore other publishing cohort change files' - condition: succeededOrFailed() + - ${{ if eq(parameters.BumpNonRushFirst, true) }}: + # The Rush lockstep packages can depend on independently versioned packages. Preserve + # the old release ordering by applying all individual changes before the Rush bump. + - template: /common/config/azure-pipelines/templates/bump-versions.yaml@self + parameters: + VersionPolicyName: noRush + + - template: /common/config/azure-pipelines/templates/bump-versions.yaml@self + parameters: + VersionPolicyName: ${{ parameters.VersionPolicyName }} + + - ${{ else }}: + # "noRush" is a pipeline cohort, not a Rush version policy. Hide Rush change files so + # the independently scheduled non-Rush flow cannot consume lockstep release changes. + - script: > + node common/scripts/publish-cohort.js partition-changes + --cohort ${{ parameters.VersionPolicyName }} + --backup-path $(Agent.TempDirectory)/excluded-publish-changes + displayName: 'Select ${{ parameters.VersionPolicyName }} change files' + + - template: /common/config/azure-pipelines/templates/bump-versions.yaml@self + parameters: + VersionPolicyName: ${{ parameters.VersionPolicyName }} + + - script: > + node common/scripts/publish-cohort.js restore-changes + --backup-path $(Agent.TempDirectory)/excluded-publish-changes + displayName: 'Restore other publishing cohort change files' + condition: succeededOrFailed() - bash: | git add -u -- common/changes @@ -131,6 +147,7 @@ stages: - template: /common/config/azure-pipelines/templates/pack.yaml@self parameters: VersionPolicyName: ${{ parameters.VersionPolicyName }} + PackageCohort: ${{ parameters.PackageCohort }} - bash: | if [ "$(HasChanges)" = "true" ] && [ "$(HasPackages)" != "true" ]; then diff --git a/common/config/azure-pipelines/templates/pack.yaml b/common/config/azure-pipelines/templates/pack.yaml index bc1bd130de..2e35fedd92 100644 --- a/common/config/azure-pipelines/templates/pack.yaml +++ b/common/config/azure-pipelines/templates/pack.yaml @@ -1,6 +1,8 @@ parameters: - name: VersionPolicyName type: string + - name: PackageCohort + type: string steps: - template: /common/config/azure-pipelines/templates/install-run-rush.yaml@self @@ -8,7 +10,7 @@ steps: Arguments: '--help' DisplayName: 'Install Rush' - - ${{ if eq(parameters.VersionPolicyName, 'noRush') }}: + - ${{ if ne(parameters.PackageCohort, 'rush') }}: - template: /common/config/azure-pipelines/templates/install-run-rush.yaml@self parameters: Arguments: > @@ -33,6 +35,6 @@ steps: - script: > node common/scripts/publish-cohort.js filter-packages - --cohort ${{ parameters.VersionPolicyName }} + --cohort ${{ parameters.PackageCohort }} --packages-path $(Build.ArtifactStagingDirectory)/packages - displayName: 'Filter unpublished ${{ parameters.VersionPolicyName }} packages' + displayName: 'Filter unpublished ${{ parameters.PackageCohort }} packages' diff --git a/common/scripts/publish-cohort.js b/common/scripts/publish-cohort.js index 9b1fb298ca..dae5220186 100644 --- a/common/scripts/publish-cohort.js +++ b/common/scripts/publish-cohort.js @@ -55,6 +55,9 @@ function loadProjects(repoPath) { } function isProjectInCohort(project, cohort) { + if (cohort === 'all') { + return true; + } if (cohort === 'rush') { return project.versionPolicyName === 'rush'; } From 8dee1d9390b8b7dc32e34544613e4c66ec771d63 Mon Sep 17 00:00:00 2001 From: Bharat Middha <5100938+bmiddha@users.noreply.github.com> Date: Tue, 8 Sep 2026 18:15:23 -0700 Subject: [PATCH 4/9] Fix ESRP publish stage condition Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- .../config/azure-pipelines/templates/esrp-publish-stages.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/config/azure-pipelines/templates/esrp-publish-stages.yaml b/common/config/azure-pipelines/templates/esrp-publish-stages.yaml index e92803fc3a..4834fb8913 100644 --- a/common/config/azure-pipelines/templates/esrp-publish-stages.yaml +++ b/common/config/azure-pipelines/templates/esrp-publish-stages.yaml @@ -128,7 +128,7 @@ stages: displayName: 'Publish ${{ parameters.DisplayNameSuffix }} NPM Packages' dependsOn: - Prepare${{ parameters.StageNameSuffix }} - condition: and(succeeded('Prepare${{ parameters.StageNameSuffix }}'), eq(stageDependencies.Prepare${{ parameters.StageNameSuffix }}.PrepareNpmPublish.outputs['FindBumpRun.IsVersionBumpMerge'], 'true')) + condition: and(succeeded('Prepare${{ parameters.StageNameSuffix }}'), eq(dependencies.Prepare${{ parameters.StageNameSuffix }}.outputs['PrepareNpmPublish.FindBumpRun.IsVersionBumpMerge'], 'true')) jobs: - job: PublishNpmPackages displayName: 'Publish ${{ parameters.DisplayNameSuffix }} NPM Packages' From 1f075c0a9df4a8ed935a802a9fac540dfa639d52 Mon Sep 17 00:00:00 2001 From: Bharat Middha <5100938+bmiddha@users.noreply.github.com> Date: Wed, 9 Sep 2026 11:13:42 -0700 Subject: [PATCH 5/9] Address publishing helper review feedback Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> --- common/scripts/publish-cohort.js | 75 ++++++++++++++++++-------------- 1 file changed, 42 insertions(+), 33 deletions(-) diff --git a/common/scripts/publish-cohort.js b/common/scripts/publish-cohort.js index dae5220186..448297d146 100644 --- a/common/scripts/publish-cohort.js +++ b/common/scripts/publish-cohort.js @@ -3,25 +3,27 @@ const childProcess = require('node:child_process'); const fs = require('node:fs'); const path = require('node:path'); +const { parseArgs } = require('node:util'); function parseArguments() { - const [command, ...args] = process.argv.slice(2); - const options = new Map(); - - for (let index = 0; index < args.length; index += 2) { - const name = args[index]; - const value = args[index + 1]; - if (!name?.startsWith('--') || value === undefined) { - throw new Error(`Invalid argument: ${name || ''}`); + const { positionals, values } = parseArgs({ + allowPositionals: true, + options: { + 'backup-path': { type: 'string' }, + cohort: { type: 'string' }, + 'packages-path': { type: 'string' }, + 'repo-path': { type: 'string' } } - options.set(name.slice(2), value); + }); + if (positionals.length !== 1) { + throw new Error('Expected exactly one command.'); } - return { command, options }; + return { command: positionals[0], options: values }; } function getRequiredOption(options, name) { - const value = options.get(name); + const value = options[name]; if (!value) { throw new Error(`Missing required option: --${name}`); } @@ -67,26 +69,35 @@ function isProjectInCohort(project, cohort) { throw new Error(`Unsupported publishing cohort: ${cohort}`); } -function getFilesRecursively(folderPath, extension) { - if (!fs.existsSync(folderPath)) { - return []; - } +function forEachFileRecursive(folderPath, extension, callback) { + const pendingFolders = [{ absolutePath: folderPath, relativePath: '' }]; + while (pendingFolders.length > 0) { + const currentFolder = pendingFolders.pop(); + let entries; + try { + entries = fs.readdirSync(currentFolder.absolutePath, { withFileTypes: true }); + } catch (error) { + if (error.code === 'ENOENT' || error.code === 'ENOTDIR') { + continue; + } + throw error; + } - const result = []; - for (const entry of fs.readdirSync(folderPath, { withFileTypes: true })) { - const entryPath = path.join(folderPath, entry.name); - if (entry.isDirectory()) { - result.push(...getFilesRecursively(entryPath, extension)); - } else if (!extension || entry.name.endsWith(extension)) { - result.push(entryPath); + for (const entry of entries) { + const absolutePath = path.join(currentFolder.absolutePath, entry.name); + const relativePath = path.join(currentFolder.relativePath, entry.name); + if (entry.isDirectory()) { + pendingFolders.push({ absolutePath, relativePath }); + } else if (entry.isFile() && (!extension || entry.name.endsWith(extension))) { + callback(absolutePath, relativePath); + } } } - return result; } function writeJson(filePath, value) { fs.mkdirSync(path.dirname(filePath), { recursive: true }); - fs.writeFileSync(filePath, `${JSON.stringify(value, undefined, 2)}\n`); + fs.writeFileSync(filePath, `${JSON.stringify(value)}\n`); } function partitionChanges(repoPath, backupPath, cohort) { @@ -95,7 +106,7 @@ function partitionChanges(repoPath, backupPath, cohort) { fs.rmSync(backupPath, { recursive: true, force: true }); - for (const changeFilePath of getFilesRecursively(changesPath, '.json')) { + forEachFileRecursive(changesPath, '.json', (changeFilePath, relativePath) => { const changeFileText = fs.readFileSync(changeFilePath, 'utf8'); const changeFile = JSON.parse(changeFileText); const includedChanges = []; @@ -110,7 +121,6 @@ function partitionChanges(repoPath, backupPath, cohort) { (isProjectInCohort(project, cohort) ? includedChanges : excludedChanges).push(change); } - const relativePath = path.relative(changesPath, changeFilePath); if (excludedChanges.length > 0) { const backupFilePath = path.join(backupPath, relativePath); if (includedChanges.length === 0) { @@ -126,14 +136,13 @@ function partitionChanges(repoPath, backupPath, cohort) { } else { fs.rmSync(changeFilePath); } - } + }); } function restoreChanges(repoPath, backupPath) { const changesPath = path.join(repoPath, 'common/changes'); - for (const backupFilePath of getFilesRecursively(backupPath, '.json')) { - const relativePath = path.relative(backupPath, backupFilePath); + forEachFileRecursive(backupPath, '.json', (backupFilePath, relativePath) => { const changeFilePath = path.join(changesPath, relativePath); const backupChangeFile = JSON.parse(fs.readFileSync(backupFilePath, 'utf8')); @@ -146,7 +155,7 @@ function restoreChanges(repoPath, backupPath) { } else { writeJson(changeFilePath, backupChangeFile); } - } + }); } function readPackageJsonFromTarball(tarballPath) { @@ -193,7 +202,7 @@ function filterPackages(repoPath, packagesPath, cohort) { const registryUrl = registryMatch[1].trim(); let retainedPackageCount = 0; - for (const tarballPath of getFilesRecursively(packagesPath, '.tgz')) { + forEachFileRecursive(packagesPath, '.tgz', (tarballPath) => { const packageJson = readPackageJsonFromTarball(tarballPath); const project = projects.get(packageJson.name); if (!project) { @@ -211,7 +220,7 @@ function filterPackages(repoPath, packagesPath, cohort) { } else { fs.rmSync(tarballPath); } - } + }); console.log(`Retained ${retainedPackageCount} unpublished ${cohort} package(s).`); console.log( @@ -221,7 +230,7 @@ function filterPackages(repoPath, packagesPath, cohort) { function main() { const { command, options } = parseArguments(); - const repoPath = path.resolve(options.get('repo-path') || process.cwd()); + const repoPath = path.resolve(options['repo-path'] || process.cwd()); switch (command) { case 'partition-changes': From 09f0d4b5c51f4a26b507f1c71b8b9f52e07097ef Mon Sep 17 00:00:00 2001 From: Bharat Middha <5100938+bmiddha@users.noreply.github.com> Date: Wed, 9 Sep 2026 14:37:27 -0700 Subject: [PATCH 6/9] Pack releases with a phased command Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 60a4b373-248e-4555-9f8b-65acbff63577 --- apps/api-documenter/package.json | 1 + apps/api-extractor/package.json | 1 + apps/cpu-profile-summarizer/package.json | 1 + apps/heft/package.json | 1 + apps/lockfile-explorer/package.json | 1 + apps/playwright-browser-tunnel/package.json | 1 + apps/rundown/package.json | 3 +- apps/rush-mcp-server/package.json | 3 +- apps/rush/package.json | 1 + apps/trace-import/package.json | 1 + apps/zipsync/package.json | 1 + .../azure-pipelines/templates/pack.yaml | 28 ++++--------------- common/config/rush/command-line.json | 22 +++++++++++++++ common/scripts/publish-cohort.js | 2 +- eslint/eslint-bulk/package.json | 1 + eslint/eslint-config/package.json | 3 +- eslint/eslint-patch/package.json | 3 +- eslint/eslint-plugin-packlets/package.json | 1 + eslint/eslint-plugin-security/package.json | 1 + eslint/eslint-plugin/package.json | 1 + .../heft-api-extractor-plugin/package.json | 3 +- .../heft-dev-cert-plugin/package.json | 1 + .../package.json | 1 + heft-plugins/heft-jest-plugin/package.json | 1 + .../package.json | 1 + heft-plugins/heft-lint-plugin/package.json | 1 + .../package.json | 1 + heft-plugins/heft-rspack-plugin/package.json | 1 + .../package.json | 1 + heft-plugins/heft-sass-plugin/package.json | 1 + .../heft-serverless-stack-plugin/package.json | 1 + .../package.json | 1 + .../heft-storybook-plugin/package.json | 1 + .../heft-typescript-plugin/package.json | 3 +- .../heft-vscode-extension-plugin/package.json | 1 + .../heft-webpack4-plugin/package.json | 1 + .../heft-webpack5-plugin/package.json | 1 + libraries/api-extractor-model/package.json | 1 + libraries/credential-cache/package.json | 1 + .../debug-certificate-manager/package.json | 3 +- libraries/heft-config-file/package.json | 1 + libraries/load-themed-styles/package.json | 1 + libraries/localization-utilities/package.json | 1 + libraries/lookup-by-path/package.json | 1 + libraries/module-minifier/package.json | 1 + libraries/node-core-library/package.json | 1 + libraries/npm-check-fork/package.json | 1 + libraries/operation-graph/package.json | 1 + libraries/package-deps-hash/package.json | 1 + libraries/package-extractor/package.json | 1 + libraries/problem-matcher/package.json | 1 + libraries/reporter/package.json | 1 + libraries/rig-package/package.json | 1 + libraries/rush-daemon-protocol/package.json | 1 + libraries/rush-daemon-transport/package.json | 1 + libraries/rush-daemon/package.json | 1 + libraries/rush-lib/package.json | 1 + libraries/rush-pnpm-kit-v10/package.json | 1 + libraries/rush-pnpm-kit-v8/package.json | 1 + libraries/rush-pnpm-kit-v9/package.json | 1 + libraries/rush-sdk/package.json | 1 + libraries/rush-terminal-renderer/package.json | 1 + libraries/stream-collator/package.json | 1 + libraries/terminal/package.json | 1 + libraries/tree-pattern/package.json | 1 + libraries/ts-command-line/package.json | 1 + libraries/typings-generator/package.json | 1 + libraries/worker-pool/package.json | 1 + rigs/heft-node-rig/package.json | 3 +- rigs/heft-vscode-extension-rig/package.json | 3 +- rigs/heft-web-rig/package.json | 3 +- .../package.json | 1 + .../package.json | 1 + .../rush-bridge-cache-plugin/package.json | 3 +- .../rush-buildxl-graph-plugin/package.json | 1 + .../rush-http-build-cache-plugin/package.json | 1 + .../rush-mcp-docs-plugin/package.json | 1 + .../package.json | 3 +- .../rush-redis-cobuild-plugin/package.json | 1 + .../rush-resolver-cache-plugin/package.json | 1 + rush-plugins/rush-serve-plugin/package.json | 1 + .../hashed-folder-copy-plugin/package.json | 1 + .../loader-load-themed-styles/package.json | 1 + webpack/loader-raw-script/package.json | 1 + .../package.json | 1 + .../package.json | 3 +- .../package.json | 1 + webpack/webpack-plugin-utilities/package.json | 1 + .../package.json | 1 + .../webpack4-localization-plugin/package.json | 3 +- .../package.json | 1 + .../package.json | 1 + .../webpack5-localization-plugin/package.json | 1 + .../package.json | 1 + 94 files changed, 134 insertions(+), 37 deletions(-) diff --git a/apps/api-documenter/package.json b/apps/api-documenter/package.json index c1eed408d5..46f6c7ed69 100644 --- a/apps/api-documenter/package.json +++ b/apps/api-documenter/package.json @@ -15,6 +15,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "bin": { diff --git a/apps/api-extractor/package.json b/apps/api-extractor/package.json index 264ee6d9d8..d02a85a97c 100644 --- a/apps/api-extractor/package.json +++ b/apps/api-extractor/package.json @@ -62,6 +62,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/apps/cpu-profile-summarizer/package.json b/apps/cpu-profile-summarizer/package.json index a463bfb3a1..c395ff6b46 100644 --- a/apps/cpu-profile-summarizer/package.json +++ b/apps/cpu-profile-summarizer/package.json @@ -18,6 +18,7 @@ "start": "node lib/start", "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/apps/heft/package.json b/apps/heft/package.json index d618cb9ce6..83590f0889 100644 --- a/apps/heft/package.json +++ b/apps/heft/package.json @@ -56,6 +56,7 @@ "build": "heft build --clean", "start": "heft build-watch --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/apps/lockfile-explorer/package.json b/apps/lockfile-explorer/package.json index 26370fec47..0e5320ed22 100644 --- a/apps/lockfile-explorer/package.json +++ b/apps/lockfile-explorer/package.json @@ -39,6 +39,7 @@ "serve": "node ./lib-commonjs/start-explorer.js --debug", "test": "heft test", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "peerDependencies": { diff --git a/apps/playwright-browser-tunnel/package.json b/apps/playwright-browser-tunnel/package.json index 4ce808f19b..b24be61ec4 100644 --- a/apps/playwright-browser-tunnel/package.json +++ b/apps/playwright-browser-tunnel/package.json @@ -41,6 +41,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "demo": "playwright test --config=playwright.config.ts" }, "dependencies": { diff --git a/apps/rundown/package.json b/apps/rundown/package.json index d571b069c4..647cf1fd01 100644 --- a/apps/rundown/package.json +++ b/apps/rundown/package.json @@ -14,7 +14,8 @@ "homepage": "https://rushstack.io", "scripts": { "build": "heft build --clean", - "_phase:build": "heft run --only build -- --clean" + "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack" }, "bin": { "rundown": "./bin/rundown" diff --git a/apps/rush-mcp-server/package.json b/apps/rush-mcp-server/package.json index fde30041e8..b1f0b5715e 100644 --- a/apps/rush-mcp-server/package.json +++ b/apps/rush-mcp-server/package.json @@ -47,7 +47,8 @@ "homepage": "https://rushstack.io", "scripts": { "build": "heft build --clean", - "_phase:build": "heft run --only build -- --clean" + "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack" }, "bin": { "mcp-server": "./bin/mcp-server" diff --git a/apps/rush/package.json b/apps/rush/package.json index 06fbc788df..9074cf6c9f 100644 --- a/apps/rush/package.json +++ b/apps/rush/package.json @@ -27,6 +27,7 @@ "build": "heft build --clean", "start": "node lib/start-dev-docs.js", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "bin": { diff --git a/apps/trace-import/package.json b/apps/trace-import/package.json index c1578d199f..ea184a5fe2 100644 --- a/apps/trace-import/package.json +++ b/apps/trace-import/package.json @@ -18,6 +18,7 @@ "start": "node lib/start", "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/apps/zipsync/package.json b/apps/zipsync/package.json index d0ba4e0b92..312ad9f2af 100644 --- a/apps/zipsync/package.json +++ b/apps/zipsync/package.json @@ -18,6 +18,7 @@ "start": "node lib/start", "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/common/config/azure-pipelines/templates/pack.yaml b/common/config/azure-pipelines/templates/pack.yaml index 2e35fedd92..49d54e82e9 100644 --- a/common/config/azure-pipelines/templates/pack.yaml +++ b/common/config/azure-pipelines/templates/pack.yaml @@ -10,28 +10,12 @@ steps: Arguments: '--help' DisplayName: 'Install Rush' - - ${{ if ne(parameters.PackageCohort, 'rush') }}: - - template: /common/config/azure-pipelines/templates/install-run-rush.yaml@self - parameters: - Arguments: > - publish - --publish - --pack - --include-all - --release-folder $(Build.ArtifactStagingDirectory)/packages - DisplayName: 'Rush Pack (Policy: ${{ parameters.VersionPolicyName }})' - - - ${{ else }}: - - template: /common/config/azure-pipelines/templates/install-run-rush.yaml@self - parameters: - Arguments: > - publish - --publish - --pack - --include-all - --version-policy ${{ parameters.VersionPolicyName }} - --release-folder $(Build.ArtifactStagingDirectory)/packages - DisplayName: 'Rush Pack (Policy: ${{ parameters.VersionPolicyName }})' + - template: /common/config/azure-pipelines/templates/install-run-rush.yaml@self + parameters: + Arguments: > + pack + --pack-destination $(Build.ArtifactStagingDirectory)/packages + DisplayName: 'Rush Pack (Policy: ${{ parameters.VersionPolicyName }})' - script: > node common/scripts/publish-cohort.js filter-packages diff --git a/common/config/rush/command-line.json b/common/config/rush/command-line.json index 851603df42..6350b6c308 100644 --- a/common/config/rush/command-line.json +++ b/common/config/rush/command-line.json @@ -55,6 +55,14 @@ "watchPhases": ["_phase:lite-build", "_phase:build", "_phase:test"] } }, + { + "commandKind": "phased", + "name": "pack", + "summary": "Packs publishable projects into npm tarballs.", + "phases": ["_phase:pack"], + "enableParallelism": true, + "incremental": false + }, // { // /** // * (Required) Determines the type of custom command. @@ -269,6 +277,11 @@ }, "missingScriptBehavior": "silent", "allowWarningsOnSuccess": false + }, + { + "name": "_phase:pack", + "missingScriptBehavior": "silent", + "allowWarningsOnSuccess": false } ], @@ -525,6 +538,15 @@ "description": "Automatically fix problems encountered while linting", "associatedPhases": ["_phase:build"], "associatedCommands": ["build", "rebuild", "test", "retest"] + }, + { + "longName": "--pack-destination", + "parameterKind": "string", + "argumentName": "FOLDER", + "description": "Write packed npm tarballs to this folder", + "required": true, + "associatedPhases": ["_phase:pack"], + "associatedCommands": ["pack"] } ] } diff --git a/common/scripts/publish-cohort.js b/common/scripts/publish-cohort.js index 448297d146..21e007c1a0 100644 --- a/common/scripts/publish-cohort.js +++ b/common/scripts/publish-cohort.js @@ -211,7 +211,7 @@ function filterPackages(repoPath, packagesPath, cohort) { const retainPackage = isProjectInCohort(project, cohort) && - project.shouldPublish && + (project.shouldPublish || project.versionPolicyName) && !packageIsPublished(packageJson.name, packageJson.version, repoPath, registryUrl); if (retainPackage) { diff --git a/eslint/eslint-bulk/package.json b/eslint/eslint-bulk/package.json index 14e40e2387..4dd5c1c5f4 100755 --- a/eslint/eslint-bulk/package.json +++ b/eslint/eslint-bulk/package.json @@ -34,6 +34,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "start": "node ./lib-commonjs/start.js" }, "keywords": [ diff --git a/eslint/eslint-config/package.json b/eslint/eslint-config/package.json index 1c5fcbab7b..4623afe2ac 100644 --- a/eslint/eslint-config/package.json +++ b/eslint/eslint-config/package.json @@ -14,7 +14,8 @@ "homepage": "https://rushstack.io", "scripts": { "build": "", - "_phase:build": "" + "_phase:build": "", + "_phase:pack": "rush-pnpm pack" }, "keywords": [ "eslint", diff --git a/eslint/eslint-patch/package.json b/eslint/eslint-patch/package.json index 1d57287e72..9470c5ed8c 100644 --- a/eslint/eslint-patch/package.json +++ b/eslint/eslint-patch/package.json @@ -52,7 +52,8 @@ "homepage": "https://rushstack.io", "scripts": { "build": "heft build --clean", - "_phase:build": "heft run --only build -- --clean" + "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack" }, "keywords": [ "eslintrc", diff --git a/eslint/eslint-plugin-packlets/package.json b/eslint/eslint-plugin-packlets/package.json index 294bc120a6..29e6207575 100644 --- a/eslint/eslint-plugin-packlets/package.json +++ b/eslint/eslint-plugin-packlets/package.json @@ -46,6 +46,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/eslint/eslint-plugin-security/package.json b/eslint/eslint-plugin-security/package.json index 1aa98c36e8..e1557a079b 100644 --- a/eslint/eslint-plugin-security/package.json +++ b/eslint/eslint-plugin-security/package.json @@ -45,6 +45,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/eslint/eslint-plugin/package.json b/eslint/eslint-plugin/package.json index 6ff1fc8548..60b700c4a6 100644 --- a/eslint/eslint-plugin/package.json +++ b/eslint/eslint-plugin/package.json @@ -49,6 +49,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/heft-plugins/heft-api-extractor-plugin/package.json b/heft-plugins/heft-api-extractor-plugin/package.json index 109a3a42c2..cd71d86ee2 100644 --- a/heft-plugins/heft-api-extractor-plugin/package.json +++ b/heft-plugins/heft-api-extractor-plugin/package.json @@ -15,7 +15,8 @@ "scripts": { "build": "heft test --clean", "start": "heft build-watch", - "_phase:build": "heft run --only build -- --clean" + "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack" }, "peerDependencies": { "@rushstack/heft": "1.2.26" diff --git a/heft-plugins/heft-dev-cert-plugin/package.json b/heft-plugins/heft-dev-cert-plugin/package.json index a648f184fd..106b470303 100644 --- a/heft-plugins/heft-dev-cert-plugin/package.json +++ b/heft-plugins/heft-dev-cert-plugin/package.json @@ -16,6 +16,7 @@ "build": "heft build --clean", "start": "heft test --clean --watch", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "peerDependencies": { diff --git a/heft-plugins/heft-isolated-typescript-transpile-plugin/package.json b/heft-plugins/heft-isolated-typescript-transpile-plugin/package.json index 1e6a15a466..ad48b53277 100644 --- a/heft-plugins/heft-isolated-typescript-transpile-plugin/package.json +++ b/heft-plugins/heft-isolated-typescript-transpile-plugin/package.json @@ -43,6 +43,7 @@ "build": "heft build --clean", "start": "heft test --clean --watch", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "peerDependencies": { diff --git a/heft-plugins/heft-jest-plugin/package.json b/heft-plugins/heft-jest-plugin/package.json index 8bd1b77139..7d6a12e216 100644 --- a/heft-plugins/heft-jest-plugin/package.json +++ b/heft-plugins/heft-jest-plugin/package.json @@ -16,6 +16,7 @@ "build": "heft test --clean", "start": "heft build-watch", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "peerDependencies": { diff --git a/heft-plugins/heft-json-schema-typings-plugin/package.json b/heft-plugins/heft-json-schema-typings-plugin/package.json index be7904ec16..3716caf4ae 100644 --- a/heft-plugins/heft-json-schema-typings-plugin/package.json +++ b/heft-plugins/heft-json-schema-typings-plugin/package.json @@ -16,6 +16,7 @@ "build": "heft test --clean", "start": "heft build-watch", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "peerDependencies": { diff --git a/heft-plugins/heft-lint-plugin/package.json b/heft-plugins/heft-lint-plugin/package.json index f1c80600b6..6170ef0e93 100644 --- a/heft-plugins/heft-lint-plugin/package.json +++ b/heft-plugins/heft-lint-plugin/package.json @@ -16,6 +16,7 @@ "build": "heft build --clean", "start": "heft build-watch", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "peerDependencies": { diff --git a/heft-plugins/heft-localization-typings-plugin/package.json b/heft-plugins/heft-localization-typings-plugin/package.json index 601cdba549..4d187b7bab 100644 --- a/heft-plugins/heft-localization-typings-plugin/package.json +++ b/heft-plugins/heft-localization-typings-plugin/package.json @@ -16,6 +16,7 @@ "build": "heft build --clean", "start": "heft test --clean --watch", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "peerDependencies": { diff --git a/heft-plugins/heft-rspack-plugin/package.json b/heft-plugins/heft-rspack-plugin/package.json index 0ea6c68e02..bce4e07924 100644 --- a/heft-plugins/heft-rspack-plugin/package.json +++ b/heft-plugins/heft-rspack-plugin/package.json @@ -43,6 +43,7 @@ "build": "heft build --clean", "start": "heft test --clean --watch", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "peerDependencies": { diff --git a/heft-plugins/heft-sass-load-themed-styles-plugin/package.json b/heft-plugins/heft-sass-load-themed-styles-plugin/package.json index 3f70fe689d..5e196eaddd 100644 --- a/heft-plugins/heft-sass-load-themed-styles-plugin/package.json +++ b/heft-plugins/heft-sass-load-themed-styles-plugin/package.json @@ -16,6 +16,7 @@ "build": "heft build --clean", "start": "heft test --clean --watch", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "peerDependencies": { diff --git a/heft-plugins/heft-sass-plugin/package.json b/heft-plugins/heft-sass-plugin/package.json index a603dc2b3f..8ae355de55 100644 --- a/heft-plugins/heft-sass-plugin/package.json +++ b/heft-plugins/heft-sass-plugin/package.json @@ -16,6 +16,7 @@ "build": "heft build --clean", "start": "heft test --clean --watch", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "main": "./lib-commonjs/index.js", diff --git a/heft-plugins/heft-serverless-stack-plugin/package.json b/heft-plugins/heft-serverless-stack-plugin/package.json index 62e9102e81..b2f73dcfcf 100644 --- a/heft-plugins/heft-serverless-stack-plugin/package.json +++ b/heft-plugins/heft-serverless-stack-plugin/package.json @@ -15,6 +15,7 @@ "build": "heft build --clean", "start": "heft test --clean --watch", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "peerDependencies": { diff --git a/heft-plugins/heft-static-asset-typings-plugin/package.json b/heft-plugins/heft-static-asset-typings-plugin/package.json index 65f43ba95f..922322da16 100644 --- a/heft-plugins/heft-static-asset-typings-plugin/package.json +++ b/heft-plugins/heft-static-asset-typings-plugin/package.json @@ -6,6 +6,7 @@ "build": "heft build --clean", "start": "heft test --clean --watch", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "repository": { diff --git a/heft-plugins/heft-storybook-plugin/package.json b/heft-plugins/heft-storybook-plugin/package.json index e0611c46d3..3393192376 100644 --- a/heft-plugins/heft-storybook-plugin/package.json +++ b/heft-plugins/heft-storybook-plugin/package.json @@ -16,6 +16,7 @@ "build": "heft build --clean", "start": "heft test --clean --watch", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "peerDependencies": { diff --git a/heft-plugins/heft-typescript-plugin/package.json b/heft-plugins/heft-typescript-plugin/package.json index cafc1aa6c4..c84fc8fa42 100644 --- a/heft-plugins/heft-typescript-plugin/package.json +++ b/heft-plugins/heft-typescript-plugin/package.json @@ -42,7 +42,8 @@ "scripts": { "build": "heft test --clean", "start": "heft build-watch", - "_phase:build": "heft run --only build -- --clean" + "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack" }, "peerDependencies": { "@rushstack/heft": "1.2.26" diff --git a/heft-plugins/heft-vscode-extension-plugin/package.json b/heft-plugins/heft-vscode-extension-plugin/package.json index f823d41de9..c4328cb9be 100644 --- a/heft-plugins/heft-vscode-extension-plugin/package.json +++ b/heft-plugins/heft-vscode-extension-plugin/package.json @@ -16,6 +16,7 @@ "build": "heft build --clean", "start": "heft test --clean --watch", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "exports": { diff --git a/heft-plugins/heft-webpack4-plugin/package.json b/heft-plugins/heft-webpack4-plugin/package.json index 870cbe06ff..3e42d53b45 100644 --- a/heft-plugins/heft-webpack4-plugin/package.json +++ b/heft-plugins/heft-webpack4-plugin/package.json @@ -43,6 +43,7 @@ "build": "heft build --clean", "start": "heft test --clean --watch", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "peerDependenciesMeta": { diff --git a/heft-plugins/heft-webpack5-plugin/package.json b/heft-plugins/heft-webpack5-plugin/package.json index 7c727d2a23..52fa2d833a 100644 --- a/heft-plugins/heft-webpack5-plugin/package.json +++ b/heft-plugins/heft-webpack5-plugin/package.json @@ -43,6 +43,7 @@ "build": "heft build --clean", "start": "heft test --clean --watch", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "peerDependencies": { diff --git a/libraries/api-extractor-model/package.json b/libraries/api-extractor-model/package.json index f8aa2f63bd..8243288adc 100644 --- a/libraries/api-extractor-model/package.json +++ b/libraries/api-extractor-model/package.json @@ -40,6 +40,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/libraries/credential-cache/package.json b/libraries/credential-cache/package.json index 22fa755f92..ee46ee6f88 100644 --- a/libraries/credential-cache/package.json +++ b/libraries/credential-cache/package.json @@ -40,6 +40,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/libraries/debug-certificate-manager/package.json b/libraries/debug-certificate-manager/package.json index 02241b7b43..631f314645 100644 --- a/libraries/debug-certificate-manager/package.json +++ b/libraries/debug-certificate-manager/package.json @@ -38,7 +38,8 @@ }, "scripts": { "build": "heft build --clean", - "_phase:build": "heft run --only build -- --clean" + "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack" }, "dependencies": { "@rushstack/node-core-library": "workspace:*", diff --git a/libraries/heft-config-file/package.json b/libraries/heft-config-file/package.json index b7ccaeb652..6833056a88 100644 --- a/libraries/heft-config-file/package.json +++ b/libraries/heft-config-file/package.json @@ -41,6 +41,7 @@ "build": "heft build --clean", "start": "heft test --clean --watch", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/libraries/load-themed-styles/package.json b/libraries/load-themed-styles/package.json index 885086fa36..cfd6a9d13e 100644 --- a/libraries/load-themed-styles/package.json +++ b/libraries/load-themed-styles/package.json @@ -12,6 +12,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "main": "./lib-commonjs/index.js", diff --git a/libraries/localization-utilities/package.json b/libraries/localization-utilities/package.json index 0049c98f14..33b3a82976 100644 --- a/libraries/localization-utilities/package.json +++ b/libraries/localization-utilities/package.json @@ -40,6 +40,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/libraries/lookup-by-path/package.json b/libraries/lookup-by-path/package.json index 15f3ffef48..cf9d7a14fd 100644 --- a/libraries/lookup-by-path/package.json +++ b/libraries/lookup-by-path/package.json @@ -46,6 +46,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "devDependencies": { diff --git a/libraries/module-minifier/package.json b/libraries/module-minifier/package.json index da7ca08eb3..b9adc85b95 100644 --- a/libraries/module-minifier/package.json +++ b/libraries/module-minifier/package.json @@ -39,6 +39,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/libraries/node-core-library/package.json b/libraries/node-core-library/package.json index 1e7dff534d..e605cebe7b 100644 --- a/libraries/node-core-library/package.json +++ b/libraries/node-core-library/package.json @@ -39,6 +39,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/libraries/npm-check-fork/package.json b/libraries/npm-check-fork/package.json index 451d6412ca..87b5f43df3 100644 --- a/libraries/npm-check-fork/package.json +++ b/libraries/npm-check-fork/package.json @@ -41,6 +41,7 @@ "build": "heft build --clean", "test": "heft test --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/libraries/operation-graph/package.json b/libraries/operation-graph/package.json index ad9d4057f4..bf843b2293 100644 --- a/libraries/operation-graph/package.json +++ b/libraries/operation-graph/package.json @@ -39,6 +39,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/libraries/package-deps-hash/package.json b/libraries/package-deps-hash/package.json index ab9eaf7a3a..bb98651c87 100644 --- a/libraries/package-deps-hash/package.json +++ b/libraries/package-deps-hash/package.json @@ -39,6 +39,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "devDependencies": { diff --git a/libraries/package-extractor/package.json b/libraries/package-extractor/package.json index c713297436..bf70d7ae5d 100644 --- a/libraries/package-extractor/package.json +++ b/libraries/package-extractor/package.json @@ -39,6 +39,7 @@ "build": "heft build --clean", "test": "heft test --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "license": "MIT", diff --git a/libraries/problem-matcher/package.json b/libraries/problem-matcher/package.json index 2918a47fac..c8032c8c93 100644 --- a/libraries/problem-matcher/package.json +++ b/libraries/problem-matcher/package.json @@ -39,6 +39,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "devDependencies": { diff --git a/libraries/reporter/package.json b/libraries/reporter/package.json index 199d31635f..dd56a52f9f 100644 --- a/libraries/reporter/package.json +++ b/libraries/reporter/package.json @@ -46,6 +46,7 @@ "generate-bootstrap-protocol": "node scripts/generateBootstrapProtocol.js --write", "check-bootstrap-protocol": "node scripts/generateBootstrapProtocol.js --check", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "devDependencies": { diff --git a/libraries/rig-package/package.json b/libraries/rig-package/package.json index c985c4be28..9bdd161669 100644 --- a/libraries/rig-package/package.json +++ b/libraries/rig-package/package.json @@ -40,6 +40,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/libraries/rush-daemon-protocol/package.json b/libraries/rush-daemon-protocol/package.json index 606c7779ae..c099da342c 100644 --- a/libraries/rush-daemon-protocol/package.json +++ b/libraries/rush-daemon-protocol/package.json @@ -47,6 +47,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "devDependencies": { diff --git a/libraries/rush-daemon-transport/package.json b/libraries/rush-daemon-transport/package.json index 25febae1fa..77acc59ecc 100644 --- a/libraries/rush-daemon-transport/package.json +++ b/libraries/rush-daemon-transport/package.json @@ -47,6 +47,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/libraries/rush-daemon/package.json b/libraries/rush-daemon/package.json index a5f7aa41fc..6db36d57a9 100644 --- a/libraries/rush-daemon/package.json +++ b/libraries/rush-daemon/package.json @@ -42,6 +42,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/libraries/rush-lib/package.json b/libraries/rush-lib/package.json index c37bdf473a..9eebb7059c 100644 --- a/libraries/rush-lib/package.json +++ b/libraries/rush-lib/package.json @@ -37,6 +37,7 @@ "build": "heft build --clean", "test": "heft test --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "license": "MIT", diff --git a/libraries/rush-pnpm-kit-v10/package.json b/libraries/rush-pnpm-kit-v10/package.json index caca0e95df..ddfb54b000 100644 --- a/libraries/rush-pnpm-kit-v10/package.json +++ b/libraries/rush-pnpm-kit-v10/package.json @@ -33,6 +33,7 @@ }, "scripts": { "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean", "build": "heft build --clean", "test": "heft test --clean" diff --git a/libraries/rush-pnpm-kit-v8/package.json b/libraries/rush-pnpm-kit-v8/package.json index 424e429c98..e57613737e 100644 --- a/libraries/rush-pnpm-kit-v8/package.json +++ b/libraries/rush-pnpm-kit-v8/package.json @@ -33,6 +33,7 @@ }, "scripts": { "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean", "build": "heft build --clean", "test": "heft test --clean" diff --git a/libraries/rush-pnpm-kit-v9/package.json b/libraries/rush-pnpm-kit-v9/package.json index c59cff977d..0f82bc2539 100644 --- a/libraries/rush-pnpm-kit-v9/package.json +++ b/libraries/rush-pnpm-kit-v9/package.json @@ -33,6 +33,7 @@ }, "scripts": { "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean", "build": "heft build --clean", "test": "heft test --clean" diff --git a/libraries/rush-sdk/package.json b/libraries/rush-sdk/package.json index f365b9870b..deff0c2961 100644 --- a/libraries/rush-sdk/package.json +++ b/libraries/rush-sdk/package.json @@ -41,6 +41,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "license": "MIT", diff --git a/libraries/rush-terminal-renderer/package.json b/libraries/rush-terminal-renderer/package.json index 138368b605..1343621cf2 100644 --- a/libraries/rush-terminal-renderer/package.json +++ b/libraries/rush-terminal-renderer/package.json @@ -47,6 +47,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/libraries/stream-collator/package.json b/libraries/stream-collator/package.json index aa971bdcb9..bec2a83b2f 100644 --- a/libraries/stream-collator/package.json +++ b/libraries/stream-collator/package.json @@ -38,6 +38,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "license": "MIT", diff --git a/libraries/terminal/package.json b/libraries/terminal/package.json index e8262b2022..8f0f10b93e 100644 --- a/libraries/terminal/package.json +++ b/libraries/terminal/package.json @@ -39,6 +39,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/libraries/tree-pattern/package.json b/libraries/tree-pattern/package.json index 579bf75749..a1e73c091b 100644 --- a/libraries/tree-pattern/package.json +++ b/libraries/tree-pattern/package.json @@ -39,6 +39,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "devDependencies": { diff --git a/libraries/ts-command-line/package.json b/libraries/ts-command-line/package.json index 539d564bed..1c839580fa 100644 --- a/libraries/ts-command-line/package.json +++ b/libraries/ts-command-line/package.json @@ -38,6 +38,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "license": "MIT", diff --git a/libraries/typings-generator/package.json b/libraries/typings-generator/package.json index c00de10ec0..02cfec76d5 100644 --- a/libraries/typings-generator/package.json +++ b/libraries/typings-generator/package.json @@ -44,6 +44,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/libraries/worker-pool/package.json b/libraries/worker-pool/package.json index 37e5a4802e..1a52cd8096 100644 --- a/libraries/worker-pool/package.json +++ b/libraries/worker-pool/package.json @@ -39,6 +39,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "devDependencies": { diff --git a/rigs/heft-node-rig/package.json b/rigs/heft-node-rig/package.json index 326452f81a..1e4feb4903 100644 --- a/rigs/heft-node-rig/package.json +++ b/rigs/heft-node-rig/package.json @@ -5,7 +5,8 @@ "license": "MIT", "scripts": { "build": "", - "_phase:build": "" + "_phase:build": "", + "_phase:pack": "rush-pnpm pack" }, "repository": { "type": "git", diff --git a/rigs/heft-vscode-extension-rig/package.json b/rigs/heft-vscode-extension-rig/package.json index 8670dc850b..e295051c3d 100644 --- a/rigs/heft-vscode-extension-rig/package.json +++ b/rigs/heft-vscode-extension-rig/package.json @@ -5,7 +5,8 @@ "license": "MIT", "scripts": { "build": "", - "_phase:build": "" + "_phase:build": "", + "_phase:pack": "rush-pnpm pack" }, "repository": { "type": "git", diff --git a/rigs/heft-web-rig/package.json b/rigs/heft-web-rig/package.json index 5d997e42c1..1c98848d55 100644 --- a/rigs/heft-web-rig/package.json +++ b/rigs/heft-web-rig/package.json @@ -5,7 +5,8 @@ "license": "MIT", "scripts": { "build": "", - "_phase:build": "" + "_phase:build": "", + "_phase:pack": "rush-pnpm pack" }, "repository": { "type": "git", diff --git a/rush-plugins/rush-amazon-s3-build-cache-plugin/package.json b/rush-plugins/rush-amazon-s3-build-cache-plugin/package.json index 7e4d12de7b..ebdea5aa2f 100644 --- a/rush-plugins/rush-amazon-s3-build-cache-plugin/package.json +++ b/rush-plugins/rush-amazon-s3-build-cache-plugin/package.json @@ -44,6 +44,7 @@ "start": "heft test --clean --watch", "test": "heft test", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/rush-plugins/rush-azure-storage-build-cache-plugin/package.json b/rush-plugins/rush-azure-storage-build-cache-plugin/package.json index 2d7e987f7b..57367c3a02 100644 --- a/rush-plugins/rush-azure-storage-build-cache-plugin/package.json +++ b/rush-plugins/rush-azure-storage-build-cache-plugin/package.json @@ -43,6 +43,7 @@ "build": "heft build --clean", "start": "heft test --clean --watch", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/rush-plugins/rush-bridge-cache-plugin/package.json b/rush-plugins/rush-bridge-cache-plugin/package.json index e8e3b83b0e..0fcc45151c 100644 --- a/rush-plugins/rush-bridge-cache-plugin/package.json +++ b/rush-plugins/rush-bridge-cache-plugin/package.json @@ -42,7 +42,8 @@ "scripts": { "build": "heft test --clean", "start": "heft test --clean --watch", - "_phase:build": "heft run --only build -- --clean" + "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack" }, "dependencies": { "@rushstack/ts-command-line": "workspace:*", diff --git a/rush-plugins/rush-buildxl-graph-plugin/package.json b/rush-plugins/rush-buildxl-graph-plugin/package.json index 11959c6196..8ca707fdc1 100644 --- a/rush-plugins/rush-buildxl-graph-plugin/package.json +++ b/rush-plugins/rush-buildxl-graph-plugin/package.json @@ -43,6 +43,7 @@ "build": "heft build --clean", "start": "heft test --clean --watch", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/rush-plugins/rush-http-build-cache-plugin/package.json b/rush-plugins/rush-http-build-cache-plugin/package.json index 62790c452b..162d6a45c5 100644 --- a/rush-plugins/rush-http-build-cache-plugin/package.json +++ b/rush-plugins/rush-http-build-cache-plugin/package.json @@ -44,6 +44,7 @@ "start": "heft test-watch", "test": "heft test", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/rush-plugins/rush-mcp-docs-plugin/package.json b/rush-plugins/rush-mcp-docs-plugin/package.json index 85db480b73..de0afc3ae3 100644 --- a/rush-plugins/rush-mcp-docs-plugin/package.json +++ b/rush-plugins/rush-mcp-docs-plugin/package.json @@ -40,6 +40,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/rush-plugins/rush-published-versions-json-plugin/package.json b/rush-plugins/rush-published-versions-json-plugin/package.json index 28bf9d1312..77be2e440a 100644 --- a/rush-plugins/rush-published-versions-json-plugin/package.json +++ b/rush-plugins/rush-published-versions-json-plugin/package.json @@ -13,7 +13,8 @@ }, "scripts": { "build": "heft test --clean", - "_phase:build": "heft run --only build -- --clean" + "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack" }, "dependencies": { "@rushstack/node-core-library": "workspace:*", diff --git a/rush-plugins/rush-redis-cobuild-plugin/package.json b/rush-plugins/rush-redis-cobuild-plugin/package.json index a739119ae9..9fc4e467bb 100644 --- a/rush-plugins/rush-redis-cobuild-plugin/package.json +++ b/rush-plugins/rush-redis-cobuild-plugin/package.json @@ -44,6 +44,7 @@ "start": "heft test-watch", "test": "heft test --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/rush-plugins/rush-resolver-cache-plugin/package.json b/rush-plugins/rush-resolver-cache-plugin/package.json index 2909fe155c..1e9851bff1 100644 --- a/rush-plugins/rush-resolver-cache-plugin/package.json +++ b/rush-plugins/rush-resolver-cache-plugin/package.json @@ -17,6 +17,7 @@ "scripts": { "build": "heft test --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/rush-plugins/rush-serve-plugin/package.json b/rush-plugins/rush-serve-plugin/package.json index b8dd8c0a11..fd861cce31 100644 --- a/rush-plugins/rush-serve-plugin/package.json +++ b/rush-plugins/rush-serve-plugin/package.json @@ -17,6 +17,7 @@ "scripts": { "build": "heft test --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/webpack/hashed-folder-copy-plugin/package.json b/webpack/hashed-folder-copy-plugin/package.json index 7612f7f527..8de856269d 100644 --- a/webpack/hashed-folder-copy-plugin/package.json +++ b/webpack/hashed-folder-copy-plugin/package.json @@ -48,6 +48,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "peerDependencies": { diff --git a/webpack/loader-load-themed-styles/package.json b/webpack/loader-load-themed-styles/package.json index a76d0729ff..74fdc65594 100644 --- a/webpack/loader-load-themed-styles/package.json +++ b/webpack/loader-load-themed-styles/package.json @@ -39,6 +39,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "peerDependenciesMeta": { diff --git a/webpack/loader-raw-script/package.json b/webpack/loader-raw-script/package.json index 6d88cdf9d7..8f1b303645 100644 --- a/webpack/loader-raw-script/package.json +++ b/webpack/loader-raw-script/package.json @@ -39,6 +39,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/webpack/preserve-dynamic-require-plugin/package.json b/webpack/preserve-dynamic-require-plugin/package.json index 1fbb426236..ea324f429e 100644 --- a/webpack/preserve-dynamic-require-plugin/package.json +++ b/webpack/preserve-dynamic-require-plugin/package.json @@ -39,6 +39,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "devDependencies": { diff --git a/webpack/set-webpack-public-path-plugin/package.json b/webpack/set-webpack-public-path-plugin/package.json index 182de7f5b2..4eb3f7e627 100644 --- a/webpack/set-webpack-public-path-plugin/package.json +++ b/webpack/set-webpack-public-path-plugin/package.json @@ -38,7 +38,8 @@ }, "scripts": { "build": "heft build --clean", - "_phase:build": "heft run --only build -- --clean" + "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack" }, "peerDependencies": { "webpack": "^5.68.0", diff --git a/webpack/webpack-embedded-dependencies-plugin/package.json b/webpack/webpack-embedded-dependencies-plugin/package.json index 253d40c372..ac19725cc5 100644 --- a/webpack/webpack-embedded-dependencies-plugin/package.json +++ b/webpack/webpack-embedded-dependencies-plugin/package.json @@ -40,6 +40,7 @@ "build": "heft build --clean", "test": "heft run --only test", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/webpack/webpack-plugin-utilities/package.json b/webpack/webpack-plugin-utilities/package.json index 6af92d8530..fdfc1c2e16 100644 --- a/webpack/webpack-plugin-utilities/package.json +++ b/webpack/webpack-plugin-utilities/package.json @@ -40,6 +40,7 @@ "build": "heft build --clean", "test": "heft run --only test", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "dependencies": { diff --git a/webpack/webpack-workspace-resolve-plugin/package.json b/webpack/webpack-workspace-resolve-plugin/package.json index 0501e95018..6b2b19ae6e 100644 --- a/webpack/webpack-workspace-resolve-plugin/package.json +++ b/webpack/webpack-workspace-resolve-plugin/package.json @@ -39,6 +39,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "peerDependencies": { diff --git a/webpack/webpack4-localization-plugin/package.json b/webpack/webpack4-localization-plugin/package.json index c1a95e9e3d..4e6dfcdef7 100644 --- a/webpack/webpack4-localization-plugin/package.json +++ b/webpack/webpack4-localization-plugin/package.json @@ -38,7 +38,8 @@ }, "scripts": { "build": "heft build --clean", - "_phase:build": "heft run --only build -- --clean" + "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack" }, "peerDependencies": { "@rushstack/set-webpack-public-path-plugin": "^4.1.16", diff --git a/webpack/webpack4-module-minifier-plugin/package.json b/webpack/webpack4-module-minifier-plugin/package.json index a4f574cb01..43f9988b32 100644 --- a/webpack/webpack4-module-minifier-plugin/package.json +++ b/webpack/webpack4-module-minifier-plugin/package.json @@ -39,6 +39,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "peerDependencies": { diff --git a/webpack/webpack5-load-themed-styles-loader/package.json b/webpack/webpack5-load-themed-styles-loader/package.json index 334f41159c..249e49a13b 100644 --- a/webpack/webpack5-load-themed-styles-loader/package.json +++ b/webpack/webpack5-load-themed-styles-loader/package.json @@ -39,6 +39,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "peerDependencies": { diff --git a/webpack/webpack5-localization-plugin/package.json b/webpack/webpack5-localization-plugin/package.json index 00883a5e38..5f2e7e4c10 100644 --- a/webpack/webpack5-localization-plugin/package.json +++ b/webpack/webpack5-localization-plugin/package.json @@ -39,6 +39,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "peerDependencies": { diff --git a/webpack/webpack5-module-minifier-plugin/package.json b/webpack/webpack5-module-minifier-plugin/package.json index 289f8aae62..043297ee4d 100644 --- a/webpack/webpack5-module-minifier-plugin/package.json +++ b/webpack/webpack5-module-minifier-plugin/package.json @@ -39,6 +39,7 @@ "scripts": { "build": "heft build --clean", "_phase:build": "heft run --only build -- --clean", + "_phase:pack": "rush-pnpm pack", "_phase:test": "heft run --only test -- --clean" }, "peerDependencies": { From 37f74c57f6b5ee2e17df9c45e2a50f5716cd19b0 Mon Sep 17 00:00:00 2001 From: Bharat Middha <5100938+bmiddha@users.noreply.github.com> Date: Wed, 9 Sep 2026 16:01:36 -0700 Subject: [PATCH 7/9] chore: add phased package packing --- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 +++++++++++ 81 files changed, 891 insertions(+) create mode 100644 common/changes/@microsoft/api-documenter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@microsoft/api-extractor-model/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@microsoft/api-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@microsoft/load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@microsoft/loader-load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@microsoft/rush/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@microsoft/webpack5-load-themed-styles-loader/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/cpu-profile-summarizer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/credential-cache/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/debug-certificate-manager/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/eslint-bulk/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/eslint-config/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/eslint-patch/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/eslint-plugin-packlets/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/eslint-plugin-security/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/eslint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/hashed-folder-copy-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft-api-extractor-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft-config-file/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft-dev-cert-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft-isolated-typescript-transpile-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft-jest-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft-json-schema-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft-lint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft-localization-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft-node-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft-rspack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft-sass-load-themed-styles-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft-sass-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft-serverless-stack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft-static-asset-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft-storybook-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft-typescript-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft-vscode-extension-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft-vscode-extension-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft-web-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft-webpack4-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft-webpack5-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/heft/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json create mode 100644 common/changes/@rushstack/loader-raw-script/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/localization-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/lockfile-explorer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/lookup-by-path/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/mcp-server/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/module-minifier/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/node-core-library/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/npm-check-fork/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/operation-graph/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/package-deps-hash/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/package-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/playwright-browser-tunnel/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/problem-matcher/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/rig-package/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/rundown/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/rush-daemon-protocol/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/rush-daemon-transport/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/rush-daemon/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/rush-mcp-docs-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/rush-pnpm-kit-v10/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/rush-pnpm-kit-v8/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/rush-pnpm-kit-v9/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/rush-published-versions-json-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/rush-reporter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/rush-terminal-renderer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/set-webpack-public-path-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/stream-collator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/terminal/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/trace-import/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/tree-pattern/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/ts-command-line/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/typings-generator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/webpack-embedded-dependencies-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/webpack-plugin-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/webpack-preserve-dynamic-require-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/webpack-workspace-resolve-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/webpack4-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/webpack4-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/webpack5-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/webpack5-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/worker-pool/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json create mode 100644 common/changes/@rushstack/zipsync/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json diff --git a/common/changes/@microsoft/api-documenter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@microsoft/api-documenter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..97858bb295 --- /dev/null +++ b/common/changes/@microsoft/api-documenter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@microsoft/api-documenter" + } + ], + "packageName": "@microsoft/api-documenter", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@microsoft/api-extractor-model/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@microsoft/api-extractor-model/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..ed19098e6c --- /dev/null +++ b/common/changes/@microsoft/api-extractor-model/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@microsoft/api-extractor-model" + } + ], + "packageName": "@microsoft/api-extractor-model", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@microsoft/api-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@microsoft/api-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..c3ea4eadf1 --- /dev/null +++ b/common/changes/@microsoft/api-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@microsoft/api-extractor" + } + ], + "packageName": "@microsoft/api-extractor", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@microsoft/load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@microsoft/load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..ee4bbd1d53 --- /dev/null +++ b/common/changes/@microsoft/load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@microsoft/load-themed-styles" + } + ], + "packageName": "@microsoft/load-themed-styles", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@microsoft/loader-load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@microsoft/loader-load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..fc9609bf71 --- /dev/null +++ b/common/changes/@microsoft/loader-load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@microsoft/loader-load-themed-styles" + } + ], + "packageName": "@microsoft/loader-load-themed-styles", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@microsoft/rush/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@microsoft/rush/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..a4e9a181a5 --- /dev/null +++ b/common/changes/@microsoft/rush/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@microsoft/rush" + } + ], + "packageName": "@microsoft/rush", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@microsoft/webpack5-load-themed-styles-loader/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@microsoft/webpack5-load-themed-styles-loader/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..a372ffd154 --- /dev/null +++ b/common/changes/@microsoft/webpack5-load-themed-styles-loader/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@microsoft/webpack5-load-themed-styles-loader" + } + ], + "packageName": "@microsoft/webpack5-load-themed-styles-loader", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/cpu-profile-summarizer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/cpu-profile-summarizer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..9bf0008da3 --- /dev/null +++ b/common/changes/@rushstack/cpu-profile-summarizer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/cpu-profile-summarizer" + } + ], + "packageName": "@rushstack/cpu-profile-summarizer", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/credential-cache/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/credential-cache/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..6f65eba333 --- /dev/null +++ b/common/changes/@rushstack/credential-cache/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/credential-cache" + } + ], + "packageName": "@rushstack/credential-cache", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/debug-certificate-manager/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/debug-certificate-manager/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..065e12877a --- /dev/null +++ b/common/changes/@rushstack/debug-certificate-manager/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/debug-certificate-manager" + } + ], + "packageName": "@rushstack/debug-certificate-manager", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-bulk/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/eslint-bulk/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..bfaf07c6ba --- /dev/null +++ b/common/changes/@rushstack/eslint-bulk/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/eslint-bulk" + } + ], + "packageName": "@rushstack/eslint-bulk", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-config/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/eslint-config/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..01f6fd829e --- /dev/null +++ b/common/changes/@rushstack/eslint-config/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/eslint-config" + } + ], + "packageName": "@rushstack/eslint-config", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-patch/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/eslint-patch/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..b5e98c9a13 --- /dev/null +++ b/common/changes/@rushstack/eslint-patch/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/eslint-patch" + } + ], + "packageName": "@rushstack/eslint-patch", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-plugin-packlets/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/eslint-plugin-packlets/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..1c6d051698 --- /dev/null +++ b/common/changes/@rushstack/eslint-plugin-packlets/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/eslint-plugin-packlets" + } + ], + "packageName": "@rushstack/eslint-plugin-packlets", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-plugin-security/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/eslint-plugin-security/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..bc445e4d35 --- /dev/null +++ b/common/changes/@rushstack/eslint-plugin-security/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/eslint-plugin-security" + } + ], + "packageName": "@rushstack/eslint-plugin-security", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/eslint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..b170c23b70 --- /dev/null +++ b/common/changes/@rushstack/eslint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/eslint-plugin" + } + ], + "packageName": "@rushstack/eslint-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/hashed-folder-copy-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/hashed-folder-copy-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..ff18c3381d --- /dev/null +++ b/common/changes/@rushstack/hashed-folder-copy-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/hashed-folder-copy-plugin" + } + ], + "packageName": "@rushstack/hashed-folder-copy-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-api-extractor-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-api-extractor-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..eeeb345503 --- /dev/null +++ b/common/changes/@rushstack/heft-api-extractor-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-api-extractor-plugin" + } + ], + "packageName": "@rushstack/heft-api-extractor-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-config-file/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-config-file/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..f7ecbac3c8 --- /dev/null +++ b/common/changes/@rushstack/heft-config-file/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-config-file" + } + ], + "packageName": "@rushstack/heft-config-file", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-dev-cert-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-dev-cert-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..bbc4de3133 --- /dev/null +++ b/common/changes/@rushstack/heft-dev-cert-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-dev-cert-plugin" + } + ], + "packageName": "@rushstack/heft-dev-cert-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-isolated-typescript-transpile-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-isolated-typescript-transpile-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..c1fadea233 --- /dev/null +++ b/common/changes/@rushstack/heft-isolated-typescript-transpile-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-isolated-typescript-transpile-plugin" + } + ], + "packageName": "@rushstack/heft-isolated-typescript-transpile-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-jest-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-jest-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..642d17be18 --- /dev/null +++ b/common/changes/@rushstack/heft-jest-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-jest-plugin" + } + ], + "packageName": "@rushstack/heft-jest-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-json-schema-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-json-schema-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..4fef192ab2 --- /dev/null +++ b/common/changes/@rushstack/heft-json-schema-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-json-schema-typings-plugin" + } + ], + "packageName": "@rushstack/heft-json-schema-typings-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-lint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-lint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..bd90fab6ae --- /dev/null +++ b/common/changes/@rushstack/heft-lint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-lint-plugin" + } + ], + "packageName": "@rushstack/heft-lint-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-localization-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-localization-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..2045ac0f51 --- /dev/null +++ b/common/changes/@rushstack/heft-localization-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-localization-typings-plugin" + } + ], + "packageName": "@rushstack/heft-localization-typings-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-node-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-node-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..9c2c779350 --- /dev/null +++ b/common/changes/@rushstack/heft-node-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-node-rig" + } + ], + "packageName": "@rushstack/heft-node-rig", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-rspack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-rspack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..4475c2277e --- /dev/null +++ b/common/changes/@rushstack/heft-rspack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-rspack-plugin" + } + ], + "packageName": "@rushstack/heft-rspack-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-sass-load-themed-styles-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-sass-load-themed-styles-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..1752e942d8 --- /dev/null +++ b/common/changes/@rushstack/heft-sass-load-themed-styles-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-sass-load-themed-styles-plugin" + } + ], + "packageName": "@rushstack/heft-sass-load-themed-styles-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-sass-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-sass-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..c27e453134 --- /dev/null +++ b/common/changes/@rushstack/heft-sass-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-sass-plugin" + } + ], + "packageName": "@rushstack/heft-sass-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-serverless-stack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-serverless-stack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..45e7e357d7 --- /dev/null +++ b/common/changes/@rushstack/heft-serverless-stack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-serverless-stack-plugin" + } + ], + "packageName": "@rushstack/heft-serverless-stack-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-static-asset-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-static-asset-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..1c939c3b6f --- /dev/null +++ b/common/changes/@rushstack/heft-static-asset-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-static-asset-typings-plugin" + } + ], + "packageName": "@rushstack/heft-static-asset-typings-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-storybook-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-storybook-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..c692ceed29 --- /dev/null +++ b/common/changes/@rushstack/heft-storybook-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-storybook-plugin" + } + ], + "packageName": "@rushstack/heft-storybook-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-typescript-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-typescript-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..682f718f22 --- /dev/null +++ b/common/changes/@rushstack/heft-typescript-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-typescript-plugin" + } + ], + "packageName": "@rushstack/heft-typescript-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-vscode-extension-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-vscode-extension-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..63792070ed --- /dev/null +++ b/common/changes/@rushstack/heft-vscode-extension-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-vscode-extension-plugin" + } + ], + "packageName": "@rushstack/heft-vscode-extension-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-vscode-extension-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-vscode-extension-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..fb2c5ab127 --- /dev/null +++ b/common/changes/@rushstack/heft-vscode-extension-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-vscode-extension-rig" + } + ], + "packageName": "@rushstack/heft-vscode-extension-rig", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-web-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-web-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..f659c98e33 --- /dev/null +++ b/common/changes/@rushstack/heft-web-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-web-rig" + } + ], + "packageName": "@rushstack/heft-web-rig", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-webpack4-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-webpack4-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..3a5ea6aaf5 --- /dev/null +++ b/common/changes/@rushstack/heft-webpack4-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-webpack4-plugin" + } + ], + "packageName": "@rushstack/heft-webpack4-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-webpack5-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-webpack5-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..04c9ed1cd6 --- /dev/null +++ b/common/changes/@rushstack/heft-webpack5-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-webpack5-plugin" + } + ], + "packageName": "@rushstack/heft-webpack5-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json new file mode 100644 index 0000000000..954de14871 --- /dev/null +++ b/common/changes/@rushstack/heft/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft" + } + ], + "packageName": "@rushstack/heft", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/loader-raw-script/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/loader-raw-script/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..4ce5ef31ad --- /dev/null +++ b/common/changes/@rushstack/loader-raw-script/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/loader-raw-script" + } + ], + "packageName": "@rushstack/loader-raw-script", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/localization-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/localization-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..c392df8a74 --- /dev/null +++ b/common/changes/@rushstack/localization-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/localization-utilities" + } + ], + "packageName": "@rushstack/localization-utilities", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/lockfile-explorer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/lockfile-explorer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..35e3ab788e --- /dev/null +++ b/common/changes/@rushstack/lockfile-explorer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/lockfile-explorer" + } + ], + "packageName": "@rushstack/lockfile-explorer", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/lookup-by-path/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/lookup-by-path/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..5019d4670a --- /dev/null +++ b/common/changes/@rushstack/lookup-by-path/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/lookup-by-path" + } + ], + "packageName": "@rushstack/lookup-by-path", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/mcp-server/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/mcp-server/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..37e0f328f7 --- /dev/null +++ b/common/changes/@rushstack/mcp-server/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/mcp-server" + } + ], + "packageName": "@rushstack/mcp-server", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/module-minifier/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/module-minifier/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..772770e184 --- /dev/null +++ b/common/changes/@rushstack/module-minifier/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/module-minifier" + } + ], + "packageName": "@rushstack/module-minifier", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/node-core-library/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/node-core-library/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..ad9a03946c --- /dev/null +++ b/common/changes/@rushstack/node-core-library/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/node-core-library" + } + ], + "packageName": "@rushstack/node-core-library", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/npm-check-fork/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/npm-check-fork/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..87389c94bd --- /dev/null +++ b/common/changes/@rushstack/npm-check-fork/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/npm-check-fork" + } + ], + "packageName": "@rushstack/npm-check-fork", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/operation-graph/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/operation-graph/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..46c15f92a1 --- /dev/null +++ b/common/changes/@rushstack/operation-graph/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/operation-graph" + } + ], + "packageName": "@rushstack/operation-graph", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/package-deps-hash/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/package-deps-hash/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..79b715694d --- /dev/null +++ b/common/changes/@rushstack/package-deps-hash/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/package-deps-hash" + } + ], + "packageName": "@rushstack/package-deps-hash", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/package-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/package-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..451ab09ad5 --- /dev/null +++ b/common/changes/@rushstack/package-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/package-extractor" + } + ], + "packageName": "@rushstack/package-extractor", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/playwright-browser-tunnel/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/playwright-browser-tunnel/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..4493a150f9 --- /dev/null +++ b/common/changes/@rushstack/playwright-browser-tunnel/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/playwright-browser-tunnel" + } + ], + "packageName": "@rushstack/playwright-browser-tunnel", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/problem-matcher/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/problem-matcher/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..1ab8f7c29a --- /dev/null +++ b/common/changes/@rushstack/problem-matcher/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/problem-matcher" + } + ], + "packageName": "@rushstack/problem-matcher", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rig-package/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/rig-package/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..8a4fdb6138 --- /dev/null +++ b/common/changes/@rushstack/rig-package/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rig-package" + } + ], + "packageName": "@rushstack/rig-package", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rundown/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/rundown/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..0b476587ac --- /dev/null +++ b/common/changes/@rushstack/rundown/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rundown" + } + ], + "packageName": "@rushstack/rundown", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-daemon-protocol/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/rush-daemon-protocol/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..76327d1fd2 --- /dev/null +++ b/common/changes/@rushstack/rush-daemon-protocol/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rush-daemon-protocol" + } + ], + "packageName": "@rushstack/rush-daemon-protocol", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-daemon-transport/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/rush-daemon-transport/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..a42fa29add --- /dev/null +++ b/common/changes/@rushstack/rush-daemon-transport/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rush-daemon-transport" + } + ], + "packageName": "@rushstack/rush-daemon-transport", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-daemon/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/rush-daemon/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..aa175d6995 --- /dev/null +++ b/common/changes/@rushstack/rush-daemon/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rush-daemon" + } + ], + "packageName": "@rushstack/rush-daemon", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-mcp-docs-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/rush-mcp-docs-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..11083a3ba5 --- /dev/null +++ b/common/changes/@rushstack/rush-mcp-docs-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rush-mcp-docs-plugin" + } + ], + "packageName": "@rushstack/rush-mcp-docs-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-pnpm-kit-v10/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/rush-pnpm-kit-v10/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..905afae183 --- /dev/null +++ b/common/changes/@rushstack/rush-pnpm-kit-v10/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rush-pnpm-kit-v10" + } + ], + "packageName": "@rushstack/rush-pnpm-kit-v10", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-pnpm-kit-v8/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/rush-pnpm-kit-v8/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..30bc9e35e7 --- /dev/null +++ b/common/changes/@rushstack/rush-pnpm-kit-v8/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rush-pnpm-kit-v8" + } + ], + "packageName": "@rushstack/rush-pnpm-kit-v8", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-pnpm-kit-v9/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/rush-pnpm-kit-v9/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..50ed216acd --- /dev/null +++ b/common/changes/@rushstack/rush-pnpm-kit-v9/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rush-pnpm-kit-v9" + } + ], + "packageName": "@rushstack/rush-pnpm-kit-v9", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-published-versions-json-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/rush-published-versions-json-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..537171c848 --- /dev/null +++ b/common/changes/@rushstack/rush-published-versions-json-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rush-published-versions-json-plugin" + } + ], + "packageName": "@rushstack/rush-published-versions-json-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-reporter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/rush-reporter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..73b9444dfa --- /dev/null +++ b/common/changes/@rushstack/rush-reporter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rush-reporter" + } + ], + "packageName": "@rushstack/rush-reporter", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-terminal-renderer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/rush-terminal-renderer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..839fd9b611 --- /dev/null +++ b/common/changes/@rushstack/rush-terminal-renderer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rush-terminal-renderer" + } + ], + "packageName": "@rushstack/rush-terminal-renderer", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/set-webpack-public-path-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/set-webpack-public-path-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..c0cdc16b5b --- /dev/null +++ b/common/changes/@rushstack/set-webpack-public-path-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/set-webpack-public-path-plugin" + } + ], + "packageName": "@rushstack/set-webpack-public-path-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/stream-collator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/stream-collator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..bbf99064f2 --- /dev/null +++ b/common/changes/@rushstack/stream-collator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/stream-collator" + } + ], + "packageName": "@rushstack/stream-collator", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/terminal/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/terminal/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..c3c8d60997 --- /dev/null +++ b/common/changes/@rushstack/terminal/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/terminal" + } + ], + "packageName": "@rushstack/terminal", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/trace-import/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/trace-import/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..06e75e8ca5 --- /dev/null +++ b/common/changes/@rushstack/trace-import/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/trace-import" + } + ], + "packageName": "@rushstack/trace-import", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/tree-pattern/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/tree-pattern/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..6b5b77f0a4 --- /dev/null +++ b/common/changes/@rushstack/tree-pattern/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/tree-pattern" + } + ], + "packageName": "@rushstack/tree-pattern", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/ts-command-line/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/ts-command-line/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..cbcf905334 --- /dev/null +++ b/common/changes/@rushstack/ts-command-line/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/ts-command-line" + } + ], + "packageName": "@rushstack/ts-command-line", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/typings-generator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/typings-generator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..76c168197d --- /dev/null +++ b/common/changes/@rushstack/typings-generator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/typings-generator" + } + ], + "packageName": "@rushstack/typings-generator", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack-embedded-dependencies-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/webpack-embedded-dependencies-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..0b23ca6c25 --- /dev/null +++ b/common/changes/@rushstack/webpack-embedded-dependencies-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/webpack-embedded-dependencies-plugin" + } + ], + "packageName": "@rushstack/webpack-embedded-dependencies-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack-plugin-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/webpack-plugin-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..2d64b8bfab --- /dev/null +++ b/common/changes/@rushstack/webpack-plugin-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/webpack-plugin-utilities" + } + ], + "packageName": "@rushstack/webpack-plugin-utilities", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack-preserve-dynamic-require-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/webpack-preserve-dynamic-require-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..a4665718c6 --- /dev/null +++ b/common/changes/@rushstack/webpack-preserve-dynamic-require-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/webpack-preserve-dynamic-require-plugin" + } + ], + "packageName": "@rushstack/webpack-preserve-dynamic-require-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack-workspace-resolve-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/webpack-workspace-resolve-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..700321e1ad --- /dev/null +++ b/common/changes/@rushstack/webpack-workspace-resolve-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/webpack-workspace-resolve-plugin" + } + ], + "packageName": "@rushstack/webpack-workspace-resolve-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack4-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/webpack4-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..c575fb92f0 --- /dev/null +++ b/common/changes/@rushstack/webpack4-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/webpack4-localization-plugin" + } + ], + "packageName": "@rushstack/webpack4-localization-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack4-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/webpack4-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..da0c5b5011 --- /dev/null +++ b/common/changes/@rushstack/webpack4-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/webpack4-module-minifier-plugin" + } + ], + "packageName": "@rushstack/webpack4-module-minifier-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack5-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/webpack5-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..b0246017bf --- /dev/null +++ b/common/changes/@rushstack/webpack5-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/webpack5-localization-plugin" + } + ], + "packageName": "@rushstack/webpack5-localization-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack5-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/webpack5-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..9df7953bd7 --- /dev/null +++ b/common/changes/@rushstack/webpack5-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/webpack5-module-minifier-plugin" + } + ], + "packageName": "@rushstack/webpack5-module-minifier-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/worker-pool/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/worker-pool/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..5c32337bf2 --- /dev/null +++ b/common/changes/@rushstack/worker-pool/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/worker-pool" + } + ], + "packageName": "@rushstack/worker-pool", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/zipsync/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/zipsync/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json new file mode 100644 index 0000000000..e2a30971e5 --- /dev/null +++ b/common/changes/@rushstack/zipsync/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/zipsync" + } + ], + "packageName": "@rushstack/zipsync", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file From a565a163c714a337c52c7805eceb25d595deb2e0 Mon Sep 17 00:00:00 2001 From: Bharat Middha <5100938+bmiddha@users.noreply.github.com> Date: Wed, 9 Sep 2026 16:01:56 -0700 Subject: [PATCH 8/9] chore: add phased package packing --- ...gate-publishing-pipelines_2026-09-09-23-01-55.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-55.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-55.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-55.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-55.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 +++++++++++ 81 files changed, 891 insertions(+) create mode 100644 common/changes/@microsoft/api-documenter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json create mode 100644 common/changes/@microsoft/api-extractor-model/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json create mode 100644 common/changes/@microsoft/api-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json create mode 100644 common/changes/@microsoft/load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json create mode 100644 common/changes/@microsoft/loader-load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json create mode 100644 common/changes/@microsoft/rush/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@microsoft/webpack5-load-themed-styles-loader/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/cpu-profile-summarizer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/credential-cache/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/debug-certificate-manager/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/eslint-bulk/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/eslint-config/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/eslint-patch/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/eslint-plugin-packlets/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/eslint-plugin-security/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/eslint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/hashed-folder-copy-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft-api-extractor-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft-config-file/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft-dev-cert-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft-isolated-typescript-transpile-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft-jest-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft-json-schema-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft-lint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft-localization-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft-node-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft-rspack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft-sass-load-themed-styles-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft-sass-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft-serverless-stack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft-static-asset-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft-storybook-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft-typescript-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft-vscode-extension-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft-vscode-extension-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft-web-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft-webpack4-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft-webpack5-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/heft/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/loader-raw-script/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/localization-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/lockfile-explorer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/lookup-by-path/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/mcp-server/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/module-minifier/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/node-core-library/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/npm-check-fork/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/operation-graph/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/package-deps-hash/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/package-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/playwright-browser-tunnel/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/problem-matcher/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/rig-package/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/rundown/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/rush-daemon-protocol/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/rush-daemon-transport/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/rush-daemon/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/rush-mcp-docs-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/rush-pnpm-kit-v10/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/rush-pnpm-kit-v8/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/rush-pnpm-kit-v9/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/rush-published-versions-json-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/rush-reporter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/rush-terminal-renderer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/set-webpack-public-path-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/stream-collator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/terminal/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/trace-import/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/tree-pattern/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/ts-command-line/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/typings-generator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/webpack-embedded-dependencies-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/webpack-plugin-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/webpack-preserve-dynamic-require-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/webpack-workspace-resolve-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/webpack4-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/webpack4-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/webpack5-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/webpack5-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/worker-pool/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json create mode 100644 common/changes/@rushstack/zipsync/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json diff --git a/common/changes/@microsoft/api-documenter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json b/common/changes/@microsoft/api-documenter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json new file mode 100644 index 0000000000..97858bb295 --- /dev/null +++ b/common/changes/@microsoft/api-documenter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@microsoft/api-documenter" + } + ], + "packageName": "@microsoft/api-documenter", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@microsoft/api-extractor-model/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json b/common/changes/@microsoft/api-extractor-model/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json new file mode 100644 index 0000000000..ed19098e6c --- /dev/null +++ b/common/changes/@microsoft/api-extractor-model/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@microsoft/api-extractor-model" + } + ], + "packageName": "@microsoft/api-extractor-model", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@microsoft/api-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json b/common/changes/@microsoft/api-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json new file mode 100644 index 0000000000..c3ea4eadf1 --- /dev/null +++ b/common/changes/@microsoft/api-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@microsoft/api-extractor" + } + ], + "packageName": "@microsoft/api-extractor", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@microsoft/load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json b/common/changes/@microsoft/load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json new file mode 100644 index 0000000000..ee4bbd1d53 --- /dev/null +++ b/common/changes/@microsoft/load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@microsoft/load-themed-styles" + } + ], + "packageName": "@microsoft/load-themed-styles", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@microsoft/loader-load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json b/common/changes/@microsoft/loader-load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json new file mode 100644 index 0000000000..fc9609bf71 --- /dev/null +++ b/common/changes/@microsoft/loader-load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@microsoft/loader-load-themed-styles" + } + ], + "packageName": "@microsoft/loader-load-themed-styles", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@microsoft/rush/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@microsoft/rush/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..a4e9a181a5 --- /dev/null +++ b/common/changes/@microsoft/rush/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@microsoft/rush" + } + ], + "packageName": "@microsoft/rush", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@microsoft/webpack5-load-themed-styles-loader/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@microsoft/webpack5-load-themed-styles-loader/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..a372ffd154 --- /dev/null +++ b/common/changes/@microsoft/webpack5-load-themed-styles-loader/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@microsoft/webpack5-load-themed-styles-loader" + } + ], + "packageName": "@microsoft/webpack5-load-themed-styles-loader", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/cpu-profile-summarizer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/cpu-profile-summarizer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..9bf0008da3 --- /dev/null +++ b/common/changes/@rushstack/cpu-profile-summarizer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/cpu-profile-summarizer" + } + ], + "packageName": "@rushstack/cpu-profile-summarizer", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/credential-cache/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/credential-cache/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..6f65eba333 --- /dev/null +++ b/common/changes/@rushstack/credential-cache/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/credential-cache" + } + ], + "packageName": "@rushstack/credential-cache", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/debug-certificate-manager/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/debug-certificate-manager/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..065e12877a --- /dev/null +++ b/common/changes/@rushstack/debug-certificate-manager/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/debug-certificate-manager" + } + ], + "packageName": "@rushstack/debug-certificate-manager", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-bulk/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/eslint-bulk/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..bfaf07c6ba --- /dev/null +++ b/common/changes/@rushstack/eslint-bulk/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/eslint-bulk" + } + ], + "packageName": "@rushstack/eslint-bulk", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-config/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/eslint-config/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..01f6fd829e --- /dev/null +++ b/common/changes/@rushstack/eslint-config/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/eslint-config" + } + ], + "packageName": "@rushstack/eslint-config", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-patch/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/eslint-patch/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..b5e98c9a13 --- /dev/null +++ b/common/changes/@rushstack/eslint-patch/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/eslint-patch" + } + ], + "packageName": "@rushstack/eslint-patch", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-plugin-packlets/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/eslint-plugin-packlets/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..1c6d051698 --- /dev/null +++ b/common/changes/@rushstack/eslint-plugin-packlets/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/eslint-plugin-packlets" + } + ], + "packageName": "@rushstack/eslint-plugin-packlets", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-plugin-security/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/eslint-plugin-security/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..bc445e4d35 --- /dev/null +++ b/common/changes/@rushstack/eslint-plugin-security/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/eslint-plugin-security" + } + ], + "packageName": "@rushstack/eslint-plugin-security", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/eslint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..b170c23b70 --- /dev/null +++ b/common/changes/@rushstack/eslint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/eslint-plugin" + } + ], + "packageName": "@rushstack/eslint-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/hashed-folder-copy-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/hashed-folder-copy-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..ff18c3381d --- /dev/null +++ b/common/changes/@rushstack/hashed-folder-copy-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/hashed-folder-copy-plugin" + } + ], + "packageName": "@rushstack/hashed-folder-copy-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-api-extractor-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-api-extractor-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..eeeb345503 --- /dev/null +++ b/common/changes/@rushstack/heft-api-extractor-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-api-extractor-plugin" + } + ], + "packageName": "@rushstack/heft-api-extractor-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-config-file/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-config-file/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..f7ecbac3c8 --- /dev/null +++ b/common/changes/@rushstack/heft-config-file/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-config-file" + } + ], + "packageName": "@rushstack/heft-config-file", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-dev-cert-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-dev-cert-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..bbc4de3133 --- /dev/null +++ b/common/changes/@rushstack/heft-dev-cert-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-dev-cert-plugin" + } + ], + "packageName": "@rushstack/heft-dev-cert-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-isolated-typescript-transpile-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-isolated-typescript-transpile-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..c1fadea233 --- /dev/null +++ b/common/changes/@rushstack/heft-isolated-typescript-transpile-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-isolated-typescript-transpile-plugin" + } + ], + "packageName": "@rushstack/heft-isolated-typescript-transpile-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-jest-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-jest-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..642d17be18 --- /dev/null +++ b/common/changes/@rushstack/heft-jest-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-jest-plugin" + } + ], + "packageName": "@rushstack/heft-jest-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-json-schema-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-json-schema-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..4fef192ab2 --- /dev/null +++ b/common/changes/@rushstack/heft-json-schema-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-json-schema-typings-plugin" + } + ], + "packageName": "@rushstack/heft-json-schema-typings-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-lint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-lint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..bd90fab6ae --- /dev/null +++ b/common/changes/@rushstack/heft-lint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-lint-plugin" + } + ], + "packageName": "@rushstack/heft-lint-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-localization-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-localization-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..2045ac0f51 --- /dev/null +++ b/common/changes/@rushstack/heft-localization-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-localization-typings-plugin" + } + ], + "packageName": "@rushstack/heft-localization-typings-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-node-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-node-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..9c2c779350 --- /dev/null +++ b/common/changes/@rushstack/heft-node-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-node-rig" + } + ], + "packageName": "@rushstack/heft-node-rig", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-rspack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-rspack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..4475c2277e --- /dev/null +++ b/common/changes/@rushstack/heft-rspack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-rspack-plugin" + } + ], + "packageName": "@rushstack/heft-rspack-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-sass-load-themed-styles-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-sass-load-themed-styles-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..1752e942d8 --- /dev/null +++ b/common/changes/@rushstack/heft-sass-load-themed-styles-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-sass-load-themed-styles-plugin" + } + ], + "packageName": "@rushstack/heft-sass-load-themed-styles-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-sass-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-sass-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..c27e453134 --- /dev/null +++ b/common/changes/@rushstack/heft-sass-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-sass-plugin" + } + ], + "packageName": "@rushstack/heft-sass-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-serverless-stack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-serverless-stack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..45e7e357d7 --- /dev/null +++ b/common/changes/@rushstack/heft-serverless-stack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-serverless-stack-plugin" + } + ], + "packageName": "@rushstack/heft-serverless-stack-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-static-asset-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-static-asset-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..1c939c3b6f --- /dev/null +++ b/common/changes/@rushstack/heft-static-asset-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-static-asset-typings-plugin" + } + ], + "packageName": "@rushstack/heft-static-asset-typings-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-storybook-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-storybook-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..c692ceed29 --- /dev/null +++ b/common/changes/@rushstack/heft-storybook-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-storybook-plugin" + } + ], + "packageName": "@rushstack/heft-storybook-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-typescript-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-typescript-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..682f718f22 --- /dev/null +++ b/common/changes/@rushstack/heft-typescript-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-typescript-plugin" + } + ], + "packageName": "@rushstack/heft-typescript-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-vscode-extension-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-vscode-extension-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..63792070ed --- /dev/null +++ b/common/changes/@rushstack/heft-vscode-extension-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-vscode-extension-plugin" + } + ], + "packageName": "@rushstack/heft-vscode-extension-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-vscode-extension-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-vscode-extension-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..fb2c5ab127 --- /dev/null +++ b/common/changes/@rushstack/heft-vscode-extension-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-vscode-extension-rig" + } + ], + "packageName": "@rushstack/heft-vscode-extension-rig", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-web-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-web-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..f659c98e33 --- /dev/null +++ b/common/changes/@rushstack/heft-web-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-web-rig" + } + ], + "packageName": "@rushstack/heft-web-rig", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-webpack4-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-webpack4-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..3a5ea6aaf5 --- /dev/null +++ b/common/changes/@rushstack/heft-webpack4-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-webpack4-plugin" + } + ], + "packageName": "@rushstack/heft-webpack4-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-webpack5-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-webpack5-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..04c9ed1cd6 --- /dev/null +++ b/common/changes/@rushstack/heft-webpack5-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft-webpack5-plugin" + } + ], + "packageName": "@rushstack/heft-webpack5-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/heft/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..954de14871 --- /dev/null +++ b/common/changes/@rushstack/heft/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/heft" + } + ], + "packageName": "@rushstack/heft", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/loader-raw-script/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/loader-raw-script/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..4ce5ef31ad --- /dev/null +++ b/common/changes/@rushstack/loader-raw-script/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/loader-raw-script" + } + ], + "packageName": "@rushstack/loader-raw-script", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/localization-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/localization-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..c392df8a74 --- /dev/null +++ b/common/changes/@rushstack/localization-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/localization-utilities" + } + ], + "packageName": "@rushstack/localization-utilities", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/lockfile-explorer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/lockfile-explorer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..35e3ab788e --- /dev/null +++ b/common/changes/@rushstack/lockfile-explorer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/lockfile-explorer" + } + ], + "packageName": "@rushstack/lockfile-explorer", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/lookup-by-path/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/lookup-by-path/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..5019d4670a --- /dev/null +++ b/common/changes/@rushstack/lookup-by-path/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/lookup-by-path" + } + ], + "packageName": "@rushstack/lookup-by-path", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/mcp-server/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/mcp-server/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..37e0f328f7 --- /dev/null +++ b/common/changes/@rushstack/mcp-server/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/mcp-server" + } + ], + "packageName": "@rushstack/mcp-server", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/module-minifier/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/module-minifier/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..772770e184 --- /dev/null +++ b/common/changes/@rushstack/module-minifier/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/module-minifier" + } + ], + "packageName": "@rushstack/module-minifier", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/node-core-library/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/node-core-library/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..ad9a03946c --- /dev/null +++ b/common/changes/@rushstack/node-core-library/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/node-core-library" + } + ], + "packageName": "@rushstack/node-core-library", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/npm-check-fork/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/npm-check-fork/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..87389c94bd --- /dev/null +++ b/common/changes/@rushstack/npm-check-fork/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/npm-check-fork" + } + ], + "packageName": "@rushstack/npm-check-fork", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/operation-graph/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/operation-graph/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..46c15f92a1 --- /dev/null +++ b/common/changes/@rushstack/operation-graph/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/operation-graph" + } + ], + "packageName": "@rushstack/operation-graph", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/package-deps-hash/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/package-deps-hash/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..79b715694d --- /dev/null +++ b/common/changes/@rushstack/package-deps-hash/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/package-deps-hash" + } + ], + "packageName": "@rushstack/package-deps-hash", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/package-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/package-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..451ab09ad5 --- /dev/null +++ b/common/changes/@rushstack/package-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/package-extractor" + } + ], + "packageName": "@rushstack/package-extractor", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/playwright-browser-tunnel/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/playwright-browser-tunnel/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..4493a150f9 --- /dev/null +++ b/common/changes/@rushstack/playwright-browser-tunnel/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/playwright-browser-tunnel" + } + ], + "packageName": "@rushstack/playwright-browser-tunnel", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/problem-matcher/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/problem-matcher/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..1ab8f7c29a --- /dev/null +++ b/common/changes/@rushstack/problem-matcher/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/problem-matcher" + } + ], + "packageName": "@rushstack/problem-matcher", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rig-package/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/rig-package/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..8a4fdb6138 --- /dev/null +++ b/common/changes/@rushstack/rig-package/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rig-package" + } + ], + "packageName": "@rushstack/rig-package", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rundown/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/rundown/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..0b476587ac --- /dev/null +++ b/common/changes/@rushstack/rundown/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rundown" + } + ], + "packageName": "@rushstack/rundown", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-daemon-protocol/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/rush-daemon-protocol/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..76327d1fd2 --- /dev/null +++ b/common/changes/@rushstack/rush-daemon-protocol/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rush-daemon-protocol" + } + ], + "packageName": "@rushstack/rush-daemon-protocol", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-daemon-transport/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/rush-daemon-transport/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..a42fa29add --- /dev/null +++ b/common/changes/@rushstack/rush-daemon-transport/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rush-daemon-transport" + } + ], + "packageName": "@rushstack/rush-daemon-transport", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-daemon/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/rush-daemon/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..aa175d6995 --- /dev/null +++ b/common/changes/@rushstack/rush-daemon/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rush-daemon" + } + ], + "packageName": "@rushstack/rush-daemon", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-mcp-docs-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/rush-mcp-docs-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..11083a3ba5 --- /dev/null +++ b/common/changes/@rushstack/rush-mcp-docs-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rush-mcp-docs-plugin" + } + ], + "packageName": "@rushstack/rush-mcp-docs-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-pnpm-kit-v10/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/rush-pnpm-kit-v10/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..905afae183 --- /dev/null +++ b/common/changes/@rushstack/rush-pnpm-kit-v10/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rush-pnpm-kit-v10" + } + ], + "packageName": "@rushstack/rush-pnpm-kit-v10", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-pnpm-kit-v8/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/rush-pnpm-kit-v8/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..30bc9e35e7 --- /dev/null +++ b/common/changes/@rushstack/rush-pnpm-kit-v8/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rush-pnpm-kit-v8" + } + ], + "packageName": "@rushstack/rush-pnpm-kit-v8", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-pnpm-kit-v9/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/rush-pnpm-kit-v9/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..50ed216acd --- /dev/null +++ b/common/changes/@rushstack/rush-pnpm-kit-v9/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rush-pnpm-kit-v9" + } + ], + "packageName": "@rushstack/rush-pnpm-kit-v9", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-published-versions-json-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/rush-published-versions-json-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..537171c848 --- /dev/null +++ b/common/changes/@rushstack/rush-published-versions-json-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rush-published-versions-json-plugin" + } + ], + "packageName": "@rushstack/rush-published-versions-json-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-reporter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/rush-reporter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..73b9444dfa --- /dev/null +++ b/common/changes/@rushstack/rush-reporter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rush-reporter" + } + ], + "packageName": "@rushstack/rush-reporter", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-terminal-renderer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/rush-terminal-renderer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..839fd9b611 --- /dev/null +++ b/common/changes/@rushstack/rush-terminal-renderer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/rush-terminal-renderer" + } + ], + "packageName": "@rushstack/rush-terminal-renderer", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/set-webpack-public-path-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/set-webpack-public-path-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..c0cdc16b5b --- /dev/null +++ b/common/changes/@rushstack/set-webpack-public-path-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/set-webpack-public-path-plugin" + } + ], + "packageName": "@rushstack/set-webpack-public-path-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/stream-collator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/stream-collator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..bbf99064f2 --- /dev/null +++ b/common/changes/@rushstack/stream-collator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/stream-collator" + } + ], + "packageName": "@rushstack/stream-collator", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/terminal/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/terminal/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..c3c8d60997 --- /dev/null +++ b/common/changes/@rushstack/terminal/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/terminal" + } + ], + "packageName": "@rushstack/terminal", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/trace-import/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/trace-import/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..06e75e8ca5 --- /dev/null +++ b/common/changes/@rushstack/trace-import/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/trace-import" + } + ], + "packageName": "@rushstack/trace-import", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/tree-pattern/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/tree-pattern/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..6b5b77f0a4 --- /dev/null +++ b/common/changes/@rushstack/tree-pattern/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/tree-pattern" + } + ], + "packageName": "@rushstack/tree-pattern", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/ts-command-line/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/ts-command-line/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..cbcf905334 --- /dev/null +++ b/common/changes/@rushstack/ts-command-line/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/ts-command-line" + } + ], + "packageName": "@rushstack/ts-command-line", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/typings-generator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/typings-generator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..76c168197d --- /dev/null +++ b/common/changes/@rushstack/typings-generator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/typings-generator" + } + ], + "packageName": "@rushstack/typings-generator", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack-embedded-dependencies-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/webpack-embedded-dependencies-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..0b23ca6c25 --- /dev/null +++ b/common/changes/@rushstack/webpack-embedded-dependencies-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/webpack-embedded-dependencies-plugin" + } + ], + "packageName": "@rushstack/webpack-embedded-dependencies-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack-plugin-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/webpack-plugin-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..2d64b8bfab --- /dev/null +++ b/common/changes/@rushstack/webpack-plugin-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/webpack-plugin-utilities" + } + ], + "packageName": "@rushstack/webpack-plugin-utilities", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack-preserve-dynamic-require-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/webpack-preserve-dynamic-require-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..a4665718c6 --- /dev/null +++ b/common/changes/@rushstack/webpack-preserve-dynamic-require-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/webpack-preserve-dynamic-require-plugin" + } + ], + "packageName": "@rushstack/webpack-preserve-dynamic-require-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack-workspace-resolve-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/webpack-workspace-resolve-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..700321e1ad --- /dev/null +++ b/common/changes/@rushstack/webpack-workspace-resolve-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/webpack-workspace-resolve-plugin" + } + ], + "packageName": "@rushstack/webpack-workspace-resolve-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack4-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/webpack4-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..c575fb92f0 --- /dev/null +++ b/common/changes/@rushstack/webpack4-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/webpack4-localization-plugin" + } + ], + "packageName": "@rushstack/webpack4-localization-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack4-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/webpack4-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..da0c5b5011 --- /dev/null +++ b/common/changes/@rushstack/webpack4-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/webpack4-module-minifier-plugin" + } + ], + "packageName": "@rushstack/webpack4-module-minifier-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack5-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/webpack5-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..b0246017bf --- /dev/null +++ b/common/changes/@rushstack/webpack5-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/webpack5-localization-plugin" + } + ], + "packageName": "@rushstack/webpack5-localization-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack5-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/webpack5-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..9df7953bd7 --- /dev/null +++ b/common/changes/@rushstack/webpack5-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/webpack5-module-minifier-plugin" + } + ], + "packageName": "@rushstack/webpack5-module-minifier-plugin", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/worker-pool/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/worker-pool/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..5c32337bf2 --- /dev/null +++ b/common/changes/@rushstack/worker-pool/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/worker-pool" + } + ], + "packageName": "@rushstack/worker-pool", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file diff --git a/common/changes/@rushstack/zipsync/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/zipsync/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json new file mode 100644 index 0000000000..e2a30971e5 --- /dev/null +++ b/common/changes/@rushstack/zipsync/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json @@ -0,0 +1,11 @@ +{ + "changes": [ + { + "comment": "", + "type": "none", + "packageName": "@rushstack/zipsync" + } + ], + "packageName": "@rushstack/zipsync", + "email": "5100938+bmiddha@users.noreply.github.com" +} \ No newline at end of file From 2fdd3a85462423c0204be0e57828a7d0df6d8d13 Mon Sep 17 00:00:00 2001 From: Bharat Middha <5100938+bmiddha@users.noreply.github.com> Date: Wed, 9 Sep 2026 16:02:33 -0700 Subject: [PATCH 9/9] Remove redundant phased pack change files Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com> Copilot-Session: 60a4b373-248e-4555-9f8b-65acbff63577 --- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-55.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-35.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-56.json | 11 ----------- ...gate-publishing-pipelines_2026-09-09-23-01-36.json | 11 ----------- 124 files changed, 1364 deletions(-) delete mode 100644 common/changes/@microsoft/api-documenter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@microsoft/api-extractor-model/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@microsoft/api-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@microsoft/load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json delete mode 100644 common/changes/@microsoft/loader-load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@microsoft/rush/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@microsoft/webpack5-load-themed-styles-loader/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@microsoft/webpack5-load-themed-styles-loader/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/cpu-profile-summarizer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/credential-cache/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/credential-cache/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/debug-certificate-manager/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/debug-certificate-manager/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/eslint-bulk/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/eslint-config/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/eslint-patch/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/eslint-patch/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/eslint-plugin-packlets/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/eslint-plugin-packlets/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/eslint-plugin-security/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/eslint-plugin-security/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/eslint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/eslint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/hashed-folder-copy-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft-api-extractor-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft-api-extractor-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft-config-file/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft-config-file/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft-dev-cert-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft-dev-cert-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft-isolated-typescript-transpile-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft-isolated-typescript-transpile-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft-jest-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft-jest-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft-json-schema-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft-json-schema-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft-lint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft-lint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft-localization-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft-localization-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft-node-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft-node-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft-rspack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft-rspack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft-sass-load-themed-styles-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft-sass-load-themed-styles-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft-sass-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft-sass-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft-serverless-stack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft-serverless-stack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft-static-asset-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft-static-asset-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft-storybook-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft-storybook-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft-typescript-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft-typescript-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft-vscode-extension-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft-vscode-extension-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft-vscode-extension-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft-vscode-extension-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft-web-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft-web-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft-webpack4-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft-webpack4-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft-webpack5-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft-webpack5-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/heft/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json delete mode 100644 common/changes/@rushstack/heft/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/loader-raw-script/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/localization-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/lockfile-explorer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/lookup-by-path/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/lookup-by-path/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/mcp-server/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/module-minifier/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/module-minifier/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/node-core-library/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/node-core-library/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/npm-check-fork/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/npm-check-fork/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/operation-graph/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/operation-graph/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/package-deps-hash/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/package-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/package-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/playwright-browser-tunnel/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/problem-matcher/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/problem-matcher/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/rig-package/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/rig-package/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/rundown/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/rush-daemon-protocol/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/rush-daemon-transport/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/rush-daemon/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/rush-mcp-docs-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/rush-pnpm-kit-v10/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/rush-pnpm-kit-v8/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/rush-pnpm-kit-v9/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/rush-published-versions-json-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/rush-reporter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/rush-terminal-renderer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/set-webpack-public-path-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/stream-collator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/stream-collator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/terminal/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/terminal/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/trace-import/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/tree-pattern/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/tree-pattern/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/ts-command-line/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/ts-command-line/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/typings-generator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/typings-generator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/webpack-embedded-dependencies-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/webpack-plugin-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/webpack-preserve-dynamic-require-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/webpack-workspace-resolve-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/webpack4-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/webpack4-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/webpack5-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/webpack5-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/worker-pool/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json delete mode 100644 common/changes/@rushstack/worker-pool/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json delete mode 100644 common/changes/@rushstack/zipsync/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json diff --git a/common/changes/@microsoft/api-documenter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@microsoft/api-documenter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index 97858bb295..0000000000 --- a/common/changes/@microsoft/api-documenter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@microsoft/api-documenter" - } - ], - "packageName": "@microsoft/api-documenter", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@microsoft/api-extractor-model/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@microsoft/api-extractor-model/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index ed19098e6c..0000000000 --- a/common/changes/@microsoft/api-extractor-model/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@microsoft/api-extractor-model" - } - ], - "packageName": "@microsoft/api-extractor-model", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@microsoft/api-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@microsoft/api-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index c3ea4eadf1..0000000000 --- a/common/changes/@microsoft/api-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@microsoft/api-extractor" - } - ], - "packageName": "@microsoft/api-extractor", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@microsoft/load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json b/common/changes/@microsoft/load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json deleted file mode 100644 index ee4bbd1d53..0000000000 --- a/common/changes/@microsoft/load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-55.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@microsoft/load-themed-styles" - } - ], - "packageName": "@microsoft/load-themed-styles", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@microsoft/loader-load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@microsoft/loader-load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index fc9609bf71..0000000000 --- a/common/changes/@microsoft/loader-load-themed-styles/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@microsoft/loader-load-themed-styles" - } - ], - "packageName": "@microsoft/loader-load-themed-styles", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@microsoft/rush/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@microsoft/rush/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index a4e9a181a5..0000000000 --- a/common/changes/@microsoft/rush/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@microsoft/rush" - } - ], - "packageName": "@microsoft/rush", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@microsoft/webpack5-load-themed-styles-loader/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@microsoft/webpack5-load-themed-styles-loader/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index a372ffd154..0000000000 --- a/common/changes/@microsoft/webpack5-load-themed-styles-loader/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@microsoft/webpack5-load-themed-styles-loader" - } - ], - "packageName": "@microsoft/webpack5-load-themed-styles-loader", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@microsoft/webpack5-load-themed-styles-loader/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@microsoft/webpack5-load-themed-styles-loader/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index a372ffd154..0000000000 --- a/common/changes/@microsoft/webpack5-load-themed-styles-loader/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@microsoft/webpack5-load-themed-styles-loader" - } - ], - "packageName": "@microsoft/webpack5-load-themed-styles-loader", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/cpu-profile-summarizer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/cpu-profile-summarizer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index 9bf0008da3..0000000000 --- a/common/changes/@rushstack/cpu-profile-summarizer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/cpu-profile-summarizer" - } - ], - "packageName": "@rushstack/cpu-profile-summarizer", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/credential-cache/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/credential-cache/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index 6f65eba333..0000000000 --- a/common/changes/@rushstack/credential-cache/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/credential-cache" - } - ], - "packageName": "@rushstack/credential-cache", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/credential-cache/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/credential-cache/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 6f65eba333..0000000000 --- a/common/changes/@rushstack/credential-cache/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/credential-cache" - } - ], - "packageName": "@rushstack/credential-cache", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/debug-certificate-manager/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/debug-certificate-manager/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index 065e12877a..0000000000 --- a/common/changes/@rushstack/debug-certificate-manager/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/debug-certificate-manager" - } - ], - "packageName": "@rushstack/debug-certificate-manager", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/debug-certificate-manager/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/debug-certificate-manager/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 065e12877a..0000000000 --- a/common/changes/@rushstack/debug-certificate-manager/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/debug-certificate-manager" - } - ], - "packageName": "@rushstack/debug-certificate-manager", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-bulk/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/eslint-bulk/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index bfaf07c6ba..0000000000 --- a/common/changes/@rushstack/eslint-bulk/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/eslint-bulk" - } - ], - "packageName": "@rushstack/eslint-bulk", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-config/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/eslint-config/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 01f6fd829e..0000000000 --- a/common/changes/@rushstack/eslint-config/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/eslint-config" - } - ], - "packageName": "@rushstack/eslint-config", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-patch/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/eslint-patch/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index b5e98c9a13..0000000000 --- a/common/changes/@rushstack/eslint-patch/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/eslint-patch" - } - ], - "packageName": "@rushstack/eslint-patch", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-patch/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/eslint-patch/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index b5e98c9a13..0000000000 --- a/common/changes/@rushstack/eslint-patch/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/eslint-patch" - } - ], - "packageName": "@rushstack/eslint-patch", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-plugin-packlets/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/eslint-plugin-packlets/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index 1c6d051698..0000000000 --- a/common/changes/@rushstack/eslint-plugin-packlets/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/eslint-plugin-packlets" - } - ], - "packageName": "@rushstack/eslint-plugin-packlets", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-plugin-packlets/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/eslint-plugin-packlets/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 1c6d051698..0000000000 --- a/common/changes/@rushstack/eslint-plugin-packlets/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/eslint-plugin-packlets" - } - ], - "packageName": "@rushstack/eslint-plugin-packlets", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-plugin-security/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/eslint-plugin-security/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index bc445e4d35..0000000000 --- a/common/changes/@rushstack/eslint-plugin-security/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/eslint-plugin-security" - } - ], - "packageName": "@rushstack/eslint-plugin-security", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-plugin-security/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/eslint-plugin-security/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index bc445e4d35..0000000000 --- a/common/changes/@rushstack/eslint-plugin-security/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/eslint-plugin-security" - } - ], - "packageName": "@rushstack/eslint-plugin-security", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/eslint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index b170c23b70..0000000000 --- a/common/changes/@rushstack/eslint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/eslint-plugin" - } - ], - "packageName": "@rushstack/eslint-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/eslint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/eslint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index b170c23b70..0000000000 --- a/common/changes/@rushstack/eslint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/eslint-plugin" - } - ], - "packageName": "@rushstack/eslint-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/hashed-folder-copy-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/hashed-folder-copy-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index ff18c3381d..0000000000 --- a/common/changes/@rushstack/hashed-folder-copy-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/hashed-folder-copy-plugin" - } - ], - "packageName": "@rushstack/hashed-folder-copy-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-api-extractor-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-api-extractor-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index eeeb345503..0000000000 --- a/common/changes/@rushstack/heft-api-extractor-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-api-extractor-plugin" - } - ], - "packageName": "@rushstack/heft-api-extractor-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-api-extractor-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-api-extractor-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index eeeb345503..0000000000 --- a/common/changes/@rushstack/heft-api-extractor-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-api-extractor-plugin" - } - ], - "packageName": "@rushstack/heft-api-extractor-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-config-file/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-config-file/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index f7ecbac3c8..0000000000 --- a/common/changes/@rushstack/heft-config-file/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-config-file" - } - ], - "packageName": "@rushstack/heft-config-file", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-config-file/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-config-file/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index f7ecbac3c8..0000000000 --- a/common/changes/@rushstack/heft-config-file/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-config-file" - } - ], - "packageName": "@rushstack/heft-config-file", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-dev-cert-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-dev-cert-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index bbc4de3133..0000000000 --- a/common/changes/@rushstack/heft-dev-cert-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-dev-cert-plugin" - } - ], - "packageName": "@rushstack/heft-dev-cert-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-dev-cert-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-dev-cert-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index bbc4de3133..0000000000 --- a/common/changes/@rushstack/heft-dev-cert-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-dev-cert-plugin" - } - ], - "packageName": "@rushstack/heft-dev-cert-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-isolated-typescript-transpile-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-isolated-typescript-transpile-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index c1fadea233..0000000000 --- a/common/changes/@rushstack/heft-isolated-typescript-transpile-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-isolated-typescript-transpile-plugin" - } - ], - "packageName": "@rushstack/heft-isolated-typescript-transpile-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-isolated-typescript-transpile-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-isolated-typescript-transpile-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index c1fadea233..0000000000 --- a/common/changes/@rushstack/heft-isolated-typescript-transpile-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-isolated-typescript-transpile-plugin" - } - ], - "packageName": "@rushstack/heft-isolated-typescript-transpile-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-jest-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-jest-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index 642d17be18..0000000000 --- a/common/changes/@rushstack/heft-jest-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-jest-plugin" - } - ], - "packageName": "@rushstack/heft-jest-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-jest-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-jest-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 642d17be18..0000000000 --- a/common/changes/@rushstack/heft-jest-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-jest-plugin" - } - ], - "packageName": "@rushstack/heft-jest-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-json-schema-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-json-schema-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index 4fef192ab2..0000000000 --- a/common/changes/@rushstack/heft-json-schema-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-json-schema-typings-plugin" - } - ], - "packageName": "@rushstack/heft-json-schema-typings-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-json-schema-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-json-schema-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 4fef192ab2..0000000000 --- a/common/changes/@rushstack/heft-json-schema-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-json-schema-typings-plugin" - } - ], - "packageName": "@rushstack/heft-json-schema-typings-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-lint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-lint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index bd90fab6ae..0000000000 --- a/common/changes/@rushstack/heft-lint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-lint-plugin" - } - ], - "packageName": "@rushstack/heft-lint-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-lint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-lint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index bd90fab6ae..0000000000 --- a/common/changes/@rushstack/heft-lint-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-lint-plugin" - } - ], - "packageName": "@rushstack/heft-lint-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-localization-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-localization-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index 2045ac0f51..0000000000 --- a/common/changes/@rushstack/heft-localization-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-localization-typings-plugin" - } - ], - "packageName": "@rushstack/heft-localization-typings-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-localization-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-localization-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 2045ac0f51..0000000000 --- a/common/changes/@rushstack/heft-localization-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-localization-typings-plugin" - } - ], - "packageName": "@rushstack/heft-localization-typings-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-node-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-node-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index 9c2c779350..0000000000 --- a/common/changes/@rushstack/heft-node-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-node-rig" - } - ], - "packageName": "@rushstack/heft-node-rig", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-node-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-node-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 9c2c779350..0000000000 --- a/common/changes/@rushstack/heft-node-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-node-rig" - } - ], - "packageName": "@rushstack/heft-node-rig", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-rspack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-rspack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index 4475c2277e..0000000000 --- a/common/changes/@rushstack/heft-rspack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-rspack-plugin" - } - ], - "packageName": "@rushstack/heft-rspack-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-rspack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-rspack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 4475c2277e..0000000000 --- a/common/changes/@rushstack/heft-rspack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-rspack-plugin" - } - ], - "packageName": "@rushstack/heft-rspack-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-sass-load-themed-styles-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-sass-load-themed-styles-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index 1752e942d8..0000000000 --- a/common/changes/@rushstack/heft-sass-load-themed-styles-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-sass-load-themed-styles-plugin" - } - ], - "packageName": "@rushstack/heft-sass-load-themed-styles-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-sass-load-themed-styles-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-sass-load-themed-styles-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 1752e942d8..0000000000 --- a/common/changes/@rushstack/heft-sass-load-themed-styles-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-sass-load-themed-styles-plugin" - } - ], - "packageName": "@rushstack/heft-sass-load-themed-styles-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-sass-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-sass-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index c27e453134..0000000000 --- a/common/changes/@rushstack/heft-sass-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-sass-plugin" - } - ], - "packageName": "@rushstack/heft-sass-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-sass-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-sass-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index c27e453134..0000000000 --- a/common/changes/@rushstack/heft-sass-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-sass-plugin" - } - ], - "packageName": "@rushstack/heft-sass-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-serverless-stack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-serverless-stack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index 45e7e357d7..0000000000 --- a/common/changes/@rushstack/heft-serverless-stack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-serverless-stack-plugin" - } - ], - "packageName": "@rushstack/heft-serverless-stack-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-serverless-stack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-serverless-stack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 45e7e357d7..0000000000 --- a/common/changes/@rushstack/heft-serverless-stack-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-serverless-stack-plugin" - } - ], - "packageName": "@rushstack/heft-serverless-stack-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-static-asset-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-static-asset-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index 1c939c3b6f..0000000000 --- a/common/changes/@rushstack/heft-static-asset-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-static-asset-typings-plugin" - } - ], - "packageName": "@rushstack/heft-static-asset-typings-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-static-asset-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-static-asset-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 1c939c3b6f..0000000000 --- a/common/changes/@rushstack/heft-static-asset-typings-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-static-asset-typings-plugin" - } - ], - "packageName": "@rushstack/heft-static-asset-typings-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-storybook-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-storybook-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index c692ceed29..0000000000 --- a/common/changes/@rushstack/heft-storybook-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-storybook-plugin" - } - ], - "packageName": "@rushstack/heft-storybook-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-storybook-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-storybook-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index c692ceed29..0000000000 --- a/common/changes/@rushstack/heft-storybook-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-storybook-plugin" - } - ], - "packageName": "@rushstack/heft-storybook-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-typescript-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-typescript-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index 682f718f22..0000000000 --- a/common/changes/@rushstack/heft-typescript-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-typescript-plugin" - } - ], - "packageName": "@rushstack/heft-typescript-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-typescript-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-typescript-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 682f718f22..0000000000 --- a/common/changes/@rushstack/heft-typescript-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-typescript-plugin" - } - ], - "packageName": "@rushstack/heft-typescript-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-vscode-extension-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-vscode-extension-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index 63792070ed..0000000000 --- a/common/changes/@rushstack/heft-vscode-extension-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-vscode-extension-plugin" - } - ], - "packageName": "@rushstack/heft-vscode-extension-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-vscode-extension-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-vscode-extension-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 63792070ed..0000000000 --- a/common/changes/@rushstack/heft-vscode-extension-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-vscode-extension-plugin" - } - ], - "packageName": "@rushstack/heft-vscode-extension-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-vscode-extension-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-vscode-extension-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index fb2c5ab127..0000000000 --- a/common/changes/@rushstack/heft-vscode-extension-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-vscode-extension-rig" - } - ], - "packageName": "@rushstack/heft-vscode-extension-rig", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-vscode-extension-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-vscode-extension-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index fb2c5ab127..0000000000 --- a/common/changes/@rushstack/heft-vscode-extension-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-vscode-extension-rig" - } - ], - "packageName": "@rushstack/heft-vscode-extension-rig", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-web-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-web-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index f659c98e33..0000000000 --- a/common/changes/@rushstack/heft-web-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-web-rig" - } - ], - "packageName": "@rushstack/heft-web-rig", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-web-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-web-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index f659c98e33..0000000000 --- a/common/changes/@rushstack/heft-web-rig/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-web-rig" - } - ], - "packageName": "@rushstack/heft-web-rig", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-webpack4-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-webpack4-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index 3a5ea6aaf5..0000000000 --- a/common/changes/@rushstack/heft-webpack4-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-webpack4-plugin" - } - ], - "packageName": "@rushstack/heft-webpack4-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-webpack4-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-webpack4-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 3a5ea6aaf5..0000000000 --- a/common/changes/@rushstack/heft-webpack4-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-webpack4-plugin" - } - ], - "packageName": "@rushstack/heft-webpack4-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-webpack5-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft-webpack5-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index 04c9ed1cd6..0000000000 --- a/common/changes/@rushstack/heft-webpack5-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-webpack5-plugin" - } - ], - "packageName": "@rushstack/heft-webpack5-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft-webpack5-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft-webpack5-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 04c9ed1cd6..0000000000 --- a/common/changes/@rushstack/heft-webpack5-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft-webpack5-plugin" - } - ], - "packageName": "@rushstack/heft-webpack5-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json b/common/changes/@rushstack/heft/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json deleted file mode 100644 index 954de14871..0000000000 --- a/common/changes/@rushstack/heft/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-35.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft" - } - ], - "packageName": "@rushstack/heft", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/heft/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/heft/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 954de14871..0000000000 --- a/common/changes/@rushstack/heft/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/heft" - } - ], - "packageName": "@rushstack/heft", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/loader-raw-script/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/loader-raw-script/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 4ce5ef31ad..0000000000 --- a/common/changes/@rushstack/loader-raw-script/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/loader-raw-script" - } - ], - "packageName": "@rushstack/loader-raw-script", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/localization-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/localization-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index c392df8a74..0000000000 --- a/common/changes/@rushstack/localization-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/localization-utilities" - } - ], - "packageName": "@rushstack/localization-utilities", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/lockfile-explorer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/lockfile-explorer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index 35e3ab788e..0000000000 --- a/common/changes/@rushstack/lockfile-explorer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/lockfile-explorer" - } - ], - "packageName": "@rushstack/lockfile-explorer", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/lookup-by-path/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/lookup-by-path/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index 5019d4670a..0000000000 --- a/common/changes/@rushstack/lookup-by-path/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/lookup-by-path" - } - ], - "packageName": "@rushstack/lookup-by-path", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/lookup-by-path/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/lookup-by-path/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 5019d4670a..0000000000 --- a/common/changes/@rushstack/lookup-by-path/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/lookup-by-path" - } - ], - "packageName": "@rushstack/lookup-by-path", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/mcp-server/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/mcp-server/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index 37e0f328f7..0000000000 --- a/common/changes/@rushstack/mcp-server/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/mcp-server" - } - ], - "packageName": "@rushstack/mcp-server", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/module-minifier/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/module-minifier/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index 772770e184..0000000000 --- a/common/changes/@rushstack/module-minifier/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/module-minifier" - } - ], - "packageName": "@rushstack/module-minifier", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/module-minifier/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/module-minifier/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 772770e184..0000000000 --- a/common/changes/@rushstack/module-minifier/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/module-minifier" - } - ], - "packageName": "@rushstack/module-minifier", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/node-core-library/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/node-core-library/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index ad9a03946c..0000000000 --- a/common/changes/@rushstack/node-core-library/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/node-core-library" - } - ], - "packageName": "@rushstack/node-core-library", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/node-core-library/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/node-core-library/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index ad9a03946c..0000000000 --- a/common/changes/@rushstack/node-core-library/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/node-core-library" - } - ], - "packageName": "@rushstack/node-core-library", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/npm-check-fork/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/npm-check-fork/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index 87389c94bd..0000000000 --- a/common/changes/@rushstack/npm-check-fork/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/npm-check-fork" - } - ], - "packageName": "@rushstack/npm-check-fork", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/npm-check-fork/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/npm-check-fork/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 87389c94bd..0000000000 --- a/common/changes/@rushstack/npm-check-fork/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/npm-check-fork" - } - ], - "packageName": "@rushstack/npm-check-fork", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/operation-graph/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/operation-graph/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index 46c15f92a1..0000000000 --- a/common/changes/@rushstack/operation-graph/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/operation-graph" - } - ], - "packageName": "@rushstack/operation-graph", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/operation-graph/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/operation-graph/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 46c15f92a1..0000000000 --- a/common/changes/@rushstack/operation-graph/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/operation-graph" - } - ], - "packageName": "@rushstack/operation-graph", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/package-deps-hash/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/package-deps-hash/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 79b715694d..0000000000 --- a/common/changes/@rushstack/package-deps-hash/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/package-deps-hash" - } - ], - "packageName": "@rushstack/package-deps-hash", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/package-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/package-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index 451ab09ad5..0000000000 --- a/common/changes/@rushstack/package-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/package-extractor" - } - ], - "packageName": "@rushstack/package-extractor", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/package-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/package-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 451ab09ad5..0000000000 --- a/common/changes/@rushstack/package-extractor/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/package-extractor" - } - ], - "packageName": "@rushstack/package-extractor", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/playwright-browser-tunnel/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/playwright-browser-tunnel/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index 4493a150f9..0000000000 --- a/common/changes/@rushstack/playwright-browser-tunnel/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/playwright-browser-tunnel" - } - ], - "packageName": "@rushstack/playwright-browser-tunnel", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/problem-matcher/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/problem-matcher/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index 1ab8f7c29a..0000000000 --- a/common/changes/@rushstack/problem-matcher/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/problem-matcher" - } - ], - "packageName": "@rushstack/problem-matcher", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/problem-matcher/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/problem-matcher/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 1ab8f7c29a..0000000000 --- a/common/changes/@rushstack/problem-matcher/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/problem-matcher" - } - ], - "packageName": "@rushstack/problem-matcher", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/rig-package/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/rig-package/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index 8a4fdb6138..0000000000 --- a/common/changes/@rushstack/rig-package/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/rig-package" - } - ], - "packageName": "@rushstack/rig-package", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/rig-package/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/rig-package/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 8a4fdb6138..0000000000 --- a/common/changes/@rushstack/rig-package/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/rig-package" - } - ], - "packageName": "@rushstack/rig-package", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/rundown/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/rundown/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index 0b476587ac..0000000000 --- a/common/changes/@rushstack/rundown/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/rundown" - } - ], - "packageName": "@rushstack/rundown", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-daemon-protocol/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/rush-daemon-protocol/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 76327d1fd2..0000000000 --- a/common/changes/@rushstack/rush-daemon-protocol/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/rush-daemon-protocol" - } - ], - "packageName": "@rushstack/rush-daemon-protocol", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-daemon-transport/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/rush-daemon-transport/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index a42fa29add..0000000000 --- a/common/changes/@rushstack/rush-daemon-transport/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/rush-daemon-transport" - } - ], - "packageName": "@rushstack/rush-daemon-transport", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-daemon/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/rush-daemon/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index aa175d6995..0000000000 --- a/common/changes/@rushstack/rush-daemon/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/rush-daemon" - } - ], - "packageName": "@rushstack/rush-daemon", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-mcp-docs-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/rush-mcp-docs-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 11083a3ba5..0000000000 --- a/common/changes/@rushstack/rush-mcp-docs-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/rush-mcp-docs-plugin" - } - ], - "packageName": "@rushstack/rush-mcp-docs-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-pnpm-kit-v10/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/rush-pnpm-kit-v10/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 905afae183..0000000000 --- a/common/changes/@rushstack/rush-pnpm-kit-v10/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/rush-pnpm-kit-v10" - } - ], - "packageName": "@rushstack/rush-pnpm-kit-v10", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-pnpm-kit-v8/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/rush-pnpm-kit-v8/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 30bc9e35e7..0000000000 --- a/common/changes/@rushstack/rush-pnpm-kit-v8/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/rush-pnpm-kit-v8" - } - ], - "packageName": "@rushstack/rush-pnpm-kit-v8", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-pnpm-kit-v9/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/rush-pnpm-kit-v9/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 50ed216acd..0000000000 --- a/common/changes/@rushstack/rush-pnpm-kit-v9/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/rush-pnpm-kit-v9" - } - ], - "packageName": "@rushstack/rush-pnpm-kit-v9", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-published-versions-json-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/rush-published-versions-json-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 537171c848..0000000000 --- a/common/changes/@rushstack/rush-published-versions-json-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/rush-published-versions-json-plugin" - } - ], - "packageName": "@rushstack/rush-published-versions-json-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-reporter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/rush-reporter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 73b9444dfa..0000000000 --- a/common/changes/@rushstack/rush-reporter/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/rush-reporter" - } - ], - "packageName": "@rushstack/rush-reporter", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/rush-terminal-renderer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/rush-terminal-renderer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index 839fd9b611..0000000000 --- a/common/changes/@rushstack/rush-terminal-renderer/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/rush-terminal-renderer" - } - ], - "packageName": "@rushstack/rush-terminal-renderer", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/set-webpack-public-path-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/set-webpack-public-path-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index c0cdc16b5b..0000000000 --- a/common/changes/@rushstack/set-webpack-public-path-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/set-webpack-public-path-plugin" - } - ], - "packageName": "@rushstack/set-webpack-public-path-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/stream-collator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/stream-collator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index bbf99064f2..0000000000 --- a/common/changes/@rushstack/stream-collator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/stream-collator" - } - ], - "packageName": "@rushstack/stream-collator", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/stream-collator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/stream-collator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index bbf99064f2..0000000000 --- a/common/changes/@rushstack/stream-collator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/stream-collator" - } - ], - "packageName": "@rushstack/stream-collator", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/terminal/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/terminal/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index c3c8d60997..0000000000 --- a/common/changes/@rushstack/terminal/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/terminal" - } - ], - "packageName": "@rushstack/terminal", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/terminal/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/terminal/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index c3c8d60997..0000000000 --- a/common/changes/@rushstack/terminal/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/terminal" - } - ], - "packageName": "@rushstack/terminal", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/trace-import/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/trace-import/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index 06e75e8ca5..0000000000 --- a/common/changes/@rushstack/trace-import/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/trace-import" - } - ], - "packageName": "@rushstack/trace-import", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/tree-pattern/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/tree-pattern/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index 6b5b77f0a4..0000000000 --- a/common/changes/@rushstack/tree-pattern/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/tree-pattern" - } - ], - "packageName": "@rushstack/tree-pattern", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/tree-pattern/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/tree-pattern/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 6b5b77f0a4..0000000000 --- a/common/changes/@rushstack/tree-pattern/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/tree-pattern" - } - ], - "packageName": "@rushstack/tree-pattern", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/ts-command-line/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/ts-command-line/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index cbcf905334..0000000000 --- a/common/changes/@rushstack/ts-command-line/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/ts-command-line" - } - ], - "packageName": "@rushstack/ts-command-line", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/ts-command-line/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/ts-command-line/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index cbcf905334..0000000000 --- a/common/changes/@rushstack/ts-command-line/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/ts-command-line" - } - ], - "packageName": "@rushstack/ts-command-line", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/typings-generator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/typings-generator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index 76c168197d..0000000000 --- a/common/changes/@rushstack/typings-generator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/typings-generator" - } - ], - "packageName": "@rushstack/typings-generator", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/typings-generator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/typings-generator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 76c168197d..0000000000 --- a/common/changes/@rushstack/typings-generator/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/typings-generator" - } - ], - "packageName": "@rushstack/typings-generator", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack-embedded-dependencies-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/webpack-embedded-dependencies-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 0b23ca6c25..0000000000 --- a/common/changes/@rushstack/webpack-embedded-dependencies-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/webpack-embedded-dependencies-plugin" - } - ], - "packageName": "@rushstack/webpack-embedded-dependencies-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack-plugin-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/webpack-plugin-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 2d64b8bfab..0000000000 --- a/common/changes/@rushstack/webpack-plugin-utilities/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/webpack-plugin-utilities" - } - ], - "packageName": "@rushstack/webpack-plugin-utilities", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack-preserve-dynamic-require-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/webpack-preserve-dynamic-require-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index a4665718c6..0000000000 --- a/common/changes/@rushstack/webpack-preserve-dynamic-require-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/webpack-preserve-dynamic-require-plugin" - } - ], - "packageName": "@rushstack/webpack-preserve-dynamic-require-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack-workspace-resolve-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/webpack-workspace-resolve-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 700321e1ad..0000000000 --- a/common/changes/@rushstack/webpack-workspace-resolve-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/webpack-workspace-resolve-plugin" - } - ], - "packageName": "@rushstack/webpack-workspace-resolve-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack4-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/webpack4-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index c575fb92f0..0000000000 --- a/common/changes/@rushstack/webpack4-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/webpack4-localization-plugin" - } - ], - "packageName": "@rushstack/webpack4-localization-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack4-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/webpack4-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index da0c5b5011..0000000000 --- a/common/changes/@rushstack/webpack4-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/webpack4-module-minifier-plugin" - } - ], - "packageName": "@rushstack/webpack4-module-minifier-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack5-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/webpack5-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index b0246017bf..0000000000 --- a/common/changes/@rushstack/webpack5-localization-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/webpack5-localization-plugin" - } - ], - "packageName": "@rushstack/webpack5-localization-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/webpack5-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/webpack5-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 9df7953bd7..0000000000 --- a/common/changes/@rushstack/webpack5-module-minifier-plugin/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/webpack5-module-minifier-plugin" - } - ], - "packageName": "@rushstack/webpack5-module-minifier-plugin", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/worker-pool/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/worker-pool/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index 5c32337bf2..0000000000 --- a/common/changes/@rushstack/worker-pool/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/worker-pool" - } - ], - "packageName": "@rushstack/worker-pool", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/worker-pool/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json b/common/changes/@rushstack/worker-pool/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json deleted file mode 100644 index 5c32337bf2..0000000000 --- a/common/changes/@rushstack/worker-pool/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-56.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/worker-pool" - } - ], - "packageName": "@rushstack/worker-pool", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file diff --git a/common/changes/@rushstack/zipsync/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json b/common/changes/@rushstack/zipsync/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json deleted file mode 100644 index e2a30971e5..0000000000 --- a/common/changes/@rushstack/zipsync/bharatmiddha-microsoft-investigate-publishing-pipelines_2026-09-09-23-01-36.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "changes": [ - { - "comment": "", - "type": "none", - "packageName": "@rushstack/zipsync" - } - ], - "packageName": "@rushstack/zipsync", - "email": "5100938+bmiddha@users.noreply.github.com" -} \ No newline at end of file