From f13fae0fc042e190183f9c977db139b2b20fbccf Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Feb 2026 18:05:50 +0000 Subject: [PATCH 1/4] Initial plan From bfd1c39520cc6d42eb89c1ce801711049f064630 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Feb 2026 18:13:23 +0000 Subject: [PATCH 2/4] Add .chronus/config.yaml for Python changelog management Co-authored-by: l0lawrence <100643745+l0lawrence@users.noreply.github.com> --- .chronus/config.yaml | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 .chronus/config.yaml diff --git a/.chronus/config.yaml b/.chronus/config.yaml new file mode 100644 index 000000000000..fcb0a8c42873 --- /dev/null +++ b/.chronus/config.yaml @@ -0,0 +1,39 @@ +baseBranch: main + +changeKinds: + internal: + versionType: none + title: Internal + description: Internal changes that are not user facing + + fix: + versionType: patch + title: Bug Fix + description: Fixes to existing features + + dependencies: + versionType: patch + title: Bump dependencies + description: Bumps dependencies + + feature: + versionType: minor + title: Feature + description: Adds new features + + deprecation: + versionType: minor + title: Deprecation + description: Change that deprecate an existing feature but is not breaking. + + breaking: + versionType: major + title: Breaking Change + description: Changes that break existing features + +changelog: ["@chronus/github/changelog", { repo: "azure/azure-sdk-for-python" }] + +changedFiles: + - "!**/*.md" + - "!**/test_*.py" + - "!**/*_test.py" From 31cb208e22d28a8c6fc790467f39a12e829db5fd Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Feb 2026 18:21:45 +0000 Subject: [PATCH 3/4] Update changeKinds titles to match Python SDK CHANGELOG section names Co-authored-by: l0lawrence <100643745+l0lawrence@users.noreply.github.com> --- .chronus/config.yaml | 40 ++++++++++++++++++++-------------------- 1 file changed, 20 insertions(+), 20 deletions(-) diff --git a/.chronus/config.yaml b/.chronus/config.yaml index fcb0a8c42873..05c74da5ced7 100644 --- a/.chronus/config.yaml +++ b/.chronus/config.yaml @@ -1,35 +1,35 @@ baseBranch: main changeKinds: - internal: - versionType: none - title: Internal - description: Internal changes that are not user facing + breaking: + versionType: major + title: Breaking Changes + description: Changes that break existing features + + feature: + versionType: minor + title: Features Added + description: Adds new features + + deprecation: + versionType: minor + title: Other Changes + description: Change that deprecates an existing feature but is not breaking. fix: versionType: patch - title: Bug Fix + title: Bugs Fixed description: Fixes to existing features dependencies: versionType: patch - title: Bump dependencies + title: Other Changes description: Bumps dependencies - feature: - versionType: minor - title: Feature - description: Adds new features - - deprecation: - versionType: minor - title: Deprecation - description: Change that deprecate an existing feature but is not breaking. - - breaking: - versionType: major - title: Breaking Change - description: Changes that break existing features + internal: + versionType: none + title: Other Changes + description: Internal changes that are not user facing changelog: ["@chronus/github/changelog", { repo: "azure/azure-sdk-for-python" }] From d6d83e4936cd22c625ecedfeb9d51b2e8e153f46 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Thu, 19 Feb 2026 18:27:19 +0000 Subject: [PATCH 4/4] Add pip workspace for sdk packages and scope changedFiles to sdk/** Co-authored-by: l0lawrence <100643745+l0lawrence@users.noreply.github.com> --- .chronus/config.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/.chronus/config.yaml b/.chronus/config.yaml index 05c74da5ced7..88f5cd076318 100644 --- a/.chronus/config.yaml +++ b/.chronus/config.yaml @@ -31,9 +31,14 @@ changeKinds: title: Other Changes description: Internal changes that are not user facing +packages: + - path: "sdk/*/*" + type: pip + changelog: ["@chronus/github/changelog", { repo: "azure/azure-sdk-for-python" }] changedFiles: + - "sdk/**" - "!**/*.md" - "!**/test_*.py" - "!**/*_test.py"