Skip to content

Commit

Permalink
Merge branch 'main' of github.com:metalbear-co/mirrord into rmdir-sup…
Browse files Browse the repository at this point in the history
…port
  • Loading branch information
facundopoblete committed Dec 19, 2024
2 parents adccaaf + 8deaa2c commit 1e32dc0
Show file tree
Hide file tree
Showing 12 changed files with 412 additions and 169 deletions.
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/2920.changed.md

This file was deleted.

14 changes: 8 additions & 6 deletions mirrord/layer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,22 @@ workspace = true
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
mirrord-config = { path = "../config"}
mirrord-protocol = { path = "../protocol"}
mirrord-layer-macro = { path = "./macro"}
mirrord-config = { path = "../config" }
mirrord-protocol = { path = "../protocol" }
mirrord-layer-macro = { path = "./macro" }
mirrord-console = { path = "../console" }
mirrord-intproxy-protocol = { path = "../intproxy/protocol", features = ["codec"] }
mirrord-intproxy-protocol = { path = "../intproxy/protocol", features = [
"codec",
] }

ctor = "0.2"
libc.workspace = true
bincode.workspace = true
nix = { workspace = true, features = ["net", "process", "signal"]}
nix = { workspace = true, features = ["net", "process", "signal"] }
tracing.workspace = true
tracing-subscriber.workspace = true
frida-gum = { version = "0.15", features = ["auto-download"] }
hyper = { workspace = true }

serde_json.workspace = true

Expand Down Expand Up @@ -60,7 +63,6 @@ mirrord-intproxy = { path = "../intproxy" }
k8s-openapi.workspace = true
chrono = { workspace = true, features = ["clock"] }
http-body = { workspace = true }
hyper = { workspace = true }
rstest.workspace = true
tempfile.workspace = true
test-cdylib = "*"
Expand Down
Loading

0 comments on commit 1e32dc0

Please sign in to comment.