scooter 0.0.0 → 3.2.19

Sign up to get free protection for your applications and to get access to all the features.
Files changed (47) hide show
  1. checksums.yaml +15 -0
  2. data/.env +5 -0
  3. data/.gitignore +47 -19
  4. data/Gemfile +3 -0
  5. data/HISTORY.md +1539 -0
  6. data/README.md +69 -10
  7. data/Rakefile +7 -0
  8. data/docs/http_dispatchers.md +79 -0
  9. data/lib/scooter.rb +11 -3
  10. data/lib/scooter/httpdispatchers.rb +12 -0
  11. data/lib/scooter/httpdispatchers/activity.rb +46 -0
  12. data/lib/scooter/httpdispatchers/activity/v1/v1.rb +50 -0
  13. data/lib/scooter/httpdispatchers/classifier.rb +376 -0
  14. data/lib/scooter/httpdispatchers/classifier/v1/v1.rb +99 -0
  15. data/lib/scooter/httpdispatchers/code_manager.rb +31 -0
  16. data/lib/scooter/httpdispatchers/code_manager/v1/v1.rb +17 -0
  17. data/lib/scooter/httpdispatchers/consoledispatcher.rb +132 -0
  18. data/lib/scooter/httpdispatchers/httpdispatcher.rb +168 -0
  19. data/lib/scooter/httpdispatchers/orchestrator/v1/v1.rb +87 -0
  20. data/lib/scooter/httpdispatchers/orchestratordispatcher.rb +83 -0
  21. data/lib/scooter/httpdispatchers/puppetdb/v4/v4.rb +51 -0
  22. data/lib/scooter/httpdispatchers/puppetdbdispatcher.rb +390 -0
  23. data/lib/scooter/httpdispatchers/rbac.rb +231 -0
  24. data/lib/scooter/httpdispatchers/rbac/v1/directory_service.rb +68 -0
  25. data/lib/scooter/httpdispatchers/rbac/v1/v1.rb +116 -0
  26. data/lib/scooter/ldap.rb +349 -0
  27. data/lib/scooter/ldap/ldap_fixtures.rb +60 -0
  28. data/lib/scooter/middleware/rbac_auth_token.rb +35 -0
  29. data/lib/scooter/utilities.rb +9 -0
  30. data/lib/scooter/utilities/beaker_utilities.rb +41 -0
  31. data/lib/scooter/utilities/string_utilities.rb +32 -0
  32. data/lib/scooter/version.rb +3 -1
  33. data/scooter.gemspec +23 -6
  34. data/spec/scooter/beaker_utilities_spec.rb +53 -0
  35. data/spec/scooter/httpdispatchers/activity/activity_spec.rb +218 -0
  36. data/spec/scooter/httpdispatchers/classifier/classifier_spec.rb +542 -0
  37. data/spec/scooter/httpdispatchers/code_manager/code-manager_spec.rb +67 -0
  38. data/spec/scooter/httpdispatchers/consoledispatcher_spec.rb +80 -0
  39. data/spec/scooter/httpdispatchers/httpdispatcher_spec.rb +91 -0
  40. data/spec/scooter/httpdispatchers/middleware/rbac_auth_token_spec.rb +58 -0
  41. data/spec/scooter/httpdispatchers/orchestratordispatcher_spec.rb +195 -0
  42. data/spec/scooter/httpdispatchers/puppetdbdispatcher_spec.rb +246 -0
  43. data/spec/scooter/httpdispatchers/rbac/rbac_spec.rb +387 -0
  44. data/spec/scooter/string_utilities_spec.rb +83 -0
  45. data/spec/spec_helper.rb +8 -0
  46. metadata +270 -18
  47. data/LICENSE.txt +0 -15
checksums.yaml ADDED
@@ -0,0 +1,15 @@
1
+ ---
2
+ !binary "U0hBMQ==":
3
+ metadata.gz: !binary |-
4
+ ZGQzZTkxYjgwMmE5MGU1MTAyOTg0MzEzZmIxMTY2Y2FlYTRlMjEyMQ==
5
+ data.tar.gz: !binary |-
6
+ YmZhZTU3YWNkNjE3YTljZDE2MGE1MTIzZDczMWE0ZDA1ZWE3YzliMQ==
7
+ SHA512:
8
+ metadata.gz: !binary |-
9
+ NTIwMWM4YTkwYjEzN2ZlOTJmNzk1MmI2MTMxNzIyMGMxMzIwY2JmYTEwNDk1
10
+ YjAzZmMyOTJjNDYyMzRhOTRlOWI2Mjk5ODc4NDVkNGQ2N2IxMzkyMjgyZDNm
11
+ N2NiNjA3NjhlZmViYjg5ZjVjYzk0ZDAxMDk5NmQxYTg4OTJlNjc=
12
+ data.tar.gz: !binary |-
13
+ MWNmNTQ4MDQ0YjYwZjUwNmJjNDhiM2QxNGZkODkwNTIyMjQ0NjdjMTM1ZTk2
14
+ MTcwNjg3ZTMwN2E0NjkwMzI3YzEzNWIwYTY4YTZjNzI3MzFmMTZjODU2YzA4
15
+ MzI0OGFmMWRiNGYxZjkxZWU2ZDVkMjZhZDRmNGQ2Y2FkNzk3M2Y=
data/.env ADDED
@@ -0,0 +1,5 @@
1
+ export BEAKER_PE_DIR=http://neptune.puppetlabs.lan/2016.5/ci-ready/
2
+ export PE_RBAC_SERVICE_SHA1=master
3
+ export PE_RBAC_SERVICE_GITHUB_USER=puppetlabs
4
+ export CLASSIFIER_SHA1=master
5
+ export CLASSIFIER_GITHUB_USER=puppetlabs
data/.gitignore CHANGED
@@ -1,22 +1,50 @@
1
1
  *.gem
2
2
  *.rbc
