build(deps): Bump the minor-and-patch group with 6 updates #12

Merged
dependabot[bot] merged 1 commit from dependabot/npm_and_yarn/minor-and-patch-f96e00bfab into main 2026-06-01 01:10:56 +02:00
dependabot[bot] commented 2026-06-01 01:10:41 +02:00 (Migrated from github.com)

Bumps the minor-and-patch group with 6 updates:

Package From To
fuse.js 7.3.0 7.4.0
js-cookie 3.0.7 3.0.8
js-yaml 4.1.1 4.2.0
lucide-react 1.16.0 1.17.0
resend 6.12.3 6.12.4
tsx 4.22.3 4.22.4

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 js-cookie from 3.0.7 to 3.0.8

Release notes

Sourced from js-cookie's releases.

v3.0.8

  • Restore ES5 compatibility, inadvertently broken in 3.0.7 - #959
  • Lift Node version restriction, inadvertently restricted to >= 20 in 3.0.7 - #956
Commits
  • d7a1096 Craft v3.0.8 release
  • 248e685 Use existing Chrome with puppeteer
  • fc04269 Remove QUnit related workaround in Grunt config
  • 265a685 Tidy up package lock file
  • 478e591 Disable Node deprecation DEP0044 for release workflow
  • 331d524 Fix node version config for E2E test job
  • 11d773d Ensure ECMAScript compatibility
  • d788646 Remove engines property from package
  • e7d9a4d Fix typo in test assertion message
  • b5fca24 Make credentials use explicit in release workflow
  • See full diff in compare view

Updates js-yaml from 4.1.1 to 4.2.0

Changelog

Sourced from js-yaml's changelog.

[4.2.0] - 2026-06-01

Added

  • Added docs/safety.md with notes about processing untrusted YAML.
  • Added maxDepth (100) loader option. Not a problem, but gives a better exception instead of RangeError on stack overflow.
  • Added maxMergeSeqLength (20) loader option. Not a problem after merge fix, but an additional restriction for safety.

Changed

  • Stop resolving numbers with underscores as numeric scalars, #627.
  • Switched dev toolchains to Vite / neostandard.
  • Updated demo.
  • Reorganized tests.
  • dist/ files are no longer kept in the repository.

Fixed

  • Fix parsing of properties on the first implicit block mapping key, #62.
  • Fix trailing whitespace handling when folding flow scalar lines, #307.
  • Reject top-level block scalars without content indentation, #280.
  • Ensure numbers survive round-trip, #737.
  • Fix test coverage for issue #221.
  • Fix flow scalar trailing whitespace folding, #307.
  • Fix digits in YAML named tag handles.

Security

  • Fix potential DoS via quadratic complexity in merge - deduplicate repeated elements (makes sense for malformed files > 10K).

[3.14.2] - 2025-11-15

Security

  • Backported v4.1.1 fix to v3
Commits

Updates lucide-react from 1.16.0 to 1.17.0

Release notes

Sourced from lucide-react's releases.

Version 1.17.0

What's Changed

Full Changelog: https://github.com/lucide-icons/lucide/compare/1.16.0...1.17.0

Commits

Updates resend from 6.12.3 to 6.12.4

Release notes

Sourced from resend's releases.

v6.12.4

What's Changed

Full Changelog: https://github.com/resend/resend-node/compare/v6.12.3...v6.12.4

