Skip to content

Release v1.0.0 - 2014-10-28

Compare
Choose a tag to compare
@trevorrowe trevorrowe released this 28 Oct 16:35
· 189 commits to main since this release
  • The expression cache now has a maximum size.

  • Documented the rake benchmark and rake benchmark:cached tasks.

  • You can now disable expression caching when constructing a Runtime by
    passing :cache_expressions => false. Caching is still enabled by
    default.

    # disable caching
    runtime = JMESPath::Runtime.new(cache_expressions: false)
    runtime.search(expression, data)
  • Adding a missing require statement for Pathname to the JMESPath module.