Consolidated page of all release notes for ServiceNow SDK from Vancouver to Xanadu.
How to use this page
To help you prepare for your upgrade, we have combined the cross-family ServiceNow SDK release notes onto one page. Read this summary of the new features, changes, and updated information for your product from Vancouver to Xanadu.
Tip: If there were no updates for a release notes section in a certain family release, we included a short note for your reference. For example, if a product did not have any updates in Tokyo, the row says "No updates for this release."
Important information for upgrading ServiceNow SDK to Xanadu
Before you upgrade to Xanadu, review these pre- and post-upgrade tasks and complete the tasks as needed.
| Release |
Release notes |
Vancouver |
No updates for this release. |
Washington DC |
No updates for this release. |
Xanadu |
Upgrade to the latest version of the ServiceNow SDK with the now-sdk upgrade command. For more information, see Upgrade the ServiceNow SDK.
|
New features
Between your current release family and Xanadu, new features were introduced for ServiceNow SDK.
| Release |
Release notes |
Vancouver |
No updates for this release. |
Washington DC |
No updates for this release. |
Xanadu |
- Version 2.2.1
- Turn off synchronizing changes to ServiceNow Fluent code
- Turn off synchronizing changes to ServiceNow Fluent objects or files using the
@fluent-disable-sync or @fluent-disable-sync-for-file comment directives.
- Version 2.1.1
- Authenticate to an instance using OAuth 2.0
- Authenticate to a ServiceNow instance using OAuth 2.0 by setting the
type parameter on the now-sdk auth command to oauth.
- Ignore ServiceNow Fluent diagnostics
- Suppress ServiceNow Fluent and TypeScript diagnostics using the
@fluent-ignore comment directive.
- Version 2.0
- Build scoped applications in source code
- Write source code to define the metadata that makes up applications using ServiceNow Fluent. ServiceNow Fluent is a domain-specific programming language with APIs for defining the different types of application metadata. Developing applications in source code enables you to work in familiar
development environments, create and modify complex applications, manage code in source control more easily, and catch errors at build time.
- ServiceNow Fluent Language server in Visual Studio Code
- Get language processing and validation for ServiceNow Fluent in Visual Studio Code by installing the ServiceNow Fluent Language server from the Visual Studio Code Marketplace.
|
Changes
Between your current release family and Xanadu, some changes were made to existing ServiceNow SDK features.
| Release |
Release notes |
Vancouver |
No updates for this release. |
Washington DC |
No updates for this release. |
Xanadu |
- Version 2.2.3
- Convert command uses module project type by default
- The
projectType parameter is set to module by default. By converting an application with the module
project type, you can gradually migrate application metadata into ServiceNow Fluent code rather than
converting all application metadata into
code initially.
- Version 2.2.1
- transpiledSourceDir parameter replaced with modulePaths parameter in now.config.json file
- Use the
modulePaths parameter in the now.config.json file for your application to map the source directory for modules to the output directory for modules instead of the deprecated
transpiledSourceDir parameter. The modulePaths parameter is used to compile TypeScript source files into JavaScript modules.
- Version 2.1.1
- Table API includes label object
- Configure field labels [sys_documentation] for tables and columns with the label object in the Table API.
- Version 2.0.1
- Create and convert commands include template parameter
- Specify whether to use JavaScript or TypeScript in modules with the
template parameter on the now-sdk create and now-sdk convert commands. This parameter determines the
configuration of the package.json and now.config.json files and adds a tsconfig.json file for TypeScript projects.
- Version 2.0
- Default application structure
- The default application structure includes some changes to directories and files, including the addition of a .gitignore file and moving the
now object configuration in
package.json to its own now.config.json file.
- Create and convert commands include project-type parameter
- Specify the type of application to create or convert with the
project-type parameter on the now-sdk create and now-sdk convert commands. This parameter determines the
default application structure based on whether you want to use ServiceNow Fluent and JavaScript modules and third-party libraries in the application (fluent) or only use JavaScript modules and third-party libraries (module).
- Fetch command includes debug parameter
- Return debug logs generated during the fetch process by setting the
debug parameter to true with the now-sdk fetch command.
- Deploy command includes reinstall parameter
- Uninstall and reinstall the application on the instance by setting the
reinstall parameter to true with the now-sdk deploy command. Reinstalling an application ensures that the metadata on
the instance matches the metadata in the deployment package.Warning: Metadata that is on the instance but not in your local application is removed.
|
Removed
Between your current release family and Xanadu, some ServiceNow SDK features or functionality were removed.
| Release |
Release notes |
Vancouver |
No updates for this release. |
Washington DC |
No updates for this release. |
Xanadu |
- The
scopeId parameter was removed from the now-sdk convert command, which supported converting global applications. Only scoped applications can be converted.
- The
mode parameter was removed from the now-sdk fetch and now-sdk deploy commands. A complete fetch or deploy are always executed.
|
Deprecations
Between your current release family and Xanadu, some ServiceNow SDK features or functionality were deprecated.
| Release |
Release notes |
Vancouver |
No updates for this release. |
Washington DC |
No updates for this release. |
Xanadu |
No updates for this release. |
Activation information
Review information on how to activate ServiceNow SDK.
| Release |
Release notes |
Vancouver |
No updates for this release. |
Washington DC |
No updates for this release. |
Xanadu |
The ServiceNow SDK is available as an npm package from the public npm registry and installed locally. For information about installing the ServiceNow SDK, see Install the ServiceNow SDK.
|
Additional requirements
If any additional requirements were introduced or changed for ServiceNow SDK we have noted them here.
| Release |
Release notes |
Vancouver |
No updates for this release. |
Washington DC |
No updates for this release. |
Xanadu |
You must have Node.js and npm installed to install the ServiceNow SDK. For more information, see Install the ServiceNow SDK.
|
Browser requirements
If any specific browser requirements were introduced or changed for ServiceNow SDK we have noted them here.
| Release |
Release notes |
Vancouver |
No updates for this release. |
Washington DC |
No updates for this release. |
Xanadu |
No updates for this release. |
Accessibility information
Review details on accessibility information for ServiceNow SDK, such as specific requirements or compliance levels.
| Release |
Release notes |
Vancouver |
No updates for this release. |
Washington DC |
No updates for this release. |
Xanadu |
No updates for this release. |
Localization information
If there are specific localization considerations for ServiceNow SDK we have noted them here.
| Release |
Release notes |
Vancouver |
No updates for this release. |
Washington DC |
No updates for this release. |
Xanadu |
No updates for this release. |
Highlight information
If there are specific highlight considerations for ServiceNow SDK we have noted them here.
| Release |
Release notes |
Vancouver |
No updates for this release. |
Washington DC |
No updates for this release. |
Xanadu |
Write source code to define the metadata that makes up applications with ServiceNow Fluent.
See ServiceNow SDK for more information.
|