Skip to content

Commit

Permalink
3.124.1 (#2904)
Browse files Browse the repository at this point in the history
* Fix crash when listing interfaces caused by enabling the new hook by default

* 3.124.1

* oops

* ..
  • Loading branch information
aviramha authored Nov 7, 2024
1 parent 0b3cc8b commit 36e3cb4
Show file tree
Hide file tree
Showing 6 changed files with 45 additions and 31 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,18 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang

<!-- towncrier release notes start -->

## [3.124.1](https://github.com/metalbear-co/mirrord/tree/3.124.1) - 2024-11-07


### Changed

- Bump dependencies


### Fixed

- Fix crash when listing interfaces caused by enabling the new hook by default

## [3.124.0](https://github.com/metalbear-co/mirrord/tree/3.124.0) - 2024-11-06


Expand Down
56 changes: 28 additions & 28 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ resolver = "2"

# latest commits on rustls suppress certificate verification
[workspace.package]
version = "3.124.0"
version = "3.124.1"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
1 change: 0 additions & 1 deletion changelog.d/+bump-dependencies.changed.md

This file was deleted.

2 changes: 1 addition & 1 deletion mirrord/config/src/experimental.rs
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ pub struct ExperimentalConfig {
/// ### _experimental_ hide_ipv6_interfaces {#experimental-hide_ipv6_interfaces}
///
/// Enables `getifaddrs` hook that removes IPv6 interfaces from the list returned by libc.
#[config(default = true)]
#[config(default = false)]
pub hide_ipv6_interfaces: bool,

/// ### _experimental_ disable_reuseaddr {#experimental-disable_reuseaddr}
Expand Down
3 changes: 3 additions & 0 deletions mirrord/layer/tests/issue2807.rs
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ async fn test_issue2807_with_ipv6_ignore(
let config_path = dir.path().join(format!("{file_id:X}.json"));

let config = serde_json::json!({
"experimental": {
"hide_ipv6_interfaces": true
},
"feature": {
"network": {
"dns": false
Expand Down

0 comments on commit 36e3cb4

Please sign in to comment.