diff --git a/CHANGELOG.md b/CHANGELOG.md
index 2fa437bd3e..d93b5ed6f2 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,4 +1,28 @@
+
+## [0.13.25](https://github.com/garden-io/garden/compare/0.13.24...0.13.25) (2024-02-13)
+
+### Bug Fixes
+
+* **buildkit:** run command from context dir ([#5712](https://github.com/garden-io/garden/issues/5712)) ([f93ecc6e7](https://github.com/garden-io/garden/commit/f93ecc6e7))
+* **ci:** macos cross build error ([#5694](https://github.com/garden-io/garden/issues/5694)) ([4de3cc27c](https://github.com/garden-io/garden/commit/4de3cc27c))
+* **cli:** only overwrite terminal writer if using Ink ([#5688](https://github.com/garden-io/garden/issues/5688)) ([171912919](https://github.com/garden-io/garden/commit/171912919))
+* **core:** don't execute disabled dependencies ([#5697](https://github.com/garden-io/garden/issues/5697)) ([5bcb0960b](https://github.com/garden-io/garden/commit/5bcb0960b))
+* **get-config:** omit internal field from output ([#5716](https://github.com/garden-io/garden/issues/5716)) ([3b6579bac](https://github.com/garden-io/garden/commit/3b6579bac))
+* **git:** fix file list caching bug for repo mode ([#5710](https://github.com/garden-io/garden/issues/5710)) ([ca7f997f4](https://github.com/garden-io/garden/commit/ca7f997f4))
+* **k8s:** don't throw when log fetching fails ([#5690](https://github.com/garden-io/garden/issues/5690)) ([993431923](https://github.com/garden-io/garden/commit/993431923))
+
+### Features
+
+* **config:** add environments field on actions ([#5686](https://github.com/garden-io/garden/issues/5686)) ([a7bcf8c6b](https://github.com/garden-io/garden/commit/a7bcf8c6b))
+
+### Improvements
+
+* update `kubectl` version to `1.29.1` ([#5693](https://github.com/garden-io/garden/issues/5693)) ([d8fc63fad](https://github.com/garden-io/garden/commit/d8fc63fad))
+* **core:** include path in template errors ([#5692](https://github.com/garden-io/garden/issues/5692)) ([5dfb0f7cb](https://github.com/garden-io/garden/commit/5dfb0f7cb))
+* **ext-tools:** always print versions in `garden tools` output ([#5718](https://github.com/garden-io/garden/issues/5718)) ([e88bb86bc](https://github.com/garden-io/garden/commit/e88bb86bc))
+* **helm:** update helm to 3.14.0 ([#5698](https://github.com/garden-io/garden/issues/5698)) ([115d85cae](https://github.com/garden-io/garden/commit/115d85cae))
+
## [0.13.24](https://github.com/garden-io/garden/compare/0.13.23...0.13.24) (2024-01-30)
diff --git a/README.md b/README.md
index ec42095290..a80972c68a 100644
--- a/README.md
+++ b/README.md
@@ -16,7 +16,7 @@ _If you love Garden, please ★ star this repository to show your support :green
•
Docs
•
- Examples
+ Examples
•
Blog
•
diff --git a/cli/package.json b/cli/package.json
index ec0d648f4d..e66344c4f0 100644
--- a/cli/package.json
+++ b/cli/package.json
@@ -1,6 +1,6 @@
{
"name": "@garden-io/cli",
- "version": "0.13.24",
+ "version": "0.13.25",
"description": "Cloud native testing platform for testing and developing container applications on Kubernetes",
"type": "module",
"repository": {
diff --git a/core/package.json b/core/package.json
index 34d4a832eb..6aa0ff7c32 100644
--- a/core/package.json
+++ b/core/package.json
@@ -1,6 +1,6 @@
{
"name": "@garden-io/core",
- "version": "0.13.24",
+ "version": "0.13.25",
"description": "A full-featured development framework for containers and serverless",
"type": "module",
"repository": {
diff --git a/docs/getting-started/quickstart.md b/docs/getting-started/quickstart.md
index e38b51c83d..11fadc774f 100644
--- a/docs/getting-started/quickstart.md
+++ b/docs/getting-started/quickstart.md
@@ -115,6 +115,6 @@ If you'd like to better understand how a Garden project is configured, we recomm
through our [first project tutorial](../tutorials/your-first-project/README.md) which walks you through configuring a Garden project step-by-step.
If you like to dive right in and configure your own project for Garden, we recommend referencing our [example
-projects on GitHub](https://github.com/garden-io/garden/tree/0.13.24/examples) and the section of our docs title [Using Garden](../using-garden/configuration-overview.md), which covers all parts of Garden in detail.
+projects on GitHub](https://github.com/garden-io/garden/tree/0.13.25/examples) and the section of our docs title [Using Garden](../using-garden/configuration-overview.md), which covers all parts of Garden in detail.
If you have any questions or feedback—or just want to say hi 🙂—we encourage you to join our [Discord community](https://go.garden.io/discord)!
diff --git a/docs/guides/using-garden-in-circleci.md b/docs/guides/using-garden-in-circleci.md
index 9154744831..65c30afe0d 100644
--- a/docs/guides/using-garden-in-circleci.md
+++ b/docs/guides/using-garden-in-circleci.md
@@ -11,7 +11,7 @@ For the purposes of this example we'll be using [CircleCI](https://circleci.com)
## Project overview
-The project is based on our basic [demo-project](https://github.com/garden-io/garden/tree/0.13.24/examples/demo-project) example, but configured for multiple environments. Additionally it contains a CircleCI config file. You'll find the entire source code [here](https://github.com/garden-io/ci-demo-project).
+The project is based on our basic [demo-project](https://github.com/garden-io/garden/tree/0.13.25/examples/demo-project) example, but configured for multiple environments. Additionally it contains a CircleCI config file. You'll find the entire source code [here](https://github.com/garden-io/ci-demo-project).
The CI pipeline is configured so that Garden tests the project and deploys it to a **preview** environment on every pull request. Additionally, it tests the project and deploys it to a separate **staging** environment on every merge to the `main` branch.
diff --git a/docs/k8s-plugins/actions/deploy/kubernetes.md b/docs/k8s-plugins/actions/deploy/kubernetes.md
index b75ce8ec76..d6d119d3eb 100644
--- a/docs/k8s-plugins/actions/deploy/kubernetes.md
+++ b/docs/k8s-plugins/actions/deploy/kubernetes.md
@@ -228,7 +228,7 @@ spec:
With this approach, you can add the Garden action to your project without making any changes to existing config.
-Here's a [complete example project](https://github.com/garden-io/garden/tree/0.13.24/examples/k8s-deploy-patch-resources) using this approach.
+Here's a [complete example project](https://github.com/garden-io/garden/tree/0.13.25/examples/k8s-deploy-patch-resources) using this approach.
### Option 2: Using Garden template strings
@@ -259,7 +259,7 @@ spec:
image: ${actions.build.api.outputs.deployment-image-id} # <--- Garden will resolve this to the correct image before applying the manifest
```
-Here's a [complete example](https://github.com/garden-io/garden/tree/0.13.24/examples/k8s-deploy-shared-manifests) using this approach. The downside though is that this is no longer a valid Kubernetes manifest.
+Here's a [complete example](https://github.com/garden-io/garden/tree/0.13.25/examples/k8s-deploy-shared-manifests) using this approach. The downside though is that this is no longer a valid Kubernetes manifest.
Similarly, if you define your manifest inline you can set the image like so:
diff --git a/docs/k8s-plugins/remote-k8s/ingress-and-dns.md b/docs/k8s-plugins/remote-k8s/ingress-and-dns.md
index 79cf5a77a1..a083573026 100644
--- a/docs/k8s-plugins/remote-k8s/ingress-and-dns.md
+++ b/docs/k8s-plugins/remote-k8s/ingress-and-dns.md
@@ -5,7 +5,7 @@ order: 3
# 3. Set Up Ingress, TLS and DNS
-By default, Garden will not install an ingress controller for remote environments. This can be toggled by setting the [`setupIngressController` flag](../../reference/providers/kubernetes.md#providerssetupingresscontroller) to `nginx`. Alternatively, you can set up your own ingress controller, e.g. using [Traefik](https://traefik.io/), [Ambassador](https://www.getambassador.io/) or [Istio](https://istio.io/). You can find an example for [using Garden with Istio](https://github.com/garden-io/garden/tree/0.13.24/examples/istio) in our [examples directory](https://github.com/garden-io/garden/tree/0.13.24/examples).
+By default, Garden will not install an ingress controller for remote environments. This can be toggled by setting the [`setupIngressController` flag](../../reference/providers/kubernetes.md#providerssetupingresscontroller) to `nginx`. Alternatively, you can set up your own ingress controller, e.g. using [Traefik](https://traefik.io/), [Ambassador](https://www.getambassador.io/) or [Istio](https://istio.io/). You can find an example for [using Garden with Istio](https://github.com/garden-io/garden/tree/0.13.25/examples/istio) in our [examples directory](https://github.com/garden-io/garden/tree/0.13.25/examples).
You'll also need to point one or more DNS entries to your cluster, and configure a TLS certificate for the hostnames
you will expose for ingress.
diff --git a/docs/reference/action-types/Build/jib-container.md b/docs/reference/action-types/Build/jib-container.md
index 02995646bb..2f9ab9aa8e 100644
--- a/docs/reference/action-types/Build/jib-container.md
+++ b/docs/reference/action-types/Build/jib-container.md
@@ -7,7 +7,7 @@ tocTitle: "`jib-container` Build"
## Description
-Extends the [container type](./container.md) to build the image with [Jib](https://github.com/GoogleContainerTools/jib). Use this to efficiently build container images for Java services. Check out the [jib example](https://github.com/garden-io/garden/tree/0.13.24/examples/jib-container) to see it in action.
+Extends the [container type](./container.md) to build the image with [Jib](https://github.com/GoogleContainerTools/jib). Use this to efficiently build container images for Java services. Check out the [jib example](https://github.com/garden-io/garden/tree/0.13.25/examples/jib-container) to see it in action.
The image is always built locally, directly from the source directory (see the note on that below), before shipping the container image to the right place. You can set `build.tarOnly: true` to only build the image as a tarball.
diff --git a/docs/reference/module-types/jib-container.md b/docs/reference/module-types/jib-container.md
index 0e8dfa896d..484f85695c 100644
--- a/docs/reference/module-types/jib-container.md
+++ b/docs/reference/module-types/jib-container.md
@@ -11,7 +11,7 @@ Modules are deprecated and will be removed in version `0.14`. Please use [action
## Description
-Extends the [container type](./container.md) to build the image with [Jib](https://github.com/GoogleContainerTools/jib). Use this to efficiently build container images for Java services. Check out the [jib example](https://github.com/garden-io/garden/tree/0.13.24/examples/jib-container) to see it in action.
+Extends the [container type](./container.md) to build the image with [Jib](https://github.com/GoogleContainerTools/jib). Use this to efficiently build container images for Java services. Check out the [jib example](https://github.com/garden-io/garden/tree/0.13.25/examples/jib-container) to see it in action.
The image is always built locally, directly from the source directory (see the note on that below), before shipping the container image to the right place. You can set `build.tarOnly: true` to only build the image as a tarball.
diff --git a/docs/reference/providers/conftest-kubernetes.md b/docs/reference/providers/conftest-kubernetes.md
index 223b05236a..a9fb6562f6 100644
--- a/docs/reference/providers/conftest-kubernetes.md
+++ b/docs/reference/providers/conftest-kubernetes.md
@@ -14,7 +14,7 @@ Simply add this provider to your project configuration, and configure your polic
reference for how to configure default policies, default namespaces, and test failure thresholds for the generated
actions.
-See the [conftest example project](https://github.com/garden-io/garden/tree/0.13.24/examples/conftest) for a simple
+See the [conftest example project](https://github.com/garden-io/garden/tree/0.13.25/examples/conftest) for a simple
usage example.
Below is the full schema reference for the provider configuration. For an introduction to configuring a Garden project with providers, please look at our [configuration guide](../../using-garden/configuration-overview.md).
diff --git a/docs/reference/providers/conftest.md b/docs/reference/providers/conftest.md
index a0a10d3cc9..d623a2c480 100644
--- a/docs/reference/providers/conftest.md
+++ b/docs/reference/providers/conftest.md
@@ -9,7 +9,7 @@ tocTitle: "`conftest`"
This provider allows you to validate your configuration files against policies that you specify, using the [conftest tool](https://github.com/open-policy-agent/conftest) and Open Policy Agent rego query files. The provider creates Test action types of the same name, which allow you to specify files to validate.
-Note that, in many cases, you'll actually want to use more specific providers that can automatically configure your `conftest` actions, e.g. the [`conftest-container`](./conftest-container.md) and/or [`conftest-kubernetes`](./conftest-kubernetes.md) providers. See the [conftest example project](https://github.com/garden-io/garden/tree/0.13.24/examples/conftest) for a simple usage example of the latter.
+Note that, in many cases, you'll actually want to use more specific providers that can automatically configure your `conftest` actions, e.g. the [`conftest-container`](./conftest-container.md) and/or [`conftest-kubernetes`](./conftest-kubernetes.md) providers. See the [conftest example project](https://github.com/garden-io/garden/tree/0.13.25/examples/conftest) for a simple usage example of the latter.
If those don't match your needs, you can use this provider directly and manually configure your `conftest` actions. Simply add this provider to your project configuration, and see the [conftest action documentation](../action-types/Test/conftest.md) for a detailed reference. Also, check out the below reference for how to configure default policies, default namespaces, and test failure thresholds for all `conftest` actions.
diff --git a/docs/reference/providers/hadolint.md b/docs/reference/providers/hadolint.md
index b1b4ef972f..c1015a8125 100644
--- a/docs/reference/providers/hadolint.md
+++ b/docs/reference/providers/hadolint.md
@@ -11,7 +11,7 @@ This provider creates a [`hadolint`](../action-types/Test/hadolint.md) Test acti
To configure `hadolint`, you can use `.hadolint.yaml` config files. For each Test, we first look for one in the relevant action's root. If none is found there, we check the project root, and if none is there we fall back to default configuration. Note that for reasons of portability, we do not fall back to global/user configuration files.
-See the [hadolint docs](https://github.com/hadolint/hadolint#configure) for details on how to configure it, and the [hadolint example project](https://github.com/garden-io/garden/tree/0.13.24/examples/hadolint) for a usage example.
+See the [hadolint docs](https://github.com/hadolint/hadolint#configure) for details on how to configure it, and the [hadolint example project](https://github.com/garden-io/garden/tree/0.13.25/examples/hadolint) for a usage example.
Below is the full schema reference for the provider configuration. For an introduction to configuring a Garden project with providers, please look at our [configuration guide](../../using-garden/configuration-overview.md).
diff --git a/docs/reference/providers/jib.md b/docs/reference/providers/jib.md
index 5313509a56..16b63d8cb3 100644
--- a/docs/reference/providers/jib.md
+++ b/docs/reference/providers/jib.md
@@ -11,7 +11,7 @@ tocTitle: "`jib`"
Provides support for [Jib](https://github.com/GoogleContainerTools/jib) via the [jib action type](../action-types/Build/jib-container.md).
-Use this to efficiently build container images for Java services. Check out the [jib example](https://github.com/garden-io/garden/tree/0.13.24/examples/jib-container) to see it in action.
+Use this to efficiently build container images for Java services. Check out the [jib example](https://github.com/garden-io/garden/tree/0.13.25/examples/jib-container) to see it in action.
Below is the full schema reference for the provider configuration. For an introduction to configuring a Garden project with providers, please look at our [configuration guide](../../using-garden/configuration-overview.md).
diff --git a/docs/terraform-plugin/about.md b/docs/terraform-plugin/about.md
index 276b0392b3..6987ae26f0 100644
--- a/docs/terraform-plugin/about.md
+++ b/docs/terraform-plugin/about.md
@@ -15,7 +15,7 @@ Under the hood, Garden simply wraps Terraform, so there's no magic involved. Gar
Terraform resources can be provisioned through the `terraform` provider when initializing Garden, or via `terraform` actions that are utilized like other actions in your stack.
-The former, having a single Terraform stack for your whole project, is most helpful if other provider configurations need to reference the outputs from your Terraform stack, or if most/all of your services depend on the infrastructure provisioned in your Terraform stack. A good example of this is the [terraform-gke example](https://github.com/garden-io/garden/tree/0.13.24/examples/terraform-gke) project, which provisions a GKE cluster that the `kubernetes` provider then runs on, along with the services in the project. The drawback is that Garden doesn't currently watch for changes in those Terraform files, and you need to restart to apply new changes, or apply them manually.
+The former, having a single Terraform stack for your whole project, is most helpful if other provider configurations need to reference the outputs from your Terraform stack, or if most/all of your services depend on the infrastructure provisioned in your Terraform stack. A good example of this is the [terraform-gke example](https://github.com/garden-io/garden/tree/0.13.25/examples/terraform-gke) project, which provisions a GKE cluster that the `kubernetes` provider then runs on, along with the services in the project. The drawback is that Garden doesn't currently watch for changes in those Terraform files, and you need to restart to apply new changes, or apply them manually.
Using `terraform` _Deploy actions_, can be better if your other providers don't need to reference the stack outputs but other Deploy, Run and Test actions do. In this style, you can basically create small Terraform stacks that are part of your Stack Graph much like other services. A good example would be deploying a database instance, that other services in your project can then connect to.
@@ -87,6 +87,6 @@ Now when you deploy a new Terraformed environment, the new backend statefile wil
## Next steps
-Check out the [terraform-gke example](https://github.com/garden-io/garden/tree/0.13.24/examples/terraform-gke) project. Also take a look at the [Terraform provider reference](../reference/providers/terraform.md) and the [Terraform Deploy action type reference](../reference/action-types/Deploy/terraform.md) for details on all the configuration parameters.
+Check out the [terraform-gke example](https://github.com/garden-io/garden/tree/0.13.25/examples/terraform-gke) project. Also take a look at the [Terraform provider reference](../reference/providers/terraform.md) and the [Terraform Deploy action type reference](../reference/action-types/Deploy/terraform.md) for details on all the configuration parameters.
If you're having issues with Terraform itself, please refer to the [official docs](https://www.terraform.io/docs/index.html).
diff --git a/docs/terraform-plugin/configure-provider.md b/docs/terraform-plugin/configure-provider.md
index 867754c9c3..872ea349c1 100644
--- a/docs/terraform-plugin/configure-provider.md
+++ b/docs/terraform-plugin/configure-provider.md
@@ -17,7 +17,7 @@ providers:
...
```
-If you'd like to apply the stack when starting Garden, and then reference the stack outputs in other providers (or actions), you need to add a couple of more flags. Here's the project config from the aforementioned [terraform-gke example](https://github.com/garden-io/garden/tree/0.13.24/examples/terraform-gke):
+If you'd like to apply the stack when starting Garden, and then reference the stack outputs in other providers (or actions), you need to add a couple of more flags. Here's the project config from the aforementioned [terraform-gke example](https://github.com/garden-io/garden/tree/0.13.25/examples/terraform-gke):
```yaml
apiVersion: garden.io/v1
diff --git a/docs/use-cases/jumpstart-idp.md b/docs/use-cases/jumpstart-idp.md
index 5634ac2f56..2e1b9c92f3 100644
--- a/docs/use-cases/jumpstart-idp.md
+++ b/docs/use-cases/jumpstart-idp.md
@@ -39,6 +39,6 @@ Join our [Discord community](https://go.garden.io/discord) 🌸 for access to Ga
## Examples
-- [Remote sources example project](https://github.com/garden-io/garden/tree/0.13.24/examples/remote-sources)
+- [Remote sources example project](https://github.com/garden-io/garden/tree/0.13.25/examples/remote-sources)
-- [kubernetes Deploy action type example with config templates](https://github.com/garden-io/garden/tree/0.13.24/examples/k8s-deploy-config-templates)
+- [kubernetes Deploy action type example with config templates](https://github.com/garden-io/garden/tree/0.13.25/examples/k8s-deploy-config-templates)
diff --git a/docs/use-cases/local-development-remote-clusters.md b/docs/use-cases/local-development-remote-clusters.md
index 6b0d652d64..84f1227278 100644
--- a/docs/use-cases/local-development-remote-clusters.md
+++ b/docs/use-cases/local-development-remote-clusters.md
@@ -61,5 +61,5 @@ Join our [Discord community](https://go.garden.io/discord) 🌸 for access to Ga
## Examples
-- [Kubernetes Deploy action example project](https://github.com/garden-io/garden/tree/0.13.24/examples/k8s-deploy-patch-resources)
-- [Local mode for `kubernetes` action type](https://github.com/garden-io/garden/tree/0.13.24/examples/local-mode-k8s)
+- [Kubernetes Deploy action example project](https://github.com/garden-io/garden/tree/0.13.25/examples/k8s-deploy-patch-resources)
+- [Local mode for `kubernetes` action type](https://github.com/garden-io/garden/tree/0.13.25/examples/local-mode-k8s)
diff --git a/docs/use-cases/on-demand-preview-envs.md b/docs/use-cases/on-demand-preview-envs.md
index 1c65b0b4ca..e99cde4861 100644
--- a/docs/use-cases/on-demand-preview-envs.md
+++ b/docs/use-cases/on-demand-preview-envs.md
@@ -60,4 +60,4 @@ Join our [Discord community](https://go.garden.io/discord) 🌸 for access to Ga
## Examples
-- [Kubernetes Deploy action example project](https://github.com/garden-io/garden/tree/0.13.24/examples/k8s-deploy-patch-resources)
+- [Kubernetes Deploy action example project](https://github.com/garden-io/garden/tree/0.13.25/examples/k8s-deploy-patch-resources)
diff --git a/e2e/package.json b/e2e/package.json
index 6954c40caf..ddcdce1e78 100644
--- a/e2e/package.json
+++ b/e2e/package.json
@@ -1,6 +1,6 @@
{
"name": "@garden-io/e2e",
- "version": "0.13.24",
+ "version": "0.13.25",
"description": "End-to-end tests for the Garden CLI",
"type": "module",
"repository": {
diff --git a/package.json b/package.json
index 9559c6d892..d508102f80 100644
--- a/package.json
+++ b/package.json
@@ -6,7 +6,7 @@
"type": "git",
"url": "git+https://github.com/garden-io/garden.git"
},
- "version": "0.13.24",
+ "version": "0.13.25",
"author": "Garden Technologies, Inc. ",
"license": "MPL-2.0",
"homepage": "https://github.com/garden-io/garden",
diff --git a/plugins/conftest-container/package.json b/plugins/conftest-container/package.json
index b6e85b6313..05187db44e 100644
--- a/plugins/conftest-container/package.json
+++ b/plugins/conftest-container/package.json
@@ -1,6 +1,6 @@
{
"name": "@garden-io/garden-conftest-container",
- "version": "0.13.24",
+ "version": "0.13.25",
"description": "Auto-generator for the conftest plugin and Garden container modules",
"type": "module",
"main": "build/src/index.js",
diff --git a/plugins/conftest-kubernetes/package.json b/plugins/conftest-kubernetes/package.json
index 3559bf13aa..844acaac29 100644
--- a/plugins/conftest-kubernetes/package.json
+++ b/plugins/conftest-kubernetes/package.json
@@ -1,6 +1,6 @@
{
"name": "@garden-io/garden-conftest-kubernetes",
- "version": "0.13.24",
+ "version": "0.13.25",
"description": "Auto-generator for the conftest plugin and Garden kubernetes/helm modules",
"type": "module",
"main": "build/src/index.js",
diff --git a/plugins/conftest/package.json b/plugins/conftest/package.json
index 404c412d68..6fead6c34d 100644
--- a/plugins/conftest/package.json
+++ b/plugins/conftest/package.json
@@ -1,6 +1,6 @@
{
"name": "@garden-io/garden-conftest",
- "version": "0.13.24",
+ "version": "0.13.25",
"description": "conftest plugin for Garden",
"type": "module",
"main": "build/src/index.js",
diff --git a/plugins/jib/package.json b/plugins/jib/package.json
index f2592b7b55..1c4f859180 100644
--- a/plugins/jib/package.json
+++ b/plugins/jib/package.json
@@ -1,6 +1,6 @@
{
"name": "@garden-io/garden-jib",
- "version": "0.13.24",
+ "version": "0.13.25",
"description": "Jib container plugin for Garden",
"type": "module",
"main": "build/src/index.js",
diff --git a/plugins/pulumi/package.json b/plugins/pulumi/package.json
index d55569fa9f..ff4f2988c8 100644
--- a/plugins/pulumi/package.json
+++ b/plugins/pulumi/package.json
@@ -1,6 +1,6 @@
{
"name": "@garden-io/garden-pulumi",
- "version": "0.13.24",
+ "version": "0.13.25",
"description": "Pulumi plugin for Garden",
"type": "module",
"main": "build/src/index.js",
diff --git a/plugins/terraform/package.json b/plugins/terraform/package.json
index f2ea78b4e3..694de4ef6e 100644
--- a/plugins/terraform/package.json
+++ b/plugins/terraform/package.json
@@ -1,6 +1,6 @@
{
"name": "@garden-io/garden-terraform",
- "version": "0.13.24",
+ "version": "0.13.25",
"description": "Terraform plugin for Garden",
"type": "module",
"main": "build/src/index.js",
diff --git a/sdk/package.json b/sdk/package.json
index 1e1d9ca977..3d8f2691d1 100644
--- a/sdk/package.json
+++ b/sdk/package.json
@@ -1,6 +1,6 @@
{
"name": "@garden-io/sdk",
- "version": "0.13.24",
+ "version": "0.13.25",
"description": "TypeScript plugin SDK for Garden",
"type": "module",
"repository": {