Skip to content

Commit

Permalink
add release notes to 0.43.0 (#8427)
Browse files Browse the repository at this point in the history
# 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 <[email protected]>
Signed-off-by: Nithya Subramanian
<[email protected]>
Co-authored-by: Will <[email protected]>
Co-authored-by: Reshma Abdul Rahim
<[email protected]>
Co-authored-by: Zach Casper <[email protected]>
(cherry picked from commit ea992df)

# Description

_Please explain the changes you've made._

## Type of change

<!--

Please select **one** of the following options that describes your
change and delete the others. Clearly identifying the type of change you
are making will help us review your PR faster, and is used in authoring
release notes.

If you are making a bug fix or functionality change to Radius and do not
have an associated issue link please create one now.

-->

- 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).

<!--

Please update the following to link the associated issue. This is
required for some kinds of changes (see above).

-->

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
  • Loading branch information
nithyatsu authored Feb 7, 2025
1 parent 87f7ea1 commit d82fbc3
Show file tree
Hide file tree
Showing 2 changed files with 97 additions and 2 deletions.
95 changes: 95 additions & 0 deletions docs/release-notes/v0.43.0.md
Original file line number Diff line number Diff line change
@@ -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 <env-name>
```
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


4 changes: 2 additions & 2 deletions versions.yaml
Original file line number Diff line number Diff line change
@@ -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'
Expand Down

0 comments on commit d82fbc3

Please sign in to comment.