Commit 78b0fa8
authored
feat(deps): bump @prisma/instrumentation from 6.11.1 to 6.12.0 (#17117)
Bumps
[@prisma/instrumentation](https://github.com/prisma/prisma/tree/HEAD/packages/instrumentation)
from 6.11.1 to 6.12.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/prisma/prisma/releases"><code>@prisma/instrumentation</code>'s
releases</a>.</em></p>
<blockquote>
<h2>6.12.0</h2>
<p>Today, we are excited to share the <code>6.12.0</code> stable
release 🎉</p>
<p><strong>🌟 Star this repo for notifications about new releases, bug
fixes & features — or <a href="https://pris.ly/x">follow us on
X</a>!</strong></p>
<h2>Highlights</h2>
<h3>ESM-compatible <code>prisma-client</code> generator now in
Preview</h3>
<p>We’re excited to share that our new and more flexible
<code>prisma-client</code> generator is moving into <a
href="https://www.prisma.io/docs/orm/more/releases#preview">Preview</a>!
As a reminder, here’s what it looks like:</p>
<pre lang="prisma"><code>generator client {
// Required
provider = "prisma-client" // no `-js` at the end!
output = "../src/generated/prisma"
<p>// Optional<br />
runtime = "nodejs"<br />
moduleFormat = "esm"<br />
generatedFileExtension = "ts"<br />
importFileExtension = "ts"<br />
}<br />
</code></pre></p>
<p>This new generator eliminates any headaches that you may have
experienced due to <a
href="https://www.prisma.io/blog/why-prisma-orm-generates-code-into-node-modules-and-why-it-ll-change">magical
code generation into <code>node_modules</code></a> and gives you full
control over the generated Prisma Client code. With it moving into
Preview, we hope that even more of you will try it out and share your
feedback with us!</p>
<blockquote>
<p><strong>Note</strong>: The <code>prisma-client</code> generator will
become the default in Prisma v7, replacing the current
<code>prisma-client-js</code> generator.</p>
</blockquote>
<p>In addition to moving it into Preview, we also created a couple of
new ready-to-run examples to help you get started with the new generator
and your favorite framework:</p>
<ul>
<li><a
href="https://github.com/prisma/prisma-examples/tree/latest/generator-prisma-client/react-router-starter-cloudflare-workerd">React
Router + Vite + Cloudflare</a></li>
<li><a
href="https://github.com/prisma/prisma-examples/tree/latest/generator-prisma-client/react-router-starter-nodejs">React
Router + Vite + Node.js</a></li>
<li><a
href="https://github.com/prisma/prisma-examples/tree/latest/generator-prisma-client/nuxt3-starter-nodejs">Nuxt
3 + Vite + Nitro</a></li>
<li><a
href="https://github.com/prisma/prisma-examples/tree/latest/generator-prisma-client/deno-deploy">Deno
Deploy</a></li>
</ul>
<p>📚 Learn more in the <a
href="https://www.prisma.io/docs/orm/prisma-schema/overview/generators#prisma-client-preview">docs</a>.</p>
<h3>Specify <code>views</code> and <code>migrations</code> folder
locations in <code>prisma.config.ts</code> (Early Access)</h3>
<p>As we’re getting closer to the <a
href="https://www.prisma.io/docs/orm/more/releases#generally-available-ga">General
Availability</a> release of <a
href="https://www.prisma.io/docs/orm/reference/prisma-config-reference"><code>prisma.config.ts</code></a>,
we’re adding more capabilities to it. In previous versions, the Prisma
CLI implicitly used to infer the location for migration and SQL view
definition files based on the location of the Prisma schema. In this
release, we’re adding two new fields (<code>migrations</code> and
<code>views</code>) to give you more flexibility and clarity on how to
locate these files:</p>
<pre lang="ts"><code>// prisma.config.ts
export default defineConfig({
earlyAccess: true,
migrations: {
path: './db/migrations'
},
views: {
</tr></table>
</code></pre>
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li>See full diff in <a
href="https://github.com/prisma/prisma/commits/6.12.0/packages/instrumentation">compare
view</a></li>
</ul>
</details>
<br />
[](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores)
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 merge` will merge this PR after your CI passes on it
- `@dependabot squash and merge` will squash and merge this PR after
your CI passes on it
- `@dependabot cancel merge` will cancel a previously requested merge
and block automerging
- `@dependabot reopen` will reopen this PR if it is closed
- `@dependabot close` will close this PR and stop Dependabot recreating
it. You can achieve the same result by closing it manually
- `@dependabot show <dependency name> ignore conditions` will show all
of the ignore conditions of the specified dependency
- `@dependabot ignore this major version` will close this PR and stop
Dependabot creating any more for this major version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this minor version` will close this PR and stop
Dependabot creating any more for this minor version (unless you reopen
the PR or upgrade to it yourself)
- `@dependabot ignore this dependency` will close this PR and stop
Dependabot creating any more for this dependency (unless you reopen the
PR or upgrade to it yourself)
</details>
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>1 parent 549ca39 commit 78b0fa8
2 files changed
+6
-45
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
94 | 94 | | |
95 | 95 | | |
96 | 96 | | |
97 | | - | |
| 97 | + | |
98 | 98 | | |
99 | 99 | | |
100 | 100 | | |
| |||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
6300 | 6300 | | |
6301 | 6301 | | |
6302 | 6302 | | |
6303 | | - | |
6304 | | - | |
6305 | | - | |
6306 | | - | |
| 6303 | + | |
| 6304 | + | |
| 6305 | + | |
| 6306 | + | |
6307 | 6307 | | |
6308 | 6308 | | |
6309 | 6309 | | |
| |||
6961 | 6961 | | |
6962 | 6962 | | |
6963 | 6963 | | |
6964 | | - | |
6965 | | - | |
6966 | | - | |
6967 | | - | |
6968 | | - | |
6969 | 6964 | | |
6970 | 6965 | | |
6971 | 6966 | | |
| |||
6976 | 6971 | | |
6977 | 6972 | | |
6978 | 6973 | | |
6979 | | - | |
6980 | | - | |
6981 | | - | |
6982 | | - | |
6983 | | - | |
6984 | 6974 | | |
6985 | 6975 | | |
6986 | 6976 | | |
| |||
6991 | 6981 | | |
6992 | 6982 | | |
6993 | 6983 | | |
6994 | | - | |
6995 | | - | |
6996 | | - | |
6997 | | - | |
6998 | | - | |
6999 | 6984 | | |
7000 | 6985 | | |
7001 | 6986 | | |
| |||
7006 | 6991 | | |
7007 | 6992 | | |
7008 | 6993 | | |
7009 | | - | |
7010 | | - | |
7011 | | - | |
7012 | | - | |
7013 | | - | |
7014 | 6994 | | |
7015 | 6995 | | |
7016 | 6996 | | |
| |||
7021 | 7001 | | |
7022 | 7002 | | |
7023 | 7003 | | |
7024 | | - | |
7025 | | - | |
7026 | | - | |
7027 | | - | |
7028 | | - | |
7029 | 7004 | | |
7030 | 7005 | | |
7031 | 7006 | | |
7032 | 7007 | | |
7033 | 7008 | | |
7034 | | - | |
7035 | | - | |
7036 | | - | |
7037 | | - | |
7038 | | - | |
7039 | 7009 | | |
7040 | 7010 | | |
7041 | 7011 | | |
| |||
7046 | 7016 | | |
7047 | 7017 | | |
7048 | 7018 | | |
7049 | | - | |
7050 | | - | |
7051 | | - | |
7052 | | - | |
7053 | | - | |
7054 | 7019 | | |
7055 | 7020 | | |
7056 | 7021 | | |
| |||
7061 | 7026 | | |
7062 | 7027 | | |
7063 | 7028 | | |
7064 | | - | |
7065 | | - | |
7066 | | - | |
7067 | | - | |
7068 | | - | |
7069 | 7029 | | |
7070 | 7030 | | |
7071 | 7031 | | |
| |||
28647 | 28607 | | |
28648 | 28608 | | |
28649 | 28609 | | |
| 28610 | + | |
28650 | 28611 | | |
28651 | 28612 | | |
28652 | 28613 | | |
| |||
0 commit comments