new_cfoundry 4.8.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.
Files changed (269) hide show
  1. checksums.yaml +7 -0
  2. data/.gitignore +8 -0
  3. data/.gitmodules +3 -0
  4. data/.rspec +2 -0
  5. data/.ruby-gemset +1 -0
  6. data/.ruby-version +1 -0
  7. data/.travis.yml +11 -0
  8. data/Checkfile +2 -0
  9. data/Gemfile +3 -0
  10. data/LICENSE +987 -0
  11. data/NOTICE +10 -0
  12. data/README.md +9 -0
  13. data/Rakefile +14 -0
  14. data/VERSION +1 -0
  15. data/cfoundry.gemspec +40 -0
  16. data/config/locales/en.yml +168 -0
  17. data/lib/cc_api_stub/app_usage_events.rb +11 -0
  18. data/lib/cc_api_stub/applications.rb +57 -0
  19. data/lib/cc_api_stub/domains.rb +32 -0
  20. data/lib/cc_api_stub/events.rb +11 -0
  21. data/lib/cc_api_stub/frameworks.rb +22 -0
  22. data/lib/cc_api_stub/helper.rb +148 -0
  23. data/lib/cc_api_stub/login.rb +21 -0
  24. data/lib/cc_api_stub/organization_users.rb +27 -0
  25. data/lib/cc_api_stub/organizations.rb +82 -0
  26. data/lib/cc_api_stub/routes.rb +26 -0
  27. data/lib/cc_api_stub/runtimes.rb +22 -0
  28. data/lib/cc_api_stub/service_bindings.rb +22 -0
  29. data/lib/cc_api_stub/service_instances.rb +22 -0
  30. data/lib/cc_api_stub/services.rb +21 -0
  31. data/lib/cc_api_stub/space_users.rb +27 -0
  32. data/lib/cc_api_stub/spaces.rb +58 -0
  33. data/lib/cc_api_stub/users.rb +85 -0
  34. data/lib/cc_api_stub.rb +20 -0
  35. data/lib/cfoundry/auth_token.rb +63 -0
  36. data/lib/cfoundry/baseclient.rb +216 -0
  37. data/lib/cfoundry/chatty_hash.rb +46 -0
  38. data/lib/cfoundry/client.rb +42 -0
  39. data/lib/cfoundry/concerns/login_helpers.rb +14 -0
  40. data/lib/cfoundry/concerns/proxy_options.rb +17 -0
  41. data/lib/cfoundry/errors.rb +163 -0
  42. data/lib/cfoundry/rest_client.rb +317 -0
  43. data/lib/cfoundry/test_support.rb +3 -0
  44. data/lib/cfoundry/trace_helpers.rb +64 -0
  45. data/lib/cfoundry/uaaclient.rb +160 -0
  46. data/lib/cfoundry/upload_helpers.rb +222 -0
  47. data/lib/cfoundry/v2/app.rb +303 -0
  48. data/lib/cfoundry/v2/app_event.rb +13 -0
  49. data/lib/cfoundry/v2/app_instance.rb +74 -0
  50. data/lib/cfoundry/v2/app_usage_event.rb +14 -0
  51. data/lib/cfoundry/v2/base.rb +108 -0
  52. data/lib/cfoundry/v2/client.rb +104 -0
  53. data/lib/cfoundry/v2/domain.rb +20 -0
  54. data/lib/cfoundry/v2/event.rb +17 -0
  55. data/lib/cfoundry/v2/helper.rb +11 -0
  56. data/lib/cfoundry/v2/managed_service_instance.rb +12 -0
  57. data/lib/cfoundry/v2/model.rb +211 -0
  58. data/lib/cfoundry/v2/model_magic/attribute.rb +49 -0
  59. data/lib/cfoundry/v2/model_magic/client_extensions.rb +170 -0
  60. data/lib/cfoundry/v2/model_magic/has_summary.rb +49 -0
  61. data/lib/cfoundry/v2/model_magic/query_multi_value_helper.rb +21 -0
  62. data/lib/cfoundry/v2/model_magic/query_value_helper.rb +33 -0
  63. data/lib/cfoundry/v2/model_magic/queryable_by.rb +39 -0
  64. data/lib/cfoundry/v2/model_magic/to_many.rb +138 -0
  65. data/lib/cfoundry/v2/model_magic/to_one.rb +81 -0
  66. data/lib/cfoundry/v2/model_magic.rb +134 -0
  67. data/lib/cfoundry/v2/organization.rb +44 -0
  68. data/lib/cfoundry/v2/quota_definition.rb +12 -0
  69. data/lib/cfoundry/v2/route.rb +25 -0
  70. data/lib/cfoundry/v2/service.rb +22 -0
  71. data/lib/cfoundry/v2/service_auth_token.rb +9 -0
  72. data/lib/cfoundry/v2/service_binding.rb +10 -0
  73. data/lib/cfoundry/v2/service_broker.rb +12 -0
  74. data/lib/cfoundry/v2/service_instance.rb +14 -0
  75. data/lib/cfoundry/v2/service_plan.rb +16 -0
  76. data/lib/cfoundry/v2/space.rb +30 -0
  77. data/lib/cfoundry/v2/stack.rb +10 -0
  78. data/lib/cfoundry/v2/user.rb +93 -0
  79. data/lib/cfoundry/v2/user_provided_service_instance.rb +15 -0
  80. data/lib/cfoundry/validator.rb +41 -0
  81. data/lib/cfoundry/version.rb +4 -0
  82. data/lib/cfoundry/zip.rb +56 -0
  83. data/lib/cfoundry.rb +5 -0
  84. data/release_notes/release_1_5_3.md +177 -0
  85. data/release_notes/release_2.3.1.md +14 -0
  86. data/release_notes/release_2.3.3.md +38 -0
  87. data/release_notes/release_2.3.4.md +16 -0
  88. data/release_notes/release_2.3.5.md +14 -0
  89. data/release_notes/release_2.3.6.md +14 -0
  90. data/release_notes/release_2.3.6.rc1.md +29 -0
  91. data/release_notes/release_2.3.6.rc2.md +19 -0
  92. data/release_notes/release_2.3.7.rc1.md +14 -0
  93. data/release_notes/release_2.4.0.md +41 -0
  94. data/release_notes/release_2.4.1.rc1.md +58 -0
  95. data/release_notes/release_3.0.0.md +21 -0
  96. data/release_notes/release_3.0.1.md +16 -0
  97. data/release_notes/release_3.0.2.rc1.md +19 -0
  98. data/release_notes/release_4.0.0.md +19 -0
  99. data/release_notes/release_4.0.1.md +14 -0
  100. data/release_notes/release_4.0.2.rc1.md +14 -0
  101. data/release_notes/release_4.0.2.rc2.md +11 -0
  102. data/release_notes/release_4.0.2.rc3.md +11 -0
  103. data/release_notes/release_4.0.2.rc4.md +19 -0
  104. data/release_notes/release_4.0.2.rc5.md +14 -0
  105. data/release_notes/release_4.0.3.md +19 -0
  106. data/release_notes/release_4.0.4.rc1.md +14 -0
  107. data/release_notes/release_4.0.4.rc2.md +14 -0
  108. data/release_notes/release_4.1.0.md +19 -0
  109. data/release_notes/release_4.2.0.rc.md +24 -0
  110. data/release_notes/release_4.3.0.md +22 -0
  111. data/release_notes/release_4.3.1.md +14 -0
  112. data/release_notes/release_4.3.10.md +14 -0
  113. data/release_notes/release_4.3.11.md +14 -0
  114. data/release_notes/release_4.3.12.md +14 -0
  115. data/release_notes/release_4.3.2.rc1.md +21 -0
  116. data/release_notes/release_4.3.3.md +24 -0
  117. data/release_notes/release_4.3.4.md +11 -0
  118. data/release_notes/release_4.3.4.rc1.md +24 -0
  119. data/release_notes/release_4.3.5.md +36 -0
  120. data/release_notes/release_4.3.5.rc1.md +21 -0
  121. data/release_notes/release_4.3.6.md +14 -0
  122. data/release_notes/release_4.3.7.md +50 -0
  123. data/release_notes/release_4.3.8.md +19 -0
  124. data/release_notes/release_4.3.9.md +14 -0
  125. data/release_notes/release_4.4.0.md +16 -0
  126. data/release_notes/release_4.5.1.md +11 -0
  127. data/release_notes/release_4.5.2.md +14 -0
  128. data/release_notes/release_4.5.3.md +29 -0
  129. data/release_notes/release_4.6.0.md +24 -0
  130. data/release_notes/release_4.6.1.md +14 -0
  131. data/release_notes/release_4.6.2.md +16 -0
  132. data/release_notes/release_4.6.3.rc1.md +14 -0
  133. data/release_notes/release_4.6.3.rc2.md +14 -0
  134. data/release_notes/release_4.6.3.rc3.md +17 -0
  135. data/release_notes/release_4.7.0.md +11 -0
  136. data/release_notes/release_4.7.1.md +14 -0
  137. data/release_notes/release_4.7.1.rc.1.md +14 -0
  138. data/release_notes/release_4.7.1.rc1.md +19 -0
  139. data/script/gpp +3 -0
  140. data/spec/cc_api_stub/app_usage_events_spec.rb +12 -0
  141. data/spec/cc_api_stub/applications_spec.rb +69 -0
  142. data/spec/cc_api_stub/domains_spec.rb +40 -0
  143. data/spec/cc_api_stub/events_spec.rb +12 -0
  144. data/spec/cc_api_stub/frameworks_spec.rb +19 -0
  145. data/spec/cc_api_stub/login_spec.rb +20 -0
  146. data/spec/cc_api_stub/organization_users_spec.rb +35 -0
  147. data/spec/cc_api_stub/organizations_spec.rb +118 -0
  148. data/spec/cc_api_stub/routes_spec.rb +19 -0
  149. data/spec/cc_api_stub/runtimes_spec.rb +19 -0
  150. data/spec/cc_api_stub/service_bindings_spec.rb +13 -0
  151. data/spec/cc_api_stub/service_instances_spec.rb +19 -0
  152. data/spec/cc_api_stub/services_spec.rb +11 -0
  153. data/spec/cc_api_stub/space_users_spec.rb +35 -0
  154. data/spec/cc_api_stub/spaces_spec.rb +38 -0
  155. data/spec/cc_api_stub/users_spec.rb +107 -0
  156. data/spec/cfoundry/auth_token_spec.rb +154 -0
  157. data/spec/cfoundry/baseclient_spec.rb +298 -0
  158. data/spec/cfoundry/client_spec.rb +13 -0
  159. data/spec/cfoundry/errors_spec.rb +117 -0
  160. data/spec/cfoundry/rest_client_spec.rb +349 -0
  161. data/spec/cfoundry/trace_helpers_spec.rb +91 -0
  162. data/spec/cfoundry/uaaclient_spec.rb +435 -0
  163. data/spec/cfoundry/upload_helpers_spec.rb +182 -0
  164. data/spec/cfoundry/v2/app_event_spec.rb +97 -0
  165. data/spec/cfoundry/v2/app_instance_spec.rb +31 -0
  166. data/spec/cfoundry/v2/app_spec.rb +354 -0
  167. data/spec/cfoundry/v2/app_usage_event_spec.rb +15 -0
  168. data/spec/cfoundry/v2/base_spec.rb +375 -0
  169. data/spec/cfoundry/v2/client_spec.rb +121 -0
  170. data/spec/cfoundry/v2/domain_spec.rb +63 -0
  171. data/spec/cfoundry/v2/event_spec.rb +15 -0
  172. data/spec/cfoundry/v2/managed_service_instance_spec.rb +149 -0
  173. data/spec/cfoundry/v2/model_magic/attribute_spec.rb +123 -0
  174. data/spec/cfoundry/v2/model_magic/has_summary_spec.rb +17 -0
  175. data/spec/cfoundry/v2/model_magic/to_many_spec.rb +53 -0
  176. data/spec/cfoundry/v2/model_magic/to_one_spec.rb +106 -0
  177. data/spec/cfoundry/v2/model_magic_spec.rb +43 -0
  178. data/spec/cfoundry/v2/model_spec.rb +434 -0
  179. data/spec/cfoundry/v2/organization_spec.rb +135 -0
  180. data/spec/cfoundry/v2/quota_definition_spec.rb +50 -0
  181. data/spec/cfoundry/v2/route_spec.rb +42 -0
  182. data/spec/cfoundry/v2/service_plan_spec.rb +53 -0
  183. data/spec/cfoundry/v2/service_spec.rb +58 -0
  184. data/spec/cfoundry/v2/space_spec.rb +13 -0
  185. data/spec/cfoundry/v2/user_provided_service_instance_spec.rb +57 -0
  186. data/spec/cfoundry/v2/user_spec.rb +206 -0
  187. data/spec/cfoundry/validator_spec.rb +94 -0
  188. data/spec/factories/app_events_factory.rb +7 -0
  189. data/spec/factories/app_usage_events_factory.rb +32 -0
  190. data/spec/factories/apps_factory.rb +11 -0
  191. data/spec/factories/clients_factory.rb +7 -0
  192. data/spec/factories/domains_factory.rb +10 -0
  193. data/spec/factories/events_factory.rb +50 -0
  194. data/spec/factories/organizations_factory.rb +12 -0
  195. data/spec/factories/quota_definitions_factory.rb +8 -0
  196. data/spec/factories/routes_factory.rb +10 -0
  197. data/spec/factories/service_instances_factory.rb +10 -0
  198. data/spec/factories/service_plans_factory.rb +10 -0
  199. data/spec/factories/services_factory.rb +10 -0
  200. data/spec/factories/spaces_factory.rb +10 -0
  201. data/spec/factories/user_provided_service_instances_factory.rb +10 -0
  202. data/spec/factories/users_factory.rb +10 -0
  203. data/spec/fixtures/apps/with_cfignore/.cfignore +4 -0
  204. data/spec/fixtures/apps/with_cfignore/.hidden_file +1 -0
  205. data/spec/fixtures/apps/with_cfignore/ambiguous_ignored +0 -0
  206. data/spec/fixtures/apps/with_cfignore/ignored_dir/file_in_ignored_dir.txt +1 -0
  207. data/spec/fixtures/apps/with_cfignore/ignored_file.txt +1 -0
  208. data/spec/fixtures/apps/with_cfignore/non_ignored_dir/file_in_non_ignored_dir.txt +1 -0
  209. data/spec/fixtures/apps/with_cfignore/non_ignored_dir/ignored_file.txt +1 -0
  210. data/spec/fixtures/apps/with_cfignore/non_ignored_dir/toplevel_ignored.txt +0 -0
  211. data/spec/fixtures/apps/with_cfignore/non_ignored_file.txt +1 -0
  212. data/spec/fixtures/apps/with_cfignore/toplevel_ignored.txt +0 -0
  213. data/spec/fixtures/apps/with_dotfiles/.dotfile +1 -0
  214. data/spec/fixtures/apps/with_dotfiles/xyz +1 -0
  215. data/spec/fixtures/apps/with_external_symlink/foo +1 -0
  216. data/spec/fixtures/apps/with_ignored_external_symlink/.cfignore +1 -0
  217. data/spec/fixtures/apps/with_ignored_external_symlink/foo +1 -0
  218. data/spec/fixtures/apps/with_nested_directories/foo/bar/baz/fizz +0 -0
  219. data/spec/fixtures/apps/with_nested_directories/xyz +0 -0
  220. data/spec/fixtures/empty_file +0 -0
  221. data/spec/fixtures/fake_cc_app_usage_events.json +152 -0
  222. data/spec/fixtures/fake_cc_application.json +20 -0
  223. data/spec/fixtures/fake_cc_application_summary.json +56 -0
  224. data/spec/fixtures/fake_cc_created_application.json +11 -0
  225. data/spec/fixtures/fake_cc_created_domain.json +15 -0
  226. data/spec/fixtures/fake_cc_created_organization.json +11 -0
  227. data/spec/fixtures/fake_cc_created_route.json +13 -0
  228. data/spec/fixtures/fake_cc_created_service_instance.json +11 -0
  229. data/spec/fixtures/fake_cc_created_space.json +11 -0
  230. data/spec/fixtures/fake_cc_created_user.json +11 -0
  231. data/spec/fixtures/fake_cc_domain.json +55 -0
  232. data/spec/fixtures/fake_cc_domain_spaces.json +27 -0
  233. data/spec/fixtures/fake_cc_empty_search.json +7 -0
  234. data/spec/fixtures/fake_cc_events.json +419 -0
  235. data/spec/fixtures/fake_cc_frameworks.json +20 -0
  236. data/spec/fixtures/fake_cc_managed_service_instance.json +83 -0
  237. data/spec/fixtures/fake_cc_organization.json +161 -0
  238. data/spec/fixtures/fake_cc_organization_domains.json +59 -0
  239. data/spec/fixtures/fake_cc_organization_search.json +37 -0
  240. data/spec/fixtures/fake_cc_organization_spaces.json +99 -0
  241. data/spec/fixtures/fake_cc_organization_summary.json +20 -0
  242. data/spec/fixtures/fake_cc_organization_users.json +81 -0
  243. data/spec/fixtures/fake_cc_route.json +16 -0
  244. data/spec/fixtures/fake_cc_runtimes.json +20 -0
  245. data/spec/fixtures/fake_cc_service_binding.json +22 -0
  246. data/spec/fixtures/fake_cc_service_bindings.json +24 -0
  247. data/spec/fixtures/fake_cc_service_instance.json +83 -0
  248. data/spec/fixtures/fake_cc_service_instances.json +72 -0
  249. data/spec/fixtures/fake_cc_services.json +160 -0
  250. data/spec/fixtures/fake_cc_space.json +45 -0
  251. data/spec/fixtures/fake_cc_space_apps.json +49 -0
  252. data/spec/fixtures/fake_cc_space_summary.json +84 -0
  253. data/spec/fixtures/fake_cc_spaces.json +92 -0
  254. data/spec/fixtures/fake_cc_stats.json +29 -0
  255. data/spec/fixtures/fake_cc_user.json +139 -0
  256. data/spec/fixtures/fake_cc_user_organizations.json +92 -0
  257. data/spec/fixtures/fake_cc_user_provided_service_instance.json +51 -0
  258. data/spec/fixtures/fake_cc_user_with_managers.json +85 -0
  259. data/spec/integration/client_spec.rb +38 -0
  260. data/spec/spec_helper.rb +22 -0
  261. data/spec/support/factory_girl.rb +6 -0
  262. data/spec/support/shared_examples/cc_api_stub_request_examples.rb +79 -0
  263. data/spec/support/shared_examples/client_login_examples.rb +46 -0
  264. data/spec/support/shared_examples/model_summary_examples.rb +34 -0
  265. data/spec/support/test_model_builder.rb +10 -0
  266. data/vendor/errors/README.md +4 -0
  267. data/vendor/errors/v1.yml +189 -0
  268. data/vendor/errors/v2.yml +384 -0
  269. metadata +693 -0
