Skip to content

Releases: ruslan-kurchenko/lwc-polyglot

v0.2

19 Aug 08:11
ed5e2ab
Compare
Choose a tag to compare
v0.2 Pre-release
Pre-release
  • Significantly improved performance by resolving all labels in bulk on Apex + Visualforce Dynamic Component
  • Implemented complete exception-safe execution. The system resolves up to 100 invalid custom label names. In case of more than 100 invalid custom label names - a special exception message returned for all other labels.
  • Changes to the structure of the result of custom label resolve operation

The new format of the result of getCustomLabels method:

{
  "success": false,
  "messages": {
    "InvalidName": "Field $Label.InvalidName does not exist. Check spelling"
  },
  "labels": {
    "InvalidName": "InvalidName",
    "Greetings": "Hello!"
  }
}

v0.1

13 Aug 19:05
Compare
Choose a tag to compare
v0.1 Pre-release
Pre-release

Initial release with a base functionality to resolve Custom Labels values by names in LWC