Skip to content

Commit

Permalink
chore(release): bump version to 0.13.18
Browse files Browse the repository at this point in the history
  • Loading branch information
vvagaytsev committed Oct 17, 2023
1 parent 66007f2 commit f13dbd7
Show file tree
Hide file tree
Showing 24 changed files with 57 additions and 35 deletions.
22 changes: 22 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,26 @@

<a name="0.13.18"></a>
## [0.13.18](https://github.com/garden-io/garden/compare/0.13.17...0.13.18) (2023-10-17)

### Bug Fixes

* allow generated files in build actions ([#5230](https://github.com/garden-io/garden/issues/5230)) ([1a55cf7c2](https://github.com/garden-io/garden/commit/1a55cf7c2))
* prevent crash due to unresolved alias in yaml ([#5215](https://github.com/garden-io/garden/issues/5215)) ([1ceb355d7](https://github.com/garden-io/garden/commit/1ceb355d7))
* allow listing disabled actions in get actions cmd ([#5203](https://github.com/garden-io/garden/issues/5203)) ([eb316b1af](https://github.com/garden-io/garden/commit/eb316b1af))
* **build:** make `copyFrom.targetPath` default to `copyFrom.sourcePath` ([#5234](https://github.com/garden-io/garden/issues/5234)) ([62567d720](https://github.com/garden-io/garden/commit/62567d720))
* **cli:** exit code 1 on unknown commands, sub-commands and flags ([#5235](https://github.com/garden-io/garden/issues/5235)) ([66007f28a](https://github.com/garden-io/garden/commit/66007f28a))
* **core:** ensure needsReload flag works ([#5211](https://github.com/garden-io/garden/issues/5211)) ([cdf65e3b6](https://github.com/garden-io/garden/commit/cdf65e3b6))
* **serve:** connect to Cloud if process is started outside of project dir ([#4822](https://github.com/garden-io/garden/issues/4822)) ([61b424e5c](https://github.com/garden-io/garden/commit/61b424e5c))

### Features

* **k8s:** add support for patching manifests ([#5187](https://github.com/garden-io/garden/issues/5187)) ([5f7f5336a](https://github.com/garden-io/garden/commit/5f7f5336a))

### Improvements

* using a new release endpoint for self-update ([#5229](https://github.com/garden-io/garden/issues/5229)) ([33cfebc34](https://github.com/garden-io/garden/commit/33cfebc34))
* **core:** log stderr from exec as info ([#5227](https://github.com/garden-io/garden/issues/5227)) ([c6016f420](https://github.com/garden-io/garden/commit/c6016f420))

<a name="0.13.17"></a>
## [0.13.17](https://github.com/garden-io/garden/compare/0.13.16...0.13.17) (2023-10-05)

Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ _If you love Garden, please ★ star this repository to show your support :green
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
<a href="https://docs.garden.io/?utm_source=github">Docs</a>
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
<a href="https://github.com/garden-io/garden/tree/0.13.17/examples">Examples</a>
<a href="https://github.com/garden-io/garden/tree/0.13.18/examples">Examples</a>
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
<a href="https://garden.io/blog/?utm_source=github">Blog</a>
<span>&nbsp;&nbsp;&nbsp;&nbsp;</span>
Expand Down
4 changes: 2 additions & 2 deletions cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@garden-io/cli",
"version": "0.13.17",
"version": "0.13.18",
"description": "Cloud native testing platform for testing and developing container applications on Kubernetes",
"repository": {
"type": "git",
Expand Down Expand Up @@ -70,4 +70,4 @@
"node_modules/es-get-iterator/**/*.js"
]
}
}
}
4 changes: 2 additions & 2 deletions core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@garden-io/core",
"version": "0.13.17",
"version": "0.13.18",
"description": "A full-featured development framework for containers and serverless",
"repository": {
"type": "git",
Expand Down Expand Up @@ -292,4 +292,4 @@
"fsevents": "^2.3.3"
},
"gitHead": "b0647221a4d2ff06952bae58000b104215aed922"
}
}
2 changes: 1 addition & 1 deletion docs/getting-started/quickstart.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,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.17/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.18/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)!
2 changes: 1 addition & 1 deletion docs/guides/using-garden-in-ci.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The guide uses the [Remote Kubernetes plugin](../k8s-plugins/remote-k8s/README.m

## Project overview

The project is based on our basic [demo-project](https://github.com/garden-io/garden/tree/0.13.17/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.18/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.

Expand Down
2 changes: 1 addition & 1 deletion docs/k8s-plugins/remote-k8s/ingress-and-dns.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.17/examples/istio) in our [examples directory](https://github.com/garden-io/garden/tree/0.13.17/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.18/examples/istio) in our [examples directory](https://github.com/garden-io/garden/tree/0.13.18/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.
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/action-types/Build/jib-container.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.17/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.18/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.

Expand Down
2 changes: 1 addition & 1 deletion docs/reference/module-types/jib-container.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.17/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.18/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.

Expand Down
2 changes: 1 addition & 1 deletion docs/reference/providers/conftest-kubernetes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.17/examples/conftest) for a simple
See the [conftest example project](https://github.com/garden-io/garden/tree/0.13.18/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).
Expand Down
2 changes: 1 addition & 1 deletion docs/reference/providers/conftest.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.17/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.18/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.

Expand Down
2 changes: 1 addition & 1 deletion docs/reference/providers/hadolint.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.17/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.18/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).

Expand Down
2 changes: 1 addition & 1 deletion docs/reference/providers/jib.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.17/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.18/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).

Expand Down
4 changes: 2 additions & 2 deletions docs/terraform-plugin/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.17/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.18/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.

Expand Down Expand Up @@ -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.17/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.18/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).
2 changes: 1 addition & 1 deletion docs/terraform-plugin/configure-provider.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.17/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.18/examples/terraform-gke):

```yaml
apiVersion: garden.io/v1
Expand Down
4 changes: 2 additions & 2 deletions e2e/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@garden-io/e2e",
"version": "0.13.17",
"version": "0.13.18",
"description": "End-to-end tests for the Garden CLI",
"repository": {
"type": "git",
Expand Down Expand Up @@ -51,4 +51,4 @@
"fix-format": "npm run lint -- --fix --quiet",
"lint": "eslint --ignore-pattern 'projects/**' --ext .ts ."
}
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"type": "git",
"url": "git+https://github.com/garden-io/garden.git"
},
"version": "0.13.17",
"version": "0.13.18",
"author": "Garden Technologies, Inc. <info@garden.io>",
"license": "MPL-2.0",
"homepage": "https://github.com/garden-io/garden",
Expand Down Expand Up @@ -103,4 +103,4 @@
"sdk",
"plugins/*"
]
}
}
4 changes: 2 additions & 2 deletions plugins/conftest-container/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@garden-io/garden-conftest-container",
"version": "0.13.17",
"version": "0.13.18",
"description": "Auto-generator for the conftest plugin and Garden container modules",
"main": "build/src/index.js",
"dependencies": {
Expand Down Expand Up @@ -30,4 +30,4 @@
"author": "Garden Technologies, Inc. <info@garden.io>",
"license": "MPL-2.0",
"homepage": "https://github.com/garden-io/garden"
}
}
4 changes: 2 additions & 2 deletions plugins/conftest-kubernetes/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@garden-io/garden-conftest-kubernetes",
"version": "0.13.17",
"version": "0.13.18",
"description": "Auto-generator for the conftest plugin and Garden kubernetes/helm modules",
"main": "build/src/index.js",
"private": true,
Expand Down Expand Up @@ -30,4 +30,4 @@
"author": "Garden Technologies, Inc. <info@garden.io>",
"license": "MPL-2.0",
"homepage": "https://github.com/garden-io/garden"
}
}
4 changes: 2 additions & 2 deletions plugins/conftest/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@garden-io/garden-conftest",
"version": "0.13.17",
"version": "0.13.18",
"description": "conftest plugin for Garden",
"main": "build/src/index.js",
"private": true,
Expand Down Expand Up @@ -29,4 +29,4 @@
"author": "Garden Technologies, Inc. <info@garden.io>",
"license": "MPL-2.0",
"homepage": "https://github.com/garden-io/garden"
}
}
4 changes: 2 additions & 2 deletions plugins/jib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@garden-io/garden-jib",
"version": "0.13.17",
"version": "0.13.18",
"description": "Jib container plugin for Garden",
"main": "build/src/index.js",
"dependencies": {
Expand Down Expand Up @@ -35,4 +35,4 @@
"author": "Garden Technologies, Inc. <info@garden.io>",
"license": "MPL-2.0",
"homepage": "https://github.com/garden-io/garden"
}
}
4 changes: 2 additions & 2 deletions plugins/pulumi/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@garden-io/garden-pulumi",
"version": "0.13.17",
"version": "0.13.18",
"description": "Pulumi plugin for Garden",
"main": "build/src/index.js",
"dependencies": {
Expand Down Expand Up @@ -34,4 +34,4 @@
"author": "Garden Technologies, Inc. <info@garden.io>",
"license": "MPL-2.0",
"homepage": "https://github.com/garden-io/garden"
}
}
4 changes: 2 additions & 2 deletions plugins/terraform/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@garden-io/garden-terraform",
"version": "0.13.17",
"version": "0.13.18",
"description": "Terraform plugin for Garden",
"main": "build/src/index.js",
"dependencies": {
Expand Down Expand Up @@ -34,4 +34,4 @@
"author": "Garden Technologies, Inc. <info@garden.io>",
"license": "MPL-2.0",
"homepage": "https://github.com/garden-io/garden"
}
}
4 changes: 2 additions & 2 deletions sdk/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@garden-io/sdk",
"version": "0.13.17",
"version": "0.13.18",
"description": "TypeScript plugin SDK for Garden",
"repository": {
"type": "git",
Expand Down Expand Up @@ -31,4 +31,4 @@
"fix-format": "npm run lint -- --fix --quiet",
"lint": "eslint --ext .ts ."
}
}
}

0 comments on commit f13dbd7

Please sign in to comment.