Skip to content

deps: bump the dependency-updates group across 1 directory with 14 updates#1978

Open
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/npm_and_yarn/main/dependency-updates-8fd5fbef60
Open

deps: bump the dependency-updates group across 1 directory with 14 updates#1978
dependabot[bot] wants to merge 2 commits into
mainfrom
dependabot/npm_and_yarn/main/dependency-updates-8fd5fbef60

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github Jun 1, 2026

Bumps the dependency-updates group with 14 updates in the / directory:

Package From To
@primer/octicons-react 19.25.0 19.28.0
@primer/react 38.22.0 38.26.0
babel-plugin-styled-components 2.1.4 2.3.0
downshift 9.3.2 9.3.4
framer-motion 12.38.0 12.40.0
fuse.js 7.3.0 7.4.0
postcss 8.5.14 8.5.15
@npmcli/template-oss 5.0.0 5.1.0
eslint-import-resolver-typescript 4.4.4 4.4.5
eslint-mdx 3.7.0 3.8.1
eslint-plugin-mdx 3.7.0 3.8.1
eslint-plugin-prettier 5.5.5 5.5.6
semver 7.8.0 7.8.1
tar 7.5.15 7.5.16

Updates @primer/octicons-react from 19.25.0 to 19.28.0

Release notes

Sourced from @​primer/octicons-react's releases.

v19.28.0

Minor Changes

v19.27.0

Minor Changes

Patch Changes

v19.26.0

Minor Changes

Patch Changes

Changelog

Sourced from @​primer/octicons-react's changelog.

19.28.0

Minor Changes

19.27.0

Minor Changes

Patch Changes

19.26.0

Minor Changes

Patch Changes

Commits

Updates @primer/react from 38.22.0 to 38.26.0

Release notes

Sourced from @​primer/react's releases.

@​primer/react@​38.26.0

Minor Changes

  • #7869 23fba52 Thanks @​adierkens! - Slot system consistency improvements:

    • Remove orphan __SLOT__ markers from root components that no parent scans for: ActionMenu (root Menu), UnderlinePanels (root), Autocomplete is unchanged (still used as a FormControl child), PageLayout (root), SegmentedControl (root), RadioGroup (root), CheckboxGroup (root), and Dialog (root). Sub-component markers are intentionally retained so consumers can keep wrapping them.
    • Standardize Symbol(...) descriptions used as slot markers to the Parent.Slot convention: CheckboxOrRadioGroupLabelCheckboxOrRadioGroup.Label, CheckboxOrRadioGroupCaptionCheckboxOrRadioGroup.Caption, CheckboxOrRadioGroupValidationCheckboxOrRadioGroup.Validation, DEPRECATED_TooltipTooltip, and TableDataTable.Table.
    • Migrate PageHeader, NavList.Item, and the internal CheckboxOrRadioGroup to use the useSlots hook instead of hand-rolling React.Children traversal with isSlot. The CheckboxOrRadioGroup migration also removes duplicated work where useSlots was already called but slots were re-extracted by hand immediately after.
    • Export useSlots, isSlot, asSlot, and the WithSlotMarker/FCWithSlotMarker types publicly from @primer/react so downstream consumers can build their own slot-aware compound components.
    • Add asSlot(component, slotSource) helper: a typed utility that copies a __SLOT__ marker from a source slot component onto a wrapper component, replacing the cast-heavy (Wrapper as typeof Wrapper & {__SLOT__?: symbol}).__SLOT__ = Source.__SLOT__ pattern.
    • Add a dev-mode warning in useSlots when a child's displayName matches a slot component's displayName but the child is missing the __SLOT__ marker — a common footgun when wrapping slot components.
  • #7898 da27739 Thanks @​francinelucca! - ThemeProvider: Add contextOnly prop to opt out of rendering the wrapping <div> with data-* theme attributes

  • #7886 64dfbd3 Thanks @​janmaarten-a11y! - Add Timeline.Actions sub-component for rendering action buttons, links, SHAs, status labels, and similar right-aligned content on a Timeline.Item. Renders as a horizontal flex row pushed to the right edge of the item with gap: 8px between children and min-height matching the badge so contents vertically center against it.

  • #7885 9d2cb53 Thanks @​janmaarten-a11y! - Add Timeline.Avatar sub-component for rendering an actor avatar in the left gutter of a Timeline.Item. Accepts any React children and is absolutely positioned so it does not affect badge or body layout. Consumers must reserve roughly 72px of left padding around the Timeline for the avatar to be visible.

