Skip to content

Commit

Permalink
0.7.1
Browse files Browse the repository at this point in the history
  • Loading branch information
fstaudt committed Jul 14, 2023
1 parent ff0f05a commit 7042090
Show file tree
Hide file tree
Showing 4 changed files with 24 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 0.7.1 - Jul 14, 2023
- :sparkles: (intellij) support for IntelliJ IDEA 2023.2
- :zap: (intellij) avoid full project scanning in JSON schema provider factory
([#64](https:/fstaudt/helm-values/issues/64))
- :bug: invalid $ref in aggregated JSON schemas should be removed
([#103](https:/fstaudt/helm-values/issues/103))
- :bug: (intellij) refresh JSON schemas of dependent charts before current chart
([#104](https:/fstaudt/helm-values/issues/104))

## 0.7.0 - May 18, 2023

- :sparkles: (gradle) task to validate values.yaml against aggregated JSON schema
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
group=io.github.fstaudt.helm
version=0.7.0
version=0.7.1
gradleWrapperVersion=8.1.1
# IntelliJ plugin
intellijPluginName=helm-values-assistant
Expand Down
13 changes: 13 additions & 0 deletions helm-values-intellij-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
# Changelog

## 0.7.1 - Jul 14, 2023

### ✨ New
- support for IntelliJ IDEA 2023.2

### 🐛 Fixed
- invalid $ref in aggregated JSON schemas should be removed
([#103](https:/fstaudt/helm-values/issues/103))
- refresh JSON schemas of dependent charts before current chart
([#104](https:/fstaudt/helm-values/issues/104))
- avoid full project scanning in JSON schema provider factory
([#64](https:/fstaudt/helm-values/issues/64))

## 0.7.0 - May 18, 2023

### ✨ New
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package io.github.fstaudt.helm

const val SCHEMA_VERSION = "https://json-schema.org/draft/2020-12/schema"

const val GENERATOR_LABEL = "helm-values 0.7.0"
const val GENERATOR_LABEL = "helm-values 0.7.1"

const val NEW_LINE = "\n\\n"

Expand Down

0 comments on commit 7042090

Please sign in to comment.