Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Official Release 0.32.0 #7405

Merged
merged 6 commits into from
Mar 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
79 changes: 79 additions & 0 deletions docs/release-notes/v0.32.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
## Announcing Radius v0.32.0

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

### Support for Terraform modules from private git repositories

Radius Environments can now be configured to pull Terraform Recipe templates from private git repositories. Visit the [private registry how-to guide](https://docs.radapp.io/guides/recipes/howto-private-registry/) to learn more.

## Community Contributions

- Thanks to @gpltaylor for enabling `rad app graph` output to make connection graph output resources name as a link.
- Thanks to @lechnerc77 for adding dependabot configuration, fixing dashboard crash for recipes, and adding zoom control to application graph on dashboard.

willtsai marked this conversation as resolved.
Show resolved Hide resolved
## Breaking changes

None

## New contributors

None

## Upgrading to Radius v0.32.0

During our preview stage, an upgrade to Radius v0.32.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

* Fix release workflow to include dashboard repo clone by @willdavsmith in https://github.com/radius-project/radius/pull/7206
* Do not try to load recipes for a simulated environment by @vinayada1 in https://github.com/radius-project/radius/pull/7157
* Add AWS/Azure to required features list. by @vinayada1 in https://github.com/radius-project/radius/pull/7218
* Change organization for messaging RP tests and separate cloud/non-cloud tests by @vinayada1 in https://github.com/radius-project/radius/pull/7221
* make graph as default cmmand and connections as alias by @nithyatsu in https://github.com/radius-project/radius/pull/7217
* Change test organization for cli tests by @vinayada1 in https://github.com/radius-project/radius/pull/7226
* Change test organization for samples tests by @vinayada1 in https://github.com/radius-project/radius/pull/7225
* Change test organization for kubernetes tests by @vinayada1 in https://github.com/radius-project/radius/pull/7222
* Change test organization for datastoresrp tests by @vinayada1 in https://github.com/radius-project/radius/pull/7224
* Change test organization for daprrp tests by @vinayada1 in https://github.com/radius-project/radius/pull/7223
* Change organization for UCP tests and separate cloud/non-cloud tests by @vinayada1 in https://github.com/radius-project/radius/pull/7219
* Change open portal hyperlinks by @gpltaylor in https://github.com/radius-project/radius/pull/7229
* Fix test file path by @kachawla in https://github.com/radius-project/radius/pull/7275
* Add reorganized cli tests to the matrix by @vinayada1 in https://github.com/radius-project/radius/pull/7286
* Use the right version of bicep using oras in workflow by @youngbupark in https://github.com/radius-project/radius/pull/7293
* Updating environment variables set at Terraform process to include env variables at current process by @lakshmimsft in https://github.com/radius-project/radius/pull/7272
* Adding env variables in functional test yaml to test private git module source. by @vishwahiremat in https://github.com/radius-project/radius/pull/7304
* Update github token to use secret.GITHUB_TOKEN by @vishwahiremat in https://github.com/radius-project/radius/pull/7305
* Only set Functional Test Run as passing if all subtests pass by @willdavsmith in https://github.com/radius-project/radius/pull/7303
* chore: add dependabot configuration by @lechnerc77 in https://github.com/radius-project/radius/pull/7307
* Use workload identity in workflow by @youngbupark in https://github.com/radius-project/radius/pull/7337
* Adding Fix for flakey test caused while buildng bicep template by @vishwahiremat in https://github.com/radius-project/radius/pull/7345
* Add error handling for failed `oras pull` during installation. by @AaronCrawfis in https://github.com/radius-project/radius/pull/7302
* Migrate long-running test to new cluster to enable monitoring by @youngbupark in https://github.com/radius-project/radius/pull/7357
* Fixing the wrong message in workspace switch command by @ytimocin in https://github.com/radius-project/radius/pull/7389
* Randomize the id with GITHUB_RUN_NUMBER for scheduled test by @youngbupark in https://github.com/radius-project/radius/pull/7392
* Change test organization for shared tests. by @vinayada1 in https://github.com/radius-project/radius/pull/7227
* chore: add dependabot configuration by @lechnerc77 in https://github.com/radius-project/dashboard/pull/58
* fix: dashboard crash for recipes by @lechnerc77 in https://github.com/radius-project/dashboard/pull/60
* feat: add zoom control to application graph by @lechnerc77 in https://github.com/radius-project/dashboard/pull/61
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.32'
version: 'v0.32.0-rc1'
version: 'v0.32.0'
deprecated:
- channel: '0.31'
version: 'v0.31.0'
deprecated:
- channel: '0.30'
version: 'v0.30.0'
- channel: '0.29'
Expand Down
Loading