Skip to content

v1.0.1

Latest
Compare
Choose a tag to compare
@noahdavis319 noahdavis319 released this 16 Jan 23:04
· 7 commits to main since this release

v1.0.1 release

Fixes a bug where paths that were longer than accessible would return the short-circuited value.

{
  "$vars": {
    "a": [1],
    "b": {
      "c": "hello, world!"
    }
  },
  "c": "$(b.c.0)"
}

will throw an error instead of incorrectly returning "c": "hello, world!" which is whatever the value b.c is.