Backend et Fullstack

Backend & Fullstack Daily — 10 juil. 2026

Lo nuevo hoy

Today's highlights

Points forts du jour

Click en cualquiera para ir al detalle

Click any item to jump to the full section

Cliquez un élément pour aller à la section complète

🔥

Top Stories

Breaking

TypeScript 7.0 es GA: el port nativo en Go, hasta 12x más rápido

Microsoft liberó TypeScript 7.0, el port nativo escrito en Go con memoria compartida y multithreading. Reportan speedups de 8x a 12x en builds completos, abrir archivos en VS Code baja de ~17,5s a 1,3s y ~26% menos memoria. Es compatible con el type-checking de TS 6.0 y trae flags --checkers y --builders para paralelizar. Probado con Figma, Slack, Google y Vercel. Esto es un golazo para la DX: si tenés monorepos grandes, actualizá y sentí la diferencia.

08 Jul 2026
devblogs.microsoft.com →
Seguridad

Campaña de malware: SDKs de pago falsos en npm y PyPI roban credenciales

Se detectó una campaña coordinada de 17 paquetes npm y 4 de PyPI que se hacían pasar por SDKs de PaySafe, Skrill y Neteller (paysafe-checkout, paysafe-node, neteller, etc.). Devuelven un { success: true } falso mientras exfiltran variables de entorno con KEY, SECRET, TOKEN, AUTH o API hacia un C2 vía ngrok. Ojo con esto: nunca instales un SDK de pago sin verificar el publisher y auditá tu .env en CI.

07 Jul 2026
gbhackers.com →
Breaking

Better Auth se suma a Vercel

El fundador de Better Auth, Bereket Engida, anunció que él y el core team se suman a Vercel. Better Auth ya mantiene Auth.js (ex NextAuth) desde 2025, así que Vercel se queda con buena parte del stack de auth del ecosistema TypeScript. Si armás auth self-hosted, seguí de cerca cómo evoluciona la licencia y el roadmap; no es poca cosa que Vercel controle las dos librerías.

07 Jul 2026
workos.com →
Destacado

Bun reescrito de Zig a Rust con agentes de IA en ~11 días

Jarred Sumner contó cómo migró Bun de Zig a Rust usando agentes de IA, con la suite de tests en TypeScript como criterio de conformidad. Motivo: los bugs de memoria de Zig (use-after-free, double-free). El proceso consumió ~5,9B tokens de input y ~690M de output (~165.000 USD en API), muchísimo menos que un rewrite manual. La build en Rust ya salió con ~10% más de arranque en Linux. Caso de estudio brutal de migración asistida por IA: el humano dirige, el agente ejecuta.

08 Jul 2026
simonwillison.net →

Backend TypeScript & Runtimes

Release

Node.js 26.5.0: blob.textStream(), import de texto experimental y más

Node.js 26.5.0 (línea current) trae blob.textStream() en el módulo Buffer, el flag --experimental-import-text para ESM, exposición de ReadableStreamTee, sampling de delay por iteración del event loop en perf hooks y reporte de grupos TLS negociados. Actualización sólida; nada breaking, pero el import de texto nativo saca laburo a los loaders custom.

08 Jul 2026
github.com/nodejs →
Release

Deno 2.9.2 sigue puliendo las apps de escritorio

Deno 2.9.2 continúa el empuje de deno desktop (introducido en 2.9.0), que empaqueta un proyecto web en un ejecutable self-contained con runtime y motor de render incluidos. Esta línea suma deno check --desktop, registro de esquemas de URL para deep-links y mejoras de estabilidad en Windows/Linux. Si venías atado a Electron, mirá esto de reojo.

08 Jul 2026
github.com/denoland →
🔗

Fullstack & Auth

Beta

Better Auth: beta con DPoP, cambios en OAuth/MCP y sign-in por popup

Días antes del anuncio con Vercel, Better Auth publicó una beta amplia: soporte de DPoP, cambios grandes en OAuth y MCP, popup sign-in, pre-binding de device code, Yandex como provider social y fixes de seguridad (revocación de credenciales, redirects server-side endurecidos, SCIM, Stripe y 2FA). También arregló el conteo de filas afectadas en D1 y postgres-js. Ponete las pilas con las migraciones si venís de una versión vieja.

03 Jul 2026
github.com/better-auth →
☁️

Cloud & DevOps

Minor

Kubernetes v1.37 llega al feature freeze; GA prevista para el 26 de agosto

El ciclo de Kubernetes v1.37 pasó su feature blog freeze el 9–10 de julio; el code/test freeze es el 22–23 de julio y la GA apunta al 26 de agosto de 2026. La última línea estable sigue siendo la 1.36.x (v1.36.2, 9 de junio). Si mantenés clusters, este es el momento de mirar qué features enhancement entran para planear tu upgrade.

09 Jul 2026
kubernetes.dev →
🔥

Top Stories

Breaking

TypeScript 7.0 is GA: the native Go port, up to 12x faster

Microsoft shipped TypeScript 7.0, the native port written in Go with shared-memory multithreading. They report 8x–12x speedups on full builds, opening files in VS Code drops from ~17.5s to 1.3s, and ~26% less memory. It is compatible with TS 6.0 type-checking and adds --checkers and --builders flags to tune parallelism. Battle-tested with Figma, Slack, Google and Vercel.

08 Jul 2026
devblogs.microsoft.com →
Security

Malware campaign: fake payment SDKs on npm and PyPI steal credentials

A coordinated campaign of 17 npm packages and 4 PyPI packages posed as SDKs for PaySafe, Skrill and Neteller (paysafe-checkout, paysafe-node, neteller, etc.). They return a fake { success: true } while exfiltrating env vars containing KEY, SECRET, TOKEN, AUTH or API to a C2 via ngrok. Each was flagged within ~6 minutes of publication.

07 Jul 2026
gbhackers.com →
Breaking

Better Auth joins Vercel

Better Auth founder Bereket Engida announced that he and the core team are joining Vercel. Better Auth already maintains Auth.js (formerly NextAuth) since 2025, so Vercel now stewards a large slice of the TypeScript auth stack. Worth watching how licensing and roadmap evolve for self-hosted setups.

07 Jul 2026
workos.com →
Notable

Bun rewritten from Zig to Rust with AI agents in ~11 days

Jarred Sumner detailed migrating Bun from Zig to Rust using AI agents, with the TypeScript test suite as the conformance oracle. Motivation: Zig memory bugs (use-after-free, double-free). The run consumed ~5.9B input and ~690M output tokens (~$165k in API), far cheaper than a manual rewrite. The Rust build already shipped with ~10% faster startup on Linux. A sharp case study in AI-assisted migration: the human steers, the agent executes.

08 Jul 2026
simonwillison.net →

Backend TypeScript & Runtimes

Release

Node.js 26.5.0: blob.textStream(), experimental import text and more

Node.js 26.5.0 (current line) adds blob.textStream() in the Buffer module, the --experimental-import-text flag for ESM, exposes ReadableStreamTee, per-event-loop-iteration delay sampling in perf hooks, and negotiated TLS group reporting. Solid, non-breaking bump; native text import trims work off custom loaders.

08 Jul 2026
github.com/nodejs →
Release

Deno 2.9.2 keeps polishing desktop apps

Deno 2.9.2 continues the deno desktop push (introduced in 2.9.0), which packages a web project into a self-contained executable bundling the runtime and a rendering engine. The line adds deno check --desktop, deep-link URL scheme registration and Windows/Linux stability fixes. Worth a look if you are tied to Electron.

08 Jul 2026
github.com/denoland →
🔗

Fullstack & Auth

Beta

Better Auth: beta with DPoP, OAuth/MCP changes and popup sign-in

Days before the Vercel news, Better Auth shipped a broad beta: DPoP support, major OAuth and MCP changes, popup sign-in, device-code pre-binding, Yandex as a social provider, and security fixes (credential revocation, hardened server-side redirects, SCIM, Stripe and 2FA). It also fixed affected-row counting in D1 and postgres-js.

03 Jul 2026
github.com/better-auth →
☁️

Cloud & DevOps

Minor

Kubernetes v1.37 hits feature freeze; GA targeted for Aug 26

