Releases: statamic/cms
Releases · statamic/cms
v3.0.0-beta.41
What's fixed
- Taxonomy publish forms were inheriting cascaded data that didn't need to be there.
v3.0.0-beta.40
What's new
- Addon assets are now published automatically.
- Nodes and marks can now be added to the ProseMirror renderer for Bard.
What's fixed
- A small handful of bugs that would take longer to list than than to have fixed in the first place.
v3.0.0-beta.39
What's new
- You can
inject
cascading data in taxonomies through to its terms the same way you can with collections and entries. - Blueprints are selectable when creating an entry using the entries fieldtype.
What's fixed
- Updated Italian translation.
- Little bug fixes.
v3.0.0-beta.38
What's new
- Blueprints have been revamped. They are now directly mapped to items (collections, forms, etc). See #2092 for more details. You need to run this migration script.
- Added a full suite of "BlueprintFound" events. (EntryBlueprintFound, TermBlueprintFound, etc)
- Added the
field
parameter to theuser
tag so you cab find a user by any field, like a username.
What's fixed
- A few little things. We never stop fixing the little things.
What's breaking
- The blueprint changes are breaking. You'll need to run the migration script.
- [break] Events in
Statamic\Events\Data
have been moved intoStatamic\Events
. Their properties are no longer allitem
, and are now named appropriately. e.g. entry, or asset.
v3.0.0-beta.37
What's improved
- The "Statamic Pro required" exception now explains how to enable Pro along with the option to do it automatically with a click of the button.
- Text fields with prepend/append will have them prepended/appended in the CP entry listing.
- Added Form submissions to the default paths the Git integration will look in.
- Accessing the API without Pro enabled will now give you a helpful error instead of a 404
- The
Form.submission.creating
event is back and has evolved into a more robustFormSubmitted
event.
What's breaking
- Renamed
$form->createSubmission()
tomakeSubmission()
v3.0.0-beta.36
What's new
- Statamic Pro must be enabled to use Pro features.
- You can now explore the Marketplace and install addons right in the Control Panel.
- You can now update Statamic and any installed addons right inside the Control Panel too.
- Addons can define editions and users can choose which are installed.
What's fixed
- Some bugs.
v3.0.0-beta.35
What's new
- Git is now integrated right in the control panel! 🎉 (This is v2's Spock successor)
v3.0.0-beta.34
What's improved
- A bunch of translations, thanks to @Konafets!
What's fixed
- Squashed a little pile of bugs.
v3.0.0-beta.33
What's fixed
- The
spaceless
modifier from v2 has finally arrived at to the party. - Tag Parameter class methods (not just
get
) will convert from Value objects. - Tag Context class gets a
value
method that converts from Value objects. This fixes an issue with the Glide tag.
v3.0.0-beta.32
What's improved
- Site variables are now available in templates in the
site
scope (site:name
,site:locale
, etc). - Tags, Modifiers, Fieldtypes, and Widgets now automatically register aliases in addons.
- Collection (and similar tags - taxonomy, users, etc) now support combing the offset and pagination parameters with
paginate="n"
.
What's fixed
- Antlers code inside fields should now be more reliably left unparsed, unless you opt in on the field with
antlers: true
. - Parsing Antlers templates will return AntlersString instances rather than strings. This is technically a breaking change if you were explicitly checking for strings. In most cases it will be cast to a string automatically. #1944
- Other unnamed bug fixes
What's breaking
- The
locale
,locale_name
,site_name
, etc variables have been removed in favor ofsite
,site:name
, etc.