vmware-vra 3.1.0 → 3.1.3
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 +4 -4
- data/.github/workflows/linters.yml +9 -0
- data/.markdownlint.yaml +5 -0
- data/.mdlrc +1 -0
- data/CHANGELOG.md +196 -143
- data/Gemfile +3 -0
- data/README.md +37 -26
- data/Rakefile +2 -2
- data/lib/vra/catalog.rb +6 -7
- data/lib/vra/catalog_base.rb +4 -4
- data/lib/vra/catalog_item.rb +12 -12
- data/lib/vra/catalog_source.rb +13 -13
- data/lib/vra/catalog_type.rb +6 -6
- data/lib/vra/client.rb +13 -13
- data/lib/vra/deployment.rb +21 -21
- data/lib/vra/deployment_request.rb +8 -9
- data/lib/vra/deployments.rb +1 -1
- data/lib/vra/http.rb +6 -6
- data/lib/vra/request.rb +6 -6
- data/lib/vra/request_parameters.rb +9 -9
- data/lib/vra/resource.rb +16 -16
- data/lib/vra/version.rb +1 -1
- data/lib/vra.rb +14 -14
- data/spec/catalog_item_spec.rb +50 -50
- data/spec/catalog_source_spec.rb +53 -53
- data/spec/catalog_spec.rb +45 -45
- data/spec/catalog_type_spec.rb +32 -32
- data/spec/client_spec.rb +202 -202
- data/spec/deployment_request_spec.rb +74 -74
- data/spec/deployment_spec.rb +70 -70
- data/spec/deployments_spec.rb +19 -19
- data/spec/http_spec.rb +59 -59
- data/spec/request_spec.rb +34 -34
- data/spec/resource_spec.rb +55 -55
- data/spec/spec_helper.rb +4 -4
- data/vmware-vra.gemspec +1 -1
- metadata +8 -7
- data/.github/ISSUE_TEMPLATE.md +0 -23
- data/.github/PULL_REQUEST_TEMPLATE.md +0 -14
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9f5265a1fb658c84986b019f01469ae9143300a5b0b36eda4825458ef28cc738
|
4
|
+
data.tar.gz: 638b354ab5cd83171f560e7eefcb53ebe4e773f3b7fc2b9ef5b7260fee5288fd
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 9c0e6ead2fc7eb2c8de12f87f5bcee61b7358f17061beb62f6f312521a4f29e2787d8018f22029c092aa86754c55c16918df13a457df304d48f6663d35d6f164
|
7
|
+
data.tar.gz: b425f0d3c34074720708d91ac06f6c1421e1e2020f786a02c903dbbce028df413eb16056e21995a3e34f9f5b01a3a9f93935287282d53e9607a33ffcff608e75
|
data/.markdownlint.yaml
ADDED
data/.mdlrc
ADDED
@@ -0,0 +1 @@
|
|
1
|
+
rules "~MD036", "~MD013", "~MD024", "~MD029"
|
data/CHANGELOG.md
CHANGED
@@ -1,322 +1,375 @@
|
|
1
1
|
# Change Log
|
2
2
|
|
3
|
-
## [3.1.
|
4
|
-
[Full Changelog](https://github.com/chef-partners/vmware-vra-gem/compare/v3.0.1...v3.1.0)
|
3
|
+
## [3.1.3](https://github.com/test-kitchen/vmware-vra-gem/tree/v3.1.3) (2022-05-26)
|
5
4
|
|
6
|
-
-
|
5
|
+
- Use regular admin catalog endpoint to fetch catalog items
|
6
|
+
- Fixed the issue with multi-tenancy
|
7
|
+
- Fix chefstyle issues and optimise workflow
|
7
8
|
|
8
|
-
|
9
|
-
|
9
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v3.1.2...v3.1.3)
|
10
|
+
|
11
|
+
|
12
|
+
## [3.1.2] (2022-03-28)
|
13
|
+
|
14
|
+
- Upgrade Rake dependency (@damacus)
|
15
|
+
|
16
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v3.1.1...v3.1.1)
|
17
|
+
|
18
|
+
## [3.1.1] (2022-03-01)
|
19
|
+
|
20
|
+
- Send Authorization: Bearer header instead of csp-auth-token for greater compatibility [@oshvarts]
|
21
|
+
|
22
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v3.1.0...v3.1.1)
|
23
|
+
|
24
|
+
## [3.1.0](https://github.com/test-kitchen/vmware-vra-gem/tree/v3.1.0) (2022-01-30)
|
25
|
+
|
26
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v3.0.1...v3.1.0)
|
27
|
+
|
28
|
+
- Make the version param optional in deployment request api
|
29
|
+
|
30
|
+
## [3.0.1](https://github.com/test-kitchen/vmware-vra-gem/tree/v3.0.1) (2022-01-25)
|
31
|
+
|
32
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v3.0.0...v3.0.1)
|
10
33
|
|
11
34
|
- Fix access token workflow to work with VRA8
|
12
35
|
|
13
|
-
## [3.0.0](https://github.com/
|
14
|
-
|
36
|
+
## [3.0.0](https://github.com/test-kitchen/vmware-vra-gem/tree/v3.0.0) (2022-01-18)
|
37
|
+
|
38
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v2.7.2...v3.0.0)
|
15
39
|
|
16
40
|
- Rewritten to support vRA 8. If you require support for 7 make sure to pin on the previous 2.7.2 release.
|
17
41
|
|
18
|
-
## [2.7.2](https://github.com/
|
19
|
-
|
42
|
+
## [2.7.2](https://github.com/test-kitchen/vmware-vra-gem/tree/v2.7.2) (2020-09-09)
|
43
|
+
|
44
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v2.7.1...v2.7.2)
|
20
45
|
|
21
46
|
- Added an extra option to handle shirt size parameter
|
22
47
|
- Masking user credentials(password) in debug mode
|
23
48
|
|
24
|
-
## [2.7.1](https://github.com/
|
25
|
-
|
49
|
+
## [2.7.1](https://github.com/test-kitchen/vmware-vra-gem/tree/v2.7.1) (2019-05-28)
|
50
|
+
|
51
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v2.7.0...v2.7.1)
|
26
52
|
|
27
53
|
**Closed issues:**
|
28
54
|
|
29
|
-
- Some Extra Parameters are not passing through to VRA [\#75](https://github.com/
|
55
|
+
- Some Extra Parameters are not passing through to VRA [\#75](https://github.com/test-kitchen/vmware-vra-gem/issues/75)
|
30
56
|
|
31
57
|
**Merged pull requests:**
|
32
58
|
|
33
|
-
- Add support for boolean vRA parameters, fix deep merge, add tracing [\#76](https://github.com/
|
59
|
+
- Add support for boolean vRA parameters, fix deep merge, add tracing [\#76](https://github.com/test-kitchen/vmware-vra-gem/pull/76) ([stuartpreston](https://github.com/stuartpreston))
|
60
|
+
|
61
|
+
## [2.7.0](https://github.com/test-kitchen/vmware-vra-gem/tree/v2.7.0) (2019-05-10)
|
34
62
|
|
35
|
-
|
36
|
-
[Full Changelog](https://github.com/chef-partners/vmware-vra-gem/compare/v2.6.1...v2.7.0)
|
63
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v2.6.1...v2.7.0)
|
37
64
|
|
38
65
|
**Closed issues:**
|
39
66
|
|
40
|
-
- Extra Parameters Not Being Sent to vRA [\#73](https://github.com/
|
67
|
+
- Extra Parameters Not Being Sent to vRA [\#73](https://github.com/test-kitchen/vmware-vra-gem/issues/73)
|
41
68
|
|
42
69
|
**Merged pull requests:**
|
43
70
|
|
44
|
-
- vRA7 multiple fixes for nested, non-nested and merged parameters for a Blueprint [\#74](https://github.com/
|
71
|
+
- vRA7 multiple fixes for nested, non-nested and merged parameters for a Blueprint [\#74](https://github.com/test-kitchen/vmware-vra-gem/pull/74) ([stuartpreston](https://github.com/stuartpreston))
|
45
72
|
|
46
|
-
## [2.6.1](https://github.com/
|
47
|
-
|
73
|
+
## [2.6.1](https://github.com/test-kitchen/vmware-vra-gem/tree/v2.6.1) (2018-07-31)
|
74
|
+
|
75
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v2.6.0...2.6.1)
|
48
76
|
|
49
77
|
**Closed issues:**
|
50
78
|
|
51
|
-
- Vra::Resource\#ip\_addresses non-deterministically returns an empty array in error [\#65](https://github.com/
|
79
|
+
- Vra::Resource\#ip\_addresses non-deterministically returns an empty array in error [\#65](https://github.com/test-kitchen/vmware-vra-gem/issues/65)
|
52
80
|
|
53
81
|
**Merged pull requests:**
|
54
82
|
|
55
|
-
- Removed the deep merge [\#68](https://github.com/
|
83
|
+
- Removed the deep merge [\#68](https://github.com/test-kitchen/vmware-vra-gem/pull/68) ([jjasghar](https://github.com/jjasghar))
|
84
|
+
|
85
|
+
## [v2.6.0](https://github.com/test-kitchen/vmware-vra-gem/tree/v2.6.0) (2018-03-01)
|
56
86
|
|
57
|
-
|
58
|
-
[Full Changelog](https://github.com/chef-partners/vmware-vra-gem/compare/v2.5.2...v2.6.0)
|
87
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v2.5.2...v2.6.0)
|
59
88
|
|
60
89
|
**Closed issues:**
|
61
90
|
|
62
|
-
- undefined method `\[\]' for nil:NilClass if data for json content is of single entity [\#55](https://github.com/
|
91
|
+
- undefined method `\[\]' for nil:NilClass if data for json content is of single entity [\#55](https://github.com/test-kitchen/vmware-vra-gem/issues/55)
|
63
92
|
|
64
93
|
**Merged pull requests:**
|
65
94
|
|
66
|
-
- Accept subtenant name as input in kitchen.yml [\#67](https://github.com/
|
67
|
-
- Lgustafson/fix 65 [\#66](https://github.com/
|
95
|
+
- Accept subtenant name as input in kitchen.yml [\#67](https://github.com/test-kitchen/vmware-vra-gem/pull/67) ([vinuphilip](https://github.com/vinuphilip))
|
96
|
+
- Lgustafson/fix 65 [\#66](https://github.com/test-kitchen/vmware-vra-gem/pull/66) ([lgustafson](https://github.com/lgustafson))
|
97
|
+
|
98
|
+
## [v2.5.2](https://github.com/test-kitchen/vmware-vra-gem/tree/v2.5.2) (2018-01-22)
|
68
99
|
|
69
|
-
|
70
|
-
[Full Changelog](https://github.com/chef-partners/vmware-vra-gem/compare/v2.5.1...v2.5.2)
|
100
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v2.5.1...v2.5.2)
|
71
101
|
|
72
102
|
**Merged pull requests:**
|
73
103
|
|
74
|
-
- Added a method to retrieve catalog id's from catalog name [\#64](https://github.com/
|
104
|
+
- Added a method to retrieve catalog id's from catalog name [\#64](https://github.com/test-kitchen/vmware-vra-gem/pull/64) ([rupeshpatel88](https://github.com/rupeshpatel88))
|
75
105
|
|
76
|
-
## [v2.5.1](https://github.com/
|
77
|
-
|
106
|
+
## [v2.5.1](https://github.com/test-kitchen/vmware-vra-gem/tree/v2.5.1) (2017-10-19)
|
107
|
+
|
108
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v2.5.0...v2.5.1)
|
78
109
|
|
79
110
|
**Merged pull requests:**
|
80
111
|
|
81
|
-
- Fixes a bug with Resource.by\_name [\#63](https://github.com/
|
112
|
+
- Fixes a bug with Resource.by\_name [\#63](https://github.com/test-kitchen/vmware-vra-gem/pull/63) ([logicminds](https://github.com/logicminds))
|
113
|
+
|
114
|
+
## [v2.5.0](https://github.com/test-kitchen/vmware-vra-gem/tree/v2.5.0) (2017-10-17)
|
82
115
|
|
83
|
-
|
84
|
-
[Full Changelog](https://github.com/chef-partners/vmware-vra-gem/compare/v2.4.0...v2.5.0)
|
116
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v2.4.0...v2.5.0)
|
85
117
|
|
86
118
|
**Closed issues:**
|
87
119
|
|
88
|
-
- Use mkdir\_p when creating template directory [\#60](https://github.com/
|
120
|
+
- Use mkdir\_p when creating template directory [\#60](https://github.com/test-kitchen/vmware-vra-gem/issues/60)
|
89
121
|
|
90
122
|
**Merged pull requests:**
|
91
123
|
|
92
|
-
- Adds ability to lookup resource by name [\#62](https://github.com/
|
124
|
+
- Adds ability to lookup resource by name [\#62](https://github.com/test-kitchen/vmware-vra-gem/pull/62) ([logicminds](https://github.com/logicminds))
|
125
|
+
|
126
|
+
## [v2.4.0](https://github.com/test-kitchen/vmware-vra-gem/tree/v2.4.0) (2017-09-19)
|
93
127
|
|
94
|
-
|
95
|
-
[Full Changelog](https://github.com/chef-partners/vmware-vra-gem/compare/v2.3.0...v2.4.0)
|
128
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v2.3.0...v2.4.0)
|
96
129
|
|
97
130
|
**Closed issues:**
|
98
131
|
|
99
|
-
- cpu and memory parameters request [\#52](https://github.com/
|
100
|
-
- Minor typo in README [\#51](https://github.com/
|
132
|
+
- cpu and memory parameters request [\#52](https://github.com/test-kitchen/vmware-vra-gem/issues/52)
|
133
|
+
- Minor typo in README [\#51](https://github.com/test-kitchen/vmware-vra-gem/issues/51)
|
101
134
|
|
102
135
|
**Merged pull requests:**
|
103
136
|
|
104
|
-
- Adds ability to supply template files to catalog request [\#57](https://github.com/
|
105
|
-
- Adds the ability to dump catalog templates via class methods [\#56](https://github.com/
|
106
|
-
- Symbols [\#53](https://github.com/
|
137
|
+
- Adds ability to supply template files to catalog request [\#57](https://github.com/test-kitchen/vmware-vra-gem/pull/57) ([logicminds](https://github.com/logicminds))
|
138
|
+
- Adds the ability to dump catalog templates via class methods [\#56](https://github.com/test-kitchen/vmware-vra-gem/pull/56) ([logicminds](https://github.com/logicminds))
|
139
|
+
- Symbols [\#53](https://github.com/test-kitchen/vmware-vra-gem/pull/53) ([logicminds](https://github.com/logicminds))
|
107
140
|
|
108
|
-
## [v2.3.0](https://github.com/
|
109
|
-
|
141
|
+
## [v2.3.0](https://github.com/test-kitchen/vmware-vra-gem/tree/v2.3.0) (2017-06-30)
|
142
|
+
|
143
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v2.2.0...v2.3.0)
|
110
144
|
|
111
145
|
**Closed issues:**
|
112
146
|
|
113
|
-
- catalog\_request SSLError [\#30](https://github.com/
|
114
|
-
- Incompatible with vagrant 1.8+ \(at least\) [\#26](https://github.com/
|
147
|
+
- catalog\_request SSLError [\#30](https://github.com/test-kitchen/vmware-vra-gem/issues/30)
|
148
|
+
- Incompatible with vagrant 1.8+ \(at least\) [\#26](https://github.com/test-kitchen/vmware-vra-gem/issues/26)
|
115
149
|
|
116
150
|
**Merged pull requests:**
|
117
151
|
|
118
|
-
- Extra parameters [\#50](https://github.com/
|
119
|
-
- Initial Jenkinsfile for integration tests [\#49](https://github.com/
|
152
|
+
- Extra parameters [\#50](https://github.com/test-kitchen/vmware-vra-gem/pull/50) ([lloydsmithjr03](https://github.com/lloydsmithjr03))
|
153
|
+
- Initial Jenkinsfile for integration tests [\#49](https://github.com/test-kitchen/vmware-vra-gem/pull/49) ([jjasghar](https://github.com/jjasghar))
|
154
|
+
|
155
|
+
## [v2.2.0](https://github.com/test-kitchen/vmware-vra-gem/tree/v2.2.0) (2017-06-08)
|
120
156
|
|
121
|
-
|
122
|
-
[Full Changelog](https://github.com/chef-partners/vmware-vra-gem/compare/v2.1.3...v2.2.0)
|
157
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v2.1.3...v2.2.0)
|
123
158
|
|
124
159
|
**Closed issues:**
|
125
160
|
|
126
|
-
- usage of openssl raises error [\#45](https://github.com/
|
127
|
-
- why is chefstyle a runtime dependency? [\#44](https://github.com/
|
128
|
-
- Error when using set\_parameter and support for extra\_parameters [\#38](https://github.com/
|
161
|
+
- usage of openssl raises error [\#45](https://github.com/test-kitchen/vmware-vra-gem/issues/45)
|
162
|
+
- why is chefstyle a runtime dependency? [\#44](https://github.com/test-kitchen/vmware-vra-gem/issues/44)
|
163
|
+
- Error when using set\_parameter and support for extra\_parameters [\#38](https://github.com/test-kitchen/vmware-vra-gem/issues/38)
|
129
164
|
|
130
165
|
**Merged pull requests:**
|
131
166
|
|
132
|
-
- Fixes issue with chefstyle and unnecessary runtime dependency [\#48](https://github.com/
|
133
|
-
- adds ability to specify additional params to catalog request [\#47](https://github.com/
|
134
|
-
- Fixes \#45 - usage of openssl raises error [\#46](https://github.com/
|
167
|
+
- Fixes issue with chefstyle and unnecessary runtime dependency [\#48](https://github.com/test-kitchen/vmware-vra-gem/pull/48) ([logicminds](https://github.com/logicminds))
|
168
|
+
- adds ability to specify additional params to catalog request [\#47](https://github.com/test-kitchen/vmware-vra-gem/pull/47) ([logicminds](https://github.com/logicminds))
|
169
|
+
- Fixes \#45 - usage of openssl raises error [\#46](https://github.com/test-kitchen/vmware-vra-gem/pull/46) ([logicminds](https://github.com/logicminds))
|
170
|
+
|
171
|
+
## [v2.1.3](https://github.com/test-kitchen/vmware-vra-gem/tree/v2.1.3) (2017-03-28)
|
135
172
|
|
136
|
-
|
137
|
-
[Full Changelog](https://github.com/chef-partners/vmware-vra-gem/compare/v2.1.2...v2.1.3)
|
173
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v2.1.2...v2.1.3)
|
138
174
|
|
139
175
|
**Merged pull requests:**
|
140
176
|
|
141
|
-
- Fixing missing messages from some HTTP exceptions [\#43](https://github.com/
|
177
|
+
- Fixing missing messages from some HTTP exceptions [\#43](https://github.com/test-kitchen/vmware-vra-gem/pull/43) ([nsdavidson](https://github.com/nsdavidson))
|
142
178
|
|
143
|
-
## [v2.1.2](https://github.com/
|
144
|
-
|
179
|
+
## [v2.1.2](https://github.com/test-kitchen/vmware-vra-gem/tree/v2.1.2) (2017-03-28)
|
180
|
+
|
181
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v2.1.1...v2.1.2)
|
145
182
|
|
146
183
|
**Merged pull requests:**
|
147
184
|
|
148
|
-
- Updates extra\_params to check for top level props [\#42](https://github.com/
|
185
|
+
- Updates extra\_params to check for top level props [\#42](https://github.com/test-kitchen/vmware-vra-gem/pull/42) ([nsdavidson](https://github.com/nsdavidson))
|
186
|
+
|
187
|
+
## [v2.1.1](https://github.com/test-kitchen/vmware-vra-gem/tree/v2.1.1) (2017-03-14)
|
149
188
|
|
150
|
-
|
151
|
-
[Full Changelog](https://github.com/chef-partners/vmware-vra-gem/compare/v2.1.0...v2.1.1)
|
189
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v2.1.0...v2.1.1)
|
152
190
|
|
153
191
|
**Merged pull requests:**
|
154
192
|
|
155
|
-
- Converted to chefstyle [\#41](https://github.com/
|
193
|
+
- Converted to chefstyle [\#41](https://github.com/test-kitchen/vmware-vra-gem/pull/41) ([jjasghar](https://github.com/jjasghar))
|
194
|
+
|
195
|
+
## [v2.1.0](https://github.com/test-kitchen/vmware-vra-gem/tree/v2.1.0) (2017-03-14)
|
156
196
|
|
157
|
-
|
158
|
-
[Full Changelog](https://github.com/chef-partners/vmware-vra-gem/compare/v2.0.0...v2.1.0)
|
197
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v2.0.0...v2.1.0)
|
159
198
|
|
160
199
|
**Merged pull requests:**
|
161
200
|
|
162
|
-
- Added skips [\#40](https://github.com/
|
163
|
-
- Support extra params for vra7 [\#39](https://github.com/
|
201
|
+
- Added skips [\#40](https://github.com/test-kitchen/vmware-vra-gem/pull/40) ([jjasghar](https://github.com/jjasghar))
|
202
|
+
- Support extra params for vra7 [\#39](https://github.com/test-kitchen/vmware-vra-gem/pull/39) ([nsdavidson](https://github.com/nsdavidson))
|
164
203
|
|
165
|
-
## [v2.0.0](https://github.com/
|
166
|
-
[Full Changelog](https://github.com/chef-partners/vmware-vra-gem/compare/v2.0.0.pre2...v2.0.0)
|
204
|
+
## [v2.0.0](https://github.com/test-kitchen/vmware-vra-gem/tree/v2.0.0) (2016-12-15)
|
167
205
|
|
168
|
-
|
169
|
-
|
206
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v2.0.0.pre2...v2.0.0)
|
207
|
+
|
208
|
+
## [v2.0.0.pre2](https://github.com/test-kitchen/vmware-vra-gem/tree/v2.0.0.pre2) (2016-12-08)
|
209
|
+
|
210
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v2.0.0.pre1...v2.0.0.pre2)
|
170
211
|
|
171
212
|
**Closed issues:**
|
172
213
|
|
173
|
-
- \_\_Notes property does not work with vRA 7 [\#33](https://github.com/
|
214
|
+
- \_\_Notes property does not work with vRA 7 [\#33](https://github.com/test-kitchen/vmware-vra-gem/issues/33)
|
215
|
+
|
216
|
+
## [v2.0.0.pre1](https://github.com/test-kitchen/vmware-vra-gem/tree/v2.0.0.pre1) (2016-12-03)
|
174
217
|
|
175
|
-
|
176
|
-
[Full Changelog](https://github.com/chef-partners/vmware-vra-gem/compare/v1.7.0...v2.0.0.pre1)
|
218
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v1.7.0...v2.0.0.pre1)
|
177
219
|
|
178
220
|
**Merged pull requests:**
|
179
221
|
|
180
|
-
- 2.0.0.pre1 release [\#37](https://github.com/
|
181
|
-
- vRA 7.1 Support [\#36](https://github.com/
|
182
|
-
- Updated travis rubies [\#35](https://github.com/
|
183
|
-
- vra 7.0.1 compatibility [\#34](https://github.com/
|
222
|
+
- 2.0.0.pre1 release [\#37](https://github.com/test-kitchen/vmware-vra-gem/pull/37) ([jjasghar](https://github.com/jjasghar))
|
223
|
+
- vRA 7.1 Support [\#36](https://github.com/test-kitchen/vmware-vra-gem/pull/36) ([jjasghar](https://github.com/jjasghar))
|
224
|
+
- Updated travis rubies [\#35](https://github.com/test-kitchen/vmware-vra-gem/pull/35) ([jjasghar](https://github.com/jjasghar))
|
225
|
+
- vra 7.0.1 compatibility [\#34](https://github.com/test-kitchen/vmware-vra-gem/pull/34) ([stevehedrick](https://github.com/stevehedrick))
|
184
226
|
|
185
|
-
## [v1.7.0](https://github.com/
|
186
|
-
|
227
|
+
## [v1.7.0](https://github.com/test-kitchen/vmware-vra-gem/tree/v1.7.0) (2016-08-02)
|
228
|
+
|
229
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v1.6.1...v1.7.0)
|
187
230
|
|
188
231
|
**Merged pull requests:**
|
189
232
|
|
190
|
-
- v1.7.0 [\#32](https://github.com/
|
191
|
-
- instructing Net::HTTP not to verify SSL when verify\_ssl is false [\#31](https://github.com/
|
233
|
+
- v1.7.0 [\#32](https://github.com/test-kitchen/vmware-vra-gem/pull/32) ([jjasghar](https://github.com/jjasghar))
|
234
|
+
- instructing Net::HTTP not to verify SSL when verify\_ssl is false [\#31](https://github.com/test-kitchen/vmware-vra-gem/pull/31) ([bvandgrift](https://github.com/bvandgrift))
|
235
|
+
|
236
|
+
## [v1.6.1](https://github.com/test-kitchen/vmware-vra-gem/tree/v1.6.1) (2016-05-10)
|
237
|
+
|
238
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v1.6.0...v1.6.1)
|
192
239
|
|
193
|
-
## [v1.6.
|
194
|
-
[Full Changelog](https://github.com/chef-partners/vmware-vra-gem/compare/v1.6.0...v1.6.1)
|
240
|
+
## [v1.6.0](https://github.com/test-kitchen/vmware-vra-gem/tree/v1.6.0) (2016-05-10)
|
195
241
|
|
196
|
-
|
197
|
-
[Full Changelog](https://github.com/chef-partners/vmware-vra-gem/compare/v1.5.4...v1.6.0)
|
242
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v1.5.4...v1.6.0)
|
198
243
|
|
199
244
|
**Merged pull requests:**
|
200
245
|
|
201
|
-
- Remove rest-client dependency [\#28](https://github.com/
|
246
|
+
- Remove rest-client dependency [\#28](https://github.com/test-kitchen/vmware-vra-gem/pull/28) ([regularfry](https://github.com/regularfry))
|
202
247
|
|
203
|
-
## [v1.5.4](https://github.com/
|
204
|
-
|
248
|
+
## [v1.5.4](https://github.com/test-kitchen/vmware-vra-gem/tree/v1.5.4) (2016-04-27)
|
249
|
+
|
250
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v1.5.3...v1.5.4)
|
205
251
|
|
206
252
|
**Closed issues:**
|
207
253
|
|
208
|
-
- when org data is nil, knife vra barfs [\#27](https://github.com/
|
254
|
+
- when org data is nil, knife vra barfs [\#27](https://github.com/test-kitchen/vmware-vra-gem/issues/27)
|
209
255
|
|
210
256
|
**Merged pull requests:**
|
211
257
|
|
212
|
-
- Fixing potential NilClass errors [\#29](https://github.com/
|
258
|
+
- Fixing potential NilClass errors [\#29](https://github.com/test-kitchen/vmware-vra-gem/pull/29) ([adamleff](https://github.com/adamleff))
|
259
|
+
|
260
|
+
## [v1.5.3](https://github.com/test-kitchen/vmware-vra-gem/tree/v1.5.3) (2016-04-18)
|
213
261
|
|
214
|
-
|
215
|
-
[Full Changelog](https://github.com/chef-partners/vmware-vra-gem/compare/v1.5.2...v1.5.3)
|
262
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v1.5.2...v1.5.3)
|
216
263
|
|
217
264
|
**Closed issues:**
|
218
265
|
|
219
|
-
- fork of this gem [\#24](https://github.com/
|
220
|
-
- `Vra::Exception::HTTPError` initialized incorrectly [\#23](https://github.com/
|
266
|
+
- fork of this gem [\#24](https://github.com/test-kitchen/vmware-vra-gem/issues/24)
|
267
|
+
- `Vra::Exception::HTTPError` initialized incorrectly [\#23](https://github.com/test-kitchen/vmware-vra-gem/issues/23)
|
221
268
|
|
222
269
|
**Merged pull requests:**
|
223
270
|
|
224
|
-
- updating \#http\_head to use same http exception handling [\#25](https://github.com/
|
271
|
+
- updating \#http\_head to use same http exception handling [\#25](https://github.com/test-kitchen/vmware-vra-gem/pull/25) ([adamleff](https://github.com/adamleff))
|
272
|
+
|
273
|
+
## [v1.5.2](https://github.com/test-kitchen/vmware-vra-gem/tree/v1.5.2) (2016-04-01)
|
225
274
|
|
226
|
-
|
227
|
-
[Full Changelog](https://github.com/chef-partners/vmware-vra-gem/compare/v1.5.1...v1.5.2)
|
275
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v1.5.1...v1.5.2)
|
228
276
|
|
229
277
|
**Closed issues:**
|
230
278
|
|
231
|
-
- require 'json' missing from client.rb [\#21](https://github.com/
|
232
|
-
- request feeder file [\#20](https://github.com/
|
279
|
+
- require 'json' missing from client.rb [\#21](https://github.com/test-kitchen/vmware-vra-gem/issues/21)
|
280
|
+
- request feeder file [\#20](https://github.com/test-kitchen/vmware-vra-gem/issues/20)
|
233
281
|
|
234
282
|
**Merged pull requests:**
|
235
283
|
|
236
|
-
- use FFI\_Yajl::Encoder instead of \#to\_json [\#22](https://github.com/
|
284
|
+
- use FFI\_Yajl::Encoder instead of \#to\_json [\#22](https://github.com/test-kitchen/vmware-vra-gem/pull/22) ([adamleff](https://github.com/adamleff))
|
237
285
|
|
238
|
-
## [v1.5.1](https://github.com/
|
239
|
-
|
286
|
+
## [v1.5.1](https://github.com/test-kitchen/vmware-vra-gem/tree/v1.5.1) (2016-03-11)
|
287
|
+
|
288
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v1.5.0...v1.5.1)
|
240
289
|
|
241
290
|
**Closed issues:**
|
242
291
|
|
243
|
-
- Machine status is MachineActivated causing errors \(VRA7\) [\#18](https://github.com/
|
292
|
+
- Machine status is MachineActivated causing errors \(VRA7\) [\#18](https://github.com/test-kitchen/vmware-vra-gem/issues/18)
|
244
293
|
|
245
294
|
**Merged pull requests:**
|
246
295
|
|
247
|
-
- Support for MachineActivated state [\#19](https://github.com/
|
248
|
-
- fixing travis notifications [\#17](https://github.com/
|
249
|
-
- fixing new rubocop 0.36 complaints and testing travis [\#16](https://github.com/
|
296
|
+
- Support for MachineActivated state [\#19](https://github.com/test-kitchen/vmware-vra-gem/pull/19) ([stevehedrick](https://github.com/stevehedrick))
|
297
|
+
- fixing travis notifications [\#17](https://github.com/test-kitchen/vmware-vra-gem/pull/17) ([adamleff](https://github.com/adamleff))
|
298
|
+
- fixing new rubocop 0.36 complaints and testing travis [\#16](https://github.com/test-kitchen/vmware-vra-gem/pull/16) ([adamleff](https://github.com/adamleff))
|
299
|
+
|
300
|
+
## [v1.5.0](https://github.com/test-kitchen/vmware-vra-gem/tree/v1.5.0) (2015-11-18)
|
250
301
|
|
251
|
-
|
252
|
-
[Full Changelog](https://github.com/chef-partners/vmware-vra-gem/compare/v1.4.0...v1.5.0)
|
302
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v1.4.0...v1.5.0)
|
253
303
|
|
254
304
|
**Merged pull requests:**
|
255
305
|
|
256
|
-
- Add support for Infrastructure.Cloud resources [\#15](https://github.com/
|
306
|
+
- Add support for Infrastructure.Cloud resources [\#15](https://github.com/test-kitchen/vmware-vra-gem/pull/15) ([adamleff](https://github.com/adamleff))
|
307
|
+
|
308
|
+
## [v1.4.0](https://github.com/test-kitchen/vmware-vra-gem/tree/v1.4.0) (2015-11-13)
|
257
309
|
|
258
|
-
|
259
|
-
[Full Changelog](https://github.com/chef-partners/vmware-vra-gem/compare/v1.3.0...v1.4.0)
|
310
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v1.3.0...v1.4.0)
|
260
311
|
|
261
312
|
**Closed issues:**
|
262
313
|
|
263
|
-
- attr\_accessor :bearer\_token has to be changed due to PR \#9 change [\#12](https://github.com/
|
314
|
+
- attr\_accessor :bearer\_token has to be changed due to PR \#9 change [\#12](https://github.com/test-kitchen/vmware-vra-gem/issues/12)
|
264
315
|
|
265
316
|
**Merged pull requests:**
|
266
317
|
|
267
|
-
- Add accessors for bearer\_token [\#14](https://github.com/
|
318
|
+
- Add accessors for bearer\_token [\#14](https://github.com/test-kitchen/vmware-vra-gem/pull/14) ([adamleff](https://github.com/adamleff))
|
268
319
|
|
269
|
-
## [v1.3.0](https://github.com/
|
270
|
-
|
320
|
+
## [v1.3.0](https://github.com/test-kitchen/vmware-vra-gem/tree/v1.3.0) (2015-11-12)
|
321
|
+
|
322
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v1.2.0...v1.3.0)
|
271
323
|
|
272
324
|
**Merged pull requests:**
|
273
325
|
|
274
|
-
- Additional changes to support chef-provisoning-vra [\#13](https://github.com/
|
326
|
+
- Additional changes to support chef-provisoning-vra [\#13](https://github.com/test-kitchen/vmware-vra-gem/pull/13) ([adamleff](https://github.com/adamleff))
|
327
|
+
|
328
|
+
## [v1.2.0](https://github.com/test-kitchen/vmware-vra-gem/tree/v1.2.0) (2015-09-24)
|
275
329
|
|
276
|
-
|
277
|
-
[Full Changelog](https://github.com/chef-partners/vmware-vra-gem/compare/v1.1.0...v1.2.0)
|
330
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v1.1.0...v1.2.0)
|
278
331
|
|
279
332
|
**Closed issues:**
|
280
333
|
|
281
|
-
- bug in pagination at path "/catalog-service/api/consumer/resources?limit=20" duplicate machines returned [\#10](https://github.com/
|
334
|
+
- bug in pagination at path "/catalog-service/api/consumer/resources?limit=20" duplicate machines returned [\#10](https://github.com/test-kitchen/vmware-vra-gem/issues/10)
|
282
335
|
|
283
336
|
**Merged pull requests:**
|
284
337
|
|
285
|
-
- Allow setting of pagination page size, raise exception on duplicates [\#11](https://github.com/
|
338
|
+
- Allow setting of pagination page size, raise exception on duplicates [\#11](https://github.com/test-kitchen/vmware-vra-gem/pull/11) ([adamleff](https://github.com/adamleff))
|
339
|
+
|
340
|
+
## [v1.1.0](https://github.com/test-kitchen/vmware-vra-gem/tree/v1.1.0) (2015-09-17)
|
286
341
|
|
287
|
-
|
288
|
-
[Full Changelog](https://github.com/chef-partners/vmware-vra-gem/compare/v1.0.0...v1.1.0)
|
342
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v1.0.0...v1.1.0)
|
289
343
|
|
290
344
|
**Merged pull requests:**
|
291
345
|
|
292
|
-
- Adding masking of passwords in console output [\#9](https://github.com/
|
293
|
-
- Removing specific error class from \#validate\_client\_options test [\#8](https://github.com/
|
294
|
-
- README update - spaces update only [\#6](https://github.com/
|
346
|
+
- Adding masking of passwords in console output [\#9](https://github.com/test-kitchen/vmware-vra-gem/pull/9) ([adamleff](https://github.com/adamleff))
|
347
|
+
- Removing specific error class from \#validate\_client\_options test [\#8](https://github.com/test-kitchen/vmware-vra-gem/pull/8) ([adamleff](https://github.com/adamleff))
|
348
|
+
- README update - spaces update only [\#6](https://github.com/test-kitchen/vmware-vra-gem/pull/6) ([adamleff](https://github.com/adamleff))
|
295
349
|
|
296
|
-
## [v1.0.0](https://github.com/
|
297
|
-
|
350
|
+
## [v1.0.0](https://github.com/test-kitchen/vmware-vra-gem/tree/v1.0.0) (2015-08-07)
|
351
|
+
|
352
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v1.0.0.rc2...v1.0.0)
|
298
353
|
|
299
354
|
**Merged pull requests:**
|
300
355
|
|
301
|
-
- Release v1.0.0 [\#5](https://github.com/
|
356
|
+
- Release v1.0.0 [\#5](https://github.com/test-kitchen/vmware-vra-gem/pull/5) ([adamleff](https://github.com/adamleff))
|
357
|
+
|
358
|
+
## [v1.0.0.rc2](https://github.com/test-kitchen/vmware-vra-gem/tree/v1.0.0.rc2) (2015-07-30)
|
302
359
|
|
303
|
-
|
304
|
-
[Full Changelog](https://github.com/chef-partners/vmware-vra-gem/compare/v1.0.0.rc1...v1.0.0.rc2)
|
360
|
+
[Full Changelog](https://github.com/test-kitchen/vmware-vra-gem/compare/v1.0.0.rc1...v1.0.0.rc2)
|
305
361
|
|
306
362
|
**Merged pull requests:**
|
307
363
|
|
308
|
-
- Add resource ownership information [\#4](https://github.com/
|
364
|
+
- Add resource ownership information [\#4](https://github.com/test-kitchen/vmware-vra-gem/pull/4) ([adamleff](https://github.com/adamleff))
|
365
|
+
|
366
|
+
## [v1.0.0.rc1](https://github.com/test-kitchen/vmware-vra-gem/tree/v1.0.0.rc1) (2015-07-29)
|
309
367
|
|
310
|
-
## [v1.0.0.rc1](https://github.com/chef-partners/vmware-vra-gem/tree/v1.0.0.rc1) (2015-07-29)
|
311
368
|
**Closed issues:**
|
312
369
|
|
313
|
-
- general 500 server errors should generate better error messages [\#3](https://github.com/
|
314
|
-
- sanity-check the VRA base URL [\#2](https://github.com/
|
370
|
+
- general 500 server errors should generate better error messages [\#3](https://github.com/test-kitchen/vmware-vra-gem/issues/3)
|
371
|
+
- sanity-check the VRA base URL [\#2](https://github.com/test-kitchen/vmware-vra-gem/issues/2)
|
315
372
|
|
316
373
|
**Merged pull requests:**
|
317
374
|
|
318
|
-
- initial release [\#1](https://github.com/
|
319
|
-
|
320
|
-
|
321
|
-
|
322
|
-
\* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)*
|
375
|
+
- initial release [\#1](https://github.com/test-kitchen/vmware-vra-gem/pull/1) ([adamleff](https://github.com/adamleff))
|