The Kubernetes v1.37 cycle passed its feature blog freeze on July 9–10; code/test freeze lands July 22–23 and GA targets Aug 26, 2026. Current stable is still 1.36.x (v1.36.2, June 9). If you run clusters, now is the time to track which enhancements land to plan your upgrade.

09 Jul 2026
kubernetes.dev →
🔥

Top Stories

Breaking

TypeScript 7.0 est GA : le port natif en Go, jusqu'à 12x plus rapide

Microsoft a publié TypeScript 7.0, le port natif écrit en Go avec multithreading à mémoire partagée. Speedups de 8x à 12x sur les builds complets, ouverture de fichiers dans VS Code de ~17,5s à 1,3s et ~26% de mémoire en moins. Compatible avec le type-checking de TS 6.0, avec les flags --checkers et --builders pour paralléliser.

08 Jul 2026
devblogs.microsoft.com →
Sécurité

Campagne de malware : de faux SDK de paiement sur npm et PyPI volent des identifiants

Campagne coordonnée de 17 paquets npm et 4 PyPI se faisant passer pour des SDK de PaySafe, Skrill et Neteller (paysafe-checkout, paysafe-node, neteller, etc.). Ils renvoient un faux { success: true } tout en exfiltrant les variables d'environnement contenant KEY, SECRET, TOKEN, AUTH ou API vers un C2 via ngrok.

07 Jul 2026
gbhackers.com →
Breaking

Better Auth rejoint Vercel

Le fondateur de Better Auth, Bereket Engida, a annoncé que lui et l'équipe centrale rejoignent Vercel. Better Auth maintient déjà Auth.js (ex-NextAuth) depuis 2025, donc Vercel pilote désormais une grande partie de la stack d'authentification TypeScript.

07 Jul 2026
workos.com →
Notable

Bun réécrit de Zig à Rust avec des agents IA en ~11 jours

Jarred Sumner a détaillé la migration de Bun de Zig à Rust avec des agents IA, la suite de tests TypeScript servant d'oracle de conformité. Motivation : les bugs mémoire de Zig (use-after-free, double-free). La campagne a consommé ~5,9 Md tokens d'entrée et ~690 M de sortie (~165 000 $ d'API). Le build Rust démarre ~10% plus vite sur Linux.

08 Jul 2026
simonwillison.net →

Backend TypeScript & Runtimes

Release

Node.js 26.5.0 : blob.textStream(), import de texte expérimental et plus

Node.js 26.5.0 (ligne current) ajoute blob.textStream() dans le module Buffer, le flag --experimental-import-text pour ESM, expose ReadableStreamTee, l'échantillonnage du délai par itération de l'event loop dans les perf hooks et le reporting des groupes TLS négociés.

08 Jul 2026
github.com/nodejs →
Release

Deno 2.9.2 continue de peaufiner les apps desktop

Deno 2.9.2 poursuit la poussée deno desktop (introduite en 2.9.0), qui empaquette un projet web dans un exécutable autonome incluant le runtime et un moteur de rendu. La ligne ajoute deno check --desktop, l'enregistrement de schémas d'URL pour les deep-links et des correctifs de stabilité Windows/Linux.

08 Jul 2026
github.com/denoland →
🔗

Fullstack & Auth

Bêta

Better Auth : beta avec DPoP, changements OAuth/MCP et connexion popup

Quelques jours avant l'annonce Vercel, Better Auth a publié une large beta : support DPoP, changements majeurs OAuth et MCP, popup sign-in, pre-binding du device code, Yandex comme fournisseur social et correctifs de sécurité (révocation d'identifiants, redirects côté serveur durcis, SCIM, Stripe et 2FA).

03 Jul 2026
github.com/better-auth →
☁️

Cloud & DevOps

Mineur

Kubernetes v1.37 atteint le feature freeze ; GA visée le 26 août

Le cycle Kubernetes v1.37 a passé son feature blog freeze les 9–10 juillet ; le code/test freeze arrive les 22–23 juillet et la GA vise le 26 août 2026. La ligne stable reste 1.36.x (v1.36.2, 9 juin).

09 Jul 2026
kubernetes.dev →