From 87b27c2589a4b0dfdff2a30a7ea3fe2c7f525040 Mon Sep 17 00:00:00 2001 From: Eric Kidd Date: Fri, 10 Apr 2020 16:44:43 -0400 Subject: [PATCH] v0.3.0-alpha.3: Add `no_default_policies` for Vault This can be used to indicate that a service should not receive the default Vault policies --- CHANGELOG.md | 7 +++++++ Cargo.lock | 2 +- Cargo.toml | 2 +- 3 files changed, 9 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 63eaddf1..37338128 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,13 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## 0.3.0-alpha.3 - 2020-04-10 + +### Added + +- When using `config/vault.yml`, it is now possible to use `no_default_policies` to indicate that a pod should not receive the default Vault policies. +- Some Windows debugging code has been added to try to figure out the template failures on Appveyor. + ## 0.3.0-alpha.2 - 2020-04-09 ### Added diff --git a/Cargo.lock b/Cargo.lock index c52e2003..035d3a1f 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -187,7 +187,7 @@ source = "registry+https://github.com/rust-lang/crates.io-index" [[package]] name = "cage" -version = "0.3.0-alpha.2" +version = "0.3.0-alpha.3" dependencies = [ "boondock 0.1.0-alpha.1 (registry+https://github.com/rust-lang/crates.io-index)", "clap 2.33.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/Cargo.toml b/Cargo.toml index bc816617..63d9371f 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "cage" -version = "0.3.0-alpha.2" +version = "0.3.0-alpha.3" authors = ["Eric Kidd ", "Derek Kastner "] edition = "2018"