From 3af8d41523c23121ff11330abd5038716f690969 Mon Sep 17 00:00:00 2001 From: Benoit Petit Date: Tue, 5 Oct 2021 17:18:41 +0200 Subject: [PATCH] fix: updated k8s-sync feature to enable token based authentication --- CHANGELOG.md | 6 ++++++ Cargo.lock | 4 ++-- Cargo.toml | 4 ++-- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d720f09c..5f67b279 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 This may be not up to date, please check main branch. +## [0.4.1](https://github.com/hubblo-org/scaphandre/releases/tag/v0.4.0) + +### Changed + +- Updated k8s-sync crate to 0.2.3 to get authentication by token feature + ## [0.4.0](https://github.com/hubblo-org/scaphandre/releases/tag/v0.4.0) ### Added diff --git a/Cargo.lock b/Cargo.lock index b63a79eb..2e4202ea 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -607,9 +607,9 @@ dependencies = [ [[package]] name = "k8s-sync" -version = "0.2.1" +version = "0.2.3" source = "registry+https://github.com/rust-lang/crates.io-index" -checksum = "9c9eb4667c88a7ba61bbd00b1786fdd922e056879560e740804596805e7c1080" +checksum = "3d3c2f8f5cb2611742f8ceb73f23451690ff0d930149eac45fcb63ca86fbd443" dependencies = [ "base64", "chrono", diff --git a/Cargo.toml b/Cargo.toml index 1009b4cb..1cd6b0fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "scaphandre" -version = "0.4.0" +version = "0.4.1" authors = ["Benoit Petit "] edition = "2018" license = "Apache-2.0" @@ -28,7 +28,7 @@ colored = "2.0.0" chrono = "0.4.19" docker-sync = { version = "0.1.2", optional = true } #docker-sync = { path = "../rs-docker-sync", optional = true } -k8s-sync = { version = "0.2.2", optional = true } +k8s-sync = { version = "0.2.3", optional = true } #k8s-sync = { path = "../rs-k8s-sync", optional = true } hyper = { version = "0.14", features = ["full"], optional = true } tokio = { version = "1", features = ["full"], optional = true}