diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b68969bc..7da0c6008 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,13 @@ ## next +# 3.4.2 + +- Remove flag `--skip-dry-run` (see [#946](https://github.com/Shopify/krane/pull/946)) +- Remove support for batched server-side dry-run ([#946](https://github.com/Shopify/krane/pull/946)) + # 3.4.1 -- Added flag `--skip-dry-run` to completely opt out of dry run validation. +- Added flag `--skip-dry-run` to completely opt out of dry run validation. # 3.4.0 diff --git a/lib/krane/cli/deploy_command.rb b/lib/krane/cli/deploy_command.rb index 6e4b089a8..361d89789 100644 --- a/lib/krane/cli/deploy_command.rb +++ b/lib/krane/cli/deploy_command.rb @@ -33,7 +33,6 @@ class DeployCommand default: false }, "verify-result" => { type: :boolean, default: true, desc: "Verify workloads correctly deployed" }, - "skip-dry-run" => { type: :boolean, desc: "Enable skipping dry run", default: false}, } def self.from_options(namespace, context, options) @@ -72,7 +71,6 @@ def self.from_options(namespace, context, options) selector: selector, selector_as_filter: selector_as_filter, protected_namespaces: protected_namespaces, - skip_dry_run: options["skip-dry-run"] ) deploy.run!( diff --git a/lib/krane/version.rb b/lib/krane/version.rb index ff2f24e2b..be14be275 100644 --- a/lib/krane/version.rb +++ b/lib/krane/version.rb @@ -1,4 +1,4 @@ # frozen_string_literal: true module Krane - VERSION = "3.4.1" + VERSION = "3.4.2" end