Create TextEntity no longer working Version 8 SR29

In the latest Version 8 SR29 (8.29.26063.11001, 2026-03-04), when creating a TextEntity with C# code in Grasshopper, all given attributes is ignored and only global attributes are used for size and justification.

    `TextEntity = new TextEntity`

{
Plane = plane,
PlainText = text,
Font = new Font(font),
TextHeight = size,
Justification = TextJustification
};

I have been using it like this for a while, and it has worked flawless up until now. Is this a bug or an intentional change, and how can I solve it?