Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

3.128.0 #2987

Merged
merged 1 commit into from
Dec 19, 2024
Merged

3.128.0 #2987

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.128.0](https://github.com/metalbear-co/mirrord/tree/3.128.0) - 2024-12-19


### Added

- Added to mirrord config a new experimental field
`.experimental.readonly_file_buffer`. If set to a value greater than 0,
mirrord will fetch remote readonly files in chunks of at least this size (in bytes).
This is to improve performance with applications that make many small reads
from remote files.
[#2069](https://github.com/metalbear-co/mirrord/issues/2069)
- Added `mirrord container-ext` command that should be used by extension and
works similarly to `mirrord ext` but for containers.
- Added runAsNonRoot and RO file system to operator deployment
- Added custom resource definition for cluster-wide mirrord policy -
`MirrordClusterPolicy`.
- Added mapping option for env vars config, allowing the user to map multiple env
vars to another value based on regexes.
[#2920](https://github.com/metalbear-co/mirrord/issues/2920)
- Added mkdir support
[#2221](https://github.com/metalbear-co/mirrord/issues/2221)


### Fixed

- Added debugger port detection type for the node `--inspect`, `--inspect-wait`
and `--inspect-brk` flags.
[#2936](https://github.com/metalbear-co/mirrord/issues/2936)
- Fixed `mirrord operator setup` - added missing `/tmp` volume to the operator
deployment.


### Internal

- Added E2E test for `MirrordClusterPolicy` that blocks incoming traffic
mirroring.

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


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.127.0"
version = "3.128.0"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
1 change: 0 additions & 1 deletion changelog.d/+cluster-policy-test.internal.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/+cluster-policy.added.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/+container-ext.added.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/+operator-deployment-strict.added.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/+operator-tmp-volume.fixed.md

This file was deleted.

2 changes: 0 additions & 2 deletions changelog.d/2069.added.md

This file was deleted.

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

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/2920.changed.md

This file was deleted.

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

This file was deleted.

Loading