Skip to content

Commit cc6506f

Browse files
committed
chore(release): bump version to 0.14.11
1 parent 6aaa139 commit cc6506f

File tree

21 files changed

+34
-22
lines changed

21 files changed

+34
-22
lines changed

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11

2+
<a name="0.14.11"></a>
3+
## [0.14.11](https://github.com/garden-io/garden/compare/0.14.10...0.14.11) (2025-11-28)
4+
5+
### Bug Fixes
6+
7+
* **cloud:** default list for var utility commands ([#7849](https://github.com/garden-io/garden/issues/7849)) ([ed6e891ed](https://github.com/garden-io/garden/commit/ed6e891ed))
8+
* **secrets:** bad error message when missing a secret in v2 backend ([#7850](https://github.com/garden-io/garden/issues/7850)) ([32f03d327](https://github.com/garden-io/garden/commit/32f03d327))
9+
10+
### Improvements
11+
12+
* **cloud:** default orgs ([#7852](https://github.com/garden-io/garden/issues/7852)) ([6aaa13972](https://github.com/garden-io/garden/commit/6aaa13972))
13+
214
<a name="0.14.10"></a>
315
## [0.14.10](https://github.com/garden-io/garden/compare/0.14.9...0.14.10) (2025-11-26)
416

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ _If you love Garden, please ★ star this repository to show your support :green
1616
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
1717
<a href="https://docs.garden.io/?utm_source=github">Docs</a>
1818
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
19-
<a href="https://github.com/garden-io/garden/tree/0.14.10/examples">Examples</a>
19+
<a href="https://github.com/garden-io/garden/tree/0.14.11/examples">Examples</a>
2020
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
2121
<a href="https://garden.io/blog/?utm_source=github">Blog</a>
2222
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>

cli/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@garden-io/cli",
3-
"version": "0.14.10",
3+
"version": "0.14.11",
44
"description": "Cloud native testing platform for testing and developing container applications on Kubernetes",
55
"type": "module",
66
"repository": {

core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@garden-io/core",
3-
"version": "0.14.10",
3+
"version": "0.14.11",
44
"description": "A full-featured development framework for containers and serverless",
55
"type": "module",
66
"repository": {

docs/garden-for/kubernetes/deploy-k8s-resource.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ spec:
230230

231231
With this approach, you can add the Garden action to your project without making any changes to existing config.
232232

233-
Here's a [complete example project](https://github.com/garden-io/garden/tree/0.14.10/examples/k8s-deploy-patch-resources) using this approach.
233+
Here's a [complete example project](https://github.com/garden-io/garden/tree/0.14.11/examples/k8s-deploy-patch-resources) using this approach.
234234

235235
### Option 2: Using Garden template strings
236236

docs/garden-for/terraform/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Under the hood, Garden simply wraps Terraform, so there's no magic involved. Gar
1313

1414
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.
1515

16-
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.14.10/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.
16+
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.14.11/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.
1717

1818
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.
1919

@@ -56,5 +56,5 @@ multiple AWS labmdas that should each have their own stack), check out [the Terr
5656
## Next steps
5757

5858
Check out how to configure the Terraform provider and/or actions in the following pages.
59-
You'll find some [Terraform examples here](https://github.com/garden-io/garden/tree/0.14.10/examples).
59+
You'll find some [Terraform examples here](https://github.com/garden-io/garden/tree/0.14.11/examples).
6060

docs/garden-for/terraform/configure-provider.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ providers:
1515
...
1616
```
1717

18-
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.14.10/examples/terraform-gke):
18+
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.14.11/examples/terraform-gke):
1919

2020
```yaml
2121
apiVersion: garden.io/v2

docs/guides/using-garden-in-circleci.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ For the purposes of this example we'll be using [CircleCI](https://circleci.com)
1111

1212
## Project overview
1313

14-
The project is based on our basic [demo-project](https://github.com/garden-io/garden/tree/0.14.10/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).
14+
The project is based on our basic [demo-project](https://github.com/garden-io/garden/tree/0.14.11/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).
1515

1616
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.
1717

docs/overview/use-cases/jumpstart-idp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,6 @@ Join our [Discord community](https://go.garden.io/discord) 🌸 for access to Ga
3838

3939
## Examples
4040

41-
- [Remote sources example project](https://github.com/garden-io/garden/tree/0.14.10/examples/remote-sources)
41+
- [Remote sources example project](https://github.com/garden-io/garden/tree/0.14.11/examples/remote-sources)
4242

43-
- [kubernetes Deploy action type example with config templates](https://github.com/garden-io/garden/tree/0.14.10/examples/k8s-deploy-config-templates)
43+
- [kubernetes Deploy action type example with config templates](https://github.com/garden-io/garden/tree/0.14.11/examples/k8s-deploy-config-templates)

docs/overview/use-cases/local-development-remote-clusters.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,4 +59,4 @@ Join our [Discord community](https://go.garden.io/discord) 🌸 for access to Ga
5959

6060
## Examples
6161

62-
- [Kubernetes Deploy action example project](https://github.com/garden-io/garden/tree/0.14.10/examples/k8s-deploy-patch-resources)
62+
- [Kubernetes Deploy action example project](https://github.com/garden-io/garden/tree/0.14.11/examples/k8s-deploy-patch-resources)

0 commit comments

Comments
 (0)