Skip to content

Update dependency cmdk to v1 - #156

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/cmdk-1.x
Open

Update dependency cmdk to v1#156
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/cmdk-1.x

Conversation

@renovate

@renovate renovate Bot commented Mar 8, 2024

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
cmdk (source) ^0.2.0^1.0.0 age confidence

Release Notes

pacocoursey/cmdk (cmdk)

v1.1.1

Compare Source

What's Changed

  • Fix unintended double triggering of key bindings during IME composition by @​JaeSeoKim in #​339

New Contributors

Full Changelog: dip/cmdk@v1.1.0...v1.1.1

v1.1.0

Compare Source

What's Changed

  • fix useCmdk return type by @​lsmurray in #​329
  • fix: update the type of the defaultFilter by @​muZk in #​338
  • [Accessibility] Use id instead of children by @​UltimateGG in #​254
  • Use @radix-ui/react-compose-refs to merge refs, save on bundle size
  • Use React built-in useSyncExternalStore and remove shim. Note that React 18 has always been a required peerDependency of cmdk

New Contributors

Full Changelog: dip/cmdk@v1.0.4...v1.1.0

v1.0.4

Compare Source

What's Changed

New Contributors

Full Changelog: dip/cmdk@v1.0.3...v1.0.4

v1.0.3

Compare Source

  • Fix use-sync-external-store shim for compatibility with Next.js 15 and React 19 RC

v1.0.2

Compare Source

v1.0.1

Compare Source

What's Changed

New Contributors

Full Changelog: dip/cmdk@v1.0.0...v1.0.1

v1.0.0

Compare Source

This is a major version release as it contains breaking changes.

Breaking Changes

You will need to update your code to account for these changes before upgrading to cmdk@1.0.0.

value is now case sensitive 3dae25d

The value prop you pass to Command.Item and receive in onSelect is now case sensitive. But while the value is no longer lowercased, it is still trimmed.

Command.List is now required (CommandList in shadcn) 54aa261

Rendering the Command.List part (CommandList if using shadcn) is now mandatory. Otherwise, you should expect to see an error like this:

TypeError: undefined is not iterable (cannot read property Symbol(Symbol.iterator))

The fix:

// Before
<Command label="Command Menu">
	<Command.Input />
	<Command.Item />
	{/* ... */}
</Command>
// After
<Command label="Command Menu">
	<Command.Input />

	<Command.List>
		<Command.Item />
		{/* ... */}
	</Command.List>
</Command>
Update [aria-disabled] and [aria-selected] CSS selectors c57e6b7

The aria-disabled and aria-selected props will now be set to false, instead of being undefined. If you previously used CSS selectors based on attribute presence, you will now need to use the attribute value.

/* Before */
[aria-disabled] {}
:not([aria-disabled]) {}

/* After */
[aria-disabled="true"] {}
[aria-disabled="false"] {}

What's Changed

New Contributors

Full Changelog: dip/cmdk@v0.2.1...v1.0.0


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • At any time (no schedule defined)
  • 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.

@vercel

vercel Bot commented Mar 8, 2024

Copy link
Copy Markdown

The latest updates on your projects. Learn more about Vercel for GitHub.

Project Deployment Actions Updated (UTC)
full-stack-skeleton Ready Ready Preview Aug 18, 2026 7:14am

@codecov

codecov Bot commented Mar 12, 2024

Copy link
Copy Markdown

Codecov Report

✅ All modified and coverable lines are covered by tests.
✅ Project coverage is 36.32%. Comparing base (32fc8ed) to head (02a2159).

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #156   +/-   ##
=======================================
  Coverage   36.32%   36.32%           
=======================================
  Files          25       25           
  Lines         647      647           
=======================================
  Hits          235      235           
  Misses        370      370           
  Partials       42       42           

☔ View full report in Codecov by Harness.
📢 Have feedback on the report? Share it here.

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 52f7a01 to 6788b90 Compare March 22, 2024 13:14
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 6788b90 to 463fd4c Compare March 25, 2024 23:01
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 463fd4c to 61d5cad Compare April 3, 2024 19:30
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 61d5cad to 1c90af3 Compare April 15, 2024 21:45
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 1c90af3 to d4a63e2 Compare April 22, 2024 18:23
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from d4a63e2 to 61491f7 Compare April 30, 2024 18:59
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 61491f7 to 1557793 Compare May 6, 2024 15:18
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 1557793 to 6bed6f3 Compare May 17, 2024 20:43
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 6bed6f3 to 885460b Compare June 4, 2024 19:10
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 885460b to d6e20a0 Compare June 10, 2024 20:12
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from d6e20a0 to 6dfcf98 Compare June 20, 2024 17:37
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 6dfcf98 to 6d66d80 Compare June 27, 2024 18:11
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 08184b0 to 10b63ca Compare October 22, 2024 00:26
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 10b63ca to 8d1639d Compare October 23, 2024 20:28
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 8d1639d to 9537dc0 Compare August 7, 2025 13:45
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 9537dc0 to 684ce21 Compare August 7, 2025 17:16
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 684ce21 to 0800a49 Compare August 7, 2025 20:57
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 0800a49 to 4503fea Compare August 8, 2025 05:14
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 4503fea to f37b4e1 Compare August 8, 2025 08:28
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from f37b4e1 to d1d03c0 Compare August 14, 2025 13:53
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from d1d03c0 to 0ca7517 Compare August 23, 2025 17:12
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 0ca7517 to 4bd6e2a Compare September 7, 2025 00:50
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 4bd6e2a to 4b39135 Compare September 10, 2025 17:10
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 4b39135 to 3457304 Compare October 2, 2025 14:13
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 3457304 to 7245f00 Compare October 13, 2025 14:42
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from 7245f00 to a031f83 Compare October 25, 2025 04:07
@renovate
renovate Bot force-pushed the renovate/cmdk-1.x branch from a031f83 to 62ef3e6 Compare October 25, 2025 13:54
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