diff --git a/CHANGELOG.md b/CHANGELOG.md index d250c011414..dec633f21a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how ## [Unreleased] + +## 2.11.0 ### Added - New feature: mirrord now supports TCP traffic stealing instead of mirroring. You can enable it by passing `--tcp-steal` flag to cli. diff --git a/Cargo.lock b/Cargo.lock index 55166e6b80b..ae087db8b96 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1447,7 +1447,7 @@ dependencies = [ [[package]] name = "mirrord" -version = "2.10.1" +version = "2.11.0" dependencies = [ "anyhow", "clap 3.2.19", @@ -1462,7 +1462,7 @@ dependencies = [ [[package]] name = "mirrord-agent" -version = "2.10.1" +version = "2.11.0" dependencies = [ "actix-codec", "bollard", @@ -1493,7 +1493,7 @@ dependencies = [ [[package]] name = "mirrord-auth" -version = "2.10.1" +version = "2.11.0" dependencies = [ "lazy_static", "rand 0.8.5", @@ -1506,7 +1506,7 @@ dependencies = [ [[package]] name = "mirrord-layer" -version = "2.10.1" +version = "2.11.0" dependencies = [ "actix-codec", "anyhow", @@ -1540,7 +1540,7 @@ dependencies = [ [[package]] name = "mirrord-macro" -version = "2.10.1" +version = "2.11.0" dependencies = [ "proc-macro2", "quote", @@ -1549,7 +1549,7 @@ dependencies = [ [[package]] name = "mirrord-protocol" -version = "2.10.1" +version = "2.11.0" dependencies = [ "actix-codec", "bincode", diff --git a/Cargo.toml b/Cargo.toml index f74cbc0a951..d6891348c55 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -13,7 +13,7 @@ members = [ # latest commits on rustls suppress certificate verification [workspace.package] -version = "2.10.1" +version = "2.11.0" edition = "2021" license = "MIT" readme = "README.md" diff --git a/intellij-ext/gradle.properties b/intellij-ext/gradle.properties index 4003af881ac..c7a14caecb7 100644 --- a/intellij-ext/gradle.properties +++ b/intellij-ext/gradle.properties @@ -4,7 +4,7 @@ pluginGroup = com.metalbear.mirrord pluginName = mirrord # SemVer format -> https://semver.org -pluginVersion = 2.10.1 +pluginVersion = 2.11.0 # See https://plugins.jetbrains.com/docs/intellij/build-number-ranges.html # for insight into build numbers and IntelliJ Platform versions. diff --git a/vscode-ext/package-lock.json b/vscode-ext/package-lock.json index ccf390b2857..d7aea167a64 100644 --- a/vscode-ext/package-lock.json +++ b/vscode-ext/package-lock.json @@ -1,12 +1,12 @@ { "name": "mirrord", - "version": "2.10.1", + "version": "2.11.0", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "mirrord", - "version": "2.10.1", + "version": "2.11.0", "dependencies": { "@kubernetes/client-node": "^0.16.3", "es5-ext": "<=0.10.53", diff --git a/vscode-ext/package.json b/vscode-ext/package.json index 1c15c25499e..3000ec521bd 100644 --- a/vscode-ext/package.json +++ b/vscode-ext/package.json @@ -3,7 +3,7 @@ "displayName": "mirrord", "description": "Mirror live traffic from your Kubernetes cluster to your local debugged process.", "publisher": "MetalBear", - "version": "2.10.1", + "version": "2.11.0", "engines": { "vscode": "^1.63.0" },