Patch Changes

  • #7864 e7205ea Thanks @​mattcosta7! - Eliminate nested-update cascades in useFocus, PageLayout.Pane, and AnchoredOverlay:

    • useFocus no longer produces a second re-render after focusing; one focus() call now results in exactly one render instead of two.
    • PageLayout.Pane (resizable) no longer triggers a forced re-render before paint on mount. The CSS variable and ARIA attributes are still updated synchronously in the layout effect; the React state sync is wrapped in startTransition so it runs in the transition lane rather than as part of the layout-effect commit.
    • AnchoredOverlay no longer keeps useAnchoredPosition's scroll listeners and ResizeObserver attached while it is closed. After an open→close cycle, the first scroll/resize event no longer fires a spurious setPosition(undefined) that re-renders the closed overlay.

    Also adds a profiler-based test harness at src/utils/testing/profiler.tsx so future regressions can be pinned with counter.updateCount and counter.nestedUpdateCount assertions.

  • #7892 4dd08af Thanks @​TylerJDev! - AnchoredOverlay: Disable CSS anchor positioning if related CSS rules are not supported

  • #7878 8c468fd Thanks @​mattcosta7! - FilteredActionList: Guard against undefined items in the virtualizer's getItemKey callback to prevent a crash when @tanstack/react-virtual invokes it with an index whose item was just removed (e.g. when filtering shrinks the items list).

  • #7893 0eef204 Thanks @​mattcosta7! - Button: Replace the icon-only-with-counter :has(...):not(:has(...)) selector with a data-icon-only-counter attribute computed from props. Reduces style-recalculation cost on pages that render many Buttons. No visual or behavioral changes.

  • #7896 673514b Thanks @​mattcosta7! - TextInput / TextInputWithTokens / Select / Autocomplete: Replace chained :not([data-leading-visual]), :not([data-trailing-visual]), and :not([data-trailing-action]) attribute negations in TextInputWrapper styles with positive data-no-leading-visual, data-no-trailing-visual, and data-no-trailing-action markers emitted by the wrapper components. Eliminates the 2- and 3-deep :not() chains that previously evaluated against every input on every state change. No visual or behavioral changes.

  • #7876 980e94c Thanks @​mattcosta7! - UnderlinePanels: Eliminate the empty-tablist frame on mount and the cascading re-render when icons toggle. Tabs and panels are now derived in render (previously stored in state synced via useEffect), the list width is kept

... (truncated)

