diff --git a/vscode/README.md b/vscode/README.md index 74bd5d5..ef7e7b5 100644 --- a/vscode/README.md +++ b/vscode/README.md @@ -24,6 +24,14 @@ Everything ## Release Notes +### 0.0.5 - kubebuilder + +- support ytt 0.27.1 +- detect cases where object is expected but string, bool, etc. is given +- Support validating CRDs itself (not the custom object, but the custom resource definition) +- Add special exception for CRDs generated by kubebuilder. See https://github.com/kubernetes-sigs/controller-tools/issues/402 +- vscode will now show 'ytt-lint' as source of diagnostics + ### 0.0.4 - Concourse - support linting concourse pipelines diff --git a/vscode/package-lock.json b/vscode/package-lock.json index fd53ce8..782f8e9 100644 --- a/vscode/package-lock.json +++ b/vscode/package-lock.json @@ -1,6 +1,6 @@ { "name": "ytt-lint", - "version": "0.0.4", + "version": "0.0.5", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/vscode/package.json b/vscode/package.json index a733bf5..ddee2de 100644 --- a/vscode/package.json +++ b/vscode/package.json @@ -6,7 +6,7 @@ "url": "https://github.com/phil9909/ytt-lint" }, "description": "Runs linting on your ytt-templates and yaml-files.", - "version": "0.0.4", + "version": "0.0.5", "engines": { "vscode": "^1.41.0" },