Skip to content

SDK 3.0.3

Choose a tag to compare

@bryce-godfrey bryce-godfrey released this 24 Jul 18:58
· 17 commits to master since this release

📢 We are pleased to announce the release of 3.0.3 of the @servicenow/sdk is available for download on npm!

Docs: https://www.servicenow.com/docs/bundle/yokohama-application-development/page/build/servicenow-sdk/concept/servicenow-sdk-landing.html

This is a minor patch release that fixes a bug in the SDK

Fixes

  • Table columns that defined dynamic_value_definitions.calculated_value fields with string values were creating invalid xml. This did not affect using module imports on the calculated_value field.

Example:

StringColumn({
     label: "Label Name",
     dynamic_value_definitions: {
         type: "calculated_value",
         calculated_value: `javascript:global.getNextObjNumberPadded();`,
     },
 }),