diff --git a/docs/website/blog/2023-05-04-odo-v3.10.0.md b/docs/website/blog/2023-05-04-odo-v3.10.0.md index f520be3caab..e1bad314984 100644 --- a/docs/website/blog/2023-05-04-odo-v3.10.0.md +++ b/docs/website/blog/2023-05-04-odo-v3.10.0.md @@ -14,11 +14,35 @@ odo `v3.10.0` is now out! To install `odo`, follow [the installation guide](../docs/overview/installation). ## Notable Changes -Check this Playlist for an overview of the most notable changes in this release: [TODO Add Link to Youtube Playlist] +Check this Playlist for an overview of the most notable changes in this release: https://www.youtube.com/playlist?list=PLGMB2PY4SNOqUm7C5VLarQq6jd8Ie0iHu ### Features -[TODO - Complete with embedded demos!] +#### `--address` to define a custom address for port forwarding during `odo dev` +To enhance the port forwarding feature provided by `odo dev`, you can now use a custom address for ports to listen by passing `--address` flag. +More details are available in [`odo dev` command reference doc](https://odo.dev/docs/command-reference/dev#using-custom-address-for-port-forwarding). + + + +#### `odo dev` handles failing build commands in a better way. +Build command is ideally the first command that is run after the necessary resources are created in the `odo dev` workflow. Read [How odo works](https://odo.dev/docs/development/architecture/how-odo-works#how-odo-dev-works) for a better understanding of this. + +In the previous versions, `odo dev` would run the build command in an infinite loop until it succeeded, which was unnecessary. In v3.10.0 however, `odo dev` stops after 1 unsuccessful attempt, and waits for the user to make changes to the project, providing with a slightly better user experience. + + + +#### Support variable substitution for `odo build-images` +`odo build-images` now supports the Devfile variable substitution in a similar way as `odo dev` and `odo deploy`. + +Read more about it in the [`odo build-images` command reference doc](https://odo.dev/docs/command-reference/build-images#substituting-variables). + + + +### Documentation +* [Blog: Helm integration with odo](https://odo.dev/blog/using-helm-with-odo) +* [`odo dev` behavior with .gitignore and .odoignore](https://odo.dev/docs/user-guides/advanced/pushing-specific-files) + + ## Detailed Changelog