kitchen-vra 2.2.0 → 2.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: b6cc3c25b21a83eac8d374f6a9210d7ceefc7043
4
- data.tar.gz: b17fd352f4cd7f095d87dcecd24f391e58abb1fd
3
+ metadata.gz: 5e4cfc4ac71a96821a3b283979f4f02a37c2ea71
4
+ data.tar.gz: 1d1029f7792c46a8c4cbe8e19d45418dc6969617
5
5
  SHA512:
6
- metadata.gz: e6b8a50b00f03eda8fcc38dad7355dcaa87b3728d0b4876b5f324ce52c3b484c8a568d7055fa67751894a32dade67896cbe4ebe659d24f95d8bc9ba27cc15831
7
- data.tar.gz: 1a7fc733c6d13253d0a93affa3ba6fdacd262011704eed4467d9f6fb2b89dfc397999b73cf292a60d413e9461d9f7ea985b1d7e92ce015c6e011a7c7c5df6f61
6
+ metadata.gz: ce5a986c98e748a248d9053f989b6480620d5307e2211636ac59dfc4ca861d221cc8b0f71c421575e5baefd0626b0228751fa6308ed2ce5b6c04e7a892672456
7
+ data.tar.gz: 96caae81ee6b15e35d26e28e44915d2176964bc46d253aa7f2e8dc2f04e007674f32175af23205cb1e0fec155677c9a98a553179239e7f3509f7ce61affe63fe
@@ -0,0 +1,23 @@
1
+ ### Versions:
2
+ <!--- Version of the software where you are encountering the issue --->
3
+ <!-- You should probably update in this is not newest release.--->
4
+ * Version of kitchen-vra:
5
+ * Version of test-kitchen:
6
+ * Version of chef:
7
+
8
+ ### Platform Details
9
+ <!--- What version of vRA are you running? What version of ESXi are you using too?--->
10
+ * Version of vRA:
11
+ * Version of ESXi:
12
+
13
+ ### Scenario:
14
+ <!--- What you are trying to achieve and you can't?--->
15
+
16
+ ### Steps to Reproduce:
17
+ <!--- If you are filing an issue what are the things we need to do in order to repro your problem? How are you using this gem or any resources it includes?--->
18
+
19
+ ### Expected Result:
20
+ <!--- What are you expecting to happen as the consequence of above reproduction steps?--->
21
+
22
+ ### Actual Result:
23
+ <!--- What actually happens after the reproduction steps? Include the error output or a link to a gist if possible.--->
@@ -0,0 +1,14 @@
1
+ ### Description
2
+
3
+ <!--- Describe what this change achieves--->
4
+
5
+ ### Issues Resolved
6
+
7
+ <!--- List any existing issues this PR resolves--->
8
+
9
+ ### Check List
10
+
11
+ - [ ] All tests pass.
12
+ - [ ] All style checks pass.
13
+ - [ ] Functionality includes testing.
14
+ - [ ] Functionality has been documented in the README if applicable
@@ -3,13 +3,18 @@ cache: bundler
3
3
  sudo: false
4
4
 
5
5
  rvm:
6
- - 2.1
7
- - 2.2
6
+ - 2.2
7
+ - 2.3.3
8
+ - 2.4.1
8
9
 
9
10
  branches:
10
11
  only:
11
12
  - master
12
13
 
14
+ script:
15
+ - bundle exec rake style
16
+ - bundle exec rake spec
17
+
13
18
  notifications:
14
19
  slack:
15
20
  on_success: change
@@ -1,8 +1,22 @@
1
1
  # Change Log
2
2
 
3
- ## [Unreleased](https://github.com/chef-partners/kitchen-vra/tree/HEAD)
3
+ ## [2.3.0](https://github.com/chef-partners/kitchen-vra/tree/2.3.0) (2017-07-14)
4
+ [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v2.2.0...2.3.0)
4
5
 
