amtrack / force-dev-tool

[DEPRECATED] Command line tool supporting the Force.com development lifecycle
MIT License
108 stars 37 forks source link

Long label is trimmed #238

Closed froucher closed 4 years ago

froucher commented 4 years ago

Hello @amtrack,

Sorry but there is an issue with last version, in a Custom Object when parent properties are too long then the property is trimmed.

An example is:

<?xml version="1.0" encoding="UTF-8"?>
<CustomObject xmlns="http://soap.sforce.com/2006/04/metadata">
...
   <label>loooooooooooooooooooooooooooooooongLabel</label>
...
</CustomObject>

This change create a change set like this:

<?xml version="1.0" encoding="UTF-8"?>
<CustomObject xmlns="http://soap.sforce.com/2006/04/metadata">
...
   <label>loooooooooooooooooooooooo…</label>
...
</CustomObject>

Where "label" is trimmed.

I am going to create a PR with a test that fix this critical issue.

Thanks

froucher commented 4 years ago

Pull request is #239

amtrack commented 4 years ago

:tada: This issue has been resolved in version 2.6.4 :tada:

The release is available on:

Your semantic-release bot :package::rocket: