Darío Cutillas
Darío Cutillas
## Changes Implements a generic json-jsonata manager (https://github.com/renovatebot/renovate/issues/15193) that is able to extract dependencies from json files. ``` { "jsonataManagers": [ { "fileMatch": [""], "matchQueries": [''], ... } ] }...
### What would you like Renovate to be able to do? We are using Renovate at work and we make use of the power of the regex manager to support...
```python class Foo(object): @property def bar(self): pass @bar.setter def bar(self, value): pass def do_bar(foo): foo.bar = 3 def test_bar_property(): foo = Foo() allow(foo).bar do_bar(foo) ``` Fails with ``AttributeError``. Besides, it...