Skip to content

Commit

Permalink
Radius Release v0.44.0 (#8733)
Browse files Browse the repository at this point in the history
# Description
Radius Release v0.44.0

## Type of change
Release

## 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
    - [x] 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
    - [x] Not applicable
- The design document has been reviewed and approved by Radius
maintainers/approvers.
    - [ ] Yes
    - [x] 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
    - [x] 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
    - [x] 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
    - [x] Not applicable

---------

Signed-off-by: ytimocin <[email protected]>
Signed-off-by: Yetkin Timocin <[email protected]>
Co-authored-by: Reshma Abdul Rahim <[email protected]>
  • Loading branch information
ytimocin and Reshrahim authored Mar 6, 2025
1 parent 06bf853 commit 037b8b0
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 2 deletions.
59 changes: 59 additions & 0 deletions docs/release-notes/v0.44.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,59 @@
# Announcing Radius v0.44.0

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

None.

## Breaking changes

### `rad resource` commands

Support for User-defined resource types has introduced some breaking changes to `rad resource` commands. `rad resource` commands now require a fully qualified name along with namespaces to identify a resource, e.g. `rad resource expose containers` will now be `rad resource expose applications.core/containers` and `rad resource show containers` will now be `rad resource show applications.core/containers`. Learn more [here](https://docs.radapp.io/reference/cli/rad_resource/). Note that the support for end-end functionality for user-defined-resource-types is still in development and will be available in a future release.

## Upgrading to Radius v0.44.0

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

- release 0.43.0 by @nithyatsu in <https://github.com/radius-project/radius/pull/8416>
- remove hardcoded list of resource types from cli. by @nithyatsu in <https://github.com/radius-project/radius/pull/8286>
- Bump aws-actions/configure-aws-credentials from 4.0.2 to 4.1.0 in the all group across 1 directory by @dependabot in <https://github.com/radius-project/radius/pull/8466>
- Bump bicep-types from `0143e0b` to `b7606cb` by @dependabot in <https://github.com/radius-project/radius/pull/8468>
- Add retry logic for registermanifests, introduce skip-build override for LRT by @lakshmimsft in <https://github.com/radius-project/radius/pull/8495>
- Update workflow conditions to enable workflow_dispatch with new build by @lakshmimsft in <https://github.com/radius-project/radius/pull/8563>
- Remove helm chart uploads to ACR by @sk593 in <https://github.com/radius-project/radius/pull/8565>
- Update config for downstream url endpoint by @lakshmimsft in <https://github.com/radius-project/radius/pull/8580>
- Set cache option on setup-go action in workflows by @brooke-hamilton in <https://github.com/radius-project/radius/pull/8280>
- fix a typo in doc for rad resource delete by @nithyatsu in <https://github.com/radius-project/radius/pull/8723>
- Running `go mod tidy` on main branch by @ytimocin in <https://github.com/radius-project/radius/pull/8730>
- Release cut number 1 for release 0.44 by @ytimocin in <https://github.com/radius-project/radius/pull/8731>

**Full Changelog**: <https://github.com/radius-project/radius/compare/v0.43.0...v0.44.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.44'
version: 'v0.44.0-rc1'
version: 'v0.44.0'
deprecated:
- channel: '0.43'
version: 'v0.43.0'
deprecated:
- channel: '0.42'
version: 'v0.42.0'
- channel: '0.41'
Expand Down

0 comments on commit 037b8b0

Please sign in to comment.