Skip to content

Commit

Permalink
3.121.0 (#2857)
Browse files Browse the repository at this point in the history
* 3.121.0

* fix ci
  • Loading branch information
Razz4780 authored Oct 17, 2024
1 parent 10d13ac commit 133f536
Show file tree
Hide file tree
Showing 14 changed files with 69 additions and 42 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -562,7 +562,7 @@ jobs:
# building concurrently can run faster the release ide tests
build_mirrord_on_release_branch:
runs-on: ubuntu-24.04
name: build mirrord
name: build mirrord CLI
needs: check_if_release_branch
if: ${{ needs.check_if_release_branch.outputs.release_branch == 'true' }}
steps:
Expand All @@ -571,8 +571,8 @@ jobs:
with:
repo-token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: cargo build --manifest-path=./Cargo.toml
- name: upload layer
- run: cargo build --manifest-path=./Cargo.toml -p mirrord
- name: upload mirrord CLI
uses: actions/upload-artifact@v4
with:
name: mirrord-artifacts
Expand Down
37 changes: 37 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,43 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang

<!-- towncrier release notes start -->

## [3.121.0](https://github.com/metalbear-co/mirrord/tree/3.121.0) - 2024-10-17


### Added

- Added support for Istio CNI
[#2851](https://github.com/metalbear-co/mirrord/issues/2851)
- Added `nodeSelector` option to agent config.


### Changed

- Allowed filtered steal requests to be retried when we get a Reset from
hyper(h2).


### Fixed

- Fixed an issue where `mirrord exec ... -- npm run serve` in a Vue project was
failing with `EAFNOSUPPORT: address family not supported ::1:80`. Added new
`.experimental.hide_ipv6_interfaces` configuration entry that allows for
hiding local IPv6 interface addresses from the user application.
[#2807](https://github.com/metalbear-co/mirrord/issues/2807)
- Fixed wrong warning being displayed when binding UDP port 0 and filtering HTTP.
[#2812](https://github.com/metalbear-co/mirrord/issues/2812)
- mirrord now respects `insecure-skip-tls-verify` option set in the kubeconfig
when `accept_invalid_certificates` is not provided in the mirrord config.
[#2825](https://github.com/metalbear-co/mirrord/issues/2825)


### Internal

- Downgraded Rust toochain to nightly-2024-09-12.
[#downgrade-rust](https://github.com/metalbear-co/mirrord/issues/downgrade-rust)
- Added integration (regression) test for binding port 0 twice.
[#2812](https://github.com/metalbear-co/mirrord/issues/2812)

## [3.120.1](https://github.com/metalbear-co/mirrord/tree/3.120.1) - 2024-10-14


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.120.1"
version = "3.121.0"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
1 change: 0 additions & 1 deletion changelog.d/+649-gogrpc-retry-fix.changed.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/+nodeselector.added.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/+removed-debug-warning.fixed.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/+update-rust.changed.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/2807.fixed.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/2812.fixed.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/2812.internal.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/2825.fixed.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/2851.added.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/downgrade-rust.internal.md

This file was deleted.

0 comments on commit 133f536

Please sign in to comment.