Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Commits on Feb 17, 2023

  1. Add std.sum in standard library

    rohitjangid authored and sparkprime committed Feb 17, 2023

Commits on Jan 24, 2023

  1. Documents the escapeStringXml added in #1038

    See:
    - <#1037>
    - <#1038>
    scr-oath authored and sparkprime committed Jan 24, 2023
  2. Fix document error

    zuisong authored and sparkprime committed Jan 24, 2023

Commits on Oct 26, 2022

  1. Update versions in docs

    sparkprime committed Oct 26, 2022
  2. Update version to v0.19.0

    sparkprime committed Oct 26, 2022

Commits on Oct 25, 2022

  1. Update Python BUILD files

    sparkprime committed Oct 25, 2022
  2. Add missing files

    sparkprime committed Oct 25, 2022
  3. Do not assume that std.reverse accepts a string, this is not true for…

    … the Go builtin implementation
    sparkprime committed Oct 25, 2022
  4. Revert "Fix the following compiler (clang 11) warning"

    This reverts commit 56a8038.
    sparkprime committed Oct 25, 2022
  5. Revert "Fix the following compiler (clang 11) warning"

    This reverts commit f3ab8a7.
    sparkprime committed Oct 25, 2022
  6. Revert "abort() instead of brake for json::value_t::binary case as it…

    … should never happen"
    
    This reverts commit 9ba22f7.
    sparkprime committed Oct 25, 2022
  7. Update tutorial.html

    I was confused by this for a minute until I realized it meant .foo and not some magic member.
    
    Please correct me if I'm wrong though 😄
    nagstaku authored and sparkprime committed Oct 25, 2022
  8. Fix the following compiler (clang 11) warning

    python/_jsonnet.c:150:19: warning: comparison of integers of different signs: 'int' and 'const size_t' (aka 'const unsigned long') [-Wsign-compare]
        for (i = 0; i < ctx->argc; ++i) {
                    ~ ^ ~~~~~~~~~
    
    Change type of index loop (i) to Py_ssize_t like in all other places in the code.
    Cast ctx->argc to Py_ssize_t to make them the same type
    
    Useful link https://www.python.org/dev/peps/pep-0353
    timp87 authored and sparkprime committed Oct 25, 2022
  9. Fix the following compiler (clang 11) warning

    vm.cpp:1585:19: warning: enumeration value 'binary' not handled in switch [-Wswitch]
            switch (v.type()) {
                      ^
    
    Show explicitly it's not just forgotten to handle the json::value_t::binary case
    timp87 authored and sparkprime committed Oct 25, 2022
  10. Add importbin statement

    Add `importbin`.  Like `importstr` but returns an array of
    numbers (integers 0-255).
    
    Note! This changes the `JsonnetImportCallback` function type
    signature, and requires modification to existing code that uses custom
    import callbacks.  The included python bindings have been updated.
    anguslees authored and sparkprime committed Oct 25, 2022

Commits on Sep 28, 2022

Commits on Aug 30, 2022

  1. Fix comma in docs

    sparkprime committed Aug 30, 2022

Commits on Aug 18, 2022

Commits on Jul 22, 2022

  1. Use printf rather than 'echo -n'

    This is more POSIX compliant, handy for MacOS users.
    rhowe authored and sparkprime committed Jul 22, 2022

Commits on Jun 18, 2022

  1. doc: parseYaml is available since 0.18.0 (#1006)

    Added with !899
    ilpianista committed Jun 18, 2022
Older