From 34aa5ac74a9b172638c640bc086019924e54852e Mon Sep 17 00:00:00 2001 From: Charlie Drage Date: Tue, 6 Mar 2018 10:43:38 -0500 Subject: [PATCH] 1.10.0 Release --- CHANGELOG.md | 37 +++++++++++++++++++++++++++++++++++++ README.md | 6 +++--- build/VERSION | 2 +- docs/installation.md | 6 +++--- docs/introduction.md | 6 +++--- pkg/version/version.go | 2 +- 6 files changed, 48 insertions(+), 11 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2b7f6094..4c343ecc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,41 @@ # Change Log +## [v1.10.0](https://github.com/kubernetes/kompose/tree/v1.10.0) (2018-03-06) +[Full Changelog](https://github.com/kubernetes/kompose/compare/v1.9.0...v1.10.0) + +**Closed issues:** + +- Kompose doesn't find dockerfile with context . [\#944](https://github.com/kubernetes/kompose/issues/944) +- Support for multi-port services [\#941](https://github.com/kubernetes/kompose/issues/941) +- panic: runtime error: invalid memory address or nil pointer dereference SIGSEGV related to Healthcheck [\#934](https://github.com/kubernetes/kompose/issues/934) +- Add FAQ [\#887](https://github.com/kubernetes/kompose/issues/887) +- Output option with convert -c fails. [\#886](https://github.com/kubernetes/kompose/issues/886) +- Add test cases / documentation for setting PVC volume size [\#872](https://github.com/kubernetes/kompose/issues/872) +- insufficient cpu [\#856](https://github.com/kubernetes/kompose/issues/856) +- old Kompose version in Fedora 26 [\#854](https://github.com/kubernetes/kompose/issues/854) +- Fabric8 CI not working [\#790](https://github.com/kubernetes/kompose/issues/790) +- remove dependency on docker daemon for building container images [\#696](https://github.com/kubernetes/kompose/issues/696) +- Add support for providing URL [\#605](https://github.com/kubernetes/kompose/issues/605) +- Blockers for running buildconfig tests on OpenShift [\#572](https://github.com/kubernetes/kompose/issues/572) +- git repo with detached head generates wrong `bc` [\#561](https://github.com/kubernetes/kompose/issues/561) +- move functional tests to golang [\#432](https://github.com/kubernetes/kompose/issues/432) +- Add support for s2i in buildconfigs for OpenShift [\#353](https://github.com/kubernetes/kompose/issues/353) +- kubernetes\_test.go and openshift\_test.go follow different patterns [\#346](https://github.com/kubernetes/kompose/issues/346) +- Get kompose in kubernetes repo [\#328](https://github.com/kubernetes/kompose/issues/328) +- Support converting OpenShift json \<-\> Kubernetes json/yaml [\#219](https://github.com/kubernetes/kompose/issues/219) +- RFE can we get Kompose to have a --redeploy option [\#147](https://github.com/kubernetes/kompose/issues/147) + +**Merged pull requests:** + +- Fix broken links for volume long syntax in comments [\#949](https://github.com/kubernetes/kompose/pull/949) ([hangyan](https://github.com/hangyan)) +- Refactor label names to const strings [\#948](https://github.com/kubernetes/kompose/pull/948) ([hangyan](https://github.com/hangyan)) +- Fix image build path error [\#946](https://github.com/kubernetes/kompose/pull/946) ([hangyan](https://github.com/hangyan)) +- Fix custom output and charts conflict error [\#938](https://github.com/kubernetes/kompose/pull/938) ([hangyan](https://github.com/hangyan)) +- Variable name should not be the same as imported package name [\#937](https://github.com/kubernetes/kompose/pull/937) ([hangyan](https://github.com/hangyan)) +- Fix healthcheck parser nil pointer error [\#936](https://github.com/kubernetes/kompose/pull/936) ([hangyan](https://github.com/hangyan)) +- Add doc for volume size label [\#935](https://github.com/kubernetes/kompose/pull/935) ([hangyan](https://github.com/hangyan)) +- Fixed typo [\#920](https://github.com/kubernetes/kompose/pull/920) ([pborreli](https://github.com/pborreli)) + ## [v1.9.0](https://github.com/kubernetes/kompose/tree/v1.9.0) (2018-02-13) [Full Changelog](https://github.com/kubernetes/kompose/compare/v1.8.0...v1.9.0) @@ -16,6 +52,7 @@ **Merged pull requests:** +- 1.9.0 Release [\#943](https://github.com/kubernetes/kompose/pull/943) ([cdrage](https://github.com/cdrage)) - Refactor package app to use const rather than raw string [\#933](https://github.com/kubernetes/kompose/pull/933) ([hangyan](https://github.com/hangyan)) - Fix typos in Makefile [\#932](https://github.com/kubernetes/kompose/pull/932) ([hangyan](https://github.com/hangyan)) - Fix typo in function name [\#931](https://github.com/kubernetes/kompose/pull/931) ([hangyan](https://github.com/hangyan)) diff --git a/README.md b/README.md index 5c3d62dc..16127822 100644 --- a/README.md +++ b/README.md @@ -44,10 +44,10 @@ __Linux and macOS:__ ```sh # Linux -curl -L https://github.com/kubernetes/kompose/releases/download/v1.9.0/kompose-linux-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.10.0/kompose-linux-amd64 -o kompose # macOS -curl -L https://github.com/kubernetes/kompose/releases/download/v1.9.0/kompose-darwin-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.10.0/kompose-darwin-amd64 -o kompose chmod +x kompose sudo mv ./kompose /usr/local/bin/kompose @@ -55,7 +55,7 @@ sudo mv ./kompose /usr/local/bin/kompose __Windows:__ -Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.9.0/kompose-windows-amd64.exe) and add the binary to your PATH. +Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.10.0/kompose-windows-amd64.exe) and add the binary to your PATH. ## Shell autocompletion diff --git a/build/VERSION b/build/VERSION index f8e233b2..81c871de 100644 --- a/build/VERSION +++ b/build/VERSION @@ -1 +1 @@ -1.9.0 +1.10.0 diff --git a/docs/installation.md b/docs/installation.md index b9ef226d..4e1b75e7 100644 --- a/docs/installation.md +++ b/docs/installation.md @@ -10,10 +10,10 @@ __Linux and macOS:__ ```sh # Linux -curl -L https://github.com/kubernetes/kompose/releases/download/v1.9.0/kompose-linux-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.10.0/kompose-linux-amd64 -o kompose # macOS -curl -L https://github.com/kubernetes/kompose/releases/download/v1.9.0/kompose-darwin-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.10.0/kompose-darwin-amd64 -o kompose chmod +x kompose sudo mv ./kompose /usr/local/bin/kompose @@ -21,7 +21,7 @@ sudo mv ./kompose /usr/local/bin/kompose __Windows:__ -Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.9.0/kompose-windows-amd64.exe) and add the binary to your PATH. +Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.10.0/kompose-windows-amd64.exe) and add the binary to your PATH. #### Nightly / master release diff --git a/docs/introduction.md b/docs/introduction.md index 5da79d64..b3eea386 100644 --- a/docs/introduction.md +++ b/docs/introduction.md @@ -47,13 +47,13 @@ Grab the Kompose binary! ```sh # Linux -curl -L https://github.com/kubernetes/kompose/releases/download/v1.9.0/kompose-linux-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.10.0/kompose-linux-amd64 -o kompose # macOS -curl -L https://github.com/kubernetes/kompose/releases/download/v1.9.0/kompose-darwin-amd64 -o kompose +curl -L https://github.com/kubernetes/kompose/releases/download/v1.10.0/kompose-darwin-amd64 -o kompose chmod +x kompose sudo mv ./kompose /usr/local/bin/kompose ``` -_Windows:_ Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.9.0/kompose-windows-amd64.exe) and add the binary to your PATH. +_Windows:_ Download from [GitHub](https://github.com/kubernetes/kompose/releases/download/v1.10.0/kompose-windows-amd64.exe) and add the binary to your PATH. diff --git a/pkg/version/version.go b/pkg/version/version.go index 1c1dc685..2c806378 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -2,7 +2,7 @@ package version var ( // VERSION is version number that wil be displayed when running ./kompose version - VERSION = "1.9.0" + VERSION = "1.10.0" // GITCOMMIT is hash of the commit that wil be displayed when running ./kompose version // this will be overwritten when running build like this: go build -ldflags="-X github.com/kubernetes/kompose/pkg/version.GITCOMMIT=$(GITCOMMIT)" // HEAD is default indicating that this was not set during build