Spring '26 is a heavyweight release for developers. The story is vibe coding with Agentforce Vibes, a multi-framework runtime for React apps inside Salesforce, an Apex test-targeting flag that finally lets you skip irrelevant tests, and meaningful upgrades to LWC, agent actions, and the Apex platform. API version 66.0 ships with this release.
What's new for developers
- Agentforce Vibes welcome page (GA Apr 15, 2026). Inside the Agentforce Vibes IDE and the Agentforce Vibes extension for VS Code, the new welcome page lets you start an agent project, a Lightning app, or a React app from a template or a natural-language prompt. Salesforce-hosted MCP servers and Salesforce Skills preload guardrails for metadata generation.
- Salesforce Multi-Framework (Beta) — React apps in Salesforce. Build React apps with Vibes, deploy them to your org, and access them from the App Launcher on desktop or mobile. Use Data SDK + GraphQL to read/write record data. The Content Read-Only MCP server (Beta) lets the agent pull published brands and CMS images into your React app via natural-language prompts. React Live Preview ships as the renamed Local Dev experience and is GA for previewing a single LWC in the browser or in VS Code.
- Apex picks up several big items.
- `RunRelevantTests` (Beta) — a new Apex test level that analyses your deployment payload and runs only the tests that touch the changed code. Annotate test classes with
@IsTest(critical=true)to force-run regardless, or@IsTest(testFor='ApexClass:Foo')to bind a test to specific components. Supported bysf project deploy start --test-level RunRelevantTests, the Metadata APIdeploy(), and thedeployRequestREST resource. - Apex cursors and pagination cursors are GA.
Cursor.fetch()counts against SOQL limits but lets queueable jobs handle batch-Apex-class workloads with variable batch sizes. The newPaginationCursorclass drives multipage UIs, and@AuraEnabledmethods now accept and return cursors. The 24-hour cap is 100 million new cursor rows. - Exposing Apex REST and `@AuraEnabled` controller methods as agent actions is GA. Annotate methods, generate the OpenAPI spec, deploy it, and manage exposed endpoints in API Catalog.
ConnectApi.RecordUi.getPicklistValuesByRecordType()returns all dependent picklist values per record type in one call — no more callouts to assemble them.Blob.toPdf()now uses the Visualforce PDF rendering service (better fonts, multibyte support) under the Use Visualforce PDF Rendering Service Release Update.- Sharing-recalculation behavior is changing — there's a Release Update to walk through the impact and a code-update guide.
purgeOldAsyncJobs()has a new overload that takes a count cap so you can incrementally drain old async jobs instead of trying to delete everything at once.- Lightning components.
- Complex expressions in LWC templates (real ternaries, member access, method calls).
- Lightning Types lets you declare data structures that drive custom components and Agentforce-rendered UI consistently across the platform.
- Base components for empty states and illustrations are in beta; the TypeScript rollout for all base components is complete.
- Screen flows now support LWC local actions — invoke a component method from a screen flow without a server round-trip.
- Error Console keeps non-fatal LWC errors from interrupting the user.
- Lightning Out 2.0 improvements continue.
- API version 66.0 lands. Notable: DataWeave supports nested SOQL in transformations, SOQL queries with
WITH USER_MODEcan run as the Automated Process User (66.0+), and Apex classes used as invocable-action parameters must expose a public/global no-arg constructor in 66.0+. - DevOps Center is GA — full ALM workflow inside Salesforce.
- Test Discovery API adds a
categoryquery parameter so you can filter for Apex-only or flow-only tests in large suites.
What's deprecated
- Salesforce Functions is no longer available for purchase or renewal — read the retirement plan and migrate workloads to Heroku, External Services, or Apex callouts.
- Connected Apps are restricted: creation is disabled by default in new orgs; SAML connected apps must migrate to External Client Apps.
- AppExchange Connected App and ECA solutions must follow new security requirements (review the partner-security release notes if you publish a managed package).
- Visualforce Release Update continuation — there's an ongoing release update; check the Visualforce section.
What's still in beta
- Salesforce Multi-Framework for React (sandbox/scratch only, English default).
- Content Read-Only MCP Server, Metadata Experts MCP Server.
- `RunRelevantTests` test level.
- LWC base components for empty states / illustrations.
- Agentforce Builder (the new text-editor-inspired agent IDE).
- Validate and Optimize React Apps for Production (developer preview) — runs validators for code quality, security, and accessibility and emits a readiness score.
Want a single bullet to take to your tech lead? "Spring '26: API 66.0, Apex cursors GA, Vibes coding adds React app support inside Salesforce, RunRelevantTests beta — and Salesforce Functions is dead, plan a migration."
