For the full list of changes, check out the Webiny 6.3.0external link release on GitHub.

AI PowerUps
anchor

AI-Powered Page Content Generation (#5125external link,#5117external link,#5113external link,#5111external link)
anchor

Webiny now includes AI-powered content generation capabilities through the new AI PowerUps feature. You can configure AI providers (OpenAI, Anthropic) and define personas in the Admin settings, then use AI to generate page content directly within the Page Builder.

The feature includes:

  • Provider configuration — set up connections to OpenAI or Anthropic with your API keys
  • Personas — define reusable AI personas with custom instructions for different content styles
  • Content generation — generate page sections and content using natural language prompts
  • Tool pipeline — AI-generated content is automatically processed through tools that convert text to Lexical editor format and resolve images

AI Image Enrichment for File Manager (#5123external link)
anchor

Images uploaded to the File Manager are now automatically enriched with AI-generated metadata:

  • Tags — AI analyzes the image and assigns relevant tags for improved searchability
  • Description — a human-readable description is generated and stored with the file

Both fields can be viewed and edited manually in the file details panel. This runs as a background task after upload, so it doesn’t block the upload process.

AI-generated tags and description in the File Manager file details panelAI-generated tags and description in the File Manager file details panel
(click to enlarge)

Admin
anchor

API Playground Renamed to GraphQL Playground (#5103external link)
anchor

The “API Playground” label in the admin interface has been renamed to “GraphQL Playground” for clarity.

GraphQL Playground in the admin interfaceGraphQL Playground in the admin interface
(click to enlarge)

Added Dev Tools Sidebar Section (#5130external link)
anchor

The GraphQL Playground and SDK Playground links have been moved from the Support dropdown menu into a new Dev Tools section in the sidebar. Access to each tool can now be managed through the Security permissions panel. The Support dropdown has been removed; the Upgrade link is now a standalone footer item, and Configure Next.js has moved into the Website Builder section.

Dev Tools section in the admin sidebarDev Tools section in the admin sidebar
(click to enlarge)

New Field Renderers for FormModel
anchor

Several new field renderers are now available for use with the FormModel architecture:

  • CodeEditorRenderer — syntax-highlighted code input
  • FilePickerRenderer — file selection from File Manager
  • FileUrlPickerRenderer — URL-based file input
  • HorizontalTabsRenderer — tabbed field layouts

The DateTimeRenderer has also been updated to support timezone-aware and date-only modes.

NewDatePickerComponent (#5149external link)
anchor

A new DatePicker component is now available, supporting multiple picker types via a discriminated union on the type prop: date, time, datetime-local, datetime-tz, week, month, year, date-range, multiple-dates, multiple-months, and multiple-years.

Development
anchor

Typescript Upgraded to 6.0.2 (#5043external link)
anchor

Webiny now uses Typescript 6.0.2 with module resolution set to bundler. This brings improved type inference and better alignment with modern bundler toolchains.

Install Version Flag for Upgrade Command (#5115external link)
anchor

The webiny upgrade command now accepts an --install-version flag, letting you specify an exact package version to install during the upgrade process. This is useful when you want to test an unstable release before the stable version ships.

Tenant Manager Use Cases and Features Now Exported From Public API (#5140external link)
anchor

The tenant manager’s use case classes, feature plugins, and TypeScript interfaces are now exported from webiny/api. This enables developers to extend or override tenant management behavior — including getting the current tenant, fetching by ID, creating, updating, enabling, disabling, and installing tenants.

Feature API Types Corrected (#5108external link)
anchor

The second parameter in the Feature API’s register method now correctly populates when defined via generics.

ExportuseBuildParamsFrom Main Admin Entry Point (#5136external link)
anchor

The useBuildParams hook was previously only importable from a sub-path (webiny/admin/build-params) and was missing from the main admin package exports. It is now available from the standard webiny/admin import path, consistent with all other admin hooks:

The sub-path export is now deprecated.

Upgrade Command Always Logs Full Output (#5126external link)
anchor

The webiny upgrade command now always outputs full logging information during execution, making it easier to diagnose upgrade issues.

Advanced Form Model for Declarative Admin UI Forms (#5138external link)
anchor

A new FormModel API is now available for building admin UI forms declaratively. This system powers internal Webiny forms and is available for extension developers building custom admin interfaces.

Key capabilities include:

  • Layout primitives — tabs, rows, separators, and nested object nodes with per-template inner layouts
  • Field types — text, number, boolean, datetime, object (with list mode, dynamic zones, and templates)
  • Validation — required fields, Zod schema integration, async validation, conditional required rules, and form-level validation
  • Field renderers — inputs, textareas, tags, switches, dropdowns, radio buttons, checkboxes, date/time pickers, object accordions, and dynamic zones
  • Focus managementform.focusField(path) walks the layout tree, activates ancestor tabs, and focuses the target field
  • Computed fieldscomputed() and computedUntilDirty() for reactive derivation from other field values
  • Condition rules — hide or disable fields based on other field values
  • List operationsaddItem/removeItem on field view models so renderers don’t manage array slicing directly
  • Type coercionparseValue handles string-to-number, truthy-to-boolean conversions at the field builder level

Self-Cleaning Background Tasks (#5121external link)
anchor

Background tasks can now be configured to automatically delete themselves after completion. When enabled, the task runner removes the task record, all logs, child tasks, and their logs from the database once the task finishes successfully.

Enable self-cleaning in your task definition:

Mailer Configuration viawebiny.config.ts(#5114external link)
anchor

The Mailer package now supports configuration through webiny.config.ts instead of requiring plugin-based setup. Additionally, the replyTo, from, to, and bcc fields now accept the Name <email@example.com> format.

Webiny SDK
anchor

Added Tasks SDK Module (#5106external link)
anchor

External applications can now interact with Webiny Background Tasks through the SDK. The new sdk.tasks module lets you list task definitions and runs, retrieve execution logs, trigger new tasks, and abort running tasks:

The SDK playground includes full TypeScript declarations for the new module, providing autocomplete and type checking.

Improved Input Validation and Error Reporting (#5120external link)
anchor

All SDK methods now validate inputs before making network requests and return descriptive errors for common mistakes:

  • Type validation — Passing wrong types (e.g. limit: "sd", search: false, fields: []) returns a ValidationError immediately
  • Field validation — Misspelled fields (values.typo), object-type fields used as leaves (values.category), or unknown filter keys (tags_2in) return descriptive errors instead of silently returning empty results
  • Renamed error classGraphQLError has been renamed to ApiError since the transport layer is an implementation detail
  • Typed meta objectCmsEntryData now includes a typed meta object with status, modelId, version, locked, title, description, image, and data fields

Deployments
anchor

Old Pulumi Plugin Versions Now Cleaned Up (#5101external link)
anchor

Previously, downloading new Pulumi plugins would leave old versions behind, causing the .webiny/pulumi-cli folder to grow over time. Old plugin versions are now automatically removed when newer versions are installed.

Infra.Env.useEnvHook for Infrastructure Extensions (#5139external link)
anchor

The Infra.Env.useEnv hook is now available via webiny/extensions. It returns the deployment environment name passed via the --env CLI flag (e.g. webiny deploy --env prod), so extension authors no longer need to rely on process.env.STAGE or similar environment variables:

For more details, see Reading the Current Environment.

Added Encryption Service (#5109external link,#5112external link)
anchor

A built-in encryption service is now available in the Webiny API layer. Inject Encryption into any API feature to encrypt and decrypt strings using AES-256-GCM:

Configure the passphrase in webiny.config.tsx:

New projects already include this configuration. If you’re upgrading, add it to your webiny.config.tsx — your existing deployments won’t break, but deploying to a production environment without encryption configured will be blocked until it’s set up. For full details, see the Encryption article.

OpenSearch Domains Now Properly Prefixed (#5137external link)
anchor

OpenSearch domain names are now correctly prefixed with the configured Pulumi resource name prefix. Previously, the prefix was not applied to the domain name, causing a mismatch between the resource name and the actual AWS domain.

If you already have a deployed OpenSearch cluster, nothing will change — your domain will continue to operate without the prefix. If you want the prefix applied, you can redeploy; be aware this will recreate the domain and cause data loss. We intentionally did not apply the prefix automatically to existing clusters for this reason.

Fixed Duplicate Pulumi Resource URN Error When Registering Multiple API Routes (#5135external link)
anchor

Deploying two or more Api.Route extensions at the same time caused a “Duplicate resource URN” error during pulumi up, preventing the deployment from completing. Multiple API routes can now be registered and deployed without conflict.

Headless CMS
anchor

Model Field Compression (#5145external link)
anchor

Large CMS models with many fields can exceed DynamoDB item size limits or cause performance issues during model reads. You can now enable field compression to reduce the storage footprint of model definitions.

To enable compression, add the following to your webiny.config.ts:

When enabled, model field definitions are compressed before storage and decompressed on read, allowing models with significantly more fields than previously supported.

Page Builder
anchor

Page Settings Rebuilt With FormModel Architecture (#5148external link)
anchor

The Page Settings panel has been completely rewritten using the new FormModel architecture, replacing the previous react-properties-based implementation. This brings a cleaner presenter-driven design where each settings group (General, SEO, Social, Schema) is a self-contained class that defines its fields, layout, and data mapping.

New extension points allow you to customise Page Settings without modifying core code:

  • PageSettingsGroup — add entirely new settings tabs
  • PageSettingsGroupModifier — inject fields into existing groups

The layout builder now supports positional helpers (before/after) for precise field placement within groups.