-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Description
I have checked the following:
- I have searched existing issues and found nothing related to my issue.
This bug is:
- making Bruno unusable for me
- slowing me down but I'm able to continue working
- annoying
- this feature was working in a previous version but is broken in the current release.
Bruno version
Bruno CLI v3.0.0 (released on 5 Jan 2026)
Operating System
Git Actions Ubuntu Latest
Describe the bug
We are facing an issue after upgrading to Bruno CLI v3.0.0 (released on 5 Jan 2026) while running our API automation tests using Bruno CLI in a GitHub Actions workflow.
Background
In our GitHub Actions workflow, we install Bruno CLI using npm and run our API test collections as part of CI. One of the requests handles authentication/token generation, where we validate the presence of id_token and control request flow using Bruno scripting
This setup was working fine earlier.
Issue Observed
When we install Bruno CLI using the latest version:
npm install -g @usebruno/cli@latest
we start seeing the following runtime error during test execution:
Cannot read properties of undefined (reading 'owner')
This happens even though:
-
The API response is correct -
id_token is present -
Token generation succeeds -
Subsequent API requests execute successfully
Validation Performed
To isolate the issue, we updated the GitHub Actions workflow to install a fixed version of Bruno CLI:
npm install -g @usebruno/cli@2.15.1
With Bruno CLI v2.15.1, the same collections run successfully without any assertion failures or runtime errors.
Request
Could you please help confirm:
If any script updates are required for CLI execution in CI after the upgrade v3.0.0
Or if this is a issue from bruno sid in CLI v3.0.0
.bru file to reproduce the bug
No response
Screenshots/Live demo link
NA