Introducing Claw Patrol!
A security firewall for AI agents. It sits between your agents and production, parsing and gating HTTP, SQL, Kubernetes, and SSH on the wire.
Built from our experience giving ops agents production access without sharing credentials.
MIT licensed.
Nice improvement to Bun’s startup path. Our measurements match the claim for empty programs (~7.5 ms for Bun vs ~10 ms for @deno_land).
Once you run a realistic program, though, the difference disappears 👇
In other words, this is mostly an optimization for startup overhead rather than application execution.
Another week, another patch release 🦕
Deno v2.9.4: 47 bug fixes plus a handful of perf wins (FxHash hot maps, smaller snapshots, slimmer AppImages).
See you next week!
🦕 Deno v2.9.3 is out! 50+ fixes plus a batch of perf wins:
- Faster crypto.randomUUID() via batched generation
- Removed quadratic line buffering in EventSource (fetch)
- Cached compiled glob matchers in node:fs
- Fast path for fs.cp
- Speed up sqlite.StatementSync.all() / .run()
👉 deno upgrade
Deno v2.9.2 is out with perf improvements:
- ReadableStream async iterator now has a sync fast path
- queueMicrotask uses V8 natively
- zero-copy async writes for node streams
- SIMD JSON indexing for npm packuments
- faster worker message passing
Plus 39 bug fixes and 13 improvements to Deno Desktop
deno upgrade
Deno 2.9.1 is out 🦕
deno desktop gets --desktop type-checking and no more startup black flash (the window now reveals on first paint).
Plus 47 fixes across npm client, fetch, node compat, and more.
deno upgrade
In Deno 2.9, coming next week, migrating from other package managers will be seamless.
Deno will understand the lockfiles you already have from npm, yarn, pnpm, and bun.
Workspaces are drop-in too. npm, yarn, and bun keep their workspaces in package.json, so they just work. catalog: and the rest are supported.
Only pnpm needs a small migration, since it keeps workspace config in pnpm-workspace.yaml, which Deno converts to deno.json for you.
`deno desktop` has landed in main. You can try it out by running `deno upgrade canary`
- Mac, Linux, and Windows support
- Can generate pkg and msi installers
- Supports cross-compile (generate .exe from mac)
- Supports chrome (CEF) or native Webview for smaller binaries
`deno desktop` has landed in main. You can try it out by running `deno upgrade canary`
- Mac, Linux, and Windows support
- Can generate pkg and msi installers
- Supports cross-compile (generate .exe from mac)
- Supports chrome (CEF) or native Webview for smaller binaries
Deno 2.9 will ship with CSS import support.
A CSS import used to kill module loading in Deno before a single line of your code ran.
It will now give you a real CSSStyleSheet, so you can run unmodified browser module graphs for SSR and web component testing.