From 7aab706181eac032b5c7580700372c23332a23b5 Mon Sep 17 00:00:00 2001 From: Matt Wrock Date: Thu, 18 Feb 2016 00:05:58 -0800 Subject: [PATCH] bump winrm dependency to 1.7 to suppore Extended Protection (channel binding) --- CHANGELOG.md | 3 +++ knife-windows.gemspec | 2 +- lib/knife-windows/version.rb | 2 +- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bdc7fcfa..8d871b88 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # knife-windows Change Log +## Release 1.3.0 +* Pulls in Winrm 1.7.0 which now consumes rubyntlm 0.6.0 to support Extended Protection for Authentication (aka channel binding) for NTLM over TLS + ## Release 1.2.1 * [knife-windows #341](https://github.com/chef/knife-windows/pull/341) Removes nokogiri dependency and adds UX fixes for `knife wsman test` when probing a SSL endpoint configured with a self signed certificate diff --git a/knife-windows.gemspec b/knife-windows.gemspec index 843a7031..85dd3f63 100644 --- a/knife-windows.gemspec +++ b/knife-windows.gemspec @@ -14,7 +14,7 @@ Gem::Specification.new do |s| s.description = s.summary s.required_ruby_version = ">= 1.9.1" - s.add_dependency "winrm", "~> 1.6" + s.add_dependency "winrm", "~> 1.7" s.add_development_dependency 'pry' diff --git a/lib/knife-windows/version.rb b/lib/knife-windows/version.rb index 534ea6fa..5a10e830 100644 --- a/lib/knife-windows/version.rb +++ b/lib/knife-windows/version.rb @@ -1,6 +1,6 @@ module Knife module Windows - VERSION = "1.2.1" + VERSION = "1.3.0" MAJOR, MINOR, TINY = VERSION.split('.') end end