Skip to content

Commit eece4eb

Browse files
committed
Update set of available Helm tool versions
Introduce version 3.19.0, and make that the default version.
1 parent 829c6ef commit eece4eb

3 files changed

Lines changed: 17 additions & 8 deletions

File tree

MODULE.bazel.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

README.rst

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -123,13 +123,13 @@ In order to use these rules in your Bazel project, you must instruct Bazel to do
123123

124124
.. code:: bazel
125125
126-
bazel_dep(name = "rules_kustomize", version = "0.4.0")
126+
bazel_dep(name = "rules_kustomize", version = "0.5.1")
127127
128128
This declaration registers a particular version of the :tool:`helm` and :tool:`kustomize` tools, respectively. By default, it registers `the latest version known to the rules <Tool Versions_>`_. You can specify a preferred version for each tool by supplying the known version slug (e.g. "v5.5.0") as an argument to the respective module extension's :field:`download` tag.
129129

130130
.. code:: bazel
131131
132-
bazel_dep(name = "rules_kustomize", version = "0.4.0")
132+
bazel_dep(name = "rules_kustomize", version = "0.5.1")
133133
134134
kustomize = use_extension("@rules_kustomize//kustomize:extensions.bzl", "kustomize")
135135
kustomize.download(version = "v5.5.0")
@@ -154,7 +154,8 @@ At present, these rules can load the following versions of these tools:
154154

155155
* :tool:`helm`
156156

157-
* `v3.17.4 <https://github.com/helm/helm/releases/tag/v3.17.4>`__ (default)
157+
* `v3.19.0 <https://github.com/helm/helm/releases/tag/v3.19.0>`__ (default)
158+
* `v3.17.4 <https://github.com/helm/helm/releases/tag/v3.17.4>`__
158159
* `v3.17.3 <https://github.com/helm/helm/releases/tag/v3.17.3>`__
159160
* `v3.13.1 <https://github.com/helm/helm/releases/tag/v3.13.1>`__
160161

kustomize/private/tools/helm/toolchain.bzl

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,14 @@
33
visibility("public")
44

55
_TOOLS_BY_RELEASE = {
6+
"v3.19.0": {
7+
struct(os = "darwin", arch = "amd64"): "09a108c0abda42e45af172be65c49125354bf7cd178dbe10435e94540e49c7b9",
8+
struct(os = "darwin", arch = "arm64"): "31513e1193da4eb4ae042eb5f98ef9aca7890cfa136f4707c8d4f70e2115bef6",
9+
struct(os = "linux", arch = "amd64"): "a7f81ce08007091b86d8bd696eb4d86b8d0f2e1b9f6c714be62f82f96a594496",
10+
struct(os = "linux", arch = "arm64"): "440cf7add0aee27ebc93fada965523c1dc2e0ab340d4348da2215737fc0d76ad",
11+
struct(os = "windows", arch = "amd64"): "6488630c2e5d5945ed990fa02fd9e99f9c6792cdbcd79eb264b6cfb90179d2d1",
12+
struct(os = "windows", arch = "arm64"): "488f7530a1776da1b46b14e988bf305c9d7419c78e7e73aeb92f198a41c9ef6b",
13+
},
614
"v3.17.4": {
715
struct(os = "darwin", arch = "amd64"): "6dfce5d8b09442205393068f5c911b8f20958edd5b67cc26f7eb3330f93225f1",
816
struct(os = "darwin", arch = "arm64"): "f4732719827a76452035641629aa92091adc4a9f1ccbc8d53a729b53e0add869",
@@ -29,7 +37,7 @@ _TOOLS_BY_RELEASE = {
2937
},
3038
}
3139

32-
_DEFAULT_TOOL_VERSION = "v3.17.4"
40+
_DEFAULT_TOOL_VERSION = "v3.19.0"
3341

3442
def known_release_versions():
3543
return _TOOLS_BY_RELEASE.keys()

0 commit comments

Comments
 (0)