Skip to content

Releases: getporter/porter

v1.0.0-alpha.11

28 Feb 15:51
ecedc49

Choose a tag to compare

v1.0.0-alpha.11 Pre-release
Pre-release

Features

  • pkg/context: add function to construct user agent string for porter (#1916) by @VinozzZ
  • pkg/{config/context}: set log correlation id through env variable #1907 @VinozzZ
  • pkg/{porter, cnab},cmd,docs: remove the capability to pass a file path to the -c and -p flags (#1906) by @VinozzZ
  • Porter explain warns for docker host access (#1868) by @joshuabezaleel
  • Switch from a fork of cnab-go to main #1920 by @carolynvs
  • pkg: push invocation image under the same repo as the bundle (#1901) by @VinozzZ

Fixes

Install or Upgrade

https://release-v1.porter.sh/install/#prerelease

v1.0.0-alpha.10

16 Feb 22:24
a765934

Choose a tag to compare

v1.0.0-alpha.10 Pre-release
Pre-release

Breaking Changes

  • Remove deprecated tag field from bundle dependency #1902 by @VinozzZ

Features

Fixes

Misc

Install or Upgrade

https://release-v1.porter.sh/install/#prerelease

v0.38.9

16 Feb 14:26
1d6bd98

Choose a tag to compare

Features

  • Add shell completion command #1844

Fixes

  • Only push the current invocation image tag #1903

Misc

  • Clarify prerelease install instructions #1898
  • Link to user survey on README #1894
  • Blog: Secret-free config file #1884
  • Add a shortlink to a user survey #1891
  • Blog: IgnoreErrors and Az group command #1854
  • Reduce heading whitespace on blog posts #1871
  • Update PR checklists #1861
  • Link v1 docs from main site #1850
  • docs 1845: Add H1 anchor links #1847 by @mikebarkas
  • Fix build status badge #1839
  • Fix typo and align template divs #1842 by @mikebarkas

Install or Upgrade

v1.0.0-alpha.9

07 Feb 14:45
a93a44a

Choose a tag to compare

v1.0.0-alpha.9 Pre-release
Pre-release

Features

Fixes

  • Only include required install params in explain command #1875 by @carolynvs
  • docs/content/reference: fix typo in /reference/file-formats.md #1874 by @VinozzZ

Misc

Install or Upgrade

https://release-v1.porter.sh/install/#prerelease

v1.0.0-alpha.8

26 Jan 20:01
d4c1ddd

Choose a tag to compare

v1.0.0-alpha.8 Pre-release
Pre-release

Features

  • Support uninstall through the installation apply command #1851 by @carolynvs
  • pkg/{porter,tracing}, cmd/porter: add tracing instrumentation for list #1864 by @VinozzZ

Fixes

Misc

Install or Upgrade

https://release-v1.porter.sh/install/#prerelease

v1.0.0-alpha.7

12 Jan 20:34
ef3ab34

Choose a tag to compare

v1.0.0-alpha.7 Pre-release
Pre-release

This was a re-release of https://github.com/getporter/porter/releases/tag/v1.0.0-alpha.6 to fix a publish error.

v1.0.0-alpha.6

12 Jan 18:10
d7d2341

Choose a tag to compare

v1.0.0-alpha.6 Pre-release
Pre-release

Features

Fixes

Install or Upgrade

https://release-v1.porter.sh/install/#prerelease

v0.38.8

22 Nov 18:50
c1e1a04

Choose a tag to compare

Fixes

Misc

New Contributors

Full Changelog: v0.38.7...v0.38.8

v1.0.0-alpha.5

20 Oct 21:35
c127b43

Choose a tag to compare

v1.0.0-alpha.5 Pre-release
Pre-release

Breaking Changes

We recommend reading the release notes from the other alphas to see all the new features, and read about breaking changes that have been introduced. The data storage format for the v1 of Porter is not yet fixed. We are not providing migrations for your data between pre-release versions. We will provide migrations from the stable version of Porter (v0.38) to the new v1 format when we have a release candidate. So don't use the v1 prereleases for anything important!

Features

Fixes

Install or Upgrade

https://release-v1.porter.sh/install/#prerelease

v1.0.0-alpha.4

13 Oct 17:36
4b2126c

Choose a tag to compare

v1.0.0-alpha.4 Pre-release
Pre-release

Breaking Changes

We recommend reading the release notes from the other alphas to see all the new features, and read about breaking changes that have been introduced. The data storage format for the v1 of Porter is not yet fixed. We are not providing migrations for your data between pre-release versions. We will provide migrations from the stable version of Porter (v0.38) to the new v1 format when we have a release candidate. So don't use the v1 prereleases for anything important!

What's Changed

Full Changelog: v1.0.0-alpha.3...v1.0.0-alpha.4

Install or Upgrade

We would love for you to try out v1.0.0-alpha.4 and send us any feedback that you have! Keep in mind that the v1 prerelease is not suitable for running with production workloads, and that data migrations will not be provided or supported for v1 prerelease.
The prerelease is intended for you to try out the new features in Porter, and provide feedback but won't work with existing installations.

One way to try out Porter without messing with your current installation of Porter is to install Porter into a different
PORTER_HOME directory.

MacOS

export PORTER_HOME=~/.porterv1
export VERSION="v1.0.0-alpha.4"
curl -L https://cdn.porter.sh/$VERSION/install-mac.sh | bash

Linux

export PORTER_HOME=~/.porterv1
export VERSION="v1.0.0-alpha.4"
curl -L https://cdn.porter.sh/$VERSION/install-linux.sh | bash

Windows

$PORTER_HOME="$env:USERPROFILE\.porterv1"
$VERSION="v1.0.0-alpha.4"
(New-Object System.Net.WebClient).DownloadFile("https://cdn.porter.sh/$VERSION/install-windows.ps1", "install-porter.ps1")
.\install-porter.ps1 -PORTER_HOME $PORTER_HOME

Now when you want to use the v1 version of Porter, set the PORTER_HOME environment variable and add it to your PATH.

Posix Shells

export PORTER_HOME=~/.porterv1
export PATH="$PORTER_HOME:$PATH"

PowerShell

$env:PORTER_HOME="$env:USERPROFILE\.porterv1"
$env:PATH+=";$env:PORTER_HOME"