You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@deltacloud.apache.org by lu...@apache.org on 2012/10/09 00:56:12 UTC

git commit: Version 1.0.4

Updated Branches:
  refs/heads/master 25665e9b5 -> ccd33dccc


Version 1.0.4


Project: http://git-wip-us.apache.org/repos/asf/deltacloud/repo
Commit: http://git-wip-us.apache.org/repos/asf/deltacloud/commit/ccd33dcc
Tree: http://git-wip-us.apache.org/repos/asf/deltacloud/tree/ccd33dcc
Diff: http://git-wip-us.apache.org/repos/asf/deltacloud/diff/ccd33dcc

Branch: refs/heads/master
Commit: ccd33dcccd3d5929bd68af94814d0cb95cd4899c
Parents: 25665e9
Author: David Lutterkort <lu...@redhat.com>
Authored: Mon Oct 8 15:44:33 2012 -0700
Committer: David Lutterkort <lu...@redhat.com>
Committed: Mon Oct 8 15:55:32 2012 -0700

----------------------------------------------------------------------
 NEWS                             |   28 ++++++++++++++++++++++++++++
 server/lib/deltacloud/version.rb |    2 +-
 2 files changed, 29 insertions(+), 1 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/deltacloud/blob/ccd33dcc/NEWS
----------------------------------------------------------------------
diff --git a/NEWS b/NEWS
index 377d7e4..87b9a02 100644
--- a/NEWS
+++ b/NEWS
@@ -1,3 +1,31 @@
+1.0.4 - 2012-10-08
+  * server: shorten backtraces in logs to make them readable
+  * server: report unknown frontend cleanly when starting server (JIRA 331)
+  * server: generate docs at /api/docs resp. /cimi/docs
+  * server: clean up how we map the various frontends into the server URL space
+  * tests: produce nicer output and improve Jenkins integration
+  * Drivers
+    + Google
+      - capture 401 and 409 errors from backend
+    + Openstack
+      - report 401 when no username is given (JIRA 330)
+      - query supported collections from backend; this implies that
+        credentials are needed to access /api (JIRA 316)
+  * EC2 frontend:
+    - accept InstanceId as parameter for DescribeInstances (Oved Ourfali)
+    - Start/StopInstance: ensure instance details are returned from all
+      drivers, especially RHEV-M (Oved Ourfali)
+  * CIMI frontend:
+    - use correct CIMI v1.0 namespace in XML (Carlos Goncalves)
+    - rename entities to match CIMI v1.0 (e.g. RoutingGroup -> ForwardingGroup)
+    - various fixes/enhancements for networking entities (only for mock
+      driver so far)
+    - fix ordering of attributes in XML responses
+    - frontend still not entirely compliant with CIMI 1.0, especially
+      embedded collections are not yet handled correctly
+  * client
+    - make sure we send provider when changing drivers
+
 1.0.3 - 2012-09-07
   * change the format of ~/.deltacloud/config: keys are now strings, not
     symbols - requires manual fixup

http://git-wip-us.apache.org/repos/asf/deltacloud/blob/ccd33dcc/server/lib/deltacloud/version.rb
----------------------------------------------------------------------
diff --git a/server/lib/deltacloud/version.rb b/server/lib/deltacloud/version.rb
index 6e2294c..da2ee21 100644
--- a/server/lib/deltacloud/version.rb
+++ b/server/lib/deltacloud/version.rb
@@ -15,5 +15,5 @@
 # under the License.
 
 module Deltacloud
-  API_VERSION = '1.0.3' unless defined?(API_VERSION)
+  API_VERSION = '1.0.4' unless defined?(API_VERSION)
 end