Skip to content

Releases: mykso/myks

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)

v3.4.4

07 Apr 14:12
8901c0c
Compare
Choose a tag to compare

3.4.4 (2024-04-07)

Bug Fixes

  • deps: update golang.org/x/exp digest to c0f41cb (#264) (59981d0)
  • deps: update module golang.org/x/sync to v0.7.0 (#262) (d1d231d)
  • deps: update module golang.org/x/term to v0.19.0 (#263) (2e28691)
  • deps: update, use upstream vendir (f2a1159)

v3.4.3

29 Mar 18:45
8429049
Compare
Choose a tag to compare

3.4.3 (2024-03-29)

Bug Fixes

  • deps: update golang.org/x/exp digest to a685a6e (#258) (6ea07fe)
  • deps: update golang.org/x/exp digest to a85f2c6 (#254) (ead1322)
  • deps: update golang.org/x/exp digest to c7f7c64 (#252) (b1968c7)
  • edge case when processing all environments (2e17117)

v3.4.2

13 Mar 14:19
8dd306e
Compare
Choose a tag to compare

3.4.2 (2024-03-13)

Bug Fixes

  • deps: update golang.org/x/exp digest to 814bf88 (#247) (01a68ce)
  • deps: update module github.com/alecthomas/chroma/v2 to v2.13.0 (#250) (305a16d)
  • deps: update module golang.org/x/term to v0.18.0 (#249) (8043b46)

v3.4.1

21 Feb 14:25
331de3d
Compare
Choose a tag to compare

3.4.1 (2024-02-20)

Bug Fixes

  • deps: update module carvel.dev/vendir to v0.40.0 (#244) (5ab69b4)

v3.4.0

18 Feb 10:42
bba491d
Compare
Choose a tag to compare

3.4.0 (2024-02-18)

Features

  • ui: shell completion for envs and apps (#240) (ef03b96)

Bug Fixes

  • deps: update golang.org/x/exp digest to 2c58cdc (#233) (e9c329a)
  • deps: update golang.org/x/exp digest to ec58324 (#241) (c017fc5)
  • deps: update module github.com/rs/zerolog to v1.32.0 (#232) (b0e0822)
  • deps: update module golang.org/x/term to v0.17.0 (#237) (33ad190)