Skip to content
This repository has been archived by the owner on Jan 21, 2022. It is now read-only.

Commit

Permalink
Bump src/cloud_controller_ng:
Browse files Browse the repository at this point in the history
Alex Suraci and Tim Labeeuw (3):
      use cf-registrar for router registration
      use cf registrar provided by vcap-common
      fix downloading resources from the cdn

David Julia and Jesse Zhang (11):
      space developer can provision a provided service instance
      only return managed service instances for /v2/spaces/:id/service_instances
      remove unused argument
      back-fill permission tests for associated service instances of a space
      inline the GET request into examples
      Hydrate ManagedServiceInstance#as_summary_json model spec
      Use model's as_summary_json instead of analagous private method
      ProvidedServiceInstance#as_summary_json
      Do not redundantly nullify service_instances when destroying apps
      remove service_instances association from app
      Get rid of update_binding endpoint. The only supported operations for service bindings should be create and delete

Jesse Zhang and Maria Shaldibina (6):
      lift credentials up back to base class
      start working on provided service instance model
      lift part of validate up back to service instance
      cleans up strip_attributes plugin test
      strip the name attribute in provided service instance
      back-filled basic tests for ProvidedServiceInstance

Jesse Zhang and Phan Le (2):
      renamed ServiceInstance to ManagedServiceInstance
      redirect GET /v2/managed_service_instances/:guid to /v2/service_instances/:guid

cf-frameworks (1):
      Merge pull request #55 from cloudfoundry/service-connector
  • Loading branch information
Alex Suraci committed Jun 29, 2013
1 parent f75eecd commit ba19a03
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cloud_controller_ng
Submodule cloud_controller_ng updated 59 files
+4 −4 Gemfile
+18 −8 Gemfile.lock
+8 −0 db/migrations/20130621222741_allow_null_service_plan_and_add_kind_on_service_instances.rb
+1 −3 lib/cloud_controller.rb
+1 −1 lib/cloud_controller/api/app_summary.rb
+13 −0 lib/cloud_controller/api/managed_service_instance.rb
+19 −0 lib/cloud_controller/api/provided_service_instance.rb
+0 −23 lib/cloud_controller/api/service_binding.rb
+7 −1 lib/cloud_controller/api/service_instance.rb
+3 −3 lib/cloud_controller/api/snapshot.rb
+13 −0 lib/cloud_controller/api/space.rb
+1 −20 lib/cloud_controller/api/space_summary.rb
+0 −2 lib/cloud_controller/config.rb
+2 −2 lib/cloud_controller/legacy_api/legacy_service_gateway.rb
+1 −1 lib/cloud_controller/legacy_api/legacy_services.rb
+2 −0 lib/cloud_controller/models.rb
+1 −2 lib/cloud_controller/models/app.rb
+264 −0 lib/cloud_controller/models/managed_service_instance.rb
+21 −0 lib/cloud_controller/models/provided_service_instance.rb
+6 −262 lib/cloud_controller/models/service_instance.rb
+1 −1 lib/cloud_controller/resource_pool.rb
+1 −1 lib/cloud_controller/rest_controller/base.rb
+0 −72 lib/cloud_controller/router_client.rb
+27 −15 lib/cloud_controller/runner.rb
+3 −3 spec/api/app_spec.rb
+1 −1 spec/api/app_summary_spec.rb
+3 −2 spec/api/helpers/permissions.rb
+1 −1 spec/api/legacy_info_spec.rb
+6 −6 spec/api/legacy_service_gateway_spec.rb
+15 −15 spec/api/legacy_services_spec.rb
+14 −0 spec/api/managed_service_instance_spec.rb
+2 −2 spec/api/organization_spec.rb
+1 −1 spec/api/organization_summary_spec.rb
+18 −0 spec/api/provided_service_instance_spec.rb
+5 −50 spec/api/service_binding_spec.rb
+16 −16 spec/api/service_instance_spec.rb
+2 −2 spec/api/service_plan_spec.rb
+5 −5 spec/api/snapshot_spec.rb
+124 −2 spec/api/space_spec.rb
+10 −3 spec/api/space_summary_spec.rb
+2 −2 spec/app_stager_task_spec.rb
+1 −1 spec/dea/dea_client_spec.rb
+2 −0 spec/fixtures/config/non_default_message_bus.yml
+2 −2 spec/integration/death_spec.rb
+2 −21 spec/models/app_spec.rb
+38 −34 spec/models/managed_service_instance_spec.rb
+5 −5 spec/models/organization_spec.rb
+41 −0 spec/models/provided_service_instance_spec.rb
+9 −9 spec/models/service_binding_spec.rb
+2 −2 spec/models/service_create_event_spec.rb
+2 −2 spec/models/service_delete_event_spec.rb
+3 −3 spec/models/service_plan_spec.rb
+3 −3 spec/models/space_spec.rb
+2 −2 spec/resource_pool_spec.rb
+0 −147 spec/router_client_spec.rb
+17 −11 spec/runner_spec.rb
+19 −17 spec/sequel_plugins/vcap_normalization_spec.rb
+1 −1 spec/spec_helper.rb
+8 −2 spec/support/fakes/blueprints.rb

0 comments on commit ba19a03

Please sign in to comment.