Timon
Timon
I made a small recording of the bug. Could be platform specific. I'm currently using Windows 11 and Bruno without the activated golden edition. https://github.com/usebruno/bruno/assets/39559178/3ef6cfce-20c9-4389-a168-0e686d7b7dd1 I also get this error...
This also needs to be added to CLI: `run-single-request.js`
> run-single-request.js doesn't seem to do the `data = JSON.parse(response.data)` stuff, so response.data is the buffer type already. Please help me out here if there needs to be some API...
> > I see the [fix](https://github.com/usebruno/bruno/pull/1867) is part of the release [1.12.2](https://github.com/usebruno/bruno/releases/tag/v1.12.2), but why it is not working 🤔 ? > > Yeah I'm having the same issues, I've left...
`vm2` has been deprecated for a while now, and we already planned to update to a different library here #263. The vulnerabilities in `vm2` allow for malicious code to escape...
> Is there any progress on this? I love Bruno, but unfortunately cannot use the CLI until this is addressed and thus cannot use it to automate API testing Not...
Duplicate of #671 I think this should be fixed by: #569
We recently merged a fix for BigInt that is not yet released: #1710 that might fix your issue. You can either wait for the next Bruno release or clone the...
> @azzamsa, problem still remains, tested with Bruno v1.22.0: > > { "id": 1.0000000000000325e+21, > > @Its-treason can you see that it's getting fixed ? > > It's very annoying...
You can, you use a workaround like this, in the pre-request script. This will send the array correctly. ```js const body = req.getBody(); body.test = ["Hello", "World"]; req.setBody(body); ```