Skip to content

RC #1560#1561

Open
rmenner wants to merge 30 commits into
mainfrom
rc/1560
Open

RC #1560#1561
rmenner wants to merge 30 commits into
mainfrom
rc/1560

Conversation

@rmenner

@rmenner rmenner commented Jul 16, 2026

Copy link
Copy Markdown
Collaborator

Alaska Airlines Pull Request

Release candidate pull request. See issue #1560 for details.

Review Checklist:

  • My update follows the CONTRIBUTING guidelines of this project
  • I have performed a self-review of my own update
RC Checklist

Testing Checklist:

Browsers

Browsers Support Guide

Dev demo link

Android

  • Chrome
  • Firefox

iOS

  • Chrome
  • Firefox
  • Safari

Desktop

  • Chrome
  • Firefox
  • Safari
  • Edge

Scenarios

  • Validated linked issues with issue reporting team
  • Test coverage report review

Framework playground

  • Next React
  • SvelteKit

**By submitting this Pull Request, I confirm that my contribution is made under the terms of the Apache 2.0 license.**

Pull Requests will be evaluated by their quality of update and whether it is consistent with the goals and values of this project. Any submission is to be considered a conversation between the submitter and the maintainers of this project and may require changes to your submission.

Thank you for your submission!

-- Auro Design System Team

@rmenner
rmenner requested a review from a team as a code owner July 16, 2026 20:02
@sourcery-ai

sourcery-ai Bot commented Jul 16, 2026

Copy link
Copy Markdown

Reviewer's Guide

Adds detailed release notes for version 6.0.1, documenting combobox focus/displayValue fixes, dropdown focus-management changes, input slot-handling improvements, associated test coverage, and a linked post-mortem document.

Sequence diagram for updated focus routing on combobox option click

sequenceDiagram
  actor User
  participant auroCombobox
  participant auroDropdown
  participant auroInput
  participant clearBtn

  User->>auroCombobox: clickOption()
  auroCombobox->>auroDropdown: closeDropdown(noFocusRestoreOnClose = true)
  auroDropdown-->>auroDropdown: [noFocusRestoreOnClose suppresses focusTrigger]
  auroCombobox->>auroInput: input.focus()
  auroCombobox->>clearBtn: clearBtn.focus()
  clearBtn-->>User: focus visible on clear button
Loading

File-Level Changes

Change Details Files
Introduce a new release notes document for version 6.0.1, summarizing bug fixes, focus-management behavior changes, test coverage additions, and related documentation for auro-combobox, auro-dropdown, and auro-input.
  • Document combobox fixes for displayValue rendering with preset values, first-keystroke bib opening, conditional autofocus, focus restoration to the clear button, and scoped focusin handling.
  • Document dropdown changes including removal of delegatesFocus, addition of a focusTrigger helper, the noFocusRestoreOnClose flag, and guarded input focusing on strategy changes.
  • Document input improvements around null-safe displayValue slot detection, more accurate hasDisplayValueContent evaluation, and guarded requestUpdate calls.
  • Summarize updated test coverage counts and new tests added for combobox, dropdown, and input components.
  • Reference the addition of a post-mortem document analyzing root causes and lessons learned for focus and displayValue issues.
docs/releases/06.00.01.md

Tips and commands

Interacting with Sourcery

  • Trigger a new review: Comment @sourcery-ai review on the pull request.
  • Continue discussions: Reply directly to Sourcery's review comments.
  • Generate a GitHub issue from a review comment: Ask Sourcery to create an
    issue from a review comment by replying to it. You can also reply to a
    review comment with @sourcery-ai issue to create an issue from it.
  • Generate a pull request title: Write @sourcery-ai anywhere in the pull
    request title to generate a title at any time. You can also comment
    @sourcery-ai title on the pull request to (re-)generate the title at any time.
  • Generate a pull request summary: Write @sourcery-ai summary anywhere in
    the pull request body to generate a PR summary at any time exactly where you
    want it. You can also comment @sourcery-ai summary on the pull request to
    (re-)generate the summary at any time.
  • Generate reviewer's guide: Comment @sourcery-ai guide on the pull
    request to (re-)generate the reviewer's guide at any time.
  • Resolve all Sourcery comments: Comment @sourcery-ai resolve on the
    pull request to resolve all Sourcery comments. Useful if you've already
    addressed all the comments and don't want to see them anymore.
  • Dismiss all Sourcery reviews: Comment @sourcery-ai dismiss on the pull
    request to dismiss all existing Sourcery reviews. Especially useful if you
    want to start fresh with a new review - don't forget to comment
    @sourcery-ai review to trigger a new review!

Customizing Your Experience

Access your dashboard to:

  • Enable or disable review features such as the Sourcery-generated pull request
    summary, the reviewer's guide, and others.
  • Change the review language.
  • Add, remove or edit custom review instructions.
  • Adjust other review settings.

Getting Help

@sourcery-ai sourcery-ai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey - I've left some high level feedback:

  • Consider briefly defining terms like “bib” the first time they’re used so the release notes are understandable to readers who aren’t familiar with internal component jargon.
  • You might want to explicitly call out which behavior changes could affect keyboard and screen reader interactions in a short accessibility-focused subsection to make the impact easier to scan.
Prompt for AI Agents
Please address the comments from this code review:

## Overall Comments
- Consider briefly defining terms like “bib” the first time they’re used so the release notes are understandable to readers who aren’t familiar with internal component jargon.
- You might want to explicitly call out which behavior changes could affect keyboard and screen reader interactions in a short accessibility-focused subsection to make the impact easier to scan.

Sourcery is free for open source - if you like our reviews please consider sharing them ✨
Help me be more useful! Please click 👍 or 👎 on each comment and I'll use the feedback to improve your reviews.

jordanjones243 and others added 26 commits July 16, 2026 14:19
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
Three defenses against shipping unbundled @aurodesignsystem/* imports in
published dist files:

- test/check-bundled-imports.mjs scans every
  components/*/dist/{index,registered}.js
  for bare specifiers outside an allowlist derived from
  EXTERNAL_PACKAGE_NAMES.
- internal.rollup.config.mjs throws on UNRESOLVED_IMPORT via onwarn and
  exports EXTERNAL_PACKAGE_NAMES so rollup's external array and the check
  script's allowlist share one source of truth.
- pull-request.yml and release.yml run `npm run test:dist` via
  additional-build-command so the cache save (and the rest of the workflow)
  fails if a malformed dist is produced.

See docs/post-mortem/1575423.md for the failure timeline, reproduction
steps, and the trade-off discussion.
sun-mota and others added 3 commits July 22, 2026 13:28
Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
…ng and width AB#1457608

- combobox: call showBib() from handleMenuLoadingChange when loading becomes
  true so the bib opens immediately when consumers set loading via inputValue
- menu: hardcode nocheckmark on the shadow DOM loading placeholder; the
  noCheckmark propagation loop only queries light DOM, leaving the shadow
  placeholder with 44px padding instead of 12px
- menu: replace inline-block + margin-bottom layout on loadingWrapper with
  flexbox so the spinner and text are properly vertically centered

Co-Authored-By: Claude Sonnet 4.6 (1M context) <noreply@anthropic.com>
@github-actions

Copy link
Copy Markdown

🎉 This PR is included in version 6.0.0-rc-1560.4 🎉

The release is available on:

Your semantic-release bot 📦🚀

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

4 participants