From 5dc6eb1ef5b5fb8f86dc143fdd070eaccb804aec Mon Sep 17 00:00:00 2001 From: davidremm Date: Fri, 18 Mar 2016 12:49:08 -0700 Subject: [PATCH 1/2] Updated config validation to support beta environment --- CHANGELOG.md | 1 + freight_forwarder/config.py | 2 ++ freight_forwarder/const.py | 2 +- 3 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index ff7ebb0..d54e61d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,7 @@ create and restart only the containers that are required to. * Updated code base to support python3 * Export will no longer attempt to build and start dependents only dependencies. * added unit tests, improved test coverage +* updated config validation to support beta environment. ### New Features: * Simplified configuration file to make it easier to understand and integrate with. diff --git a/freight_forwarder/config.py b/freight_forwarder/config.py index 37ae73e..ea7bcbf 100644 --- a/freight_forwarder/config.py +++ b/freight_forwarder/config.py @@ -34,6 +34,7 @@ 'performance', 'stage', 'staging', + 'beta', 'integration', 'prod', 'production' @@ -48,6 +49,7 @@ 'performance': {'inherit': '$environment'}, 'stage': {'inherit': '$environment'}, 'staging': {'inherit': '$environment'}, + 'beta': {'inherit': '$environment'}, 'integration': {'inherit': '$environment'}, 'prod': {'inherit': '$environment'}, 'production': {'inherit': '$environment'}, diff --git a/freight_forwarder/const.py b/freight_forwarder/const.py index 3fd4010..55c405d 100644 --- a/freight_forwarder/const.py +++ b/freight_forwarder/const.py @@ -1,7 +1,7 @@ # -*- coding: utf-8; -*- from __future__ import unicode_literals -VERSION = "1.0.0" +VERSION = "1.0.1" # docker api DOCKER_DEFAULT_TIMEOUT = 120 From 59ef9bd3d9ce4acf35d6b8ddf53cbea4b08929d3 Mon Sep 17 00:00:00 2001 From: davidremm Date: Fri, 18 Mar 2016 15:52:37 -0700 Subject: [PATCH 2/2] Updated CHANGELOG --- CHANGELOG.md | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d54e61d..949d605 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,23 @@ # Change Log #### All notable changes to this project will be documented in this file. This project adheres to Semantic Versioning. +## [1.0.1] - 2016-03-18 + +### Changes: +* Removing attach from export. +* Updated config validation to support beta environment. +* Added ContainerShip unit tests. +* When attached we now catch KeyboardInterrupt to allow the run to finish. + +### New Features: +* Travis CI integration. +* Codecov integration. + +### Bugs Resolved: +* Commercial invoice will now correctly set default to docker hub if the config doesn't contain a default registry. +* No longer attach to services that weren't passed during quality control. +* Fixing issue with python 3.4 arg parse. will now display usage if no arguments are passed. + ## [1.0.0] - 2016-02-02 ### Breaking Changes: @@ -23,7 +40,6 @@ create and restart only the containers that are required to. * Updated code base to support python3 * Export will no longer attempt to build and start dependents only dependencies. * added unit tests, improved test coverage -* updated config validation to support beta environment. ### New Features: * Simplified configuration file to make it easier to understand and integrate with.