Commits
  • df9fd9b Release tracking (#7883)
  • da27739 feat(ThemeProvider): add contextOnly prop to prevent rendering of wrapping di...
  • 673514b perf(TextInputWrapper): replace :not() attribute chains with positive markers...
  • 0eef204 perf(Button): replace :has() icon-only-counter selector with data attribute (...
  • 9d2cb53 Add Timeline.Avatar sub-component (#7885)
  • 4dd08af AnchoredOverlay: Disable CSS Anchor Positioning if fallbacks is not supported...
  • 0867609 Bump @​primer/live-region-element to 0.8.0 (#7895)
  • 64dfbd3 Add Timeline.Actions sub-component (#7886)
  • af17094 ci: raise error if no report found for playwright (#7887)
  • 980e94c perf(UnderlinePanels): eliminate cascading renders on mount and resize (#7876)
  • Additional commits viewable in compare view

Updates babel-plugin-styled-components from 2.1.4 to 2.3.0

Release notes

Sourced from babel-plugin-styled-components's releases.

v2.3.0

Minor Changes

  • 0c5f21d: Add a cssPropImportPath option to control which package the css-prop transform auto-imports styled from when the file has no existing styled import. Defaults to 'styled-components' (existing behavior). React Native targets can set it to 'styled-components/native' so the auto-injected import resolves to the right runtime.
  • 0c5f21d: Detect styled declarations that go through a local alias of the import, including the TypeScript theme-typing pattern const styled = baseStyled as ThemedStyledInterface<MyTheme>. After type-stripping Babel sees a plain const styled = baseStyled, and the detector now follows single-identifier alias chains so styled.div resolves back to the original import.

Patch Changes

  • 0c5f21d: Fix invalid output when a css={{ ... }} object key matches a local binding name (e.g. ({ position }) => <div css={{ position: 'absolute' }} />). The reducer no longer mis-treats non-computed property names as scope references, so plain keys stay literal while only computed [expr] keys are extracted as prop interpolations.
  • 0c5f21d: Recognize TypeScript's __importDefault interop helper alongside Babel's _interopRequireDefault. Files compiled through tsc / ts-jest (which emit var sc_1 = __importDefault(require('styled-components'))) now flow into the same detection path as Babel-compiled output, so styled declarations downstream pick up displayName and componentId as expected.

v2.2.0

Minor Changes

  • a40e3f7: Refresh the toolchain and fix a handful of css-prop transform bugs that had crept in under recent Babel versions.
    • When a file already imports styled and also uses one or more css={…} props, every styled component now keeps its display name and stable component id. Previously the cache that tracks the local default import could be overwritten on each css-prop usage, which silently dropped the display name and id for the surrounding styled.div declarations.
    • css={{ [foo]: bar }} with a non-primitive value no longer fails Babel's validator. Computed keys are preserved through the css-prop object rewrite.
    • Friendlier error messages when the css-prop transform encounters a JSX name shape it can't infer, instead of a confusing internal ReferenceError.
    • Long-running watch processes (Next dev, webpack-dev-server, jest watch) no longer leak import-detection state between files.
    • Removed the runtime lodash dependency. The plugin now ships with @babel/core as a declared peer.
    • Dev tooling moved to pnpm and changesets. Plugin behavior is unchanged.
Changelog

Sourced from babel-plugin-styled-components's changelog.

2.3.0

Minor Changes

  • 0c5f21d: Add a cssPropImportPath option to control which package the css-prop transform auto-imports styled from when the file has no existing styled import. Defaults to 'styled-components' (existing behavior). React Native targets can set it to 'styled-components/native' so the auto-injected import resolves to the right runtime.
  • 0c5f21d: Detect styled declarations that go through a local alias of the import, including the TypeScript theme-typing pattern const styled = baseStyled as ThemedStyledInterface<MyTheme>. After type-stripping Babel sees a plain const styled = baseStyled, and the detector now follows single-identifier alias chains so styled.div resolves back to the original import.

Patch Changes

  • 0c5f21d: Fix invalid output when a css={{ ... }} object key matches a local binding name (e.g. ({ position }) => <div css={{ position: 'absolute' }} />). The reducer no longer mis-treats non-computed property names as scope references, so plain keys stay literal while only computed [expr] keys are extracted as prop interpolations.
  • 0c5f21d: Recognize TypeScript's __importDefault interop helper alongside Babel's _interopRequireDefault. Files compiled through tsc / ts-jest (which emit var sc_1 = __importDefault(require('styled-components'))) now flow into the same detection path as Babel-compiled output, so styled declarations downstream pick up displayName and componentId as expected.

2.2.0

Minor Changes

  • a40e3f7: Refresh the toolchain and fix a handful of css-prop transform bugs that had crept in under recent Babel versions.
    • When a file already imports styled and also uses one or more css={…} props, every styled component now keeps its display name and stable component id. Previously the cache that tracks the local default import could be overwritten on each css-prop usage, which silently dropped the display name and id for the surrounding styled.div declarations.
    • css={{ [foo]: bar }} with a non-primitive value no longer fails Babel's validator. Computed keys are preserved through the css-prop object rewrite.
    • Friendlier error messages when the css-prop transform encounters a JSX name shape it can't infer, instead of a confusing internal ReferenceError.
    • Long-running watch processes (Next dev, webpack-dev-server, jest watch) no longer leak import-detection state between files.
    • Removed the runtime lodash dependency. The plugin now ships with @babel/core as a declared peer.
    • Dev tooling moved to pnpm and changesets. Plugin behavior is unchanged.
Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for babel-plugin-styled-components since your current version.


Updates downshift from 9.3.2 to 9.3.4

Release notes

Sourced from downshift's releases.

v9.3.4

9.3.4 (2026-05-31)

Bug Fixes

  • bring back action props and update the hooks to use TypeScript fully (#1683) (b415eea)

v9.3.3

9.3.3 (2026-05-18)

Bug Fixes

  • docusaurus: update and fix webpack issue (#1685) (efe364e)
Commits
  • b415eea fix: bring back action props and update the hooks to use TypeScript fully (#1...
  • 71cf356 dev: replace cypress with playwright (#1687)
  • cfefe77 docs(useMultipleSelection): remove itemToString prop references (#1684)
  • efe364e fix(docusaurus): update and fix webpack issue (#1685)
  • See full diff in compare view

Updates framer-motion from 12.38.0 to 12.40.0

Changelog

Sourced from framer-motion's changelog.

[12.40.0] 2026-05-21

Added

  • path option to transition.
  • arc() for motion along an arc.

[12.39.0] 2026-05-18

Added

  • Support for repeatType and repeatDelay in animation sequences.

Fixed

  • Variants: Re-run keyframe animations when switching between variant labels even when they share identical keyframe arrays.
  • Drag: Preserve in-flight motion value animations across React 19 reorder unmount/remount so dragSnapToOrigin no longer leaves the drag transform stranded after a layout swap.
  • LazyMotion: Share React contexts between the framer-motion and framer-motion/m (and therefore motion/react and motion/react-m) CJS bundles so that <m.div> from the /m subpath picks up features loaded by <LazyMotion> from the main entry point.
  • useScroll: Support hydrating target and container refs from anywhere in the tree.
  • Drag: Gesture no longer starts from incorrect start point when rendered inside <AnimatePresence initial={false} />.
  • Drag: dragConstraints, when set as viewport-relative ref, no longer break on scroll.§
  • Updated visualElement hydration order.
  • useAnimate: Now respects skipAnimations.
  • AnimatePresence: Fix object-form initial values not applied on re-entry after exit completes.
  • scroll: Fixed callback progress when tracking an element.
  • useScroll: Fix hardware acceleration when tracking an element.
Commits
  • 38ebb94 v12.40.0
  • b1f766c Latest
  • bca5544 Merge pull request #3699 from motiondivision/lochie/arcs-injectable
  • f1a96cf arc(): rename amp/rotate, expose MotionPath, fix explicit cw/ccw
  • b4aaba0 pathRotation: non-destructive orientToPath rotation channel
  • 8604ef3 Make arcs injectable via transition.path = arc()
  • f90fe29 add orientToPath
  • 9ebe999 fix: test
  • bc2107e Revert "no should"
  • 6eeb92d no should
  • Additional commits viewable in compare view

Updates fuse.js from 7.3.0 to 7.4.0

Release notes

Sourced from fuse.js's releases.

v7.4.0

First stable on the 7.4 line. Aggregates everything from the 7.4.0-beta.17.4.0-beta.8 cycle. See CHANGELOG.md for the per-beta breakdown.

Features

  • FuseWorker — parallel search via Web Workers (9ba192c). New FuseWorker class shards the collection across workers, runs searches in parallel, and preserves the same result ordering as Fuse. See the Web Workers guide.
  • token-search: tokenMatch: 'all' | 'any' option for AND/OR semantics (#827, 9f979d0). Default 'any' preserves existing behavior; 'all' requires every query word to match somewhere in a record (term-centric AND), useful for filter-style queries.
  • token-search: customizable tokenizer with unicode-aware default (#821, 8e55cae). New tokenize?: RegExp | (text: string) => string[] option; the default regex now segments CJK, Cyrillic, Greek, Arabic, etc. out of the box.

Bug Fixes

  • matches: report array-path keys as dotted strings (acd54e8). Previously match.key leaked a raw string[] for keys declared as path arrays (e.g. keys: [['author', 'firstName']]), contradicting the documented FuseResultMatch.key: string type. Now emits the canonical dotted string ('author.firstName'). Behavior change: consumers relying on the array shape need to update.
  • bitap: restrict highlight indices to matched window (#792, 622f105). Closes #505, #611, #691, #793.
  • index: correct doc-index alignment for Fuse<string> with blank docs (0b8e3ca).
  • core: invalidate searcher cache on collection mutation (fcf4228).
  • token-search: renumber inverted index after doc removal (ea9356d).
  • workers: preserve global refIndex across shards (e4217f9), match Fuse ordering and reject non-cloneable options (d571390), reject useTokenSearch in FuseWorker (8c6183d).
  • match: explicitly reject useTokenSearch in Fuse.match (3959d91).
  • correct fieldCount accounting and add reverse lookup in inverted index (54e702c).
  • guard against empty-string crash in fieldNorm (e550ab1); skip consecutive spaces in fieldNorm word counting (5929af6).
  • types: resolve typecheck errors and align KeyStore types (dbc115d).
  • docs: reflect data edits in playground demo (#825, 6eff909).

Performance

  • reuse bit arrays in Bitap search instead of allocating per error level (ec9b446)
  • replace forEach with for loops in search hot paths (1945f49)
  • fast-path Math.pow when exponent is 1 in computeScore (c82de57)
  • pre-allocate records array and use for loops in FuseIndex.create (5800036)
  • replace regex with loop for word counting in fieldNorm (5517a9b)
  • use filter instead of reverse-splice in removeAll / remove (c74823b, 8372b0a)
  • token-search: drop unused postings from inverted index (5ea216f)

Internal

  • refactor: replace extended-search matcher classes with plain functions (f8d61c9)
  • bench: consolidate benchmark/ into bench/ and add npm scripts (3b3a4c6)
  • ci: update Node matrix to 20, 22, 24 (b906906)
  • chore(deps): pin secure versions via npm overrides (3a1b118)

Docs

  • Migrated the site from VuePress to VitePress (663ee53)
  • New articles: "Using Fuse.js with React" (512bc7d), "Fuse.js vs Semantic Search" (5f93b4d)
  • New interactive demos in the fuzzy search article (edit distance, Bitap, threshold, search window)
  • Web Workers documentation and demo
  • Fuse Cloud landing page with waitlist

Behavior changes worth noting

... (truncated)

Changelog

Sourced from fuse.js's changelog.

7.4.0 (2026-05-30)

7.4.0-beta.8 (2026-05-25)

Bug Fixes

  • matches: report array-path keys as dotted strings (acd54e8)

7.4.0-beta.7 (2026-05-22)

Features

  • token-search: add tokenMatch 'all' | 'any' for AND/OR (#827) (9f979d0)

Bug Fixes

  • docs: reflect data edits in playground demo (#825) (6eff909)

7.4.0-beta.6 (2026-05-14)

Bug Fixes

7.4.0-beta.5 (2026-05-10)

Features

  • token-search: add customizable tokenizer with unicode-aware default (8e55cae), closes #821

Bug Fixes

  • index: correct doc-index alignment for Fuse with blank docs (0b8e3ca)

7.4.0-beta.4 (2026-04-28)

7.4.0-beta.3 (2026-04-26)

Bug Fixes

  • match: explicitly reject useTokenSearch in Fuse.match (3959d91)
  • workers: match Fuse ordering and reject non-cloneable options (d571390)
  • workers: reject useTokenSearch in FuseWorker (8c6183d)

... (truncated)

Commits
  • 77afcf3 chore(release): 7.4.0
  • 3ef9328 chore(release): 7.4.0-beta.8
  • acd54e8 fix(matches): report array-path keys as dotted strings
  • 5985a7e style: reformat src and test with prettier 3
  • 08bb3a7 chore: upgrade prettier to 3 and add format scripts
  • 9417622 chore(release): 7.4.0-beta.7
  • 9f979d0 feat(token-search): add tokenMatch 'all' | 'any' for AND/OR (#827)
  • 6eff909 fix(docs): reflect data edits in playground demo (#825)
  • a84f9cd docs: mention fuse-swift port and correct bundle sizes
  • b08ad28 chore(release): 7.4.0-beta.6
  • Additional commits viewable in compare view

Updates postcss from 8.5.14 to 8.5.15

Release notes

Sourced from postcss's releases.

8.5.15

  • Fixed declaration parsing performance (by @​homanp).
Changelog

Sourced from postcss's changelog.

8.5.15

  • Fixed declaration parsing performance (by @​homanp).
Commits
  • eae46db Release 8.5.15 version
  • 79508ff Update CI actions
  • b128e21 Speed up declaration parsing by avoiding creating new array on each token
  • 9825dca Fix code format
  • 55789c8 Update dependencies
  • 84fbbe9 Install older pnpm action for old Node.js
  • 9f860bd Revert pnpm action for old Node.js
  • 0877198 Update CI actions
  • b2d1a33 Fix linter warnings
  • 0700dac Merge pull request #2088 from rootvector2/add-oss-fuzz-harness
  • Additional commits viewable in compare view

Updates @npmcli/template-oss from 5.0.0 to 5.1.0

Release notes

Sourced from @​npmcli/template-oss's releases.

v5.1.0

5.1.0 (2026-05-11)

Features

Changelog

Sourced from @​npmcli/template-oss's changelog.

5.1.0 (2026-05-11)

Features

Commits

Updates eslint-import-resolver-typescript from 4.4.4 to 4.4.5

Release notes

Sourced from eslint-import-resolver-typescript's releases.

v4.4.5

Patch Changes

Changelog

Sourced from eslint-import-resolver-typescript's changelog.

4.4.5

Patch Changes

Commits
Maintainer changes

This version was pushed to npm by GitHub Actions, a new releaser for eslint-import-resolver-typescript since your current version.


Updates eslint-mdx from 3.7.0 to 3.8.1

Release notes

Sourced from eslint-mdx's releases.

eslint-mdx@3.8.1

No release notes provided.

eslint-mdx@3.8.0

No release notes provided.

eslint-mdx@3.7.1

Patch Changes

Commits

Updates eslint-plugin-mdx from 3.7.0 to 3.8.1

Release notes

Sourced from eslint-plugin-mdx's releases.

eslint-plugin-mdx@3.8.1

Patch Changes

  • #615 e36f2db Thanks @​JounQin! - fix: support ESLint config inspector

  • Updated dependencies []:

    • eslint-mdx@3.8.1

eslint-plugin-mdx@3.8.0

Minor Changes

Patch Changes

  • Updated dependencies []:
    • eslint-mdx@3.8.0

eslint-plugin-mdx@3.7.1

Patch Changes

  • Updated dependencies [a581355]:
    • eslint-mdx@3.7.1
Commits

Updates eslint-plugin-prettier from 5.5.5 to 5.5.6

Release notes

Sourced from eslint-plugin-prettier's releases.

v5.5.6

Patch Changes

Changelog

Sourced from eslint-plugin-prettier's changelog.

5.5.6

Patch Changes

Commits

Updates semver from 7.8.0 to 7.8.1

Release notes

Sourced from semver's releases.

v7.8.1

7.8.1 (2026-05-21)

Bug Fixes

…dates

Bumps the dependency-updates group with 14 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [@primer/octicons-react](https://github.com/primer/octicons) | `19.25.0` | `19.28.0` |
| [@primer/react](https://github.com/primer/react) | `38.22.0` | `38.26.0` |
| [babel-plugin-styled-components](https://github.com/styled-components/babel-plugin-styled-components) | `2.1.4` | `2.3.0` |
| [downshift](https://github.com/downshift-js/downshift) | `9.3.2` | `9.3.4` |
| [framer-motion](https://github.com/motiondivision/motion) | `12.38.0` | `12.40.0` |
| [fuse.js](https://github.com/krisk/Fuse) | `7.3.0` | `7.4.0` |
| [postcss](https://github.com/postcss/postcss) | `8.5.14` | `8.5.15` |
| [@npmcli/template-oss](https://github.com/npm/template-oss) | `5.0.0` | `5.1.0` |
| [eslint-import-resolver-typescript](https://github.com/import-js/eslint-import-resolver-typescript) | `4.4.4` | `4.4.5` |
| [eslint-mdx](https://github.com/mdx-js/eslint-mdx) | `3.7.0` | `3.8.1` |
| [eslint-plugin-mdx](https://github.com/mdx-js/eslint-mdx) | `3.7.0` | `3.8.1` |
| [eslint-plugin-prettier](https://github.com/prettier/eslint-plugin-prettier) | `5.5.5` | `5.5.6` |
| [semver](https://github.com/npm/node-semver) | `7.8.0` | `7.8.1` |
| [tar](https://github.com/isaacs/node-tar) | `7.5.15` | `7.5.16` |



Updates `@primer/octicons-react` from 19.25.0 to 19.28.0
- [Release notes](https://github.com/primer/octicons/releases)
- [Changelog](https://github.com/primer/octicons/blob/main/CHANGELOG.md)
- [Commits](primer/octicons@v19.25.0...v19.28.0)

Updates `@primer/react` from 38.22.0 to 38.26.0
- [Release notes](https://github.com/primer/react/releases)
- [Commits](https://github.com/primer/react/compare/@primer/react@38.22.0...@primer/react@38.26.0)

Updates `babel-plugin-styled-components` from 2.1.4 to 2.3.0
- [Release notes](https://github.com/styled-components/babel-plugin-styled-components/releases)
- [Changelog](https://github.com/styled-components/babel-plugin-styled-components/blob/main/CHANGELOG.md)
- [Commits](styled-components/babel-plugin-styled-components@v2.1.4...v2.3.0)

Updates `downshift` from 9.3.2 to 9.3.4
- [Release notes](https://github.com/downshift-js/downshift/releases)
- [Changelog](https://github.com/downshift-js/downshift/blob/master/CHANGELOG.md)
- [Commits](downshift-js/downshift@v9.3.2...v9.3.4)

Updates `framer-motion` from 12.38.0 to 12.40.0
- [Changelog](https://github.com/motiondivision/motion/blob/main/CHANGELOG.md)
- [Commits](motiondivision/motion@v12.38.0...v12.40.0)

Updates `fuse.js` from 7.3.0 to 7.4.0
- [Release notes](https://github.com/krisk/Fuse/releases)
- [Changelog](https://github.com/krisk/Fuse/blob/main/CHANGELOG.md)
- [Commits](krisk/Fuse@v7.3.0...v7.4.0)

Updates `postcss` from 8.5.14 to 8.5.15
- [Release notes](https://github.com/postcss/postcss/releases)
- [Changelog](https://github.com/postcss/postcss/blob/main/CHANGELOG.md)
- [Commits](postcss/postcss@8.5.14...8.5.15)

Updates `@npmcli/template-oss` from 5.0.0 to 5.1.0
- [Release notes](https://github.com/npm/template-oss/releases)
- [Changelog](https://github.com/npm/template-oss/blob/main/CHANGELOG.md)
- [Commits](npm/template-oss@v5.0.0...v5.1.0)

Updates `eslint-import-resolver-typescript` from 4.4.4 to 4.4.5
- [Release notes](https://github.com/import-js/eslint-import-resolver-typescript/releases)
- [Changelog](https://github.com/import-js/eslint-import-resolver-typescript/blob/master/CHANGELOG.md)
- [Commits](import-js/eslint-import-resolver-typescript@v4.4.4...v4.4.5)

Updates `eslint-mdx` from 3.7.0 to 3.8.1
- [Release notes](https://github.com/mdx-js/eslint-mdx/releases)
- [Changelog](https://github.com/mdx-js/eslint-mdx/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mdx-js/eslint-mdx/compare/eslint-mdx@3.7.0...eslint-mdx@3.8.1)

Updates `eslint-plugin-mdx` from 3.7.0 to 3.8.1
- [Release notes](https://github.com/mdx-js/eslint-mdx/releases)
- [Changelog](https://github.com/mdx-js/eslint-mdx/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mdx-js/eslint-mdx/compare/eslint-plugin-mdx@3.7.0...eslint-plugin-mdx@3.8.1)

Updates `eslint-plugin-prettier` from 5.5.5 to 5.5.6
- [Release notes](https://github.com/prettier/eslint-plugin-prettier/releases)
- [Changelog](https://github.com/prettier/eslint-plugin-prettier/blob/main/CHANGELOG.md)
- [Commits](prettier/eslint-plugin-prettier@v5.5.5...v5.5.6)

Updates `semver` from 7.8.0 to 7.8.1
- [Release notes](https://github.com/npm/node-semver/releases)
- [Changelog](https://github.com/npm/node-semver/blob/main/CHANGELOG.md)
- [Commits](npm/node-semver@v7.8.0...v7.8.1)

Updates `tar` from 7.5.15 to 7.5.16
- [Release notes](https://github.com/isaacs/node-tar/releases)
- [Changelog](https://github.com/isaacs/node-tar/blob/main/CHANGELOG.md)
- [Commits](isaacs/node-tar@v7.5.15...v7.5.16)

---
updated-dependencies:
- dependency-name: "@primer/octicons-react"
  dependency-version: 19.28.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependency-updates
- dependency-name: "@primer/react"
  dependency-version: 38.26.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependency-updates
- dependency-name: babel-plugin-styled-components
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependency-updates
- dependency-name: downshift
  dependency-version: 9.3.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependency-updates
- dependency-name: framer-motion
  dependency-version: 12.40.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependency-updates
- dependency-name: fuse.js
  dependency-version: 7.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: dependency-updates
- dependency-name: postcss
  dependency-version: 8.5.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependency-updates
- dependency-name: "@npmcli/template-oss"
  dependency-version: 5.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependency-updates
- dependency-name: eslint-import-resolver-typescript
  dependency-version: 4.4.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependency-updates
- dependency-name: eslint-mdx
  dependency-version: 3.8.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependency-updates
- dependency-name: eslint-plugin-mdx
  dependency-version: 3.8.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: dependency-updates
- dependency-name: eslint-plugin-prettier
  dependency-version: 5.5.6
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: dependency-updates
- dependency-name: semver
  dependency-version: 7.8.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependency-updates
- dependency-name: tar
  dependency-version: 7.5.16
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: dependency-updates
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot requested a review from a team as a code owner June 1, 2026 17:51
@dependabot dependabot Bot added the Dependencies Pull requests that update a dependency file label Jun 1, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant