From d82fbc38b45c9b1d4617d106d57db7e34fc6fe03 Mon Sep 17 00:00:00 2001 From: Nithya Subramanian <98416062+nithyatsu@users.noreply.github.com> Date: Fri, 7 Feb 2025 12:51:47 -0800 Subject: [PATCH] add release notes to 0.43.0 (#8427) # Description Adding release notes for 0.43.0 ## Type of change Release 0.43.0 Fixes: #issue_number ## Contributor checklist Please verify that the PR meets the following requirements, where applicable: - An overview of proposed schema changes is included in a linked GitHub issue. - [ ] Yes - [ ] Not applicable - A design document PR is created in the [design-notes repository](https://github.com/radius-project/design-notes/), if new APIs are being introduced. - [ ] Yes - [ ] Not applicable - The design document has been reviewed and approved by Radius maintainers/approvers. - [ ] Yes - [ ] Not applicable - A PR for the [samples repository](https://github.com/radius-project/samples) is created, if existing samples are affected by the changes in this PR. - [ ] Yes - [ ] Not applicable - A PR for the [documentation repository](https://github.com/radius-project/docs) is created, if the changes in this PR affect the documentation or any user facing updates are made. - [ ] Yes - [ ] Not applicable - A PR for the [recipes repository](https://github.com/radius-project/recipes) is created, if existing recipes are affected by the changes in this PR. - [ ] Yes - [ ] Not applicable --------- Signed-off-by: Will <28876888+willtsai@users.noreply.github.com> Signed-off-by: Nithya Subramanian <98416062+nithyatsu@users.noreply.github.com> Co-authored-by: Will <28876888+willtsai@users.noreply.github.com> Co-authored-by: Reshma Abdul Rahim <61033581+Reshrahim@users.noreply.github.com> Co-authored-by: Zach Casper (cherry picked from commit ea992df8b64943dc58a713ba72049cc1a9ef74b6) # Description _Please explain the changes you've made._ ## Type of change - This pull request fixes a bug in Radius and has an approved issue (issue link required). - This pull request adds or changes features of Radius and has an approved issue (issue link required). - This pull request is a minor refactor, code cleanup, test improvement, or other maintenance task and doesn't change the functionality of Radius (issue link optional). Fixes: #issue_number ## Contributor checklist Please verify that the PR meets the following requirements, where applicable: - An overview of proposed schema changes is included in a linked GitHub issue. - [ ] Yes - [ ] Not applicable - A design document PR is created in the [design-notes repository](https://github.com/radius-project/design-notes/), if new APIs are being introduced. - [ ] Yes - [ ] Not applicable - The design document has been reviewed and approved by Radius maintainers/approvers. - [ ] Yes - [ ] Not applicable - A PR for the [samples repository](https://github.com/radius-project/samples) is created, if existing samples are affected by the changes in this PR. - [ ] Yes - [ ] Not applicable - A PR for the [documentation repository](https://github.com/radius-project/docs) is created, if the changes in this PR affect the documentation or any user facing updates are made. - [ ] Yes - [ ] Not applicable - A PR for the [recipes repository](https://github.com/radius-project/recipes) is created, if existing recipes are affected by the changes in this PR. - [ ] Yes - [ ] Not applicable --- docs/release-notes/v0.43.0.md | 95 +++++++++++++++++++++++++++++++++++ versions.yaml | 4 +- 2 files changed, 97 insertions(+), 2 deletions(-) create mode 100644 docs/release-notes/v0.43.0.md diff --git a/docs/release-notes/v0.43.0.md b/docs/release-notes/v0.43.0.md new file mode 100644 index 0000000000..69ff705c10 --- /dev/null +++ b/docs/release-notes/v0.43.0.md @@ -0,0 +1,95 @@ +## Announcing Radius v0.43.0 + +Today we're happy to announce the release of Radius v0.43.0. Check out the [highlights](#highlights) below, along with the [full changelog](#full-changelog) for more details. + +We would like to extend our thanks to all the [new](#new-contributors) and existing contributors who helped make this release possible! + +## Intro to Radius + +If you're new to Radius, check out our website, [radapp.io](https://radapp.io), for more information. Also visit our [getting started guide](https://docs.radapp.io/getting-started/) to learn how to install Radius and create your first app. + +## Highlights + +### DeploymentTemplate Controller +A new Kubernetes controller in Radius called the DeploymentTemplate Controller is now available that will allow users to deploy resources defined in Bicep manifests using Kubernetes tooling using Radius. This controller was added to enable integrations with GitOps platforms like Flux, which will be available in a future release. Please see the [DeploymentTemplate Controller design document](https://github.com/radius-project/design-notes/blob/main/architecture/2024-10-deploymenttemplate-controller.md) for more details. +### Preparations for using PostgreSQL as the Radius database +In the near future, the Radius data store will be migrated from etcd to a PostgreSQL database. In preparation for this, the Helm chart for installing Radius now includes deploying PostgreSQL to the Kubernetes cluster. There are no changes to Radius when installed via `rad init`. +You can follow the progress of moving the Radius data store [in this issue](https://github.com/radius-project/radius/issues/8398). +## rad CLI command for creating new resource types +We have added a CLI command `rad resource-type create` to create new resource-types in Radius. This was added to enable resource extensibility in Radius. The end-end functionality of creating and deploying a user-defined resource type will be available in a future release. Learn more from the [UDT technical design document](https://github.com/radius-project/design-notes/blob/main/architecture/2024-07-user-defined-types.md) +## Breaking changes + +None + +## New contributors + +@justinmaks made their first contribution in https://github.com/radius-project/radius/pull/8214 + +## Upgrading to Radius v0.43.0 + +During our preview stage, an upgrade to Radius v0.43.0 requires a full reinstallation of the Radius control-plane, rad CLI, and all Radius apps. Stay tuned for an in-place upgrade path in the future. + +1. Delete any environments you have created: + ```bash + rad env delete + ``` +2. Uninstall the previous version of the Radius control-plane: + ```bash + rad uninstall kubernetes + ``` +3. Visit the [Radius installation guide](https://docs.radapp.io/getting-started/install/) to install the latest CLI, or download a binary below +4. Install the latest version of the Radius control-plane: + ```bash + rad install kubernetes + ``` + +## Full changelog + +* Register Manifests during ucp startup sequence by @lakshmimsft in https://github.com/radius-project/radius/pull/8120 +* Add capabilities to resource type API by @rynowak in https://github.com/radius-project/radius/pull/8182 +* Add recipe engine by @rynowak in https://github.com/radius-project/radius/pull/8180 +* Add rad bicep publish-extension command by @rynowak in https://github.com/radius-project/radius/pull/8183 +* Bump the all group with 3 updates by @dependabot in https://github.com/radius-project/radius/pull/8192 +* Fix for picking the right helm chart version during release cut by @vishwahiremat in https://github.com/radius-project/radius/pull/8196 +* Update release version v0.42.0-rc2 by @vishwahiremat in https://github.com/radius-project/radius/pull/8202 +* add dynamicrp and components info by @nithyatsu in https://github.com/radius-project/radius/pull/8201 +* [UDT] add create resource type command by @nithyatsu in https://github.com/radius-project/radius/pull/8104 +* Updating contribution docs by @kachawla in https://github.com/radius-project/radius/pull/8212 +* Implement fix for failures caused in test logging by @rynowak in https://github.com/radius-project/radius/pull/8190 +* Update instructions and config for required local dotnet version by @kachawla in https://github.com/radius-project/radius/pull/8213 +* Adding Postgres Helm chart to rad init by @superbeeny in https://github.com/radius-project/radius/pull/8072 +* add: Fuzz test for resource id parser by @justinmaks in https://github.com/radius-project/radius/pull/8214 +* Update release version v0.42.0 by @vishwahiremat in https://github.com/radius-project/radius/pull/8216 +* Revert "Adding Postgres Helm chart to rad init (#8072)" by @kachawla in https://github.com/radius-project/radius/pull/8241 +* Disabling cache in the setup-go steps of CI/CD by @ytimocin in https://github.com/radius-project/radius/pull/8147 +* Resource type create - fixes by @nithyatsu in https://github.com/radius-project/radius/pull/8248 +* [Snyk] Security upgrade alpine from 3.20 to 3.21.0 by @sylvainsf in https://github.com/radius-project/radius/pull/8125 +* Update Terraform Azure Test Resource Type by @kachawla in https://github.com/radius-project/radius/pull/8254 +* UDT - Remove Legacy Routing by @lakshmimsft in https://github.com/radius-project/radius/pull/8205 +* Revert "UDT - Remove Legacy Routing (#8205)" by @lakshmimsft in https://github.com/radius-project/radius/pull/8270 +* fixing issue with deployment to AKS by @superbeeny in https://github.com/radius-project/radius/pull/8249 +* Fix failing non-cloud functional tests by using built-in caching on the setup-go action by @brooke-hamilton in https://github.com/radius-project/radius/pull/8276 +* Bump the all group with 2 updates by @dependabot in https://github.com/radius-project/radius/pull/8259 +* Reapply UDT - Remove Legacy Routing by @lakshmimsft in https://github.com/radius-project/radius/pull/8275 +* Update PR Contributor Checklist by @kachawla in https://github.com/radius-project/radius/pull/8255 +* Bump the all group across 1 directory with 35 updates by @dependabot in https://github.com/radius-project/radius/pull/8260 +* Update long running test workflow to verify manifests are registered by @lakshmimsft in https://github.com/radius-project/radius/pull/8298 +* Bump bicep-types from `3676a8b` to `0143e0b` by @dependabot in https://github.com/radius-project/radius/pull/8261 +* Adding credential generation and secret for postgres db by @superbeeny in https://github.com/radius-project/radius/pull/8284 +* Update devcontainers dependabot by @sk593 in https://github.com/radius-project/radius/pull/8239 +* Restore bicep artifacts before starting tests by @sk593 in https://github.com/radius-project/radius/pull/8283 +* Add purge job for bicep artifacts by @sk593 in https://github.com/radius-project/radius/pull/8281 +* Unskipping tea tests and adding protection around possible nil models by @ytimocin in https://github.com/radius-project/radius/pull/8053 +* Add retry logic to UCP `GetAWSResourceWithPost` handler by @willdavsmith in https://github.com/radius-project/radius/pull/8170 +* Update to skip cleanup of built-in resources in Long Running Tests by @lakshmimsft in https://github.com/radius-project/radius/pull/8317 +* Add DeploymentTemplate controller for GitOps support by @willdavsmith in https://github.com/radius-project/radius/pull/8001 +* Add check for cleanup process - Long Running Test by @lakshmimsft in https://github.com/radius-project/radius/pull/8358 +* Make ErrorDetails into a pointer by @superbeeny in https://github.com/radius-project/radius/pull/8367 +* Updating VALID_RADIUS_BUILD_WINDOW to 30 mins by @vishwahiremat in https://github.com/radius-project/radius/pull/8387 +* Reverting VALID_RADIUS_BUILD_WINDOW changes by @vishwahiremat in https://github.com/radius-project/radius/pull/8389 +* Release: 0.43.0-rc1 by @nithyatsu in https://github.com/radius-project/radius/pull/8397 + + +**Full Changelog**: https://github.com/radius-project/radius/compare/v0.42.0...v0.43.0 + + diff --git a/versions.yaml b/versions.yaml index 765a8a3610..34fd2a6d25 100644 --- a/versions.yaml +++ b/versions.yaml @@ -1,9 +1,9 @@ supported: - channel: '0.43' - version: 'v0.43.0-rc1' + version: 'v0.43.0' +deprecated: - channel: '0.42' version: 'v0.42.0' -deprecated: - channel: '0.41' version: 'v0.41.0' - channel: '0.40'