* feat: add description column to various tables and enhance UI interactions
- Introduced a description column in Headers, VarsTable, and other components to allow multi-line descriptions.
- Added toggle buttons to show/hide the description column in relevant tables.
- Updated EditableTable component to support dynamic row addition with customizable labels.
- Enhanced UI for better user experience with consistent button styles and spacing adjustments.
* chore: resize fix handles
* fix: restrict column check for last index
* refactor: remove unwanted style and fix bottom padding of the last child in the table row
* tests: improve testability and fix impacted locators
* tests: fix locators for value fields
* fix: improve newline handling in description prefix
* fix: ts changes
* chore: remove redundant code and fix description roundtrip
* chore: remove redundant check
* tests(bru-lang): tests for description and annotation
* test: improve locators and tests
* tests: descriptions
* chore: re-add description setup
* fix: re-add description cols
* chore: fix the double click reset
* fix: account for hidden sidebar in request pane width calculation
* refactor: ui/ux fixes for data type toggle
* chore: inline common deps into bruno-lang and bruno-schema
* chore: tests
* chore: fix ux for descriptions
* fix: layout for environment vars table
* fix: ensure correct row selection for multipart file upload in tests
* feat: enhance UID assignment for request headers and variables in collections
* chore: simplify
* chore: update pkg
* chore: abstract the e2e utils
* chore: fix exports
* tests: fix locators for datatype vars
* fix: ux issue with secrets in environment table
* tests: update locators for collection headers and vars descriptions
* tests: update locators to use data attributes for datatype selectors
* chore: update default css width for actions column
* chore: remove tooltip for string type warnings
* fix: reduce name widths
* refactor: update annotation serialization to use single-quote delimiters for descriptions
* refactor(tests): simplify description formatting in jsonToEnv tests
* feat: add multiline description escaping and unescaping functions with tests
* refactor: clean up imports and improve multiline text block handling
* refactor: update locators to use new test IDs for environment variable editors
* refactor: streamline header input handling and improve environment variable row access
* refactor: update e2e-test job to support self-hosted runners
* refactor: update E2E test runner configuration to include e2e and macOS environments
---------
Co-authored-by: Pragadesh-45 <temporaryg7904@gmail.com>
* fix: avoid round trip loss of annotation data
* feat: update types for file , multipart and tests for the same
* chore: optional
* chore: fix body:file annotation
* chore: remove log
* feat: add OAuth 1.0 authentication support
Add full OAuth 1.0 (RFC 5849) authentication with support for
HMAC-SHA1/256/512, RSA-SHA1/256/512, and PLAINTEXT signature methods.
Includes UI components, bru/yml serialization, Postman import, code
generation, CLI support, and comprehensive playwright and unit tests.
* test: replace real-looking PEM literals with fake markers in oauth1 tests
Avoid tripping secret scanners by using obviously fake BEGIN/END markers
and non-sensitive base64 content in serialization and round-trip tests.
* fix: remove invalid OAuth1 placeholder header from code generator
OAuth1 requires runtime-computed nonce, timestamp, and signature that
cannot be pre-computed for a static code snippet. Return an empty array
instead of emitting an Authorization header with literal <signature>,
<timestamp>, <nonce> placeholders.
* fix: remove unreachable oauth1 case from WSAuth component
The oauth1 switch branch was dead code since it was not in
supportedAuthModes and the useEffect would reset it to 'none'
before it could render.
* fix: remove unused collectionPath param and use path.basename for filename extraction
* refactor: rename OAuth1 fields for clarity
- tokenSecret → accessTokenSecret
- signatureMethod → signatureEncoding
- addParamsTo value 'queryparams' → 'query'
* refactor: rename addParamsTo to placement in OAuth1 auth
* fix: add missing oauth1: null in buildOAuth2Config and upgrade @opencollection/types to 0.9.0
* test: add oauth1 import tests and fix missing oauth1: null in auth assertions
* ci: add auth playwright tests workflow for Linux, macOS, and Windows
* refactor: rename signatureEncoding to signatureMethod and fix timeline race condition
- Rename OAuth1 signatureEncoding to signatureMethod across all packages
- Fix timeline showing "No Headers/Body found" when request-sent IPC event
arrives after response by retroactively updating the timeline entry
- Store requestUid in timeline entries for precise matching
- Correct timeline entry timestamp on retroactive update for proper sort order
* ci: add OAuth1 CLI tests and reorganize auth actions under oauth1/
- Add CLI tests that run full BRU and YML collections via bru run
- Add start-test-server actions for Linux, macOS, and Windows
- Move auth e2e and setup actions under auth/oauth1/ directory
- Fix Windows Playwright failures caused by unescaped backslashes in collectionPath template variable
* ci: reorder auth tests to run E2E tests before CLI tests
* ci: start test server after E2E tests to fix port 8081 conflict
* feat: add tokenType support for OAuth2
* refactor: rename tokenType to source in OpenCollection OAuth2 mapping
* refactor: rename tokenType to source in OAuth2 configuration
* chore: bump @opencollection/types to ~0.8.0
* fix: correct OAuth2 token type label in token viewer
* refactor: replace Dropdown with MenuDropdown in OAuth2 components
Migrate all 12 dropdown instances across 5 OAuth2 auth components to use
the MenuDropdown component, removing manual tippy ref management and
forwardRef icon patterns in favor of a declarative items-based API.
* fix: storing status in example for yml file
* fix: temporary check for tests
* fix: temporary check for tests
* fix: temporary check for tests
* fix: temporary check for tests
* fix: temporary check for tests
* fix: temporary check for tests
* fix: temporary check for tests
* fix: temporary check for tests
* fix: temporary check for tests
* fix: temporary check for tests
* fix: temporary check for tests
* fix: temporary check for tests
* fix: test cases for status and statusText
* chore: removed logs
* fix: test cases for response status and text
* fix: test cases for response status and text
* fix: resolved comments
* fix: openapi test import test cases
* chore: removed console logs
* fix: status type in response example while import/export of collection
* fix: postman to bruno import
---------
Co-authored-by: shubh-bruno <shubh-bruno@shubh-bruno.local>