Skip to content

Release tracking 38.12.0 - #7528

Merged
llastflowers merged 1 commit into
mainfrom
changeset-release/main
Feb 17, 2026
Merged

Release tracking 38.12.0#7528
llastflowers merged 1 commit into
mainfrom
changeset-release/main

Conversation

@primer

@primerprimerBot commented Feb 11, 2026

Copy link
Copy Markdown
Contributor

This PR was opened by the Changesets release GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.

Releases

@primer/react@38.12.0

Minor Changes

  • #73483c160b2 Thanks @mattcosta7! - Add currentWidth and onResizeEnd props to PageLayout.Pane for controlled resizable width

    The PageLayout.Pane component now supports controlled width:

    • onResizeEnd — callback fired when a resize operation ends (pointer release or keyboard key up). Replaces localStorage persistence. Requires currentWidth.
    • currentWidth — sets the current displayed width in pixels (number | undefined). Pass undefined when the persisted value hasn't loaded yet. Requires onResizeEnd.

    Both props must be provided together (enforced by TypeScript). resizable remains a plain boolean prop.

    These props are only meaningful when resizable={true} — without it, no drag handle renders so onResizeEnd never fires.

    New export:

    • defaultPaneWidth — Record of preset width values: {small: 256, medium: 296, large: 320}

    Example usage:

    import{PageLayout,defaultPaneWidth}from'@primer/react'// Default behavior (unchanged) — localStorage persistence<PageLayout.Paneresizable/>// Controlled width with custom persistenceconst[width,setWidth]=useState(defaultPaneWidth.medium)<PageLayout.PaneresizablecurrentWidth={width}onResizeEnd={(newWidth)=>{setWidth(newWidth)myStorage.save('pane-width',newWidth)}}/>// Async load — pass undefined until value is fetched<PageLayout.PaneresizablecurrentWidth={savedWidth??undefined}onResizeEnd={handleResizeEnd}/>

Patch Changes

@primer/mcp@0.2.0

Minor Changes

Patch Changes

@primer
primerBot requested a review from a team as a code ownerFebruary 11, 2026 23:18
@primer
primerBot requested a review from francineluccaFebruary 11, 2026 23:18
@github-actions

github-actionsBot commented Feb 11, 2026

Copy link
Copy Markdown
Contributor

❗ Pre-merge checklist

Please ensure these items are checked before merging:

🔎 Smoke test

  • All CI checks pass on this pull request
  • Docs and Storybook open in a browser

🌏 Integration tests

  • Successful integration test with github/github-ui as a primary consumer of primer/react (automated pull request)
    • Verify all CI checks have passed on automated pull request
    • Manually test critical paths in preview
    • Manually test release-specific bugfixes and/or feature work as described in preview

✅ Peer Review

  • Create release review issue for Issues team (example)
  • Wait for approval from Issues team before merging

🤔 Sanity test

  • All bugfixes in this release have resolved their corresponding issues
  • The issues for any reverted PRs have been re-opened and commented on with a link to the reverted PR
  • No noticeable regressions have been introduced as a result of changes in this release
  • Release notes accurately describe the changes made

❗ Post-merge checklist

Please ensure these items are checked after merging:

🚢 Version upgrade, cleanup, and documentation

  • Upgrade @primer/react version at github/github-ui
  • Close Integration test PR and delete branch
  • Leave a /short-report comment on quarterly release conductor tracking issue summarizing time spent on release activities and any challenges encountered
  • Leave any testing notes on the automated per-shift release tracking issue. In particular, describe any issues encountered during your testing. This is helpful in providing historical context to the next release conductor as well as other maintainers.

@github-actions

Copy link
Copy Markdown
Contributor

👋 Hi, this pull request contains changes to the source code that github/github-ui depends on. If you are GitHub staff, test these changes with github/github-ui using the integration workflow. Or, apply the integration-tests: skipped manually label to skip these checks.

@primer
primerBotforce-pushed the changeset-release/main branch from a96c016 to 7916e66CompareFebruary 12, 2026 22:07
@github-actions
github-actionsBottemporarily deployed to storybook-preview-7528 February 12, 2026 22:18 Inactive
@llastflowersllastflowers added integration-tests: passing Changes in this PR do NOT cause breaking changes in gh/gh integration-tests: skipped manually Changes in this PR do not require an integration test labels Feb 17, 2026
@llastflowers

Copy link
Copy Markdown
Contributor

confirmed integration tests passed, but are just not updating here

@llastflowers
llastflowers merged commit 9933dc1 into mainFeb 17, 2026
60 checks passed
@llastflowers
llastflowers deleted the changeset-release/main branch February 17, 2026 22:45
@siddharthkpsiddharthkp changed the title Release trackingRelease tracking 38.12.0Mar 18, 2026
Sign up for freeto join this conversation on GitHub. Already have an account? Sign in to comment

Labels

integration-tests: passingChanges in this PR do NOT cause breaking changes in gh/ghintegration-tests: recommendedThis change needs to be tested for breaking changes. See https://arc.net/l/quote/tdmpakpmintegration-tests: skipped manuallyChanges in this PR do not require an integration test

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant

@llastflowers