Skip to content

Releases: radius-project/radius

Radius v0.38.0-rc1

13 Sep 16:06
48c28ed
Compare
Choose a tag to compare
Radius v0.38.0-rc1 Pre-release
Pre-release

What's Changed

## changelog

New Contributors

Full Changelog: v0.37.0-rc1...v0.38.0-rc1

Radius v0.37.0

19 Aug 20:03
b1a7822
Compare
Choose a tag to compare

Announcing Radius v0.37.0

Today we're happy to announce the release of Radius v0.37.0. Check out the highlights below, along with the full changelog for more details.

We would like to extend our thanks to all the new and existing contributors who helped make this release possible!

Intro to Radius

If you're new to Radius, check out our website, radapp.io, for more information. Also visit our getting started guide 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 integrated Radius to use official Bicep compiler and are deprecating the temporary fork of Bicep. To use Radius features with the official Bicep compiler, you need to create a bicepconfig.json 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

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.
    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.
  • 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 to register the IAM access-key and rad credential register aws 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!

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:
    rad env delete <env-name>
  2. Uninstall the previous version of the Radius control-plane:
    rad uninstall kubernetes
  3. Visit the Radius installation guide to install the latest CLI, or download a binary below
  4. Install the latest version of the Radius control-plane:
    rad install kubernetes

Full changelog

Radius v0.37.0-rc1

15 Aug 19:26
487081f
Compare
Choose a tag to compare
Radius v0.37.0-rc1 Pre-release
Pre-release

What's Changed

## changelog

New Contributors

Full Changelog: v0.36.0-rc1...v0.37.0-rc1

Radius v0.36.0

22 Jul 21:29
616f776
Compare
Choose a tag to compare

Announcing Radius v0.36.0

Today we're happy to announce the release of Radius v0.36.0. Check out the highlights below, along with the full changelog for more details.

We would like to extend our thanks to all the new and existing contributors who helped make this release possible!

Intro to Radius

If you're new to Radius, check out our website, radapp.io, for more information. Also visit our getting started guide to learn how to install Radius and create your first app.

Highlights

Authentication for Any Terraform Provider

