Skip to content

Commit

Permalink
Update release version v0.37.0 (#7817) (#7820)
Browse files Browse the repository at this point in the history
# Description

Update release version v0.37.0

## 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

---------

Signed-off-by: Vishwanath Hiremath <vhiremath@microsoft.com>
(cherry picked from commit 65ca82d)

# 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

---------

Signed-off-by: Vishwanath Hiremath <vhiremath@microsoft.com>
  • Loading branch information
vishwahiremat committed Aug 19, 2024
1 parent 487081f commit b1a7822
Show file tree
Hide file tree
Showing 2 changed files with 93 additions and 2 deletions.
91 changes: 91 additions & 0 deletions docs/release-notes/v0.37.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,91 @@
## Announcing Radius v0.37.0

Today we're happy to announce the release of Radius v0.37.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

### Radius is merged with the official Bicep
Previously Radius used a fork of the Bicep to author and deploy Radius and AWS types. With 0.37 release we have merged our extensibility updates with the upstream and are deprecating the temporary fork of Bicep. To use Radius features with the official Bicep compiler, you need to create a [`bicepconfig.json`](https://docs.radapp.io/guides/tooling/bicepconfig/overview/) with the extensions to author and deploy Radius and AWS types. Please checkout the breaking changes section for detailed guidance.

### Radius AWS Cloud provider supports IAM Roles for Service Accounts (IRSA)
You can now configure your AWS cloud provider to use AWS federated identity (IRSA) to deploy and manage AWS resources. With this support, infrastructure operators are not burdened with the rotation of the credentials anymore. More information on [how to configure the AWS IRSA](https://docs.radapp.io/guides/operations/providers/aws-provider/howto-aws-provider-irsa/)

### Test Improvements
We separated the cloud tests and non-cloud tests in our functional test workflows to improve the test verification process for contributors. In the new workflow the non-cloud test workflows will trigger automatically when pull requests are submitted, while tests using cloud resources will need approval from approvers/maintainers to be triggered. We also fixed an issue with `magpiego` image failing for MacOS+M1 chip users by publishing a multi-architectural image.

## Breaking changes

- **Radius merge to official Bicep** introduces some breaking changes. To use Radius features with the official Bicep compiler please do the following:
1. Create a bicepconfig.json with the extensions to author and deploy Radius and AWS types. More information [here](https://docs.radapp.io/guides/tooling/bicepconfig/overview/).
2. Update the import statements in the existing bicep files
- `import radius as radius` should become `extension radius` to use Radius types
- `import aws as aws` should become `extension aws` to use AWS types
- `import kubernetes as kubernetes {}` should become `extension kubernetes with {} as kubernetes to use Kubernetes types`
3. If you have Radius-Bicep extension installed, please disable and install the official bicep extension. More details [here](https://docs.radapp.io/guides/tooling/vscode/howto-vscode-bicep/).

- **AWS IRSA support** introduces some breaking changes to rad credential register aws CLI command. With the additional identity support, rad credential register aws is now [rad credential register aws access-key](https://docs.radapp.io/reference/cli/rad_credential_register_aws_access-key/) to register the IAM access-key and [rad credential register aws](https://docs.radapp.io/reference/cli/rad_credential_register_aws_irsa/) to register the AWS IAM Roles for Service Accounts(IRSA).

## New contributors

Welcome to our new contributors who have merged their first PR in this release!

* @SoTrx made their first contribution in https://github.com/radius-project/radius/pull/7786

## Upgrading to Radius v0.37.0

During our preview stage, an upgrade to Radius v0.37.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>
```
1. Uninstall the previous version of the Radius control-plane:
```bash
rad uninstall kubernetes
```
1. Visit the [Radius installation guide](https://docs.radapp.io/getting-started/install/) to install the latest CLI, or download a binary below
1. Install the latest version of the Radius control-plane:
```bash
rad install kubernetes
```

## Full changelog

* Update testrp and magpie Dockerfiles by @ytimocin in https://github.com/radius-project/radius/pull/7745
* Update release version v0.36.0 by @sk593 in https://github.com/radius-project/radius/pull/7749
* Bump the all group with 13 updates by @dependabot in https://github.com/radius-project/radius/pull/7751
* Splitting functional tests as cloud and non-cloud by @ytimocin in https://github.com/radius-project/radius/pull/7716
* Reformatting the files in the scripts folder by @ytimocin in https://github.com/radius-project/radius/pull/7755
* Update cyrilgdn/postgresql version in the postgres recipe by @ytimocin in https://github.com/radius-project/radius/pull/7766
* Bump ossf/scorecard-action from 2.3.3 to 2.4.0 in the all group by @dependabot in https://github.com/radius-project/radius/pull/7769
* Bump the all group with 2 updates by @dependabot in https://github.com/radius-project/radius/pull/7768
* Increasing `Test_TerraformRecipe_KubernetesPostgres` timeout to 2m by @willdavsmith in https://github.com/radius-project/radius/pull/7772
* implement irsa server side support by @nithyatsu in https://github.com/radius-project/radius/pull/7738
* rad credential show - support for IRSA by @nithyatsu in https://github.com/radius-project/radius/pull/7757
* Adding rad install changes for AWS IRSA support by @vishwahiremat in https://github.com/radius-project/radius/pull/7741
* "rad credential register aws" command changes for irsa by @vishwahiremat in https://github.com/radius-project/radius/pull/7750
* Bump github.com/docker/docker from 27.0.0+incompatible to 27.1.0+incompatible in the go_modules group by @dependabot in https://github.com/radius-project/radius/pull/7773
* Adding multi arch container image generation for magpie and testrp by @ytimocin in https://github.com/radius-project/radius/pull/7748
* Updating and adding a timeout to the cleanup cluster step by @ytimocin in https://github.com/radius-project/radius/pull/7727
* Adding packages:write permission to the purge test resources workflow by @ytimocin in https://github.com/radius-project/radius/pull/7760
* Update the registry in CLI functional test by @ytimocin in https://github.com/radius-project/radius/pull/7779
* Updating registry in the redis functional test by @ytimocin in https://github.com/radius-project/radius/pull/7781
* Bump the all group with 3 updates by @dependabot in https://github.com/radius-project/radius/pull/7783
* Use local aws config in cli to get account and regions by @vishwahiremat in https://github.com/radius-project/radius/pull/7758
* Adding rad init command changes to support irsa by @vishwahiremat in https://github.com/radius-project/radius/pull/7761
* Removing double imports found by staticcheck by @ytimocin in https://github.com/radius-project/radius/pull/7791
* Adding a check to a cast to the Recipe object by @ytimocin in https://github.com/radius-project/radius/pull/7797
* Bicep compiler merge by @sk593 in https://github.com/radius-project/radius/pull/7662
* Update credential precedence in bicepconfig.json by @sk593 in https://github.com/radius-project/radius/pull/7803
* Warning when deleting an environment with existing applications by @SoTrx in https://github.com/radius-project/radius/pull/7786
* Replace Azure Service Principal auth with Azure Workload Identity auth in functional tests by @willdavsmith in https://github.com/radius-project/radius/pull/7787
* Bump the all group across 1 directory with 2 updates by @dependabot in https://github.com/radius-project/radius/pull/7802
* Bump github.com/docker/docker from 27.1.0+incompatible to 27.1.1+incompatible in the go_modules group by @dependabot in https://github.com/radius-project/radius/pull/7801
* Update error message value for LRT by @sk593 in https://github.com/radius-project/radius/pull/7810
* Update release version v0.37.0-rc1 by @vishwahiremat in https://github.com/radius-project/radius/pull/7813
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.37'
version: 'v0.37.0-rc1'
version: 'v0.37.0'
deprecated:
- channel: '0.36'
version: 'v0.36.0'
deprecated:
- channel: '0.35'
version: 'v0.35.0'
- channel: '0.34'
Expand Down

0 comments on commit b1a7822

Please sign in to comment.