Thanks to visit codestin.com
Credit goes to github.com

Skip to content

chore(deps): bump the minor-and-patch group in /blueprint with 15 updates - #342

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/blueprint/minor-and-patch-fb024acbf9
Open

chore(deps): bump the minor-and-patch group in /blueprint with 15 updates#342
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/npm_and_yarn/blueprint/minor-and-patch-fb024acbf9

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 10, 2026

Copy link
Copy Markdown
Contributor

Bumps the minor-and-patch group in /blueprint with 15 updates:

Package From To
@biomejs/biome 2.5.11 2.5.12
lint-staged 17.4.1 17.5.0
@mikro-orm/core 7.1.15 7.2.0
@mikro-orm/migrations 7.1.15 7.2.0
@mikro-orm/mongodb 7.1.15 7.2.0
@mikro-orm/mysql 7.1.15 7.2.0
@mikro-orm/postgresql 7.1.15 7.2.0
@mikro-orm/seeder 7.1.15 7.2.0
@mikro-orm/sqlite 7.1.15 7.2.0
jose 6.2.11 6.2.12
@mikro-orm/cli 7.1.15 7.2.0
better-auth 1.7.2 1.7.3
@mikro-orm/libsql 7.1.15 7.2.0
@mikro-orm/mariadb 7.1.15 7.2.0
@mikro-orm/mssql 7.1.15 7.2.0

Updates @biomejs/biome from 2.5.11 to 2.5.12

Release notes

Sourced from @​biomejs/biome's releases.

Biome CLI v2.5.12

2.5.12

Patch Changes

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed Astro attribute expressions rejecting TypeScript and JSX syntax that is accepted in text expressions.

    <Component icon={<Icon />} count={total as number} onSelect={(e: Event) => e} />
  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed Astro attribute names being split on : and . inside an expression, such as {x && <button x-on:keyup.enter={go} client:load.foo />}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed a bare > in the children of an Astro expression being treated as markup, such as {x && <div>a > b</div>}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed HTML comments inside an Astro expression failing to parse. They are now read as trivia, wherever they appear among the children.

    {x && <div><!-- first -->text<!-- last --></div>}
    {cond && <a></a><!-- c --><b></b>}
  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed is:raw children inside an Astro expression being read as JSX, such as {x && <div is:raw>{not js} < & text</div>}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed an apostrophe or quote in the text of a JSX element inside an Astro expression ending the expression early, such as {items.map((i) => <li>it's {i}</li>)}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed the children of a <script> or <style> inside an Astro expression being read as JSX. Their contents are text, so braces and comparisons no longer have to be escaped.

    {cond && <style>a { color: red }</style>}
    {cond && <script>let x = {a: 1};</script>}
  • #11440 b88f1ea Thanks @​Princesseuh! - Added support for template literal attribute values inside an Astro expression, such as {x && <C data-x=`t${x}` />}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed unquoted attribute values being rejected inside an Astro expression, such as {x && <a class=foo maxlength=255 href=/about>go</a>}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed a template literal nested inside ${} breaking the rest of an Astro file, such as const href = `/blog${page === 0 ? '' : `/${page + 1}`}`;.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed a quote inside a regex character class breaking the rest of an Astro file, such as const unsafe = /[/"]/;.

  • #11508 54f3a2e Thanks @​dyc3! - Added the nursery rule useFlatMathMinMax. Because Math.min() and Math.max() accept any number of arguments, the rule reports unnecessary nested calls to the same method:

    Math.max(Math.max(a, b), c);

    The fix flattens this expression to Math.max(a, b, c).

... (truncated)

Changelog

Sourced from @​biomejs/biome's changelog.

2.5.12

Patch Changes

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed Astro attribute expressions rejecting TypeScript and JSX syntax that is accepted in text expressions.

    <Component icon={<Icon />} count={total as number} onSelect={(e: Event) => e} />
  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed Astro attribute names being split on : and . inside an expression, such as {x && <button x-on:keyup.enter={go} client:load.foo />}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed a bare > in the children of an Astro expression being treated as markup, such as {x && <div>a > b</div>}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed HTML comments inside an Astro expression failing to parse. They are now read as trivia, wherever they appear among the children.

    {x && <div><!-- first -->text<!-- last --></div>}
    {cond && <a></a><!-- c --><b></b>}
  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed is:raw children inside an Astro expression being read as JSX, such as {x && <div is:raw>{not js} < & text</div>}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed an apostrophe or quote in the text of a JSX element inside an Astro expression ending the expression early, such as {items.map((i) => <li>it's {i}</li>)}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed the children of a <script> or <style> inside an Astro expression being read as JSX. Their contents are text, so braces and comparisons no longer have to be escaped.

    {cond && <style>a { color: red }</style>}
    {cond && <script>let x = {a: 1};</script>}
  • #11440 b88f1ea Thanks @​Princesseuh! - Added support for template literal attribute values inside an Astro expression, such as {x && <C data-x=`t${x}` />}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed unquoted attribute values being rejected inside an Astro expression, such as {x && <a class=foo maxlength=255 href=/about>go</a>}.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed a template literal nested inside ${} breaking the rest of an Astro file, such as const href = `/blog${page === 0 ? '' : `/${page + 1}`}`;.

  • #11440 b88f1ea Thanks @​Princesseuh! - Fixed a quote inside a regex character class breaking the rest of an Astro file, such as const unsafe = /[/"]/;.

  • #11508 54f3a2e Thanks @​dyc3! - Added the nursery rule useFlatMathMinMax. Because Math.min() and Math.max() accept any number of arguments, the rule reports unnecessary nested calls to the same method:

    Math.max(Math.max(a, b), c);

    The fix flattens this expression to Math.max(a, b, c).

  • #11585 c5c8315 Thanks @​Netail! - Fixed #11475: noUnresolvedImports no longer reports Bun runtime built-in modules (bun, bun:bundle, bun:ffi, bun:jsc, bun:sqlite, bun:test).

... (truncated)

Commits

Updates lint-staged from 17.4.1 to 17.5.0

Release notes

Sourced from lint-staged's releases.

v17.5.0

Minor Changes

  • #1847 f9063b7 - Lint-staged now refuses to run when files were staged with --intent-to-add, because Git stash doesn't support them. Previously this was an unhandled error.

Patch Changes

  • #1848 d718ccc - Lint-staged now handles color support better in non-TTY streams, and honors the FORCE_COLOR environment variable.

  • #1845 7e5ece8 - Update [email protected] so that local binaries from node_modules/.bin are resolved starting from the directory of each lint-staged configuration file (in monorepo setups). This behavior was broken in [email protected] where they were only resolved from the current working directory and up.

  • #1845 eb8a4e3 - Do not try to restore untracked files when using --hide-all and there is no initial commit yet.

Changelog

Sourced from lint-staged's changelog.

17.5.0

Minor Changes

  • #1847 f9063b7 - Lint-staged now refuses to run when files were staged with --intent-to-add, because Git stash doesn't support them. Previously this was an unhandled error.

Patch Changes

  • #1848 d718ccc - Lint-staged now handles color support better in non-TTY streams, and honors the FORCE_COLOR environment variable.

  • #1845 7e5ece8 - Update [email protected] so that local binaries from node_modules/.bin are resolved starting from the directory of each lint-staged configuration file (in monorepo setups). This behavior was broken in [email protected] where they were only resolved from the current working directory and up.

  • #1845 eb8a4e3 - Do not try to restore untracked files when using --hide-all and there is no initial commit yet.

Commits
  • dcb59f6 Merge pull request #1846 from lint-staged/changeset-release/main
  • 9c8c6dc chore(changeset): release
  • 586466f Merge pull request #1849 from lint-staged/improve-intent-to-add
  • 45eda5f refactor: improve --intent-to-add detection
  • 26372e3 Merge pull request #1848 from lint-staged/fix-color-detection
  • d718ccc fix: honor FORCE_COLOR/NO_COLOR env variables in non-TTY streams
  • be78a51 Merge pull request #1847 from lint-staged/intent-to-add
  • f9063b7 feat: refuse to run when files were staged with --intent-to-add
  • a767299 Merge pull request #1845 from lint-staged/updates
  • 61ffd25 style: add VS Code extension config
  • Additional commits viewable in compare view

Updates @mikro-orm/core from 7.1.15 to 7.2.0

Release notes

Sourced from @​mikro-orm/core's releases.

v7.2.0

7.2.0 (2026-09-07)

https://mikro-orm.io/blog/mikro-orm-7-2-released

Bug Fixes

  • cli: surface the real error when a TypeScript loader fails to load (#8245) (28bdfd2)
  • core: decompose nested cursor groups lexicographically (4f0f696)
  • core: follow the platform's own null ordering in cursor pagination (7d1b174)
  • core: handle orderBy directions carrying a nulls qualifier (#8247) (8f4ae39)
  • core: preserve nested populate filters across loading strategies (#8243) (5b5fd36)
  • core: treat @Formula properties as nullable in cursor pagination (#8249) (f2aa86c)
  • decorators: skip @oxc-node/core helper frames when resolving entity path (#8246) (11f79e7)
  • postgres: forward pool.min to the pg pool (#8237) (188b064), closes #8234

Features

  • cli: add a "-q" param, to suppress informational output (#7886) (1450d3f)
  • cli: add Nub TypeScript loader option (#8253) (7196a72)
  • cli: the "--combined" argument of cache:generate can optionally be a path to the cache file (#7963) (6dbe55d)
  • core: add getNativeClient() to access the underlying database client (#8148) (27634ad), closes #8146
  • core: add through option for read-only to-one relations resolved via subquery (#8239) (5e621e0), closes #8238
  • core: add native support for row level security (#7984) (8336552), closes #6137 #6413 #6493 #6493
  • core: allow map to bypass identity map (#8199) (4d6a564)
  • core: allow specifying a callback for the RequestContext options (#7925) (74ea240)
  • core: rework cursor pagination for custom types and nullable columns (#8103) (35a1455), closes #8097
  • core: support await using via Symbol.asyncDispose (#8159) (e1cbd5d), closes #8158
  • core: support index option on M:N properties for pivot table join columns (#8160) (aa177ed), closes #8156
  • core: support configurable string normalization (#8169) (96fdbb4), closes #8165
  • core: support named parameters in em.execute() (#8173) (17788fc), closes #8093
  • migrations: allow opting out of snapshot updates on migrate (#8039) (c1d8561)
  • mongo: add $all query operator support (#7931) (a8fb833)
  • sql-js: add sql.js driver for in-memory SQLite in WebAssembly (#7783) (c168a0f)
  • sql: support the $all operator on collection properties (#8248) (c987f8a), closes #7931

Performance Improvements

  • core: skip structural variance measurement of defineEntity builder and entity types (#8242) (b135126), closes #8240
Changelog

Sourced from @​mikro-orm/core's changelog.

7.2.0 (2026-09-07)

Bug Fixes

  • cli: surface the real error when a TypeScript loader fails to load (#8245) (28bdfd2)
  • core: decompose nested cursor groups lexicographically (4f0f696)
  • core: follow the platform's own null ordering in cursor pagination (7d1b174)
  • core: handle orderBy directions carrying a nulls qualifier (#8247) (8f4ae39)
  • core: preserve nested populate filters across loading strategies (#8243) (5b5fd36)
  • core: treat @Formula properties as nullable in cursor pagination (#8249) (f2aa86c)
  • decorators: skip @oxc-node/core helper frames when resolving entity path (#8246) (11f79e7)
  • postgres: forward pool.min to the pg pool (#8237) (188b064), closes #8234

Features

  • cli: add a "-q" param, to suppress informational output (#7886) (1450d3f)
  • cli: add Nub TypeScript loader option (#8253) (7196a72)
  • cli: the "--combined" argument of cache:generate can optionally be a path to the cache file (#7963) (6dbe55d)
  • core: add getNativeClient() to access the underlying database client (#8148) (27634ad), closes #8146
  • core: add through option for read-only to-one relations resolved via subquery (#8239) (5e621e0), closes #8238
  • core: add native support for row level security (#7984) (8336552), closes #6137 #6413 #6493 #6493
  • core: allow map to bypass identity map (#8199) (4d6a564)
  • core: allow specifying a callback for the RequestContext options (#7925) (74ea240)
  • core: rework cursor pagination for custom types and nullable columns (#8103) (35a1455), closes #8097
  • core: support await using via Symbol.asyncDispose (#8159) (e1cbd5d), closes #8158
  • core: support index option on M:N properties for pivot table join columns (#8160) (aa177ed), closes #8156
  • core: support configurable string normalization (#8169) (96fdbb4), closes #8165
  • core: support named parameters in em.execute() (#8173) (17788fc), closes #8093
  • migrations: allow opting out of snapshot updates on migrate (#8039) (c1d8561)
  • mongo: add $all query operator support (#7931) (a8fb833)
  • sql-js: add sql.js driver for in-memory SQLite in WebAssembly (#7783) (c168a0f)
  • sql: support the $all operator on collection properties (#8248) (c987f8a), closes #7931

Performance Improvements

  • core: skip structural variance measurement of defineEntity builder and entity types (#8242) (b135126), closes #8240
Commits
  • 198c083 chore(release): v7.2.0 [skip ci]
  • 0584078 chore(deps): update patch/minor dependencies
  • 07ac9c7 docs: add v7.2 release blog post (#8254)
  • c168a0f feat(sql-js): add sql.js driver for in-memory SQLite in WebAssembly (#7783)
  • 7196a72 feat(cli): add Nub TypeScript loader option (#8253)
  • adbb359 chore: cover the ignored nulls qualifier in mongo cursor pagination (#8252)
  • 7d1b174 fix(core): follow the platform's own null ordering in cursor pagination
  • 4f0f696 fix(core): decompose nested cursor groups lexicographically
  • f2aa86c fix(core): treat @Formula properties as nullable in cursor pagination (#8249)
  • 35a1455 feat(core): rework cursor pagination for custom types and nullable columns (#...
  • Additional commits viewable in compare view

Updates @mikro-orm/migrations from 7.1.15 to 7.2.0

Release notes

Sourced from @​mikro-orm/migrations's releases.

v7.2.0

7.2.0 (2026-09-07)

https://mikro-orm.io/blog/mikro-orm-7-2-released

Bug Fixes

  • cli: surface the real error when a TypeScript loader fails to load (#8245) (28bdfd2)
  • core: decompose nested cursor groups lexicographically (4f0f696)
  • core: follow the platform's own null ordering in cursor pagination (7d1b174)
  • core: handle orderBy directions carrying a nulls qualifier (#8247) (8f4ae39)
  • core: preserve nested populate filters across loading strategies (#8243) (5b5fd36)
  • core: treat @Formula properties as nullable in cursor pagination (#8249) (f2aa86c)
  • decorators: skip @oxc-node/core helper frames when resolving entity path (#8246) (11f79e7)
  • postgres: forward pool.min to the pg pool (#8237) (188b064), closes #8234

Features

  • cli: add a "-q" param, to suppress informational output (#7886) (1450d3f)
  • cli: add Nub TypeScript loader option (#8253) (7196a72)
  • cli: the "--combined" argument of cache:generate can optionally be a path to the cache file (#7963) (6dbe55d)
  • core: add getNativeClient() to access the underlying database client (#8148) (27634ad), closes #8146
  • core: add through option for read-only to-one relations resolved via subquery (#8239) (5e621e0), closes #8238
  • core: add native support for row level security (#7984) (8336552), closes #6137 #6413 #6493 #6493
  • core: allow map to bypass identity map (#8199) (4d6a564)
  • core: allow specifying a callback for the RequestContext options (#7925) (74ea240)
  • core: rework cursor pagination for custom types and nullable columns (#8103) (35a1455), closes #8097
  • core: support await using via Symbol.asyncDispose (#8159) (e1cbd5d), closes #8158
  • core: support index option on M:N properties for pivot table join columns (#8160) (aa177ed), closes #8156
  • core: support configurable string normalization (#8169) (96fdbb4), closes #8165
  • core: support named parameters in em.execute() (#8173) (17788fc), closes #8093
  • migrations: allow opting out of snapshot updates on migrate (#8039) (c1d8561)
  • mongo: add $all query operator support (#7931) (a8fb833)
  • sql-js: add sql.js driver for in-memory SQLite in WebAssembly (#7783) (c168a0f)
  • sql: support the $all operator on collection properties (#8248) (c987f8a), closes #7931

Performance Improvements

  • core: skip structural variance measurement of defineEntity builder and entity types (#8242) (b135126), closes #8240
Changelog

Sourced from @​mikro-orm/migrations's changelog.

7.2.0 (2026-09-07)

Bug Fixes

  • cli: surface the real error when a TypeScript loader fails to load (#8245) (28bdfd2)
  • core: decompose nested cursor groups lexicographically (4f0f696)
  • core: follow the platform's own null ordering in cursor pagination (7d1b174)
  • core: handle orderBy directions carrying a nulls qualifier (#8247) (8f4ae39)
  • core: preserve nested populate filters across loading strategies (#8243) (5b5fd36)
  • core: treat @Formula properties as nullable in cursor pagination (#8249) (f2aa86c)
  • decorators: skip @oxc-node/core helper frames when resolving entity path (#8246) (11f79e7)
  • postgres: forward pool.min to the pg pool (#8237) (188b064), closes #8234

Features

  • cli: add a "-q" param, to suppress informational output (#7886) (1450d3f)
  • cli: add Nub TypeScript loader option (#8253) (7196a72)
  • cli: the "--combined" argument of cache:generate can optionally be a path to the cache file (#7963) (6dbe55d)
  • core: add getNativeClient() to access the underlying database client (#8148) (27634ad), closes #8146
  • core: add through option for read-only to-one relations resolved via subquery (#8239) (5e621e0), closes #8238
  • core: add native support for row level security (#7984) (8336552), closes #6137 #6413 #6493 #6493
  • core: allow map to bypass identity map (#8199) (4d6a564)
  • core: allow specifying a callback for the RequestContext options (#7925) (74ea240)
  • core: rework cursor pagination for custom types and nullable columns (#8103) (35a1455), closes #8097
  • core: support await using via Symbol.asyncDispose (#8159) (e1cbd5d), closes #8158
  • core: support index option on M:N properties for pivot table join columns (#8160) (aa177ed), closes #8156
  • core: support configurable string normalization (#8169) (96fdbb4), closes #8165
  • core: support named parameters in em.execute() (#8173) (17788fc), closes #8093
  • migrations: allow opting out of snapshot updates on migrate (#8039) (c1d8561)
  • mongo: add $all query operator support (#7931) (a8fb833)
  • sql-js: add sql.js driver for in-memory SQLite in WebAssembly (#7783) (c168a0f)
  • sql: support the $all operator on collection properties (#8248) (c987f8a), closes #7931

Performance Improvements

  • core: skip structural variance measurement of defineEntity builder and entity types (#8242) (b135126), closes #8240
Commits
  • 198c083 chore(release): v7.2.0 [skip ci]
  • 0584078 chore(deps): update patch/minor dependencies
  • 07ac9c7 docs: add v7.2 release blog post (#8254)
  • c168a0f feat(sql-js): add sql.js driver for in-memory SQLite in WebAssembly (#7783)
  • 7196a72 feat(cli): add Nub TypeScript loader option (#8253)
  • adbb359 chore: cover the ignored nulls qualifier in mongo cursor pagination (#8252)
  • 7d1b174 fix(core): follow the platform's own null ordering in cursor pagination
  • 4f0f696 fix(core): decompose nested cursor groups lexicographically
  • f2aa86c fix(core): treat @Formula properties as nullable in cursor pagination (#8249)
  • 35a1455 feat(core): rework cursor pagination for custom types and nullable columns (#...
  • Additional commits viewable in compare view

Updates @mikro-orm/mongodb from 7.1.15 to 7.2.0

Details ...

Description has been truncated


View with [code]smith Autofix with [code]smith
Need help on this PR? Tag @codesmith-bot with what you need. Autofix is disabled.

Bumps the minor-and-patch group in /blueprint with 15 updates:

| Package | From | To |
| --- | --- | --- |
| [@biomejs/biome](https://github.com/biomejs/biome/tree/HEAD/packages/@biomejs/biome) | `2.5.11` | `2.5.12` |
| [lint-staged](https://github.com/lint-staged/lint-staged) | `17.4.1` | `17.5.0` |
| [@mikro-orm/core](https://github.com/mikro-orm/mikro-orm) | `7.1.15` | `7.2.0` |
| [@mikro-orm/migrations](https://github.com/mikro-orm/mikro-orm) | `7.1.15` | `7.2.0` |
| [@mikro-orm/mongodb](https://github.com/mikro-orm/mikro-orm) | `7.1.15` | `7.2.0` |
| [@mikro-orm/mysql](https://github.com/mikro-orm/mikro-orm) | `7.1.15` | `7.2.0` |
| [@mikro-orm/postgresql](https://github.com/mikro-orm/mikro-orm) | `7.1.15` | `7.2.0` |
| [@mikro-orm/seeder](https://github.com/mikro-orm/mikro-orm) | `7.1.15` | `7.2.0` |
| [@mikro-orm/sqlite](https://github.com/mikro-orm/mikro-orm) | `7.1.15` | `7.2.0` |
| [jose](https://github.com/panva/jose) | `6.2.11` | `6.2.12` |
| [@mikro-orm/cli](https://github.com/mikro-orm/mikro-orm) | `7.1.15` | `7.2.0` |
| [better-auth](https://github.com/better-auth/better-auth/tree/HEAD/packages/better-auth) | `1.7.2` | `1.7.3` |
| [@mikro-orm/libsql](https://github.com/mikro-orm/mikro-orm) | `7.1.15` | `7.2.0` |
| [@mikro-orm/mariadb](https://github.com/mikro-orm/mikro-orm) | `7.1.15` | `7.2.0` |
| [@mikro-orm/mssql](https://github.com/mikro-orm/mikro-orm) | `7.1.15` | `7.2.0` |


Updates `@biomejs/biome` from 2.5.11 to 2.5.12
- [Release notes](https://github.com/biomejs/biome/releases)
- [Changelog](https://github.com/biomejs/biome/blob/main/packages/@biomejs/biome/CHANGELOG.md)
- [Commits](https://github.com/biomejs/biome/commits/@biomejs/[email protected]/packages/@biomejs/biome)

Updates `lint-staged` from 17.4.1 to 17.5.0
- [Release notes](https://github.com/lint-staged/lint-staged/releases)
- [Changelog](https://github.com/lint-staged/lint-staged/blob/main/CHANGELOG.md)
- [Commits](lint-staged/lint-staged@v17.4.1...v17.5.0)

Updates `@mikro-orm/core` from 7.1.15 to 7.2.0
- [Release notes](https://github.com/mikro-orm/mikro-orm/releases)
- [Changelog](https://github.com/mikro-orm/mikro-orm/blob/master/CHANGELOG.md)
- [Commits](mikro-orm/mikro-orm@v7.1.15...v7.2.0)

Updates `@mikro-orm/migrations` from 7.1.15 to 7.2.0
- [Release notes](https://github.com/mikro-orm/mikro-orm/releases)
- [Changelog](https://github.com/mikro-orm/mikro-orm/blob/master/CHANGELOG.md)
- [Commits](mikro-orm/mikro-orm@v7.1.15...v7.2.0)

Updates `@mikro-orm/mongodb` from 7.1.15 to 7.2.0
- [Release notes](https://github.com/mikro-orm/mikro-orm/releases)
- [Changelog](https://github.com/mikro-orm/mikro-orm/blob/master/CHANGELOG.md)
- [Commits](mikro-orm/mikro-orm@v7.1.15...v7.2.0)

Updates `@mikro-orm/mysql` from 7.1.15 to 7.2.0
- [Release notes](https://github.com/mikro-orm/mikro-orm/releases)
- [Changelog](https://github.com/mikro-orm/mikro-orm/blob/master/CHANGELOG.md)
- [Commits](mikro-orm/mikro-orm@v7.1.15...v7.2.0)

Updates `@mikro-orm/postgresql` from 7.1.15 to 7.2.0
- [Release notes](https://github.com/mikro-orm/mikro-orm/releases)
- [Changelog](https://github.com/mikro-orm/mikro-orm/blob/master/CHANGELOG.md)
- [Commits](mikro-orm/mikro-orm@v7.1.15...v7.2.0)

Updates `@mikro-orm/seeder` from 7.1.15 to 7.2.0
- [Release notes](https://github.com/mikro-orm/mikro-orm/releases)
- [Changelog](https://github.com/mikro-orm/mikro-orm/blob/master/CHANGELOG.md)
- [Commits](mikro-orm/mikro-orm@v7.1.15...v7.2.0)

Updates `@mikro-orm/sqlite` from 7.1.15 to 7.2.0
- [Release notes](https://github.com/mikro-orm/mikro-orm/releases)
- [Changelog](https://github.com/mikro-orm/mikro-orm/blob/master/CHANGELOG.md)
- [Commits](mikro-orm/mikro-orm@v7.1.15...v7.2.0)

Updates `jose` from 6.2.11 to 6.2.12
- [Release notes](https://github.com/panva/jose/releases)
- [Changelog](https://github.com/panva/jose/blob/main/CHANGELOG.md)
- [Commits](panva/jose@v6.2.11...v6.2.12)

Updates `@mikro-orm/cli` from 7.1.15 to 7.2.0
- [Release notes](https://github.com/mikro-orm/mikro-orm/releases)
- [Changelog](https://github.com/mikro-orm/mikro-orm/blob/master/CHANGELOG.md)
- [Commits](mikro-orm/mikro-orm@v7.1.15...v7.2.0)

Updates `better-auth` from 1.7.2 to 1.7.3
- [Release notes](https://github.com/better-auth/better-auth/releases)
- [Changelog](https://github.com/better-auth/better-auth/blob/main/packages/better-auth/CHANGELOG.md)
- [Commits](https://github.com/better-auth/better-auth/commits/v1.7.3/packages/better-auth)

Updates `@mikro-orm/libsql` from 7.1.15 to 7.2.0
- [Release notes](https://github.com/mikro-orm/mikro-orm/releases)
- [Changelog](https://github.com/mikro-orm/mikro-orm/blob/master/CHANGELOG.md)
- [Commits](mikro-orm/mikro-orm@v7.1.15...v7.2.0)

Updates `@mikro-orm/mariadb` from 7.1.15 to 7.2.0
- [Release notes](https://github.com/mikro-orm/mikro-orm/releases)
- [Changelog](https://github.com/mikro-orm/mikro-orm/blob/master/CHANGELOG.md)
- [Commits](mikro-orm/mikro-orm@v7.1.15...v7.2.0)

Updates `@mikro-orm/mssql` from 7.1.15 to 7.2.0
- [Release notes](https://github.com/mikro-orm/mikro-orm/releases)
- [Changelog](https://github.com/mikro-orm/mikro-orm/blob/master/CHANGELOG.md)
- [Commits](mikro-orm/mikro-orm@v7.1.15...v7.2.0)

---
updated-dependencies:
- dependency-name: "@biomejs/biome"
  dependency-version: 2.5.12
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: lint-staged
  dependency-version: 17.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@mikro-orm/core"
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@mikro-orm/migrations"
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@mikro-orm/mongodb"
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@mikro-orm/mysql"
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@mikro-orm/postgresql"
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@mikro-orm/seeder"
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@mikro-orm/sqlite"
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: jose
  dependency-version: 6.2.12
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@mikro-orm/cli"
  dependency-version: 7.2.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: better-auth
  dependency-version: 1.7.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: minor-and-patch
- dependency-name: "@mikro-orm/libsql"
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@mikro-orm/mariadb"
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
- dependency-name: "@mikro-orm/mssql"
  dependency-version: 7.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: minor-and-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot @github

dependabot Bot commented on behalf of github Sep 10, 2026

Copy link
Copy Markdown
Contributor Author

Labels

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

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

@coderabbitai

coderabbitai Bot commented Sep 10, 2026

Copy link
Copy Markdown
Contributor

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Advanced

Run ID: fb3a9b08-6c0d-42d5-a4a8-2c13bb9e6127

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • 🔍 Trigger review

Comment @coderabbitai help to get the list of available commands.

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