Commits
  • 58db880 chore: bump version to 6.12.4 (#971)
  • 63f5ddb fix: replace svix with standardwebhooks to reduce install size (#969) (#970)
  • 45dc73d fix: to support @​react-email/render exports across versions in templates (#863)
  • 24950d7 refactor: align delete method with other HTTP methods in Resend class (#904)
  • 2759316 chore: bump public-shared-workflows hash (#966)
  • fa04efc chore: bump public-shared-workflows hash (#965)
  • 77bbf2d feat: add optional baseUrl and userAgent to Resend constructor (#839)
  • ebdb2d3 fix: avoid mutating payloads in emails, broadcasts, and templates (#862)
  • 674ab1b fix: rename misnamed get-contact.interface.ts to get-topic.interface.ts i...
  • ac0c09f chore: add sync-prs-to-linear action (#961)
  • Additional commits viewable in compare view
Maintainer changes

This version was pushed to npm by dielduarte, a new releaser for resend since your current version.


Updates tsx from 4.22.3 to 4.22.4

Release notes

Sourced from tsx's releases.

v4.22.4

4.22.4 (2026-05-31)

Bug Fixes

  • resolve CommonJS directory requires inside dependencies (#803) (1ce8463)

This release is also available on:

Commits

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions
Bumps the minor-and-patch group with 6 updates: | Package | From | To | | --- | --- | --- | | [fuse.js](https://github.com/krisk/Fuse) | `7.3.0` | `7.4.0` | | [js-cookie](https://github.com/js-cookie/js-cookie) | `3.0.7` | `3.0.8` | | [js-yaml](https://github.com/nodeca/js-yaml) | `4.1.1` | `4.2.0` | | [lucide-react](https://github.com/lucide-icons/lucide/tree/HEAD/packages/lucide-react) | `1.16.0` | `1.17.0` | | [resend](https://github.com/resend/resend-node) | `6.12.3` | `6.12.4` | | [tsx](https://github.com/privatenumber/tsx) | `4.22.3` | `4.22.4` | Updates `fuse.js` from 7.3.0 to 7.4.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/krisk/Fuse/releases">fuse.js's releases</a>.</em></p> <blockquote> <h2>v7.4.0</h2> <p>First stable on the 7.4 line. Aggregates everything from the <code>7.4.0-beta.1</code> → <code>7.4.0-beta.8</code> cycle. See <a href="https://github.com/krisk/Fuse/blob/main/CHANGELOG.md">CHANGELOG.md</a> for the per-beta breakdown.</p> <h3>Features</h3> <ul> <li><strong>FuseWorker</strong> — parallel search via Web Workers (<a href="https://github.com/krisk/Fuse/commit/9ba192c5">9ba192c</a>). New <code>FuseWorker</code> class shards the collection across workers, runs searches in parallel, and preserves the same result ordering as <code>Fuse</code>. See the <a href="https://fusejs.io/api/workers">Web Workers guide</a>.</li> <li><strong>token-search:</strong> <code>tokenMatch: 'all' | 'any'</code> option for AND/OR semantics (<a href="https://redirect.github.com/krisk/Fuse/issues/827">#827</a>, <a href="https://github.com/krisk/Fuse/commit/9f979d0">9f979d0</a>). Default <code>'any'</code> preserves existing behavior; <code>'all'</code> requires every query word to match somewhere in a record (term-centric AND), useful for filter-style queries.</li> <li><strong>token-search:</strong> customizable tokenizer with unicode-aware default (<a href="https://redirect.github.com/krisk/Fuse/issues/821">#821</a>, <a href="https://github.com/krisk/Fuse/commit/8e55cae">8e55cae</a>). New <code>tokenize?: RegExp | (text: string) =&gt; string[]</code> option; the default regex now segments CJK, Cyrillic, Greek, Arabic, etc. out of the box.</li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>matches:</strong> report array-path keys as dotted strings (<a href="https://github.com/krisk/Fuse/commit/acd54e8">acd54e8</a>). Previously <code>match.key</code> leaked a raw <code>string[]</code> for keys declared as path arrays (e.g. <code>keys: [['author', 'firstName']]</code>), contradicting the documented <code>FuseResultMatch.key: string</code> type. Now emits the canonical dotted string (<code>'author.firstName'</code>). <strong>Behavior change:</strong> consumers relying on the array shape need to update.</li> <li><strong>bitap:</strong> restrict highlight indices to matched window (<a href="https://redirect.github.com/krisk/Fuse/issues/792">#792</a>, <a href="https://github.com/krisk/Fuse/commit/622f105">622f105</a>). Closes <a href="https://redirect.github.com/krisk/Fuse/issues/505">#505</a>, <a href="https://redirect.github.com/krisk/Fuse/issues/611">#611</a>, <a href="https://redirect.github.com/krisk/Fuse/issues/691">#691</a>, <a href="https://redirect.github.com/krisk/Fuse/issues/793">#793</a>.</li> <li><strong>index:</strong> correct doc-index alignment for <code>Fuse&lt;string&gt;</code> with blank docs (<a href="https://github.com/krisk/Fuse/commit/0b8e3ca">0b8e3ca</a>).</li> <li><strong>core:</strong> invalidate searcher cache on collection mutation (<a href="https://github.com/krisk/Fuse/commit/fcf4228">fcf4228</a>).</li> <li><strong>token-search:</strong> renumber inverted index after doc removal (<a href="https://github.com/krisk/Fuse/commit/ea9356d">ea9356d</a>).</li> <li><strong>workers:</strong> preserve global <code>refIndex</code> across shards (<a href="https://github.com/krisk/Fuse/commit/e4217f9">e4217f9</a>), match Fuse ordering and reject non-cloneable options (<a href="https://github.com/krisk/Fuse/commit/d571390">d571390</a>), reject <code>useTokenSearch</code> in <code>FuseWorker</code> (<a href="https://github.com/krisk/Fuse/commit/8c6183d">8c6183d</a>).</li> <li><strong>match:</strong> explicitly reject <code>useTokenSearch</code> in <code>Fuse.match</code> (<a href="https://github.com/krisk/Fuse/commit/3959d91">3959d91</a>).</li> <li>correct <code>fieldCount</code> accounting and add reverse lookup in inverted index (<a href="https://github.com/krisk/Fuse/commit/54e702c">54e702c</a>).</li> <li>guard against empty-string crash in <code>fieldNorm</code> (<a href="https://github.com/krisk/Fuse/commit/e550ab1">e550ab1</a>); skip consecutive spaces in <code>fieldNorm</code> word counting (<a href="https://github.com/krisk/Fuse/commit/5929af6">5929af6</a>).</li> <li><strong>types:</strong> resolve typecheck errors and align <code>KeyStore</code> types (<a href="https://github.com/krisk/Fuse/commit/dbc115d">dbc115d</a>).</li> <li><strong>docs:</strong> reflect data edits in playground demo (<a href="https://redirect.github.com/krisk/Fuse/issues/825">#825</a>, <a href="https://github.com/krisk/Fuse/commit/6eff909">6eff909</a>).</li> </ul> <h3>Performance</h3> <ul> <li>reuse bit arrays in Bitap search instead of allocating per error level (<a href="https://github.com/krisk/Fuse/commit/ec9b446">ec9b446</a>)</li> <li>replace <code>forEach</code> with <code>for</code> loops in search hot paths (<a href="https://github.com/krisk/Fuse/commit/1945f49">1945f49</a>)</li> <li>fast-path <code>Math.pow</code> when exponent is 1 in <code>computeScore</code> (<a href="https://github.com/krisk/Fuse/commit/c82de57">c82de57</a>)</li> <li>pre-allocate records array and use <code>for</code> loops in <code>FuseIndex.create</code> (<a href="https://github.com/krisk/Fuse/commit/5800036">5800036</a>)</li> <li>replace regex with loop for word counting in <code>fieldNorm</code> (<a href="https://github.com/krisk/Fuse/commit/5517a9b">5517a9b</a>)</li> <li>use <code>filter</code> instead of reverse-splice in <code>removeAll</code> / <code>remove</code> (<a href="https://github.com/krisk/Fuse/commit/c74823b">c74823b</a>, <a href="https://github.com/krisk/Fuse/commit/8372b0a">8372b0a</a>)</li> <li><strong>token-search:</strong> drop unused postings from inverted index (<a href="https://github.com/krisk/Fuse/commit/5ea216f">5ea216f</a>)</li> </ul> <h3>Internal</h3> <ul> <li>refactor: replace extended-search matcher classes with plain functions (<a href="https://github.com/krisk/Fuse/commit/f8d61c9">f8d61c9</a>)</li> <li>bench: consolidate <code>benchmark/</code> into <code>bench/</code> and add npm scripts (<a href="https://github.com/krisk/Fuse/commit/3b3a4c6">3b3a4c6</a>)</li> <li>ci: update Node matrix to 20, 22, 24 (<a href="https://github.com/krisk/Fuse/commit/b906906">b906906</a>)</li> <li>chore(deps): pin secure versions via npm overrides (<a href="https://github.com/krisk/Fuse/commit/3a1b118">3a1b118</a>)</li> </ul> <h3>Docs</h3> <ul> <li>Migrated the site from VuePress to VitePress (<a href="https://github.com/krisk/Fuse/commit/663ee53">663ee53</a>)</li> <li>New articles: &quot;Using Fuse.js with React&quot; (<a href="https://github.com/krisk/Fuse/commit/512bc7d">512bc7d</a>), &quot;Fuse.js vs Semantic Search&quot; (<a href="https://github.com/krisk/Fuse/commit/5f93b4d">5f93b4d</a>)</li> <li>New interactive demos in the fuzzy search article (edit distance, Bitap, threshold, search window)</li> <li>Web Workers documentation and demo</li> <li>Fuse Cloud landing page with waitlist</li> </ul> <h3>Behavior changes worth noting</h3> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/krisk/Fuse/blob/main/CHANGELOG.md">fuse.js's changelog</a>.</em></p> <blockquote> <h2><a href="https://github.com/krisk/Fuse/compare/v7.4.0-beta.8...v7.4.0">7.4.0</a> (2026-05-30)</h2> <h2><a href="https://github.com/krisk/Fuse/compare/v7.4.0-beta.7...v7.4.0-beta.8">7.4.0-beta.8</a> (2026-05-25)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>matches:</strong> report array-path keys as dotted strings (<a href="https://github.com/krisk/Fuse/commit/acd54e88b667002c602ff624f7d7f2cbc62f23ec">acd54e8</a>)</li> </ul> <h2><a href="https://github.com/krisk/Fuse/compare/v7.4.0-beta.6...v7.4.0-beta.7">7.4.0-beta.7</a> (2026-05-22)</h2> <h3>Features</h3> <ul> <li><strong>token-search:</strong> add tokenMatch 'all' | 'any' for AND/OR (<a href="https://redirect.github.com/krisk/Fuse/issues/827">#827</a>) (<a href="https://github.com/krisk/Fuse/commit/9f979d093f519728f3e75b2a5ab569dcb8c5ce6b">9f979d0</a>)</li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>docs:</strong> reflect data edits in playground demo (<a href="https://redirect.github.com/krisk/Fuse/issues/825">#825</a>) (<a href="https://github.com/krisk/Fuse/commit/6eff909b5b6acf9ecb3ab20429bc5d08636a5d5c">6eff909</a>)</li> </ul> <h2><a href="https://github.com/krisk/Fuse/compare/v7.4.0-beta.5...v7.4.0-beta.6">7.4.0-beta.6</a> (2026-05-14)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>bitap:</strong> restrict highlight indices to matched window (<a href="https://github.com/krisk/Fuse/commit/622f105a61d1c1c1cf1bec87024b490f85c92903">622f105</a>), closes <a href="https://redirect.github.com/krisk/Fuse/issues/792">#792</a> <a href="https://redirect.github.com/krisk/Fuse/issues/505">#505</a> <a href="https://redirect.github.com/krisk/Fuse/issues/611">#611</a> <a href="https://redirect.github.com/krisk/Fuse/issues/691">#691</a> <a href="https://redirect.github.com/krisk/Fuse/issues/793">#793</a></li> </ul> <h2><a href="https://github.com/krisk/Fuse/compare/v7.4.0-beta.4...v7.4.0-beta.5">7.4.0-beta.5</a> (2026-05-10)</h2> <h3>Features</h3> <ul> <li><strong>token-search:</strong> add customizable tokenizer with unicode-aware default (<a href="https://github.com/krisk/Fuse/commit/8e55cae563f8e9f6a04b7ef0bb08883a74f26fa8">8e55cae</a>), closes <a href="https://redirect.github.com/krisk/Fuse/issues/821">#821</a></li> </ul> <h3>Bug Fixes</h3> <ul> <li><strong>index:</strong> correct doc-index alignment for Fuse<!-- raw HTML omitted --> with blank docs (<a href="https://github.com/krisk/Fuse/commit/0b8e3ca2d29e1666f38da557d93ae1790086f9ea">0b8e3ca</a>)</li> </ul> <h2><a href="https://github.com/krisk/Fuse/compare/v7.4.0-beta.3...v7.4.0-beta.4">7.4.0-beta.4</a> (2026-04-28)</h2> <h2><a href="https://github.com/krisk/Fuse/compare/v7.4.0-beta.2...v7.4.0-beta.3">7.4.0-beta.3</a> (2026-04-26)</h2> <h3>Bug Fixes</h3> <ul> <li><strong>match:</strong> explicitly reject useTokenSearch in Fuse.match (<a href="https://github.com/krisk/Fuse/commit/3959d91758dcbe6b0f10964775c0a7623c854f47">3959d91</a>)</li> <li><strong>workers:</strong> match Fuse ordering and reject non-cloneable options (<a href="https://github.com/krisk/Fuse/commit/d571390aea9dead9927b4c11d3cfb5f94c42800c">d571390</a>)</li> <li><strong>workers:</strong> reject useTokenSearch in FuseWorker (<a href="https://github.com/krisk/Fuse/commit/8c6183d5b1193700f78ded21555ca1dea941cbfb">8c6183d</a>)</li> </ul> <!-- raw HTML omitted --> </blockquote> <p>... (truncated)</p> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/krisk/Fuse/commit/77afcf3a95aa51b81e76e6f3e0a9896e94f3dec3"><code>77afcf3</code></a> chore(release): 7.4.0</li> <li><a href="https://github.com/krisk/Fuse/commit/3ef9328310b631790174994838d1ef24cdcd0599"><code>3ef9328</code></a> chore(release): 7.4.0-beta.8</li> <li><a href="https://github.com/krisk/Fuse/commit/acd54e88b667002c602ff624f7d7f2cbc62f23ec"><code>acd54e8</code></a> fix(matches): report array-path keys as dotted strings</li> <li><a href="https://github.com/krisk/Fuse/commit/5985a7e91c8e7e919dab5bd8911009f13457b037"><code>5985a7e</code></a> style: reformat src and test with prettier 3</li> <li><a href="https://github.com/krisk/Fuse/commit/08bb3a717d8b5a2468d42e17c062a621f9f5b4c4"><code>08bb3a7</code></a> chore: upgrade prettier to 3 and add format scripts</li> <li><a href="https://github.com/krisk/Fuse/commit/9417622c425a25cede113c837f9fa71e1771b2cc"><code>9417622</code></a> chore(release): 7.4.0-beta.7</li> <li><a href="https://github.com/krisk/Fuse/commit/9f979d093f519728f3e75b2a5ab569dcb8c5ce6b"><code>9f979d0</code></a> feat(token-search): add tokenMatch 'all' | 'any' for AND/OR (<a href="https://redirect.github.com/krisk/Fuse/issues/827">#827</a>)</li> <li><a href="https://github.com/krisk/Fuse/commit/6eff909b5b6acf9ecb3ab20429bc5d08636a5d5c"><code>6eff909</code></a> fix(docs): reflect data edits in playground demo (<a href="https://redirect.github.com/krisk/Fuse/issues/825">#825</a>)</li> <li><a href="https://github.com/krisk/Fuse/commit/a84f9cddfb7be7dee3fbbc55cf4b60a05a8c1a5e"><code>a84f9cd</code></a> docs: mention fuse-swift port and correct bundle sizes</li> <li><a href="https://github.com/krisk/Fuse/commit/b08ad2881a54660361ba697836a679e190ac4a27"><code>b08ad28</code></a> chore(release): 7.4.0-beta.6</li> <li>Additional commits viewable in <a href="https://github.com/krisk/Fuse/compare/v7.3.0...v7.4.0">compare view</a></li> </ul> </details> <br /> Updates `js-cookie` from 3.0.7 to 3.0.8 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/js-cookie/js-cookie/releases">js-cookie's releases</a>.</em></p> <blockquote> <h2>v3.0.8</h2> <ul> <li>Restore ES5 compatibility, inadvertently broken in 3.0.7 - <a href="https://redirect.github.com/js-cookie/js-cookie/issues/959">#959</a></li> <li>Lift Node version restriction, inadvertently restricted to &gt;= 20 in 3.0.7 - <a href="https://redirect.github.com/js-cookie/js-cookie/issues/956">#956</a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/js-cookie/js-cookie/commit/d7a10966e3f2cbcbfa96e34e7544d23aab9e3372"><code>d7a1096</code></a> Craft v3.0.8 release</li> <li><a href="https://github.com/js-cookie/js-cookie/commit/248e685e20c7aa9553453f0084f14a62173462d2"><code>248e685</code></a> Use existing Chrome with puppeteer</li> <li><a href="https://github.com/js-cookie/js-cookie/commit/fc04269d83cae5536c08fdb71c9fd1d35e148f7a"><code>fc04269</code></a> Remove QUnit related workaround in Grunt config</li> <li><a href="https://github.com/js-cookie/js-cookie/commit/265a6853d04eefa6f7a4d8acdd118d3f5c4dddc3"><code>265a685</code></a> Tidy up package lock file</li> <li><a href="https://github.com/js-cookie/js-cookie/commit/478e59129f8f1e5c80fc71fecd37b04cd8ed1575"><code>478e591</code></a> Disable Node deprecation DEP0044 for release workflow</li> <li><a href="https://github.com/js-cookie/js-cookie/commit/331d5240db232da6748abbdde7a35823f681e9a7"><code>331d524</code></a> Fix node version config for E2E test job</li> <li><a href="https://github.com/js-cookie/js-cookie/commit/11d773d413f680a4ccf23a5375e82fa14df1b7a7"><code>11d773d</code></a> Ensure ECMAScript compatibility</li> <li><a href="https://github.com/js-cookie/js-cookie/commit/d78864600f3ee9c3780c3f3d0072342beb722f45"><code>d788646</code></a> Remove <code>engines</code> property from package</li> <li><a href="https://github.com/js-cookie/js-cookie/commit/e7d9a4dff0d5ebc51a200819e3ab3a2dbe87979a"><code>e7d9a4d</code></a> Fix typo in test assertion message</li> <li><a href="https://github.com/js-cookie/js-cookie/commit/b5fca24b9bc03b20e8751f7eea6c14c40095f7e8"><code>b5fca24</code></a> Make credentials use explicit in release workflow</li> <li>See full diff in <a href="https://github.com/js-cookie/js-cookie/compare/v3.0.7...v3.0.8">compare view</a></li> </ul> </details> <br /> Updates `js-yaml` from 4.1.1 to 4.2.0 <details> <summary>Changelog</summary> <p><em>Sourced from <a href="https://github.com/nodeca/js-yaml/blob/master/CHANGELOG.md">js-yaml's changelog</a>.</em></p> <blockquote> <h2>[4.2.0] - 2026-06-01</h2> <h3>Added</h3> <ul> <li>Added <code>docs/safety.md</code> with notes about processing untrusted YAML.</li> <li>Added <code>maxDepth</code> (100) loader option. Not a problem, but gives a better exception instead of RangeError on stack overflow.</li> <li>Added <code>maxMergeSeqLength</code> (20) loader option. Not a problem after <code>merge</code> fix, but an additional restriction for safety.</li> </ul> <h3>Changed</h3> <ul> <li>Stop resolving numbers with underscores as numeric scalars, <a href="https://redirect.github.com/nodeca/js-yaml/issues/627">#627</a>.</li> <li>Switched dev toolchains to Vite / neostandard.</li> <li>Updated demo.</li> <li>Reorganized tests.</li> <li><code>dist/</code> files are no longer kept in the repository.</li> </ul> <h3>Fixed</h3> <ul> <li>Fix parsing of properties on the first implicit block mapping key, <a href="https://redirect.github.com/nodeca/js-yaml/issues/62">#62</a>.</li> <li>Fix trailing whitespace handling when folding flow scalar lines, <a href="https://redirect.github.com/nodeca/js-yaml/issues/307">#307</a>.</li> <li>Reject top-level block scalars without content indentation, <a href="https://redirect.github.com/nodeca/js-yaml/issues/280">#280</a>.</li> <li>Ensure numbers survive round-trip, <a href="https://redirect.github.com/nodeca/js-yaml/issues/737">#737</a>.</li> <li>Fix test coverage for issue <a href="https://redirect.github.com/nodeca/js-yaml/issues/221">#221</a>.</li> <li>Fix flow scalar trailing whitespace folding, <a href="https://redirect.github.com/nodeca/js-yaml/issues/307">#307</a>.</li> <li>Fix digits in YAML named tag handles.</li> </ul> <h3>Security</h3> <ul> <li>Fix potential DoS via quadratic complexity in merge - deduplicate repeated elements (makes sense for malformed files &gt; 10K).</li> </ul> <h2>[3.14.2] - 2025-11-15</h2> <h3>Security</h3> <ul> <li>Backported v4.1.1 fix to v3</li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/nodeca/js-yaml/commits">compare view</a></li> </ul> </details> <br /> Updates `lucide-react` from 1.16.0 to 1.17.0 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/lucide-icons/lucide/releases">lucide-react's releases</a>.</em></p> <blockquote> <h2>Version 1.17.0</h2> <h2>What's Changed</h2> <ul> <li>chore(lucide-vue-next|lucide-svelte|lucide-angular): Remove deprecated packages by <a href="https://github.com/ericfennis"><code>@​ericfennis</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/4376">lucide-icons/lucide#4376</a></li> <li>chore(repo): Update issue templates and documentation for package ren… by <a href="https://github.com/ericfennis"><code>@​ericfennis</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/4379">lucide-icons/lucide#4379</a></li> <li>feat(site): Adds survey overlay to website by <a href="https://github.com/ericfennis"><code>@​ericfennis</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/4380">lucide-icons/lucide#4380</a></li> <li>feat(site): Certificate dev links by <a href="https://github.com/ericfennis"><code>@​ericfennis</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/4390">lucide-icons/lucide#4390</a></li> <li>fix(icons): changed <code>martini</code> icon by <a href="https://github.com/jamiemlaw"><code>@​jamiemlaw</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/4335">lucide-icons/lucide#4335</a></li> <li>chore(deps): bump brace-expansion from 1.1.11 to 5.0.6 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot] in <a href="https://redirect.github.com/lucide-icons/lucide/pull/4386">lucide-icons/lucide#4386</a></li> <li>chore(deps): bump <code>@​tootallnate/once</code> from 2.0.0 to 2.0.1 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot] in <a href="https://redirect.github.com/lucide-icons/lucide/pull/4404">lucide-icons/lucide#4404</a></li> <li>chore(deps): bump devalue from 5.8.0 to 5.8.1 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot] in <a href="https://redirect.github.com/lucide-icons/lucide/pull/4391">lucide-icons/lucide#4391</a></li> <li>chore(deps): bump ws from 8.18.0 to 8.20.1 by <a href="https://github.com/dependabot"><code>@​dependabot</code></a>[bot] in <a href="https://redirect.github.com/lucide-icons/lucide/pull/4392">lucide-icons/lucide#4392</a></li> <li>fix(gh-icon): limit icon size to a maximum of 256 pixels by <a href="https://github.com/jguddas"><code>@​jguddas</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/4398">lucide-icons/lucide#4398</a></li> <li>chore(dependencies): Update dependencies by <a href="https://github.com/ericfennis"><code>@​ericfennis</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/4377">lucide-icons/lucide#4377</a></li> <li>feat(copilot): Adding copilot instructions by <a href="https://github.com/ericfennis"><code>@​ericfennis</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/4407">lucide-icons/lucide#4407</a></li> <li>feat(icons): add <code>globe-check</code> by <a href="https://github.com/Barakudum"><code>@​Barakudum</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/4342">lucide-icons/lucide#4342</a></li> <li>feat(metadata): Require use-cases in meta json by <a href="https://github.com/ericfennis"><code>@​ericfennis</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/4321">lucide-icons/lucide#4321</a></li> <li>feat(icons): added <code>parasol</code> icon by <a href="https://github.com/karsa-mistmere"><code>@​karsa-mistmere</code></a> in <a href="https://redirect.github.com/lucide-icons/lucide/pull/4347">lucide-icons/lucide#4347</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/lucide-icons/lucide/compare/1.16.0...1.17.0">https://github.com/lucide-icons/lucide/compare/1.16.0...1.17.0</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li>See full diff in <a href="https://github.com/lucide-icons/lucide/commits/1.17.0/packages/lucide-react">compare view</a></li> </ul> </details> <br /> Updates `resend` from 6.12.3 to 6.12.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/resend/resend-node/releases">resend's releases</a>.</em></p> <blockquote> <h2>v6.12.4</h2> <h2>What's Changed</h2> <ul> <li>fix(deps): update dependency next to v16.2.6 [security] by <a href="https://github.com/renovate"><code>@​renovate</code></a>[bot] in <a href="https://redirect.github.com/resend/resend-node/pull/957">resend/resend-node#957</a></li> <li>chore(dev-660): harden github actions workflows by <a href="https://github.com/felipefreitag"><code>@​felipefreitag</code></a> in <a href="https://redirect.github.com/resend/resend-node/pull/959">resend/resend-node#959</a></li> <li>chore: add sync-prs-to-linear action by <a href="https://github.com/dielduarte"><code>@​dielduarte</code></a> in <a href="https://redirect.github.com/resend/resend-node/pull/961">resend/resend-node#961</a></li> <li>fix: rename misnamed <code>get-contact.interface.ts</code> to <code>get-topic.interface.ts</code> in topics module by <a href="https://github.com/wesleyramalho"><code>@​wesleyramalho</code></a> in <a href="https://redirect.github.com/resend/resend-node/pull/903">resend/resend-node#903</a></li> <li>fix: avoid mutating payloads in emails, broadcasts, and templates by <a href="https://github.com/Shubhdeep12"><code>@​Shubhdeep12</code></a> in <a href="https://redirect.github.com/resend/resend-node/pull/862">resend/resend-node#862</a></li> <li>feat: add optional baseUrl and userAgent to Resend constructor by <a href="https://github.com/xiaoyu2er"><code>@​xiaoyu2er</code></a> in <a href="https://redirect.github.com/resend/resend-node/pull/839">resend/resend-node#839</a></li> <li>chore: bump public-shared-workflows hash by <a href="https://github.com/dielduarte"><code>@​dielduarte</code></a> in <a href="https://redirect.github.com/resend/resend-node/pull/965">resend/resend-node#965</a></li> <li>chore: bump public-shared-workflows hash by <a href="https://github.com/dielduarte"><code>@​dielduarte</code></a> in <a href="https://redirect.github.com/resend/resend-node/pull/966">resend/resend-node#966</a></li> <li>refactor: align <code>delete</code> method with other HTTP methods in Resend class by <a href="https://github.com/wesleyramalho"><code>@​wesleyramalho</code></a> in <a href="https://redirect.github.com/resend/resend-node/pull/904">resend/resend-node#904</a></li> <li>fix: to support <code>@​react-email/render</code> exports across versions in templates by <a href="https://github.com/Shubhdeep12"><code>@​Shubhdeep12</code></a> in <a href="https://redirect.github.com/resend/resend-node/pull/863">resend/resend-node#863</a></li> <li>fix: replace svix with standardwebhooks to reduce install size (<a href="https://redirect.github.com/resend/resend-node/issues/969">#969</a>) by <a href="https://github.com/dielduarte"><code>@​dielduarte</code></a> in <a href="https://redirect.github.com/resend/resend-node/pull/970">resend/resend-node#970</a></li> <li>chore: bump version to 6.12.4 by <a href="https://github.com/dielduarte"><code>@​dielduarte</code></a> in <a href="https://redirect.github.com/resend/resend-node/pull/971">resend/resend-node#971</a></li> </ul> <p><strong>Full Changelog</strong>: <a href="https://github.com/resend/resend-node/compare/v6.12.3...v6.12.4">https://github.com/resend/resend-node/compare/v6.12.3...v6.12.4</a></p> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/resend/resend-node/commit/58db880a67575d9231bcbc5cae9c438793698f05"><code>58db880</code></a> chore: bump version to 6.12.4 (<a href="https://redirect.github.com/resend/resend-node/issues/971">#971</a>)</li> <li><a href="https://github.com/resend/resend-node/commit/63f5ddb8fc0d35fa590e27f7ca4d69d3051969db"><code>63f5ddb</code></a> fix: replace svix with standardwebhooks to reduce install size (<a href="https://redirect.github.com/resend/resend-node/issues/969">#969</a>) (<a href="https://redirect.github.com/resend/resend-node/issues/970">#970</a>)</li> <li><a href="https://github.com/resend/resend-node/commit/45dc73dae27646930d460d52de7528640ba9fb8e"><code>45dc73d</code></a> fix: to support <code>@​react-email/render</code> exports across versions in templates (<a href="https://redirect.github.com/resend/resend-node/issues/863">#863</a>)</li> <li><a href="https://github.com/resend/resend-node/commit/24950d7aa54bf19d929fe26e63557611411938cb"><code>24950d7</code></a> refactor: align <code>delete</code> method with other HTTP methods in Resend class (<a href="https://redirect.github.com/resend/resend-node/issues/904">#904</a>)</li> <li><a href="https://github.com/resend/resend-node/commit/2759316719f54e602dbf3d0b1fa58703f52b79c0"><code>2759316</code></a> chore: bump public-shared-workflows hash (<a href="https://redirect.github.com/resend/resend-node/issues/966">#966</a>)</li> <li><a href="https://github.com/resend/resend-node/commit/fa04efcf72a2c1d89a6530ee14ce08986a4c1a08"><code>fa04efc</code></a> chore: bump public-shared-workflows hash (<a href="https://redirect.github.com/resend/resend-node/issues/965">#965</a>)</li> <li><a href="https://github.com/resend/resend-node/commit/77bbf2d63285a1e527fe3fc85493235a6131d084"><code>77bbf2d</code></a> feat: add optional baseUrl and userAgent to Resend constructor (<a href="https://redirect.github.com/resend/resend-node/issues/839">#839</a>)</li> <li><a href="https://github.com/resend/resend-node/commit/ebdb2d3f1ad3880ed81e4bb437796577e3e2ab6b"><code>ebdb2d3</code></a> fix: avoid mutating payloads in emails, broadcasts, and templates (<a href="https://redirect.github.com/resend/resend-node/issues/862">#862</a>)</li> <li><a href="https://github.com/resend/resend-node/commit/674ab1bf6c09ddc1942d317a9e2939692fd32340"><code>674ab1b</code></a> fix: rename misnamed <code>get-contact.interface.ts</code> to <code>get-topic.interface.ts</code> i...</li> <li><a href="https://github.com/resend/resend-node/commit/ac0c09ffc9dde924b5b147b8767c1b5e636778f6"><code>ac0c09f</code></a> chore: add sync-prs-to-linear action (<a href="https://redirect.github.com/resend/resend-node/issues/961">#961</a>)</li> <li>Additional commits viewable in <a href="https://github.com/resend/resend-node/compare/v6.12.3...v6.12.4">compare view</a></li> </ul> </details> <details> <summary>Maintainer changes</summary> <p>This version was pushed to npm by <a href="https://www.npmjs.com/~dielduarte">dielduarte</a>, a new releaser for resend since your current version.</p> </details> <br /> Updates `tsx` from 4.22.3 to 4.22.4 <details> <summary>Release notes</summary> <p><em>Sourced from <a href="https://github.com/privatenumber/tsx/releases">tsx's releases</a>.</em></p> <blockquote> <h2>v4.22.4</h2> <h2><a href="https://github.com/privatenumber/tsx/compare/v4.22.3...v4.22.4">4.22.4</a> (2026-05-31)</h2> <h3>Bug Fixes</h3> <ul> <li>resolve CommonJS directory requires inside dependencies (<a href="https://redirect.github.com/privatenumber/tsx/issues/803">#803</a>) (<a href="https://github.com/privatenumber/tsx/commit/1ce846335b7c445a3328c7d27f06424949356d97">1ce8463</a>)</li> </ul> <hr /> <p>This release is also available on:</p> <ul> <li><a href="https://www.npmjs.com/package/tsx/v/4.22.4"><code>npm package (@​latest dist-tag)</code></a></li> </ul> </blockquote> </details> <details> <summary>Commits</summary> <ul> <li><a href="https://github.com/privatenumber/tsx/commit/1ce846335b7c445a3328c7d27f06424949356d97"><code>1ce8463</code></a> fix: resolve CommonJS directory requires inside dependencies (<a href="https://redirect.github.com/privatenumber/tsx/issues/803">#803</a>)</li> <li>See full diff in <a href="https://github.com/privatenumber/tsx/compare/v4.22.3...v4.22.4">compare view</a></li> </ul> </details> <br /> Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore <dependency name> major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore <dependency name> minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore <dependency name>` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore <dependency name>` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore <dependency name> <ignore condition>` will remove the ignore condition of the specified dependency and ignore conditions </details>
dependabot[bot] commented 2026-06-01 01:10:42 +02:00 (Migrated from github.com)

Labels

The following labels could not be found: dependencies, security. Please create them before Dependabot can add them to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

### Labels The following labels could not be found: `dependencies`, `security`. Please create them before Dependabot can add them to a pull request. Please fix the above issues or remove invalid values from `dependabot.yml`.
Sign in to join this conversation.
No reviewers
No labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
FTMahringer/Portfolio!12
No description provided.