diff --git a/CHANGELOG.md b/CHANGELOG.md index 8e43fc4409a..45a21484ae0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,13 +6,14 @@ 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.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.0 - +## 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`. It hooks some of the syscalls in order to proxy incoming traffic into the process as if it was running in the remote pod. diff --git a/Cargo.lock b/Cargo.lock index cf796a3d164..b9d4b8669ae 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1307,7 +1307,7 @@ dependencies = [ [[package]] name = "mirrord" -version = "2.0.4" +version = "2.1.0" dependencies = [ "anyhow", "clap 3.1.18", @@ -1321,7 +1321,7 @@ dependencies = [ [[package]] name = "mirrord-agent" -version = "2.0.4" +version = "2.1.0" dependencies = [ "actix-codec", "anyhow", @@ -1345,7 +1345,7 @@ dependencies = [ [[package]] name = "mirrord-layer" -version = "2.0.4" +version = "2.1.0" dependencies = [ "actix-codec", "bytes", @@ -1375,7 +1375,7 @@ dependencies = [ [[package]] name = "mirrord-protocol" -version = "2.0.4" +version = "2.1.0" dependencies = [ "actix-codec", "bincode", diff --git a/Cargo.toml b/Cargo.toml index 3c2f4fc3475..6b0b6e5f1cb 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -9,7 +9,7 @@ members = [ ] [workspace.package] -version = "2.0.4" +version = "2.1.0" edition = "2021" license = "MIT" readme = "README.md" diff --git a/vscode-ext/package-lock.json b/vscode-ext/package-lock.json index 865450fdeb5..533c01f18b4 100644 --- a/vscode-ext/package-lock.json +++ b/vscode-ext/package-lock.json @@ -1,12 +1,12 @@ { "name": "mirrord", - "version": "1.1.0", + "version": "2.1.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "mirrord", - "version": "1.1.0", + "version": "2.1.0", "dependencies": { "@kubernetes/client-node": "^0.16.3", "ffi-napi": "^4.0.3",