3
- .bundle
4
- .config
5
- .yardoc
3
+ /.config
4
+ /coverage/
5
+ /InstalledFiles
6
+ /pkg/
7
+ /spec/reports/
8
+ /test/tmp/
9
+ /test/version_tmp/
10
+ /tmp/
11
+
12
+ ## Specific to RubyMotion/RubyMine/IntelliJ:
13
+ .dat*
14
+ .repl_history
15
+ build/
16
+ /.idea/
17
+
18
+ ## Documentation cache and generated files:
19
+ /.yardoc/
20
+ /_yardoc/
21
+ /doc/
22
+ /rdoc/
23
+
24
+ ## Environment normalisation:
25
+ /.bundle/
26
+ /lib/bundler/man/
27
+
28
+ # for a library or gem, you might want to ignore these files since the code is
29
+ # intended to run in multiple environments; otherwise, check them in:
30
+ # Gemfile.lock
31
+ # .ruby-version
32
+ # .ruby-gemset
33
+
34
+ # unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
35
+ .rvmrc
36
+
37
+ # log files
38
+ *.log
39
+
40
+ # generated fixtures
41
+ spec/fixtures
42
+
43
+ # keys for eyaml
44
+ keys
45
+ hieradata/*.eyaml
46
+
6
47
  Gemfile.lock
7
- InstalledFiles
8
- _yardoc
9
- coverage
10
- doc/
11
- lib/bundler/man
12
- pkg
13
- rdoc
14
- spec/reports
15
- test/tmp
16
- test/version_tmp
17
- tmp
18
- *.bundle
19
- *.so
20
- *.o
21
- *.a
22
- mkmf.log
48
+ Gemfile.local
49
+
50
+ /graphs
data/Gemfile CHANGED
@@ -1,4 +1,7 @@
1
1
  source 'https://rubygems.org'
2
+ #this will probably not be available on rubygems, at least initially
3
+ #will probably be only available at https://rubygems.delivery.puppetlabs.net
4
+ #TODO: Change this line when it is actually available internally
2
5
 
3
6
  # Specify your gem's dependencies in scooter.gemspec
4
7
  gemspec
data/HISTORY.md ADDED
@@ -0,0 +1,1539 @@
1
+ # default - History
2
+ ## Tags
3
+ * [LATEST - 26 Oct, 2016 (9ecf11fe)](#LATEST)
4
+ * [3.2.18 - 17 Oct, 2016 (7f704a74)](#3.2.18)
5
+ * [3.2.17 - 29 Sep, 2016 (532a4f4a)](#3.2.17)
6
+ * [3.2.16 - 26 Sep, 2016 (febe204c)](#3.2.16)
7
+ * [3.2.15 - 23 Sep, 2016 (4877e1a2)](#3.2.15)
8
+ * [3.2.14 - 16 Sep, 2016 (08f79ca9)](#3.2.14)
9
+ * [3.2.13 - 14 Sep, 2016 (a92fa5a9)](#3.2.13)
10
+ * [3.2.12 - 12 Jul, 2016 (0c39c3db)](#3.2.12)
11
+ * [3.2.11 - 11 Jul, 2016 (0ff8959d)](#3.2.11)
12
+ * [3.2.10 - 20 Jun, 2016 (e5670032)](#3.2.10)
13
+ * [3.2.9 - 14 Jun, 2016 (cb49ee1f)](#3.2.9)
14
+ * [3.2.8 - 10 Jun, 2016 (4b1157bb)](#3.2.8)
15
+ * [3.2.7 - 10 Jun, 2016 (1458e11f)](#3.2.7)
16
+ * [3.2.6 - 9 Jun, 2016 (c7545f8d)](#3.2.6)
17
+ * [3.2.5 - 26 Feb, 2016 (af4f1447)](#3.2.5)
18
+ * [3.2.4 - 13 Nov, 2015 (60cb7ad6)](#3.2.4)
19
+ * [3.2.3 - 20 Oct, 2015 (91992188)](#3.2.3)
20
+ * [3.2.2 - 5 Oct, 2015 (6bc7e636)](#3.2.2)
21
+ * [3.2.1 - 28 Sep, 2015 (c50045f4)](#3.2.1)
22
+ * [3.2.0 - 22 Sep, 2015 (af6200dd)](#3.2.0)
23
+ * [3.1.2 - 14 Sep, 2015 (87de4129)](#3.1.2)
24
+ * [3.1.1 - 8 Sep, 2015 (a7bc092b)](#3.1.1)
25
+ * [3.1.0 - 4 Sep, 2015 (88954e48)](#3.1.0)
26
+ * [3.0.0 - 24 Aug, 2015 (ca7de665)](#3.0.0)
27
+ * [2.4.1 - 19 Aug, 2015 (999bb34b)](#2.4.1)
28
+ * [2.4.0 - 11 Aug, 2015 (5436f473)](#2.4.0)
29
+ * [2.3.1 - 28 Jul, 2015 (4803c55a)](#2.3.1)
30
+ * [2.3.0 - 21 Jul, 2015 (84ae1fbe)](#2.3.0)
31
+ * [2.2 - 15 Jun, 2015 (7c4645e9)](#2.2)
32
+ * [2.1.1 - 10 Jun, 2015 (6878cb4b)](#2.1.1)
33
+ * [2.1.0 - 14 May, 2015 (ce963c12)](#2.1.0)
34
+ * [2.0.1 - 13 May, 2015 (cba48153)](#2.0.1)
35
+ * [2.0.0 - 6 May, 2015 (99e32b38)](#2.0.0)
36
+ * [1.0.0 - 6 May, 2015 (4d701cbd)](#1.0.0)
37
+ * [0.1.4 - 1 Apr, 2015 (0899ec46)](#0.1.4)
38
+ * [0.1.3 - 24 Mar, 2015 (3bd68890)](#0.1.3)
39
+ * [0.1.2 - 20 Mar, 2015 (15d98713)](#0.1.2)
40
+ * [0.1.1 - 18 Mar, 2015 (8ba3e185)](#0.1.1)
41
+ * [0.1.0 - 17 Mar, 2015 (ac1abd5b)](#0.1.0)
42
+ * [0.0.2 - 5 Mar, 2015 (977d4eac)](#0.0.2)
43
+ * [0.0.1 - 25 Feb, 2015 (0ac45ec9)](#0.0.1)
44
+ * [0.0.0 - 22 Dec, 2014 (9307ec38)](#0.0.0)
45
+
46
+ ## Details
47
+ ### <a name = "LATEST">LATEST - 26 Oct, 2016 (9ecf11fe)
48
+
49
+ * (GEM) update scooter version to 3.2.19 (9ecf11fe)
50
+
51
+ * Merge pull request #90 from cwcowellshah/pe-18117_fix_facts_sync_tests (6ac05a41)
52
+
53
+
54
+ ```
55
+ Merge pull request #90 from cwcowellshah/pe-18117_fix_facts_sync_tests
56
+
57
+ PE-18117 fix facts sync helper method
58
+ ```
59
+ * PE-18117 fix facts sync helper method (2c9430a2)
60
+
61
+ ### <a name = "3.2.18">3.2.18 - 17 Oct, 2016 (7f704a74)
62
+
63
+ * (HISTORY) update scooter history for gem release 3.2.18 (7f704a74)
64
+
65
+ * (GEM) update scooter version to 3.2.18 (36422c16)
66
+
67
+ * Merge pull request #89 from cwcowellshah/fix_puppetdb_sync_check (c5e9e44e)
68
+
69
+
70
+ ```
71
+ Merge pull request #89 from cwcowellshah/fix_puppetdb_sync_check
72
+
73
+ fix PuppetDB sync checking code, and micro-fixes
74
+ ```
75
+ * Merge pull request #88 from zreichert/maint/master/add_status_endpoint_for_orchestrator (11f99912)
76
+
77
+
78
+ ```
79
+ Merge pull request #88 from zreichert/maint/master/add_status_endpoint_for_orchestrator
80
+
81
+ Maint/master/add status endpoint for orchestrator
82
+ ```
83
+ * Merge pull request #86 from samwoods1/maint_ruby_2_fix (6732743d)
84
+
85
+
86
+ ```
87
+ Merge pull request #86 from samwoods1/maint_ruby_2_fix
88
+
89
+ (maint) attempt to fix Scooter issue in pipeline
90
+ ```
91
+ * fix PuppetDB sync checking code, and micro-fixes (7eb56bdc)
92
+
93
+ * Merge pull request #87 from zreichert/feature/master/ORCH-1542_add_inventory_endpoint_to_scooter (568762c4)
94
+
95
+
96
+ ```
97
+ Merge pull request #87 from zreichert/feature/master/ORCH-1542_add_inventory_endpoint_to_scooter
98
+
99
+ (ORCH-1542) add orchestrator/inventory endpoints
100
+ ```
101
+ * (MAINT) add status endpoint for orchestrator (871dd003)
102
+
103
+ * (MAINT) abstract orchestrator verison into module initialize (4f54a17b)
104
+
105
+ * (ORCH-1542) add orchestrator/inventory endpoints (eb6acdf2)
106
+
107
+ * (maint) attempt to fix Scooter issue in pipeline (609dc24f)
108
+
109
+ ### <a name = "3.2.17">3.2.17 - 29 Sep, 2016 (532a4f4a)
110
+
111
+ * (HISTORY) update scooter history for gem release 3.2.17 (532a4f4a)
112
+
113
+ * (GEM) update scooter version to 3.2.17 (32122c3a)
114
+
115
+ * Merge pull request #82 from cwcowellshah/fix_comparing_rbac_dbs (13f55363)
116
+
117
+
118
+ ```
119
+ Merge pull request #82 from cwcowellshah/fix_comparing_rbac_dbs
120
+
121
+ PE-16632 verify matching RBAC roles more accurately
122
+ ```
123
+ * Merge pull request #85 from samwoods1/update_pe_ver (1de604a8)
124
+
125
+
126
+ ```
127
+ Merge pull request #85 from samwoods1/update_pe_ver
128
+
129
+ (maint) update pe version to current everett
130
+ ```
131
+ * (maint) update pe version to current everett (bba1ce99)
132
+
133
+ * verify matching RBAC roles more accurately (797efa04)
134
+
135
+ ### <a name = "3.2.16">3.2.16 - 26 Sep, 2016 (febe204c)
136
+
137
+ * (HISTORY) update scooter history for gem release 3.2.16 (febe204c)
138
+
139
+ * (GEM) update scooter version to 3.2.16 (1f060b4d)
140
+
141
+ * Merge pull request #84 from tvpartytonight/maint_loosen_beaker_dependency (d5910783)
142
+
143
+
144
+ ```
145
+ Merge pull request #84 from tvpartytonight/maint_loosen_beaker_dependency
146
+
147
+ (maint) loosen beaker dependency
148
+ ```
149
+ * Merge pull request #83 from zreichert/maint/master/fix_orchestratordispatcher_spec_tests (3e2ccaaa)
150
+
151
+
152
+ ```
153
+ Merge pull request #83 from zreichert/maint/master/fix_orchestratordispatcher_spec_tests
154
+
155
+ (MAINT) fix OrchestratorDispatcher spec tests
156
+ ```
157
+ * (maint) loosen beaker dependency (c38bb6e0)
158
+
159
+
160
+ ```
161
+ (maint) loosen beaker dependency
162
+
163
+ Now that beaker 3.0.0 is out and available, we need to loosen this
164
+ strict on the beaker major of 2.
165
+ ```
166
+ * (MAINT) fix OrchestratorDispatcher spec tests (0c9458c5)
167
+
168
+ ### <a name = "3.2.15">3.2.15 - 23 Sep, 2016 (4877e1a2)
169
+
170
+ * (HISTORY) update scooter history for gem release 3.2.15 (4877e1a2)
171
+
172
+ * (GEM) update scooter version to 3.2.15 (a77b57b2)
173
+
174
+ * Merge pull request #81 from zreichert/maint/master/update_orchestrator_endpoints (3ab67f1a)
175
+
176
+
177
+ ```
178
+ Merge pull request #81 from zreichert/maint/master/update_orchestrator_endpoints
179
+
180
+ (MAINT) move url prefix to orchestrator v1
181
+ ```
182
+ * (MAINT) fix typo in orchestrator dispatcher (322aaa93)
183
+
184
+ ### <a name = "3.2.14">3.2.14 - 16 Sep, 2016 (08f79ca9)
185
+
186
+ * (HISTORY) update scooter history for gem release 3.2.14 (08f79ca9)
187
+
188
+ * (GEM) update scooter version to 3.2.14 (191abc06)
189
+
190
+ * Merge pull request #80 from cwcowellshah/ignore_timestamps_when_comparing_dbs (e3615708)
191
+
192
+
193
+ ```
194
+ Merge pull request #80 from cwcowellshah/ignore_timestamps_when_comparing_dbs
195
+
196
+ make db comparison logic more granular and allow certain fields (like…
197
+ ```
198
+ * make db comparison logic more granular and allow certain fields (like timestamps) to differ when comparing (ebf7d7fc)
199
+
200
+ * Merge pull request #75 from pcarlisle/silence-certs (79743e75)
201
+
202
+
203
+ ```
204
+ Merge pull request #75 from pcarlisle/silence-certs
205
+
206
+ (maint) Don't print certs all the time
207
+ ```
208
+ * (maint) Don't print certs all the time (ed07ff43)
209
+
210
+ ### <a name = "3.2.13">3.2.13 - 14 Sep, 2016 (a92fa5a9)
211
+
212
+ * (HISTORY) update scooter history for gem release 3.2.13 (a92fa5a9)
213
+
214
+ * (GEM) update scooter version to 3.2.13 (36d4e676)
215
+
216
+ * Merge pull request #79 from lucywyman/lucyw/delete-role (d400f3e6)
217
+
218
+
219
+ ```
220
+ Merge pull request #79 from lucywyman/lucyw/delete-role
221
+
222
+ (PE-17083) Add endpoint to delete user role
223
+ ```
224
+ * Add rspec tests for delete_role method (27282dd9)
225
+
226
+ * Add delete_role_by_name (4c3e75f2)
227
+
228
+ * Fix indent (9a1547a2)
229
+
230
+ * Add endpoint to delete user role (a130379e)
231
+
232
+ ### <a name = "3.2.12">3.2.12 - 12 Jul, 2016 (0c39c3db)
233
+
234
+ * (HISTORY) update scooter history for gem release 3.2.12 (0c39c3db)
235
+
236
+ * (GEM) update scooter version to 3.2.12 (743d2b00)
237
+
238
+ * Merge pull request #78 from samwoods1/logging (bc20f038)
239
+
240
+
241
+ ```
242
+ Merge pull request #78 from samwoods1/logging
243
+
244
+ (maint) Fix comparison methods since replica has different certs
245
+ ```
246
+ * (maint) Fix comparison methods since replica has different certs, remove more logging (b6147dfb)
247
+
248
+ ### <a name = "3.2.11">3.2.11 - 11 Jul, 2016 (0ff8959d)
249
+
250
+ * (HISTORY) update scooter history for gem release 3.2.11 (0ff8959d)
251
+
252
+ * (GEM) update scooter version to 3.2.11 (a052297b)
253
+
254
+ * Merge pull request #77 from samwoods1/logging (572374f7)
255
+
256
+
257
+ ```
258
+ Merge pull request #77 from samwoods1/logging
259
+
260
+ (maint) Remove noise from db comparison methods
261
+ ```
262
+ * (maint) Remove noise from db comparison methods (543653f9)
263
+
264
+ * Merge pull request #76 from pcarlisle/log-http-body (75bea8cd)
265
+
266
+
267
+ ```
268
+ Merge pull request #76 from pcarlisle/log-http-body
269
+
270
+ (maint) Log http bodies at debug and trace
271
+ ```
272
+ * (maint) Log http bodies at debug and trace (506b3802)
273
+
274
+
275
+ ```
276
+ (maint) Log http bodies at debug and trace
277
+
278
+ This was set to log at verbose and trace, which was an error since debug sits
279
+ between these levels.
280
+ ```
281
+ ### <a name = "3.2.10">3.2.10 - 20 Jun, 2016 (e5670032)
282
+
283
+ * (HISTORY) update scooter history for gem release 3.2.10 (e5670032)
284
+
285
+ * (GEM) update scooter version to 3.2.10 (5374ca5e)
286
+
287
+ * Merge pull request #74 from samwoods1/maint (450bd886)
288
+
289
+
290
+ ```
291
+ Merge pull request #74 from samwoods1/maint
292
+
293
+ (maint) Reverting method name change to fix failing tests
294
+ ```
295
+ * (maint) Reverting method name change to fix failing tests (d86ee60b)
296
+
297
+ ### <a name = "3.2.9">3.2.9 - 14 Jun, 2016 (cb49ee1f)
298
+
299
+ * (HISTORY) update scooter history for gem release 3.2.9 (cb49ee1f)
300
+
301
+ * (GEM) update scooter version to 3.2.9 (0ae9dad6)
302
+
303
+ * Merge pull request #73 from samwoods1/db_comparison_methods (abed1bf5)
304
+
305
+
306
+ ```
307
+ Merge pull request #73 from samwoods1/db_comparison_methods
308
+
309
+ Add activity db comparison methods and specs
310
+ ```
311
+ * Add activity db comparison methods and specs (70d02d13)
312
+
313
+ ### <a name = "3.2.8">3.2.8 - 10 Jun, 2016 (4b1157bb)
314
+
315
+ * (HISTORY) update scooter history for gem release 3.2.8 (4b1157bb)
316
+
317
+ * (GEM) update scooter version to 3.2.8 (e777cc91)
318
+
319
+ * Merge pull request #72 from samwoods1/set_log_level (a8551098)
320
+
321
+
322
+ ```
323
+ Merge pull request #72 from samwoods1/set_log_level
324
+
325
+ (QA-2518) Add ability to set log level, use beaker level if available
326
+ ```
327
+ * (QA-2518) Add ability to set log level, and use beaker log level if available (692890a2)
328
+
329
+ ### <a name = "3.2.7">3.2.7 - 10 Jun, 2016 (1458e11f)
330
+
331
+ * (HISTORY) update scooter history for gem release 3.2.7 (1458e11f)
332
+
333
+ * (GEM) update scooter version to 3.2.7 (5346dff2)
334
+
335
+ * Merge pull request #71 from samwoods1/db_comparison_methods (970204d5)
336
+
337
+
338
+ ```
339
+ Merge pull request #71 from samwoods1/db_comparison_methods
340
+
341
+ (PE-15708) Add DB comparison methods for RBAC and Classifier
342
+ ```
343
+ * (PE-15708) Add DB comparison methods for RBAC and Classifier (c1245620)
344
+
345
+ ### <a name = "3.2.6">3.2.6 - 9 Jun, 2016 (c7545f8d)
346
+
347
+ * (HISTORY) update scooter history for gem release 3.2.6 (c7545f8d)
348
+
349
+ * (GEM) update scooter version to 3.2.6 (363eee29)
350
+
351
+ * Merge pull request #70 from zreichert/feature/master/ORCH-1350_command_endpoints_for_AO (b2cc8e35)
352
+
353
+
354
+ ```
355
+ Merge pull request #70 from zreichert/feature/master/ORCH-1350_command_endpoints_for_AO
356
+
357
+ (ORCH-1350) add command endpoints to scooter for AO
358
+ ```
359
+ * (ORCH-1350) add command endpoints to scooter for AO (46db4a73)
360
+
361
+ * Merge pull request #69 from zreichert/feature/master/ORCH-1351_environments_enpoints_for_AO (1eabddf3)
362
+
363
+
364
+ ```
365
+ Merge pull request #69 from zreichert/feature/master/ORCH-1351_environments_enpoints_for_AO
366
+
367
+ (ORCH-1351) add environment endpoints for AO
368
+ ```
369
+ * (ORCH-1351) add environment endpoints for AO (0f3272fb)
370
+
371
+ * Merge pull request #68 from zreichert/feature/master/ORCH-1349_jobs_endpoints_for_AO (2b4d9484)
372
+
373
+
374
+ ```
375
+ Merge pull request #68 from zreichert/feature/master/ORCH-1349_jobs_endpoints_for_AO
376
+
377
+ (ORCH-1349) add jobs endpoints for Application Orchestration
378
+ ```
379
+ * (ORCH-1349) add jobs endpoints for Application Orchestration (4d306c76)
380
+
381
+ * Update README.md (380f8ecb)
382
+
383
+ * Merge pull request #65 from samwoods1/add_puppetdb_compare (be6f9965)
384
+
385
+
386
+ ```
387
+ Merge pull request #65 from samwoods1/add_puppetdb_compare
388
+
389
+ Add more endpoints, add methods to compare puppetdb instances
390
+ ```
391
+ * Add more endpoints, add methods to compare puppetdb instances (c7a5fe6d)
392
+
393
+ * Merge pull request #64 from samwoods1/add_puppetdb_dispatcher (d0fb9791)
394
+
395
+
396
+ ```
397
+ Merge pull request #64 from samwoods1/add_puppetdb_dispatcher
398
+
399
+ Add puppetdb dispactcher with query_nodes endpoint
400
+ ```
401
+ * Add puppetdb dispactcher with query_nodes endpoint (b3af86dd)
402
+
403
+ * Merge pull request #63 from samwoods1/pin_and_unpin (f18bbbe3)
404
+
405
+
406
+ ```
407
+ Merge pull request #63 from samwoods1/pin_and_unpin
408
+
409
+ Add pin and unpin endpoints to classifier dispatcher
410
+ ```
411
+ * Add pin and unpin endpoints to classifier dispatcher (15bd1c5c)
412
+
413
+ * Merge pull request #62 from jonathannewman/maint-moar-login-characters-pleeeze (a767eaa0)
414
+
415
+
416
+ ```
417
+ Merge pull request #62 from jonathannewman/maint-moar-login-characters-pleeeze
418
+
419
+ (maint) avoid login collisions by using more random characters
420
+ ```
421
+ * (maint) avoid login collisions by using more random characters (b30615f2)
422
+
423
+
424
+ ```
425
+ (maint) avoid login collisions by using more random characters
426
+
427
+ Occasionally the rbac integration tests are failing because the db is not cleared out between tests. Attempts to create duplicate local users causes unexpected failures.
428
+
429
+ Change the number of characters used for display name, email and login to be larger to attempt to avoid collisions.
430
+ ```
431
+ ### <a name = "3.2.5">3.2.5 - 26 Feb, 2016 (af4f1447)
432
+
433
+ * (HISTORY) update scooter history for gem release 3.2.5 (af4f1447)
434
+
435
+ * (GEM) update scooter version to 3.2.5 (467c672c)
436
+
437
+ * Merge pull request #60 from samwoods1/update_classes_environment (c95f7e48)
438
+
439
+
440
+ ```
441
+ Merge pull request #60 from samwoods1/update_classes_environment
442
+
443
+ Adding environment param to update_classes endpoint
444
+ ```
445
+ * Merge pull request #61 from objectverbobject/change_env_to_2016.1 (308e656d)
446
+
447
+
448
+ ```
449
+ Merge pull request #61 from objectverbobject/change_env_to_2016.1
450
+
451
+ (MAINT) Change test beaker_pe_dir to 2016.1
452
+ ```
453
+ * Merge pull request #58 from objectverbobject/add_upper_bound_for_ldap_version (80cf7967)
454
+
455
+
456
+ ```
457
+ Merge pull request #58 from objectverbobject/add_upper_bound_for_ldap_version
458
+
459
+ (QENG-3460) Add upper bound for net-ldap dependency
460
+ ```
461
+ * (MAINT) Change test beaker_pe_dir to 2016.1 (6a8234c5)
462
+
463
+ * Adding environment param to update_classes endpoint (845fa03e)
464
+
465
+ * (QENG-3460) Add upper bound for net-ldap dependency (b94422f5)
466
+
467
+
468
+ ```
469
+ (QENG-3460) Add upper bound for net-ldap dependency
470
+
471
+ New versions of the net-ldap gem, after version 0.12.1, require ruby 2.0
472
+ or greater. This PR adds that version as the upper bound for scooter, so
473
+ it can run on ruby 1.9.3 systems.
474
+ ```
475
+ ### <a name = "3.2.4">3.2.4 - 13 Nov, 2015 (60cb7ad6)
476
+
477
+ * (HISTORY) update scooter history for gem release 3.2.4 (60cb7ad6)
478
+
479
+ * (GEM) update scooter version to 3.2.4 (1ea3c082)
480
+
481
+ * Merge pull request #57 from objectverbobject/add_ldap_group_data_search (7e1b829e)
482
+
483
+
484
+ ```
485
+ Merge pull request #57 from objectverbobject/add_ldap_group_data_search
486
+
487
+ (maint) Add functionality to find rbac groups by name
488
+ ```
489
+ * (maint) Add functionality to find rbac groups by name (5ae9c541)
490
+
491
+
492
+ ```
493
+ (maint) Add functionality to find rbac groups by name
494
+
495
+ This change allows for simple retrieval of an rbac group's status based
496
+ on the 'login' or name of the group.
497
+ ```
498
+ ### <a name = "3.2.3">3.2.3 - 20 Oct, 2015 (91992188)
499
+
500
+ * (HISTORY) update scooter history for gem release 3.2.3 (91992188)
501
+
502
+ * (GEM) update scooter version to 3.2.3 (45f22c39)
503
+
504
+ * Merge pull request #56 from zreichert/update_deploy_all (6070262b)
505
+
506
+
507
+ ```
508
+ Merge pull request #56 from zreichert/update_deploy_all
509
+
510
+ (CODEMGMT-407) Update deploy-all payload
511
+ ```
512
+ * (CODEMGMT-407) Update deploy-all payload (90ad2e5e)
513
+
514
+ ### <a name = "3.2.2">3.2.2 - 5 Oct, 2015 (6bc7e636)
515
+
516
+ * (HISTORY) update scooter history for gem release 3.2.2 (6bc7e636)
517
+
518
+ * (GEM) update scooter version to 3.2.2 (97fb102f)
519
+
520
+ * Merge pull request #55 from zreichert/code_manager_wait (05804f21)
521
+
522
+
523
+ ```
524
+ Merge pull request #55 from zreichert/code_manager_wait
525
+
526
+ Add wait argument to CodeManager methods
527
+ ```
528
+ * add wait arguement to CodeManager (0fa46bdd)
529
+
530
+ ### <a name = "3.2.1">3.2.1 - 28 Sep, 2015 (c50045f4)
531
+
532
+ * (HISTORY) update scooter history for gem release 3.2.1 (c50045f4)
533
+
534
+ * (GEM) update scooter version to 3.2.1 (040c5723)
535
+
536
+ * Merge pull request #54 from pcarlisle/pe-11925-rename-expiry-to-lifetime (6e83394b)
537
+
538
+
539
+ ```
540
+ Merge pull request #54 from pcarlisle/pe-11925-rename-expiry-to-lifetime
541
+
542
+ (PE-11925) Rename expiry to lifetime for rbac tokens
543
+ ```
544
+ * (PE-11925) Rename expiry to lifetime for rbac tokens (456b438b)
545
+
546
+ ### <a name = "3.2.0">3.2.0 - 22 Sep, 2015 (af6200dd)
547
+
548
+ * (HISTORY) update scooter history for gem release 3.2.0 (af6200dd)
549
+
550
+ * (GEM) update scooter version to 3.2.0 (92b0eca0)
551
+
552
+ * Merge pull request #53 from objectverbobject/add_middleware_for_https (5a5b1be4)
553
+
554
+
555
+ ```
556
+ Merge pull request #53 from objectverbobject/add_middleware_for_https
557
+
558
+ (PE-12084) Ensure URIs are subclassed from URI::HTTPS
559
+ ```
560
+ * (PE-12084) Ensure URIs are subclassed from URI::HTTPS (66171bb2)
561
+
562
+
563
+ ```
564
+ (PE-12084) Ensure URIs are subclassed from URI::HTTPS
565
+
566
+ The http-cookie library used by faraday cookie-jar relies on the ancient
567
+ text of http-cookie, which has not received an update for over two
568
+ years. That cookie library erroneously demanded that all URIs must be
569
+ subclassed from URI::HTTPS, not accepting a URI::HTTP object with a
570
+ scheme set to https. This change hardcodes all the httpdispatchers to
571
+ use URI::HTTPS objects for the url_prefix. This should have zero effect
572
+ on other middleware, as URI::HTTPS is just a subclass of URI::HTTP.
573
+ ```
574
+ ### <a name = "3.1.2">3.1.2 - 14 Sep, 2015 (87de4129)
575
+
576
+ * (HISTORY) update scooter history for gem release 3.1.2 (87de4129)
577
+
578
+ * (GEM) update scooter version to 3.1.2 (78853bd7)
579
+
580
+ * Merge pull request #52 from zreichert/update_token_location (6f902d5d)
581
+
582
+
583
+ ```
584
+ Merge pull request #52 from zreichert/update_token_location
585
+
586
+ move token to base httpdispatcher class
587
+ ```
588
+ * Merge pull request #51 from objectverbobject/add_rbac_group_helpers (bc948eea)
589
+
590
+
591
+ ```
592
+ Merge pull request #51 from objectverbobject/add_rbac_group_helpers
593
+
594
+ (maint) Add missing groups rbac method
595
+ ```
596
+ * move token to base httpdispatcher class (b555b794)
597
+
598
+ * (maint) Add missing groups rbac method (7d61dc16)
599
+
600
+
601
+ ```
602
+ (maint) Add missing groups rbac method
603
+
604
+ In the import of helpers, the groups endpoint was missed; this PR just
605
+ adds that functionality to the rbac/v1 module.
606
+ ```
607
+ ### <a name = "3.1.1">3.1.1 - 8 Sep, 2015 (a7bc092b)
608
+
609
+ * (HISTORY) update scooter history for gem release 3.1.1 (a7bc092b)
610
+
611
+ * (GEM) update scooter version to 3.1.1 (312df756)
612
+
613
+ * Merge pull request #49 from objectverbobject/add_token_expiry_parameter (da3485fd)
614
+
615
+
616
+ ```
617
+ Merge pull request #49 from objectverbobject/add_token_expiry_parameter
618
+
619
+ Add optional expiry parameter to token acquisition
620
+ ```
621
+ * Add optional expiry parameter to token acquisition (4a23b57d)
622
+
623
+
624
+ ```
625
+ Add optional expiry parameter to token acquisition
626
+
627
+ The RBAC auth token endpoint now takes an optional expiry parameter;
628
+ this change allows for that paramter to be exposed by the relevant rbac
629
+ and v1 methods.
630
+ ```
631
+ ### <a name = "3.1.0">3.1.0 - 4 Sep, 2015 (88954e48)
632
+
633
+ * (HISTORY) update scooter history for gem release 3.1.0 (88954e48)
634
+
635
+ * (GEM) update scooter version to 3.1.0 (3c0435b6)
636
+
637
+ * Merge pull request #48 from zreichert/update_code-manager_port (d0364c70)
638
+
639
+
640
+ ```
641
+ Merge pull request #48 from zreichert/update_code-manager_port
642
+
643
+ Update Code-Manager port to 8170
644
+ ```
645
+ * Update Code-Manager port to 8170 (bd025326)
646
+
647
+ ### <a name = "3.0.0">3.0.0 - 24 Aug, 2015 (ca7de665)
648
+
649
+ * (HISTORY) update scooter history for gem release 3.0.0 (ca7de665)
650
+
651
+ * (GEM) update scooter version to 3.0.0 (0e35b8a6)
652
+
653
+ * Merge pull request #47 from objectverbobject/update_routes_for_ankeny (451a3633)
654
+
655
+
656
+ ```
657
+ Merge pull request #47 from objectverbobject/update_routes_for_ankeny
658
+
659
+ (QA-1980) Remove routes to pe-console-middlware proxies
660
+ ```
661
+ * (QA-1980) Remove routes to pe-console-middlware proxies (2cbbca4b)
662
+
663
+
664
+ ```
665
+ (QA-1980) Remove routes to pe-console-middlware proxies
666
+
667
+ Now that the routes have been relaxed in Ankeny, we can send all traffic
668
+ to the services directly and not rely on the pe-console-middleware to
669
+ proxy web sessions.
670
+ ```
671
+ ### <a name = "2.4.1">2.4.1 - 19 Aug, 2015 (999bb34b)
672
+
673
+ * (HISTORY) update scooter history for gem release 2.4.1 (999bb34b)
674
+
675
+ * (GEM) update scooter version to 2.4.1 (d3dd0fce)
676
+
677
+ * Merge pull request #46 from objectverbobject/rearrange_middleware_stack (e7550a98)
678
+
679
+
680
+ ```
681
+ Merge pull request #46 from objectverbobject/rearrange_middleware_stack
682
+
683
+ Rearrange middleware stack
684
+ ```
685
+ * (maint) Add spec test for new middleware order (091557d1)
686
+
687
+
688
+ ```
689
+ (maint) Add spec test for new middleware order
690
+
691
+ This spec test ensures that Faraday::ClientError exceptions have
692
+ correctly formatted bodies in their responses. In effect, this test
693
+ ensures that the middleware processes the body before letting the
694
+ :raise_error middleware bubble up the exception.
695
+ ```
696
+ * (maint) move require to module level (a1a90ffc)
697
+
698
+
699
+ ```
700
+ (maint) move require to module level
701
+
702
+ The require for the CodeManager was wrapped in the HttpDispatcher class;
703
+ this should be require at the module level to allow for any mixins
704
+ outside of the HttpDispatcher.
705
+ ```
706
+ * (maint) parse json in middleware before throwing errors (d58dc78f)
707
+
708
+
709
+ ```
710
+ (maint) parse json in middleware before throwing errors
711
+
712
+ If you attempted to rescue Faraday::ClientErrors in tests, the bodies of
713
+ responses would not get parsed in the error object. This change allows
714
+ the json to parse into a ruby hash so that introspection of the response
715
+ object is simpler when rescuing Faraday::ClientErrors.
716
+ ```
717
+ ### <a name = "2.4.0">2.4.0 - 11 Aug, 2015 (5436f473)
718
+
719
+ * (HISTORY) update scooter history for gem release 2.4.0 (5436f473)
720
+
721
+ * (GEM) update scooter version to 2.4.0 (b9c7cb0d)
722
+
723
+ * Merge pull request #44 from objectverbobject/improve_rbac_methods (40f15b10)
724
+
725
+
726
+ ```
727
+ Merge pull request #44 from objectverbobject/improve_rbac_methods
728
+
729
+ (QA-1969) Add token support to Scooter
730
+ ```
731
+ * Merge pull request #43 from zreichert/code_manager (1cbc8117)
732
+
733
+
734
+ ```
735
+ Merge pull request #43 from zreichert/code_manager
736
+
737
+ Code manager
738
+ ```
739
+ * (CODEMGMT-302) replace dash with underscore (bd80b94c)
740
+
741
+ * (CODEMGMT-302) Create CodeManager module (88125425)
742
+
743
+ * Merge pull request #45 from objectverbobject/update_pe_dir (7cdfefb8)
744
+
745
+
746
+ ```
747
+ Merge pull request #45 from objectverbobject/update_pe_dir
748
+
749
+ (maint) update jenkins beaker_pe_dir
750
+ ```
751
+ * (maint) update jenkins beaker_pe_dir (7b86e14f)
752
+
753
+ * (CODEMGMT-302) add CodeManager to HttpDispatchers (76e798ea)
754
+
755
+ * (QA-1969) Add token support to Scooter (997f704d)
756
+
757
+
758
+ ```
759
+ (QA-1969) Add token support to Scooter
760
+
761
+ In Ankeny, RBAC now supports acquiring tokens through a new endpoint
762
+ provided by RBAC. This PR extends the RBAC modules and
763
+ ConsoleDispatcher to allow for a new 'token' instance variable that can
764
+ be set; if the token is set, console dispatchers will attempt to use it
765
+ in the request and set the correct routes, directly to the API.
766
+ ```
767
+ ### <a name = "2.3.1">2.3.1 - 28 Jul, 2015 (4803c55a)
768
+
769
+ * (HISTORY) update scooter history for gem release 2.3.1 (4803c55a)
770
+
771
+ * (GEM) update scooter version to 2.3.1 (042b1cbc)
772
+
773
+ * Merge pull request #42 from objectverbobject/QA-1943/fix_ou_creation (f8699ff8)
774
+
775
+
776
+ ```
777
+ Merge pull request #42 from objectverbobject/QA-1943/fix_ou_creation
778
+
779
+ (QA-1943) Add method for ou's created during old init
780
+ ```
781
+ * (QA-1943) Add method for ou's created during old init (1813f5ea)
782
+
783
+
784
+ ```
785
+ (QA-1943) Add method for ou's created during old init
786
+
787
+ A previous commit moved the organizational unit creation from the init
788
+ to the base method to generate a test environment of users and groups
789
+ for RBAC; this broke any implementation not using that method to
790
+ generate a test environment.
791
+
792
+ This doesn't add that back, as putting this action in the init was a
793
+ mistake; it does, however, give the user the ability to create the ou's
794
+ independently, and set the instance variables accordingly.
795
+ ```
796
+ ### <a name = "2.3.0">2.3.0 - 21 Jul, 2015 (84ae1fbe)
797
+
798
+ * (HISTORY) update scooter history for gem release 2.3.0 (84ae1fbe)
799
+
800
+ * (GEM) update scooter version to 2.3.0 (8de59de2)
801
+
802
+ * Merge pull request #41 from objectverbobject/QA-1937/create_base_httpdispatcher_class (3cfdcab9)
803
+
804
+
805
+ ```
806
+ Merge pull request #41 from objectverbobject/QA-1937/create_base_httpdispatcher_class
807
+
808
+ (QA-1937) Create base httpdispatcher
809
+ ```
810
+ * Merge pull request #40 from objectverbobject/refactor_ldapdispatcher (bda5be50)
811
+
812
+
813
+ ```
814
+ Merge pull request #40 from objectverbobject/refactor_ldapdispatcher
815
+
816
+ Refactor ldapdispatcher
817
+ ```
818
+ * (QA-1937) Create base httpdispatcher (71630c30)
819
+
820
+
821
+ ```
822
+ (QA-1937) Create base httpdispatcher
823
+
824
+ Prior to this commit, the only real dispatcher available was the
825
+ consoledispatcher. The consoledispatcher had much of the base methods
826
+ defined in itself, which needed to be pulled out and put into another
827
+ class that all other dispatcher classes should be subclassing. This PR
828
+ creates a base httpdispatcher, making it more straightfoward to
829
+ subclass the httpdispatcher class and build different dispatching
830
+ objects.
831
+ ```
832
+ * (maint) fix bug with attach_ds_to_rbac (52244b1b)
833
+
834
+
835
+ ```
836
+ (maint) fix bug with attach_ds_to_rbac
837
+
838
+ A bug existed in the implementation of this method; if no ldapdispatcher
839
+ was provided, the local var settings would not be set and you would get
840
+ an uninitialized error for settings. This change fixes that issue so you
841
+ can supply an options hash with any set of directory_service parameters
842
+ you want.
843
+ ```
844
+ * (maint) remove conditional ldap base logic (c1fdc861)
845
+
846
+
847
+ ```
848
+ (maint) remove conditional ldap base logic
849
+
850
+ In a previous build, the ldap dispatcher used a new base_dn for windows;
851
+ a new fixture has been created and this no longer needs to be
852
+ conditional per openldap or active directory.
853
+ ```
854
+ * Merge pull request #39 from objectverbobject/refactor_ldapdispatcher (921deee2)
855
+
856
+
857
+ ```
858
+ Merge pull request #39 from objectverbobject/refactor_ldapdispatcher
859
+
860
+ (QA-1926) Refactor LDAPDispatcher
861
+ ```
862
+ * (QA-1926) Refactor LDAPDispatcher (63bb82fa)
863
+
864
+
865
+ ```
866
+ (QA-1926) Refactor LDAPDispatcher
867
+
868
+ This commit changes the LDAPDispatcher to make less assumptions about
869
+ the directory service object and allow for more settings to be adjusted,
870
+ such as the user and password settings.
871
+ ```
872
+ * Merge pull request #38 from objectverbobject/fix_version_numbering (0f610643)
873
+
874
+
875
+ ```
876
+ Merge pull request #38 from objectverbobject/fix_version_numbering
877
+
878
+ (maint) fix bad version number
879
+ ```
880
+ * (maint) fix bad version number (54b37ddf)
881
+
882
+
883
+ ```
884
+ (maint) fix bad version number
885
+
886
+ Tony accidently pushed 2.2 instead of 2.2.0 to the internal mirror; this
887
+ commit just fixes the bump so that the release pipeline doesn't break
888
+ when trying to parse the 2.2 version.
889
+ ```
890
+ ### <a name = "2.2">2.2 - 15 Jun, 2015 (7c4645e9)
891
+
892
+ * (HISTORY) update scooter history for gem release 2.2 (7c4645e9)
893
+
894
+ * (GEM) update scooter version to 2.2 (ba8647c8)
895
+
896
+ * Merge pull request #31 from pcarlisle/fix-ruby-2.2 (07e4e8e2)
897
+
898
+
899
+ ```
900
+ Merge pull request #31 from pcarlisle/fix-ruby-2.2
901
+
902
+ (maint) Fix optional arguments for ruby 2.2
903
+ ```
904
+ * Merge pull request #37 from objectverbobject/moar_rbac_helpers (cd55f50a)
905
+
906
+
907
+ ```
908
+ Merge pull request #37 from objectverbobject/moar_rbac_helpers
909
+
910
+ Moar rbac helpers
911
+ ```
912
+ * Add more RBAC helpers (0e274ac8)
913
+
914
+
915
+ ```
916
+ Add more RBAC helpers
917
+
918
+ This adds methods to generate local users and roles. Previously, the
919
+ logic to create a local user was embedded into the v1 module, which was
920
+ not the correct location for it. The method has been moved to the Rbac
921
+ module and renamed generate_local_user.
922
+
923
+ While this is a breaking change, none of the tests actually used that
924
+ method, and so it can be safely erased.
925
+ ```
926
+ * (maint) fix acquire_xcsrf to clear the prefix path (4221cb45)
927
+
928
+ * (maint) Fix optional arguments for ruby 2.2 (febef0fc)
929
+
930
+
931
+ ```
932
+ (maint) Fix optional arguments for ruby 2.2
933
+
934
+ As of ruby 2.2 it's no longer possible to assign a default value in an
935
+ argument from an outer scope method of the same name.
936
+
937
+ e.g.
938
+
939
+ def foo
940
+ 10
941
+ end
942
+
943
+ def bar(foo=foo)
944
+ puts foo
945
+ end
946
+
947
+ In ruby 2.1 this prints 10, in ruby 2.2 a blank line as foo is nil.
948
+ ```
949
+ ### <a name = "2.1.1">2.1.1 - 10 Jun, 2015 (6878cb4b)
950
+
951
+ * (HISTORY) update scooter history for gem release 2.1.1 (6878cb4b)
952
+
953
+ * (GEM) update scooter version to 2.1.1 (416a5c4f)
954
+
955
+ * Merge pull request #34 from objectverbobject/separate_signin_and_xcsrf_token (767b196f)
956
+
957
+
958
+ ```
959
+ Merge pull request #34 from objectverbobject/separate_signin_and_xcsrf_token
960
+
961
+ (QA-1925) Change signin to not autoacquire xcsrf
962
+ ```
963
+ * Merge pull request #35 from anodelman/master (951e3775)
964
+
965
+
966
+ ```
967
+ Merge pull request #35 from anodelman/master
968
+
969
+ (MAINT) set pe_rbac_service based upon scooter branch
970
+ ```
971
+ * (MAINT) set pe_rbac_service based upon scooter branch (34e4d15c)
972
+
973
+ * (QA-1925) Change signin to not autoacquire xcsrf (c40d3e8d)
974
+
975
+
976
+ ```
977
+ (QA-1925) Change signin to not autoacquire xcsrf
978
+
979
+ The console used to not have a console view permission, allowing any
980
+ authenticated entity view access; This allowed any user to acquire an
981
+ xcsrf token after successful login.
982
+
983
+ The signin method still tries to acquire the XCSRF token, but catches
984
+ failures if the dispatcher does not have view access to the console.
985
+ ```
986
+ * Merge pull request #33 from anodelman/split-pipeline-master (55ee8517)
987
+
988
+
989
+ ```
990
+ Merge pull request #33 from anodelman/split-pipeline-master
991
+
992
+ (QENG-2382) scooter pipeline needs to install different pe depending...
993
+ ```
994
+ * (QENG-2382) scooter pipeline needs to install different pe depending... (98958ca7)
995
+
996
+
997
+ ```
998
+ (QENG-2382) scooter pipeline needs to install different pe depending...
999
+
1000
+ ...on target branch
1001
+
1002
+ - create .env file with branch appropriate testing information
1003
+ ```
1004
+ ### <a name = "2.1.0">2.1.0 - 14 May, 2015 (ce963c12)
1005
+
1006
+ * (HISTORY) update scooter history for gem release 2.1.0 (ce963c12)
1007
+
1008
+ * (GEM) update scooter version to 2.1.0 (ddf63d73)
1009
+
1010
+ * Merge pull request #30 from rick/docs/update-README (03439b5e)
1011
+
1012
+
1013
+ ```
1014
+ Merge pull request #30 from rick/docs/update-README
1015
+
1016
+ Import confluence documentation
1017
+ ```
1018
+ * Merge pull request #29 from rick/feature/add-find_or_create_node_group_model (1b6d3e40)
1019
+
1020
+
1021
+ ```
1022
+ Merge pull request #29 from rick/feature/add-find_or_create_node_group_model
1023
+
1024
+ Add `#find_or_create_node_group_model`
1025
+ ```
1026
+ * Import confluence documentation (2d7cdecb)
1027
+
1028
+
1029
+ ```
1030
+ Import confluence documentation
1031
+
1032
+ This commit brings in the confluence documentation for Scooter into the
1033
+ `README.md`, and creates a new `docs/` folder for some of the class-level
1034
+ documentation.
1035
+ ```
1036
+ * (QENG-2120) Add `#find_or_create_node_group_model` (34a5384c)
1037
+
1038
+
1039
+ ```
1040
+ (QENG-2120) Add `#find_or_create_node_group_model`
1041
+
1042
+ In https://github.com/puppetlabs/pe_acceptance_tests/pull/614 we locally
1043
+ introduced a `#find_or_create_node_group_model` method on the dispatcher
1044
+ classifier module. This allows us to re-run tests which create node groups in
1045
+ the classifier, without causing errors due to duplicate node groups in an
1046
+ environment.
1047
+
1048
+ This commit brings that method back to `Scooter::HttpDispatchers::Classifier`.
1049
+ ```
1050
+ ### <a name = "2.0.1">2.0.1 - 13 May, 2015 (cba48153)
1051
+
1052
+ * (HISTORY) update scooter history for gem release 2.0.1 (cba48153)
1053
+
1054
+ * (GEM) update scooter version to 2.0.1 (5265b3bb)
1055
+
1056
+ * Merge pull request #28 from objectverbobject/add_readme_link (81070779)
1057
+
1058
+
1059
+ ```
1060
+ Merge pull request #28 from objectverbobject/add_readme_link
1061
+
1062
+ (maint) Add link to README.md to confluence
1063
+ ```
1064
+ * Merge pull request #27 from objectverbobject/merge_stable (019f05e0)
1065
+
1066
+
1067
+ ```
1068
+ Merge pull request #27 from objectverbobject/merge_stable
1069
+
1070
+ (maint) Merge stable
1071
+ ```
1072
+ * (maint) Add link to README.md to confluence (e7542509)
1073
+
1074
+
1075
+ ```
1076
+ (maint) Add link to README.md to confluence
1077
+
1078
+ This is a temporary link that will exist until the confluence
1079
+ documentation is imported into the Scooter repository.
1080
+ ```
1081
+ * Merge remote-tracking branch 'upstream/stable' into merge_stable (1d604238)
1082
+
1083
+
1084
+ ```
1085
+ Merge remote-tracking branch 'upstream/stable' into merge_stable
1086
+
1087
+ Merge in fix for beaker change to object inheritance for Windows::Host
1088
+ object.
1089
+ ```
1090
+ * Merge pull request #26 from objectverbobject/fix_LDAP_host_logic (32955080)
1091
+
1092
+
1093
+ ```
1094
+ Merge pull request #26 from objectverbobject/fix_LDAP_host_logic
1095
+
1096
+ (maint) fix ldap host logic to work with beaker 2.11.0
1097
+ ```
1098
+ * (maint) fix ldap host logic to work with beaker 2.11.0 (91df2cd1)
1099
+
1100
+
1101
+ ```
1102
+ (maint) fix ldap host logic to work with beaker 2.11.0
1103
+
1104
+ Beaker 2.11.0 introduced a change in the object inheritance for the
1105
+ Windows::Host object, making it inherit from Unix::Host. This commit
1106
+ changes the order of checks in the ldapdispatcher object, making it
1107
+ check for Windows first before checking if it is a Unix::Host.
1108
+ ```
1109
+ ### <a name = "2.0.0">2.0.0 - 6 May, 2015 (99e32b38)
1110
+
1111
+ * (GEM) update scooter version to 2.0.0 (99e32b38)
1112
+
1113
+ * Merge pull request #25 from anodelman/cherry (2c82eef1)
1114
+
1115
+
1116
+ ```
1117
+ Merge pull request #25 from anodelman/cherry
1118
+
1119
+ Update paths for non-cert rbac and classifier requests
1120
+ ```
1121
+ * Update paths for non-cert rbac and classifier requests (d83aed0c)
1122
+
1123
+
1124
+ ```
1125
+ Update paths for non-cert rbac and classifier requests
1126
+
1127
+ This updates the paths to match the new routing for PE 4.0
1128
+ ```
1129
+ ### <a name = "1.0.0">1.0.0 - 6 May, 2015 (4d701cbd)
1130
+
1131
+ * (GEM) update scooter version to 1.0.0 (4d701cbd)
1132
+
1133
+ * Merge pull request #20 from zreichert/utilities-spec-tests (1c5d081c)
1134
+
1135
+
1136
+ ```
1137
+ Merge pull request #20 from zreichert/utilities-spec-tests
1138
+
1139
+ Spec tests for Beaker Utilities
1140
+ ```
1141
+ * Tests for BeakerUtilities (00befbe6)
1142
+
1143
+ * Tests for SrtingUtilities (4b608f31)
1144
+
1145
+ * enhanced gitignore, development dependencies, spec_helper (355cdfa7)
1146
+
1147
+ ### <a name = "0.1.4">0.1.4 - 1 Apr, 2015 (0899ec46)
1148
+
1149
+ * (GEM) update scooter version to 0.1.4 (0899ec46)
1150
+
1151
+ * Merge pull request #22 from anodelman/pipeline (8f1b504c)
1152
+
1153
+
1154
+ ```
1155
+ Merge pull request #22 from anodelman/pipeline
1156
+
1157
+ (QENG-2020) scooter + additional mini-gem pipelines
1158
+ ```
1159
+ * (QENG-2020) scooter + additional mini-gem pipelines (4495ee3a)
1160
+
1161
+
1162
+ ```
1163
+ (QENG-2020) scooter + additional mini-gem pipelines
1164
+
1165
+ - standardized version module format
1166
+ ```
1167
+ * Merge pull request #21 from zreichert/two-byte-string-fix (ecb4cb8d)
1168
+
1169
+
1170
+ ```
1171
+ Merge pull request #21 from zreichert/two-byte-string-fix
1172
+
1173
+ update method to use two byte cyrillic characters
1174
+ ```
1175
+ * update method to use two byte cyrillic characters (4294f8c7)
1176
+
1177
+ * Merge pull request #19 from objectverbobject/bumpery (0777187e)
1178
+
1179
+
1180
+ ```
1181
+ Merge pull request #19 from objectverbobject/bumpery
1182
+
1183
+ Bump version to 0.1.3
1184
+ ```
1185
+ ### <a name = "0.1.3">0.1.3 - 24 Mar, 2015 (3bd68890)
1186
+
1187
+ * Bump version to 0.1.3 (3bd68890)
1188
+
1189
+
1190
+ ```
1191
+ Bump version to 0.1.3
1192
+
1193
+ This version contains new fixes for acquiring IP's for ec2 instances.
1194
+ ```
1195
+ * Merge pull request #18 from ericwilliamson/bug/master/farady-use-reachable-name (9b723a34)
1196
+
1197
+
1198
+ ```
1199
+ Merge pull request #18 from ericwilliamson/bug/master/farady-use-reachable-name
1200
+
1201
+ (maint) Be explicit about ip vs reachable name
1202
+ ```
1203
+ * Update beaker_utilities.rb (a2146794)
1204
+
1205
+
1206
+ ```
1207
+ Update beaker_utilities.rb
1208
+
1209
+ Changed self.ip to host.ip
1210
+ ```
1211
+ * Properly set the ssl connection variable (00b08c63)
1212
+
1213
+ * Create new beaker method for ec2 public ip (d8caa744)
1214
+
1215
+
1216
+ ```
1217
+ Create new beaker method for ec2 public ip
1218
+
1219
+ Beaker and ec2 don't play nice with getting the public ip. It is only
1220
+ set during initial provision and can be over-ridden. If you also have to
1221
+ run the script several times, or are using an existing set of nodes for
1222
+ testing, beaker has no way to get the ec2 instanes public ip address,
1223
+ mostly because the box it self does not expose it anywhere. According
1224
+ to the docs, you can curl the below to get it
1225
+ http://docs.aws.amazon.com/AWSEC2/latest/UserGuide/using-instance-addressing.html
1226
+ ```
1227
+ * (maint) Be explicit about ip vs reachable name (c91aab3c)
1228
+
1229
+
1230
+ ```
1231
+ (maint) Be explicit about ip vs reachable name
1232
+
1233
+ Previous to this commit, we were using beakers `reachable_hostname`
1234
+ which should return ip then hostname. However on ec2, this behavior was
1235
+ different between machines. This commit makes it explicit that we are
1236
+ checking if the hostname is resolvable, if not, use the ip address.
1237
+ ```
1238
+ * Merge pull request #17 from objectverbobject/bumpity (444a0db7)
1239
+
1240
+
1241
+ ```
1242
+ Merge pull request #17 from objectverbobject/bumpity
1243
+
1244
+ Bump version for reachable name bug fixes
1245
+ ```
1246
+ ### <a name = "0.1.2">0.1.2 - 20 Mar, 2015 (15d98713)
1247
+
1248
+ * Bump version for reachable name bug fixes (15d98713)
1249
+
1250
+
1251
+ ```
1252
+ Bump version for reachable name bug fixes
1253
+
1254
+ Version 0.1.2 adds logic to test the resolvability of the dashboard and
1255
+ uses reachable_name if necessary, plus a bug fix for update-classes.
1256
+ ```
1257
+ * Merge pull request #16 from ericwilliamson/bug/master/farady-use-reachable-name (6bf8df1d)
1258
+
1259
+
1260
+ ```
1261
+ Merge pull request #16 from ericwilliamson/bug/master/farady-use-reachable-name
1262
+
1263
+ Bug/master/farady use reachable name
1264
+ ```
1265
+ * Disable ssl verification when using a Unix::Host (6eb1750c)
1266
+
1267
+
1268
+ ```
1269
+ Disable ssl verification when using a Unix::Host
1270
+
1271
+ Previous to this commit, when passed a Unix::Host (a beaker object) to
1272
+ connect to, scooter would reach to and talk to the API via the IP
1273
+ address. However this will fail since the URL we are talking to (the
1274
+ ip) is not on the cert name.
1275
+ This commit disables SSL CA verification for now until a better fix can
1276
+ be found.
1277
+ ```
1278
+ * Set classifier path for update_classes endpoint (610f1d28)
1279
+
1280
+
1281
+ ```
1282
+ Set classifier path for update_classes endpoint
1283
+
1284
+ Previous to this commit, the `update_classes` endpoint in the classifier
1285
+ API was not calling `set_classifier_path` resulting in the code going to
1286
+ `https://dashboard/v1/update_classes` instead of the api url.
1287
+ This commit fixes it by adding the `set_classifier_path` to the method.
1288
+ This should probably be fixed more broadly so each method does not need
1289
+ to call that method.
1290
+ ```
1291
+ * Merge pull request #15 from objectverbobject/bumper (d57399d0)
1292
+
1293
+
1294
+ ```
1295
+ Merge pull request #15 from objectverbobject/bumper
1296
+
1297
+ Bump version for reachable_name
1298
+ ```
1299
+ ### <a name = "0.1.1">0.1.1 - 18 Mar, 2015 (8ba3e185)
1300
+
1301
+ * Bump version for reachable_name (8ba3e185)
1302
+
1303
+
1304
+ ```
1305
+ Bump version for reachable_name
1306
+
1307
+ This will be in version 0.1.1.
1308
+ ```
1309
+ * Merge pull request #14 from ericwilliamson/bug/master/farady-use-reachable-name (6f53e078)
1310
+
1311
+
1312
+ ```
1313
+ Merge pull request #14 from ericwilliamson/bug/master/farady-use-reachable-name
1314
+
1315
+ (maint) use reachable_name for farady connection
1316
+ ```
1317
+ * (maint) use reachable_name for farady connection (5c574204)
1318
+
1319
+
1320
+ ```
1321
+ (maint) use reachable_name for farady connection
1322
+
1323
+ Previous to this commit, the farady connection method was just using
1324
+ `@dashboard`. However, beaker returns the node_name by default. This
1325
+ works so long as the dashboard host is in your `/etc/hosts` file.
1326
+ This commit changes it to use `dashboard.reachable_name` - which
1327
+ defaults to IP address then hostname and is what beaker uses to
1328
+ establish an ssh connection.
1329
+ ```
1330
+ * Merge pull request #12 from objectverbobject/pe_3_series (8adc5448)
1331
+
1332
+
1333
+ ```
1334
+ Merge pull request #12 from objectverbobject/pe_3_series
1335
+
1336
+ Bump version to major y release
1337
+ ```
1338
+ ### <a name = "0.1.0">0.1.0 - 17 Mar, 2015 (ac1abd5b)
1339
+
1340
+ * Bump version to major y release (ac1abd5b)
1341
+
1342
+
1343
+ ```
1344
+ Bump version to major y release
1345
+
1346
+ 0.1.x will support PE 3.7 and PE 3.8. 0.2.x will support PE 4.0 and will
1347
+ live on a separate branch.
1348
+ ```
1349
+ * Merge pull request #11 from objectverbobject/version_bump2 (fc036845)
1350
+
1351
+
1352
+ ```
1353
+ Merge pull request #11 from objectverbobject/version_bump2
1354
+
1355
+ Version bump to 0.0.2
1356
+ ```
1357
+ ### <a name = "0.0.2">0.0.2 - 5 Mar, 2015 (977d4eac)
1358
+
1359
+ * Version bump to 0.0.2 (977d4eac)
1360
+
1361
+
1362
+ ```
1363
+ Version bump to 0.0.2
1364
+
1365
+ Version bump for internal release.
1366
+ ```
1367
+ * Merge pull request #10 from ericwilliamson/bug/master/remove-httparty-require (6c2c83b0)
1368
+
1369
+
1370
+ ```
1371
+ Merge pull request #10 from ericwilliamson/bug/master/remove-httparty-require
1372
+
1373
+ (maint) remove httparty require
1374
+ ```
1375
+ * Merge pull request #9 from objectverbobject/improve_ds_teardown_methods (6bc83c20)
1376
+
1377
+
1378
+ ```
1379
+ Merge pull request #9 from objectverbobject/improve_ds_teardown_methods
1380
+
1381
+ Improve ds teardown methods
1382
+ ```
1383
+ * (maint) remove httparty require (4836fa8c)
1384
+
1385
+
1386
+ ```
1387
+ (maint) remove httparty require
1388
+
1389
+ Since scooter now uses farady, it no longer requires httparty. This
1390
+ commit removes a left over `require httparty`.
1391
+ ```
1392
+ * Improve ds teardown methods (1b6982be)
1393
+
1394
+
1395
+ ```
1396
+ Improve ds teardown methods
1397
+
1398
+ This wraps the methods that delete groups and users per test into a
1399
+ single invocations.
1400
+ ```
1401
+ * Merge pull request #8 from objectverbobject/version_bump (3b383bd5)
1402
+
1403
+
1404
+ ```
1405
+ Merge pull request #8 from objectverbobject/version_bump
1406
+
1407
+ Bump to version 0.0.1
1408
+ ```
1409
+ * Merge pull request #7 from objectverbobject/fix_delete_all_node_groups (4e2a219e)
1410
+
1411
+
1412
+ ```
1413
+ Merge pull request #7 from objectverbobject/fix_delete_all_node_groups
1414
+
1415
+ Fix broken delete_all_node_groups
1416
+ ```
1417
+ * Fix broken delete_all_node_groups (b17e33f7)
1418
+
1419
+
1420
+ ```
1421
+ Fix broken delete_all_node_groups
1422
+
1423
+ The method broke because it passed in a uuid instead of a node group
1424
+ model.
1425
+ ```
1426
+ ### <a name = "0.0.1">0.0.1 - 25 Feb, 2015 (0ac45ec9)
1427
+
1428
+ * Bump to version 0.0.1 (0ac45ec9)
1429
+
1430
+
1431
+ ```
1432
+ Bump to version 0.0.1
1433
+
1434
+ Version bump for release to internal mirror.
1435
+ ```
1436
+ * Merge pull request #6 from objectverbobject/reorder_middleware (d8c7ae5c)
1437
+
1438
+
1439
+ ```
1440
+ Merge pull request #6 from objectverbobject/reorder_middleware
1441
+
1442
+ Fix middleware logger ordering
1443
+ ```
1444
+ * Merge pull request #5 from objectverbobject/expand_nc_functionality (bf8dd1e8)
1445
+
1446
+
1447
+ ```
1448
+ Merge pull request #5 from objectverbobject/expand_nc_functionality
1449
+
1450
+ Add NC methods
1451
+ ```
1452
+ * Fix middleware logger ordering (5c058e27)
1453
+
1454
+
1455
+ ```
1456
+ Fix middleware logger ordering
1457
+
1458
+ This allows for the body of http responses to be sent to the logger
1459
+ before the error handling middleware catches it.
1460
+ ```
1461
+ * Add NC methods (5ed1b55b)
1462
+
1463
+
1464
+ ```
1465
+ Add NC methods
1466
+
1467
+ This commit introduces several NC methods, both in the Classifier module
1468
+ and in the v1 module. This commit includes methods to delete all
1469
+ children of a node group, various attribute extractors, and the ability
1470
+ to PUT and POST to update node groups.
1471
+
1472
+ Stylistically, it also removes all logic from the v1 module; this allows
1473
+ for cleaner separation between the api calls and any transforms you
1474
+ might want to implement.
1475
+ ```
1476
+ * Merge pull request #4 from cthorn42/update_faraday_version_number (ea6fe884)
1477
+
1478
+
1479
+ ```
1480
+ Merge pull request #4 from cthorn42/update_faraday_version_number
1481
+
1482
+ Faraday version update
1483
+ ```
1484
+ * Faraday version update (5f7b95ad)
1485
+
1486
+
1487
+ ```
1488
+ Faraday version update
1489
+ Logger requires 0.9.1, was not working with 0.9.0
1490
+ ```
1491
+ * Merge pull request #3 from objectverbobject/update_runtime_dependencies (10cd0d5d)
1492
+
1493
+
1494
+ ```
1495
+ Merge pull request #3 from objectverbobject/update_runtime_dependencies
1496
+
1497
+ Add versioning to gemspec dependencies
1498
+ ```
1499
+ * Add versioning to gemspec dependencies (e34fa7d9)
1500
+
1501
+
1502
+ ```
1503
+ Add versioning to gemspec dependencies
1504
+
1505
+ In order to use stickler to push the dependencies to the internal
1506
+ rubygems mirror, we will need to know the version numbers for the gem
1507
+ dependencies scooter has. Removed minitest and httparty from the
1508
+ dependency list as well.
1509
+ ```
1510
+ * Merge pull request #2 from objectverbobject/restructure_consoledispatcher (cc9bebbc)
1511
+
1512
+
1513
+ ```
1514
+ Merge pull request #2 from objectverbobject/restructure_consoledispatcher
1515
+
1516
+ Restructure ConsoleDispatcher file location
1517
+ ```
1518
+ * Restructure ConsoleDispatcher file location (d7d964b9)
1519
+
1520
+
1521
+ ```
1522
+ Restructure ConsoleDispatcher file location
1523
+
1524
+ This commit moves the ConsoleDispatcher underneath HttpDispatchers so
1525
+ that it is clearer that there should be room for growth for other kinds
1526
+ of http traffic objects for other services, such as the Puppet Server
1527
+ and PuppetDB. There are also various changes to Rdoc strings.
1528
+ ```
1529
+ * Merge pull request #1 from objectverbobject/working_example (b3a8235c)
1530
+
1531
+
1532
+ ```
1533
+ Merge pull request #1 from objectverbobject/working_example
1534
+
1535
+ Initial working commit
1536
+ ```
1537
+ ### <a name = "0.0.0">0.0.0 - 22 Dec, 2014 (9307ec38)
1538
+
1539
+ * Initial release.