jsonnet
jsonnet copied to clipboard
Jsonnet - The data templating language
[Whilst learning about output formats ](https://jsonnet.org/articles/output-formats.html) I noticed a _hidden_ function in the standard library called `deepJoin`. As I've never seen this function before, I headed to the [Standard Library...
Adds a new builtin function (importstrDyn) that accept a computed string. I did not modified the importstr logic itself as I don't understand well enough how the parser is working....
``` pip install jsonnet Collecting jsonnet Using cached jsonnet-0.15.0.tar.gz (255 kB) Building wheels for collected packages: jsonnet Building wheel for jsonnet (setup.py) ... error ERROR: Command errored out with exit...
# jsonnet v0.15.0 does not scan library folders. When folder specified using `-J | --jpath`, only current working directory is searched for the given filename. I have found in the...
We should pin googletest version, because it caused problems in unrelated PRs. We'll need to remember to update it periodically, so we should probably add it to the release checklist...
Set operations like `setUnion` or `setDiff` technically are only valid on sets (sorted array). This can lead to nasty, hard-to-notice bugs when someone forgets about it. We should consider relaxing...
Is there a way to build jsonnet with `musl`? I am a novice in C++ development and I try to build `jsonnet` with `musl` in order to create a static...
Regardless of whether JSONNET_PATH is set, the following holds true on RHEL 7 & RHEL 8: If I attempt to parse a file under /tmp (as the root user) it...
Do you think it will be possible to use `importstr` with variable? e.g: ``` yaml { files: [ { file: filepath, content: importstr filepath } for filepath in ['a.txt', 'b.txt',...
I would like to suggest a feature to parse strings into float numbers. I haven't found `std.parseFloat()` function in https://jsonnet.org/ref/stdlib.html. Since `std.extVar` returns a string it's impossible to use float...