diff --git a/USAGE.md b/USAGE.md index 1fa445a3..8b85d875 100644 --- a/USAGE.md +++ b/USAGE.md @@ -3,9 +3,9 @@ To run Envoy, execute `func-e run -c your_envoy_config.yaml`. This downloads and installs the latest version of Envoy for you. To list versions of Envoy you can use, execute `func-e versions -a`. To -choose one, invoke `func-e use 1.25.4`. This installs into -`$FUNC_E_HOME/versions/1.25.4`, if not already present. You may also use -minor version, such as `func-e use 1.25`. +choose one, invoke `func-e use 1.26.3`. This installs into +`$FUNC_E_HOME/versions/1.26.3`, if not already present. You may also use +minor version, such as `func-e use 1.26`. You may want to override `$ENVOY_VERSIONS_URL` to supply custom builds or otherwise control the source of Envoy binaries. When overriding, validate diff --git a/e2e/func-e_use_test.go b/e2e/func-e_use_test.go index e89f1d03..4be3f04a 100644 --- a/e2e/func-e_use_test.go +++ b/e2e/func-e_use_test.go @@ -83,7 +83,7 @@ func TestFuncEUse_UnknownMinorVersion(t *testing.T) { // That or don't update LastKnownEnvoy until it is consistent. func TestFuncEUse_MinorVersion(t *testing.T) { // The intended minor version to be installed. This version is known to have darwin, linux, and windows binaries. - minorVersion := "1.18" + minorVersion := "1.24" allVersions, _, err := funcEExec("versions", "-a") require.NoError(t, err) @@ -130,7 +130,7 @@ func TestFuncEUse_MinorVersion(t *testing.T) { stdout, stderr, err := funcEExec("--home-dir", homeDir, "use", minorVersion) require.NoError(t, err) - require.Regexp(t, `^looking up the latest patch for Envoy version 1.18\r?\ndownloading https:.*tar.*z\r?\n$`, stdout) + require.Regexp(t, `^looking up the latest patch for Envoy version 1.24\r?\ndownloading https:.*tar.*z\r?\n$`, stdout) require.Empty(t, stderr) // The binary was installed. @@ -146,7 +146,7 @@ func TestFuncEUse_MinorVersion(t *testing.T) { t.Run("use upgraded version after downloaded", func(t *testing.T) { stdout, stderr, err := funcEExec("--home-dir", homeDir, "use", minorVersion) require.NoError(t, err) - require.Equal(t, moreos.Sprintf("looking up the latest patch for Envoy version 1.18\n%s is already downloaded\n", upgradedVersion), stdout) + require.Equal(t, moreos.Sprintf("looking up the latest patch for Envoy version 1.24\n%s is already downloaded\n", upgradedVersion), stdout) require.Empty(t, stderr) }) diff --git a/internal/version/last_known_envoy.txt b/internal/version/last_known_envoy.txt index 970cecf0..11263103 100644 --- a/internal/version/last_known_envoy.txt +++ b/internal/version/last_known_envoy.txt @@ -1 +1 @@ -1.25.4 \ No newline at end of file +1.26.3 \ No newline at end of file diff --git a/packaging/nfpm/func-e.8 b/packaging/nfpm/func-e.8 index 7c2452b7..e235498e 100644 --- a/packaging/nfpm/func-e.8 +++ b/packaging/nfpm/func-e.8 @@ -32,9 +32,9 @@ To run Envoy, execute `func-e run -c your_envoy_config.yaml`. This downloads and installs the latest version of Envoy for you. To list versions of Envoy you can use, execute `func-e versions -a`. To -choose one, invoke `func-e use 1.25.4`. This installs into -`$FUNC_E_HOME/versions/1.25.4`, if not already present. You may also use -minor version, such as `func-e use 1.25`. +choose one, invoke `func-e use 1.26.3`. This installs into +`$FUNC_E_HOME/versions/1.26.3`, if not already present. You may also use +minor version, such as `func-e use 1.26`. You may want to override `$ENVOY_VERSIONS_URL` to supply custom builds or otherwise control the source of Envoy binaries. When overriding, validate