Update module github.com/losisin/helm-values-schema-json to v2#255
Open
renovate[bot] wants to merge 1 commit intomainfrom
Open
Update module github.com/losisin/helm-values-schema-json to v2#255renovate[bot] wants to merge 1 commit intomainfrom
renovate[bot] wants to merge 1 commit intomainfrom
Conversation
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #255 +/- ##
=======================================
Coverage 59.68% 59.68%
=======================================
Files 14 14
Lines 568 568
=======================================
Hits 339 339
Misses 199 199
Partials 30 30 ☔ View full report in Codecov by Sentry. 🚀 New features to boost your workflow:
|
54df296 to
3925800
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v1.9.2→v2.4.0Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
losisin/helm-values-schema-json (github.com/losisin/helm-values-schema-json)
v2.4.0Compare Source
What's Changed
Added
Fixed
Updated
Other
New Contributors
Full Changelog: losisin/helm-values-schema-json@v2.3.1...v2.4.0
v2.3.1Compare Source
Changelog
Added
7a885c8: Add auto-approve workflow (#277) (@applejag)Fixed
9e27f21: bugfix: Fix duplicate enums (#299) (@applejag)f9d8406: fix: ensure $defs are at schema root for draft 7 (#296) (@jdcmarques)Updated
264de66: Update plugin.yaml (@applejag)c1daadb: build(deps): bump actions/checkout from 5 to 6 (@dependabot[bot])741c93d: build(deps): bump actions/setup-go from 5 to 6 (#274) (@dependabot[bot])0978e0d: build(deps): bump codecov/codecov-action from 5.5.0 to 5.5.1 (#272) (@dependabot[bot])e013e22: build(deps): bump github.com/knadh/koanf/v2 from 2.2.2 to 2.3.0 (#282) (@dependabot[bot])f23d888: build(deps): bump github.com/spf13/cobra from 1.10.1 to 1.10.2 (@dependabot[bot])75481ef: build(deps): bump github.com/spf13/cobra from 1.9.1 to 1.10.1 (#275) (@dependabot[bot])85f2bbb: build(deps): bump github.com/spf13/pflag from 1.0.7 to 1.0.8 (#270) (@dependabot[bot])64dec04: build(deps): bump github.com/spf13/pflag from 1.0.9 to 1.0.10 (#276) (@dependabot[bot])067e85e: build(deps): bump github.com/stretchr/testify from 1.11.0 to 1.11.1 (@dependabot[bot])40921b4: build(deps): bump golangci/golangci-lint-action from 8.0.0 to 9.0.0 (#291) (@dependabot[bot])aaccb13: build(deps): bump golangci/golangci-lint-action from 9.0.0 to 9.1.0 (@dependabot[bot])fb70ec5: build(deps): bump golangci/golangci-lint-action from 9.1.0 to 9.2.0 (@dependabot[bot])fa2a63e: build(deps): bump reviewdog/action-actionlint from 1.66.1 to 1.67.0 (#273) (@dependabot[bot])d34f339: build(deps): bump reviewdog/action-actionlint from 1.67.0 to 1.68.0 (@dependabot[bot])e01519d: build(deps): bump reviewdog/action-actionlint from 1.68.0 to 1.69.0 (@dependabot[bot])567a473: build(deps): bump reviewdog/action-actionlint from 1.69.0 to 1.69.1 (@dependabot[bot])00715e2: build(deps): bump securego/gosec from 2.22.8 to 2.22.9 (@dependabot[bot])6863cb6: build(deps): bump securego/gosec from 2.22.9 to 2.22.10 (@dependabot[bot])6b35267: build(deps): bump zizmorcore/zizmor-action from 0.1.2 to 0.2.0 (@dependabot[bot])cb501b0: build(deps): bump zizmorcore/zizmor-action from 0.2.0 to 0.3.0 (@dependabot[bot])Docs
1ddec77: docs: document the "hidden" annotation (@marquiz)Other
a864e0a: Release v2.3.1 (@applejag)44e1b36: chore: Fix auto-approve workflow (#281) (@applejag)v2.3.0Compare Source
What's Changed
See: Upgrade
helm schemafrom v2.2 to v2.3Added
feat: support '.kyaml' extension when bundling local files by @applejag in #243
It already supported
$ref: foo.yamland$ref: foo.yml, wherehelm schemabundling would automatically use a YAML parser.Now, it will also use the YAML parser for
$ref: foo.kyaml.By default on other file extensions
helm schemawill keep using the JSON parser instead.feat: Add
mergePropertiesto combine maps intoadditionalPropertiesby @applejag in #252Allows using maps with arbitrary keys, such as:
Instead of generating a schema that has
configs.foo.lorem&configs.bar.hello, it will instead generate a schema ofconfigs.*.lorem&configs.*.hellousingadditionalPropertiesin the JSON schema.feat: Add JSON Schema for the
.schema.yamlconfig file by @applejag in #261If you want editor support when editing your
.schema.yamlconfig files then you can add this comment to the start of the file:# yaml-language-server: $schema=https://github.com/losisin/helm-values-schema-json/raw/refs/heads/main/config.schema.jsonfeat: Support all JSON Schema keywords in internal data structure by @applejag in #264
This does not add support for overriding all schema keywords using
# @​schemaannotation comments, but it does add support insidehelm schema's internal data structure.This makes a difference when bundling other schemas, as before this release,
helm schemawould not be able to bundle all of the keywords used in the referenced schema.In other words, if you bundle a
$refthat uses keywords likeif,format,deprecated, etc; then the resulting bundled schema will now retain those keywords.Fixed
fix: noAdditionalProperties broke chart usage as dependency by @applejag in #255
To fix this, we now include a
globalproperty by default (unless you defined one yourself):fix: Bundle should update
$refwhen loaded subschema uses$idby @applejag in #253Updated
Docs
Other
Full Changelog: losisin/helm-values-schema-json@v2.2.1...v2.3.0
v2.2.1Compare Source
What's Changed
Fixed
Updated
New Contributors
Full Changelog: losisin/helm-values-schema-json@v2.2.0...v2.2.1
v2.2.0Compare Source
What's Changed
Added
-f -, write to stdout with-o -, and use stderr for logs by @applejag in #227Updated
Full Changelog: losisin/helm-values-schema-json@v2.1.0...v2.2.0
v2.1.0Compare Source
What's Changed
Added
examples, and support for complex types in lists likeenumby @applejag in #213Fixed
$refto after other fields when using draft <= 7 by @applejag in #212Updated
Docs
Other
Full Changelog: losisin/helm-values-schema-json@v2.0.0...v2.1.0
v2.0.0Compare Source
What's Changed
This release includes breaking changes. Make sure to follow follow our guide when upgrading from
v1.9.xtov2.0.0Added
--helptext by @applejag in #189--versionflag orversionsubcommand by @applejag in #188Fixed
Docs
Other
interface{}toanyby @applejag in #171mainbranch & all PRs by @applejag in #195Full Changelog: losisin/helm-values-schema-json@v1.9.0...v2.0.0
Configuration
📅 Schedule: (UTC)
* 0 1,15 * *)🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.