Release v1.0.0 - 2014-10-28
-
The expression cache now has a maximum size.
-
Documented the
rake benchmark
andrake 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.