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