From 1482286d0c6aa1f182e6efc7f939bea075fe1d4e Mon Sep 17 00:00:00 2001 From: Ludo Date: Thu, 28 Nov 2024 07:49:20 +0100 Subject: [PATCH] update changelog --- CHANGELOG.md | 15 +++++++++++++-- tools/changelog.py | 1 - 2 files changed, 13 insertions(+), 3 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6f2024310..7ccd90cc4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,18 @@ All notable changes to this project will be documented in this file. -## [Unreleased] +## [Unreleased] + +### FAST + +- [[#2733](https://github.com/GoogleCloudPlatform/cloud-foundation-fabric/pull/2733)] **incompatible change:** Updating yaml naming in prod subnet folder to match other lifecycles ([mtndrew404](https://github.com/mtndrew404)) + +### MODULES + +- [[#2734](https://github.com/GoogleCloudPlatform/cloud-foundation-fabric/pull/2734)] Allow override of GKE Nodepool SA Display Name ([robrankin](https://github.com/robrankin)) +- [[#2738](https://github.com/GoogleCloudPlatform/cloud-foundation-fabric/pull/2738)] manage switchover ([simonebruzzechesse](https://github.com/simonebruzzechesse)) +- [[#2739](https://github.com/GoogleCloudPlatform/cloud-foundation-fabric/pull/2739)] Add basename to SWP policy rules factory ([LucaPrete](https://github.com/LucaPrete)) +- [[#2737](https://github.com/GoogleCloudPlatform/cloud-foundation-fabric/pull/2737)] **incompatible change:** SWP module refactor ([ludoo](https://github.com/ludoo)) ## [36.0.1] - 2024-11-23 @@ -2716,4 +2727,4 @@ All notable changes to this project will be documented in this file. [1.3.0]: https://github.com/GoogleCloudPlatform/cloud-foundation-fabric/compare/v1.2.0...v1.3.0 [1.2.0]: https://github.com/GoogleCloudPlatform/cloud-foundation-fabric/compare/v1.1.0...v1.2.0 [1.1.0]: https://github.com/GoogleCloudPlatform/cloud-foundation-fabric/compare/v1.0.0...v1.1.0 -[1.0.0]: https://github.com/GoogleCloudPlatform/cloud-foundation-fabric/compare/v0.1...v1.0.0 +[1.0.0]: https://github.com/GoogleCloudPlatform/cloud-foundation-fabric/compare/v0.1...v1.0.0 \ No newline at end of file diff --git a/tools/changelog.py b/tools/changelog.py index b348b40f3..8f979dbf0 100755 --- a/tools/changelog.py +++ b/tools/changelog.py @@ -186,7 +186,6 @@ def get_pulls(token, date_from, date_to, merged_to, exclude_pulls=None): continue if date_to and pull.merged_at >= date_to: continue - print(pull.id, exclude_pulls) yield pull if (len(pulls) + excluded) < 100: break