-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add handling of missing files in imports and allows you to defi…
…ne fallbacks (#9)
- Loading branch information
1 parent
579e63c
commit daeed58
Showing
12 changed files
with
357 additions
and
486 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# v0.0.6-alpha | ||
|
||
## Features | ||
|
||
- add handling of missing files in imports and allows you to define fallbacks (#9) | ||
|
||
## Updates | ||
|
||
- update to go v1.23 | ||
|
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,21 @@ | ||
module github.com/peterbueschel/jsonnet-custom-importers | ||
|
||
go 1.19 | ||
go 1.23 | ||
|
||
require ( | ||
github.com/bmatcuk/doublestar/v4 v4.6.0 | ||
github.com/dominikbraun/graph v0.20.0 | ||
github.com/bmatcuk/doublestar/v4 v4.7.1 | ||
github.com/dominikbraun/graph v0.23.0 | ||
github.com/google/go-jsonnet v0.20.0 | ||
github.com/spf13/afero v1.9.5 | ||
github.com/stretchr/testify v1.8.0 | ||
go.uber.org/zap v1.24.0 | ||
github.com/spf13/afero v1.11.0 | ||
github.com/stretchr/testify v1.8.1 | ||
go.uber.org/zap v1.27.0 | ||
) | ||
|
||
require ( | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
go.uber.org/atomic v1.11.0 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/text v0.9.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
golang.org/x/text v0.20.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
sigs.k8s.io/yaml v1.3.0 // indirect | ||
sigs.k8s.io/yaml v1.4.0 // indirect | ||
) |
Oops, something went wrong.