Skip to content

Releases: mykso/myks

v4.2.3

11 Sep 08:02
a767b3a
Compare
Choose a tag to compare

4.2.3 (2024-09-11)

Bug Fixes

  • deps: update module carvel.dev/vendir to v0.41.0 (#325) (e7e3d51)
  • deps: update module carvel.dev/vendir to v0.41.1 (#332) (04b6fc4)
  • deps: update module carvel.dev/vendir to v0.42.0 (#334) (1149696)
  • deps: update module github.com/creasty/defaults to v1.8.0 (#329) (1032aed)
  • deps: update module golang.org/x/sync to v0.8.0 (#327) (9b8f7e3)
  • deps: update module golang.org/x/term to v0.23.0 (#328) (2de0605)
  • deps: update module golang.org/x/term to v0.24.0 (#333) (0c879da)

v4.2.2

16 Jul 12:59
700019b
Compare
Choose a tag to compare

4.2.2 (2024-07-16)

Bug Fixes

  • deps: update module carvel.dev/ytt to v0.50.0 (#324) (588d600)
  • deps: update module golang.org/x/term to v0.22.0 (#321) (2f63e3c)

v4.2.1

17 Jun 13:46
609098d
Compare
Choose a tag to compare

4.2.1 (2024-06-17)

Bug Fixes

  • deps: update module github.com/spf13/cobra to v1.8.1 (#317) (8be47e3)

v4.2.0

13 Jun 21:10
e6c678c
Compare
Choose a tag to compare

4.2.0 (2024-06-13)

Features

Bug Fixes

  • deps: update module carvel.dev/vendir to v0.40.2 (#313) (7e71793)
  • deps: update module carvel.dev/ytt to v0.49.1 (#314) (10825c2)

v4.1.3

05 Jun 21:08
5249d6a
Compare
Choose a tag to compare

4.1.3 (2024-06-05)

Bug Fixes

  • deps: update module github.com/alecthomas/chroma/v2 to v2.14.0 (#301) (fc2ca8a)
  • deps: update module github.com/rs/zerolog to v1.33.0 (#303) (9176268)
  • deps: update module github.com/spf13/viper to v1.19.0 (#305) (8a6d8b7)
  • deps: update module golang.org/x/term to v0.21.0 (#307) (5452ab9)

v4.1.2

20 May 22:54
fe8e075
Compare
Choose a tag to compare

4.1.2 (2024-05-20)

Bug Fixes

  • adjust the initial .gitignore for the latest changes (#294) (2e1940f)

v4.1.1

15 May 14:18
e790e86
Compare
Choose a tag to compare

4.1.1 (2024-05-15)

Bug Fixes

  • switch generated data values to schema to lower priority (#290) (8f86a11)

v4.1.0

15 May 11:43
5bbf4c4
Compare
Choose a tag to compare

4.1.0 (2024-05-15)

Features

  • enchance cleanup command to take care of cache (#288) (da36786)

v4.0.1

12 May 22:22
2eedf0f
Compare
Choose a tag to compare

4.0.1 (2024-05-12)

Bug Fixes

  • empty ytt rendering step output is not an error but warning (8ba573a)
  • propagate errors from rendering steps (ca8f9ca)

v4.0.0

11 May 22:53
9e4e0c4
Compare
Choose a tag to compare

4.0.0 (2024-05-11)

ℹ Upgrading to 4.0.0

In the new major version we introduced a central cache for external sources downloaded by vendir. With that, we also changed location of most of the myks-managed files. Here is the list of changes (examples are using the file system structure created by the myks init command):

  • <env>/_apps/<app>/.myks and <env>/_apps/<app>/vendor directories are moved under the .myks directory in the repository root. For example:
    • contents of envs/mykso/dev/_apps/argocd/.myks is moved under .myks/envs/mykso/dev/_apps/argocd,
    • envs/mykso/dev/_apps/argocd/vendor directory is now .myks/envs/mykso/dev/_apps/argocd/vendor.
  • vendor directories now contain links to directories in the central cache instead of files and directories as before.
  • The new .myks/vendir-cache directory contains cache entries named using (upon availability) vendir contents type, name, version and config hash.

There is nothing required to be done before you can start using the new myks. However, there are a few things to keep in mind:

  1. The first run of the new version will download all the sources used in your project, it might take a while.

  2. The old files are not cleaned up, so you can easily rollback to the old myks if needed. Otherwise, you have to do remove the files manually:

    # First, inspect what will be removed:
    find envs -name .myks
    # Then remove:
    find envs -name .myks -exec rm -rf {} \;
    # First, inspect what will be removed:
    find envs -name vendor
    # Then remove:
    find envs -name vendor -exec rm -rf {} \;

⚠ BREAKING CHANGES

  • central cache with symlinks (#274)

Features

Bug Fixes

  • deps: update module carvel.dev/vendir to v0.40.1 (#270) (fec8d50)
  • deps: update module golang.org/x/term to v0.20.0 (#278) (7074c8e)
  • remove ytt dependency everywhere (#284) (8265abc)
  • ship example prototypes with lazy flag enabled (1f91aa0)