In a previous release, functionality was added that enables Radius to load and deploy the recipe modules consuming any Terraform provider. This functionality has now been extended to allow for the secure configuration and handling of credentials that allows for authenticating with the Terraform provider. Learn more about [Terraform Recipes in Radius].(https://docs.radapp.io/guides/recipes/terraform/)

Breaking changes

N/A

New contributors

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

Upgrading to Radius v0.36.0

During our preview stage, an upgrade to Radius v0.36.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:
    rad env delete <env-name>
  2. Uninstall the previous version of the Radius control-plane:
    rad uninstall kubernetes
  3. Visit the Radius installation guide to install the latest CLI, or download a binary below
  4. Install the latest version of the Radius control-plane:
    rad install kubernetes

Full changelog

Radius v0.36.0-rc1

18 Jul 20:11
2a4effe
Compare
Choose a tag to compare
Radius v0.36.0-rc1 Pre-release
Pre-release

What's Changed

## changelog

New Contributors

Full Changelog: v0.35.0-rc1...v0.36.0-rc1

Radius v0.35.0

21 Jun 20:14
87a7d58
Compare
Choose a tag to compare

Announcing Radius v0.35.0

Today we're happy to announce the release of Radius v0.35.0. Check out the highlights below, along with the full changelog for more details.

We would like to extend our thanks to all the new and existing contributors who helped make this release possible!

Intro to Radius

If you're new to Radius, check out our website, radapp.io, for more information. Also visit our getting started guide to learn how to install Radius and create your first app.

Highlights

Radius Azure Cloud provider supports Azure Workload Identity

You can now configure your Azure cloud provider to use Azure workload identity to deploy and manage Azure resources. With this support, infrastructure operators are not burdened with the rotation of the credentials anymore. More information on how to configure the Workload identity

Nested modules in Terraform Recipes

With this release, Radius now supports authentication into private repositories for pulling Terraform Recipes that contain nested modules. See the private Terraform modules guide for more details.

EnableWebsockets property added to the Gateway Route Resource

The EnableWebsockets property has been added to the Gateway Route Resource so that it can be set by Radius users to enable features that make use of websockets, such as SignalR. See the Gateway resource schema for more details.

Breaking changes

Azure workload identity introduces some breaking changes to rad credential register azure CLI command. With the additional identity support, rad credential register azure is now rad credential register azure sp to register the Service Principal identity and rad credential register azure wi to register the Azure Workload Identity.

New contributors

Thanks to @superbeeny for adding -typed for gomock to generate typed functions in our code base.

Upgrading to Radius v0.35.0

During our preview stage, an upgrade to Radius v0.35.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:
    rad env delete <env-name>
  2. Uninstall the previous version of the Radius control-plane:
    rad uninstall kubernetes
  3. Visit the Radius installation guide to install the latest CLI, or download a binary below
  4. Install the latest version of the Radius control-plane:
    rad install kubernetes

Full changelog

Radius v0.35.0-rc1

19 Jun 20:46
0b6ecc0
Compare
Choose a tag to compare
Radius v0.35.0-rc1 Pre-release
Pre-release

What's Changed

## changelog

Full Changelog: v0.34.0-rc1...v0.35.0-rc1

Radius v0.34.0

24 May 20:58
0fd82e7
Compare
Choose a tag to compare

Announcing Radius v0.34.0

Today we're happy to announce the release of Radius v0.34.0. Check out the highlights below, along with the full changelog for more details.

We would like to extend our thanks to all the new and existing contributors who helped make this release possible!

Intro to Radius

If you're new to Radius, check out our website, radapp.io, for more information. Also visit our getting started guide to learn how to install Radius and create your first app.

Highlights

Viewing the Application Graph using the CLI

Starting with this v0.34 release, we have fully transitioned to the rad app graph command to view the Application Graph in the CLI. This means that the legacy command rad app connections will no longer be supported going forward. Learn more here: CLI referencerad app graph

Testing infrastructure enhancements

The Radius team has been actively improving upon the testing coverage and infrastructure over the past couple of releases. We now have implemented a robust set of functional and long-running tests that are more reliable and cover the most recently released feature areas, including for private Terraform registries. Learn more about running the Radius test suite here: Running Radius Tests

User experience improvements with rad CLI

  • We have fixed the rad init user experience for app name with capital letters to include the error message from k8s as it does not allow capital letters in namespace names
  • We have fixed the bug with rad run failing due to stern log collector limits.

Terraform recipes

We have fixed an issue with the Recipe deployment for Terraform providers that are not part of the official providers. Now Radius is enabled to load and deploy the recipe modules consuming any Terraform provider. Learn more about Terraform Recipes in Radius

Breaking changes

None

New contributors

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

Upgrading to Radius v0.34.0

During our preview stage, an upgrade to Radius v0.34.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:
    rad env delete <env-name>
  2. Uninstall the previous version of the Radius control-plane:
    rad uninstall kubernetes
  3. Visit the Radius installation guide to install the latest CLI, or download a binary below
  4. Install the latest version of the Radius control-plane:
    rad install kubernetes

Full changelog

Radius v0.34.0-rc1

23 May 16:47
950a256
Compare
Choose a tag to compare
Radius v0.34.0-rc1 Pre-release
Pre-release

What's Changed

## changelog

New Contributors

Full Changelog: v0.33.0-rc1...v0.34.0-rc1

Radius v0.33.0

25 Apr 18:21
6ffdc99
Compare
Choose a tag to compare

Announcing Radius v0.33.0

Today we're happy to announce the release of Radius v0.33.0. Check out the highlights below, along with the full changelog for more details.

We would like to extend our thanks to all the new and existing contributors who helped make this release possible!

Intro to Radius

If you're new to Radius, check out our website, radapp.io, for more information. Also visit our getting started guide to learn how to install Radius and create your first app.

Highlights

Access Kubernetes secrets using PodSpec

A new guide is now available with instructions on how to patch existing Kubernetes secrets using PodSpec definitions and provide them to the environment of a container. Visit the How-To Guide in the Radius documentation to learn more.

Codecov now enabled in the Radius repo

Codecov has been added to the Radius repo and will compare test coverage reports and display results in all pull requests going forward.

Community Contributions

  • Thanks to @gpltaylor for contributing to user experience improvements with rad group switch CLI command and fixing the bug with root CA file path for Windows while installing Radius.
  • Thanks to @superbeeny for contributing to the how-to-guide on patching existing Kubernetes secrets using PodSpec.

Breaking changes

None

New contributors

None

Upgrading to Radius v0.33.0

During our preview stage, an upgrade to Radius v0.33.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:
    rad env delete <env-name>
  2. Uninstall the previous version of the Radius control-plane:
    rad uninstall kubernetes
  3. Visit the Radius installation guide to install the latest CLI, or download a binary below
  4. Install the latest version of the Radius control-plane:
    rad install kubernetes

Full changelog

Full Changelog: v0.32.0...v0.33.0