Release Notes
Contents
The headline features and themes for each XP feature release. For step-by-step upgrade instructions and the full breaking-change list, see Upgrading to XP 8.
XP 8
XP 8 is the largest release in 8 years. The runtime is rebuilt on a modern stack, the Universal API unifies how request handlers are written and called, and a long list of API rough edges has been cleaned up.
| This release contains Breaking changes when upgrading from XP7. We have made every effort to minimize the impact of these, but please review the full list of breaking changes and migration steps in the upgrade notes before upgrading. Several XP 7 concepts have also been renamed — see A paradigm shift in naming. |
Stack update
The XP 8 core runs on a refreshed stack, including but not limited to: Java 25, Jetty 12, and Hazelcast 5. This also includes use of virtual threads for tasks. The new stack provides better performance, stability, and security, and lays the foundation for future improvements.
Universal API
Web APIs are now first-class citizens of Enonic XP. A uniform implementation pattern can be used to implement and expose APIs across the platform, including direct exposure via the brand new /api service endpoint.
Borrowing the manifest-and-mount pattern from Kubernetes, APIs are registered with a unique name and automatically integrated with the platform’s security and IAM. A matching set of libraries and tools makes it easy to build custom APIs and call them from any context.
APIs can be exposed on custom URLs and domains via virtual host configuration, but also contextually mounted within the admin and site services, allowing for flexible API design and organization.
XP goes YAML
YAML replaces XML for all CMS schemas and app descriptors. This means content types, application definitions, ID providers, etc., are now all defined in YAML. YAML is a widely adopted format that is easier to read and write than JSON, especially for complex configurations - and it supports comments. The new YAML-based descriptors are more concise and maintainable, making life easier for developers. For the full documentation, visit the schema system documentation.
Schemas are also now organized into namespaces. Every schema is identified as <namespace>:<name>. When shipping schemas with an app, the app name is still the default namespace - but the namespace concept decouples schemas from apps, paving the way for schemas to be authored and managed independently.
Simplified permissions
The permission model is stripped back to essentials in XP 8:
-
No more inheritance. Every node carries its own explicit ACL. To apply the same ACL across a subtree, do it in a single hierarchical apply call — the old "inherit from parent" mechanic is gone.
-
Instant cross-branch effect. Permission changes take effect on every branch a node exists in, immediately. No more publishing content just to push permissions through.
The underlying Node and Content APIs follow the same model. See Permissions for the full picture.
Companion apps
The major Enonic apps have been refreshed alongside the platform and are ready for XP 8.
- Content Studio
-
The editorial CMS interface. Migrated to the new Enonic UI design system, and continues to ship as a standalone application so it can release independently of the platform.
- Guillotine
-
Auto-generates a GraphQL API directly from your content model. Updated for XP 8’s runtime and schema changes. Note that the XP 7-era
lib-guillotineis no longer supported - it embedded the GraphQL engine in your own app, and was never a client library for the Guillotine app. - Data Toolbox
-
The developer-focused tool for inspecting repositories and nodes, and for managing dumps, snapshots, and exports. Updated for XP 8.
Admin Extensions
The Widget API has been replaced by the Extensions API, better reflecting the actual capabilities. Visible tools live in the XP menu, while extensions, you guessed it, extend them - ranging from visual widgets to API-level functionality. The new API is more flexible and powerful.
Additionally, popular extensions such as Content Studio widgets are now wrapped as web components, for complete isolation and flexibility.
Visit the Dev kit documentation for implementation details.
Content and Node Libraries refresh
Years of incremental additions left overlap in the platform Content and Node APIs. XP 8 cleans them up:
-
moveandrenamecollapse into a singlemove -
setChildOrderandreorderChildrencollapse into a singlesort -
The legacy
hasChildrencontent property is gone -
A new
patchfunction applies changes across multiple branches in one call -
Language-aware
allTextconfiguration for multilingual full-text indexing -
Removal of the
inheritsPermissionsflag in favour of explicitly applied permissions -
Sort operations also honor language-specific collation.
Prometheus metrics
Metrics are now exposed in the open OpenMetrics format - point your Prometheus, Grafana agent, or any compatible collector at the metrics endpoint to get first-class observability.
Vhost context
Vhost configuration files now support declaration of context values - project, branch, principal - co-locating routing decisions with the vhost they belong to. This may also be used to customize application behaviour on a per-vhost basis. See Virtual host context.
Server Sent Events (SSE)
XP8 also implements support for Server Sent Events (SSE) across all web services, enabling real-time streaming of data to clients without using WebSockets. This is particularly useful for building APIs and applications that require live updates, such as dashboards or notifications, but do not require the full duplex communication provided by WebSocket.
Stricter identity validation
Identity keys, content IDs, names, and descriptors now follow consistent, deterministic validation rules: lowercase-only IDs, explicit regex per key type, and length caps that match what the system actually supports. The intent is to eliminate the class of bugs that came from quietly accepting characters that broke serialization, URLs, or filesystem paths downstream. The full ruleset lives in the dev kit upgrade guide.
Security hardening
-
Authentication no longer searches for the first matching user across all ID providers. Each request resolves against the vhost’s default ID provider, or the explicitly specified one.
-
New passwords use
pbkdf2-sha512. The legacymd5andsha1hashing algorithms have been retired, including forxp.suPassword.
Smarter dumps and exports
Repositories can now be exported in full or in part - by branch and path - and repositories may be dumped and loaded individually.
Exports and dumps are written directly to ZIP archives, replacing the previous folder-based structure. The plain-file format and dry-run mode have been retired.
Quality of life
A handful of smaller-but-pleasing improvements:
-
Sessions can be persisted to the filesystem via
filestoreMode, surviving graceful restarts on standalone instances -
The admin home moved from
/admin/hometo a cleaner/admin -
HTTP function names now use the standard uppercase form:
GET,POST,PUT,DELETE -
request.localeis available in the request object -
The dump location is configurable via repository config
-
Dev mode is now enabled by default in the Enonic SDK, making it easier to get started with development and testing.
A paradigm shift in naming
XP 8 renames or reframes several familiar XP 7 concepts. Use this map when reading XP 7-era documentation, examples, or AI-generated code — the old terms no longer apply, and in some cases have taken on new meanings:
| XP 7 | XP 8 | Comment |
|---|---|---|
|
Engines (site, webapp, admin) |
The term "engine" is retired |
|
|
Controllers |
A module simply exports functions named after HTTP methods: |
|
|
HTTP Services ( |
XP 7 HTTP services are replaced by the Universal API |
|
|
JS/TS APIs ( |
The term "API" now primarily refers to web APIs. Platform JS/TS APIs are referred to as libraries |
|
|
Assets service |
The built-in asset service is replaced by a library |
|
|
Widgets |
Now part of the Admin Extensions API |
|
|
Mixins |
Reusable form definitions |
|
|
X-data |
The term "mixin" now refers to what XP 7 called x-data |
|
|
Input types and sets |
|
|
|
Schemas scoped by app ( |
Schemas scoped by namespace ( |
The app name is still the default namespace when shipping schemas with an app |
|
|
CMS resources now live in |
|
|
|
Site descriptor is now split in two, and written in YAML. |
|
|
|
Avoids confusion with content display name property |
|
|
|
|
Context-specific method names |
|
|
Discontinued |
Use the Guillotine app instead. |
| Note the double rename: the word mixin changed meaning between versions. An XP 7 mixin is an XP 8 form fragment, while XP 7 x-data is now called mixin. When working with XP 7-era material — or AI assistants trained on it — always verify which meaning applies. |
The complete map, with migration details, lives in the dev kit upgrade guide.