From 19dfce326568d192cb35589a27e8b6202b5c22d3 Mon Sep 17 00:00:00 2001 From: micafer Date: Fri, 15 Dec 2017 11:53:22 +0100 Subject: [PATCH] Set version 1.6.6 --- IM/__init__.py | 2 +- changelog | 7 +++++++ docker-devel/Dockerfile | 2 +- docker/Dockerfile | 4 ++-- 4 files changed, 11 insertions(+), 4 deletions(-) diff --git a/IM/__init__.py b/IM/__init__.py index e27452c8d..855049617 100644 --- a/IM/__init__.py +++ b/IM/__init__.py @@ -19,5 +19,5 @@ 'InfrastructureInfo', 'InfrastructureManager', 'recipe', 'request', 'REST', 'retry', 'ServiceRequests', 'SSH', 'SSHRetry', 'timedcall', 'UnixHTTPAdapter', 'uriparse', 'VirtualMachine', 'VMRC', 'xmlobject'] -__version__ = '1.6.5' +__version__ = '1.6.6' __author__ = 'Miguel Caballer' diff --git a/changelog b/changelog index 9efe44bad..4a2626682 100644 --- a/changelog +++ b/changelog @@ -362,3 +362,10 @@ IM 1.6.5 * Homogenize Inf ID log message * Fix error cpu.count parameter is ignored in OpenStack conn. * Fix ansible_version is not available in ctxt process. + +IM 1.6.6 + * Fix authorization file format does not allow passwords that contain ";". + * Improve error message in ONE conn in case net without leases. + * Fix error using disks.free_size in connectors. + * Add retries in Azure RG deletion. + * Avoid raising error in case that one auth line does not have the type field. \ No newline at end of file diff --git a/docker-devel/Dockerfile b/docker-devel/Dockerfile index 7bdc2ce0f..713fe1704 100644 --- a/docker-devel/Dockerfile +++ b/docker-devel/Dockerfile @@ -2,7 +2,7 @@ FROM grycap/jenkins:ubuntu16.04-im ARG BRANCH=devel MAINTAINER Miguel Caballer -LABEL version="1.6.5" +LABEL version="1.6.6" LABEL description="Container image to run the IM service. (http://www.grycap.upv.es/im)" EXPOSE 8899 8800 diff --git a/docker/Dockerfile b/docker/Dockerfile index 905a60b48..043c23403 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,7 +1,7 @@ # Dockerfile to create a container with the IM service FROM ubuntu:16.04 LABEL maintainer="Miguel Caballer " -LABEL version="1.6.5" +LABEL version="1.6.6" LABEL description="Container image to run the IM service. (http://www.grycap.upv.es/im)" EXPOSE 8899 8800 @@ -17,7 +17,7 @@ RUN pip install msrest msrestazure azure-common azure-mgmt-storage azure-mgmt-co # Install IM RUN apt-get update && apt-get install --no-install-recommends -y gcc libmysqld-dev libssl-dev libffi-dev libsqlite3-dev && \ pip install MySQL-python && \ - pip install IM==1.6.5 && \ + pip install IM==1.6.6 && \ apt-get remove -y gcc libmysqld-dev libssl-dev libffi-dev libsqlite3-dev python-dev python-pip && \ apt-get autoremove -y && \ rm -rf /var/lib/apt/lists/*