-
Notifications
You must be signed in to change notification settings - Fork 283
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
release notes 0.65.0
- Loading branch information
Showing
2 changed files
with
35 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Release 0.65 | ||
|
||
:material-calendar: 2025-02-20 · :material-list-status: [Full Changelog](https://github.com/srl-labs/containerlab/releases) | ||
|
||
## Promiscuous mode for MACVLAN interfaces | ||
|
||
MACVLAN interfaces are now created in promiscuous mode by default. #2460 | ||
|
||
Before this change, users might have noticed that some traffic flows were not passing in and out the interface. | ||
|
||
## No need for GitHub token | ||
|
||
The download script no longer uses the GitHub API to fetch the latest available release, and instead relies on public GitHub endpoints to fetch it. | ||
|
||
This removes the need to provide GitHub token to the download script in the proxy-based environments. | ||
|
||
## Env vars support in startup configs | ||
|
||
Now it is possible to use [environment variables](../manual/topo-def-file.md#environment-variables) in startup configs. #2471 | ||
|
||
This enables startup config customization at runtime, by embedding the variables in the startup config body. Both file-based and inline startup configs are supported. | ||
|
||
``` | ||
❯ cat cfg-with-env.cfg | ||
set / system information location ${SRL_LOCATION:=default-value} | ||
``` | ||
|
||
The snippet above will have the `SRL_LOCATION` variable set to `default-value` if the variable is not set in the environment and will use the env var value otherwise. | ||
|
||
## Miscellaneous | ||
|
||
* json output format added to [netem](../cmd/tools/netem/show.md#format) output #2454 | ||
* new logging library with structured logging #2449 | ||
* updated VS Code extension documentation #2427 #2451 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters