Files
releases/e2e
dependabot[bot] 6c51a0bf3a build(deps): bump @hono/node-server and prisma in /e2e/api/compile/prisma (#8931)
Removes [@hono/node-server](https://github.com/honojs/node-server). It's
no longer used after updating ancestor dependency
[prisma](https://github.com/prisma/prisma/tree/HEAD/packages/cli). These
dependencies need to be updated together.

Removes `@hono/node-server`

Updates `prisma` from 7.8.0 to 7.9.0
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a
href="https://github.com/prisma/prisma/releases">prisma's
releases</a>.</em></p>
<blockquote>
<h2>7.9.0</h2>
<p>Today, we are excited to share the <code>7.9.0</code> stable release
🎉</p>
<p><strong>🌟 Star this repo for notifications about new releases, bug
fixes &amp; features — or <a href="https://pris.ly/x">follow us on
X</a>!</strong></p>
<h1>Highlights</h1>
<h2>ORM</h2>
<h3>Tab completions for the Prisma CLI</h3>
<p>Typing out CLI commands from memory is now optional. Prisma ships
<strong>shell tab completions</strong> for <code>bash</code>,
<code>zsh</code>, <code>fish</code>, and PowerShell, covering commands,
subcommands, options, flags, and even option values.</p>
<p><strong>Setting it up.</strong> Most projects run Prisma through a
package manager, so completions are enabled through
<code>@bomb.sh/tab</code>'s package-manager integration — install it
once, then source the completion for your package manager and shell:</p>
<pre lang="bash"><code># 1. Install @bomb.sh/tab globally
npm install -g @bomb.sh/tab
<h1>2. Wire up your package manager + shell (pnpm shown; swap in npm /
yarn / bun):</h1>
<p>echo 'source &lt;(tab pnpm zsh)' &gt;&gt; ~/.zshrc # zsh<br />
echo 'source &lt;(tab pnpm bash)' &gt;&gt; ~/.bashrc # bash<br />
tab pnpm fish &gt; ~/.config/fish/completions/pnpm.fish  # fish<br />
tab pnpm powershell &gt; ~/.tab-pnpm.ps1 # PowerShell (then dot-source
it from $PROFILE)<br />
</code></pre></p>
<p><code>@bomb.sh/tab</code> delegates to any locally-installed CLI that
ships completions, so <code>pnpm prisma &lt;TAB&gt;</code>, <code>pnpm
exec prisma &lt;TAB&gt;</code>, <code>yarn prisma &lt;TAB&gt;</code>,
and <code>bun x prisma &lt;TAB&gt;</code> all complete Prisma's
commands, options, and values — no per-project setup. (<code>npx</code>
and <code>bunx</code> don't support completion themselves; use <code>npm
exec</code> and <code>bun x</code>.)</p>
<p>If instead you have Prisma installed globally on your
<code>PATH</code>, source its own completion directly: <code>source
&lt;(prisma complete zsh)</code> (or the <code>bash</code> /
<code>fish</code> / <code>powershell</code> variant).</p>
<p>This is built on <a
href="https://github.com/bombshell-dev/tab/"><code>@bomb.sh/tab</code></a>,
the same completion library that powers other CLIs in the ecosystem —
including Cloudflare, Nuxt, and Vitest — so the package-manager
completions you enable for Prisma work for those tools too. A wonderful
community contribution from <a
href="https://github.com/AmirSa12"><code>@​AmirSa12</code></a> (<a
href="https://redirect.github.com/prisma/prisma/pull/28351">#28351</a>)
— thank you!</p>
<p><a
href="https://github.com/user-attachments/assets/1f916a60-ee4d-40be-bb7d-74035d48ca83">https://github.com/user-attachments/assets/1f916a60-ee4d-40be-bb7d-74035d48ca83</a></p>
<h3>Prisma ORM, ready for AI agents</h3>
<p>Coding agents are now a first-class audience for Prisma, and 7.9.0
brings the first wave of work to make Prisma projects safe and
productive for them to work in.</p>
<p><strong>Agent skills installed with <code>prisma init</code></strong>
(<a
href="https://redirect.github.com/prisma/prisma/pull/29689">#29689</a>)</p>
<p><code>prisma init</code> now installs the <a
href="https://github.com/prisma/skills">prisma/skills</a> catalog into
freshly scaffolded projects. Agents such as Claude Code, Cursor, Codex,
and Windsurf start out with current, version-relevant Prisma knowledge
instead of relying on whatever happened to be in their training data.
The install is best-effort and never blocks scaffolding; opt out at any
time with <code>--no-skills</code>.</p>
<pre lang="terminal"><code>npx prisma@latest init
</code></pre>
<p><img
src="https://github.com/user-attachments/assets/8244a6dc-cdad-4028-a652-bb5ac6e4b271"
alt="prisma init scaffolds a project and installs the Prisma agent
skills catalog" /></p>
<p><strong>A safer default around destructive commands</strong> (<a
href="https://redirect.github.com/prisma/prisma/pull/29684">#29684</a>,
<a
href="https://redirect.github.com/prisma/prisma/pull/29691">#29691</a>,
<a
href="https://redirect.github.com/prisma/prisma/pull/29713">#29713</a>)</p>
<!-- raw HTML omitted -->
</blockquote>
<p>... (truncated)</p>
</details>
<details>
<summary>Commits</summary>
<ul>
<li><a
href="https://github.com/prisma/prisma/commit/537583cedbab5a51a9c39405d8e7e18bd9a44c97"><code>537583c</code></a>
feat(cli): add <code>@bomb.sh/tab</code> completions (<a
href="https://github.com/prisma/prisma/tree/HEAD/packages/cli/issues/28351">#28351</a>)</li>
<li><a
href="https://github.com/prisma/prisma/commit/bf7c40f9b1828a0187363096c3d9f83b1b3c8a25"><code>bf7c40f</code></a>
fix(cli): update Studio to 0.33.0 and suppress aborted response errors
(<a
href="https://github.com/prisma/prisma/tree/HEAD/packages/cli/issues/29720">#29720</a>)</li>
<li><a
href="https://github.com/prisma/prisma/commit/9acd8dcdc9395df8f8c4de241b8cfbfd2da227e9"><code>9acd8dc</code></a>
feat(cli): install Prisma agent skills during prisma init (<a
href="https://github.com/prisma/prisma/tree/HEAD/packages/cli/issues/29689">#29689</a>)</li>
<li><a
href="https://github.com/prisma/prisma/commit/aef8cb57f395f1d3499d8c472f44306a63cd4aa7"><code>aef8cb5</code></a>
fix(cli): remove the migrate-reset tool from the MCP server (<a
href="https://github.com/prisma/prisma/tree/HEAD/packages/cli/issues/29691">#29691</a>)</li>
<li><a
href="https://github.com/prisma/prisma/commit/cdca3335b392483aeb4ee5483cda436e4aaffb1a"><code>cdca333</code></a>
chore(deps): update <code>@​prisma/dev</code> to 0.24.14 (<a
href="https://github.com/prisma/prisma/tree/HEAD/packages/cli/issues/29686">#29686</a>)</li>
<li><a
href="https://github.com/prisma/prisma/commit/fda8fbce23b3af6b1651bd539da09e62c863ed6e"><code>fda8fbc</code></a>
chore(deps): bump <code>@​prisma/dev</code> to 0.24.9 (resolves hono
GHSA-92pp-h63x-v22m) (...</li>
<li>See full diff in <a
href="https://github.com/prisma/prisma/commits/7.9.0/packages/cli">compare
view</a></li>
</ul>
</details>
<br />

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
2026-07-21 17:19:45 -05:00
..

github.com/open-policy-agent/opa/e2e

This Go module is for end-to-end tests that come with dependencies we don't otherwise need for OPA, to avoid bloat in OPA's Go module's deps.

Warning

This module should never be imported from any of the other github.com/open-policy-agent/opa/* packages!