You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In our code we allow the application to pass JSON path strings to be applied to our JSON objects.
To test the JSON path string is valid we apply it to an empty JSON object - as shown below
Allowing a path expression such as childOrders[0,1] inside square brackets notation was a jsoncons extension. Since 0.161.0, this needs to be written as $[@.childOrders[0,1]], see JSONPath extension revisited and the ChangeLog.
In our code we allow the application to pass JSON path strings to be applied to our JSON objects.
To test the JSON path string is valid we apply it to an empty JSON object - as shown below
We have a unit test that attempts to use the path expression
Up to jsoncons 0.160.0 this worked ok. But since 0.161.0 I get a failure with this log
We were on 0.160.0 and I was upgrading to 0.162.1. The issue happens 0.161.0 and every version after.
The text was updated successfully, but these errors were encountered: