Skip to content

fix(deps): update dependency @scalar/api-reference to v1.57.2#4

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/scalar-monorepo
Open

fix(deps): update dependency @scalar/api-reference to v1.57.2#4
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/scalar-monorepo

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate Bot commented Apr 29, 2026

This PR contains the following updates:

Package Change Age Confidence
@scalar/api-reference (source) 1.44.261.57.2 age confidence

Release Notes

scalar/scalar (@​scalar/api-reference)

v1.57.2

Patch Changes
  • #​9234: fix(api-reference): prevent security badge from shrinking

v1.57.1

v1.57.0

Minor Changes
  • #​9211: feat: make WorkspaceDocument an union of OpenApiDocument and AsyncApiDocument
Patch Changes
  • #​9211: fix(api-reference): clean up deprecated document listeners on destroy

    createApiReference() registered three document-level listeners
    (scalar:reload-references, scalar:destroy-references,
    scalar:update-references-config) but destroy() only unmounted the
    Vue app — the listeners stayed attached forever. In environments that
    mount and destroy instances repeatedly (notably the Astro integration's
    renderMode="client" with view transitions), each navigation leaked
    three permanent listeners on document.

    Tie the listeners to an AbortController and abort it from destroy()
    so they all come off in one shot.

  • #​9211: fix: show "Download AsyncAPI Document" label for AsyncAPI documents

  • #​9211: fix: rename the "OAS" version badge to "OpenAPI" and show an "AsyncAPI" badge for AsyncAPI documents

  • #​9211: fix(api-client): block invalid request URLs before send and surface buildRequest failures as results

    Request construction now treats a bad merged URL as a first-class failure instead of throwing deep inside helpers. After mergeUrls, resolveRequestFactoryUrl rejects incomplete targets when strict mode applies: relative URLs, an empty server base, or path strings that still contain unresolved {{variable}} placeholders. Callers may set allowMissingRequestServerBase where a full absolute URL is intentionally optional (for example the embedded modal layout in OperationBlock, or API Reference onBeforeRequest hooks that build against the document origin).

    buildRequest returns a Result (ok / err) with stable error codes such as MISSING_REQUEST_SERVER_BASE, INVALID_REQUEST_FACTORY_URL, and BUILD_REQUEST_FAILED for unexpected synchronous failures. Those failures are wrapped with safeRun from @scalar/helpers, which logs to console.error and maps throws to a string message on the result. The API Reference plugin path logs and skips onBeforeRequest when a preview request cannot be built, so user hooks never run against a half-built fetch payload.

    Downstream packages (api-client, api-reference, scalar-app where applicable) unwrap the result, show toasts or logs, and avoid calling sendRequest until the URL is valid.

  • #​9211: fix(api-reference): improve search ranking for parameter, request-body, and model field names, including polymorphic (oneOf/anyOf/allOf) schemas

  • #​9211: fix: resolve $ref in additionalProperties before rendering schema

  • #​9211: chore: use the new schemas

  • #​9211: Fix mobile sidebar z-index to ensure it appears above all content when open

  • #​9211: Avoid repeating request body schema descriptions above collapsed overflow properties.

  • #​9211: feat: add more analytics events

  • #​9211: fix: agent scalar warnings

  • #​9211: fix(api-reference): lower badge style specificity

  • #​9211: fix: posthog stream warning

v1.55.3

Patch Changes
  • #​9095: fix(api-reference): use overflow-wrap break-word for tag labels

v1.55.2

Patch Changes
  • #​9076: fix(api-reference): improve rendering of virtualized code blocks
  • #​9086: feat: code split tailwind CSS to reduce bundle size

v1.55.1

Patch Changes

v1.55.0

Minor Changes
  • #​9045: feat(api-reference): show an "auth required" / "auth optional" badge next to each operation's path. Requirements are resolved via operation.security ?? document.security; hover reveals the scheme names, types, and any required scopes.
Patch Changes
  • #​9045: fix(api-reference): flatten deepObject query parameter display in parameter rendering
  • #​9045: fix inline composed schema descriptions in api-reference
  • #​9045: fix(api-reference): ignore undefined examples on flattened deepObject parameters
  • #​9045: fix: remove extraneous eventBus prop from AgentScalarDrawer to eliminate Vue warning
  • #​9043: chore: move test documents to cdn
  • #​9045: chore: move scalar version logs

v1.54.0

Minor Changes
  • #​8970: feat(api-reference): show an "auth required" / "auth optional" badge next to each operation's path. Requirements are resolved via operation.security ?? document.security; hover reveals the scheme names, types, and any required scopes.
Patch Changes
  • #​8963: fix(api-reference): flatten deepObject query parameter display in parameter rendering
  • #​8906: fix inline composed schema descriptions in api-reference
  • #​8963: fix(api-reference): ignore undefined examples on flattened deepObject parameters
  • #​9003: fix: remove extraneous eventBus prop from AgentScalarDrawer to eliminate Vue warning
  • #​8987: chore: move scalar version logs

v1.53.1

v1.53.0

Minor Changes
  • #​8772: feat: link to model from endpoints

v1.52.6

v1.52.5

v1.52.4

Patch Changes
  • #​8884: fix: restore position: fixed on .section-flare so the decorative hero flare stops reserving 100vh of empty space at the top of the documentation (affects the kepler, bluePlanet, and mars themes, which declare height: 100vh on the flare but rely on the framework to position it)
  • #​8907: Fix code sample missing body content type update
  • #​8925: chore: source vite-plugin-css-injected-by-js from the shared pnpm catalog
  • #​8944: feat(api-reference): add anchors and copy link buttons to allOf body parameters

v1.52.3

Patch Changes
  • #​8810: refactor: move telemetry to an optional plugin
  • #​8911: feat: switch from Request to RequestPayload to support body with GET
  • #​8859: refactor api-reference exports and enforce strict Vite entrypoint resolution from package exports

v1.52.2

Patch Changes
  • #​8827: chore: removed old client v1 code
  • #​8791: fix test requests so exploded array query parameters keep all values instead of collapsing to the last one
  • #​8863: chore: updated imports to new api client version
  • #​8780: fix: run intersect for the top of the document
  • #​8825: chore: moving files around in preparation for the big deletion of client v1
  • #​8831: refactor(api-reference): remove search index ts-expect-error by using typed collection access
  • #​8784: fix: correctly display schema names

v1.52.1

Patch Changes
  • #​8769: feat(themes): add Tailwind v3 transform reset
  • #​8767: feat(api-reference): collapse truncated descriptions
  • #​8776: fix: hide content type switch when there is no content
  • #​8777: fix(api-reference): set example z-index to context layer
  • #​8770: fix: generate the response examples by removing the priority order

v1.52.0

Minor Changes
  • #​8750: feat: display model name for body section
  • #​8695: feat: suport pre/post request scripts
Patch Changes
  • #​8431: fix: SSR breaks
  • #​8431: fix(api-reference): avoid duplicate app creation during hydration
  • #​8747: fix: extract request body from all content types in search index

v1.51.0

Minor Changes
  • #​8712: feat: use separate stores for client and shared state on the reference
Patch Changes
  • #​8728: fix: correctly merge security schemes with the config security

v1.50.0

Minor Changes
  • #​8524: feat: move request logic on the store and generate a request builder
  • #​8609: feat: display tag groups for classic layout
Patch Changes
  • #​8657: test(api-reference): add regression coverage for hiddenClients source switching
  • #​8642: refactor(api-reference): remove openapi-types dependency and align with workspace-store types
  • #​8659: fix search indexing to include path-level parameters and response examples for operations
  • #​8650: fix: ensure we have a introduction entry on the sidear by default

v1.49.8

Patch Changes
  • #​8628: chore: remove unused playgrounds

v1.49.7

Patch Changes
  • #​8612: fix: intersection observer for scroll-spy and tall sections

v1.49.6

Patch Changes
  • #​8599: fix(api-client): truncate long table tooltip content
  • #​8595: fix: deep resolve when generating examples from schema

v1.49.5

Patch Changes
  • #​8574: feat: make external urls configurable
  • #​8557: feat(api-reference): switch standalone build from terser to OXC minifier for faster builds
  • #​8473: fix: request body code samples when switching anyOf or oneOf schemas

v1.49.4

Patch Changes
  • #​8513: fix(api-reference): make responsive header rendering SSR-safe
  • #​8526: feat: improve filtering of client selector
  • #​8571: fix: [ERR_UNKNOWN_FILE_EXTENSION]: Unknown file extension ".css" for
  • #​8563: fix: type declarations don't use the full path for imports

v1.49.3

Patch Changes
  • #​8529: rewrite declaration aliases in built type files

v1.49.2

Patch Changes
  • #​8509: fix: show falsy example values (false, 0) in schema property headings
  • #​8514: fix: invalid markup breaks ssr

v1.49.1

Patch Changes
  • #​8466: chore: new build pipeline
  • #​8479: fix: render schema property examples when values are falsy

v1.49.0

Minor Changes
Patch Changes
  • #​8443: fix hash-prefixed basePath routing
  • #​8467: feat(api-reference): improve Ask AI button consistency and a11y
  • #​8442: fix object schema descriptions in parameter rendering
Updated Dependencies

v1.48.8

Patch Changes
  • #​8425: fix auth default OAuth scope fallback
  • #​8416: fix: direct css import breaks build in react, vitepress and others
  • #​8417: fix: document not defined in SSR environments
Updated Dependencies

v1.48.7

Patch Changes
Updated Dependencies

v1.48.6

Patch Changes
  • #​8414: fix(api-reference): limit height of example response descriptions
Updated Dependencies

v1.48.5

Patch Changes
  • #​8406: feat: x-order
  • #​8097: fix: lazy load compositions
  • #​8380: feat(api-reference): render <a> HTML tag for documentDownloadType: direct
Updated Dependencies

v1.48.4

Patch Changes
Updated Dependencies

v1.48.2

Patch Changes
  • #​8381: feat: add mcp config support
  • #​8375: feat(api-reference): export lazy bus queue helper
  • #​8370: fix: hide the authentication panel when test requests are disabled
Updated Dependencies

v1.48.1

Patch Changes
  • #​8288: fix: add consistent border to schema composition components
  • #​8348: fix(api-reference): bump dev tools z index for themes
  • #​8366: fix(components): clean up search components and add snapshots
Updated Dependencies

v1.48.0

Minor Changes
  • #​8266: support operation level authentication and servers
Patch Changes
Updated Dependencies

v1.47.0

Minor Changes
  • #​8322: chore: bump required node version to >=22 (LTS)
Patch Changes
  • #​8340: fix: delay when clicking "show more" button
  • #​8340: refactor(api-reference): update AgentScalarDrawer
  • #​8340: chore: enable perf logs only for dev environment
Updated Dependencies

v1.46.4

Patch Changes
  • #​8330: fix: use ref name only as a fallback

v1.46.3

Patch Changes
  • #​8298: feat(api-reference): show explicit no-content response tabs for defined response keys
  • #​8313: chore: resolve schemas on demand
Updated Dependencies

v1.46.2

Patch Changes
Updated Dependencies

v1.46.1

Patch Changes
  • #​8294: default createAnySecurityScheme to false and fix index clamp issue
Updated Dependencies

v1.46.0

Minor Changes
Patch Changes
  • #​8283: fix: scrollToLazy can not find id when the browser is busy
Updated Dependencies

v1.44.27

Patch Changes
  • #​8274: feat(agent): add config to hide search api
  • #​8260: feat: update developer tools
Updated Dependencies

Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At 12:00 AM through 04:59 AM and 10:00 PM through 11:59 PM, Monday through Friday (* 0-4,22-23 * * 1-5)
    • Only on Sunday and Saturday (* * * * 0,6)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot force-pushed the renovate/scalar-monorepo branch from 98312d9 to eadf676 Compare April 30, 2026 22:55
@renovate renovate Bot changed the title fix(deps): update dependency @scalar/api-reference to v1.52.5 fix(deps): update dependency @scalar/api-reference to v1.52.6 Apr 30, 2026
@renovate renovate Bot force-pushed the renovate/scalar-monorepo branch from eadf676 to fd4d141 Compare May 4, 2026 05:44
@renovate renovate Bot changed the title fix(deps): update dependency @scalar/api-reference to v1.52.6 fix(deps): update dependency @scalar/api-reference to v1.53.0 May 4, 2026
@renovate renovate Bot force-pushed the renovate/scalar-monorepo branch from fd4d141 to 25aaf8f Compare May 5, 2026 00:33
@renovate renovate Bot changed the title fix(deps): update dependency @scalar/api-reference to v1.53.0 fix(deps): update dependency @scalar/api-reference to v1.53.1 May 5, 2026
@renovate renovate Bot force-pushed the renovate/scalar-monorepo branch from 25aaf8f to f30dcda Compare May 6, 2026 21:32
@renovate renovate Bot changed the title fix(deps): update dependency @scalar/api-reference to v1.53.1 fix(deps): update dependency @scalar/api-reference to v1.54.0 May 6, 2026
@renovate renovate Bot force-pushed the renovate/scalar-monorepo branch from f30dcda to ff4cdf3 Compare May 7, 2026 01:29
@renovate renovate Bot changed the title fix(deps): update dependency @scalar/api-reference to v1.54.0 fix(deps): update dependency @scalar/api-reference to v1.55.0 May 7, 2026
@renovate renovate Bot force-pushed the renovate/scalar-monorepo branch from ff4cdf3 to 741cb0c Compare May 7, 2026 21:13
@renovate renovate Bot changed the title fix(deps): update dependency @scalar/api-reference to v1.55.0 fix(deps): update dependency @scalar/api-reference to v1.55.1 May 7, 2026
@renovate renovate Bot force-pushed the renovate/scalar-monorepo branch from 741cb0c to 26490b7 Compare May 12, 2026 01:24
@renovate renovate Bot changed the title fix(deps): update dependency @scalar/api-reference to v1.55.1 fix(deps): update dependency @scalar/api-reference to v1.55.2 May 12, 2026
@renovate renovate Bot force-pushed the renovate/scalar-monorepo branch from 26490b7 to 718a966 Compare May 13, 2026 00:31
@renovate renovate Bot changed the title fix(deps): update dependency @scalar/api-reference to v1.55.2 fix(deps): update dependency @scalar/api-reference to v1.55.3 May 13, 2026
@renovate renovate Bot force-pushed the renovate/scalar-monorepo branch 2 times, most recently from 123e5b8 to f703d6b Compare May 21, 2026 22:07
@renovate renovate Bot changed the title fix(deps): update dependency @scalar/api-reference to v1.55.3 fix(deps): update dependency @scalar/api-reference to v1.57.1 May 21, 2026
@socket-security
Copy link
Copy Markdown

socket-security Bot commented May 21, 2026

Review the following changes in direct dependencies. Learn more about Socket for GitHub.

Diff Package Supply Chain
Security
Vulnerability Quality Maintenance License
Updated@​scalar/​api-reference@​1.44.26 ⏵ 1.57.29810091100100

View full report

@renovate renovate Bot force-pushed the renovate/scalar-monorepo branch from f703d6b to 77eaadb Compare May 23, 2026 09:49
@renovate renovate Bot changed the title fix(deps): update dependency @scalar/api-reference to v1.57.1 fix(deps): update dependency @scalar/api-reference to v1.57.2 May 23, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants