Skip to content

Commit

Permalink
Update to version 2.2.0 (#133)
Browse files Browse the repository at this point in the history
  • Loading branch information
eyalb181 authored Jun 9, 2022
1 parent 49b6050 commit f966cee
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
6 changes: 3 additions & 3 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ Previous versions had CHANGELOG per component, we decided to combine all reposit
Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how to structure this file.

## [Unreleased]

## 2.2.0
### Added
- File operations are now available behind the `MIRRORD_FILE_OPS` env variable, this means that mirrord now hooks into the following file functions: `open`, `fopen`, `fdopen`, `openat`, `read`, `fread`, `fileno`, `lseek`, and `write` to provide a mirrored file system.
- Support for running x64 (Intel) binary on arm (Silicon) macOS using mirrord. This will download and use the x64 mirrord-layer binary when needed.
Expand All @@ -15,7 +17,7 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
- Add graceful exit for library extraction logic in case of error.
- Refactor the CI by splitting the building of mirrord-agent in a separate job and caching the agent image for E2E tests.
- Update bug report template to apply to the latest version of mirrord.
- Chang release profile to strip debuginfo and enable LTO.
- Change release profile to strip debuginfo and enable LTO.
- VS Code extension - update dependencies.
- CLI & macOS: Extract to `/tmp/` instead of `$TMPDIR` as the executed process is getting killed for some reason.

Expand All @@ -25,15 +27,13 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
- Fix typos

## 2.1.0

### Added

- Prompt user to update if their version is outdated in the VS Code extension or CLI.
- Add support for docker runtime, closes [#95](https://github.com/metalbear-co/mirrord/issues/95).
- Add a keep-alive to keep the agent-pod from exiting, closes [#63](https://github.com/metalbear-co/mirrord/issues/63)

## 2.0.4

Complete refactor and re-write of everything.

- The CLI/VSCode extension now use `mirrord-layer` which loads into debugged process using `LD_PRELOAD`/`DYLD_INSERT_LIBRARIES`.
Expand Down
8 changes: 4 additions & 4 deletions Cargo.lock

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

4 changes: 2 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ members = [

# latest commits on rustls suppress certificate verification
[workspace.package]
version = "2.1.0"
version = "2.2.0"
edition = "2021"
license = "MIT"
readme = "README.md"
Expand Down Expand Up @@ -47,4 +47,4 @@ rustls = { git = 'https://github.com/rustls/rustls' }

[profile.release]
strip = "debuginfo"
lto = true
lto = true
4 changes: 2 additions & 2 deletions vscode-ext/package-lock.json

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

2 changes: 1 addition & 1 deletion vscode-ext/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"displayName": "mirrord",
"description": "Mirror live traffic from your Kubernetes cluster to your local debugged process.",
"publisher": "MetalBear",
"version": "2.1.0",
"version": "2.2.0",
"engines": {
"vscode": "^1.63.0"
},
Expand Down

0 comments on commit f966cee

Please sign in to comment.