5
- [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v2.0.0...HEAD)
6
+ **Merged pull requests:**
7
+
8
+ - Switched to using set\_parameters [\#24](https://github.com/chef-partners/kitchen-vra/pull/24) ([lloydsmithjr03](https://github.com/lloydsmithjr03))
9
+ - Updates for travis and rubocop [\#23](https://github.com/chef-partners/kitchen-vra/pull/23) ([jjasghar](https://github.com/jjasghar))
10
+
11
+ ## [v2.2.0](https://github.com/chef-partners/kitchen-vra/tree/v2.2.0) (2017-02-15)
12
+ [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v2.1.0...v2.2.0)
13
+
14
+ **Merged pull requests:**
15
+
16
+ - Vra cache creds [\#16](https://github.com/chef-partners/kitchen-vra/pull/16) ([michaelschlies](https://github.com/michaelschlies))
17
+
18
+ ## [v2.1.0](https://github.com/chef-partners/kitchen-vra/tree/v2.1.0) (2017-02-13)
19
+ [Full Changelog](https://github.com/chef-partners/kitchen-vra/compare/v2.0.0...v2.1.0)
6
20
 
7
21
  **Closed issues:**
8
22
 
data/Gemfile CHANGED
@@ -1,2 +1,3 @@
1
+ # frozen_string_literal: true
1
2
  source 'https://rubygems.org'
2
3
  gemspec
data/Rakefile CHANGED
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  require 'bundler/gem_tasks'
2
3
  require 'rspec/core/rake_task'
3
4
  require 'rubocop/rake_task'
@@ -5,4 +6,15 @@ require 'rubocop/rake_task'
5
6
  RSpec::Core::RakeTask.new(:spec)
6
7
  RuboCop::RakeTask.new(:style)
7
8
 
9
+ begin
10
+ require 'github_changelog_generator/task'
11
+
12
+ GitHubChangelogGenerator::RakeTask.new :changelog do |config|
13
+ config.future_release = Kitchen::Driver::VRA_VERSION
14
+ config.issues = true
15
+ end
16
+ rescue LoadError
17
+ puts 'github_changelog_generator is not available. gem install github_changelog_generator to generate changelogs'
18
+ end
19
+
8
20
  task default: [ :spec, :style ]
@@ -1,4 +1,5 @@
1
1
  # coding: utf-8
2
+ # frozen_string_literal: true
2
3
  lib = File.expand_path('../lib', __FILE__)
3
4
  $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
5
  require 'kitchen/driver/vra_version'
@@ -23,7 +24,8 @@ Gem::Specification.new do |spec|
23
24
  spec.add_dependency 'highline'
24
25
  spec.add_dependency 'rack', '~> 1.6' unless RUBY_VERSION.index('2.0.').nil?
25
26
  spec.add_dependency 'ffi-yajl', '~> 2.2.3' unless RUBY_VERSION.index('2.0.').nil?
26
- spec.add_development_dependency 'bundler', '~> 1.7'
27
+ spec.add_development_dependency 'bundler', '~> 1.7'
28
+ spec.add_development_dependency 'github_changelog_generator'
27
29
  spec.add_development_dependency 'rake', '~> 10.0'
28
30
  spec.add_development_dependency 'rspec', '~> 3.2'
29
31
  spec.add_development_dependency 'simplecov', '~> 0.10'
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  #
2
3
  # Author:: Chef Partner Engineering (<partnereng@chef.io>)
3
4
  # Copyright:: Copyright (c) 2015 Chef Software, Inc.
@@ -203,7 +204,7 @@ module Kitchen
203
204
  catalog_request.subtenant_id = config[:subtenant_id] unless config[:subtenant_id].nil?
204
205
 
205
206
  config[:extra_parameters].each do |key, value_data|
206
- catalog_request.set_parameter(key, value_data[:type], value_data[:value])
207
+ catalog_request.set_parameters(key, value_data)
207
208
  end
208
209
 
209
210
  catalog_request
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  #
2
3
  # Author:: Chef Partner Engineering (<partnereng@chef.io>)
3
4
  # Copyright:: Copyright (c) 2015 Chef Software, Inc.
@@ -18,6 +19,6 @@
18
19
 
19
20
  module Kitchen
20
21
  module Driver
21
- VRA_VERSION = '2.2.0'.freeze
22
+ VRA_VERSION = '2.3.0'
22
23
  end
23
24
  end
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  #
2
3
  # Author:: Chef Partner Engineering (<partnereng@chef.io>)
3
4
  # Copyright:: Copyright (c) 2015 Chef Software, Inc.
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  #
2
3
  # Author:: Chef Partner Engineering (<partnereng@chef.io>)
3
4
  # Copyright:: Copyright (c) 2015 Chef Software, Inc.
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: kitchen-vra
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.2.0
4
+ version: 2.3.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chef Partner Engineering
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-02-15 00:00:00.000000000 Z
11
+ date: 2017-07-14 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: test-kitchen
@@ -66,6 +66,20 @@ dependencies:
66
66
  - - "~>"
67
67
  - !ruby/object:Gem::Version
68
68
  version: '1.7'
69
+ - !ruby/object:Gem::Dependency
70
+ name: github_changelog_generator
71
+ requirement: !ruby/object:Gem::Requirement
72
+ requirements:
73
+ - - ">="
74
+ - !ruby/object:Gem::Version
75
+ version: '0'
76
+ type: :development
77
+ prerelease: false
78
+ version_requirements: !ruby/object:Gem::Requirement
79
+ requirements:
80
+ - - ">="
81
+ - !ruby/object:Gem::Version
82
+ version: '0'
69
83
  - !ruby/object:Gem::Dependency
70
84
  name: rake
71
85
  requirement: !ruby/object:Gem::Requirement
@@ -143,6 +157,8 @@ executables: []
143
157
  extensions: []
144
158
  extra_rdoc_files: []
145
159
  files:
160
+ - ".github/ISSUE_TEMPLATE.md"
161
+ - ".github/PULL_REQUEST_TEMPLATE.md"
146
162
  - ".gitignore"
147
163
  - ".rubocop.yml"
148
164
  - ".travis.yml"