@@ -0,0 +1,29 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [3f4c1beb628fef659a41ee1f7d3e1109979631e3](git@github.com:cloudfoundry/cfou/commit/3f4c1beb628fef659a41ee1f7d3e1109979631e3)
8
+ * Added support for hiding private data (specifically the Authorization
9
+ header) in trace output.
10
+
11
+ [Finishes #52668865](http://www.pivotaltracker.com/story/52668865)
12
+ * Joseph Palermo and Stephen Levine, pair+joseph+slevine@pivotallabs.com
13
+
14
+
15
+ * SHA: [204ec0f0c52f6bf30afdee44bfe7d5b2bef83c0d](git@github.com:cloudfoundry/cfou/commit/204ec0f0c52f6bf30afdee44bfe7d5b2bef83c0d)
16
+ * [46747083] Don't invalidate token if setting target to the same value
17
+ * David Sabeti and George Dean, pair+dsabeti+gdean@pivotallabs.com
18
+
19
+
20
+ * SHA: [bbe8f8ae21f20cd38f8f3517b011c785cd2f5d32](git@github.com:cloudfoundry/cfou/commit/bbe8f8ae21f20cd38f8f3517b011c785cd2f5d32)
21
+ * CFoundry::V2::Client can update its target attribute
22
+
23
+ Complete with an integration test!
24
+ * David Sabeti and George Dean, pair+dsabeti+gdean@pivotallabs.com
25
+
26
+
27
+ ------
28
+
29
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,19 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [f8760aae553280358372d0756bd4f1f08114b887](git@github.com:cloudfoundry/cfou/commit/f8760aae553280358372d0756bd4f1f08114b887)
8
+ * [finishes #52669253](http://www.pivotaltracker.com/story/52669253) Filter service credentials when doing a cf -t command.
9
+ * Corbin Halliwill and Joseph Palermo, pair+challi+joseph@pivotallabs.com
10
+
11
+
12
+ * SHA: [46a962e4355ece7d4acd9dfe22718807693ce33b](git@github.com:cloudfoundry/cfou/commit/46a962e4355ece7d4acd9dfe22718807693ce33b)
13
+ * Remove space between method and argument parentheses.
14
+ * cf-bosh, cfaccounts+bosh@pivotallabs.com
15
+
16
+
17
+ ------
18
+
19
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,14 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [95e354f27eb872aa7f2755645192bdb71b0593ff](git@github.com:cloudfoundry/cfou/commit/95e354f27eb872aa7f2755645192bdb71b0593ff)
8
+ * [#49553787](http://www.pivotaltracker.com/story/49553787) Ability to fetch only the first page of results
9
+ * Corbin Halliwill and Joseph Palermo, pair+challi+joseph@pivotallabs.com
10
+
11
+
12
+ ------
13
+
14
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,41 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [175731a4b0b69793e50f120a2c385c59dacea1bb](git@github.com:cloudfoundry/cfou/commit/175731a4b0b69793e50f120a2c385c59dacea1bb)
8
+ * Merge pull request #8 from cloudfoundry/sso_login
9
+
10
+ Allow to pass in different credentials to owner_password_grant uaa authorization method
11
+ * pivotal-vmware, pivotal-vmware@googlegroups.com
12
+
13
+
14
+ * SHA: [d379a0cd1733536edc45debdd62a43470f6da8ad](git@github.com:cloudfoundry/cfou/commit/d379a0cd1733536edc45debdd62a43470f6da8ad)
15
+ * corrected format of .ruby-version
16
+ * Dmitriy Kalinin and Edgar Honing, pair+dmitriy+edgar@pivotallabs.com
17
+
18
+
19
+ * SHA: [96cbe8047de2e1bb1e605ab2d510ff0c60c6d17d](git@github.com:cloudfoundry/cfou/commit/96cbe8047de2e1bb1e605ab2d510ff0c60c6d17d)
20
+ * allow authorization with username/passcode vs username/password
21
+ * Dmitriy Kalinin and Edgar Honing, pair+dmitriy+edgar@pivotallabs.com
22
+
23
+
24
+ * SHA: [b720c6724ff9078337974e1f6477c23022a9d208](git@github.com:cloudfoundry/cfou/commit/b720c6724ff9078337974e1f6477c23022a9d208)
25
+ * stop saving off username/password as instance variables
26
+ * Dmitriy Kalinin and Edgar Honing, pair+dmitriy+edgar@pivotallabs.com
27
+
28
+
29
+ * SHA: [181aec9cb860f6211da2c794a021512e8e4907e1](git@github.com:cloudfoundry/cfou/commit/181aec9cb860f6211da2c794a021512e8e4907e1)
30
+ * No fake client...yet
31
+ * Dennis Schmidt and Will Read, pair+dschmidt+will@pivotallabs.com
32
+
33
+
34
+ * SHA: [3e7253e473fa393c4933eb7bc283c58ba4ee4661](git@github.com:cloudfoundry/cfou/commit/3e7253e473fa393c4933eb7bc283c58ba4ee4661)
35
+ * Use "Warn" to be more expressive
36
+ * Dennis Schmidt and Will Read, pair+dschmidt+will@pivotallabs.com
37
+
38
+
39
+ ------
40
+
41
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,58 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [0fdb02ada43cb41803fa31be8987eb7e916925b8](git@github.com:cloudfoundry/cfou/commit/0fdb02ada43cb41803fa31be8987eb7e916925b8)
8
+ * removed references and defaults to cloudfoundry.com
9
+ * Sean Brady and Will Read, pair+sbrady+will@pivotallabs.com
10
+
11
+
12
+ * SHA: [655894c0f25d33c71fa17fe62311921a9d057337](git@github.com:cloudfoundry/cfou/commit/655894c0f25d33c71fa17fe62311921a9d057337)
13
+ * Merge pull request #7 from danhigham/master
14
+
15
+ Get user meta data from UAA
16
+ * pivotal-vmware, pivotal-vmware@googlegroups.com
17
+
18
+
19
+ * SHA: [3ea87d2f21e628dbedc80a572428874aa2f676ae](git@github.com:cloudfoundry/cfou/commit/3ea87d2f21e628dbedc80a572428874aa2f676ae)
20
+ * Merge pull request #11 from cloudfoundry/support-query-service-instace-by-gateway-name
21
+
22
+ Backfilled tests for service_instance. Allow filter by gateway_name
23
+ * pivotal-vmware, pivotal-vmware@googlegroups.com
24
+
25
+
26
+ * SHA: [24d4014152de82fcdad3fb1930f597f952df50fc](git@github.com:cloudfoundry/cfou/commit/24d4014152de82fcdad3fb1930f597f952df50fc)
27
+ * Update test description
28
+ * Jimmy Da and Phan Le, pair+jimmy+phan@pivotallabs.com
29
+
30
+
31
+ * SHA: [aa06748579ceb7f4c0d511d678317e28f2fc4cf9](git@github.com:cloudfoundry/cfou/commit/aa06748579ceb7f4c0d511d678317e28f2fc4cf9)
32
+ * Backfilled tests for service_instance. Allow filter by gateway_name
33
+ * Jimmy Da and Phan Le, pair+jimmy+phan@pivotallabs.com
34
+
35
+
36
+ * SHA: [c85562daed182989fe964c3c8c8ac8aaab60fe0c](git@github.com:cloudfoundry/cfou/commit/c85562daed182989fe964c3c8c8ac8aaab60fe0c)
37
+ * Added specs for UAA metadata
38
+ * Dan Higham, dan.higham@gmail.com
39
+
40
+
41
+ * SHA: [e936d7a598673e2054054177e60bfc5eda81d1d8](git@github.com:cloudfoundry/cfou/commit/e936d7a598673e2054054177e60bfc5eda81d1d8)
42
+ * Use scim.get instead of .query
43
+ * Dan Higham, dan.higham@gmail.com
44
+
45
+
46
+ * SHA: [a8c878ff7a58b650c9f24409815966e20cd52e24](git@github.com:cloudfoundry/cfou/commit/a8c878ff7a58b650c9f24409815966e20cd52e24)
47
+ * Look up one user from UAA instead of all
48
+ * Dan Higham, dan.higham@gmail.com
49
+
50
+
51
+ * SHA: [2e8038eb67c85ac059a999135bf8415430962a2f](git@github.com:cloudfoundry/cfou/commit/2e8038eb67c85ac059a999135bf8415430962a2f)
52
+ * Get user meta data from UAA
53
+ * Dan Higham, dan.higham@gmail.com
54
+
55
+
56
+ ------
57
+
58
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,21 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [c700d87c7363a8c476ad60ebf3d810b5fa1e8263](git@github.com:cloudfoundry/cfou/commit/c700d87c7363a8c476ad60ebf3d810b5fa1e8263)
8
+ * Merge branch 'master' into async-only
9
+ * Andreas Maier and Corbin Halliwill, pair+amaier+challi@pivotallabs.com
10
+
11
+
12
+ * SHA: [0b982dbe0ffb21aaeef58c763811764612d01e05](git@github.com:cloudfoundry/cfou/commit/0b982dbe0ffb21aaeef58c763811764612d01e05)
13
+ * remove sync staging API
14
+
15
+ staging is now always asynchronous in the CC
16
+ * Alex Suraci and Mark Rushakoff, pair+alex+mrushakoff@pivotallabs.com
17
+
18
+
19
+ ------
20
+
21
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,16 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [b1d8e8f741b8833084dcf0b009055f3439f6c484](git@github.com:cloudfoundry/cfou/commit/b1d8e8f741b8833084dcf0b009055f3439f6c484)
8
+ * coverted UAA Scim object hashes to use symbolized keys, which fixes 'user: n/a' in cf
9
+
10
+ [Fixes #53729963](http://www.pivotaltracker.com/story/53729963)
11
+ * George Dean and Stephen Levine, pair+gdean+slevine@pivotallabs.com
12
+
13
+
14
+ ------
15
+
16
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,19 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [c48098b38780a8a9bb181adaf4d51b646c1e9b17](https://github.com/cloudfoundry/cfoundry/commit/c48098b38780a8a9bb181adaf4d51b646c1e9b17)
8
+ * client.service_instances uses the return_user_provided_service_instances param
9
+ * David Sabeti, pair+dsabeti@pivotallabs.com
10
+
11
+
12
+ * SHA: [17a16393ffb5238cc2893858dc2ac321914d9bd8](https://github.com/cloudfoundry/cfoundry/commit/17a16393ffb5238cc2893858dc2ac321914d9bd8)
13
+ * Add UserProvidedServiceInstance Model
14
+ * David Sabeti and Ian Lesperance, pair+dsabeti+ilesperance@pivotallabs.com
15
+
16
+
17
+ ------
18
+
19
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,19 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [fbf6a2e6d6e1e6774d948dced10c433ece99d4b1](https://github.com/cloudfoundry/cfoundry/commit/fbf6a2e6d6e1e6774d948dced10c433ece99d4b1)
8
+ * Add protection for bogus values of :user_provided
9
+ * David Sabeti and Ryan Tang, pair+dsabeti+ryantang@pivotallabs.com
10
+
11
+
12
+ * SHA: [394ef2abb815522556aa69cd0270fc383dbbb89f](https://github.com/cloudfoundry/cfoundry/commit/394ef2abb815522556aa69cd0270fc383dbbb89f)
13
+ * client.service_instances defaults :user_provided to true
14
+ * David Sabeti, pair+dsabeti@pivotallabs.com
15
+
16
+
17
+ ------
18
+
19
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,14 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [d766cf0cb3eeec8dd417a8786bcfe35ca889b1fa](git@github.com:cloudfoundry/cfou/commit/d766cf0cb3eeec8dd417a8786bcfe35ca889b1fa)
8
+ * fixed breaking integration tests by symbolizing response id
9
+ * Corbin Halliwill and Stephen Levine, pair+challi+slevine@pivotallabs.com
10
+
11
+
12
+ ------
13
+
14
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,14 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [793b22b596c6cbaa915f8e5922c29372b70bb20c](git@github.com:cloudfoundry/cfoundry/commit/793b22b596c6cbaa915f8e5922c29372b70bb20c)
8
+ * Update organization summary JSON fixture to include status field
9
+ * Aaron Levine and Dennis Schmidt, pair+aaron+dschmidt@pivotallabs.com
10
+
11
+
12
+ ------
13
+
14
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,11 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+
8
+
9
+ ------
10
+
11
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,11 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+
8
+
9
+ ------
10
+
11
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,19 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [6dce4647b8e7428eb45cdb9861dc07d200d4473b](git@github.com:cloudfoundry/cfoundry/commit/6dce4647b8e7428eb45cdb9861dc07d200d4473b)
8
+ * add organization status field to fixtures
9
+ * Dennis Schmidt and Sean Brady, pair+dschmidt+sbrady@pivotallabs.com
10
+
11
+
12
+ * SHA: [7b609e324d6527cea437931b06d09ca7e749b6a3](git@github.com:cloudfoundry/cfoundry/commit/7b609e324d6527cea437931b06d09ca7e749b6a3)
13
+ * add status field to Organization
14
+ * Dennis Schmidt and Sean Brady, pair+dschmidt+sbrady@pivotallabs.com
15
+
16
+
17
+ ------
18
+
19
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,14 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [a0f841fe058dc9b1875597126cd297a7242dfd8d](https://github.com/cloudfoundry/cfoundry/commit/a0f841fe058dc9b1875597126cd297a7242dfd8d)
8
+ * Use /v2/spaces/#{space_guid}/service_instance; allow config of integration test env
9
+ * Ryan Tang and Will Read, pair+ryantang+will@pivotallabs.com
10
+
11
+
12
+ ------
13
+
14
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,19 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [18222800ccebadd2633c3a2410f3eac8b74ea966](git@github.com:cloudfoundry/cfou/commit/18222800ccebadd2633c3a2410f3eac8b74ea966)
8
+ * Catch NotStaged exception causing app listing to fail in console/cf
9
+ * David Sabeti and Stephen Levine, pair+dsabeti+slevine@pivotallabs.com
10
+
11
+
12
+ * SHA: [b5f3ae8a1caca143b18c196e234c541b2376de8c](git@github.com:cloudfoundry/cfou/commit/b5f3ae8a1caca143b18c196e234c541b2376de8c)
13
+ * add test for service_instance user_provided flag
14
+ * Ian Lesperance and Ryan Tang, pair+ilesperance+ryantang@pivotallabs.com
15
+
16
+
17
+ ------
18
+
19
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,14 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [11fa17acbf559cea710e8d4b40a68c0385718ca0](https://github.com/cloudfoundry/cfoundry/commit/11fa17acbf559cea710e8d4b40a68c0385718ca0)
8
+ * Always include user-provided service-instances
9
+ * Ian Lesperance and Will Read, pair+ilesperance+will@pivotallabs.com
10
+
11
+
12
+ ------
13
+
14
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,14 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [3d01778aa717fde764116b3b70cadba4fb68fb47](https://github.com/cloudfoundry/cfoundry/commit/3d01778aa717fde764116b3b70cadba4fb68fb47)
8
+ * Split ServiceInstance into Managed and UserProvided. Construction of ServiceInstance uses CC field 'type' to determine correct class
9
+ * David Sabeti and Jesse Zhang, pair+dsabeti+jz@pivotallabs.com
10
+
11
+
12
+ ------
13
+
14
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,19 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [60b526b38837a9a1b8da338dc4ae535b8b8169a3](git@github.com:cloudfoundry/cfou/commit/60b526b38837a9a1b8da338dc4ae535b8b8169a3)
8
+ * Merge remote-tracking branch 'origin/proxy_support'
9
+ * David Sabeti and Jeff Schnitzer, pair+dsabeti+jschnitzer@pivotallabs.com
10
+
11
+
12
+ * SHA: [324eb17df701ce9fabceda314a89f7ea5806b5ac](git@github.com:cloudfoundry/cfou/commit/324eb17df701ce9fabceda314a89f7ea5806b5ac)
13
+ * [#53920639](http://www.pivotaltracker.com/story/53920639) Use proxy options when connecting to UAA/Login servers
14
+ * Joseph Palermo and Will Read, pair+joseph+will@pivotallabs.com
15
+
16
+
17
+ ------
18
+
19
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,24 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * Bump errors submodule
8
+ * SHA: 71fcc1bb8ff839fd127a4d8b115b3a372a071ce1
9
+ * Corbin Halliwill and Matthew Horan, pair+challiwill+mhoran@pivotallabs.com
10
+
11
+
12
+ * Service broker model.
13
+ * SHA: 8b7ead6354c452fa186fd120ab8d09360689f08d
14
+ * Corbin Halliwill and Matthew Horan, pair+challiwill+mhoran@pivotallabs.com
15
+
16
+
17
+ * Don't omit attributes ending with _url.
18
+ * SHA: 11d92058e258e9e6627b8511f005f351e2927988
19
+ * Corbin Halliwill and Matthew Horan, pair+challiwill+mhoran@pivotallabs.com
20
+
21
+
22
+ ------
23
+
24
+ _Release Notes generated with _[Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,22 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [6ec4de98949506f134f334efcd5f320209e1ec2c](https://github.com/cloudfoundry/cfoundry/commit/6ec4de98949506f134f334efcd5f320209e1ec2c)
8
+ * Merge branch 'pr/13'
9
+
10
+ Conflicts:
11
+ cfoundry.gemspec
12
+ * Maria Shaldibina and aram price, pair+mariash+aprice@pivotallabs.com
13
+
14
+
15
+ * SHA: [4861fb8fa4183ae61458d56878dbcb3a2d8fbb73](https://github.com/cloudfoundry/cfoundry/commit/4861fb8fa4183ae61458d56878dbcb3a2d8fbb73)
16
+ * Added compatibility with Rails4
17
+ * Alexander Borovsky, alexander.borovsky@altoros.com
18
+
19
+
20
+ ------
21
+
22
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,14 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [ce13fc377d7e86b79958279a4943e98a01bc8c5e](git@github.com:cloudfoundry/cfou/commit/ce13fc377d7e86b79958279a4943e98a01bc8c5e)
8
+ * add fixtures for user-provisioned services
9
+ * George Dean and Will Read, pair+gdean+will@pivotallabs.com
10
+
11
+
12
+ ------
13
+
14
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,14 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [b0249509b8743f8f6686a1e4a95866c9dce9a9fb](git@github.com:cloudfoundry/cfou/commit/b0249509b8743f8f6686a1e4a95866c9dce9a9fb)
8
+ * New /v2/events fixtures that demonstrate app scaling events
9
+ * Andreas Maier and Joseph Palermo, pair+amaier+joseph@pivotallabs.com
10
+
11
+
12
+ ------
13
+
14
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,14 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [d09e849cebe818df69d24442bca7c699cc1b65d2](git@github.com:cloudfoundry/cfou/commit/d09e849cebe818df69d24442bca7c699cc1b65d2)
8
+ * added new events to events fixture
9
+ * Andreas Maier and Joseph Palermo, pair+amaier+joseph@pivotallabs.com
10
+
11
+
12
+ ------
13
+
14
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,14 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [b9d3af84599596651b82a41374c2e28f8e3c7b6a](git@github.com:cloudfoundry/cfou/commit/b9d3af84599596651b82a41374c2e28f8e3c7b6a)
8
+ * add fail-to-load cases to specs for apps and spaces
9
+ * Andreas Maier and George Dean, pair+amaier+gdean@pivotallabs.com
10
+
11
+
12
+ ------
13
+
14
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,21 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * Make service broker queryable by name
8
+ * SHA: b1a87d9e80a43407c53b015f348ce75a3811bd2a
9
+ * Corbin Halliwill and Jeff Schnitzer, pair+challiwill+jschnitzer@pivotallabs.com
10
+
11
+
12
+ * Remove ruby 1.9.2 from .travis.yml
13
+
14
+ We now depened on a version of activesupport that requires ruby 1.9.3 or greater.
15
+ * SHA: 7efe65b83d3e8cf61878ec265666eb555528173f
16
+ * Corbin Halliwill and David Sabeti, pair+challi+dsabeti@pivotallabs.com
17
+
18
+
19
+ ------
20
+
21
+ _Release Notes generated with _[Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,24 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [72fdc0183fd10b3c3ab1e1085c1d31e8e50700aa](git@github.com:cloudfoundry/cfoundry/commit/72fdc0183fd10b3c3ab1e1085c1d31e8e50700aa)
8
+ * CcApiStubs now take optional id parameters
9
+ * Joseph Palermo and Sean Brady, pair+joseph+sbrady@pivotallabs.com
10
+
11
+
12
+ * SHA: [57ede9c41732fbf811e79977612a26fc63b1a925](git@github.com:cloudfoundry/cfoundry/commit/57ede9c41732fbf811e79977612a26fc63b1a925)
13
+ * Add each_page method to plural resources. each_page only keeps a single page in memory at a time.
14
+ * Joseph Palermo and Sean Brady, pair+joseph+sbrady@pivotallabs.com
15
+
16
+
17
+ * SHA: [0864649400595e358961152e0ff9460ec0650cae](git@github.com:cloudfoundry/cfoundry/commit/0864649400595e358961152e0ff9460ec0650cae)
18
+ * update submodule before travis build
19
+ * Jesse Zhang, jz@pivotallabs.com
20
+
21
+
22
+ ------
23
+
24
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,11 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+
8
+
9
+ ------
10
+
11
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,24 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [6fcc6dbf31e4696b9e846ade3dd0ad4174112615](git@github.com:cloudfoundry/cfoundry/commit/6fcc6dbf31e4696b9e846ade3dd0ad4174112615)
8
+ * add fail_to_update helper
9
+ * Charlie Bevis and Dennis Schmidt, pair+cbevis+dschmidt@pivotallabs.com
10
+
11
+
12
+ * SHA: [bf609eb81bc70f034f15bc9a3e7c0e874499b83b](git@github.com:cloudfoundry/cfoundry/commit/bf609eb81bc70f034f15bc9a3e7c0e874499b83b)
13
+ * Fixed what appeared to be a cp-r error in the specs.
14
+ * Jeff Schnitzer and Jimmy Da, pair+jschnitzer+jda@pivotallabs.com
15
+
16
+
17
+ * SHA: [06156debb68ec0842091cb4eae96219b06c5c713](git@github.com:cloudfoundry/cfoundry/commit/06156debb68ec0842091cb4eae96219b06c5c713)
18
+ * add license to gemspec
19
+ * Aram Price and John Foley, pair+aprice+jfoley@pivotallabs.com
20
+
21
+
22
+ ------
23
+
24
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_
@@ -0,0 +1,36 @@
1
+ # Release Notes
2
+
3
+ ## Summary
4
+
5
+ ## Changes
6
+
7
+ * SHA: [60a79060ea75fa62279890e2435e593ed37bdc5a](git@github.com:cloudfoundry/cfoundry/commit/60a79060ea75fa62279890e2435e593ed37bdc5a)
8
+ * Gem release now prompts to confirm new version
9
+ * Aaron Levine and Joseph Palermo, pair+aaron+joseph@pivotallabs.com
10
+
11
+
12
+ * SHA: [ced1227bfcf04b8217eddc21fafc55b61d5ff157](git@github.com:cloudfoundry/cfoundry/commit/ced1227bfcf04b8217eddc21fafc55b61d5ff157)
13
+ * CcApiStub::Spaces.succeed_to_load_apps
14
+ * Aaron Levine and Joseph Palermo, pair+aaron+joseph@pivotallabs.com
15
+
16
+
17
+ * SHA: [9830a1fae2d63de2bb4ba514b7391242e07a9df1](git@github.com:cloudfoundry/cfoundry/commit/9830a1fae2d63de2bb4ba514b7391242e07a9df1)
18
+ * Merge pull request #14 from borovsky/passing-names-to-user-registration
19
+
20
+ Added passing user names to user registration
21
+ * David Sabeti, dsabeti@rbcon.com
22
+
23
+
24
+ * SHA: [98648cc22b14378890863eac12799ef8fdaac8c1](git@github.com:cloudfoundry/cfoundry/commit/98648cc22b14378890863eac12799ef8fdaac8c1)
25
+ * Avoid for ActiveSupport bug #11206
26
+ * Alexander Borovsky, alexander.borovsky@altoros.com
27
+
28
+
29
+ * SHA: [19254e47e553726db86154902f1485357d1bbdf9](git@github.com:cloudfoundry/cfoundry/commit/19254e47e553726db86154902f1485357d1bbdf9)
30
+ * Added passing user names to user registration
31
+ * Alexander Borovsky, alexander.borovsky@altoros.com
32
+
33
+
34
+ ------
35
+
36
+ _Release Notes generated with [Anchorman](http://github.com/infews/anchorman)_