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.130.0 #3027

Merged
merged 3 commits into from
Jan 21, 2025
Merged

3.130.0 #3027

Show file tree
Hide file tree
Changes from 1 commit
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
34 changes: 34 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,40 @@ This project uses [*towncrier*](https://towncrier.readthedocs.io/) and the chang

<!-- towncrier release notes start -->

## [3.130.0](https://github.com/metalbear-co/mirrord/tree/3.130.0) - 2025-01-21


### Added

- Added support for `rmdir`, `unlink` and `unlinkat`.
[#2221](https://github.com/metalbear-co/mirrord/issues/2221)


### Changed

- Updated `configuration.md` and improved `.feature.env.mapping` doc.


### Fixed

- Stopped mirrord entering a crash loop when trying to load into some processes
like VSCode's `watchdog.js` when the user config contained a call to
`get_env()`, which occurred due to missing env - the config is now only
rendered once and set into an env var.
[#2936](https://github.com/metalbear-co/mirrord/issues/2936)
- Fixed an issue where HTTP requests stolen with a filter would hang with a
single-threaded local HTTP server.
Improved handling of incoming connections on the local machine (e.g
introduces reuse of local HTTP connections).
[#3013](https://github.com/metalbear-co/mirrord/issues/3013)
- Moved to an older builder base image for aarch64 to support centos-7 libc.
[#3024](https://github.com/metalbear-co/mirrord/issues/3024)


### Internal

- Extended `mirrord-protocol` with info logs from the agent.

## [3.129.0](https://github.com/metalbear-co/mirrord/tree/3.129.0) - 2025-01-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.129.0"
version = "3.130.0"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down
1 change: 0 additions & 1 deletion changelog.d/+added-log-leve.internal.md

This file was deleted.

1 change: 0 additions & 1 deletion changelog.d/+improve-env-config-docs.changed.md

This file was deleted.

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

This file was deleted.

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

This file was deleted.

2 changes: 0 additions & 2 deletions changelog.d/3013.fixed.md

This file was deleted.

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

This file was deleted.

Loading