From 79671740f0e4bfe816aaf08922b83d30d458ece8 Mon Sep 17 00:00:00 2001 From: Jane Chu <7559015+janechu@users.noreply.github.com> Date: Wed, 11 Dec 2024 11:04:48 -0800 Subject: [PATCH] Change dependent change default to none (#7052) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit # Pull Request ## 📖 Description It seems beachball has an issue with dependent change types being patch bumped and attempting to release with the bumpDeps configuration option being set. This changes the current changes in the change folder to bump dependentChangeType to none and to default to dependentChangeType none for future changes. ## ✅ Checklist ### General - [ ] I have included a change request file using `$ npm run change` - [ ] I have added tests for my changes. - [x] I have tested my changes. - [ ] I have updated the project documentation to reflect my changes. - [x] I have read the [CONTRIBUTING](https://github.com/microsoft/fast/blob/master/CONTRIBUTING.md) documentation and followed the [standards](https://github.com/microsoft/fast/blob/master/CODE_OF_CONDUCT.md#our-standards) for this project. --- ...osoft-fast-element-161de870-eea2-44b4-a75d-2bc3f19a3b11.json | 2 +- ...osoft-fast-element-b679d332-e9c0-4e4a-984b-c06481f24caa.json | 2 +- package.json | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/change/@microsoft-fast-element-161de870-eea2-44b4-a75d-2bc3f19a3b11.json b/change/@microsoft-fast-element-161de870-eea2-44b4-a75d-2bc3f19a3b11.json index de8d33956b9..1e834db6857 100644 --- a/change/@microsoft-fast-element-161de870-eea2-44b4-a75d-2bc3f19a3b11.json +++ b/change/@microsoft-fast-element-161de870-eea2-44b4-a75d-2bc3f19a3b11.json @@ -3,5 +3,5 @@ "comment": "Patch bumping to apply latest tag to the package", "packageName": "@microsoft/fast-element", "email": "7559015+janechu@users.noreply.github.com", - "dependentChangeType": "patch" + "dependentChangeType": "none" } diff --git a/change/@microsoft-fast-element-b679d332-e9c0-4e4a-984b-c06481f24caa.json b/change/@microsoft-fast-element-b679d332-e9c0-4e4a-984b-c06481f24caa.json index 6a3fb2c8173..f45e8084568 100644 --- a/change/@microsoft-fast-element-b679d332-e9c0-4e4a-984b-c06481f24caa.json +++ b/change/@microsoft-fast-element-b679d332-e9c0-4e4a-984b-c06481f24caa.json @@ -3,5 +3,5 @@ "comment": "fast-element: Simplify conditional checks in element-controller", "packageName": "@microsoft/fast-element", "email": "abaris@null.net", - "dependentChangeType": "patch" + "dependentChangeType": "none" } diff --git a/package.json b/package.json index 4dbd89180f3..b156bd47fbe 100644 --- a/package.json +++ b/package.json @@ -31,7 +31,7 @@ "scripts": { "bump": "beachball bump", "build": "npm run build --workspaces --if-present", - "change": "beachball change", + "change": "beachball change --dependent-change-type none", "checkchange": "beachball check --scope \"!sites/*\" --changehint \"Run 'npm run change' to generate a change file\"", "check": "beachball check ", "build:gh-pages": "npm run build -w fast-site",