This repository has been archived by the owner on Jan 19, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #634 from cdrage/release-0.4.4
0.4.4 Release
- Loading branch information
Showing
7 changed files
with
60 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,57 @@ | ||
## Atomic App 0.4.4 (03-15-2016) | ||
|
||
This release includes a major update to our documentation as well as the user experience when deploying an Atomic App. | ||
|
||
The main features are: | ||
|
||
- Major update to documentation | ||
- Cleaner logging output | ||
- Error-out validation on JSON/YAML | ||
|
||
UI: | ||
|
||
- Fix --version output on CLI | ||
- Handle docker exception errors | ||
- Inform on wrong provider name provided within answers.conf | ||
|
||
Other: | ||
|
||
- Fix requirements on 'make test' | ||
|
||
For a full list of changes between 0.4.4 and 0.4.3 please see the git shortlog below! | ||
|
||
``` | ||
Charlie Drage <[email protected]> (10): | ||
Doc for current functions implemented by spec | ||
Fix minor markdown error in spec_coverage | ||
Major update to README and documentation | ||
Error cleanly on missing Nulecule or invalid formatted Nulecule | ||
Multiple problems with issuestats.com | ||
Add tests for missing Nulecule or wrongly formatted file for missing | ||
Change from ReadWrite to ReadWriteOnce in persistent storage tests | ||
Add Persistent Storage validation on ReadWriteOnce, etc. | ||
Remove time from default output | ||
Convert to epoch time | ||
Dusty Mabe <[email protected]> (2): | ||
docs: fix broken link | ||
logging: fix duplicated log messages | ||
Preeti Chandrashekar <[email protected]> (1): | ||
Minor edits to atomicapp_lifecycle.md | ||
Shubham Minglani <[email protected]> (2): | ||
Handle docker pull exception, improve #441, fix #568 | ||
fix --version output, fix #481 | ||
Suraj Deshmukh <[email protected]> (5): | ||
Install requirements before make test | ||
Wrong provider name in answers.conf, exits AtomicApp with readable error | ||
Typo in providers docs | ||
Instruction to skip travis CI | ||
Inform user when provider not specified | ||
``` | ||
|
||
## Atomic App 0.4.3 (03-01-2016) | ||
|
||
You'll now see pretty colors with logging / output! | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM centos:7 | |
|
||
MAINTAINER Red Hat, Inc. <[email protected]> | ||
|
||
ENV ATOMICAPPVERSION="0.4.3" | ||
ENV ATOMICAPPVERSION="0.4.4" | ||
|
||
LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \ | ||
io.openshift.generate.job=true \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM centos:7 | |
|
||
MAINTAINER Red Hat, Inc. <[email protected]> | ||
|
||
ENV ATOMICAPPVERSION="0.4.3" | ||
ENV ATOMICAPPVERSION="0.4.4" | ||
|
||
LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \ | ||
io.openshift.generate.job=true \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM debian:jessie | |
|
||
MAINTAINER Red Hat, Inc. <[email protected]> | ||
|
||
ENV ATOMICAPPVERSION="0.4.3" | ||
ENV ATOMICAPPVERSION="0.4.4" | ||
|
||
LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \ | ||
RUN="docker run -it --rm \${OPT1} --privileged -v \${PWD}:/atomicapp -v /run:/run -v /:/host --net=host --name \${NAME} -e NAME=\${NAME} -e IMAGE=\${IMAGE} \${IMAGE} \${OPT2} run \${OPT3}" \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ FROM fedora:23 | |
|
||
MAINTAINER Red Hat, Inc. <[email protected]> | ||
|
||
ENV ATOMICAPPVERSION="0.4.3" | ||
ENV ATOMICAPPVERSION="0.4.4" | ||
|
||
LABEL io.projectatomic.nulecule.atomicappversion=${ATOMICAPPVERSION} \ | ||
io.openshift.generate.job=true \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,7 +41,7 @@ def _install_requirements(): | |
|
||
setup( | ||
name='atomicapp', | ||
version='0.4.3', | ||
version='0.4.4', | ||
description='A tool to install and run Nulecule apps', | ||
author='Red Hat, Inc.', | ||
author_email='[email protected]', | ||
|