chef-provisioning 1.9.1 → 2.0.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4ba3977e017bcd9f9b94d1758df531b6e8774173
4
- data.tar.gz: 1a9c35be7d7bc8128bbb6fc36e8a2ec980eb7a90
3
+ metadata.gz: 55dd1dec7e87180f4c8765c659df984a7aa98479
4
+ data.tar.gz: 6a4d740f11a92febcb4bd89fe97af1fa5c7da93b
5
5
  SHA512:
6
- metadata.gz: 489bbec731a1eb8a51dbe362a0c41edaf523d6ae904962cca4d48e9f87a05ac9c5a2c11ad5e6635004304b0d8d797661fbc16fd322c90f4ed08a759374488624
7
- data.tar.gz: 5a5be5909845b3b964e17ef01f93bb86cbd1a7d70de4c816ed9e29959f61178e7fc263cf69633532d1a341800509a73079e35e23bbde0218e9c68df783a65cbc
6
+ metadata.gz: 4a115f1b26b0810d879ee8fd100cad5a60307169127adf4a0fd96ce5aa6bab23278b660f4103eb66846f258a8be653f1c2528d5e06d3931c463623e525895598
7
+ data.tar.gz: af2527426be296672ff6d3d184b3d11650efff63e3a07df6791d0dbaf003d6da8acbdff5090082dbe3f0ec4bcd9345d2b0be572c489ec271e0ec0b70ba94aba9
@@ -1,5 +1,19 @@
1
1
  # Change Log
2
2
 
3
+ ## [2.0.0](https://github.com/chef/chef-provisioning/tree/2.0.0) (2016-08-24)
4
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.9.1...2.0.0)
5
+
6
+ **Merged pull requests:**
7
+
8
+ - Require Ruby 2.2.2+ and Cheffish 4.0 [\#538](https://github.com/chef/chef-provisioning/pull/538) ([jkeiser](https://github.com/jkeiser))
9
+
10
+ ## [v1.9.1](https://github.com/chef/chef-provisioning/tree/v1.9.1) (2016-08-11)
11
+ [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.9.0...v1.9.1)
12
+
13
+ **Merged pull requests:**
14
+
15
+ - allows cheffish 3.0 to stop pulling in compat\_resource [\#534](https://github.com/chef/chef-provisioning/pull/534) ([lamont-granquist](https://github.com/lamont-granquist))
16
+
3
17
  ## [v1.9.0](https://github.com/chef/chef-provisioning/tree/v1.9.0) (2016-08-11)
4
18
  [Full Changelog](https://github.com/chef/chef-provisioning/compare/v1.8.1...v1.9.0)
5
19
 
data/README.md CHANGED
@@ -277,7 +277,7 @@ with_chef_local_server :chef_repo_path => '~/repo'
277
277
 
278
278
  `with_chef_local_server` is a generic directive that creates a chef-zero server pointed at the given repository. nodes, clients, data bags, and all data will be stored here on your provisioner machine if you do this.
279
279
 
280
- You can use `with_chef_server` instead if you want to point at OSS, Hosted or Enterprise Chef, and if you don't specify a Chef server at all, it will use the one you are running chef-client against. Keep in mind when using `with_chef_server` and running `chef-client -z` on your workstation that you will also need to set the client name and signing key for the chef server. If you've already got knife.rb set up, then something like this will correctly create a client for the chef server on instance using your knife.rb configuration:
280
+ You can use `with_chef_server` instead if you want to point at OSS, Hosted or Enterprise Chef, and if you don't specify a Chef server at all, it will use the one you are running chef-client against. Keep in mind when using `with_chef_server` and running `chef-client -z` on your workstation that you will also need to set the client name and signing key for the chef server. If you've already got knife.rb set up, then something like this in the provisioning recipe will correctly create a client for the chef server on instance using your knife.rb configuration:
281
281
 
282
282
  ```ruby
283
283
  with_chef_server "https://chef-server.example.org",
@@ -12,11 +12,13 @@ Gem::Specification.new do |s|
12
12
  s.email = 'jkeiser@chef.io'
13
13
  s.homepage = 'http://github.com/chef/chef-provisioning/README.md'
14
14
 
15
+ s.required_ruby_version = ">= 2.2.2"
16
+
15
17
  s.add_dependency 'net-ssh', '>= 2.9', '< 4.0'
16
18
  s.add_dependency 'net-scp', '~> 1.0'
17
19
  s.add_dependency 'net-ssh-gateway', '~> 1.2.0'
18
20
  s.add_dependency 'inifile', '>= 2.0.2'
19
- s.add_dependency 'cheffish', '>= 1.3.1', '< 4.0' # 1.3.1 allows 'let' vars in unquoted recipes.
21
+ s.add_dependency 'cheffish', '~> 4.0'
20
22
  s.add_dependency 'winrm', '~> 1.3'
21
23
  s.add_dependency "mixlib-install", "~> 1.0"
22
24
 
@@ -1,5 +1,5 @@
1
1
  class Chef
2
2
  module Provisioning
3
- VERSION = '1.9.1'
3
+ VERSION = '2.0.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: chef-provisioning
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.1
4
+ version: 2.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - John Keiser
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2016-08-11 00:00:00.000000000 Z
11
+ date: 2016-08-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: net-ssh
@@ -76,20 +76,14 @@ dependencies:
76
76
  name: cheffish
77
77
  requirement: !ruby/object:Gem::Requirement
78
78
  requirements:
79
- - - ">="
80
- - !ruby/object:Gem::Version
81
- version: 1.3.1
82
- - - "<"
79
+ - - "~>"
83
80
  - !ruby/object:Gem::Version
84
81
  version: '4.0'
85
82
  type: :runtime
86
83
  prerelease: false
87
84
  version_requirements: !ruby/object:Gem::Requirement
88
85
  requirements:
89
- - - ">="
90
- - !ruby/object:Gem::Version
91
- version: 1.3.1
92
- - - "<"
86
+ - - "~>"
93
87
  - !ruby/object:Gem::Version
94
88
  version: '4.0'
95
89
  - !ruby/object:Gem::Dependency
@@ -281,7 +275,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
281
275
  requirements:
282
276
  - - ">="
283
277
  - !ruby/object:Gem::Version
284
- version: '0'
278
+ version: 2.2.2
285
279
  required_rubygems_version: !ruby/object:Gem::Requirement
286
280
  requirements:
287
281
  - - ">="
@@ -289,7 +283,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
289
283
  version: '0'
290
284
  requirements: []
291
285
  rubyforge_project:
292
- rubygems_version: 2.4.8
286
+ rubygems_version: 2.6.6
293
287
  signing_key:
294
288
  specification_version: 4
295
289
  summary: A library for creating machines and infrastructures idempotently in Chef.