Changes

This document highlights the most important fixes, improvements, and features, that were introduced in Webiny 5.12.0.

How To Upgrade?

Make sure you didn’t miss the 5.11.1 release, which was an urgent security hotfix! You must apply that upgrade before moving on to 5.12.0.

Please check the Webiny 5.12.0 migration guide for the upgrade steps.

Admin Area
anchor

Webiny UI Composer (#1800external link)
anchor

We finally have a way to build UI, ship it to you, and allow you to modify every part of it using minimum amount of code! 🎉 At some point in the future, this will even allow us to replace entire UI libraries! 🤩

Since React is a declarative tool, once a view is defined, you can’t modify it from the outside. Especially if it’s encapsulated inside another component. You can’t change input labels, validation rules, position of elements, apply conditional rendering, add more UI elements to it, etc., if you don’t have access to the original code. When you use React components from npm packages, you get a black box. So how did we solve the problem?

With Webiny UI Composer, you get a layer of control before React rendering kicks in. UI is defined using elements (as classes), which can have 1 or more renderers (which are also pluginable and configurable), which produce JSX. Instead of going straight to JSX, you define views using a traditional, object-oriented way:

Defining a View

For Webiny, this is the only way forward to give you a truly customizable platform. With this release, several parts of Admin Area app are already implemented with the UI Composer: the main admin layout, header, navigation sidebar, page editor settings and users form. There are plenty of views to rewrite to make the whole Admin Area customizable, and we’ll prepare issues on Github that you, the community, can help us tackle.

Scaffolds are backwards compatible, so you can continue using them. But in the future we will update them to use the UI Composer as well, as soon as we have all the UI elements for the Admin Area app ready.

Headless CMS
anchor

Ability to Define Content Models and Content Model Groups via Plugins (#1797external link)
anchor

In this release, we’ve introduced the ability to define content models and content model groups via plugins. This brings a couple of cool benefits, like having both stored in your version control, in some cases additional flexibility, and more.

Be sure to check out the Define Content Models via Plugins guide to learn more.

Compress Data That Is Stored in DynamoDB Table for ES (#1821external link)
anchor

DynamoDB has a hard limit of 400Kb per record. When your content entry contains long text or rich text fields, it can easily become larger than that. The new plugin (which will be added to your current project via an upgrade process) will compress the data that is being stored into our DynamoDB table for Elasticsearch, and thus, create some more space for your content.